/* ── Design tokens ── */
:root {
    --bg:           #070b16;
    --bg-card:      #0d1322;
    --bg-section:   #0a1020;
    --border:       #162035;
    --border-light: #1c2a45;
    --accent:       #b4c8dc;
    --accent-dim:   rgba(180, 200, 220, 0.12);
    --text-primary: #f2f6fc;
    --text-secondary: #a8bfd4;
    --text-muted:   #6a8aaa;
    --nav-h:        72px;
    --max-w:        1160px;
    --pad-x:        40px;
    --pad-section:  120px;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}
img, svg { display: block; }
a { color: inherit; }
ul { list-style: none; }

section, footer {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    scroll-margin-top: var(--nav-h);
}

/* ── Base ── */
body {
    background: var(--bg);
    color: var(--text-primary);
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ── Shared utilities ── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}

.section-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.section-header {
    margin-bottom: 72px;
}

.section-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 200;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 20px;
}

.section-sub {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.75;
    font-weight: 300;
}

.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: #070b16;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 17px 40px;
    border-radius: 1px;
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    opacity: 0.88;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(180, 200, 220, 0.2);
}

/* ── Fade-in ── */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Nav ── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    height: var(--nav-h);
    border-bottom: 1px solid transparent;
    transition: border-color 0.4s, background 0.4s;
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-color: var(--border);
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    text-decoration: none;
}

.logo-first {
    font-weight: 700;
}

.logo-last {
    font-weight: 400;
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--text-primary); }

.nav-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--accent);
    border: 1px solid rgba(180, 200, 220, 0.4);
    padding: 9px 18px;
    border-radius: 1px;
    font-weight: 500;
    line-height: 1;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.nav-linkedin:hover {
    background: var(--accent);
    color: #070b16 !important;
    border-color: var(--accent);
}

.nav-linkedin svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

.nav-links a.nav-cta {
    display: inline-flex;
    align-items: center;
    color: var(--accent);
    border: 1px solid rgba(180, 200, 220, 0.4);
    padding: 9px 22px;
    border-radius: 1px;
    font-weight: 500;
    line-height: 1;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.nav-links a.nav-cta:hover {
    background: var(--accent);
    color: #070b16;
    border-color: var(--accent);
}

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-mobile-toggle span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--text-secondary);
    transition: background 0.2s, transform 0.3s ease, opacity 0.3s ease;
}

.nav-mobile-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-mobile-toggle.open span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -30%;
    left: 0;
    right: 0;
    bottom: -30%;
    background-image:
        linear-gradient(rgba(180, 200, 220, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(180, 200, 220, 0.05) 1px, transparent 1px);
    background-size: 72px 72px;
    will-change: transform;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 80% at 65% 40%, transparent 25%, var(--bg) 75%);
}

.hero-content {
    position: relative;
    z-index: 1;
    will-change: transform;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: calc(var(--nav-h) + 80px) var(--pad-x) 100px;
}

.hero-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
}

.hero-headline {
    font-size: clamp(48px, 7.5vw, 100px);
    font-weight: 200;
    letter-spacing: -0.035em;
    line-height: 1.04;
    color: var(--text-primary);
    margin-bottom: 36px;
    max-width: 900px;
    opacity: 0;
    animation: fadeUp 0.9s 0.4s forwards;
}

.hero-headline em {
    font-style: italic;
    font-weight: 200;
    color: var(--accent);
}

.hero-sub {
    font-size: 17px;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 52px;
    opacity: 0;
    animation: fadeUp 0.9s 0.6s forwards;
}

.hero .btn-primary {
    opacity: 0;
    animation: fadeUp 0.9s 0.8s forwards;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 48px;
    left: var(--pad-x);
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    animation: fadeIn 1s 1.2s forwards;
}

.hero-scroll-hint span {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-line {
    width: 48px;
    height: 1px;
    background: var(--text-muted);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--accent);
    animation: scrollLine 2s 1.4s ease-in-out infinite;
}

/* ── About ── */
.about {
    padding: var(--pad-section) 0;
    background: var(--bg-section);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 88px;
    align-items: start;
}

.about-photo {
    position: sticky;
    top: calc(var(--nav-h) + 32px);
}

.photo-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 200;
    letter-spacing: 0.04em;
    color: var(--text-muted);
}

.about-photo img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: top center;
}

.photo-caption {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.photo-caption span:first-child {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
}

.photo-caption span:last-child {
    font-size: 12px;
    color: var(--text-muted);
}

.about-text h2 {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 200;
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin-bottom: 28px;
    color: var(--text-primary);
}

.about-text p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
    font-weight: 300;
}

/* ── Industries ── */
.industries {
    padding: var(--pad-section) 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid var(--border);
}

.industries .section-label {
    margin-bottom: 16px;
}

.industries-header {
    margin-bottom: 64px;
}

.industries-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 200;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 16px;
}

.industries-header p {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.75;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.industry-item {
    background: var(--bg);
    padding: 52px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    transition: background 0.25s;
}

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

.industry-icon {
    width: 36px;
    height: 36px;
    color: var(--accent);
    opacity: 0.85;
}

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

.industry-item span {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--text-secondary);
    line-height: 1.5;
}

.industry-cta {
    background: var(--accent-dim);
    border: 1px solid rgba(180, 200, 220, 0.2);
    text-decoration: none;
    justify-content: center;
    gap: 12px;
    transition: background 0.25s, border-color 0.25s;
}

.industry-cta:hover {
    background: rgba(180, 200, 220, 0.18);
    border-color: rgba(180, 200, 220, 0.4);
}

.industry-cta-label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
}

.industry-cta-action {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: -0.01em;
    color: var(--accent);
}

/* ── Services ── */
.services {
    padding: var(--pad-section) 0;
}

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

.service-card {
    background: var(--bg);
    padding: 52px 48px;
    transition: background 0.25s;
}

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

.service-icon {
    width: 26px;
    height: 26px;
    color: var(--accent);
    margin-bottom: 28px;
}

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

.service-card h3 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    margin-bottom: 14px;
    line-height: 1.3;
}

.service-card > p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 28px;
    font-weight: 300;
}

.service-card ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-card ul li {
    font-size: 13px;
    color: var(--text-muted);
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.service-card ul li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 16px;
    top: -2px;
}

/* ── How I Work ── */
.process {
    padding: var(--pad-section) 0;
    background: var(--bg-section);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: start;
}

.process-divider {
    width: 1px;
    background: var(--border-light);
    align-self: stretch;
    margin: 0 48px;
    min-height: 200px;
}

.process-step {
    padding: 8px 0;
}

.step-number {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.process-step p {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ── Who I Work With ── */
.who {
    padding: var(--pad-section) 0;
}

.who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: start;
}

.who-text h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 200;
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.who-text p {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.who-availability {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: var(--accent) !important;
    letter-spacing: 0.02em;
    margin-bottom: 32px !important;
}

.who-criteria {
    padding: 44px;
    border: 1px solid var(--border-light);
    background: var(--bg-card);
}

.who-criteria-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.who-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.who-list li {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.who-list li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 16px;
    top: -2px;
}

/* ── Results ── */
.results {
    padding: var(--pad-section) 0;
    background: var(--bg-section);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.result-item {
    background: var(--bg-section);
    padding: 52px 44px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: background 0.25s;
}

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

.result-number {
    font-size: clamp(52px, 5.5vw, 80px);
    font-weight: 200;
    letter-spacing: -0.03em;
    color: var(--accent);
    line-height: 1;
}

.result-label {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
}

/* ── Contact ── */
.contact {
    padding: 160px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(180, 200, 220, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(180, 200, 220, 0.04) 1px, transparent 1px);
    background-size: 72px 72px;
}

.contact::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 90% at 50% 50%, transparent 20%, var(--bg) 80%);
}

.contact .container { position: relative; z-index: 1; }

.contact-inner { max-width: 620px; margin: 0 auto; }

.contact-inner h2 {
    font-size: clamp(30px, 4vw, 50px);
    font-weight: 200;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.contact-inner > p {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 44px;
    line-height: 1.75;
}

.contact-email {
    margin-top: 28px;
    font-size: 14px;
    color: var(--text-muted);
}

.contact-email a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s;
}

.contact-email a:hover { opacity: 0.8; }

/* ── Footer ── */
footer {
    border-top: 1px solid var(--border);
    padding: 40px 0 48px;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.footer-title {
    font-size: 12px;
    color: var(--text-muted);
}

.footer-right { display: flex; gap: 32px; }

.footer-link {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover { color: var(--accent); }

.footer-copy {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

/* ── Grain texture ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.032;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
}

/* ── Dot navigation ── */
.dot-nav {
    position: fixed;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 199;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.dot-nav-item {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: 1px solid rgba(180, 200, 220, 0.3);
    background: transparent;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
    position: relative;
    padding: 0;
}

.dot-nav-item::before {
    content: attr(data-label);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--accent);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s;
    background: var(--bg-card);
    padding: 5px 12px;
    border: 1px solid var(--border-light);
}

.dot-nav-item:hover::before {
    opacity: 1;
}

.dot-nav-item:hover {
    border-color: var(--accent);
}

.dot-nav-item.active {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.4);
}

/* ── Staggered card animations ── */
.services-grid .service-card:nth-child(1) { transition-delay: 0ms; }
.services-grid .service-card:nth-child(2) { transition-delay: 110ms; }
.services-grid .service-card:nth-child(3) { transition-delay: 220ms; }
.services-grid .service-card:nth-child(4) { transition-delay: 330ms; }

.results-grid .result-item:nth-child(1) { transition-delay: 0ms; }
.results-grid .result-item:nth-child(2) { transition-delay: 80ms; }
.results-grid .result-item:nth-child(3) { transition-delay: 160ms; }
.results-grid .result-item:nth-child(4) { transition-delay: 240ms; }
.results-grid .result-item:nth-child(5) { transition-delay: 320ms; }
.results-grid .result-item:nth-child(6) { transition-delay: 400ms; }

.industries-grid .industry-item:nth-child(1) { transition-delay: 0ms; }
.industries-grid .industry-item:nth-child(2) { transition-delay: 60ms; }
.industries-grid .industry-item:nth-child(3) { transition-delay: 120ms; }
.industries-grid .industry-item:nth-child(4) { transition-delay: 180ms; }
.industries-grid .industry-item:nth-child(5) { transition-delay: 240ms; }
.industries-grid .industry-item:nth-child(6) { transition-delay: 300ms; }
.industries-grid .industry-item:nth-child(7) { transition-delay: 360ms; }
.industries-grid .industry-item:nth-child(8) { transition-delay: 420ms; }

.process-steps .process-step:nth-child(1) { transition-delay: 0ms; }
.process-steps .process-step:nth-child(3) { transition-delay: 160ms; }
.process-steps .process-step:nth-child(5) { transition-delay: 320ms; }

/* ── Keyframes ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes scrollLine {
    0%   { left: -100%; }
    50%  { left: 0%; }
    100% { left: 100%; }
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 960px) {
    :root { --pad-x: 28px; --pad-section: 88px; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .about-photo {
        position: static;
        max-width: 260px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-divider {
        display: none;
    }

    .process-step {
        padding: 0 0 40px;
        border-bottom: 1px solid var(--border);
    }

    .process-step:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .who-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 720px) {
    :root { --pad-x: 20px; --pad-section: 72px; }
    .dot-nav { display: none; }

    .nav {
        position: fixed;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(13, 19, 34, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border);
        padding: 16px var(--pad-x) 24px;
        gap: 0;
    }

    .nav-links.open li {
        width: 100%;
    }

    .nav-links.open a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid var(--border);
        font-size: 14px;
        color: var(--text-secondary);
        border-radius: 0;
    }

    .nav-links.open li:last-child a {
        border-bottom: none;
    }

    .nav-links.open a.nav-cta,
    .nav-links.open a.nav-linkedin {
        border: none;
        padding: 15px 0;
        color: var(--accent);
        line-height: inherit;
    }

    .nav-links { display: none; }
    .nav-mobile-toggle { display: flex; }

    .hero-headline { font-size: clamp(40px, 11vw, 68px); }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industry-item {
        padding: 40px 24px;
    }

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

    .service-card { padding: 40px 28px; }

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

    .result-item { padding: 40px 28px; }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-right { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
    .contact { padding: 100px 0; }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
}
