* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-main: #f8fafc;
    --bg-surface: #ffffff;
    --text-heading: #0f172a;
    --text-body: #475569;
    --text-muted: #64748b;
    --orange: #f25b29;
    --orange-light: #fff2ed;
    --orange-dark: #d64a1d;
    --border-color: #e2e8f0;
    --linkedin-blue: #0a66c2; 
    --instagram-pink: #E1306C;
    --text-inverse: #ffffff;
}

body {
    font-family: "DM Sans", sans-serif;
    background-color: var(--bg-main);
    color: var(--text-body);
    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;
}

.nav {
    position: sticky;
    top: 0;
    background-color: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

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

/* Logo image */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.logo-img {
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

/* Navigation menu - centered using auto margins */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

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

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

/* Right side container for button + hamburger */
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-heading);
    padding: 8px;
    line-height: 1;
}

/* Mobile styles */
@media (max-width: 768px) {
    .nav-container {
        padding: 12px 20px;
    }
    .logo-img {
        height: 42px;
        max-width: 160px;
    }
    .mobile-menu-btn {
        display: block;
    }
    .btn-nav {
        display: none;  /* Hide WhatsApp button on mobile */
    }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background-color: var(--bg-surface);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 30px;
        gap: 30px;
        box-shadow: 2px 0 20px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        z-index: 99;
        border-right: 1px solid var(--border-color);
        margin: 0;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-menu li {
        width: 100%;
    }
    .nav-menu a {
        display: block;
        font-size: 18px;
        padding: 8px 0;
    }
}

/* Rest of the CSS (keep all your existing styles below) */
/* ... (all the previous CSS from hero, cards, footer, etc. remains exactly the same) ... */

/* I'll include the full existing CSS here but to save space, 
   you already have it – just append the above mobile menu rules 
   to your current styles.css. Below I'll continue with the remainder 
   of the original styles (they remain unchanged). */

.hero {
    padding: 80px 0 120px;
    background-color: var(--bg-main);
    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: var(--orange-light);
}

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

.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-body);
    margin-bottom: 40px;
    line-height: 1.7;
}

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

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

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

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

.btn-secondary:hover {
    background-color: var(--bg-surface);
    border-color: var(--text-muted);
}

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

.hero-stat-box {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px 32px;
    flex: 1;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.hero-stat-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(242, 91, 41, 0.15);
    border-color: var(--orange);
    background-color: var(--orange-light);
}

.hero-stat-box .stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-heading);
    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-muted);
    font-weight: 500;
}

.hero-right {
    position: relative;
    height: 600px;
    overflow: hidden;
    -webkit-mask-image: radial-gradient(circle at 50% 50%, black 65%, transparent 100%);
    mask-image: radial-gradient(circle at 50% 50%, black 65%, transparent 100%);
}

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

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

.card:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.1);
}

.linkedin-card { border-left: 4px solid var(--linkedin-blue); }
.x-card { border-left: 4px solid var(--orange); }
.instagram-card { border-left: 4px solid var(--instagram-pink); }
.instagram-card .card-logo, .instagram-card .metric-value { color: var(--instagram-pink); }

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

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

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

.card-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1.2;
}

.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 var(--border-color);
}

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

.metric-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

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

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

.brands {
    padding: 60px 0;
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 5;
}

.brands-label {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.brands-strip {
    overflow: hidden;
    position: relative;
}

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

.brand-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.brand-name:hover {
    opacity: 1;
    color: var(--text-heading);
}

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

.process-section {
    padding: 120px 0;
    background-color: var(--bg-main);
}

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

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

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

.process-description {
    font-size: 18px;
    color: var(--text-body);
    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(--orange-light);
    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: 700;
    color: var(--text-heading);
    margin-bottom: 8px;
}

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

.execution-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

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

.target-icon {
    width: 40px;
    height: 40px;
    color: var(--orange);
}

.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: 2px;
    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(--bg-surface);
    border: 3px solid var(--border-color);
    position: absolute;
    left: -32px;
    transition: all 0.3s ease;
}

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

.execution-step:hover .step-circle {
    border-color: var(--orange);
}

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

.execution-quote {
    margin-top: 40px;
    padding: 18px 24px;
    background-color: var(--orange-light);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--orange-dark);
    font-style: italic;
    text-align: center;
    line-height: 1.5;
}

/* Base Service Section */
.services-section {
    padding: 120px 0;
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-color);
}

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

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

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

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

.service-card {
    background-color: var(--bg-main);
    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.5), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before { left: 100%; }
.linkedin-service { border-top: 4px solid var(--linkedin-blue); }
.linkedin-service:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(10, 102, 194, 0.1); background-color: var(--bg-surface); }
.x-service { border-top: 4px solid var(--orange); }
.x-service:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(242, 91, 41, 0.1); background-color: var(--bg-surface); }
.instagram-service { border-top: 4px solid var(--instagram-pink); }
.instagram-service .service-icon { color: var(--instagram-pink); }
.instagram-service:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(225, 48, 108, 0.1); background-color: var(--bg-surface); }
.instagram-service:hover h3 { color: var(--instagram-pink); }

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    color: var(--text-heading);
    transition: transform 0.4s ease;
}

.linkedin-service .service-icon { color: var(--linkedin-blue); }
.x-service .service-icon { color: var(--orange); }
.service-card:hover .service-icon { transform: scale(1.1) translateY(-4px); }

.service-card h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-heading);
    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-body);
    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-heading);
    font-weight: 500;
}

/* Sub-Pages Additions */
.page-header-gradient {
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-main) 100%);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 60px;
}

.premium-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 1;
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: var(--orange);
}

.premium-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.premium-card:hover::after {
    transform: scaleX(1);
}

.card-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background-color: var(--orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.premium-card:hover .card-icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
    background-color: var(--orange);
    color: var(--text-inverse);
}

.card-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1.3;
    margin: 0;
}

.card-highlight {
    font-size: 14px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.card-desc {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.6;
    margin: 0;
}

.exam-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.exam-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--text-heading);
    font-weight: 500;
}

.exam-list li::before {
    content: '•';
    color: var(--orange);
    font-weight: bold;
}

.tech-section {
    background-color: #f1f5f9; 
    border-top: 1px solid var(--border-color);
    position: relative;
}

.premium-banner {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(242, 91, 41, 0.2);
    position: relative;
    overflow: hidden;
    margin: -40px auto 80px;
    max-width: 1000px;
    z-index: 10;
}

.premium-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    opacity: 0.5;
    pointer-events: none;
}

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

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

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

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

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

.stat-card-work {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

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

.filter-btn:hover { background-color: var(--bg-main); }
.filter-btn.active {
    background-color: var(--orange);
    color: var(--text-inverse);
    border-color: var(--orange);
}

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

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

.portfolio-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--orange);
}

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

.portfolio-category {
    background-color: var(--bg-main);
    color: var(--text-body);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.portfolio-platform { color: var(--text-muted); }
.portfolio-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.portfolio-card:hover .portfolio-title { color: var(--orange); }

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

.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-muted); font-weight: 500; margin-bottom: 4px; }
.portfolio-metric .metric-value { font-size: 20px; font-weight: 800; color: var(--text-heading); }
.portfolio-metric .metric-value.orange { color: var(--orange); }

.work-cta {
    padding: 80px 0;
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    text-align: center;
}

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

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

/* Universal Footer */
.footer {
    padding: 60px 0 20px;
    background-color: var(--text-heading);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--text-inverse);
}

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

.footer-col p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.footer-col span,
.footer-col li {
    color: var(--text-muted);
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
}

.footer-links a {
    text-decoration: none;
    transition: color 0.2s;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 24px;
    font-size: 14px;
}

.footer-legal a {
    text-decoration: none;
    transition: color 0.2s;
    color: var(--text-muted);
}

.footer-legal a:hover {
    color: var(--orange);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .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;
    }
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 768px) {
    /* Navigation already handled above */
    .hero { padding: 40px 0 60px; height: auto !important; display: block; overflow: visible; }
    .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%; text-align: center; }
    .hero-stats { flex-direction: column; gap: 24px; }
    .hero-right {
        position: relative;
        height: auto !important;
        min-height: 0;
        margin-top: 40px; 
        z-index: 1;
        overflow: visible;
        -webkit-mask-image: none;
        mask-image: none;
    }
    .engagement-cards {
        position: relative;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .card {
        position: relative !important;
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
        transform: none !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        z-index: 2;
    }
    .brand-name { font-size: 20px; }
    .process-content { grid-template-columns: 1fr; gap: 60px; }
    .process-title, .services-title { font-size: 40px; }
    .services-grid { grid-template-columns: 1fr; }
    .work-title { font-size: 48px; }
    .stats-cards, .portfolio-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; justify-content: center; }
    .footer-legal { justify-content: center; width: 100%; }
}

@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, .services-title { font-size: 32px; }
    .work-title { font-size: 36px; }
    .work-cta .cta-title { font-size: 32px; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* ========== FOOTER (clean version) ========== */
.footer {
    padding: 60px 0 20px;
    background-color: var(--text-heading);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--text-inverse);
    letter-spacing: 0.5px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    display: block;
}

.footer-col p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: #94a3b8;
}

.footer-contact li span {
    color: var(--orange);
    flex-shrink: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    text-decoration: none;
    font-size: 14px;
    color: #94a3b8;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 14px;
    color: #94a3b8;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    text-decoration: none;
    font-size: 14px;
    color: #94a3b8;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--orange);
}

/* Responsive footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    .footer-legal {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}