/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #121212;
    --bg-darker: #0a0a0a;
    --text-white: #ffffff;
    --text-grey: #cccccc;
    --text-light-grey: #888888;
    --orange: #ff8844;
    --orange-dark: #e6752e;
    --card-bg: #1a1a1a;
    --border-color: #333333;
    --linkedin-blue: #0a66c2;
}

body {
    font-family: "DM Sans", sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.nav {
    position: sticky;
    top: 0;
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 18px;
    color: var(--text-white);
    text-decoration: none;
    transition: opacity 0.2s;
}

.logo:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background-color: var(--orange);
    color: var(--text-white);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.logo-text {
    font-weight: 400;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: var(--orange);
}

.btn-nav {
    background-color: var(--text-white);
    color: var(--bg-dark);
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s;
    font-family: "DM Sans", sans-serif;
    text-decoration: none;
    display: inline-block;
}

.btn-nav:hover {
    opacity: 0.9;
}

/* Hero Section */
.hero {
    padding: 80px 0 120px;
    background-color: var(--bg-dark);
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-left {
    max-width: 600px;
}

.hero-tagline {
    display: inline-block;
    font-size: 13px;
    color: var(--orange);
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 8px 20px;
    border: 1px solid var(--orange);
    border-radius: 50px;
    background-color: rgba(255, 136, 68, 0.1);
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: var(--text-white);
}

.hero-subtitle {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--orange);
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 18px;
    color: var(--text-grey);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--orange);
    color: var(--text-white);
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: "DM Sans", sans-serif;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--orange-dark);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid var(--border-color);
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: "DM Sans", sans-serif;
}

.btn-secondary:hover {
    background-color: var(--card-bg);
}

.hero-stats {
    display: flex;
    gap: 24px;
    margin-top: 32px;
}

.hero-stat-box {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px 32px;
    flex: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-stat-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 136, 68, 0.2);
    border-color: var(--orange);
    background-color: rgba(255, 136, 68, 0.05);
}

.hero-stat-box .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.hero-stat-box:hover .stat-number {
    color: var(--orange);
}

.hero-stat-box .stat-text {
    font-size: 14px;
    color: var(--text-grey);
    transition: color 0.3s ease;
}

.hero-stat-box:hover .stat-text {
    color: var(--text-white);
}

/* Hero Right - Engagement Cards */
.hero-right {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.engagement-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.card:hover {
    transform: translateY(-8px) scale(1.02) !important;
}

.card {
    position: absolute;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 28px;
    width: 340px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.25);
}

.linkedin-card {
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotateY(-5deg) rotateX(5deg);
    border-left: 3px solid var(--linkedin-blue);
    box-shadow: 0 8px 32px rgba(10, 102, 194, 0.3);
}

.x-card {
    border-left: 3px solid var(--orange);
    box-shadow: 0 8px 32px rgba(255, 136, 68, 0.3);
}

.card-top {
    right: 80px;
    top: 20%;
    transform: rotateY(5deg) rotateX(-5deg);
}

.card-bottom {
    right: 0;
    bottom: 10%;
    transform: rotateY(-8deg) rotateX(8deg);
    width: 280px;
    padding: 20px;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.card-logo {
    width: 24px;
    height: 24px;
    color: var(--text-white);
}

.linkedin-card .card-logo {
    color: var(--linkedin-blue);
}

.x-card .card-logo {
    color: var(--orange);
}

.card-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
}

.card-metrics {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.metric:last-child {
    border-bottom: none;
}

.metric-label {
    font-size: 14px;
    color: var(--text-light-grey);
}

.metric-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
}

.linkedin-card .metric-value {
    color: var(--linkedin-blue);
}

.x-card .metric-value {
    color: var(--orange);
}

/* Brands Section */
.brands {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.brands-label {
    text-align: center;
    font-size: 16px;
    color: var(--text-light-grey);
    margin-bottom: 40px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3), 0 0 20px rgba(255, 255, 255, 0.2), 0 0 30px rgba(255, 255, 255, 0.1);
}

.brands-strip {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.brands-track {
    display: flex;
    gap: 60px;
    align-items: center;
    animation: scrollBrands 30s linear infinite;
    width: fit-content;
}

.brand-name {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-white);
    white-space: nowrap;
    flex-shrink: 0;
}

@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Process Section */
.process-section {
    padding: 120px 0;
    background-color: var(--bg-dark);
}

.process-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.process-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: var(--text-white);
}

.text-grey {
    color: var(--text-grey);
}

.text-orange {
    color: var(--orange);
}

.process-description {
    font-size: 18px;
    color: var(--text-grey);
    line-height: 1.7;
    margin-bottom: 48px;
}

.process-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 16px;
    color: var(--text-grey);
    line-height: 1.6;
}

.execution-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    position: relative;
}

.execution-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.execution-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
}

.target-icon {
    width: 40px;
    height: 40px;
    color: var(--text-light-grey);
    opacity: 0.6;
}

.target-icon svg {
    width: 100%;
    height: 100%;
}

.execution-divider {
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
    margin-bottom: 32px;
}

.execution-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    padding-left: 24px;
}

.execution-steps::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 20px;
    bottom: 20px;
    width: 1px;
    background-color: var(--border-color);
}

.execution-step {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.step-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--text-light-grey);
    border: 2px solid var(--text-light-grey);
    position: absolute;
    left: -32px;
    transition: all 0.3s ease;
}

.execution-step span {
    font-size: 16px;
    color: var(--text-grey);
    font-weight: 400;
    transition: all 0.3s ease;
}

/* Hover effects - only appear on hover */
.execution-step:hover .step-circle {
    background-color: transparent;
    border-color: var(--orange);
    border-width: 2px;
}

.execution-step:hover span {
    color: var(--text-white);
    font-weight: 500;
}

.execution-quote {
    margin-top: 40px;
    padding: 18px 24px;
    background-color: rgba(255, 136, 68, 0.15);
    border: 1px solid var(--orange);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--orange);
    font-style: italic;
    text-align: center;
    line-height: 1.5;
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background-color: var(--bg-dark);
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.services-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: var(--text-white);
}

.services-subtitle {
    font-size: 20px;
    color: var(--text-grey);
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.linkedin-service {
    border-left: 4px solid var(--linkedin-blue);
}

.linkedin-service:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--linkedin-blue);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(10, 102, 194, 0.3), 0 0 30px rgba(10, 102, 194, 0.2);
    background-color: rgba(10, 102, 194, 0.05);
}

.x-service {
    border-left: 4px solid var(--orange);
}

.x-service:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--orange);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 136, 68, 0.3), 0 0 30px rgba(255, 136, 68, 0.2);
    background-color: rgba(255, 136, 68, 0.05);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    color: var(--text-white);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.linkedin-service .service-icon {
    color: var(--linkedin-blue);
}

.x-service .service-icon {
    color: var(--orange);
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
}

.linkedin-service:hover .service-icon {
    filter: drop-shadow(0 0 10px rgba(10, 102, 194, 0.6));
}

.x-service:hover .service-icon {
    filter: drop-shadow(0 0 10px rgba(255, 136, 68, 0.6));
}

.service-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.linkedin-service:hover h3 {
    color: var(--linkedin-blue);
}

.x-service:hover h3 {
    color: var(--orange);
}

.service-card > p {
    font-size: 16px;
    color: var(--text-grey);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features li {
    font-size: 15px;
    color: var(--text-white);
}

/* Work Page Styles */
.work-header {
    padding: 80px 0 40px;
    background-color: var(--bg-dark);
    text-align: center;
}

.work-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: var(--text-white);
}

.work-description {
    font-size: 20px;
    color: var(--text-grey);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.work-stats {
    padding: 60px 0;
    background-color: var(--bg-dark);
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.stat-card-work {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.stat-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.stat-card-work .stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.stat-card-work .stat-label {
    font-size: 12px;
    color: var(--text-light-grey);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.work-filters {
    padding: 40px 0;
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--card-bg);
    color: var(--text-grey);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: "DM Sans", sans-serif;
}

.filter-btn:hover {
    background-color: var(--border-color);
}

.filter-btn.active {
    background-color: var(--orange);
    color: var(--text-white);
    border-color: var(--orange);
}

.portfolio-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.portfolio-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 136, 68, 0.1), transparent);
    transition: left 0.5s ease;
}

.portfolio-card:hover::before {
    left: 100%;
}

.portfolio-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 136, 68, 0.2);
    border-color: rgba(255, 136, 68, 0.3);
    background-color: rgba(255, 136, 68, 0.03);
}

.portfolio-card:hover .portfolio-title {
    color: var(--orange);
    transform: translateX(4px);
}

.portfolio-card:hover .portfolio-platform {
    opacity: 1;
    transform: scale(1.1);
}

.portfolio-card:hover .portfolio-metric .metric-value.orange {
    transform: scale(1.1);
}


.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.portfolio-category {
    background-color: var(--border-color);
    color: var(--text-white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.portfolio-platform {
    color: var(--text-white);
    opacity: 0.7;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.portfolio-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 8px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.portfolio-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-grey);
    margin-bottom: 20px;
}

.portfolio-description {
    font-size: 15px;
    color: var(--text-grey);
    line-height: 1.6;
    margin-bottom: 24px;
}

.portfolio-metrics {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.portfolio-metric {
    display: flex;
    flex-direction: column;
}

.portfolio-metric .metric-label {
    font-size: 12px;
    color: var(--text-light-grey);
    margin-bottom: 4px;
}

.portfolio-metric .metric-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
}

.portfolio-metric .metric-value.orange {
    color: var(--orange);
    transition: transform 0.3s ease;
}

.portfolio-tags {
    font-size: 13px;
    color: var(--text-light-grey);
    margin-bottom: 16px;
}

.portfolio-arrow {
    position: absolute;
    bottom: 32px;
    right: 32px;
    width: 40px;
    height: 40px;
    background-color: var(--orange);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.work-cta {
    padding: 80px 0;
    background-color: var(--bg-dark);
    text-align: center;
}

.work-cta .cta-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 32px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.nav-menu a.active {
    color: var(--orange);
}

/* Footer */
.footer {
    padding: 60px 0 40px;
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 18px;
    color: var(--text-white);
}

.footer-copyright {
    font-size: 14px;
    color: var(--text-light-grey);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-right {
        height: 500px;
    }

    .card {
        position: relative;
        transform: none !important;
        margin-bottom: 24px;
        width: 100%;
        max-width: 400px;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
    }

    .engagement-cards {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .brand-name {
        font-size: 20px;
    }


    .process-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .process-title {
        font-size: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-title {
        font-size: 40px;
    }

    .work-title {
        font-size: 48px;
    }

    .stats-cards {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 80px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .process-title {
        font-size: 32px;
    }

    .services-title {
        font-size: 32px;
    }

    .work-title {
        font-size: 36px;
    }

    .work-cta .cta-title {
        font-size: 32px;
    }
}