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

:root {
    --cream: #f5f0e8;
    --cream-light: #faf8f4;
    --cream-dark: #ede7db;
    --ink: #1a1a1a;
    --ink-light: #4a4a4a;
    --ink-muted: #7a7a7a;
    --ink-faint: #b0a89e;
    --accent: #c75c2a;
    --accent-light: #fdf0ea;
    --border: #ddd5c9;
    --font-heading: Georgia, 'Times New Roman', serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --max-width: 960px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--cream-light);
    line-height: 1.75;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

a:hover {
    color: var(--ink);
}

strong {
    color: var(--ink);
}

/* ===== Layout ===== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
}

.section-alt {
    background: var(--cream);
}

/* ===== Navigation ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 248, 244, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
}

.nav-logo:hover {
    color: var(--ink);
}

.nav-logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    list-style: none;
}

.nav-links a {
    color: var(--ink-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

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

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

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* ===== Language Switcher ===== */
.nav-lang {
    border-left: 1px solid var(--border);
    padding-left: 1.75rem;
}

.nav-lang a {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== Hero ===== */
.hero {
    padding: 8rem 0 4rem;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    background: var(--accent-light);
    padding: 0.3rem 0.85rem;
    border-radius: 3px;
    margin-bottom: 1.25rem;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--ink-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-visual img {
    border-radius: 12px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: var(--font-body);
    padding: 0.65rem 1.5rem;
    border-radius: 6px;
    transition: all 0.2s;
    cursor: pointer;
}

.btn:hover {
    text-decoration: none;
}

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

.btn-outline:hover {
    background: var(--cream-dark);
    border-color: var(--ink-faint);
    color: var(--ink);
}

/* ===== Section Headers ===== */
.section h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.section-lead {
    font-size: 1.1rem;
    color: var(--ink-light);
    max-width: 520px;
    line-height: 1.7;
}

.section-intro {
    color: var(--ink-muted);
    max-width: 560px;
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

/* Header with illustration beside it */
.section-header-with-image {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 3rem;
}

.section-header-with-image.reverse {
    grid-template-columns: auto 1fr;
    direction: rtl;
}

.section-header-with-image.reverse > * {
    direction: ltr;
}

.section-illustration {
    width: 280px;
    border-radius: 12px;
}

/* Centered header with illustration */
.section-header-centered {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-centered h2 {
    margin-top: 1.5rem;
}

.section-header-centered .section-intro {
    margin-left: auto;
    margin-right: auto;
}

.section-illustration-centered {
    max-width: 360px;
    margin: 0 auto 0.5rem;
    border-radius: 12px;
}

/* ===== Two Column ===== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.two-col p {
    color: var(--ink-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* ===== Benefits Grid ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.benefit-card {
    background: var(--cream-light);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2rem;
    transition: box-shadow 0.25s, transform 0.25s;
}

.benefit-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.benefit-stat {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.benefit-card h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--ink-light);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.source,
.stat-source {
    font-size: 0.75rem;
    color: var(--ink-faint);
    font-style: italic;
}

/* ===== Steps / Timeline ===== */
.steps {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
}

.step {
    display: flex;
    gap: 1.75rem;
    padding-bottom: 2.5rem;
    align-items: flex-start;
    position: relative;
}

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

/* Vertical connector line between circles */
.step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 44px;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--ink);
    color: var(--cream-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 4px var(--cream-light);
}

.step-content {
    padding-top: 0.35rem;
}

.step-content h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.step-content p {
    color: var(--ink-light);
    font-size: 0.92rem;
}

/* ===== Stats ===== */
.section-stats {
    background: var(--ink);
    color: var(--cream-light);
}

.section-stats h2 {
    color: var(--cream-light);
}

.section-stats .section-intro {
    color: var(--ink-faint);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.stat {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: background 0.2s;
}

.stat:hover {
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-label {
    color: rgba(245, 240, 232, 0.7);
    font-size: 0.88rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.section-stats .stat-source {
    color: rgba(245, 240, 232, 0.35);
}

/* ===== Table of Contents ===== */
.toc-section {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border);
}

.toc-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-muted);
    margin-bottom: 1rem;
}

.toc-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.toc-link {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ink-light);
    padding: 0.35rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: 5px;
    transition: all 0.2s;
}

.toc-link:hover {
    background: var(--cream);
    border-color: var(--ink-faint);
    color: var(--ink);
}

/* ===== Reasons Grid ===== */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.reason-card {
    background: var(--cream-light);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2rem;
}

.reason-card h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.reason-card p {
    color: var(--ink-light);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

/* ===== Wide Benefit Card ===== */
.benefit-card-wide {
    grid-column: 1 / -1;
}

/* ===== Employee Benefits Grid ===== */
.employee-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.employee-benefit-card {
    background: var(--cream-light);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2rem;
}

.employee-benefit-card h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.employee-benefit-card p {
    color: var(--ink-light);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

/* ===== Content List ===== */
.content-list {
    list-style: none;
    padding: 0;
}

.content-list li {
    color: var(--ink-light);
    font-size: 0.95rem;
    padding: 0.35rem 0 0.35rem 1.25rem;
    position: relative;
}

.content-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

/* ===== Mistakes List ===== */
.mistakes-list {
    max-width: 680px;
    margin: 0 auto;
}

.mistake {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.mistake:last-child {
    margin-bottom: 0;
}

.mistake-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    margin-top: 2px;
}

.mistake-content h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.mistake-content p {
    color: var(--ink-light);
    font-size: 0.92rem;
}

/* ===== Suitability Tags ===== */
.suitability-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2.5rem;
}

.tag {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--ink-light);
    background: var(--cream-light);
    border: 1px solid var(--border);
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 720px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 1.75rem 0;
}

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

.faq-item h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--ink);
}

.faq-item p {
    color: var(--ink-light);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ===== Resources ===== */
.resources-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.resource-card {
    display: block;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.5rem 2rem;
    background: var(--cream);
    color: var(--ink);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.resource-card:hover {
    border-color: var(--ink-faint);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
    color: var(--ink);
    text-decoration: none;
}

.resource-card h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.resource-card p {
    color: var(--ink-muted);
    font-size: 0.88rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.resource-link {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
}

/* ===== Footer ===== */
.site-footer {
    background: var(--cream);
    color: var(--ink-light);
    padding: 3rem 0 2rem;
    font-size: 0.88rem;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.site-footer strong {
    color: var(--ink);
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.88rem;
}

.site-footer ul {
    list-style: none;
}

.site-footer li {
    margin-bottom: 0.35rem;
}

.site-footer a {
    color: var(--ink-muted);
}

.site-footer a:hover {
    color: var(--ink);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    text-align: center;
    color: var(--ink-faint);
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--cream-light);
        flex-direction: column;
        padding: 1.25rem 2rem;
        gap: 0.75rem;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-lang {
        border-left: none;
        border-top: 1px solid var(--border);
        padding-left: 0;
        padding-top: 0.75rem;
    }

    .hero {
        padding: 7rem 0 3rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-visual img {
        max-width: 360px;
    }

    .section-header-with-image,
    .section-header-with-image.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .section-header-with-image.reverse > * {
        direction: ltr;
    }

    .section-illustration {
        width: 100%;
        max-width: 280px;
        order: -1;
    }

    .two-col,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

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

    .employee-benefits-grid {
        grid-template-columns: 1fr;
    }

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

    .toc-section {
        padding: 2rem 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section {
        padding: 3.5rem 0;
    }
}

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

