/* CSS Variables & Reset */
:root {
    /* Color Palette */
    --sage-primary: #8A9A5B;
    --sage-dark: #5F6F40;
    --sage-light: #E0E8D0;

    --blush-pink: #EEC5C2;
    --blush-light: #FDF2F1;

    --terra-cotta: #F09C28;
    /* Updated to Match Reference Orange/Gold */
    --terra-dark: #D4881F;

    --bg-cream: #F5F0E6;
    /* Slightly warmer cream from reference */
    --text-dark: #2F2F2F;
    --text-muted: #5A5A5A;

    --white: #FFFCF7;
    /* Softer white for cards */

    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1.5rem;
    --spacing-md: 2rem;
    /* Reduced from 3rem */
    --spacing-lg: 3rem;
    /* Reduced from 5rem */
    --spacing-xl: 4rem;
    /* Reduced significantly from 8rem */

    /* Shadows */
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.05);

    --bg-hero-salmon: #F3EADC;
    /* Updated to warm beige from reference */
    --text-hero-navy: #303842;
    /* Dark navy for hero text */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.8;
    /* Increased breathing room */
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 1rem;
    /* Consistent spacing for headers */
    text-wrap: balance;
    /* Prevents typographic widows in headers */
}

p {
    margin-bottom: 1.2rem;
    /* Spacing for paragraphs */
    text-wrap: pretty;
    /* Modern browser support for better body wrapping */
    max-width: 65ch;
    /* Optimal reading length */
    margin-left: auto;
    /* Ensure centering works */
    margin-right: auto;
    /* Ensure centering works */
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--terra-cotta);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(226, 125, 96, 0.4);
}

.btn-primary:hover {
    background-color: var(--terra-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(226, 125, 96, 0.6);
}

.btn-secondary {
    background-color: var(--sage-primary);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--sage-dark);
    transform: translateY(-2px);
}

.text-center {
    text-align: center;
}

/* Wrapper for sections */
section {
    padding: 3rem 0;
    /* Reduced default padding from variable */
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    min-height: 100vh;
    /* slightly taller to fit everything */
    display: flex;
    align-items: center;
    position: relative;
    padding: var(--spacing-lg) 0;
    overflow: hidden;
    background: linear-gradient(180deg, #fff 0%, var(--bg-hero-salmon) 100%);
    /* Top to bottom salmon gradient */
    text-align: center;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    /* Consistent gap between elements */
    position: relative;
    z-index: 2;
    max-width: 800px;
    /* Constrain width for better reading */
    margin: 0 auto;
    /* Center the container */
    width: 90%;
    /* Ensure it respects container width */
}

/* Remove old animations or adjust them if needed */
.hero-container>* {
    animation: fadeUp 1s ease-out;
}

.hero-content {
    /* Removed animation and padding-right as layout changed */
}

.badge {
    background-color: var(--blush-pink);
    color: var(--text-dark);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 0.5rem;
    /* reduced since container has gap */
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--text-hero-navy);
    /* Ensure title uses navy */
}

.hero .accent-text {
    display: block;
    font-style: italic;
    color: var(--terra-cotta);
    /* Changed to orange */
    font-weight: 400;
    margin-top: 0.5rem;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-muted);
    /* Maintained muted for subtext, or use --text-hero-navy with opacity */
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.security-note {
    margin-top: var(--spacing-sm);
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-image-container {
    position: relative;
    /* animation: fadeLeft 1.2s ease-out; Removed specific animation */
    margin: 1rem 0 2.5rem;
    width: 100%;
    max-width: 800px;
    /* Increased from 450px for wider desktop view */
}

.hero-img {
    border-radius: 20px;
    /* Rounded rectangle as per reference */
    box-shadow: var(--shadow-card);
    transform: none;
    /* Remove rotation for centered layout */
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-img:hover {
    transform: none;
    /* remove hover effect to keep it clean like reference */
}

.floating-card {
    display: none;
    /* Hidden to match reference */
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    bottom: 20px;
    /* Adjust position */
    right: -20px;
    /* Move to right */
    left: auto;
    animation: float 4s ease-in-out infinite;
}

.btn-hero {
    padding: 1.2rem 4rem;
    font-size: 1.1rem;
    width: 100%;
    max-width: 500px;
    /* Wide button */
    border-radius: 50px;
    background-color: var(--terra-cotta);
    box-shadow: none;
    /* Flat look or subtle */
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    /* Extra bold */
}

.security-note {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
    justify-content: center;
}

.floating-card i {
    color: var(--terra-cotta);
    fill: var(--terra-cotta);
}

/* =========================================
   Pain Points
   ========================================= */
.pain-points {
    background-color: var(--white);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--sage-primary);
    margin: 1rem auto 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.pain-card {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    transition: transform 0.3s;
}

.pain-card:hover {
    transform: translateY(-5px);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background-color: var(--blush-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

/* =========================================
   Belief Break
   ========================================= */
.belief-break {
    background-color: var(--sage-dark);
    color: var(--white);
    text-align: left;
    /* Explicitly left align this section */
}

.belief-break .text-content {
    text-align: left;
    align-items: flex-start;
}

.belief-break h2,
.belief-break h3 {
    color: var(--white);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    text-align: center;
    /* Center text even in split layout for consistency per user request */
}

.overhead {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.belief-break h2 {
    font-size: 3rem;
    margin: 1rem 0 2rem;
}

.rounded-img {
    border-radius: 300px 300px 0 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* =========================================
   Curriculum
   ========================================= */
.curriculum {
    background-color: var(--bg-cream);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.feature-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    /* Stack vertically */
    gap: 1rem;
    align-items: center;
    /* Center horizontally */
    text-align: center;
    /* Center text */
    box-shadow: var(--shadow-card);
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    /* Changed to Y for better feel with column */
}

.emoji-icon {
    font-size: 2.5rem;
    /* Larger emoji */
    min-width: 50px;
    text-align: center;
}

.center-btn {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* =========================================
   Testimonials
   ========================================= */
.testimonials {
    background-color: #fff;
}

.review-card {
    background: var(--bg-cream);
    padding: 3rem 2rem 2rem;
    /* Added top padding for image space */
    border-radius: 20px;
    position: relative;
    text-align: center;
    /* Center text */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
    /* Space for the image popping out if we wanted, but here just spacing */
}

.reviewer-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-card);
}

.stars {
    color: #FFC107;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.reviewer strong {
    display: block;
    color: var(--sage-dark);
}

.reviewer span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* =========================================
   Value Anchor
   ========================================= */
.value-anchor {
    padding-bottom: 2rem;
    /* Reduced padding to close gap */
}

.anchor-section-title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--sage-dark);
}

.anchor-sub {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.comparison-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    /* More space around VS */
    margin-top: 4rem;
    flex-wrap: wrap;
    position: relative;
    /* Context for VS positioning if needed */
}

.compare-item {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    width: 300px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Softer border */
    box-shadow: var(--shadow-card);
}

.compare-item.highlight {
    border: 2px solid var(--sage-primary);
    transform: scale(1.05);
    /* Slightly less aggressive scale */
    box-shadow: var(--shadow-soft);
}

.vs-circle {
    background: var(--text-dark);
    color: #fff;
    width: 60px;
    /* Larger */
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    /* Don't shrink */
    z-index: 2;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--sage-dark);
    margin: 0.5rem 0;
}

.emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

/* =========================================
   For Who
   ========================================= */
.for-who {
    padding-top: 6rem;
    /* Increased spacing significantly from VS section */
}

.for-who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Balanced 50/50 split */
    gap: 0;
    /* No gap for seamless card look */
    background: transparent;
    /* Backgrounds handled by columns */
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    max-width: 900px;
    margin: 0 auto;
    /* Center the grid container */
}

.yes-column {
    padding: 3rem;
    /* Comfortable padding */
    background: #E0E8D0;
    /* Greenish */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.yes-column ul {
    list-style: none;
    margin-top: 1.5rem;
}

.yes-column li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.yes-column i {
    color: var(--sage-dark);
}

.no-column {
    padding: 3rem;
    background: #F5F5F5;
    /* Greyish */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    /* Center text */
}

.no-column h3 {
    margin-bottom: 1rem;
}

.no-column p {
    font-size: 1.1rem;
}

/* =========================================
   Offer Section
   ========================================= */
.offer-section {
    background-color: var(--sage-dark);
    /* Darker green background */
    text-align: center;
    color: #fff;
    padding: var(--spacing-lg) 0;
}

.offer-box {
    background: var(--white);
    padding: 2.5rem 2rem 2rem;
    /* Reduced top/bottom padding */
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    border: 2px solid var(--sage-light);
}

.bonus-badge {
    background: var(--terra-cotta);
    color: white;
    display: inline-block;
    padding: 0.6rem 1.5rem;
    /* Slightly smaller */
    border-radius: 0 0 15px 15px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.offer-title {
    font-size: 1.8rem;
    margin: 2.5rem 0 0.5rem;
    /* Reduced spacing */
    font-weight: 700;
    color: var(--sage-dark);
    line-height: 1.2;
}

.timer {
    font-size: 3rem;
    font-family: monospace;
    color: var(--terra-cotta);
    margin: 0.5rem 0 1rem;
    /* Compacted spacing */
    font-weight: 700;
}

.pricing {
    margin: 0.5rem 0 1.5rem;
    /* Compacted spacing */
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    /* Tighter gap */
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    /* Space below old price */
}

.new-price {
    font-size: 3.5rem;
    /* Restored size for impact */
    color: var(--sage-dark);
    font-weight: 700;
    line-height: 1;
    /* Tighter line height for the big number */
    margin-bottom: 0.5rem;
}

.btn-large {
    font-size: 1.3rem;
    padding: 1.2rem 3rem;
    /* Restored/Increased height */
    margin-bottom: 1rem;
    width: 100%;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: var(--sage-dark);
    font-size: 1.1rem;
}

.emoji-medal {
    font-size: 1.5rem;
}

/* =========================================
   FAQ
   ========================================= */
.faq {
    background: var(--bg-cream);
}

.accordion-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    background: none;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    text-align: left;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.accordion-content.active {
    padding-bottom: 1.5rem;
}

/* Footers */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 1.5rem 0;
    /* Reduced padding */
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =========================================
   Sales Notification
   ========================================= */
.sales-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    padding: 1rem 1.2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s;
    transform: translateY(20px);
    border-left: 5px solid var(--terra-cotta);
    max-width: 320px;
}

.sales-notification.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.notification-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--bg-hero-salmon);
}

.notification-content {
    display: flex;
    flex-direction: column;
}

.notification-text {
    font-size: 0.9rem;
    line-height: 1.3;
    margin-bottom: 0.2rem;
    color: var(--text-dark);
}

.notification-text strong {
    color: var(--sage-dark);
}

.notification-time {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Mobile tweak for notification */
@media (max-width: 480px) {
    .sales-notification {
        bottom: 10px;
        left: 10px;
        right: 10px;
        /* Full width on mobile */
        max-width: none;
    }
}

/* Responsive */
@media (max-width: 900px) {

    .hero>.container,
    .split-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-img {
        max-width: 80%;
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .comparison-box {
        flex-direction: column;
    }

    .for-who-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 2rem;
    }
}