/* ============================================
   WASP 2.0 — Wasp-Inspired Design System
   Background: #c9d2e7 | Text: #181520
   Display: Syne (NeueMachina-like) | Body: DM Sans (NeueHaas-like)
   ============================================ */

/* === RESET & CONFIG === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #c9d2e7;
    --bg-preloader: #dee7f1;
    --bg-card: linear-gradient(183deg, hsla(240, 9%, 98%, 0.4), hsla(240, 3%, 94%, 0.4) 26.79%, rgba(233, 237, 245, 0.4));
    --bg-card-hover: linear-gradient(183deg, hsla(240, 9%, 98%, 0.55), hsla(240, 3%, 94%, 0.55) 26.79%, rgba(233, 237, 245, 0.55));
    --text: #181520;
    --text-2: #231b35;
    --text-3: #3f394c;
    --text-muted: #a5a5ae;
    --border: rgba(24, 21, 32, 0.1);
    --border-hover: rgba(24, 21, 32, 0.25);

    --font-display: 'Inter', 'DM Sans', sans-serif;
    --font-body: 'DM Sans', system-ui, sans-serif;

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    background-color: var(--bg);
    scroll-behavior: auto;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: transparent;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: rgba(24, 21, 32, 0.12);
    color: var(--text);
}

/* === AMBIENT VIGNETTES === */
.ambient-glow {
    position: fixed;
    top: -20%;
    right: -15%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(222, 231, 241, 0.6) 0%, transparent 65%);
    pointer-events: none;
    z-index: 3;
}

.edge-vignette {
    position: fixed;
    inset: 0;
    background:
        linear-gradient(to right, rgba(0, 0, 0, 0.03) 0%, transparent 6%, transparent 94%, rgba(0, 0, 0, 0.03) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.02) 0%, transparent 5%, transparent 95%, rgba(0, 0, 0, 0.03) 100%);
    pointer-events: none;
    z-index: 60;
}

/* === THREE.JS CANVAS === */
#three-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

/* === CONTAINER === */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* === HEADER === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 96px;
    padding: 0 40px;
    transition: height 0.4s var(--ease), background 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}

.header.scrolled {
    height: 70px;
    background: rgba(201, 210, 231, 0.65);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(24, 21, 32, 0.05);
}

.logo {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-decoration: none;
    color: var(--text);
    text-transform: uppercase;
    transition: transform 0.2s ease-out;
}

.logo-dot {
    color: var(--text-3);
}

.nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
    color: var(--text);
    position: relative;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--text-2);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text);
    transition: width 0.4s var(--ease);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-connect {
    background: var(--text);
    color: #fff !important;
    border-radius: 100px;
    padding: 8px 20px;
    font-family: var(--font-display) !important;
    font-size: 12px !important;
    font-weight: 400;
    text-transform: uppercase;
    transition: background 0.3s var(--ease), transform 0.2s;
}

.nav-connect:hover {
    background: var(--text-2);
    transform: scale(1.02);
}

.nav-connect::after {
    display: none;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 7px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 200;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--text);
    transition: all 0.4s var(--ease);
}

.mobile-toggle.active span:first-child {
    transform: rotate(45deg) translate(3px, 3px);
}

.mobile-toggle.active span:last-child {
    transform: rotate(-45deg) translate(3px, -3px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 150;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease);
    overflow-y: auto;
    padding: 80px 20px;
}

@media (max-height: 500px) {
    .mobile-menu {
        justify-content: flex-start;
    }
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: clamp(24px, 6vw, 44px);
    color: var(--text);
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
}

.mobile-cta {
    padding: 10px 24px;
    background: var(--text);
    color: #fff !important;
    border-radius: 100px;
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    letter-spacing: 0.1em;
}

/* === HERO === */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 160px 40px 80px;
    position: relative;
    z-index: 5;
}

.hero-text-block {
    margin-top: 8vh;
    text-align: left;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(50px, 8.5vw, 120px);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.04em;
    color: var(--text);
    text-transform: uppercase;
}

.hero-line {
    display: block;
}

.hero-accent {
    font-style: normal;
    font-weight: 900;
}

.hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 10vh;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-2);
    max-width: 380px;
    font-weight: 500;
    text-align: left;
}

.scroll-cue {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--text);
    cursor: pointer;
    text-transform: uppercase;
    transition: transform 0.2s ease-out;
}

.scroll-cue svg {
    animation: bounce 2s infinite var(--ease-smooth);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* === SECTION GENERAL === */
.section-campaign,
.section-features,
.section-process,
.section-results,
.section-apply,
.section-work,
.section-our-story,
.section-insights {
    padding: 140px 0;
    position: relative;
    z-index: 5;
}

.section-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--text);
    text-transform: uppercase;
    display: block;
    margin-bottom: 24px;
    text-align: left;
}

.mega-heading {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 90px);
    line-height: 1.0;
    letter-spacing: -0.04em;
    font-weight: 900;
    margin-bottom: 70px;
    text-align: left;
    text-transform: uppercase;
}

.mega-line {
    display: block;
}

/* === CAMPAIGN / APPROACH === */
.campaign-body {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.campaign-intro {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-2);
    max-width: 780px;
    text-align: left;
    font-weight: 500;
}

.campaign-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Glassmorphic Cards (Wasp style) */
.campaign-card {
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    background: var(--bg-card);
    border-radius: 6px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    text-align: left;
    transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}

.campaign-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

/* Spotlight Glare */
.campaign-card::before, .testi-card::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 0%, transparent 65%);
    top: var(--mouse-y, -9999px);
    left: var(--mouse-x, -9999px);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.5s;
    opacity: 0;
}

.campaign-card:hover::before, .testi-card:hover::before {
    opacity: 1;
}

/* Ensure card content renders on top of the hover spotlight reflection overlay */
.campaign-card > *,
.testi-card > *,
.work-card > *,
.insight-card > * {
    position: relative;
    z-index: 2;
}

.card-marker {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 28px;
}

.card-marker.bad { color: #e45c5c; }
.card-marker.good { color: #3cb885; }

.campaign-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.campaign-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.campaign-card li {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-2);
    font-weight: 500;
    position: relative;
    padding-left: 16px;
}

.campaign-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--text-3);
}

.campaign-card li strong {
    color: var(--text);
    font-weight: 600;
}

/* Clients Grid */
.clients-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.client-logo {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text);
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    letter-spacing: 0.02em;
    transition: color 0.3s;
}

.client-logo:hover {
    color: var(--text-3);
}

/* === SERVICES SHOWCASE === */
.services-intro {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-2);
    max-width: 800px;
    text-align: left;
    font-weight: 500;
    margin-bottom: 60px;
    margin-top: -30px; /* Pull closer to the heading */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 60px;
    align-items: start;
}

.services-column {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.services-col-header {
    display: inline-flex;
    padding: 10px 24px;
    border-radius: 100px;
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.01em;
    align-self: flex-start;
    margin-bottom: 8px;
    border: none;
    transition: background-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}

.services-col-header:hover {
    transform: translateY(-2px) rotate(-1.5deg);
}

.creative-header,
.production-header,
.ai-header,
.marketing-header {
    background-color: #dee7f1; /* Light lavender-blue accent */
    color: var(--text);
}

.marketing-header {
    margin-top: 48px; /* Spacing for section 2 in column 3 */
}

.arrow-sans {
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 500;
    margin-left: 6px;
    display: inline-block;
}

.services-list {
    display: flex;
    flex-direction: column;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    transition: padding-left 0.3s var(--ease);
}

.service-item:hover {
    padding-left: 10px;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item-main {
    flex-grow: 1;
    padding-right: 16px;
    text-align: left;
}

.service-item-main h3 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-item-main h3 .new-badge {
    font-size: 9px;
    font-weight: 700;
    text-transform: none;
    background-color: #8c73a8; /* Muted purple */
    color: #fff; /* White text */
    padding: 2px 7px;
    border-radius: 100px;
    letter-spacing: 0.02em;
    line-height: 1;
    margin-left: 6px;
    font-family: var(--font-body);
}

.service-item-main h3 .campaign-badge {
    font-size: 9px;
    font-weight: 700;
    text-transform: none;
    background-color: var(--text); /* Deep purple-black */
    color: #dee7f1; /* Light lavender text */
    padding: 2px 7px;
    border-radius: 100px;
    letter-spacing: 0.02em;
    line-height: 1;
    margin-left: 6px;
    font-family: var(--font-body);
}

.service-item.campaign-highlight {
    background: rgba(222, 231, 241, 0.25); /* Subtle highlight background to denote campaign focus */
    border-left: 3px solid var(--text);
    padding-left: 10px;
}

.service-item.campaign-highlight:hover {
    padding-left: 16px;
    background: rgba(222, 231, 241, 0.4);
}

.service-item-main p {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.45;
    color: var(--text-3);
    font-weight: 500;
}

.service-icon {
    color: var(--text-3);
    flex-shrink: 0;
    transition: color 0.3s, transform 0.3s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item:hover .service-icon {
    color: var(--text);
    transform: rotate(15deg) scale(1.1);
}

/* === PROCESS === */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 40px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
    text-align: left;
    transition: background 0.3s;
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--text);
    transition: width 0.6s ease-out, left 0.6s ease-out;
}

.process-step:hover::before {
    width: 100%;
    left: 0;
}

.step-num {
    font-family: var(--font-display);
    font-size: clamp(40px, 7vw, 90px);
    font-weight: 400;
    line-height: 1.0;
    color: var(--text-muted);
    min-width: 120px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.process-step:hover .step-num {
    color: var(--text);
}

.step-body h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: var(--text);
}

.step-body p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-2);
    max-width: 800px;
    font-weight: 500;
}

/* === RESULTS / AWARDS === */
.results-layout {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
}

.results-left {
    position: sticky;
    top: 140px;
    align-self: start;
}

.results-heading {
    margin-bottom: 0;
}

.results-intro {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-2);
    margin-bottom: 60px;
    text-align: left;
    font-weight: 500;
}

/* Awards Showcase */
.awards-showcase {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.award-badge {
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
    text-align: left;
    position: relative;
    transition: padding-left 0.4s var(--ease);
}

.award-badge::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--text);
    transition: width 0.6s ease-out, left 0.6s ease-out;
}

.award-badge:first-child {
    border-top: 1px solid var(--border);
}

.award-badge:hover {
    padding-left: 12px;
}

.award-badge:hover::before {
    width: 100%;
    left: 0;
}

.award-badge h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 8px;
    text-transform: uppercase;
    color: var(--text);
    transition: color 0.3s;
}

.award-badge p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-3);
    font-weight: 500;
    transition: color 0.3s;
}

.award-badge:hover h3 {
    color: var(--text);
}

.award-badge:hover p {
    color: var(--text-2);
}

/* Testimonial cards (kept for backward compat) */
.testimonial-stack {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testi-card {
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    background: var(--bg-card);
    border-radius: 6px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    text-align: left;
    transition: background 0.4s var(--ease);
}

.testi-card:hover {
    background: var(--bg-card-hover);
}

.testi-quote {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 32px;
    color: var(--text-2);
    font-style: italic;
    font-weight: 500;
}

.testi-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.testi-author strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.testi-author span {
    font-size: 12px;
    color: var(--text-3);
    margin-top: 2px;
    display: block;
}

.testi-metric {
    text-align: right;
}

.metric-val {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
}

.metric-label {
    font-size: 11px;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
    display: block;
}

/* === APPLICATION FORM === */
.apply-wrapper {
    max-width: 800px;
    margin: 0 auto 0 0;
}

.apply-header {
    margin-bottom: 60px;
    text-align: left;
}

.apply-sub {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-2);
    font-weight: 500;
}

.apply-form {
    display: flex;
    flex-direction: column;
    gap: 36px;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--text-3);
    text-transform: uppercase;
    transition: transform 0.3s var(--ease), color 0.3s var(--ease);
}

.form-group:focus-within label {
    color: var(--accent);
    transform: translateX(4px);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 16px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    outline: none;
    transition: border-color 0.3s var(--ease), box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    animation: border-glow 3s linear infinite;
}

@keyframes border-glow {
    0% {
        border-color: #5b6480;
        box-shadow: 0 0 8px rgba(91, 100, 128, 0.15);
    }
    33% {
        border-color: #8c73a8;
        box-shadow: 0 0 8px rgba(140, 115, 168, 0.2);
    }
    66% {
        border-color: #4a6fa5;
        box-shadow: 0 0 8px rgba(74, 111, 165, 0.15);
    }
    100% {
        border-color: #5b6480;
        box-shadow: 0 0 8px rgba(91, 100, 128, 0.15);
    }
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-agreement {
    margin-top: 10px;
}

.check-label {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-2);
    font-weight: 500;
}

.check-box {
    width: 18px;
    height: 18px;
    border: 1px solid var(--border-hover);
    border-radius: 4px;
    display: inline-block;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    cursor: pointer;
}

.check-label input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.check-label input:checked + .check-box {
    background: var(--text);
    border-color: var(--text);
}

.check-label input:checked + .check-box::after {
    content: '✓';
    position: absolute;
    color: var(--bg);
    font-size: 11px;
    font-weight: 700;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.check-label input:focus-visible + .check-box {
    outline: 2px solid var(--text);
    outline-offset: 3px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.02em;
    background: var(--text);
    color: #fff;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: transform 0.2s var(--ease), background 0.3s;
    align-self: flex-start;
    margin-top: 8px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    transform: scale(1.02);
    background: var(--text-2);
}

.btn-submit svg {
    transition: transform 0.3s var(--ease);
}

.btn-submit:hover svg {
    transform: translateX(6px);
}

.btn-submit:active {
    transform: scale(0.98);
}

.form-success {
    padding: 50px 0;
    text-align: left;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.form-success p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-2);
    font-weight: 500;
}

/* === WORK SECTION === */
.work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.work-card {
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    background: var(--bg-card);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.4s var(--ease), background 0.4s;
}

.work-card:hover {
    transform: translateY(-4px);
    background: var(--bg-card-hover);
}

.work-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, rgba(24, 21, 32, 0.06), rgba(24, 21, 32, 0.12));
    position: relative;
    overflow: hidden;
}

.work-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(24, 21, 32, 0.0);
    transition: background 0.4s;
}

.work-card:hover .work-overlay {
    background: rgba(24, 21, 32, 0.6);
}

.work-overlay h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s, transform 0.4s var(--ease);
}

.work-card:hover .work-overlay h3 {
    opacity: 1;
    transform: translateY(0);
}

.work-overlay p {
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-top: 8px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s 0.05s, transform 0.4s 0.05s var(--ease);
}

.work-card:hover .work-overlay p {
    opacity: 1;
    transform: translateY(0);
}

.work-details {
    padding: 28px 32px;
}

.work-details h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: var(--text);
}

.work-category {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--text-3);
    margin-bottom: 12px;
}

.work-details p:last-child {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-2);
    font-weight: 500;
}

/* === OUR STORY === */
.story-content {
    max-width: 950px;
}

.story-content p {
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 1.5;
    color: var(--text-2);
    font-weight: 500;
    margin-bottom: 28px;
}

.story-content p:last-child {
    margin-bottom: 0;
}

/* === INSIGHTS SECTION === */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.insight-card {
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    background: var(--bg-card);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.4s var(--ease), background 0.4s;
}

.insight-card:hover {
    transform: translateY(-4px);
    background: var(--bg-card-hover);
}

.insight-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(24, 21, 32, 0.05), rgba(24, 21, 32, 0.1));
    position: relative;
}

.insight-overlay {
    position: absolute;
    bottom: 16px;
    left: 16px;
}

.insight-category {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--text);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    padding: 4px 12px;
    border-radius: 100px;
}

.insight-content {
    padding: 24px;
}

.insight-date {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--text-3);
    font-weight: 500;
    display: block;
    margin-bottom: 12px;
}

.insight-content h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.2;
}

.insight-content p {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-2);
    font-weight: 500;
    margin-bottom: 16px;
}

.insight-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: color 0.3s;
}

.insight-link:hover {
    color: var(--text-3);
}

/* === FOOTER === */
.footer {
    position: relative;
    z-index: 5;
    padding: 100px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    text-align: left;
}

.footer-brand .logo {
    margin-bottom: 16px;
    display: inline-block;
}

.footer-brand p {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-3);
    line-height: 1.6;
    font-weight: 500;
}

.footer-cols {
    display: flex;
    gap: 100px;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--text-3);
}

.footer-col a {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-2);
    text-decoration: none;
    padding: 6px 0;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--text);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border);
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--text-3);
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.disclaimer {
    display: flex;
    gap: 24px;
}

.disclaimer a {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--text-3);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.disclaimer a:hover {
    color: var(--text);
}

/* === CUSTOM CURSOR === */
.cursor-ring {
    position: fixed;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease), height 0.3s var(--ease);
    mix-blend-mode: difference;
    will-change: width, height;
}

.cursor-ring.hovering {
    width: 50px;
    height: 50px;
}

.cursor-dot {
    display: none !important;
}

/* === REVEAL ANIMATIONS (initial state) === */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
}

/* Glowing Background Blobs */
.bg-blob-container {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.85;
}

.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.7;
    animation: blob-float 25s infinite alternate ease-in-out;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(160, 175, 215, 0.75) 0%, rgba(160, 175, 215, 0) 70%);
    animation-duration: 20s;
}

.blob-2 {
    bottom: -15%;
    right: -10%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, rgba(220, 195, 235, 0.75) 0%, rgba(220, 195, 235, 0) 70%);
    animation-duration: 28s;
    animation-delay: -5s;
}

.blob-3 {
    top: 30%;
    left: 20%;
    width: 55vw;
    height: 55vw;
    background: radial-gradient(circle, rgba(185, 198, 230, 0.65) 0%, rgba(185, 198, 230, 0) 70%);
    animation-duration: 22s;
    animation-delay: -10s;
}

@keyframes blob-float {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
        transform: translate(8%, 10%) scale(1.15) rotate(120deg);
    }
    66% {
        transform: translate(-10%, -6%) scale(0.9) rotate(240deg);
    }
    100% {
        transform: translate(0, 0) scale(1) rotate(360deg);
    }
}

/* === RESPONSIVE === */
@media (max-width: 1080px) {
    .container { padding: 0 40px; }
    .header { padding: 0 40px; }
    .hero { padding: 120px 40px 40px; }
    .results-layout { grid-template-columns: 1fr; gap: 60px; }
    .results-left { position: static; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
    .work-grid { grid-template-columns: 1fr; }
    .insights-grid { grid-template-columns: 1fr; } }
}

/* Hide default cursor on desktop only if custom cursor is active and JS initialized */
@media (hover: hover) and (pointer: fine) {
    body.cursor-enabled,
    body.cursor-enabled a,
    body.cursor-enabled button,
    body.cursor-enabled input,
    body.cursor-enabled textarea,
    body.cursor-enabled select,
    body.cursor-enabled label {
        cursor: none !important;
    }
}

/* === PRELOADER SPLIT SCREEN === */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}

.preloader-half {
    position: absolute;
    left: 0;
    width: 100%;
    height: 50vh;
    background: var(--bg-preloader);
    z-index: 1;
    transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
}

.preloader-half.top-half {
    top: 0;
    border-bottom: 1px solid rgba(24, 21, 32, 0.03);
}

.preloader-half.bottom-half {
    bottom: 0;
    border-top: 1px solid rgba(24, 21, 32, 0.03);
}

.preloader-wrap {
    position: relative;
    z-index: 2;
    text-align: center;
}

.preloader-logo-svg {
    display: block;
    margin: 0 auto 24px;
    overflow: visible;
}

.preloader-logo-text {
    font-family: var(--font-display);
    font-size: 80px;
    font-weight: 900;
    letter-spacing: -0.04em;
    fill: transparent;
    stroke: var(--text);
    stroke-width: 1.5px;
    stroke-dasharray: 450;
    stroke-dashoffset: 450;
    animation: preloader-logo-draw 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes preloader-logo-draw {
    0% {
        stroke-dashoffset: 450;
        fill: transparent;
    }
    60% {
        stroke-dashoffset: 0;
        fill: transparent;
    }
    100% {
        stroke-dashoffset: 0;
        fill: var(--text);
    }
}

.preloader-num {
    font-family: var(--font-display);
    font-size: clamp(60px, 10vw, 120px);
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.preloader-progress-container {
    width: 200px;
    height: 2px;
    background: rgba(24, 21, 32, 0.08);
    margin: 20px auto 0;
    position: relative;
    overflow: hidden;
    border-radius: 100px;
}

.preloader-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--text);
}

/* === LEGAL SUBPAGES STYLES === */
.legal-hero {
    padding: 160px 0 100px;
    position: relative;
    z-index: 5;
    text-align: left;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 40px;
    transition: transform 0.3s var(--ease);
}

.back-link:hover {
    transform: translateX(-4px);
}

.back-link svg {
    transition: transform 0.3s var(--ease);
}

.legal-heading {
    margin-bottom: 60px;
}

.legal-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.legal-section h2 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.legal-section p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-2);
    font-weight: 500;
}

/* === ACCENT & BRAND ADDITIONAL === */
:root {
    --accent: #8c73a8;
}

/* === INSIGHTS SECTION === */
.insights-intro {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-2);
    max-width: 800px;
    text-align: left;
    font-weight: 500;
    margin-bottom: 60px;
    margin-top: -30px;
}

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

@media (max-width: 991px) {
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Glassmorphic Insight Cards */
.insight-card {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: background 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.insight-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(24, 21, 32, 0.08);
}

.insight-card-image {
    height: 200px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.insight-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.insight-card:hover .insight-card-image img {
    transform: scale(1.05);
}

.insight-card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(24, 21, 32, 0.85);
    color: #dee7f1;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 6px 12px;
    border-radius: 100px;
    z-index: 10;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.cover-gradient-purple {
    background: linear-gradient(135deg, #8c73a8 0%, #181520 100%);
    width: 100%;
    height: 100%;
}

.cover-gradient-lavender {
    background: linear-gradient(135deg, #dee7f1 0%, #8c73a8 100%);
    width: 100%;
    height: 100%;
}

.cover-gradient-dark {
    background: linear-gradient(135deg, #181520 0%, #231b35 100%);
    width: 100%;
    height: 100%;
}

.insight-card-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.insight-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
    transition: color 0.3s;
}

.insight-card:hover .insight-card-title {
    color: var(--text-2);
}

.insight-card-excerpt {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-3);
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.insight-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-top: auto;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

.insights-empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: var(--font-body);
    color: var(--text-3);
    font-weight: 500;
}

/* === ARTICLE READER MODAL === */
.article-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(201, 210, 231, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease);
}

.article-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.article-modal-window {
    background: var(--bg-preloader);
    border: 1px solid var(--border);
    border-radius: 12px;
    width: 100%;
    max-width: 840px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 60px rgba(24, 21, 32, 0.15);
    transform: translateY(20px);
    transition: transform 0.5s var(--ease);
}

.article-modal-overlay.active .article-modal-window {
    transform: translateY(0);
}

.article-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(24, 21, 32, 0.8);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 50;
    transition: background 0.3s, transform 0.3s;
}

.article-modal-close:hover {
    background: var(--text);
    transform: scale(1.05);
}

.article-modal-cover {
    height: 320px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.article-modal-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-modal-body {
    padding: 48px;
}

@media (max-width: 767px) {
    .article-modal-overlay {
        padding: 16px;
    }
    .article-modal-body {
        padding: 32px 24px;
    }
    .article-modal-cover {
        height: 200px;
    }
}

.article-modal-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-3);
    margin-bottom: 16px;
}

.article-modal-category {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.article-modal-dot {
    color: var(--text-muted);
}

.article-modal-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.2;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 32px;
}

.article-modal-content {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-2);
}

.article-modal-content p {
    margin-bottom: 24px;
}

.article-modal-content strong {
    font-weight: 700;
}

.article-modal-content em {
    font-style: italic;
}

/* === CAMPAIGN WAITLIST COMPONENT === */
.waitlist-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 60px;
    text-align: left;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-top: 40px;
}

.waitlist-container h3 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--text);
}

.waitlist-description {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-2);
    max-width: 680px;
    margin-bottom: 32px;
    font-weight: 500;
}

.waitlist-form {
    display: flex;
    gap: 16px;
    max-width: 600px;
}

.waitlist-input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 16px 20px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
}

.waitlist-input:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.7);
}

.btn-waitlist {
    background: var(--text);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0 32px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s var(--ease), transform 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-waitlist:hover {
    background: #231b35;
    transform: translateY(-1px);
}

.btn-waitlist:active {
    transform: translateY(1px);
}

.waitlist-success {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: #3cb885;
    margin-top: 16px;
}

@media (max-width: 768px) {
    .cursor-ring { display: none !important; }
    .container { padding: 0 20px; }
    .header { height: 60px; padding: 0 20px; }
    .header.scrolled { background: rgba(202, 214, 236, 0.9); }
    .nav { display: none; }
    .mobile-toggle { display: flex; }
 
    /* Hero Section Spacing */
    .hero { padding: 108px 20px 48px; min-height: auto; }
    .hero-text-block { margin-top: 24px; }
    .hero-title { font-size: clamp(38px, 12vw, 85px); }
    .hero-bottom { flex-direction: column; gap: 16px; align-items: flex-start; margin-top: 48px; }
    .hero-subtitle { max-width: 100%; }
 
    /* Section Heading & Core Spacing */
    .mega-heading { font-size: clamp(28px, 9vw, 60px); margin-bottom: 24px; }
    .section-label { margin-bottom: 16px; }
    
    .section-campaign,
    .section-features,
    .section-process,
    .section-results,
    .section-apply,
    .section-work,
    .section-our-story,
    .section-insights { padding: 48px 0; }

    /* Campaign Section */
    .campaign-body { gap: 24px; }
    .campaign-grid { grid-template-columns: 1fr; gap: 16px; }
    .campaign-card { padding: 24px; }
    .campaign-card h3 { font-size: 20px; margin-bottom: 16px; }
    .card-marker { margin-bottom: 16px; }
    
    /* Waitlist Component */
    .waitlist-container { padding: 24px; margin-top: 24px; }
    .waitlist-container h3 { font-size: 24px; margin-bottom: 16px; }
    .waitlist-description { margin-bottom: 16px; font-size: 14px; }
    .waitlist-form { flex-direction: column; gap: 16px; }
    .waitlist-input { padding: 12px 16px; font-size: 14px; }
    .btn-waitlist { padding: 12px 24px; font-size: 12px; width: 100%; }

    /* Services Section */
    .services-intro { margin-top: 0; margin-bottom: 24px; }
    .services-grid { grid-template-columns: 1fr; gap: 24px; margin-top: 0; }
    .services-column { gap: 24px; }
    .services-col-header { margin-bottom: 4px; padding: 8px 16px; font-size: 15px; }
    .service-item { padding: 16px 0; }
    .marketing-header { margin-top: 16px; }

    /* Process Section */
    .process-steps { margin-top: 24px; }
    .process-step { flex-direction: column; gap: 16px; padding: 24px 0; }
    .step-num { font-size: clamp(36px, 10vw, 65px); min-width: 50px; }
    .step-body h3 { font-size: 20px; margin-bottom: 16px; }

    /* Results Section */
    .results-layout { grid-template-columns: 1fr; gap: 24px; }
    .results-left { position: static; }
    .results-intro { margin-bottom: 24px; }
    .testimonial-stack { gap: 16px; }
    .testi-card { padding: 24px; }
    .testi-quote { margin-bottom: 16px; }
    .testi-footer { flex-direction: column; align-items: flex-start; gap: 16px; padding-top: 16px; }
    .testi-metric { text-align: left; }
    .metric-val { font-size: 28px; }
    
    /* Work Section */
    .work-grid { gap: 16px; }
    .work-details { padding: 24px; }
    .work-image { height: 200px; }
    
    /* Insights Section */
    .insights-intro { margin-top: 0; margin-bottom: 24px; }
    .insights-grid { margin-top: 0; }
    .insight-card-body { padding: 24px; }
    .insight-image { height: 160px; }
    .insights-empty-state { padding: 24px; }

    /* Connect Section */
    .apply-header { margin-bottom: 24px; }
    .apply-form { gap: 16px; }
    .form-row { grid-template-columns: 1fr; gap: 16px; }
    .form-group { gap: 8px; }
    .form-group input, .form-group select, .form-group textarea { padding: 12px 16px; font-size: 15px; }
    .form-agreement { margin-top: 8px; }
    
    /* Layout & Footer */
    .clients-grid { grid-template-columns: 1fr; }
    .ambient-glow { display: none; }
    .edge-vignette { display: none; }

    .footer { padding: 48px 0; }
    .footer-inner { flex-direction: column; gap: 24px; margin-bottom: 24px; }
    .footer-cols { gap: 24px; }
    .disclaimer { gap: 16px; flex-wrap: wrap; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; padding-top: 24px; }

    /* Legal Pages Mobile Spacing */
    .legal-hero { padding: 108px 0 48px; }
    .back-link { margin-bottom: 24px; }
    .legal-heading { margin-bottom: 24px; }
    .legal-content { gap: 24px; }
    .legal-section h2 { font-size: 20px; margin-bottom: 16px; }
    .legal-section p { font-size: 15px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: clamp(32px, 14vw, 55px); line-height: 1.0; }
    .mega-heading { font-size: clamp(24px, 10vw, 45px); }
    .feature-mega { font-size: clamp(32px, 14vw, 55px); }
}
