/* ============================================
   Wellbeing Space — B2B Premium Wellness
   Design System & Styles
   ============================================ */

:root {
    /* Colors — warm, organic, professional */
    --sage: #4a7c6f;
    --sage-light: #6b9e8f;
    --sage-dark: #3a6359;
    --sage-muted: #e8f0ed;
    --cream: #faf8f5;
    --cream-dark: #f0ece6;
    --warm: #c4956a;
    --warm-light: #e8c9a8;
    --charcoal: #1a1a1a;
    --graphite: #2d2d2d;
    --slate: #5a5a5a;
    --mist: #8a8a8a;
    --cloud: #d4d4d4;
    --white: #ffffff;
    --black: #0a0a0a;

    /* Typography */
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Outfit', -apple-system, sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
    --shadow-xl: 0 16px 64px rgba(0,0,0,0.12);

    /* Transitions */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s var(--ease); }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.02em; }
h1 em { font-style: italic; font-weight: 300; color: var(--sage); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 500; }
p { color: var(--slate); line-height: 1.7; }

.overline {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--sage);
    margin-bottom: var(--space-md);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--space-2xl);
}
.section-header p {
    margin-top: var(--space-lg);
    font-size: 1.1rem;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.35s var(--ease);
}

.btn-primary {
    background: var(--sage);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--sage-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 124, 111, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--charcoal);
    border: 1.5px solid var(--cloud);
}
.btn-ghost:hover {
    border-color: var(--sage);
    color: var(--sage);
}

.btn-outline {
    background: transparent;
    color: var(--sage);
    border: 1.5px solid var(--sage);
}
.btn-outline:hover {
    background: var(--sage);
    color: var(--white);
}

.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-lg) 0;
    transition: all 0.4s var(--ease);
}
.nav.scrolled {
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(20px);
    padding: var(--space-md) 0;
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--charcoal);
}
.nav-logo svg { color: var(--sage); }

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--slate);
}
.nav-links a:hover { color: var(--sage); }
.nav-cta {
    background: var(--sage) !important;
    color: var(--white) !important;
    padding: 0.6rem 1.25rem !important;
    border-radius: var(--radius-md) !important;
    font-weight: 500 !important;
}
.nav-cta:hover {
    background: var(--sage-dark) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

/* ============================================
   Hero
   ============================================ */
.hero {
    position: relative;
    padding: 10rem 0 4rem;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 70%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(74, 124, 111, 0.08) 0%, transparent 70%);
    animation: heroFloat 12s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-3%, 3%) scale(1.05); }
}

.hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, var(--cloud) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: var(--sage-muted);
    color: var(--sage);
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 100px;
    margin-bottom: var(--space-xl);
    animation: fadeUp 0.8s var(--ease) both;
}

.hero h1 {
    animation: fadeUp 0.8s var(--ease) 0.1s both;
}

.hero-sub {
    max-width: 600px;
    font-size: 1.15rem;
    margin-top: var(--space-lg);
    animation: fadeUp 0.8s var(--ease) 0.2s both;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
    animation: fadeUp 0.8s var(--ease) 0.3s both;
}

.hero-stats {
    display: flex;
    gap: var(--space-2xl);
    margin-top: var(--space-4xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid rgba(0,0,0,0.08);
    animation: fadeUp 0.8s var(--ease) 0.4s both;
}

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--charcoal);
}

.stat-label {
    font-size: 0.82rem;
    color: var(--mist);
    margin-top: 0.2rem;
    display: block;
}

.stat-divider {
    width: 1px;
    background: var(--cloud);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Visual / Mockup */
.hero-visual {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 38%;
    z-index: 1;
    animation: fadeUp 1s var(--ease) 0.5s both;
}

.mockup-browser {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
}

.mockup-dots {
    display: flex;
    gap: 6px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.mockup-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cloud);
}

.mockup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 16px;
}

.mockup-card { display: flex; flex-direction: column; align-items: center; text-align: center;
    padding: 16px;
    border-radius: var(--radius-md);
    background: var(--cream);
    transition: transform 0.3s var(--ease);
}
.mockup-card:hover { transform: translateY(-2px); }

.mc-icon { font-size: 2.6rem; margin-bottom: 10px; line-height: 1; display: block; text-align: center; }
.mc-title { font-weight: 500; font-size: 0.85rem; color: var(--charcoal); }
.mc-meta { font-size: 0.72rem; color: var(--mist); margin-top: 4px; }

.mc-1 { border-left: 3px solid var(--sage); }
.mc-2 { border-left: 3px solid #7c6fa8; }
.mc-3 { border-left: 3px solid #5a7ca8; }
.mc-4 { border-left: 3px solid var(--warm); }
.mc-5 { border-left: 3px solid #a87c6f; }
.mc-6 { border-left: 3px solid #6fa87c; }

/* ============================================
   Trusted Section
   ============================================ */
.trusted {
    padding: var(--space-3xl) 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.trusted-label {
    text-align: center;
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--mist);
    margin-bottom: var(--space-xl);
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2xl);
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 var(--space-lg);
}

.logo-item {
    background: rgba(0,0,0,0.03);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-item img {
    height: 36px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s var(--ease);
}
.logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ============================================
   Value Proposition
   ============================================ */
.value {
    padding: var(--space-3xl) 0;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.value-card {
    padding: var(--space-2xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s var(--ease);
}
.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sage-light);
}

.value-icon svg { width: 44px; height: 44px; }
.value-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sage-muted);
    border-radius: var(--radius-md);
    color: var(--sage);
    margin-bottom: var(--space-lg);
}

.value-card h3 {
    margin-bottom: var(--space-sm);
    font-size: 1.15rem;
}

.value-card p {
    font-size: 0.92rem;
    line-height: 1.65;
}

/* ============================================
   Industries
   ============================================ */
.industries {
    padding: var(--space-3xl) 0;
    background: var(--charcoal);
    color: var(--white);
}

.industries .overline { color: var(--sage-light); }
.industries h2 { color: var(--white); }

.industry-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.industry-card {
    padding: var(--space-2xl);
    background: var(--graphite);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
}
.industry-card:hover {
    border-color: var(--sage);
    transform: translateY(-4px);
    background: rgba(74, 124, 111, 0.1);
}

.ind-icon svg { width: 88px; height: 88px; }
.ind-icon {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 124, 111, 0.15);
    border-radius: var(--radius-md);
    color: var(--sage-light);
    margin-bottom: var(--space-lg);
}

.industry-card h3 { color: var(--white); margin-bottom: var(--space-sm); }
.industry-card p { color: rgba(255,255,255,0.85); font-size: 0.92rem; flex: 1; }

.ind-link {
    display: inline-block;
    color: var(--sage-light);
    font-size: 0.88rem;
    font-weight: 500;
    margin-top: var(--space-lg);
    transition: color 0.3s var(--ease);
}
.industry-card:hover .ind-link { color: var(--white); }

/* ============================================
   Content Showcase
   ============================================ */
.showcase {
    padding: var(--space-3xl) 0;
}

.showcase-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 1.5px solid var(--cloud);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--slate);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}
.tab-btn:hover { border-color: var(--sage); color: var(--sage); }
.tab-btn.active {
    background: var(--sage);
    border-color: var(--sage);
    color: var(--white);
}

.panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    animation: fadeUp 0.5s var(--ease);
}
.panel.active { display: grid; }

.panel-info h3 {
    font-size: 1.6rem;
    margin-bottom: var(--space-lg);
}
.panel-info > p {
    font-size: 1rem;
    margin-bottom: var(--space-xl);
}

.panel-stats {
    margin-bottom: var(--space-xl);
}
.panel-stats li {
    padding: 0.5rem 0;
    font-size: 0.92rem;
    color: var(--slate);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.panel-stats li strong { color: var(--charcoal); }

.panel-visual {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.pv-card {
    padding: var(--space-xl) var(--space-2xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.06);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    transition: all 0.3s var(--ease);
}
.pv-card:hover {
    transform: translateX(8px);
    border-color: var(--sage);
}
.pv-card span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--mist);
    margin-top: 0.3rem;
}

.pv-1 { border-left: 4px solid var(--sage); }
.pv-2 { border-left: 4px solid var(--warm); }
.pv-3 { border-left: 4px solid #5a7ca8; }

/* ============================================
   How It Works
   ============================================ */
.how {
    padding: var(--space-3xl) 0;
    background: var(--cream-dark);
}

.how-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 var(--space-xl);
}

.step-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--sage);
    margin-bottom: var(--space-md);
}

.step h3 { margin-bottom: var(--space-sm); font-size: 1.1rem; }
.step p { font-size: 0.9rem; }

.step-line {
    width: 60px;
    height: 1px;
    background: var(--cloud);
    margin-top: 2.2rem;
    flex-shrink: 0;
}

/* ============================================
   Testimonial
   ============================================ */
.testimonial {
    padding: var(--space-3xl) 0;
}

blockquote {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

blockquote p {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-style: italic;
    font-weight: 300;
    line-height: 1.5;
    color: var(--charcoal);
}

blockquote footer {
    margin-top: var(--space-xl);
}

blockquote strong {
    display: block;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
}

blockquote footer span {
    font-size: 0.88rem;
    color: var(--mist);
}

/* ============================================
   CTA Section
   ============================================ */
.cta {
    padding: var(--space-3xl) 0;
}

.cta-inner {
    text-align: center;
    padding: var(--space-4xl);
    background: var(--sage);
    border-radius: var(--radius-xl);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 70%);
}

.cta-inner h2 { color: var(--white); position: relative; }
.cta-inner p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-top: var(--space-md);
    position: relative;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
    position: relative;
}

.cta .btn-primary {
    background: var(--white);
    color: var(--sage);
}
.cta .btn-primary:hover {
    background: var(--cream);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.cta .btn-ghost {
    border-color: rgba(255,255,255,0.3);
    color: var(--white);
}
.cta .btn-ghost:hover {
    border-color: var(--white);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: var(--space-4xl) 0 var(--space-2xl);
    background: var(--charcoal);
    color: rgba(255,255,255,0.6);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .nav-logo {
    color: var(--white);
    margin-bottom: var(--space-md);
}
.footer-brand p { font-size: 0.88rem; line-height: 1.6; color: rgba(255,255,255,0.5); }

.footer-col h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-lg);
}

.footer-col a {
    display: block;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    padding: 0.3rem 0;
}
.footer-col a:hover { color: var(--sage-light); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    font-size: 0.82rem;
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--sage-light); }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .hero-visual { display: none; }
    .hero { min-height: auto; padding: 8rem 0 4rem; }
    .hero-stats { flex-wrap: wrap; gap: var(--space-xl); }
    .stat-divider { display: none; }
    .value-grid { grid-template-columns: repeat(2, 1fr); }
    .industry-cards { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
}

@media (max-width: 768px) {
    .nav-links { 
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cream);
        padding: var(--space-xl);
        flex-direction: column;
        gap: var(--space-md);
        box-shadow: var(--shadow-lg);
    }
    .nav-links.open { display: flex; }
    .nav-toggle { display: flex; }

    .value-grid { grid-template-columns: 1fr; }
    .industry-cards { grid-template-columns: 1fr; }
    .panel { grid-template-columns: 1fr; }
    .panel-visual { order: -1; }

    .how-steps { flex-direction: column; align-items: center; }
    .step-line { width: 1px; height: 30px; }
    .step { padding: var(--space-lg) 0; }

    .hero-stats { flex-direction: column; gap: var(--space-lg); }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { text-align: center; justify-content: center; }

    .cta-inner { padding: var(--space-2xl); }
    .cta-actions { flex-direction: column; align-items: center; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: var(--space-sm); text-align: center; }

    .showcase-tabs { gap: 0.4rem; }
    .tab-btn { padding: 0.5rem 1rem; font-size: 0.8rem; }
}

/* ============================================
   Page-Specific: Solutions
   ============================================ */
.page-hero {
    padding: 9rem 0 4rem;
    text-align: center;
    position: relative;
}
.page-hero .hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, var(--cloud) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.4;
    z-index: 0;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero p { max-width: 640px; margin: var(--space-lg) auto 0; font-size: 1.1rem; }

.solution-section {
    padding: var(--space-4xl) 0;
    scroll-margin-top: 5rem;
}
.solution-section:nth-child(even) { background: var(--white); }

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}
.solution-grid.reverse { direction: rtl; }
.solution-grid.reverse > * { direction: ltr; }

.solution-info h3 { font-size: 1.8rem; margin-bottom: var(--space-lg); }
.solution-info > p { font-size: 1rem; margin-bottom: var(--space-xl); }

.solution-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}
.sf-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}
.sf-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sage-muted);
    border-radius: var(--radius-sm);
    color: var(--sage);
    font-size: 1.4rem;
}
.sf-text h4 { font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; margin-bottom: 0.2rem; }
.sf-text p { font-size: 0.88rem; }

.solution-visual {
    background: var(--cream-dark);
    border-radius: var(--radius-xl);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}
.solution-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--sage-muted) 0%, transparent 50%);
}

.sv-icon {
    font-size: 5rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .solution-grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
    .solution-grid.reverse { direction: ltr; }
    .solution-visual { min-height: 200px; }
}

/* ============================================
   Page-Specific: Content Library
   ============================================ */
.content-category {
    padding: var(--space-4xl) 0;
    scroll-margin-top: 5rem;
}
.content-category:nth-child(even) { background: var(--white); }

.cc-header {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}
.cc-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sage-muted);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
}
.cc-header h3 { font-size: 1.6rem; }
.cc-header p { font-size: 0.95rem; color: var(--mist); }

.cc-stats {
    display: flex;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}
.cc-stat { text-align: center; }
.cc-stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    color: var(--sage);
}
.cc-stat-label { font-size: 0.82rem; color: var(--mist); }

.cc-courses {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.course-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0,0,0,0.06);
    padding: var(--space-xl);
    transition: all 0.3s var(--ease);
}
.content-category:nth-child(even) .course-card { background: var(--cream); }
.course-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.course-card h4 { font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; margin-bottom: 0.3rem; }
.course-card p { font-size: 0.82rem; color: var(--mist); }

/* ============================================
   Page-Specific: Platform
   ============================================ */
.platform-features {
    padding: var(--space-5xl) 0;
}

.pf-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.pf-card {
    padding: var(--space-2xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.06);
}
.pf-card h3 { font-size: 1.2rem; margin-bottom: var(--space-sm); }
.pf-card p { font-size: 0.92rem; }
.pf-tag {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: var(--sage-muted);
    color: var(--sage);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 100px;
    margin-bottom: var(--space-md);
}

@media (max-width: 768px) {
    .pf-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Page-Specific: Contact
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    padding: var(--space-4xl) 0;
}

.contact-info h3 { font-size: 1.5rem; margin-bottom: var(--space-lg); }
.contact-detail {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    margin-bottom: var(--space-xl);
}
.cd-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sage-muted);
    border-radius: var(--radius-sm);
    color: var(--sage);
    flex-shrink: 0;
}
.contact-detail h4 { font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; }
.contact-detail p { font-size: 0.88rem; color: var(--slate); }
.contact-detail a { color: var(--sage); }
.contact-detail a:hover { text-decoration: underline; }

.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    border: 1px solid rgba(0,0,0,0.06);
}

.form-group {
    margin-bottom: var(--space-lg);
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: var(--charcoal);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--cloud);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.92rem;
    background: var(--cream);
    transition: border-color 0.3s var(--ease);
    color: var(--charcoal);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

/* ============================================
   About Page
   ============================================ */
.about-mission {
    padding: var(--space-5xl) 0;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}
.about-visual {
    background: var(--sage);
    border-radius: var(--radius-xl);
    padding: var(--space-4xl);
    color: var(--white);
    text-align: center;
}
.about-visual .av-num {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 300;
}
.about-visual .av-label {
    font-size: 1rem;
    opacity: 0.8;
}

.about-numbers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
}
.about-num-card {
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0,0,0,0.06);
    text-align: center;
}
.about-num-card .an-val {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--sage);
}
.about-num-card .an-lbl {
    font-size: 0.85rem;
    color: var(--mist);
    margin-top: 0.3rem;
}

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-numbers { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   Scroll Animations
   ============================================ */
.fade-in {
    opacity: 0.4;
    transform: translateY(12px);
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── EXPERT SECTION (Carla Sánchez) ────────────────────────────── */
.expert-section {
    padding: var(--space-4xl) 0;
    background: var(--cloud, #f9f9f7);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.expert-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: var(--space-3xl);
    align-items: center;
}

.expert-photo img {
    width: 100%;
    max-width: 380px;
    border-radius: 12px;
    object-fit: cover;
    aspect-ratio: 3/4;
    display: block;
}

.expert-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.expert-subtitle {
    font-size: 1.1rem;
    color: var(--mist);
    font-weight: 400;
    margin-top: -0.5rem;
}

.expert-quote {
    border-left: 3px solid var(--sage, #6a8f75);
    padding-left: var(--space-md);
    font-style: italic;
    color: var(--slate, #555);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: var(--space-sm) 0;
}

.expert-content .btn {
    display: inline-block;
    width: auto;
}

@media (max-width: 768px) {
    .expert-inner {
        grid-template-columns: 1fr;
    }
    .expert-photo img {
        max-width: 260px;
        aspect-ratio: 1/1;
        margin: 0 auto;
    }
}

/* Email as text link */
.email-link {
    color: var(--white);
    text-decoration: underline;
    font-size: 0.95rem;
    opacity: 0.85;
    transition: opacity 0.3s var(--ease);
}
.email-link:hover {
    opacity: 1;
}



/* Partners section: 3 arriba + 2 abajo centradas */
.partners-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}
.partners-row {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
}
.partners-row .value-card {
    flex: 0 0 calc(33.333% - var(--space-xl) * 2/3);
    max-width: 300px;
}
@media (max-width: 768px) {
    .partners-row { flex-direction: column; align-items: center; }
    .partners-row .value-card { max-width: 100%; width: 100%; }
}

/* Emoji icons: centrados dentro del cajetín */
.value-icon--emoji {
    font-size: 2.4rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--sage-muted);
    border-radius: var(--radius-md);
    margin: 0 auto var(--space-lg) auto;
}

/* Client Fidelity: 4 tarjetas en una línea */
.value-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) {
    .value-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .value-grid--4 { grid-template-columns: 1fr; }
}


/* Employee Care h2: misma fuente que el resto, forzar 2 líneas */
#employee-care .section-header h2 {
    max-width: 14ch;
    margin-left: auto;
    margin-right: auto;
}

/* Centrado de tarjetas con emoji en Client Fidelity y Partners */
#client-fidelity .value-card,
#partners .value-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Centrado de tarjetas con SVG en Employee Care */
#employee-care .value-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ── Language switcher ── */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-right: 8px;
}
.lang-btn {
    font-size: 1.3rem;
    opacity: 0.5;
    transition: opacity 0.2s;
    text-decoration: none;
    line-height: 1;
}
.lang-btn:hover { opacity: 1; }
.lang-active {
    font-size: 1.3rem;
    opacity: 1;
    line-height: 1;
}

/* Enlace Plataforma en nav — destacado */
.nav-platform {
    font-weight: 600;
    color: var(--sage) !important;
    background: var(--sage-muted);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.2s;
    white-space: nowrap;
}
.nav-platform:hover {
    background: var(--sage);
    color: var(--white) !important;
}

/* Client Fidelity: iconos emoji doble de grandes */
#client-fidelity .value-icon {
    width: 120px;
    height: 120px;
    font-size: 3.8rem;
}

/* ============================================
   Programas — Grid de 6 cards (programas.html)
   ============================================ */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.program-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.06);
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    transition: all 0.4s var(--ease);
}
.program-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sage-light);
}

.program-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sage-muted);
    border-radius: var(--radius-sm);
    color: var(--sage);
    flex-shrink: 0;
}

.program-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0;
}

.program-card > p {
    font-size: 0.92rem;
    flex: 1;
}

.program-card-bullets {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: var(--space-md) 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.program-card-bullets li {
    font-size: 0.82rem;
    color: var(--mist);
    padding-left: 1rem;
    position: relative;
}
.program-card-bullets li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--sage);
    font-weight: bold;
    font-size: 1rem;
}

.program-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

.programs-integration {
    padding: var(--space-4xl) 0;
    background: var(--charcoal);
}
.programs-integration .overline { color: var(--sage-light); }
.programs-integration h2 { color: var(--white); }
.programs-integration .section-header p { color: rgba(255,255,255,0.75); }

@media (max-width: 1024px) {
    .programs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .programs-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Programas — Páginas individuales (programas/*.html)
   ============================================ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--mist);
    margin-bottom: var(--space-xl);
}
.breadcrumb a { color: var(--sage); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--cloud); }

.program-hero {
    padding: 9rem 0 4rem;
    position: relative;
    overflow: hidden;
}
.program-hero .hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, var(--cloud) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.4;
    z-index: 0;
}
.program-hero-gradient {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(74, 124, 111, 0.07) 0%, transparent 70%);
    z-index: 0;
}
.program-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
}
.program-hero-inner h1 { margin-bottom: var(--space-lg); }
.program-lead {
    font-size: 1.2rem;
    color: var(--graphite);
    margin-bottom: var(--space-md);
    font-weight: 400;
    line-height: 1.6;
    max-width: 640px;
}
.program-body {
    font-size: 1rem;
    color: var(--slate);
    margin-bottom: var(--space-2xl);
    max-width: 640px;
    line-height: 1.75;
}

.program-section {
    padding: var(--space-4xl) 0;
    scroll-margin-top: 5rem;
}
.program-section:nth-child(even) { background: var(--white); }

.program-block-header {
    margin-bottom: var(--space-2xl);
}
.program-block-header h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: var(--space-sm);
}
.program-block-header p {
    font-size: 1rem;
    max-width: 640px;
    margin-top: var(--space-md);
}

.program-aporte-text {
    font-size: 1.05rem;
    max-width: 680px;
    line-height: 1.75;
    color: var(--slate);
    padding: var(--space-2xl);
    background: var(--sage-muted);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--sage);
}

.program-bullets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.pb-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--cream-dark);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s var(--ease);
}
.pb-item:hover {
    border-color: var(--sage-light);
    background: var(--sage-muted);
}
.program-section:nth-child(even) .pb-item { background: var(--cream); }

.pb-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
    background: var(--sage);
    margin-top: 0.45rem;
}
.pb-item span {
    font-size: 0.92rem;
    color: var(--graphite);
    font-weight: 500;
    line-height: 1.5;
}

.program-targets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}
.pt-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--sage);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease);
}
.pt-item:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.program-section:nth-child(even) .pt-item { background: var(--cream); }
.pt-item span {
    font-size: 0.92rem;
    color: var(--graphite);
    line-height: 1.5;
}

.program-final-cta {
    padding: var(--space-3xl) 0;
}
.program-cta-block {
    background: var(--sage);
    border-radius: var(--radius-xl);
    padding: var(--space-4xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    color: var(--white);
}
.program-cta-block::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 50%;
    height: 180%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.1) 0%, transparent 70%);
}
.program-cta-block h2 {
    color: var(--white);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    max-width: 560px;
    position: relative;
}
.program-cta-block p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    max-width: 520px;
    position: relative;
}
.program-cta-block .cta-btns {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    position: relative;
}
.program-cta-block .btn-primary {
    background: var(--white);
    color: var(--sage);
}
.program-cta-block .btn-primary:hover {
    background: var(--cream);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}
.program-cta-block .btn-ghost {
    border-color: rgba(255,255,255,0.4);
    color: var(--white);
}
.program-cta-block .btn-ghost:hover {
    border-color: var(--white);
}

.program-nav-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--sage);
    font-size: 0.9rem;
    font-weight: 500;
    padding: var(--space-sm) 0;
    transition: gap 0.2s var(--ease);
}
.program-nav-back:hover { gap: 0.7rem; }

@media (max-width: 768px) {
    .program-bullets { grid-template-columns: 1fr; }
    .program-targets { grid-template-columns: 1fr; }
    .program-cta-block { padding: var(--space-2xl); }
    .program-cta-block .cta-btns { flex-direction: column; }
    .program-hero { padding: 8rem 0 3rem; }
}

/* ============================================
   Pricing Page
   ============================================ */

/* Hero */
.pricing-hero { text-align: center; }
.pricing-hero-lead {
    font-size: 1.15rem;
    color: var(--slate);
    max-width: 700px;
    margin: var(--space-lg) auto 0;
    line-height: 1.7;
}
.pricing-hero-support {
    font-size: 0.95rem;
    color: var(--mist);
    max-width: 640px;
    margin: var(--space-md) auto 0;
    line-height: 1.7;
}
.pricing-hero-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-top: var(--space-2xl);
    flex-wrap: wrap;
}

/* Pricing Grid */
.pricing-section {
    padding: var(--space-3xl) 0 var(--space-4xl);
    background: var(--cream-dark);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    align-items: stretch;
}

/* Pricing Card */
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.pricing-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}
.pricing-card--featured {
    border-color: var(--sage);
    border-width: 2px;
    box-shadow: var(--shadow-lg);
}
.pricing-card--featured:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}
.pricing-badge {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    background: var(--sage);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
}
.pricing-card-top {
    padding: var(--space-xl) var(--space-xl) var(--space-lg);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.pricing-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--sage);
    margin-bottom: var(--space-sm);
}
.pricing-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}
.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
}
.pricing-from {
    font-size: 0.85rem;
    color: var(--mist);
    font-weight: 400;
}
.pricing-amount {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: -0.02em;
}
.pricing-card--featured .pricing-amount { color: var(--sage-dark); }
.pricing-period {
    font-size: 0.85rem;
    color: var(--mist);
    font-weight: 400;
}
.pricing-desc {
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.6;
    margin: 0;
}

/* Card body */
.pricing-card-body {
    padding: var(--space-lg) var(--space-xl);
    flex: 1;
}
.pricing-section-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
    margin-top: var(--space-lg);
}
.pricing-section-label:first-child { margin-top: 0; }
.pricing-section-label--secondary { color: var(--mist); }
.pricing-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.pricing-list li {
    font-size: 0.9rem;
    color: var(--graphite);
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.5;
}
.pricing-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sage);
}
.pricing-list--muted li { color: var(--slate); }
.pricing-list--muted li::before { background: var(--cloud); }

/* Card footer */
.pricing-card-footer {
    padding: var(--space-lg) var(--space-xl) var(--space-xl);
    border-top: 1px solid rgba(0,0,0,0.05);
}
.btn-full { width: 100%; text-align: center; }
.pricing-note {
    font-size: 0.78rem;
    color: var(--mist);
    margin-top: var(--space-sm);
    text-align: center;
    line-height: 1.5;
}

/* Scale section */
.pricing-scale-section { background: var(--cream); }
.pricing-tables {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
}
.pricing-table-block {}
.pricing-table-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--sage-muted);
}
.pricing-table {
    width: 100%;
    border-collapse: collapse;
}
.pricing-table th {
    text-align: left;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--mist);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--cream-dark);
}
.pricing-table td {
    padding: 0.65rem 0;
    font-size: 0.9rem;
    color: var(--graphite);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.pricing-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--charcoal);
}
.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-whitelist {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-sm);
}
.pricing-whitelist-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: var(--space-md);
    background: var(--cream-dark);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--sage);
}
.pricing-whitelist-label {
    font-size: 0.85rem;
    color: var(--slate);
}
.pricing-whitelist-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
}
.pricing-scale-note {
    margin-top: var(--space-2xl);
    font-size: 0.85rem;
    color: var(--mist);
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Includes section */
.pricing-includes-section {
    padding: var(--space-4xl) 0;
    background: var(--sage-muted);
}
.pricing-includes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}
.pricing-includes-col h2, .pricing-includes-col h3 {
    font-family: var(--font-display);
    margin-bottom: var(--space-xl);
    color: var(--charcoal);
}
.pricing-includes-col h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
.pricing-includes-col h3 { font-size: 1.3rem; font-weight: 500; color: var(--slate); }
.pricing-includes-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}
.pricing-includes-list li {
    font-size: 0.95rem;
    color: var(--graphite);
    padding-left: 1.75rem;
    position: relative;
    line-height: 1.5;
}
.pricing-includes-list--yes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--sage);
}
.pricing-includes-list--no li { color: var(--slate); }
.pricing-includes-list--no li::before {
    content: '–';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: var(--mist);
}

/* Fit section */
.pricing-fit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}
.pricing-fit-block {
    padding: var(--space-xl);
    background: var(--cream-dark);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.05);
}
.pricing-fit-icon {
    width: 48px;
    height: 48px;
    background: var(--sage-muted);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage);
    margin-bottom: var(--space-lg);
}
.pricing-fit-block h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
    font-family: var(--font-body);
}
.pricing-fit-block p {
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.6;
    margin: 0;
}

/* FAQ section */
.pricing-faq-section {
    padding: var(--space-4xl) 0;
    background: var(--cream-dark);
}
.pricing-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}
.pricing-faq-item {
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.05);
}
.pricing-faq-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
    font-family: var(--font-body);
    line-height: 1.4;
}
.pricing-faq-item p {
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.6;
    margin: 0;
}

/* Responsive — Pricing */
@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .pricing-tables { grid-template-columns: 1fr; }
    .pricing-includes-grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
    .pricing-fit-grid { grid-template-columns: 1fr; }
    .pricing-faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .pricing-hero-actions { flex-direction: column; align-items: center; }
    .pricing-hero-actions .btn { width: 100%; max-width: 300px; text-align: center; }
    .pricing-grid { max-width: 100%; }
}

/* Dropdown Menu for Employee Care */
.nav-dropdown {
    position: relative;
    display: inline-block;
}
.nav-dropdown > a {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.nav-dropdown > a::after {
    content: '▾';
    font-size: 0.7rem;
    opacity: 0.6;
}
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    padding: 0.5rem 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s var(--ease);
    z-index: 1000;
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown-menu a {
    display: block;
    padding: 0.6rem 1.2rem;
    color: var(--slate);
    font-size: 0.9rem;
}
.nav-dropdown-menu a:hover {
    background: var(--cream);
    color: var(--sage);
}
