:root {
    /* Colors - Nordic Calm */
    --color-primary: #2C3E36;
    /* Deep Moss Green */
    --color-secondary: #C87959;
    /* Burnt Terra Cotta */
    --color-bg-body: #EFE9DD;
    /* Deeper Warm Sand */
    --color-bg-alt: #DEE4DF;
    /* Deeper Soft Sage */
    --color-white: #ffffff;

    --color-text-main: #111c16;
    /* Darker Forest */
    --color-text-muted: #4a5750;

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Layout */
    --container-width: 1200px;
    --section-padding: 7rem;

    /* Radius - Soft & Organic */
    --radius-sm: 12px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --radius-pill: 50px;

    /* Shadows - Diffused */
    --shadow-soft: 0 20px 40px -10px rgba(44, 62, 54, 0.08);
    --shadow-float: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-body);
    color: var(--color-text-main);
    line-height: 1.7;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.15;
    margin-top: 0;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

/* UI Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-weight: 500;
    border-radius: var(--radius-pill);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    font-size: 1rem;
    font-family: var(--font-heading);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--color-secondary);
    color: var(--color-white);
    box-shadow: 0 10px 20px rgba(200, 121, 89, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(200, 121, 89, 0.35);
}

.btn-secondary {
    background-color: var(--color-white);
    color: var(--color-primary);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background-color: var(--color-bg-alt);
    border-color: rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Floating Navigation Island */
.navbar {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    transition: all 0.4s ease;
    width: 90%;
    max-width: 1000px;
}

.nav-container {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-pill);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-float);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-right: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text-main);
}

.nav-links a:hover {
    color: var(--color-secondary);
}

.nav-cta {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.mobile-menu-toggle {
    display: none;
}

/* Hero - Split Layout */
.hero {
    padding-top: 10rem;
    min-height: 90vh;
    /* Almost full height */
    display: flex;
    align-items: center;
    background-image: url('../assets/images/organic-bg.svg');
    background-size: cover;
    background-position: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-tagline {
    display: inline-block;
    color: var(--color-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.hero-visual {
    background: var(--color-bg-alt);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    height: 500px;
    width: 100%;
    position: relative;
    overflow: hidden;
    animation: morph 8s ease-in-out infinite;
    background: linear-gradient(135deg, var(--color-secondary), #d68c6d);
    box-shadow: var(--shadow-soft);
}

@keyframes morph {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    50% {
        border-radius: 60% 40% 30% 70% / 60% 50% 40% 60%;
    }

    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
}

/* Problem Section - Interactive & Overlap */
.card-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 10;
    /* margin-bottom: -4rem; Removed to fix spacing with stat box */
}

.problem-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.problem-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.08);
}

/* Geometric Icons (CSS Shapes) */
.card-icon-shape {
    display: block;
    width: 60px;
    height: 60px;
    background: var(--color-bg-alt);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    position: relative;
}

.card-icon-shape::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-primary);
}

/* Graph Icon */
.shape-graph::after {
    width: 24px;
    height: 2px;
    box-shadow:
        -8px 4px 0 var(--color-primary),
        8px -6px 0 var(--color-primary);
    transform: translate(-50%, -50%) rotate(-25deg);
}

/* Mute Icon */
.shape-mute::after {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
}

.shape-mute::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 2px;
    background: var(--color-secondary);
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Mask Icon */
.shape-mask::after {
    width: 24px;
    height: 12px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border: 2px solid var(--color-primary);
    border-bottom: 0;
}

/* Solution Text Reveal */
.solution-reveal {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    font-size: 0.95rem;
    color: var(--color-secondary);
    font-weight: 600;
    margin-top: 0;
}

.problem-card:hover .solution-reveal {
    max-height: 50px;
    opacity: 1;
    margin-top: 1rem;
}

.problem-card:hover h3 {
    color: var(--color-secondary);
    transition: color 0.3s;
}

/* Interactive Checkbox */
.interactive-check {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    user-select: none;
    padding-top: 1.5rem;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.interactive-check input {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    display: grid;
    place-content: center;
}

.interactive-check input::before {
    content: "✓";
    font-size: 14px;
    color: white;
    transform: scale(0);
    transition: 0.2s transform ease-in-out;
}

.interactive-check input:checked {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.interactive-check input:checked::before {
    transform: scale(1);
}

/* Selected State */
.problem-card.is-selected {
    border: 2px solid var(--color-secondary);
    background: #fffbf9;
}

/* Silent Cost Box */
.stat-box {
    text-align: center;
    max-width: 700px;
    margin: 4rem auto 0;
    /* Increased margin */
    background: #2a2a2a;
    color: white;
    padding: 2rem 3rem;
    /* Increased padding */
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 5;
}

.stat-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.stat-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.stat-content .highlight {
    color: var(--color-secondary);
    font-weight: 700;
}

.stat-icon {
    font-size: 1.5rem;
    color: var(--color-secondary);
}

/* Product - Enhanced Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 2.5rem;
    /* Increased gap */
    padding-top: 4rem;
}

.bento-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-float);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.4s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(44, 62, 54, 0.15);
    border-color: rgba(255, 255, 255, 0.9);
}

/* Large Card - Playbook */
.bento-card.large {
    grid-column: span 2;
    background-color: var(--color-primary);
    color: var(--color-white);
    position: relative;
    border: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.bento-card.large:hover {
    transform: scale(1.02);
}

.bento-content {
    flex: 1;
    z-index: 2;
}

.bento-card.large h3 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.bento-card.large p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.playbook-list {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.playbook-list li {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Document Preview Visual */
.doc-preview {
    width: 140px;
    height: 180px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 1rem;
    transform: rotate(3deg);
    position: relative;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.doc-line {
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    width: 100%;
}

.doc-line.short {
    width: 60%;
}

.doc-header {
    height: 12px;
    background: var(--color-secondary);
    width: 40%;
    border-radius: 4px;
    margin-bottom: 8px;
}

/* Tall Card - Personal Plan */
.bento-card.tall {
    grid-row: span 2;
    background: linear-gradient(to bottom, var(--color-bg-alt), #f0f4f1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    justify-content: space-between;
}

.glow-icon {
    font-size: 4rem;
    text-align: right;
    margin-top: auto;
    animation: pulse-glow 3s infinite ease-in-out;
    filter: drop-shadow(0 0 10px rgba(200, 121, 89, 0.3));
}

@keyframes pulse-glow {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

/* Standard Cards Typography */
.bento-card h3 {
    font-size: 1.4rem;
    color: var(--color-primary);
}

.bento-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* How It Works - Nordic Process Flow */
.steps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 20px;
    /* Space for the line on desktop */
}

/* Dashed Connector Line */
@media (min-width: 901px) {
    .steps-wrapper::before {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 0;
        bottom: 0;
        width: 2px;
        border-left: 2px dashed rgba(0, 0, 0, 0.1);
        z-index: 0;
    }
}

.step-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.step-row:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
}

.step-content {
    flex: 1;
    background: var(--color-white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-float);
    position: relative;
}

/* Time Badge */
.time-badge {
    display: inline-block;
    background: var(--color-bg-alt);
    color: var(--color-primary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Nordic Large Numbers */
.step-number-large {
    font-size: 8rem;
    font-weight: 800;
    color: var(--color-primary);
    opacity: 0.06;
    line-height: 1;
    font-family: var(--font-heading);
    user-select: none;
    position: absolute;
    z-index: -1;
}

/* Positioning numbers behind cards based on flow */
.step-row:nth-child(odd) .step-number-large {
    right: -2rem;
    top: -1rem;
}

.step-row:nth-child(even) .step-number-large {
    left: -2rem;
    top: -1rem;
}

/* Social Proof Quote */
.process-quote {
    text-align: center;
    max-width: 600px;
    margin: 5rem auto 0;
    font-style: italic;
}

.process-quote p {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.process-quote cite {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Pricing - Ticket Style */
.pricing-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-ticket {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 3rem 2rem;
    position: relative;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    text-align: left;
    height: auto;
}

.pricing-ticket h3 {
    margin-bottom: 0.5rem;
}

.pricing-ticket .price {
    margin-bottom: 0;
}

.pricing-ticket p {
    margin-bottom: 1rem;
}

.pricing-ticket ul {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.pricing-ticket .btn {
    width: 100%;
    margin-top: auto;
    text-align: center;
}

.pricing-ticket.featured {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 25px 50px -12px rgba(44, 62, 54, 0.25);
}

.pricing-ticket.featured h3,
.pricing-ticket.featured .price {
    color: var(--color-white);
}

.pricing-ticket.featured p,
.pricing-ticket.featured li {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-ticket.featured .btn {
    background: var(--color-white);
    color: var(--color-primary);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin: 1rem 0;
    font-family: var(--font-heading);
}

/* Pricing Detail Classes */
.pricing-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.pricing-ticket.featured .pricing-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-divider {
    border: 0;
    border-top: 1px dashed #ddd;
    margin: 1.5rem 0;
}

.pricing-ticket.featured .pricing-divider {
    border-top-color: rgba(255, 255, 255, 0.3);
}

.pricing-features {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    margin-bottom: 0.5rem;
}

.pricing-ticket.featured .btn-featured {
    background: white;
    color: var(--color-primary);
}

/* Visually Hidden (accessibility) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-float);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    color: var(--color-primary);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-secondary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-question.active::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 2rem;
}

.faq-answer p {
    padding-bottom: 2rem;
    margin: 0;
}

/* CTA Section - Card Layout */
#contact {
    background-color: var(--color-bg-alt);
    /* Light/Sand background */
    padding: 6rem 0;
}

.cta-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(44, 62, 54, 0.08);
    /* Soft deep shadow */
    padding: 4rem;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.cta-content {
    text-align: left;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: var(--color-text-muted);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    opacity: 0.8;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.secondary-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--color-primary);
    text-decoration: none;
    font-size: 0.95rem;
    border-bottom: 1px dashed var(--color-primary);
    transition: opacity 0.2s;
}

.secondary-link:hover {
    opacity: 0.7;
}

/* Personal Element */
.cta-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-avatar {
    width: 120px;
    height: 120px;
    background-color: #e0e0e0;
    background-image: url('../assets/images/cta-avatar.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
    border: 4px solid var(--color-white);
}

.cta-quote-box {
    background: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: 20px 20px 20px 0;
    font-style: italic;
    color: var(--color-primary);
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.cta-quote-box::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 20px;
    height: 20px;
    background: var(--color-bg-alt);
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

/* Updated Button for this section */
.btn-cta-primary {
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 1.2rem 3rem;
    box-shadow: 0 10px 25px rgba(200, 121, 89, 0.3);
    width: auto;
    display: inline-block;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(200, 121, 89, 0.4);
}

/* Responsive CTA */
@media (max-width: 900px) {
    .cta-card {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
        text-align: center;
        gap: 3rem;
    }

    .cta-content {
        text-align: center;
    }

    .trust-badges {
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-quote-box {
        border-radius: 20px;
    }

    .cta-quote-box::after {
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
        bottom: -10px;
        clip-path: none;
        width: 15px;
        height: 15px;
    }
}

/* Footer - Professional Layout */
.footer {
    background-color: var(--color-primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 6rem 0 2rem;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    margin-top: -3rem;
    /* Overlap effect */
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer h3 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.footer h4 {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer p,
.footer li {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer a:hover {
    color: var(--color-secondary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--color-secondary);
    transform: translateY(-3px);
}

.copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.copyright-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(44, 62, 54, 0.15);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Bento Quote */
.bento-quote {
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.8;
}

/* Playbook Preview */
.preview-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.preview-badge {
    background: var(--color-primary);
    color: white;
    padding: 0.75rem 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.preview-content {
    padding: 2.5rem;
}

.preview-rule {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(44, 62, 54, 0.05);
    border-left: 4px solid var(--color-primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.preview-rule h3 {
    margin: 0 0 0.5rem;
    color: var(--color-primary);
}

.preview-rule p {
    margin: 0;
}

.preview-script {
    margin-bottom: 1.5rem;
}

.preview-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.preview-script blockquote {
    margin: 0;
    padding: 1rem 1.5rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    font-style: italic;
    color: var(--color-text);
    line-height: 1.7;
}

.preview-footer {
    padding: 2rem 2.5rem;
    background: var(--color-bg-alt);
    text-align: center;
}

.preview-footer p {
    margin-bottom: 1rem;
}

/* ROI Section */
.roi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.roi-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.roi-card:hover {
    transform: translateY(-4px);
}

.roi-card.roi-total {
    background: var(--color-primary);
    color: white;
}

.roi-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.roi-value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.roi-card p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.85;
}

.roi-source {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Comparison Section */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    padding: 2.5rem;
    border-radius: var(--radius-lg);
}

.comparison-card h3 {
    margin-bottom: 1.5rem;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
}

.comparison-card li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.comparison-free {
    background: var(--color-bg-alt);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.comparison-toolkit {
    background: var(--color-primary);
    color: white;
}

.comparison-toolkit h3 {
    color: white;
}

.comparison-x {
    color: var(--color-secondary);
    font-weight: 700;
    flex-shrink: 0;
}

.comparison-check {
    color: #8BC34A;
    font-weight: 700;
    flex-shrink: 0;
}

.comparison-toolkit li {
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

/* Pricing Badge */
.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-secondary);
    color: white;
    padding: 0.35rem 1.25rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-ticket {
    position: relative;
}

.pricing-note {
    opacity: 0.6;
    font-style: italic;
}

/* Audit Box */
.audit-box {
    margin-top: 3rem;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    border: 2px dashed var(--color-secondary);
}

.audit-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.audit-content h3 {
    margin: 0 0 0.5rem;
    color: var(--color-primary);
}

.audit-price-box {
    text-align: center;
    flex-shrink: 0;
}

.audit-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 0.25rem;
}

.audit-price-box p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

/* Maintenance Box */
.maintenance-box {
    margin-top: 1.5rem;
    padding: 1.25rem 2rem;
    background: var(--color-white);
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    box-shadow: var(--shadow-soft);
}

.maintenance-box p {
    margin: 0;
}

/* Animation Utils */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .copyright-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    h1 {
        font-size: 3rem;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        height: 300px;
        margin-bottom: 2rem;
        order: -1;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-card.large,
    .bento-card.tall {
        grid-column: auto;
        grid-row: auto;
    }

    .navbar {
        top: 0;
        width: 100%;
        max-width: none;
        border-radius: 0;
        padding: 0.5rem;
    }

    .nav-container {
        background: var(--color-white);
        border-radius: 0;
        border: none;
        box-shadow: none;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        background: none;
        border: none;
    }

    .mobile-menu-toggle span {
        width: 30px;
        height: 3px;
        background: var(--color-primary);
        border-radius: 3px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-soft);
    }

    .nav-links.active {
        display: flex;
    }

    .step-row,
    .step-row:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }

    .step-row:nth-child(even) .step-content {
        text-align: center;
    }

    .roi-grid {
        grid-template-columns: 1fr;
    }

    .roi-value {
        font-size: 1.5rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .audit-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-visual {
        order: -1;
    }

    .preview-content {
        padding: 1.5rem;
    }
}