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

:root {
    --warm-cream: oklch(0.97 0.02 85);
    --golden-yellow: oklch(0.85 0.15 85);
    --warm-peach: oklch(0.88 0.12 75);
    --terracotta: oklch(0.45 0.08 25);
    --warm-brown: oklch(0.35 0.05 50);
    --deep-brown: oklch(0.25 0.02 50);
    --coral-accent: oklch(0.65 0.18 15);
    --muted-brown: oklch(0.50 0.02 50);
    --light-peach: oklch(0.93 0.05 80);
    --white: oklch(1 0 0);

    --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    --radius: 0.75rem;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
}

body {
    font-family: var(--font-body);
    color: var(--deep-brown);
    line-height: 1.7;
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--light-peach) 100%);
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 700;
}

/* ─── Announcement Bar ─── */

.announcement-bar {
    background: var(--golden-yellow);
    color: var(--deep-brown);
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

/* ─── Header / Nav ─── */

.header {
    position: sticky;
    top: 0;
    background: var(--warm-brown);
    backdrop-filter: blur(10px);
    z-index: 100;
    padding: 0.5rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-image {
    height: 32px;
    width: auto;
}

.nav-cta {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.nav-cta:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

/* ─── Hero ─── */

.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #FFCC66, #FAB880, #F28C4D);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 30%, rgba(255,255,255,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 40%, rgba(255,255,255,0.10) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255,255,255,0.12) 0%, transparent 50%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem 5rem;
    text-align: center;
}

.hero-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.hero-logo-image {
    height: 246px;
    width: auto;
    transform: scaleX(1.10);
}

.hero-badge {
    margin-bottom: 2rem;
    display: inline-block;
}

.hero-badge span {
    display: inline-block;
    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(8px);
    padding: 2px;
    border-radius: 2rem;
    box-shadow: var(--shadow-md);
}

.hero-badge span {
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #4D2E1A;
    letter-spacing: 0.02em;
}

.hero-title {
    font-size: 3.5rem;
    color: #4D2E1A;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.hero-title-accent {
    background: linear-gradient(to right, #F28C4D, #D97333, #F28C4D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #734D33;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.cta-button.outline {
    background: transparent;
    color: #4D2E1A;
    border: 2px solid rgba(77, 46, 26, 0.2);
    font-weight: 600;
}

.cta-button.outline:hover {
    background: rgba(77, 46, 26, 0.05);
}

.hero-avatars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.avatar-stack {
    display: flex;
}

.avatar-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: var(--shadow-sm);
    object-fit: cover;
    margin-left: -12px;
}

.avatar-circle:first-child {
    margin-left: 0;
}

.avatar-label {
    font-size: 0.9rem;
    color: rgba(77, 46, 26, 0.8);
}

.hero-social-proof {
    font-size: 0.9rem;
    color: #734D33;
}

.hero .cta-button.primary {
    background: #D97333;
    box-shadow: var(--shadow-lg);
    font-size: 1.05rem;
    padding: 1rem 2rem;
}

.hero .cta-button.primary:hover {
    background: #C26329;
}

/* ─── Shared Section Styles ─── */

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--warm-brown);
}

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: var(--muted-brown);
    max-width: 700px;
    margin: 0 auto 4rem;
}

/* ─── Companions ─── */

.companions {
    background: linear-gradient(180deg, var(--light-peach) 0%, var(--warm-peach) 100%);
    position: relative;
}

.companions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(232, 196, 104, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(217, 123, 99, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.companions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.companion-card {
    background: var(--white);
    padding: 2rem;
    border-radius: calc(var(--radius) * 1.5);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.companion-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--golden-yellow);
}

.companion-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--golden-yellow);
    background: linear-gradient(135deg, var(--warm-peach) 0%, var(--golden-yellow) 100%);
}

.companion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.companion-name {
    font-size: 1.5rem;
    color: var(--warm-brown);
    margin-bottom: 0.5rem;
}

.companion-role {
    font-size: 0.85rem;
    color: var(--coral-accent);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.companion-bio {
    color: var(--muted-brown);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ─── Features ─── */

.features {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.features-grid .feature-card:last-child {
    grid-column: 2;
}

.feature-card {
    padding: 2rem;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--light-peach) 0%, var(--warm-cream) 100%);
    border: 2px solid var(--golden-yellow);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--golden-yellow) 0%, var(--coral-accent) 100%);
    border-radius: calc(var(--radius) * 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.feature-title {
    font-size: 1.5rem;
    color: var(--warm-brown);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--muted-brown);
    line-height: 1.7;
}

/* ─── How It Works ─── */

.how-it-works {
    background: linear-gradient(180deg, var(--warm-cream) 0%, var(--light-peach) 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--coral-accent) 0%, var(--terracotta) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
}

.step-title {
    font-size: 1.375rem;
    color: var(--warm-brown);
    margin-bottom: 0.75rem;
}

.step-description {
    color: var(--muted-brown);
    line-height: 1.6;
}

/* ─── Testimonials ─── */

.testimonials {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: linear-gradient(135deg, var(--light-peach) 0%, var(--warm-peach) 100%);
    padding: 2rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--coral-accent);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--deep-brown);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-author {
    color: var(--muted-brown);
    font-weight: 600;
}

.testimonial-days {
    font-size: 0.85rem;
    color: var(--coral-accent);
    font-weight: 600;
}

.testimonials-disclaimer {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.8rem;
    color: var(--muted-brown);
    font-style: italic;
}

/* ─── Pricing Hint ─── */

.pricing-hint {
    background: linear-gradient(180deg, var(--warm-cream) 0%, var(--light-peach) 100%);
}

.pricing-hint .section-container {
    padding: 4rem 2rem;
}

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

.pricing-card {
    padding: 2rem;
    border-radius: calc(var(--radius) * 1.5);
    border: 2px solid var(--deep-brown);
    background: var(--deep-brown);
    color: var(--white);
}

.pricing-tier {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
    color: var(--golden-yellow);
}

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

.pricing-features li {
    padding: 0.4rem 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features li::before {
    content: "✓";
    color: var(--golden-yellow);
    font-weight: 700;
    flex-shrink: 0;
}

/* ─── CTA Section ─── */

.cta-section {
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--warm-brown) 100%);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(232, 196, 104, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(217, 123, 99, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.cta-section .cta-button {
    background: var(--white);
    color: var(--warm-brown);
}

.cta-section .cta-button:hover {
    background: var(--golden-yellow);
    color: var(--deep-brown);
}

/* ─── Shared Button Styles ─── */

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--coral-accent) 0%, var(--terracotta) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.cta-button.primary:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.cta-button.primary:active {
    transform: scale(0.98);
}

.cta-button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* ─── Footer ─── */

.footer {
    background: var(--deep-brown);
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    text-align: center;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--golden-yellow);
}

.footer-crisis {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 600px;
}

.crisis-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.75rem;
}

.crisis-numbers {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.crisis-link {
    color: var(--golden-yellow);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    transition: opacity 0.3s ease;
}

.crisis-link:hover {
    opacity: 0.8;
}

.crisis-link span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.25rem;
}

.footer-disclaimer {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.8rem;
    text-align: center;
    max-width: 500px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    text-align: center;
}

/* ─── Responsive ─── */

@media (max-width: 768px) {
    .hero-inner {
        padding: 4rem 1.5rem 3rem;
    }

    .hero-logo-image {
        height: 192px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-avatars {
        flex-direction: column;
        gap: 0.5rem;
    }

    .section-container {
        padding: 4rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .companions-grid,
    .features-grid,
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .features-grid .feature-card:last-child {
        grid-column: 1;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1.05rem;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .logo-image {
        height: 26px;
    }

    .pricing-cards {
        grid-template-columns: 1fr 1fr;
    }

    .crisis-numbers {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
