/* ============================================================
   INCLUFI — LANDING PAGE STYLES
   css/style.css
   ============================================================ */

/* ==============================
   RESET & CUSTOM PROPERTIES
   ============================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --c-green:       #1B5E20;
    --c-green-mid:   #2E7D32;
    --c-green-light: #43A047;
    --c-green-pale:  #E8F5E9;
    --c-gold:        #F9A825;
    --c-gold-light:  #FDD835;
    --c-gold-pale:   #FFF8E1;
    --c-gold-warm:   #FFF3E0;
    --c-teal:        #006064;
    --c-teal-light:  #00838F;
    --c-dark:        #0A1F0D;
    --c-text:        #1C2E1F;
    --c-text-mid:    #3D5C42;
    --c-text-muted:  #6B8C70;
    --c-bg:          #F9FAF7;
    --c-bg-warm:     #FBF8F2;
    --c-white:       #FFFFFF;
    --c-border:      rgba(27, 94, 32, 0.11);
    --c-border-gold: rgba(249, 168, 37, 0.22);
    --shadow-sm:  0 2px 12px rgba(10, 31, 13, 0.06);
    --shadow:     0 4px 24px rgba(10, 31, 13, 0.10);
    --shadow-lg:  0 16px 60px rgba(10, 31, 13, 0.14);
    --shadow-xl:  0 32px 80px rgba(10, 31, 13, 0.18);
    --font: 'Manrope', sans-serif;
    --radius-sm: 8px;
    --radius:    14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
    --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--c-bg);
    color: var(--c-text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font); cursor: pointer; border: none; outline: none; background: none; }

/* ==============================
   TYPOGRAPHY
   ============================== */
.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #b07a08;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--c-gold);
    border-radius: 2px;
    flex-shrink: 0;
}

/* ==============================
   LAYOUT
   ============================== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }

/* ==============================
   BUTTONS
   ============================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font);
    transition: all var(--transition);
    cursor: pointer;
    line-height: 1;
}
.btn-primary { background: var(--c-gold); color: var(--c-dark); }
.btn-primary:hover { background: var(--c-gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,168,37,0.38); }
.btn-outline { background: transparent; color: var(--c-white); border: 2px solid rgba(255,255,255,0.32); }
.btn-outline:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.60); }
.btn-green { background: var(--c-green); color: var(--c-white); }
.btn-green:hover { background: var(--c-green-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27,94,32,0.32); }
.btn-ghost { background: transparent; color: var(--c-green); border: 2px solid var(--c-border); }
.btn-ghost:hover { border-color: var(--c-green); background: var(--c-green-pale); }
.btn-gold { background: var(--c-gold); color: var(--c-dark); }
.btn-gold:hover { background: var(--c-gold-light); transform: translateY(-2px); }

/* ==============================
   NAVIGATION
   ============================== */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 22px 0;
    transition: background 0.45s ease, padding 0.45s ease, box-shadow 0.45s ease;
}
nav.scrolled {
    background: rgba(249,250,247,0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 1px 0 var(--c-border), var(--shadow-sm);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.nav-logo {
    font-family: var(--font);
    font-weight: 800;
    font-size: 22px;
    color: var(--c-white);
    letter-spacing: -0.02em;
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-icon {
    width: 34px; height: 34px; background: var(--c-gold); border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 800; color: var(--c-dark);
    flex-shrink: 0;
}
nav.scrolled .nav-logo { color: var(--c-dark); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.75); transition: color var(--transition); }
nav.scrolled .nav-links a { color: var(--c-text-mid); }
.nav-links a:hover { color: var(--c-white); }
nav.scrolled .nav-links a:hover { color: var(--c-green); }
.nav-cta {
    background: var(--c-gold) !important;
    color: var(--c-dark) !important;
    padding: 10px 22px !important;
    border-radius: 100px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    transition: all var(--transition) !important;
}
.nav-cta:hover { background: var(--c-gold-light) !important; transform: translateY(-1px); }
.nav-menu-btn {
    display: none;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.nav-menu-btn span {
    display: block; width: 24px; height: 2px;
    background: var(--c-white); border-radius: 2px; transition: all var(--transition);
}
nav.scrolled .nav-menu-btn span { background: var(--c-dark); }

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed; inset: 0;
    background: var(--c-dark);
    z-index: 200;
    padding: 24px;
    flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.mobile-logo { font-weight: 800; font-size: 20px; color: white; display: flex; align-items: center; gap: 10px; }
.mobile-menu-close { color: var(--c-white); font-size: 28px; cursor: pointer; line-height: 1; background: none; border: none; }
.mobile-menu-links { list-style: none; display: flex; flex-direction: column; margin-top: 28px; }
.mobile-menu-links a {
    display: block; padding: 18px 0;
    font-size: 24px; font-weight: 800; color: var(--c-white);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: color var(--transition);
}
.mobile-menu-links a:hover { color: var(--c-gold); }

/* ==============================
   HERO
   ============================== */
.hero {
    background: var(--c-dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg svg { width: 100%; height: 100%; object-fit: cover; }
.hero-gradient {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 60% 50%, rgba(27,94,32,0.22) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 80% 20%, rgba(249,168,37,0.07) 0%, transparent 60%),
        linear-gradient(160deg, rgba(10,31,13,0.97) 0%, rgba(0,40,10,0.88) 100%);
    z-index: 1;
}
.hero-inner {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
}
.hero-content { max-width: 560px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(249,168,37,0.10); border: 1px solid rgba(249,168,37,0.22);
    border-radius: 100px; padding: 7px 18px 7px 12px;
    font-size: 12px; font-weight: 700; color: var(--c-gold);
    margin-bottom: 28px; letter-spacing: 0.02em;
}
.hero-badge-dot {
    width: 6px; height: 6px; background: var(--c-gold);
    border-radius: 50%; animation: pulsedot 2s ease infinite;
}
@keyframes pulsedot {
    0%,100% { opacity:1; transform:scale(1); }
    50% { opacity:.5; transform:scale(.7); }
}
.hero h1 {
    font-family: var(--font);
    font-weight: 800;
    font-size: clamp(40px, 5vw, 66px);
    color: var(--c-white);
    margin-bottom: 24px;
    line-height: 1.04;
    letter-spacing: -0.03em;
}
.hero h1 .accent { color: var(--c-gold); display: block; }
.hero-sub {
    font-size: 17px; color: rgba(255,255,255,0.60);
    line-height: 1.72; margin-bottom: 40px; font-weight: 300;
}
.hero-sub strong { color: rgba(255,255,255,0.90); font-weight: 600; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-trust {
    margin-top: 48px; padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.07);
    display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.hero-trust-label {
    font-size: 11px; color: rgba(255,255,255,0.32);
    font-weight: 600; text-transform: uppercase; letter-spacing: 0.10em;
}
.hero-trust-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.trust-badge {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
    border-radius: var(--radius-sm); padding: 6px 14px;
    font-size: 12px; color: rgba(255,255,255,0.55); font-weight: 500;
}

/* Phone Mockup */
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.phone-mockup {
    width: 275px; background: #0E1F11; border-radius: 44px;
    border: 2px solid rgba(255,255,255,0.09); overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.05), inset 0 1px 0 rgba(255,255,255,0.08);
    position: relative; animation: phonefloat 6s ease-in-out infinite;
}
@keyframes phonefloat { 0%,100%{transform:translateY(0) rotate(-1.5deg)} 50%{transform:translateY(-14px) rotate(-.5deg)} }
.phone-notch { height: 28px; background: #0E1F11; display: flex; align-items: center; justify-content: center; }
.phone-notch-inner { width: 90px; height: 18px; background: #172b1a; border-radius: 0 0 12px 12px; }
.phone-screen { padding: 16px; background: linear-gradient(160deg, #0D2B12 0%, #091a0c 100%); }
.app-header-sm { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.app-user { font-size: 11px; color: rgba(255,255,255,0.50); }
.app-user-name { font-weight: 700; color: var(--c-white); font-size: 13px; }
.app-notif { width: 28px; height: 28px; background: rgba(249,168,37,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; }
.credit-ring-container { display: flex; justify-content: center; margin: 10px 0; position: relative; }
.credit-ring-svg { width: 96px; height: 96px; }
.credit-ring-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; }
.credit-score-num { font-family: var(--font); font-size: 22px; font-weight: 800; color: var(--c-white); display: block; line-height: 1; }
.credit-score-label { font-size: 8px; color: rgba(255,255,255,0.40); text-transform: uppercase; letter-spacing: 0.05em; }
.loan-progress-card { background: rgba(255,255,255,0.05); border-radius: 13px; padding: 12px; margin-bottom: 10px; }
.loan-card-label { font-size: 9px; color: rgba(255,255,255,0.40); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.05em; }
.loan-amounts { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.loan-amount-num { font-family: var(--font); font-size: 16px; font-weight: 800; color: var(--c-white); }
.loan-amount-total { font-size: 10px; color: rgba(255,255,255,0.35); }
.loan-bar { height: 5px; background: rgba(255,255,255,0.08); border-radius: 10px; overflow: hidden; }
.loan-bar-fill { height: 100%; background: linear-gradient(90deg, var(--c-green-light), var(--c-gold)); border-radius: 10px; width: 0; animation: bargrow 2.5s 0.5s ease forwards; }
@keyframes bargrow { to { width: 78%; } }
.group-section { margin-top: 10px; }
.group-label-sm { font-size: 9px; color: rgba(255,255,255,0.40); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.group-members { display: flex; gap: 6px; align-items: center; }
.member-avatar { width: 28px; height: 28px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; color: var(--c-white); }
.av1{background:#2E7D32} .av2{background:#006064} .av3{background:#4527A0} .av4{background:#BF360C}
.av-empty { background: rgba(255,255,255,0.05); border-style: dashed; }
.member-count { font-size: 9px; color: rgba(255,255,255,0.35); margin-left: 3px; }
.next-payment {
    background: rgba(249,168,37,0.08); border: 1px solid rgba(249,168,37,0.16);
    border-radius: 10px; padding: 10px 12px; margin-top: 10px;
    display: flex; justify-content: space-between; align-items: center;
}
.next-pay-label { font-size: 9px; color: rgba(255,255,255,0.40); }
.next-pay-amount { font-weight: 800; color: var(--c-gold); font-size: 13px; }
.next-pay-date { font-size: 9px; color: rgba(255,255,255,0.30); }
.phone-glow {
    position: absolute; width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(27,94,32,0.18) 0%, transparent 70%);
    border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%,-50%);
    z-index: -1; pointer-events: none;
}

/* ==============================
   STATS BAR
   ============================== */
.stats-bar { background: var(--c-green); }
.stats-inner { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { padding: 32px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,0.09); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font); font-size: 32px; font-weight: 800; color: var(--c-white); margin-bottom: 4px; display: block; }
.stat-num .accent { color: var(--c-gold); }
.stat-desc { font-size: 12px; color: rgba(255,255,255,0.60); line-height: 1.4; }

/* ==============================
   PROBLEM SECTION
   ============================== */
.problem-section { background: var(--c-bg-warm); position: relative; overflow: hidden; }
.problem-section::before {
    content: ''; position: absolute; top: 0; right: 0; width: 45%; height: 100%; opacity: 0.4;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg opacity='0.05'%3E%3Crect x='38' y='4' width='24' height='92' fill='%231B5E20' rx='4'/%3E%3Crect x='4' y='38' width='92' height='24' fill='%231B5E20' rx='4'/%3E%3Cpath d='M50 24 L76 50 L50 76 L24 50 Z' fill='%23F9A825'/%3E%3C/g%3E%3C/svg%3E") repeat;
}
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.problem-content h2 { font-size: clamp(28px,4vw,46px); color: var(--c-dark); margin-bottom: 20px; font-weight: 800; }
.problem-content p { font-size: 16px; color: var(--c-text-muted); line-height: 1.82; margin-bottom: 18px; }
.problem-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.pill {
    background: var(--c-white); border: 1px solid var(--c-border); border-radius: 100px;
    padding: 8px 18px; font-size: 13px; font-weight: 600; color: var(--c-text-mid);
    display: flex; align-items: center; gap: 7px;
}
.pill-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.dot-red    { background:#E53935; }
.dot-orange { background:#FB8C00; }
.dot-blue   { background:#1976D2; }
.dot-purple { background:#7B1FA2; }
.pain-cards { display: flex; flex-direction: column; gap: 16px; position: relative; z-index: 2; }
.pain-card {
    background: var(--c-white); border-radius: var(--radius); padding: 24px;
    box-shadow: var(--shadow-sm); border: 1px solid var(--c-border);
    display: flex; gap: 16px; align-items: flex-start; transition: all var(--transition);
}
.pain-card:hover { transform: translateX(-5px); box-shadow: var(--shadow); }
.pain-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.pi-red    { background:#FFEBEE; }
.pi-orange { background:#FFF3E0; }
.pi-blue   { background:#E3F2FD; }
.pain-card-title { font-weight: 700; margin-bottom: 4px; font-size: 15px; color: var(--c-dark); }
.pain-card-desc { font-size: 13px; color: var(--c-text-muted); line-height: 1.65; }

/* ==============================
   HOW IT WORKS
   ============================== */
.how-section { background: var(--c-dark); position: relative; overflow: hidden; }
.how-bg {
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg opacity='0.025'%3E%3Crect x='30' y='3' width='20' height='74' fill='%23F9A825' rx='3'/%3E%3Crect x='3' y='30' width='74' height='20' fill='%23F9A825' rx='3'/%3E%3Cpath d='M40 20 L60 40 L40 60 L20 40 Z' fill='%23F9A825'/%3E%3C/g%3E%3C/svg%3E") repeat;
}
.how-section .section-label { color: var(--c-gold); justify-content: center; }
.how-section .section-label::before { background: var(--c-gold); }
.how-header { text-align: center; margin-bottom: 72px; position: relative; z-index: 2; }
.how-header h2 { color: var(--c-white); font-size: clamp(28px,4vw,50px); font-weight: 800; }
.how-header p { color: rgba(255,255,255,0.50); font-size: 17px; margin-top: 16px; max-width: 480px; margin-left: auto; margin-right: auto; }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; position: relative; z-index: 2; }
.step-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-lg); padding: 32px 22px; position: relative;
    transition: all var(--transition); text-align: center; overflow: hidden;
}
.step-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(249,168,37,0.28); transform: translateY(-5px); }
.step-num {
    font-family: var(--font); font-size: 72px; font-weight: 800;
    color: var(--c-gold); line-height: 1;
    position: absolute; top: 10px; right: 14px;
}
.step-icon {
    width: 56px; height: 56px; background: rgba(249,168,37,0.10);
    border: 1px solid rgba(249,168,37,0.18); border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin: 0 auto 20px; position: relative; z-index: 2;
}
.step-title { font-family: var(--font); font-size: 17px; font-weight: 800; color: var(--c-white); margin-bottom: 10px; }
.step-desc { font-size: 13px; color: rgba(255,255,255,0.50); line-height: 1.68; }
.step-tag {
    display: inline-block; margin-top: 16px;
    background: rgba(27,94,32,0.28); border: 1px solid rgba(27,94,32,0.45);
    border-radius: 100px; padding: 4px 12px; font-size: 11px; font-weight: 600;
    color: rgba(255,255,255,0.55);
}

/* ==============================
   SPLIT SECTION (Borrowers / Lenders)
   ============================== */
.split-section { background: var(--c-white); }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; }
.split-col { padding: 72px 48px; }
.split-col:first-child { background: var(--c-green-pale); border-right: 1px solid var(--c-border); }
.split-col:last-child { background: linear-gradient(135deg, #E0F7FA 0%, #B2EBF2 40%, #E0F7FA 100%); }
.split-icon { font-size: 40px; margin-bottom: 24px; }
.split-col h3 { font-family: var(--font); font-size: 28px; font-weight: 800; color: var(--c-dark); margin-bottom: 14px; }
.split-col p { font-size: 15px; color: var(--c-text-muted); line-height: 1.80; margin-bottom: 28px; }
.split-benefits { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.split-benefits li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--c-text-mid); line-height: 1.5; }
.bcheck { width: 20px; height: 20px; background: var(--c-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; font-size: 11px; color: white; font-weight: 700; }
.bcheck-teal { background: var(--c-teal); }

/* ==============================
   WOMEN FOCUS SECTION
   ============================== */
.women-section {
    background: linear-gradient(160deg, var(--c-gold-pale) 0%, var(--c-gold-warm) 60%, var(--c-gold-pale) 100%);
    position: relative;
    overflow: hidden;
}
.women-section::before {
    content: '';
    position: absolute; inset: 0; pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Ccircle cx='30' cy='30' r='20' fill='none' stroke='%23F9A825' stroke-width='1' opacity='0.18'/%3E%3Ccircle cx='30' cy='30' r='10' fill='none' stroke='%23F9A825' stroke-width='1' opacity='0.12'/%3E%3C/svg%3E") repeat;
}
.women-header { text-align: center; margin-bottom: 64px; position: relative; z-index: 2; }
.women-header .section-label { justify-content: center; color: #8B5E00; }
.women-header .section-label::before { background: #D4880A; }
.women-header h2 {
    font-family: var(--font);
    font-size: clamp(30px,4vw,52px);
    font-weight: 800;
    color: var(--c-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.10;
}
.women-header p {
    font-size: 17px; color: #5A3E00; line-height: 1.78;
    max-width: 620px; margin: 0 auto;
}

/* Women Stats */
.women-stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
    margin-bottom: 64px;
    position: relative; z-index: 2;
}
.women-stat {
    background: var(--c-white);
    border: 1px solid rgba(249,168,37,0.22);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(180,120,0,0.08);
    transition: all var(--transition);
}
.women-stat:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(180,120,0,0.14); border-color: var(--c-gold); }
.ws-num {
    font-family: var(--font);
    font-size: 42px;
    font-weight: 800;
    color: var(--c-gold);
    display: block;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}
.ws-label { font-size: 13px; color: #5A3E00; line-height: 1.5; font-weight: 500; }

/* Women Two-Column */
.women-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 56px;
    position: relative; z-index: 2;
}
.women-col {
    background: var(--c-white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    border: 1px solid rgba(249,168,37,0.18);
}
.women-col-icon { font-size: 36px; margin-bottom: 16px; }
.women-col h3 { font-family: var(--font); font-size: 22px; font-weight: 800; color: var(--c-dark); margin-bottom: 16px; }
.women-items { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.women-items li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: #4A3000; line-height: 1.6; }
.women-items .wi-icon {
    width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; margin-top: 1px;
}
.wi-red   { background: #FFEBEE; }
.wi-green { background: #E8F5E9; }

/* Women Leadership */
.women-leadership {
    text-align: center;
    margin-bottom: 48px;
    position: relative; z-index: 2;
}
.women-leadership h3 { font-family: var(--font); font-size: 20px; font-weight: 800; color: var(--c-dark); margin-bottom: 8px; }
.women-leadership p { font-size: 14px; color: #5A3E00; margin-bottom: 28px; }
.women-leaders { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.women-leader {
    background: var(--c-white);
    border: 1px solid rgba(249,168,37,0.22);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 240px;
    transition: all var(--transition);
}
.women-leader:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(180,120,0,0.12); }
.wl-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 16px; color: white; flex-shrink: 0;
}
.wl-1 { background: linear-gradient(135deg,#1B5E20,#43A047); }
.wl-2 { background: linear-gradient(135deg,#006064,#00ACC1); }
.wl-3 { background: linear-gradient(135deg,#4A148C,#7B1FA2); }
.wl-name { font-weight: 700; font-size: 14px; color: var(--c-dark); }
.wl-role { font-size: 11px; color: #8B5E00; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; }

/* UNICEF Callout */
.unicef-callout {
    background: linear-gradient(135deg, #0A1F0D 0%, #102215 100%);
    border-radius: var(--radius-xl);
    padding: 36px 40px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    position: relative; z-index: 2;
    border: 1px solid rgba(249,168,37,0.15);
}
.unicef-icon { font-size: 40px; flex-shrink: 0; margin-top: 4px; }
.unicef-content h4 { font-family: var(--font); font-size: 20px; font-weight: 800; color: var(--c-white); margin-bottom: 10px; }
.unicef-content p { font-size: 14px; color: rgba(255,255,255,0.60); line-height: 1.72; margin-bottom: 16px; }
.unicef-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.unicef-tag {
    background: rgba(249,168,37,0.12); border: 1px solid rgba(249,168,37,0.22);
    border-radius: 100px; padding: 5px 14px;
    font-size: 12px; font-weight: 700; color: var(--c-gold);
}

/* ==============================
   MISSION SECTION
   ============================== */
.mission-section {
    background: linear-gradient(135deg, #E8F5E9 0%, #F0F4E8 50%, #E8F5F0 100%);
    position: relative; overflow: hidden;
}
.mission-section::before {
    content: ''; position: absolute; inset: 0; opacity: 0.35;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Ccircle cx='60' cy='60' r='40' fill='none' stroke='%231B5E20' stroke-width='1' opacity='0.08'/%3E%3Ccircle cx='60' cy='60' r='60' fill='none' stroke='%231B5E20' stroke-width='1' opacity='0.05'/%3E%3C/svg%3E") repeat;
}
.mission-inner { text-align: center; max-width: 720px; margin: 0 auto; position: relative; z-index: 2; }
.mission-inner h2 { font-family: var(--font); font-size: clamp(26px,4vw,46px); font-weight: 800; color: var(--c-dark); margin-bottom: 20px; }
.mission-inner p { font-size: 17px; color: var(--c-text-muted); line-height: 1.80; margin-bottom: 40px; }
.impact-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.impact-card { background: var(--c-white); border-radius: var(--radius); padding: 28px 20px; box-shadow: var(--shadow-sm); border: 1px solid var(--c-border); }
.impact-num { font-family: var(--font); font-size: 34px; font-weight: 800; color: var(--c-green); display: block; margin-bottom: 6px; }
.impact-desc { font-size: 13px; color: var(--c-text-muted); line-height: 1.5; }

/* ==============================
   TEAM SECTION
   ============================== */
.team-section { background: var(--c-white); }
.team-header { text-align: center; margin-bottom: 56px; }
.team-header h2 { font-family: var(--font); font-size: clamp(26px,3vw,42px); font-weight: 800; color: var(--c-dark); margin-bottom: 12px; }
.team-header p { font-size: 16px; color: var(--c-text-muted); max-width: 520px; margin: 0 auto; }
.team-header .section-label { justify-content: center; }

/* Founder Cards */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.team-card { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--c-border); transition: all var(--transition); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card-top { height: 200px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.tc-1 .team-card-top { background: linear-gradient(135deg,#1B5E20,#43A047); }
.tc-2 .team-card-top { background: linear-gradient(135deg,#006064,#00ACC1); }
.tc-3 .team-card-top { background: linear-gradient(135deg,#4A148C,#7B1FA2); }
.team-avatar {
    width: 88px; height: 88px; border-radius: 50%;
    background: rgba(255,255,255,0.14); border: 3px solid rgba(255,255,255,0.28);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font); font-size: 24px; font-weight: 800; color: var(--c-white);
    position: relative; z-index: 2;
}
.team-card-bg {
    position: absolute; inset: 0; opacity: 0.09;
    background-size: 80px 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Crect x='30' y='3' width='20' height='74' fill='white' rx='3'/%3E%3Crect x='3' y='30' width='74' height='20' fill='white' rx='3'/%3E%3Cpath d='M40 20 L60 40 L40 60 L20 40 Z' fill='white'/%3E%3C/svg%3E");
}
.team-card-body { padding: 24px; background: var(--c-bg); }
.team-name { font-family: var(--font); font-size: 18px; font-weight: 800; color: var(--c-dark); margin-bottom: 4px; }
.team-role { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.tc-1 .team-role { color: var(--c-green); }
.tc-2 .team-role { color: var(--c-teal); }
.tc-3 .team-role { color: #7B1FA2; }
.team-bio { font-size: 13px; color: var(--c-text-muted); line-height: 1.68; }

/* See More Button */
.team-toggle-wrap { text-align: center; margin-top: 36px; }
.team-toggle-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px;
    background: var(--c-white); border: 2px solid var(--c-border);
    border-radius: 100px; font-family: var(--font);
    font-size: 15px; font-weight: 700; color: var(--c-text-mid);
    cursor: pointer; transition: all var(--transition);
}
.team-toggle-btn:hover { border-color: var(--c-green); color: var(--c-green); background: var(--c-green-pale); }
.team-toggle-btn svg { transition: transform 0.3s ease; }
.team-toggle-btn.open svg { transform: rotate(180deg); }

/* Additional Team Members (hidden by default) */
.team-more-section {
    display: none;
    margin-top: 28px;
}
.team-more-section.visible {
    display: block;
    animation: revealTeam 0.5s var(--ease-out) both;
}
@keyframes revealTeam {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.team-more-label {
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--c-text-muted); margin-bottom: 20px; display: flex; align-items: center; gap: 12px;
}
.team-more-label::before, .team-more-label::after {
    content: ''; flex: 1; height: 1px; background: var(--c-border);
}
.team-grid-sm { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.team-card-sm { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--c-border); background: var(--c-bg); transition: all var(--transition); }
.team-card-sm:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(27,94,32,0.20); }
.tc-sm-top { height: 100px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.tc-4 .tc-sm-top { background: linear-gradient(135deg,#1A237E,#3949AB); }
.tc-5 .tc-sm-top { background: linear-gradient(135deg,#004D40,#00897B); }
.tc-6 .tc-sm-top { background: linear-gradient(135deg,#BF360C,#E64A19); }
.tc-7 .tc-sm-top { background: linear-gradient(135deg,#263238,#455A64); }
.tc-8 .tc-sm-top { background: linear-gradient(135deg,#3E0068,#7C3AED); }
.tc-9 .tc-sm-top { background: linear-gradient(135deg,#0C2340,#0369A1); }
.tc-advisor-tag {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 10px; font-weight: 700; letter-spacing: 0.10em;
    text-transform: uppercase; color: var(--c-gold);
    background: rgba(249,168,37,0.10); border: 1px solid rgba(249,168,37,0.22);
    border-radius: 100px; padding: 3px 10px; margin-bottom: 6px;
}
.team-avatar-sm {
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(255,255,255,0.14); border: 2px solid rgba(255,255,255,0.25);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font); font-size: 16px; font-weight: 800; color: var(--c-white);
    position: relative; z-index: 2;
}
.tc-sm-body { padding: 16px; }
.tc-sm-name { font-family: var(--font); font-size: 15px; font-weight: 800; color: var(--c-dark); margin-bottom: 3px; }
.tc-sm-role { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 8px; color: var(--c-text-muted); }
.tc-sm-bio { font-size: 12px; color: var(--c-text-muted); line-height: 1.6; }

/* ==============================
   RECOGNITION
   ============================== */
.recognition-section { background: var(--c-bg); text-align: center; }
.recognition-section .section-label { justify-content: center; }
.rec-header h2 { font-family: var(--font); font-size: clamp(22px,3vw,36px); font-weight: 800; color: var(--c-dark); margin-bottom: 8px; }
.rec-header p { font-size: 15px; color: var(--c-text-muted); margin-bottom: 48px; }
.recognition-badges { display: flex; justify-content: center; align-items: center; gap: 20px; flex-wrap: wrap; }
.rec-badge {
    background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--radius-lg);
    padding: 24px 28px; display: flex; flex-direction: column; align-items: center;
    gap: 10px; min-width: 170px; transition: all var(--transition);
}
.rec-badge:hover { border-color: var(--c-gold); box-shadow: 0 0 0 1px var(--c-border-gold), var(--shadow); transform: translateY(-3px); }
.rec-badge-icon { font-size: 32px; }
.rec-badge-title { font-weight: 800; font-size: 14px; color: var(--c-dark); text-align: center; }
.rec-badge-sub { font-size: 12px; color: var(--c-text-muted); text-align: center; line-height: 1.4; }

/* ==============================
   CTA SECTION
   ============================== */
.cta-section { background: var(--c-green); position: relative; overflow: hidden; }
.cta-bg {
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg opacity='0.05'%3E%3Crect x='37' y='3' width='26' height='94' fill='white' rx='4'/%3E%3Crect x='3' y='37' width='94' height='26' fill='white' rx='4'/%3E%3Cpath d='M50 25 L75 50 L50 75 L25 50 Z' fill='white'/%3E%3C/g%3E%3C/svg%3E") repeat;
}
.cta-inner { text-align: center; position: relative; z-index: 2; }
.cta-inner h2 { font-family: var(--font); font-size: clamp(28px,5vw,54px); font-weight: 800; color: var(--c-white); margin-bottom: 16px; letter-spacing: -0.02em; }
.cta-inner p { font-size: 17px; color: rgba(255,255,255,0.70); margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-section .section-label { justify-content: center; color: rgba(255,255,255,0.55); }
.cta-section .section-label::before { background: rgba(255,255,255,0.40); }

/* ==============================
   FOOTER
   ============================== */
footer { background: var(--c-dark); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { font-family: var(--font); font-size: 22px; font-weight: 800; color: var(--c-white); display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-icon { width: 32px; height: 32px; background: var(--c-gold); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; color: var(--c-dark); flex-shrink: 0; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.38); line-height: 1.80; max-width: 280px; }
.footer-col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.13em; color: rgba(255,255,255,0.30); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.50); transition: color var(--transition); }
.footer-col a:hover { color: var(--c-gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.26); }
.footer-bottom .gold { color: var(--c-gold); }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.20); display: flex; align-items: center; gap: 8px; }
.footer-tagline .xrp { color: var(--c-gold); }

/* ==============================
   SCROLL ANIMATIONS (Bidirectional)
   ============================== */
.fade-elem {
    opacity: 0;
    transform: translateY(36px);
    transition:
        opacity  0.65s var(--ease-out),
        transform 0.65s var(--ease-out);
}
/* When element was above viewport (scrolled past going up) */
.fade-elem.from-above { transform: translateY(-36px); }
/* Visible state */
.fade-elem.is-visible { opacity: 1; transform: translateY(0) !important; }

/* Transition delays for staggered groups */
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
    .steps-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .women-stats { grid-template-columns: repeat(2,1fr); }
    .team-grid-sm { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-menu-btn { display: flex; }
    .section-pad { padding: 64px 0; }
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { order: -1; }
    .phone-mockup { width: 240px; }
    .stats-inner { grid-template-columns: repeat(2,1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .problem-grid { grid-template-columns: 1fr; gap: 40px; }
    .steps-grid { grid-template-columns: 1fr; }
    .split-grid { grid-template-columns: 1fr; }
    .split-col { padding: 48px 24px; }
    .women-stats { grid-template-columns: 1fr 1fr; }
    .women-grid { grid-template-columns: 1fr; }
    .women-leaders { flex-direction: column; align-items: center; }
    .unicef-callout { flex-direction: column; padding: 28px 24px; }
    .impact-metrics { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .team-grid-sm { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero-ctas { flex-direction: column; max-width: 280px; }
    .btn { width: 100%; justify-content: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
    .women-stats { grid-template-columns: 1fr; }
    .team-grid-sm { grid-template-columns: 1fr; }
    .women-leaders .women-leader { width: 100%; }
}
