@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/fonts/DMSans-Bold.woff2') format('woff2');
}

/* RESET & BASE */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
:root {
    --green-dark: #1E7B23;
    --green-mid: #2E8B35;
    --green-light: #4CAF50;
    --green-pale: #E8F5E9;
    --accent: #FF8C00;
    --white: #fff;
    --gray-50: #F5F5F5;
    --gray-100: #EEEEEE;
    --gray-200: #E0E0E0;
    --gray-500: #616161;
    --gray-700: #424242;
    --gray-900: #212121;
    --border-subtle: rgba(0,0,0,0.06);
    --green-glow: rgba(30,123,35,0.12);
    --shadow-sm: 0 1px 3px rgba(30,123,35,0.06), 0 1px 2px rgba(0,0,0,0.03);
    --shadow-md: 0 4px 16px rgba(30,123,35,0.10), 0 1px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 8px 32px rgba(30,123,35,0.14), 0 2px 8px rgba(0,0,0,0.05);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: var(--white); color: var(--gray-900); -webkit-font-smoothing: antialiased; font-size: 16px; line-height: 1.75; letter-spacing: -0.01em; }
h1, h2, h3, h4 { font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif; font-weight: 700; letter-spacing: -0.035em; line-height: 1.15; }
a { color: var(--green-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--green-mid); }
a:focus-visible { outline: 3px solid var(--green-light); outline-offset: 2px; border-radius: 4px; }
button:focus-visible, input:focus-visible, select:focus-visible { outline: 3px solid var(--green-light); outline-offset: 2px; }
img { max-width: 100%; height: auto; }

/* SKIP LINK */
.skip-link { position: absolute; top: -100px; left: 16px; background: var(--green-dark); color: var(--white); padding: 12px 24px; border-radius: 0 0 8px 8px; z-index: 10000; font-weight: 600; }
.skip-link:focus { top: 0; }

/* NAV */
.top-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(33,33,33,0.97); backdrop-filter: blur(12px); padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 56px; transform: translateY(-100%); transition: transform 0.3s ease; border-bottom: 1px solid rgba(255,255,255,0.06); }
.top-nav.visible { transform: translateY(0); }
.nav-logo { display: flex; align-items: center; gap: 10px; color: #fff; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 15px; text-decoration: none; }
.nav-logo img { width: 32px; height: 32px; border-radius: 50%; }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav-cta { background: var(--green-dark) !important; color: #fff !important; padding: 7px 22px; border-radius: 50px; font-weight: 600 !important; font-size: 13px !important; letter-spacing: 0.01em; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--green-mid) !important; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; margin: 5px 0; transition: transform 0.3s, opacity 0.3s; }

/* MOBILE NAV OVERLAY */
.mobile-nav { display: none; position: fixed; inset: 0; z-index: 999; background: rgba(33,33,33,0.98); flex-direction: column; align-items: center; justify-content: center; gap: 28px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { color: #fff; font-size: 20px; font-weight: 600; text-decoration: none; }
.mobile-nav .nav-cta { background: var(--green-dark); padding: 14px 40px; border-radius: 14px; font-size: 18px; }
.mobile-close { position: absolute; top: 18px; right: 20px; background: none; border: none; color: #fff; font-size: 32px; cursor: pointer; padding: 8px; }

/* SCROLL PROGRESS */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--green-dark), var(--green-light)); z-index: 1001; width: 0; transition: width 0.1s linear; }

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 80%, rgba(30,123,35,0.4) 0%, transparent 50%), radial-gradient(ellipse at 70% 20%, rgba(0,0,0,0.15) 0%, transparent 40%), linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.45) 50%, rgba(30,123,35,0.5) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 24px; max-width: 800px; }
.hero-logo { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 24px; border: 3px solid rgba(255,255,255,0.3); opacity: 0; transform: translateY(20px); animation: fadeUp 0.6s ease forwards; }
.hero h1 { font-size: 56px; color: var(--white); margin-bottom: 16px; letter-spacing: -0.04em; opacity: 0; transform: translateY(20px); animation: fadeUp 0.6s ease 0.15s forwards; }
.hero p { font-size: 19px; color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto 32px; line-height: 1.6; opacity: 0; transform: translateY(20px); animation: fadeUp 0.6s ease 0.3s forwards; }
.hero-cta { display: inline-block; padding: 18px 52px; background: var(--green-dark); color: var(--white); border-radius: 50px; font-size: 17px; font-weight: 700; font-family: 'DM Sans', sans-serif; text-decoration: none; box-shadow: 0 4px 24px rgba(30,123,35,0.35), 0 0 60px rgba(30,123,35,0.1); transition: transform 0.2s var(--ease-spring), background 0.2s; opacity: 0; transform: translateY(20px); animation: fadeUp 0.6s ease 0.45s forwards, glow-pulse 3s ease-in-out 1.5s infinite; }
.hero-cta:hover { transform: scale(1.05); background: var(--green-mid); color: var(--white); box-shadow: 0 8px 32px rgba(30,123,35,0.5), 0 0 80px rgba(30,123,35,0.2); }
.hero-cta:active { transform: scale(0.97); }
.hero-badges { display: flex; justify-content: center; gap: 16px; margin-top: 32px; flex-wrap: wrap; opacity: 0; transform: translateY(20px); animation: fadeUp 0.6s ease 0.6s forwards; }
.hero-badge { background: rgba(255,255,255,0.12); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.15); color: var(--white); padding: 6px 18px; border-radius: 50px; font-size: 13px; font-weight: 600; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes glow-pulse { 0%, 100% { box-shadow: 0 4px 24px rgba(30,123,35,0.35), 0 0 60px rgba(30,123,35,0.1); } 50% { box-shadow: 0 4px 32px rgba(30,123,35,0.5), 0 0 80px rgba(30,123,35,0.2); } }

/* HERO BOTTOM FADE */
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px; background: linear-gradient(to top, var(--white), transparent); z-index: 3; pointer-events: none; }

/* SECTIONS */
section { padding: 64px 24px; }
.container { max-width: 920px; margin: 0 auto; }
.section-eyebrow { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: var(--green-dark); margin-bottom: 10px; background: linear-gradient(90deg, var(--green-dark), var(--green-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-title { font-size: 40px; margin-bottom: 16px; letter-spacing: -0.04em; }
.section-subtitle { font-size: 16px; color: var(--gray-500); line-height: 1.75; margin-bottom: 32px; max-width: 680px; }
.bg-gray { background: var(--gray-50); }

/* ANSWER BLOCK (GEO) */
.answer-block { border-left: 3px solid var(--green-dark); padding: 20px 24px; background: linear-gradient(135deg, var(--green-pale), rgba(232,245,233,0.5)); border-radius: 0 var(--radius-md) var(--radius-md) 0; margin: 0 auto; max-width: 920px; box-shadow: var(--shadow-sm); }
.answer-block p { font-size: 17px; line-height: 1.7; color: var(--gray-700); }
.answer-section { padding: 48px 24px 0; }

/* STATS */
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.stat { text-align: center; padding: 32px 16px; background: linear-gradient(135deg, var(--green-dark), var(--green-mid)); border-radius: var(--radius-md); border: none; box-shadow: 0 4px 20px rgba(30,123,35,0.25); position: relative; overflow: hidden; }
.stat::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.1), transparent 70%); pointer-events: none; }
.stat-number { font-family: 'DM Sans', sans-serif; font-size: 40px; font-weight: 700; color: var(--white); -webkit-text-fill-color: var(--white); }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.8); margin-top: 4px; }

/* INFO GRID */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.info-card { background: var(--white); border-radius: var(--radius-md); padding: 28px 24px; border: 1px solid var(--border-subtle); border-left: 4px solid var(--green-dark); box-shadow: var(--shadow-sm); transition: box-shadow 0.3s var(--ease-smooth), transform 0.3s var(--ease-spring), border-color 0.3s var(--ease-smooth); }
.info-card:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 12px 28px rgba(30,123,35,0.16), 0 0 0 1px rgba(30,123,35,0.08); border-left-color: var(--green-light); }
.info-card:active { transform: scale(0.98); transition-duration: 0.1s; }
.info-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--green-dark); }
.info-card p { font-size: 15px; color: var(--gray-700); line-height: 1.6; }
.info-card ul { list-style: none; padding: 0; }
.info-card li { font-size: 15px; color: var(--gray-700); line-height: 1.5; padding: 6px 0 6px 24px; position: relative; }
.info-card li::before { content: '✓'; position: absolute; left: 0; color: var(--green-dark); font-weight: 700; }

/* STEPS */
.steps { display: flex; flex-direction: column; gap: 0; margin-top: 40px; position: relative; }
.steps::before { content: ''; position: absolute; left: 22px; top: 28px; bottom: 28px; width: 2px; background: linear-gradient(180deg, var(--green-dark), var(--green-pale)); }
.step { display: flex; gap: 20px; padding: 20px 0; position: relative; }
.step-num { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--green-dark), var(--green-mid)); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 16px; flex-shrink: 0; z-index: 1; box-shadow: 0 4px 12px rgba(30,123,35,0.25); }
.step-content h3 { font-size: 17px; margin-bottom: 4px; }
.step-content p { font-size: 15px; color: var(--gray-500); }

/* COMPARISON TABLE */
.compare-table { width: 100%; border-collapse: collapse; margin-top: 32px; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border-subtle); box-shadow: var(--shadow-sm); }
.compare-table th { background: linear-gradient(135deg, var(--green-dark), var(--green-mid)); color: var(--white); padding: 14px 20px; text-align: left; font-size: 14px; font-weight: 600; letter-spacing: 0.02em; }
.compare-table td { padding: 16px 20px; border-bottom: 1px solid var(--border-subtle); font-size: 14px; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) { background: #FAFAFA; }

/* USP CARDS */
.usp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.usp-card { background: var(--white); border-radius: var(--radius-md); padding: 32px 24px; text-align: center; border: 1px solid var(--border-subtle); box-shadow: var(--shadow-sm); transition: box-shadow 0.3s var(--ease-smooth), transform 0.3s var(--ease-spring), border-color 0.3s var(--ease-smooth); }
.usp-card:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 12px 28px rgba(30,123,35,0.16), 0 0 0 1px rgba(30,123,35,0.08); border-color: rgba(30,123,35,0.2); }
.usp-card:active { transform: scale(0.98); transition-duration: 0.1s; }
.usp-icon { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--green-dark), var(--green-mid)); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 24px; box-shadow: 0 4px 16px rgba(30,123,35,0.25); color: var(--white); }
.usp-card h3 { font-size: 17px; margin-bottom: 8px; }
.usp-card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* MAP */
.map-container { margin-top: 32px; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border-subtle); box-shadow: var(--shadow-sm); }
.map-container iframe { width: 100%; height: 300px; border: none; }

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 32px; }
.team-card { text-align: center; }
.team-photo { width: 160px; height: 160px; border-radius: 50%; object-fit: cover; object-position: top; margin: 0 auto 12px; display: block; border: 3px solid transparent; background: linear-gradient(var(--white), var(--white)) padding-box, linear-gradient(135deg, var(--green-dark), var(--green-light)) border-box; box-shadow: 0 4px 20px rgba(30,123,35,0.12); transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-smooth); }
.team-card:hover .team-photo { transform: scale(1.06) rotate(1deg); box-shadow: 0 12px 32px rgba(30,123,35,0.22); }
.team-name { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 16px; }
.team-role { font-size: 13px; color: var(--gray-500); margin-top: 2px; }
.team-quote { font-size: 13px; color: var(--gray-500); margin-top: 8px; line-height: 1.55; padding-left: 12px; border-left: 2px solid var(--green-pale); font-style: normal; }

/* SPOTLIGHT */
.spotlight { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center; margin-top: 32px; }
.spotlight-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.spotlight-img img { width: 100%; height: auto; display: block; }
.spotlight-text h3 { font-size: 24px; margin-bottom: 12px; color: var(--gray-900); }
.spotlight-text p { font-size: 15px; color: var(--gray-700); line-height: 1.75; margin-bottom: 16px; }
.spotlight-names { display: flex; gap: 24px; margin-top: 20px; }
.spotlight-person { display: flex; align-items: center; gap: 10px; }
.spotlight-badge { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--green-dark), var(--green-mid)); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 14px; box-shadow: 0 2px 8px rgba(30,123,35,0.2); }
.spotlight-info strong { font-size: 15px; display: block; }
.spotlight-info span { font-size: 13px; color: var(--gray-500); }

/* EARNINGS */
.earnings-hero { text-align: center; margin-bottom: 40px; }
.earnings-amount { font-family: 'DM Sans', sans-serif; font-size: 72px; font-weight: 700; background: linear-gradient(135deg, var(--green-dark), var(--green-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.1; }
.earnings-unit { font-size: 20px; color: var(--gray-500); font-weight: 400; -webkit-text-fill-color: var(--gray-500); }
.earnings-sub { font-size: 16px; color: var(--gray-500); margin-top: 8px; }
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 32px; }
.benefit { display: flex; align-items: flex-start; gap: 12px; padding: 16px; background: var(--white); border-radius: 12px; border: 1px solid var(--border-subtle); box-shadow: var(--shadow-sm); transition: box-shadow 0.3s var(--ease-smooth), transform 0.3s var(--ease-spring), border-color 0.3s var(--ease-smooth); }
.benefit:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(30,123,35,0.12), 0 0 0 1px rgba(30,123,35,0.06); border-color: rgba(30,123,35,0.18); }
.benefit-icon { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--green-dark), var(--green-mid)); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; box-shadow: 0 4px 12px rgba(30,123,35,0.2); color: var(--white); }
.benefit h4 { font-size: 15px; margin-bottom: 2px; }
.benefit p { font-size: 13px; color: var(--gray-500); line-height: 1.4; }

/* FAQ */
.faq-list { margin-top: 32px; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.06); }
.faq-question { width: 100%; text-align: left; background: none; border: none; padding: 22px 0; font-size: 15px; font-weight: 700; font-family: 'DM Sans', sans-serif; color: var(--gray-900); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color 0.2s ease; }
.faq-question:hover { color: var(--green-dark); }
.faq-chevron { width: 20px; height: 20px; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 0 0 20px; font-size: 14px; color: var(--gray-700); line-height: 1.7; }

/* FORM */
.form-section { background: radial-gradient(ellipse at 20% 50%, rgba(76,175,80,0.3), transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(30,123,35,0.2), transparent 50%), linear-gradient(135deg, var(--green-dark), var(--green-mid)); padding: 64px 24px; }
.form-section .section-title { color: var(--white); text-align: center; }
.form-section .section-subtitle { color: rgba(255,255,255,0.8); text-align: center; max-width: 500px; margin: 0 auto 32px; }
.form-badges { display: flex; justify-content: center; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.form-badge-urgency { background: var(--accent); color: var(--white); padding: 6px 16px; border-radius: 50px; font-size: 13px; font-weight: 700; }
.form-badge-social { background: rgba(255,255,255,0.15); color: var(--white); padding: 6px 16px; border-radius: 50px; font-size: 13px; }
.form-card { max-width: 480px; width: 100%; margin: 0 auto; background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px; box-shadow: 0 12px 48px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.06); }
.input-group { margin-bottom: 18px; }
.input-label { display: block; font-size: 14px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.input-field { width: 100%; padding: 16px 18px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); font-size: 16px; color: var(--gray-900); background: var(--gray-50); -webkit-appearance: none; font-family: inherit; transition: border-color 0.25s var(--ease-smooth), box-shadow 0.25s var(--ease-smooth), background 0.25s var(--ease-smooth); }
.input-field:focus { outline: none; border-color: var(--green-mid); background: var(--white); box-shadow: 0 0 0 4px rgba(30,123,35,0.08), 0 2px 8px rgba(30,123,35,0.06); }
.input-field::placeholder { color: var(--gray-500); }
.input-field.error { border-color: #e53935; }
.error-text { font-size: 13px; color: #e53935; margin-top: 4px; display: none; }
.error-text.show { display: block; }
.checkbox-group { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 18px; }
.checkbox-group input[type="checkbox"] { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--green-dark); flex-shrink: 0; }
.checkbox-group label { font-size: 14px; color: var(--gray-700); cursor: pointer; }
.checkbox-group label a { color: var(--green-dark); text-decoration: underline; }
.btn-submit { width: 100%; padding: 17px 32px; background: linear-gradient(135deg, var(--green-dark), var(--green-light)); color: var(--white); border: none; border-radius: 50px; font-size: 17px; font-weight: 700; font-family: 'DM Sans', sans-serif; cursor: pointer; box-shadow: 0 4px 15px rgba(30,123,35,0.3); -webkit-appearance: none; margin-top: 8px; position: relative; transition: transform 0.2s ease, opacity 0.2s ease; }
.btn-submit:hover { transform: translateY(-2px) scale(1.01); box-shadow: 0 8px 24px rgba(30,123,35,0.4), 0 0 60px rgba(30,123,35,0.15); }
.btn-submit:active { transform: scale(0.98); }
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-submit.loading .btn-text { visibility: hidden; }
.btn-submit.loading::after { content: ''; position: absolute; top: 50%; left: 50%; width: 22px; height: 22px; margin: -11px 0 0 -11px; border: 2.5px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-trust { display: flex; justify-content: center; gap: 16px; margin-top: 16px; flex-wrap: wrap; }
.form-trust span { font-size: 13px; color: var(--gray-500); }
.form-success { display: none; text-align: center; padding: 32px 0; }
.form-success.show { display: block; }
.form-success .check-circle { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--green-dark), var(--green-light)); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.form-success .check-circle svg { width: 32px; height: 32px; color: var(--white); }
.form-success h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.form-success p { font-size: 15px; color: var(--gray-500); }
.form-fields.hidden { display: none; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 32px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--green-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 20px; }
.contact-item h4 { font-size: 15px; margin-bottom: 2px; }
.contact-item p { font-size: 14px; color: var(--gray-500); }
.contact-item a { color: var(--green-dark); font-weight: 600; }
.social-links { display: flex; gap: 12px; margin-top: 8px; }
.social-link { width: 40px; height: 40px; border-radius: 10px; background: var(--gray-50); display: flex; align-items: center; justify-content: center; transition: background 0.2s; text-decoration: none; font-size: 18px; }
.social-link:hover { background: var(--green-pale); }

/* FOOTER */
.footer { background: #1a1a1a; color: rgba(255,255,255,0.6); padding: 56px 24px 36px; }
.footer-inner { max-width: 900px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; margin-bottom: 32px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.footer-brand img { width: 36px; height: 36px; border-radius: 50%; }
.footer-links { display: flex; gap: 32px; }
.footer-col h4 { color: rgba(255,255,255,0.8); font-size: 14px; margin-bottom: 12px; }
.footer-col a { display: block; color: rgba(255,255,255,0.6); font-size: 14px; text-decoration: none; margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { color: rgba(255,255,255,0.6); font-size: 13px; text-decoration: none; }
.footer-legal a:hover { color: #fff; }

/* WHATSAPP FLOAT */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 900; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,0.2); transition: transform 0.2s, opacity 0.4s; text-decoration: none; opacity: 0; pointer-events: none; }
.whatsapp-float.visible { opacity: 1; pointer-events: auto; }
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float:active { transform: scale(0.95); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* BACK TO TOP */
.back-to-top { position: fixed; bottom: 90px; right: 24px; z-index: 900; width: 44px; height: 44px; background: var(--white); border: 1px solid var(--gray-200); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.1); cursor: pointer; opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.2s; }
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: scale(1.08); }
.back-to-top svg { width: 20px; height: 20px; color: var(--gray-700); }

/* STICKY MOBILE CTA */
.sticky-mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 800; background: var(--green-dark); padding: 12px 20px; text-align: center; box-shadow: 0 -2px 12px rgba(0,0,0,0.15); }
.sticky-mobile-cta a { color: var(--white); font-weight: 700; font-size: 16px; text-decoration: none; }

/* STAT WAVE */
.stat:nth-child(even) { transform: translateY(6px); }

/* STEP HOVER */
.step-num { transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-smooth); }
.step:hover .step-num { transform: scale(1.1); box-shadow: 0 6px 20px rgba(30,123,35,0.35); }

/* NAV CTA FOCUS */
.nav-cta:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(30,123,35,0.4), 0 0 16px rgba(30,123,35,0.2); }

/* SPOTLIGHT IMAGE OVERLAY */
.spotlight-img { position: relative; }
.spotlight-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(30,123,35,0.12), transparent 40%); border-radius: var(--radius-lg); pointer-events: none; }

/* SECTION GREEN SUBTLE BG */
.bg-green-subtle { background: radial-gradient(ellipse at 80% 0%, rgba(30,123,35,0.06), transparent 50%), linear-gradient(180deg, var(--green-pale), #f0faf0); }

/* DARK SECTION */
.bg-dark { background: linear-gradient(135deg, #1a1a1a, #2a2a2a); color: var(--white); }
.bg-dark .section-eyebrow { color: var(--green-light); -webkit-text-fill-color: var(--green-light); }
.bg-dark .section-title { color: var(--white); }
.bg-dark .section-subtitle { color: rgba(255,255,255,0.7); }
.bg-dark .earnings-sub { color: rgba(255,255,255,0.6); }
.bg-dark .earnings-unit { color: rgba(255,255,255,0.5); -webkit-text-fill-color: rgba(255,255,255,0.5); }
.bg-dark .benefit { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); }
.bg-dark .benefit h4 { color: var(--white); }
.bg-dark .benefit p { color: rgba(255,255,255,0.6); }

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: block; }
    .hero h1 { font-size: 32px; }
    .hero p { font-size: 16px; }
    .hero-cta { font-size: 16px; padding: 16px 36px; }
    section { padding: 48px 20px; }
    .section-title { font-size: 28px; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .stat-number { font-size: 26px; }
    .info-grid, .usp-grid, .benefits-grid, .contact-grid { grid-template-columns: 1fr; }
    .spotlight { grid-template-columns: 1fr; gap: 24px; }
    .spotlight-names { flex-direction: column; gap: 16px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .earnings-amount { font-size: 48px; }
    .section-title { font-size: 30px; }
    .form-card { padding: 28px 20px; }
    .footer-top { flex-direction: column; }
    .footer-links { flex-direction: column; gap: 24px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .sticky-mobile-cta { display: block; }
    .sticky-mobile-cta.hidden { display: none; }
    .whatsapp-float { bottom: 72px; }
    .back-to-top { bottom: 136px; }
    .scroll-progress { display: none; }
}
@media (max-width: 400px) {
    .hero h1 { font-size: 28px; }
    .stats-bar { grid-template-columns: 1fr 1fr; gap: 10px; }
    .team-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .team-photo { width: 120px; height: 120px; }
}

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    .hero-logo, .hero h1, .hero p, .hero-cta, .hero-badges { opacity: 1; transform: none; }
    .reveal { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}
