/* ------------------------------
   Base Styles & Variables
------------------------------ */
:root {
    --color-rose: #be6b69;      /* Muted Rose / Dusty Pink */
    --color-olive: #4e5936;     /* Deep Olive */
    --color-sage: #7a8562;      /* Sage Green */
    --color-peach: #fbdcc0;     /* Pale Peach / Soft Peach */
    --color-cream: #fff6ec;     /* Soft cream */
    --color-white: #ffffff;
    --color-text: #333333;

    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-pill: 999px;

    --shadow-soft: 0 12px 28px rgba(0, 0, 0, 0.06);
    --shadow-subtle: 0 8px 20px rgba(0, 0, 0, 0.04);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--color-text);
    background-color: #fffaf5;
    line-height: 1.6;
}

/* Layout helper */
.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Section pill label */
.section-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.9rem;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
    color: var(--color-olive);
    background-color: rgba(251, 220, 192, 0.7);
    margin-bottom: 0.7rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.98rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.16s ease, box-shadow 0.16s ease,
                background-color 0.16s ease, color 0.16s ease;
    white-space: nowrap;
}

.btn-rose {
    background-color: var(--color-rose);
    color: var(--color-white);
    box-shadow: var(--shadow-soft);
}

.btn-rose:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(190, 107, 105, 0.3);
}

.btn-olive {
    background-color: var(--color-olive);
    color: var(--color-peach);
    box-shadow: var(--shadow-subtle);
}

.btn-olive:hover {
    background-color: #3c452a;
    transform: translateY(-1px);
}

.btn-cream {
    background-color: var(--color-cream);
    color: var(--color-olive);
    box-shadow: var(--shadow-soft);
}

.btn-cream:hover {
    background-color: #ffe8d1;
    transform: translateY(-1px);
}

.full-width {
    width: 100%;
}

/* Section headers */
.section-header {
    margin-bottom: 2.1rem;
}

.section-header h2 {
    font-size: 1.9rem;
    color: var(--color-olive);
    line-height: 1.3;
    margin-bottom: 0.6rem;
}

.section-header p {
    color: #4a4a4a;
    max-width: 1000px;
    font-size: 0.96rem;
}

.section-header.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-header.center p {
    margin-left: auto;
    margin-right: auto;
}

/* ------------------------------
   1. Header / Navigation
------------------------------ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 250, 245, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* Logo image */
.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 57px;
    width: auto;
    display: block;
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    font-size: 0.95rem;
}

.nav-links a {
    text-decoration: none;
    color: #555555;
    font-weight: 500;
    position: relative;
    padding-bottom: 2px;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: var(--color-rose);
    transition: width 0.2s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-social a {
    margin-left: 0.4rem;
    color: var(--color-olive);
    font-size: 1.1rem;
    text-decoration: none;
}

.nav-social a:hover {
    color: var(--color-rose);
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background-color: var(--color-cream);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    background-color: var(--color-olive);
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* ------------------------------
   2. Hero Section
------------------------------ */
.hero-section {
    background-color: var(--color-peach); /* Soft Peach background */
    padding: 2rem 0 4rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 2.8rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.4rem;
    line-height: 1.2;
    color: var(--color-olive); /* Deep Olive headline */
    margin-bottom: 0.9rem;
}

.hero-subtitle {
    color: var(--color-rose); /* Dusty Pink subheadline */
    font-weight: 500;
    max-width: 480px;
    margin-bottom: 1.6rem;
    font-size: 0.98rem;
}

.hero-ctas {
    margin-bottom: 1.2rem;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: #7a5a3e;
}

.hero-highlights span {
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-pill);
    background-color: rgba(255, 255, 255, 0.7);
}

.hero-visual {
    position: relative;
}

.hero-illustration {
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(135deg, #fef1e4, #fbdcc0);
    box-shadow: var(--shadow-soft);
    aspect-ratio: 4 / 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    bottom: -18px;
    right: 10%;
    background-color: var(--color-olive);
    color: var(--color-peach);
    padding: 0.8rem 1.1rem;
    border-radius: 18px;
    font-size: 0.82rem;
    box-shadow: 0 12px 30px rgba(78, 89, 54, 0.55);
    max-width: 240px;
}

/* Floating animation */
.floating {
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0px); }
}

/* ------------------------------
   3. Mission & Trust Pillars
------------------------------ */
.mission-section {
    /* Contrasting background: subtle pale Sage/cream */
    background: linear-gradient(135deg, rgba(122, 133, 98, 0.08), #fff6ec);
    padding: 4rem 0 4.2rem;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
    margin-top: 1rem;
}

.pillar-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 1.6rem 1.5rem 1.5rem;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.pillar-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background-color: rgba(190, 107, 105, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--color-rose);
    font-size: 1.1rem;
}

.pillar-card h3 {
    font-size: 1.05rem;
    color: var(--color-olive);
    margin-bottom: 0.4rem;
}

.pillar-card p {
    font-size: 0.94rem;
    color: #555;
}
/* ------------------------------
   4A. Symptoms Snapshot
------------------------------ */
/* .symptoms-section {
    background-color: #fff9f3;
    padding: 3rem 0 3.2rem;
}
.symptoms-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 1.6rem;
    align-items: center;
}
.symptoms-text h2 {
    font-size: 1.8rem;
    color: var(--color-olive);
    margin-bottom: 0.6rem;
}
.symptoms-text p {
    color: #4a4a4a;
    max-width: 540px;
    font-size: 0.96rem;
}
.symptoms-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.symptoms-tags span {
    font-size: 0.82rem;
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(190, 107, 105, 0.4);
    color: #7c4b42;
    background-color: #fff;
} */


.symptoms-section {
    background-color: #fff9f3;
    padding: 3rem 0 3.2rem;
}
.symptoms-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 1.6rem;
    align-items: center;
}
.symptoms-text h2 {
    font-size: 1.8rem;
    color: var(--color-olive);
    margin-bottom: 0.6rem;
}
.symptoms-text p {
    color: #4a4a4a;
    max-width: 540px;
    font-size: 0.96rem;
}
.symptoms-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.symptoms-tags span {
    font-size: 0.82rem;
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(190, 107, 105, 0.4);
    color: #7c4b42;
    background-color: #fff;
}

/* Adjust for mobile screens */
@media (max-width: 768px) {
    .symptoms-inner {
        grid-template-columns: 1fr;  /* Stacks elements vertically */
        text-align: center;
    }

    .symptoms-text h2 {
        font-size: 1.6rem;
    }

    .symptoms-tags {
        justify-content: center;
    }

    .symptoms-tags span {
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
    }
}

@media (max-width: 520px) {
    .symptoms-text h2 {
        font-size: 1.5rem;
    }

    .symptoms-text p {
        font-size: 0.9rem;
        max-width: 100%;
    }
}


/* ------------------------------
   4. Foundational Knowledge Teaser
------------------------------ */
.knowledge-section {
    background-color: var(--color-peach); /* Returns to Soft Peach */
    padding: 4rem 0 4.3rem;
}

.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem;
    margin-bottom: 2rem;
}

.knowledge-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 1.6rem 1.5rem 1.6rem;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.knowledge-card h3 {
    font-size: 1.1rem;
    color: var(--color-olive);
    margin-bottom: 0.8rem;
}

.knowledge-card ul {
    list-style: none;
    font-size: 0.95rem;
}

.knowledge-card li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.45rem;
    color: #4f4f4f;
}

.knowledge-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-rose);
}

.knowledge-cta {
    text-align: center;
}

.knowledge-subnote {
    font-size: 0.9rem;
    color: #5a5a5a;
    margin-top: 0.9rem;
}

/* ------------------------------
   5. FAQ Section
------------------------------ */
/* ===== FAQ SECTION ===== */
.faq-image {
    margin-top: 60px;
}

.faq-image img {
    width: 100%;
    height: 150%;
    height: auto;
    border-radius: 10px;
    
}

.faq-section {
    background-color: #fffaf7;
    padding: 3.8rem 0 4rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.3fr);
    gap: 2.2rem;
    align-items: flex-start;
}

.faq-left h2 {
    font-size: 1.9rem;
    color: var(--color-olive);
    margin-bottom: 0.8rem;
}

.faq-left p {
    font-size: 0.96rem;
    color: #4a4a4a;
    max-width: 420px;
    margin-bottom: 1.4rem;
}

.faq-btn {
    padding-inline: 2.1rem;
    border-radius: 999px;
}

/* Right side pills */
.faq-right {
    display: flex;
    flex-direction: column;
    
    gap: 1rem;
}

.faq-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.6rem;
    border-radius: 999px;
    background-color: #fdccb3;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-question {
    font-size: 0.98rem;
    color: #1f2230;
    font-weight: 500;
    margin-right: 1rem;
}

.faq-answer {
    display: none;
    font-size: 0.92rem;
    color: #444;
    margin-top: 0.6rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-olive);
    cursor: pointer;
}

.faq-item:hover {
    background-color: #ffeede;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.faq-item.active {
    background-color: #ffebd3;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle {
    color: var(--color-rose);
}

/* Mobile support */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-left {
        margin-bottom: 1.5rem;
    }
}

/* Mobile-only adjustments for FAQ Section */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0 4rem; /* Adjust padding for mobile */
    }

    .faq-grid {
        display: grid;
        grid-template-columns: 1fr;  /* Ensure FAQ items are stacked vertically */
        gap: 2rem;  /* Adjust gap between FAQ items */
        margin-top: 1.5rem; /* Adjusted spacing */
    }

    .faq-left h2 {
        font-size: 1.6rem;  /* Smaller header size for mobile */
        text-align: center; /* Center align the heading */
        margin-bottom: 1.2rem; /* Space below the heading */
    }

    .faq-left p {
        font-size: 1rem;  /* Adjust font size for mobile */
        color: #4a4a4a;
        max-width: 420px;
        margin: 0 auto 1.4rem; /* Centered and spaced text */
        text-align: center;
    }

    .faq-image {
        display: block;
        margin: 0 auto;
        width: 110%; 
        height: auto; /* Adjust the width of the image */
        max-width: 400px;
        border-radius: 10px;
         /* Space below the image */
    }

    /* FAQ item styling */
    .faq-item {
        padding: 1.1rem 1.6rem;
        border-radius:50px;
        background-color: #fdccb3;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
        cursor: pointer;
        transition: background-color 0.3s ease, box-shadow 0.3s ease;
    }


    .faq-question {
        font-size: 1.1rem;  /* Larger question font */
        color: #1f2230;
        font-weight: 500;
    }
   
    .faq-answer {
        display: none;
        font-size: 1rem;  /* Answer text size adjusted */
        color: #444;
        margin-top: 0.6rem;
    }

    .faq-toggle {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--color-olive);
        cursor: pointer;
    }

    .faq-item:hover {
        background-color: #ffeede;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
    }

    .faq-item.active {
        background-color: #ffebd3;
    }

    .faq-item.active .faq-answer {
        display: block;
    }

    .faq-item.active .faq-toggle {
        color: var(--color-rose);
    }
}

/* Mobile tweaks for very small screens */
@media (max-width: 520px) {
    .faq-left h2 {
        font-size: 1.4rem;  /* Smaller header for very small screens */
    }

    .faq-question {
        font-size: 1rem;  /* Adjust font size for better readability */
    }

    .faq-answer {
        font-size: 0.9rem;  /* Adjust font size for the answer */
    }
}


/* ------------------------------
   5. Conversion Zone / Join
------------------------------ */
.join-section {
    background-color: var(--color-olive); /* Deep Olive full-width */
    color: var(--color-cream);
    padding: 4rem 0 4rem;
}

.join-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr);
    gap: 2.4rem;
    align-items: start;
}

.join-text h2 {
    font-size: 2rem;
    margin-bottom: 0.6rem;
}

.join-text p {
    margin-bottom: 1.6rem;
    max-width: 460px;
    color: #fcead5;
}

.join-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    color: #fbe6cc;
}

.form-group input {
    width: 100%;
    padding: 0.7rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-cream);
    font-size: 0.95rem;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-peach);
    background-color: rgba(255, 255, 255, 0.12);
}

.form-note {
    font-size: 0.8rem;
    color: #f5dfc5;
    margin-top: 0.6rem;
}

/* Right side card */
.join-side {
    display: flex;
    justify-content: flex-end;
}

.join-card {
    background-color: rgba(0, 0, 0, 0.12);
    border-radius: 20px;
    padding: 1.6rem 1.5rem;
    box-shadow: var(--shadow-subtle);
    max-width: 400px;
}

.join-social-heading {
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
}

.join-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.social-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    color: var(--color-cream);
    text-decoration: none;
}

.social-pill:hover {
    background-color: rgba(251, 220, 192, 0.2);
}

.future-tease {
    font-size: 0.88rem;
    color: #f7e4ce;
}

.tease-label {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--color-peach);
    margin-bottom: 0.3rem;
}

/* ------------------------------
   6. Legal Footer
------------------------------ */
.legal-footer {
    background-color: #1f2215;
    color: #d4d4d4;
    font-size: 0.82rem;
    padding: 0.6rem 0;
}

.legal-inner {
    display: flex;
    align-items: center;
}

/* ------------------------------
   Responsive Styles
------------------------------ */
@media (max-width: 960px) {
    .hero-grid,
    .join-inner,
    .pillars-grid,
    .knowledge-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-section {
        padding-top: 4rem;
    }

    .hero-grid {
        gap: 2rem;
    }

    .hero-visual {
        order: -1;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .join-side {
        justify-content: flex-start;
    }

    .join-card {
        max-width: 100%;
    }
}

@media (max-width: 780px) {
    .nav-inner {
        height: 64px;
    }

    .nav-links {
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        padding: 0.8rem 1.5rem 1rem;
        background-color: rgba(255, 250, 245, 0.98);
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-right .btn-olive {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .hero-section {
        padding-bottom: 3.5rem;
    }

    .join-form .form-row {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 520px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .pillars-grid,
    .knowledge-grid {
        gap: 1.2rem;
    }

    .hero-badge {
        position: static;
        margin-top: 0.9rem;
        max-width: 100%;
    }
}

.join-logo {
    text-align: center; /* Center-align the logo */
    margin-bottom: 1.5rem; /* Add spacing below the logo */
}

.join-logo .logo-img {
    height: 50px; /* Adjust height as needed */
    width: auto; /* Maintain aspect ratio */
}

/* ===== 6. THE TEAM SECTION ===== */
.team-section {
    padding: 50px 0;
    background-color: #fff6ec;
}

.team-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.team-section .section-pill {
    font-size: 16px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.team-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.team-section p {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.team-member p {
    font-size: 16px;
    color: #6c757d;
    font-weight: 400;
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

