@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --orange: #f4511e;
  --orange-dark: #d93d0d;
  --green: #146b3a;
  --green-dark: #0c4d2a;
  --gold: #f5b400;
  --burgundy: #981225;
  --ink: #17201b;
  --muted: #67706a;
  --cream: #fffaf4;
  --white: #ffffff;
  --line: #e8e6df;
  --shadow: 0 24px 60px rgba(21, 46, 31, .12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  height: 4px;
  z-index: 1000;
  background: linear-gradient(90deg, var(--green) 0 35%, var(--orange) 35% 72%, var(--gold) 72%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-soft { background: #f6f7f3; }
.section-dark { color: var(--white); background: var(--green-dark); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--orange-dark);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 24px; height: 3px; border-radius: 9px; background: var(--gold); }
.section-dark .eyebrow, .hero .eyebrow { color: #ffd775; }
.title { margin: 13px 0 18px; font: 700 clamp(2.15rem, 4vw, 3.8rem)/1.02 "Space Grotesk", sans-serif; letter-spacing: -.045em; }
.section-intro { max-width: 650px; color: var(--muted); font-size: 1.05rem; line-height: 1.8; }
.section-dark .section-intro { color: #c7d8ce; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(20, 107, 58, .1); background: rgba(255,255,255,.93); backdrop-filter: blur(14px); }
.nav { height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 11px; font: 700 1.35rem "Space Grotesk", sans-serif; }
.brand strong { color: var(--orange); }
.brand-mark { position: relative; width: 43px; height: 43px; border-radius: 12px; background: var(--green); overflow: hidden; }
.brand-mark::before { content: ""; position: absolute; width: 24px; height: 24px; left: 9px; top: 11px; border: 5px solid white; border-top: 0; border-right: 0; transform: rotate(135deg); }
.brand-mark::after { content: ""; position: absolute; width: 9px; height: 13px; left: 17px; bottom: 5px; border-radius: 2px 2px 0 0; background: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { position: relative; color: #3d4942; font-size: .91rem; font-weight: 700; }
.nav-links a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--orange); transition: .25s ease; }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-links a.active { color: var(--green); }
.nav-cta { padding: 13px 20px; color: white !important; border-radius: 12px; background: var(--orange); box-shadow: 0 9px 22px rgba(244,81,30,.24); }
.menu-button { display: none; width: 44px; height: 44px; padding: 11px; border: 0; border-radius: 10px; background: #f1f5f1; }
.menu-button span { display: block; height: 2px; margin: 5px 0; background: var(--green); transition: .25s; }

/* Hero */
.hero { position: relative; min-height: 700px; overflow: hidden; color: white; background: var(--green-dark); }
.hero::before { content: ""; position: absolute; inset: -100px auto auto 42%; width: 650px; height: 650px; border: 120px solid rgba(255,255,255,.035); border-radius: 50%; }
.hero::after { content: ""; position: absolute; width: 430px; height: 430px; right: -190px; bottom: -220px; border-radius: 50%; background: var(--orange); }
.hero-grid { min-height: 700px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 70px; padding: 70px 0 88px; }
.hero-grid > *, .split > *, .contact-grid > * { min-width: 0; }
.hero-copy { position: relative; z-index: 2; }
.hero h1 { max-width: 680px; margin: 18px 0 22px; font: 700 clamp(3.2rem, 6vw, 6rem)/.93 "Space Grotesk", sans-serif; letter-spacing: -.06em; }
.hero h1 span { color: #ffca31; }
.hero-copy > p { max-width: 600px; color: #d5e5db; font-size: 1.08rem; line-height: 1.8; }
.button-row { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 23px; border: 0; border-radius: 13px; font-weight: 800; cursor: pointer; transition: transform .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--orange); box-shadow: 0 13px 30px rgba(244,81,30,.3); }
.button-light { color: var(--green-dark); background: white; }
.button-outline { color: white; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.07); }
.trust-line { display: flex; gap: 26px; margin-top: 42px; color: #bbd2c4; font-size: .84rem; font-weight: 700; }
.trust-line span::before { content: "✓"; display: inline-grid; place-items: center; width: 20px; height: 20px; margin-right: 8px; color: var(--green-dark); border-radius: 50%; background: var(--gold); }

.dashboard { position: relative; z-index: 2; width: 100%; min-width: 0; padding: 14px; border: 1px solid rgba(255,255,255,.14); border-radius: 28px; background: rgba(255,255,255,.11); box-shadow: 0 35px 80px rgba(0,0,0,.28); transform: rotate(1.5deg); }
.dashboard-inner { overflow: hidden; color: var(--ink); border-radius: 19px; background: #f8f8f5; }
.dash-head { display: flex; align-items: center; justify-content: space-between; padding: 17px 20px; color: white; background: var(--burgundy); font-size: .8rem; font-weight: 800; }
.dash-dots { display: flex; gap: 6px; }
.dash-dots i { width: 9px; height: 9px; border-radius: 50%; background: #ff6058; }
.dash-dots i:nth-child(2) { background: #ffbd2e; } .dash-dots i:nth-child(3) { background: #28c840; }
.dash-body { padding: 20px; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.stat { padding: 16px 10px; text-align: center; border: 1px solid #e5e2dc; border-radius: 10px; background: white; }
.stat b { display: block; color: var(--burgundy); font: 700 1.45rem "Space Grotesk"; }
.stat small { font-size: .62rem; font-weight: 800; text-transform: uppercase; }
.chart { height: 170px; margin-top: 13px; padding: 18px; border: 1px solid #e5e2dc; border-radius: 12px; background: white; }
.chart-title { color: #555; font-size: .72rem; }
.bars { height: 105px; display: flex; align-items: flex-end; gap: 8px; padding-top: 10px; border-bottom: 1px solid #ddd; }
.bars i { position: relative; flex: 1; height: var(--h); border-radius: 3px 3px 0 0; background: linear-gradient(var(--gold), #e89c00); }
.bars i::after { content: ""; position: absolute; top: 0; left: -4px; width: calc(100% + 8px); height: 2px; background: var(--burgundy); transform: rotate(-9deg); transform-origin: left; }
.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 12px; }
.mini-grid div { padding: 11px; border-radius: 8px; background: #fff; border: 1px solid #e5e2dc; }
.mini-grid small { display: block; color: var(--burgundy); font-size: .58rem; font-weight: 800; text-transform: uppercase; }
.mini-grid b { font-size: .82rem; }

/* Components */
.logo-strip { padding: 25px 0; border-bottom: 1px solid var(--line); }
.logo-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; color: #79817c; }
.logo-strip p { font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.payment-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 25px; }
.payment-logos b { color: #39423d; font-size: .92rem; }
.payment-logos b:first-child { color: #57a42b; }
.payment-logos b:nth-child(2) { color: #a41422; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.feature-card { position: relative; overflow: hidden; padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: white; transition: transform .25s, box-shadow .25s; }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.icon { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 23px; color: var(--orange); border-radius: 15px; background: #fff0e9; font-size: 1.5rem; font-weight: 800; }
.feature-card:nth-child(2n) .icon { color: var(--green); background: #eaf5ed; }
.feature-card h3 { margin: 0 0 11px; font: 700 1.22rem "Space Grotesk"; }
.feature-card p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.7; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.check-list { display: grid; gap: 15px; margin: 30px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; color: #344039; font-weight: 650; }
.check-list li::before { content: "✓"; flex: 0 0 25px; height: 25px; display: grid; place-items: center; color: white; border-radius: 7px; background: var(--green); font-size: .8rem; }
.insight-card { position: relative; min-height: 440px; padding: 44px; overflow: hidden; border-radius: 28px; color: white; background: var(--orange); box-shadow: var(--shadow); }
.insight-card::before { content: ""; position: absolute; width: 330px; height: 330px; right: -90px; bottom: -130px; border: 65px solid rgba(255,255,255,.13); border-radius: 50%; }
.insight-card h3 { position: relative; max-width: 380px; margin: 0 0 25px; font: 700 2.15rem/1.08 "Space Grotesk"; }
.insight-list { position: relative; display: grid; gap: 5px; }
.insight-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.24); }
.insight-row span { font-size: .9rem; }
.insight-row b { color: #fff7c9; }

.cta-band { padding: 58px 0; color: white; background: var(--orange); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-inner h2 { max-width: 660px; margin: 0; font: 700 clamp(2rem, 4vw, 3.4rem)/1.05 "Space Grotesk"; letter-spacing: -.04em; }

/* Internal pages */
.page-hero { position: relative; overflow: hidden; padding: 105px 0 90px; color: white; background: var(--green-dark); }
.page-hero::after { content: ""; position: absolute; width: 360px; height: 360px; right: 8%; top: -200px; border: 70px solid rgba(245,180,0,.15); border-radius: 50%; }
.page-hero h1 { max-width: 780px; margin: 15px 0 20px; font: 700 clamp(3rem, 6vw, 5rem)/.98 "Space Grotesk"; letter-spacing: -.055em; }
.page-hero p { max-width: 650px; margin: 0; color: #c7d8ce; font-size: 1.08rem; line-height: 1.8; }
.story-number { display: block; color: var(--orange); font: 700 4.5rem "Space Grotesk"; letter-spacing: -.07em; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.value-card { padding: 30px; border-top: 4px solid var(--gold); border-radius: 0 0 18px 18px; background: white; box-shadow: 0 16px 45px rgba(22,57,37,.08); }
.value-card h3 { font: 700 1.2rem "Space Grotesk"; }
.value-card p { color: var(--muted); line-height: 1.7; font-size: .92rem; }
.module-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-top: 44px; }
.module { display: flex; align-items: center; gap: 18px; padding: 21px; border: 1px solid var(--line); border-radius: 15px; background: white; }
.module-num { flex: 0 0 42px; width: 42px; height: 42px; display: grid; place-items: center; color: white; border-radius: 12px; background: var(--gold); font-weight: 800; }
.module b { display: block; font-family: "Space Grotesk"; }
.module small { color: var(--muted); }
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; counter-reset: process; }
.process-card { counter-increment: process; position: relative; padding-top: 52px; }
.process-card::before { content: "0" counter(process); position: absolute; top: 0; color: var(--gold); font: 700 2rem "Space Grotesk"; }
.process-card:not(:last-child)::after { content: ""; position: absolute; top: 18px; left: 62px; width: calc(100% - 45px); height: 1px; background: rgba(255,255,255,.25); }
.process-card h3 { font: 700 1.1rem "Space Grotesk"; }
.process-card p { color: #bcd0c3; font-size: .88rem; line-height: 1.65; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.contact-stack { display: grid; gap: 15px; margin-top: 35px; }
.contact-item { display: flex; gap: 16px; padding: 19px; border-radius: 15px; background: #f5f7f3; }
.contact-item .icon { flex: 0 0 44px; width: 44px; height: 44px; margin: 0; font-size: 1rem; }
.contact-item b { display: block; margin-bottom: 3px; }
.contact-item span, .contact-item a { color: var(--muted); font-size: .9rem; }
.contact-form { padding: 38px; border-radius: 24px; background: white; box-shadow: var(--shadow); }
.contact-form h2 { margin-top: 0; font: 700 2rem "Space Grotesk"; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { display: grid; gap: 8px; margin-bottom: 17px; }
.field label { font-size: .82rem; font-weight: 800; }
.field input, .field textarea, .field select { width: 100%; padding: 15px 16px; color: var(--ink); border: 1px solid #dfe3dd; border-radius: 11px; outline: 0; background: #fbfcfa; transition: border .2s, box-shadow .2s; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(20,107,58,.1); }
.form-note { color: var(--muted); font-size: .76rem; }
.form-success { display: none; margin-top: 15px; padding: 13px; color: var(--green); border-radius: 10px; background: #eaf5ed; font-size: .86rem; font-weight: 700; }

/* Footer */
.site-footer { color: #cbd8d0; background: #092f1d; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .7fr 1fr; gap: 50px; padding: 72px 0 48px; }
.footer-brand .brand { color: white; }
.footer-brand p { max-width: 320px; color: #a8bcb0; font-size: .88rem; line-height: 1.75; }
.footer-col h4 { margin: 4px 0 20px; color: white; font: 700 1rem "Space Grotesk"; }
.footer-col a, .footer-col span { display: block; margin: 11px 0; color: #a8bcb0; font-size: .86rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: .75rem; }

@media (max-width: 900px) {
  .menu-button { display: block; }
  .nav-links { position: absolute; top: 84px; left: 20px; right: 20px; display: none; align-items: stretch; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: white; box-shadow: var(--shadow); }
  .nav-links.open { display: grid; gap: 20px; }
  .nav-cta { text-align: center; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 90px; gap: 35px; }
  .hero { min-height: auto; }
  .dashboard { max-width: 620px; transform: none; }
  .feature-grid, .value-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1160px); }
  .section { padding: 72px 0; }
  .nav { height: 75px; }
  .nav-links { top: 75px; }
  .hero-grid { min-height: auto; padding: 75px 0; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.4rem); }
  .hero h1 span { display: block; }
  .dashboard { padding: 8px; }
  .dash-body { padding: 12px; }
  .stat b { font-size: 1rem; }
  .chart { height: 135px; }
  .bars { height: 78px; }
  .trust-line, .logo-strip-inner, .cta-inner, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .payment-logos { justify-content: flex-start; }
  .feature-grid, .value-grid, .module-grid, .process, .form-row { grid-template-columns: 1fr; }
  .process-card:not(:last-child)::after { display: none; }
  .insight-card { min-height: 390px; padding: 30px 24px; }
  .contact-form { padding: 25px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
}
