/* =============================================
   CYWAYZ SEEDS — Landing Page Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* === CSS Variables === */
:root {
    --navy:       #0d1b3e;
    --navy-light: #162450;
    --navy-mid:   #1e3060;
    --gold:       #c9a44a;
    --gold-light: #e2be78;
    --green:      #4a7c59;
    --green-light:#6aaa7a;
    --cream:      #f9f5ef;
    --white:      #ffffff;
    --text-dark:  #1a1a2e;
    --text-muted: #6b7280;
    --border:     #e5e7eb;
    --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
    --shadow-md:  0 8px 32px rgba(13,27,62,0.12);
    --shadow-lg:  0 20px 60px rgba(13,27,62,0.18);
    --radius:     12px;
    --radius-lg:  20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* === Typography === */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-title span,
.highlight { color: var(--gold); }

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 540px;
    margin: 0 auto 3.5rem;
}

/* === Layout === */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section { padding: 5rem 0; }

/* ===========================
   NAVBAR
   =========================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0.85rem 0;
    transition: box-shadow var(--transition);
}

.navbar.scrolled { box-shadow: var(--shadow-md); }

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.navbar__logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-weight: 900;
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: -1px;
}

.navbar__logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--navy);
    line-height: 1.1;
}

.navbar__logo-text small {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

.navbar__nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.navbar__nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition);
    position: relative;
}

.navbar__nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.navbar__nav a:hover,
.navbar__nav a.active { color: var(--navy); }
.navbar__nav a:hover::after,
.navbar__nav a.active::after { transform: scaleX(1); }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.6rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    font-family: 'DM Sans', sans-serif;
}

.btn--primary {
    background: var(--navy);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--navy-mid);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(13,27,62,0.25);
}

.btn--gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
}

.btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,164,74,0.35);
}

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

.btn--outline:hover {
    background: var(--navy);
    color: var(--white);
}

.btn--outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}

.btn--outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}

.btn--lg { padding: 0.85rem 2.2rem; font-size: 1rem; border-radius: 10px; }

/* ===========================
   HERO
   =========================== */
.hero {
    background: linear-gradient(135deg, var(--cream) 0%, #e8f0e4 60%, #d4e4d0 100%);
    padding: 5rem 0 0;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(201,164,74,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
}

.hero__content { padding-bottom: 5rem; }

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201,164,74,0.15);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(201,164,74,0.3);
}

.hero__title {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    color: var(--navy);
    margin-bottom: 1.2rem;
    font-weight: 900;
}

.hero__title .line-green { color: var(--green); font-style: italic; }

.hero__desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 420px;
    margin-bottom: 2.2rem;
    line-height: 1.75;
}

.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.hero__image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero__image-wrap img {
    width: 100%;
    max-width: 520px;
    object-fit: cover;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

/* ===========================
   SUPPORT SECTION
   =========================== */
.support { background: var(--white); }

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

.support-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, var(--gold), var(--green));
    opacity: 0;
    transition: opacity var(--transition);
}

.support-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-color: rgba(201,164,74,0.2);
    transform: translateY(-4px);
}

.support-card:hover::before { opacity: 1; }

.support-card__icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, rgba(13,27,62,0.08), rgba(74,124,89,0.08));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
}

.support-card__title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.support-card__desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ===========================
   ELIGIBILITY
   =========================== */
.eligibility {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 50%, #0f2044 100%);
    position: relative;
    overflow: hidden;
}

.eligibility::before,
.eligibility::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.eligibility::before {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(74,124,89,0.15) 0%, transparent 60%);
    bottom: -100px; left: -100px;
}

.eligibility::after {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(201,164,74,0.1) 0%, transparent 60%);
    top: -50px; right: 10%;
}

.eligibility .section-title { color: var(--white); }
.eligibility .section-subtitle { color: rgba(255,255,255,0.6); }

.eligibility__card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 3rem;
    max-width: 700px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.eligibility__card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.eligibility__card-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.eligibility__card-header h3 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white);
}

.eligibility__list { display: flex; flex-direction: column; gap: 1rem; }

.eligibility__item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    line-height: 1.5;
}

.eligibility__item::before {
    content: '✦';
    color: var(--gold);
    font-size: 0.7rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

/* ===========================
   PROCESS / STEPS
   =========================== */
.process { background: var(--white); }

.process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process__steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 28px);
    right: calc(12.5% + 28px);
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--green), var(--gold));
    z-index: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step__icon-wrap {
    width: 56px; height: 56px;
    background: var(--white);
    border: 3px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    transition: all var(--transition);
    position: relative;
}

.step:hover .step__icon-wrap {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(201,164,74,0.1), rgba(74,124,89,0.1));
    transform: scale(1.1);
}

.step__number {
    position: absolute;
    top: -6px; right: -6px;
    width: 20px; height: 20px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step__title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.step__desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===========================
   MISSION
   =========================== */
.mission {
    background: linear-gradient(170deg, #0d1b3e 0%, #162450 40%, #1a3a20 100%);
    text-align: center;
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.mission__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.mission__decor-leaf {
    position: absolute;
    width: 200px;
    opacity: 0.06;
    color: var(--green-light);
}

.mission__decor-leaf svg { fill: currentColor; width: 100%; }

.mission__decor-leaf--1 { bottom: -20px; left: -30px; transform: rotate(-30deg); }
.mission__decor-leaf--2 { top: 20px; right: -20px; transform: rotate(140deg); }

.mission__eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.mission__title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    color: var(--white);
    font-weight: 900;
    margin-bottom: 0.2rem;
    line-height: 1.15;
}

.mission__title .italic-green {
    color: var(--green-light);
    font-style: italic;
}

.mission__body {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    max-width: 520px;
    margin: 1.8rem auto 0;
    line-height: 1.8;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
    background: var(--cream);
    text-align: center;
    padding: 6rem 0;
}

.cta-section__eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.cta-section__title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--navy);
    margin-bottom: 1rem;
}

.cta-section__title .seed-italic {
    color: var(--green);
    font-style: italic;
}

.cta-section__desc {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    font-size: 1rem;
}

.cta-section__buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.cta-section__contact {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.cta-section__contact a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.cta-section__contact a:hover { color: var(--navy); }

.contact-icon {
    width: 28px; height: 28px;
    background: rgba(13,27,62,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* ===========================
   NEWSLETTER
   =========================== */
.newsletter {
    background: var(--white);
    padding: 3.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.newsletter__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.newsletter__text h3 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.newsletter__text p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.newsletter__form {
    display: flex;
    gap: 0.75rem;
    flex: 1;
    max-width: 440px;
}

.newsletter__input {
    flex: 1;
    padding: 0.75rem 1.2rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--cream);
    transition: border-color var(--transition);
    outline: none;
}

.newsletter__input::placeholder { color: var(--text-muted); }

.newsletter__input:focus {
    border-color: var(--gold);
    background: var(--white);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 2rem;
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 2rem;
}

.footer__brand { max-width: 300px; }

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.footer__logo-icon {
    width: 38px; height: 38px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
}

.footer__logo-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.1;
}

.footer__logo-name small {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

.footer__tagline {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer__contacts { display: flex; flex-direction: column; gap: 0.5rem; }

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    transition: color var(--transition);
}

.footer__contact-item:hover { color: var(--gold); }

.footer__col-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.2rem;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer__links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}

.footer__links a:hover { color: var(--gold); }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
}

.footer__copy { color: rgba(255,255,255,0.4); }

.footer__legal {
    display: flex;
    gap: 1.5rem;
}

.footer__legal a {
    color: rgba(255,255,255,0.4);
    transition: color var(--transition);
}

.footer__legal a:hover { color: var(--gold); }

.footer__socials {
    display: flex;
    gap: 0.6rem;
}

.footer__social-btn {
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.07);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all var(--transition);
    color: rgba(255,255,255,0.6);
}

.footer__social-btn:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .support__grid { grid-template-columns: repeat(2, 1fr); }
    .process__steps { grid-template-columns: repeat(2, 1fr); }
    .process__steps::before { display: none; }
}

@media (max-width: 768px) {
    section { padding: 3.5rem 0; }

    .navbar__nav { display: none; }
    .navbar__nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--white);
        padding: 1.5rem;
        gap: 1rem;
        box-shadow: var(--shadow-md);
        border-top: 1px solid var(--border);
    }

    .navbar__hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 4px;
    }
    .navbar__hamburger span {
        display: block;
        width: 22px; height: 2px;
        background: var(--navy);
        border-radius: 2px;
        transition: all var(--transition);
    }

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

    .hero__image-wrap { order: -1; }
    .hero__image-wrap img { max-width: 360px; margin: 0 auto; }

    .support__grid { grid-template-columns: 1fr; }
    .process__steps { grid-template-columns: 1fr; }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .newsletter__inner { flex-direction: column; }
    .newsletter__form { max-width: 100%; width: 100%; }
}

@media (min-width: 769px) {
    .navbar__hamburger { display: none; }
}
