/* ===================================
   BODYWORK AT WORK - Premium VOI Rebrand
   Dark Mode, Glassmorphism, Cinematic
   =================================== */

:root {
    --bg-dark: #0a0e0c;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-glass: rgba(10, 14, 12, 0.7);
    --text-primary: #f8fcf9;
    --text-secondary: #a7b8b2;
    --accent-neon: #00FFA3;
    --accent-gold: #D4AF37;
    --gradient-glow: linear-gradient(135deg, rgba(0, 255, 163, 0.3) 0%, rgba(212, 175, 55, 0.1) 100%);
    --primary-green: #2CD307;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-secondary: 'Cabin', sans-serif;
    --font-body: 'Varela Round', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-dark);
    background-image: radial-gradient(circle at top right, rgba(0, 255, 163, 0.05), transparent 40%),
        radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.05), transparent 40%);
    background-attachment: fixed;
    line-height: 1.6;
    font-size: 18px;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1 {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 600;
    line-height: 1.1;
    color: var(--text-primary);
    background: linear-gradient(to right, #fff, #b1d4c6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-primary);
}

h3 {
    font-family: var(--font-secondary);
    font-size: 28px;
    font-weight: 600;
    color: var(--accent-neon);
}

h4 {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
}

p {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-secondary);
}

.highlight {
    background: linear-gradient(120deg, var(--accent-neon), var(--primary-green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* ===== GLASS PANEL ===== */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hover-glow {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hover-glow:hover {
    box-shadow: 0 0 24px rgba(0, 255, 163, 0.15);
    border-color: rgba(0, 255, 163, 0.2);
    transform: translateY(-5px);
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-neon) 0%, #1dae04 100%);
    color: #000;
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 300px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 255, 163, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 163, 0.5);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--accent-gold);
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 300px;
    text-decoration: none;
    border: 2px solid var(--accent-gold);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* ===== HEADER ===== */
header {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-height: 80px;
    padding: 0 5rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-container a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-container img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 255, 163, 0.3);
    box-shadow: 0 0 15px rgba(0, 255, 163, 0.15);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-primary);
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-neon);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--accent-neon);
}

nav a:hover::before {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-actions .btn-primary {
    padding: 12px 24px;
    font-size: 12px;
}

/* ===== SECTION SHARED ===== */
.section-kicker {
    display: inline-block;
    font-family: var(--font-secondary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-subtitle {
    font-size: 20px;
    margin-top: 1rem;
    color: var(--text-secondary);
}

/* ===== HERO ===== */
.hero {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    padding: 7rem 6rem 4rem;
    min-height: 100vh;
    gap: 3rem;
}

.hero-content {
    z-index: 2;
}

.hero-content h1 {
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 1rem;
}

.hero-tagline {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: var(--accent-gold);
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 30px;
    font-family: var(--font-secondary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    backdrop-filter: blur(4px);
}

.hero-tag i {
    margin-right: 6px;
    color: var(--accent-neon);
}

.hero-image {
    position: relative;
    z-index: 2;
    border-radius: 24px;
    padding: 8px;
    background: var(--gradient-glow);
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    display: block;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    right: -10%;
    bottom: -10%;
    background: radial-gradient(circle, rgba(0, 255, 163, 0.1) 0%, transparent 70%);
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
}

/* ===== HERO BANNER ===== */
.hero-banner {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 6rem;
    background: linear-gradient(transparent, rgba(10, 14, 12, 0.95));
}

.hero-banner-overlay p {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 22px;
    font-style: italic;
    opacity: 0.8;
}

/* ===== SECTION IMAGE BREAKS ===== */
.section-image-break {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.section-image-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.7);
}

/* ===== SECTION IMAGE FEATURE ===== */
.section-image-feature {
    max-width: 800px;
    margin: 0 auto 3rem;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.section-image-feature img {
    width: 100%;
    display: block;
}

/* ===== PRESENTEEISM ===== */
.section-presenteeism {
    padding: 8rem 6rem;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto 3rem;
}

.stat-card {
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    color: var(--accent-neon);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 12px;
    line-height: 1.4;
}

.stat-source {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.25);
    margin-top: 8px;
    font-style: italic;
}

.cost-callout {
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    text-align: center;
    color: var(--text-secondary);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
}

.cost-callout strong {
    color: var(--text-primary);
}

/* ===== SCENARIOS ===== */
.section-scenarios {
    padding: 6rem 6rem 8rem;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.scenario-card {
    padding: 2.5rem 2rem;
}

.scenario-icon {
    font-size: 36px;
    margin-bottom: 1rem;
}

.scenario-card h4 {
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
    font-size: 18px;
}

.scenario-card p {
    font-size: 14px;
    line-height: 1.6;
}

/* ===== SOLUTION ===== */
.section-solution {
    padding: 8rem 6rem;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02), transparent);
}

.solution-split {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-image img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.solution-content h2 {
    margin-bottom: 1.5rem;
}

.solution-content>p {
    margin-bottom: 2rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-item i {
    font-size: 20px;
    color: var(--accent-neon);
    margin-top: 4px;
    flex-shrink: 0;
}

.feature-item strong {
    display: block;
    color: var(--text-primary);
    font-family: var(--font-secondary);
    font-size: 16px;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 14px;
    margin: 0;
}

/* ===== PROCESS ===== */
.section-process {
    padding: 8rem 6rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-neon);
    color: #000;
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.process-step h4 {
    margin-bottom: 0.75rem;
    font-size: 18px;
}

.process-step p {
    font-size: 14px;
}

.process-note {
    text-align: center;
    max-width: 600px;
    margin: 3rem auto 0;
    font-size: 14px;
    color: var(--text-secondary);
    opacity: 0.7;
}

.process-note strong {
    color: var(--accent-gold);
}

/* ===== COMPARISON TABLE ===== */
.section-compare {
    padding: 8rem 6rem;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.01), transparent);
}

.compare-wrapper {
    max-width: 850px;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    min-width: 500px;
}

.compare-table thead th {
    padding: 20px 24px;
    font-family: var(--font-secondary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: left;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.compare-table thead th:last-child {
    color: var(--accent-gold);
}

.compare-table tbody td {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--text-secondary);
    font-size: 15px;
}

.compare-table tbody td:first-child {
    font-weight: 600;
    color: var(--text-primary);
}

.compare-table tbody td i {
    margin-right: 8px;
}

.compare-table tbody tr:last-child td {
    border-bottom: none;
}

/* ===== SCIENCE / RESEARCH ===== */
.section-science {
    padding: 8rem 6rem;
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.research-card {
    padding: 2rem;
}

.research-finding {
    font-family: var(--font-secondary);
    font-size: 17px;
    font-weight: 700;
    color: var(--accent-neon);
    margin-bottom: 0.75rem;
}

.research-finding i {
    margin-right: 6px;
}

.research-card p {
    font-size: 14px;
    line-height: 1.6;
}

.research-cite {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 10px;
    font-style: italic;
}

.insight-callout {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem;
    background: rgba(0, 255, 163, 0.04);
    border-color: rgba(0, 255, 163, 0.15);
}

.insight-icon {
    font-size: 36px;
    color: var(--accent-neon);
    flex-shrink: 0;
}

.insight-content h3 {
    margin-bottom: 0.75rem;
}

.insight-content p {
    font-size: 15px;
}

/* ===== VOI ===== */
.section-voi {
    padding: 8rem 6rem;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02), transparent);
}

.voi-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.voi-metric {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.voi-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-neon);
    line-height: 1;
}

.voi-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 12px;
}

.voi-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.voi-pillar {
    padding: 2rem;
    text-align: center;
}

.voi-pillar i {
    font-size: 28px;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.voi-pillar h4 {
    margin-bottom: 0.75rem;
    font-size: 16px;
}

.voi-pillar p {
    font-size: 13px;
    line-height: 1.6;
}

/* ===== QUOTE ===== */
.section-quote {
    padding: 8rem 6rem;
}

.quote-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.quote-portrait {
    width: 220px;
    height: 320px;
    border-radius: 20px;
    object-fit: cover;
    object-position: top center;
    flex-shrink: 0;
    border: 3px solid rgba(0, 255, 163, 0.2);
    box-shadow: 0 0 30px rgba(0, 255, 163, 0.1);
}

.quote-text-wrap {
    flex: 1;
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 100px;
    line-height: 0.5;
    color: var(--accent-neon);
    opacity: 0.15;
    margin-bottom: -10px;
}

.quote-container blockquote {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.4;
}

.quote-container cite {
    display: block;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-style: normal;
    color: var(--text-secondary);
    margin-top: 1.5rem;
}

/* ===== SERVICE TIERS ===== */
.plans {
    padding: 8rem 6rem;
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.tier-card {
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.tier-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent-gold);
    color: #000;
    font-family: var(--font-secondary);
    font-size: 10px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tier-featured {
    background: rgba(0, 255, 163, 0.06);
    border-color: rgba(0, 255, 163, 0.2);
}

.tier-card h4 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.tier-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.tier-features {
    list-style: none;
    padding: 0;
}

.tier-features li {
    font-size: 14px;
    padding: 6px 0;
    color: var(--text-secondary);
}

.tier-features li i {
    color: var(--accent-neon);
    margin-right: 8px;
    font-size: 12px;
}

/* ===== CTA SECTION ===== */
.section-cta {
    padding: 8rem 6rem;
    text-align: center;
    position: relative;
    border-top: 3px solid;
    border-image: linear-gradient(90deg, var(--accent-neon), var(--accent-gold), var(--accent-neon)) 1;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content>p {
    margin-bottom: 2rem;
}

.cta-phone {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--accent-gold);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.2s;
}

.cta-phone:hover {
    color: #fff;
}

.cta-web {
    display: block;
    margin-top: 1rem;
    font-size: 16px;
    color: var(--text-secondary);
    text-decoration: none;
    opacity: 0.6;
}

.cta-web:hover {
    opacity: 1;
    text-decoration: underline;
}

.cta-location {
    font-size: 13px;
    color: var(--text-secondary);
    opacity: 0.4;
    margin-top: 8px;
}

/* ===== FOOTER ===== */
footer {
    background-color: #050807;
    padding: 6rem 6rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.footer-section p,
.footer-section a {
    color: var(--text-secondary);
    font-size: 15px;
    text-decoration: none;
    margin-bottom: 0.6rem;
    display: block;
}

.footer-section a:hover {
    color: var(--accent-neon);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1200px) {
    h1 {
        font-size: 56px;
    }

    .hero {
        padding: 9rem 3rem 5rem;
        gap: 2rem;
    }

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

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

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

@media (max-width: 992px) {
    header {
        padding: 0 2rem;
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 10rem;
        text-align: center;
    }

    .hero-actions,
    .hero-tags {
        justify-content: center;
    }

    .solution-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    .tier-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .compare-table {
        font-size: 13px;
    }

    .compare-table thead th,
    .compare-table tbody td {
        padding: 12px 16px;
    }

    .quote-container blockquote {
        font-size: 28px;
    }

    .cta-phone {
        font-size: 32px;
    }

    .section-presenteeism,
    .section-scenarios,
    .section-solution,
    .section-process,
    .section-compare,
    .section-science,
    .section-voi,
    .section-quote,
    .section-cta,
    .plans,
    footer {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .insight-callout {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-banner {
        height: 300px;
    }

    .hero-banner-overlay {
        padding: 2rem 3rem;
    }

    .section-image-break {
        height: 250px;
    }

    .quote-container {
        flex-direction: column;
        text-align: center;
    }

    .quote-portrait {
        width: 180px;
        height: 260px;
    }
}

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

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    p {
        font-size: 16px;
    }

    /* Mobile hero: image on top */
    .hero {
        grid-template-columns: 1fr;
        padding: 6rem 1.5rem 3rem;
    }

    .hero-image {
        order: -1;
    }

    .hero-content {
        text-align: center;
    }

    .hero-actions,
    .hero-tags {
        justify-content: center;
    }

    .stats-grid,
    .voi-metrics-grid,
    .scenarios-grid,
    .process-grid,
    .voi-pillars-grid {
        grid-template-columns: 1fr;
    }

    .section-presenteeism,
    .section-scenarios,
    .section-solution,
    .section-process,
    .section-compare,
    .section-science,
    .section-voi,
    .section-quote,
    .section-cta,
    .plans,
    footer {
        padding: 4rem 1.5rem;
    }

    .stat-number {
        font-size: 40px;
    }

    .voi-number {
        font-size: 40px;
    }

    .hero-banner {
        height: 220px;
    }

    .hero-banner-overlay {
        padding: 1.5rem;
    }

    .hero-banner-overlay p {
        font-size: 16px;
    }

    .section-image-break {
        height: 200px;
    }

    .section-image-feature {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }

    .quote-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .quote-portrait {
        width: 160px;
        height: 240px;
    }

    .quote-container blockquote {
        font-size: 24px;
    }

    /* Overflow fixes */
    .hero-image {
        overflow: hidden;
    }

    .hero-image::after {
        display: none;
    }

    .cta-phone {
        font-size: 28px;
        word-break: break-word;
    }

    header {
        padding: 0 1rem;
        min-height: 60px;
    }

    .header-actions .btn-primary {
        padding: 8px 14px;
        font-size: 10px;
    }

    .hero-tags {
        gap: 0.5rem;
    }

    .hero-tag {
        font-size: 11px;
        padding: 6px 10px;
    }

    .compare-wrapper {
        margin-left: -1rem;
        margin-right: -1rem;
        padding: 0 1rem;
        border-radius: 0;
    }

    .insight-callout {
        padding: 1.5rem;
    }

    .solution-split {
        gap: 2rem;
    }

    .footer-content {
        gap: 2rem;
    }
}