/* ==========================================================================
   Abby Mahsuri — Pinjaman Koperasi KOWAMAS
   Design system. Palette derived from the original site:
   green #14453d · cream #fcf9f4 · sand #ECECE7  (+ refined brass accent)
   ========================================================================== */

:root {
  /* Brand greens */
  --green-950: #08211d;
  --green-900: #0d2e29;
  --green-800: #14453d;   /* primary brand */
  --green-700: #1b564b;
  --green-600: #276a5c;
  --green-500: #3a8676;
  --green-300: #7db9ab;
  --green-100: #d9e8e3;

  /* Warm neutrals */
  --cream:     #fcf9f4;   /* page background */
  --cream-100: #f7f1e7;
  --cream-200: #f1e8d9;
  --sand:      #ecece7;   /* tertiary */
  --sand-line: #e4ddd0;

  /* Brass accent (complements deep green, common in MY finance branding) */
  --gold-700: #a67c2e;
  --gold-500: #c19a4b;
  --gold-400: #d4b063;
  --gold-200: #ecd7a3;

  /* Support */
  --whatsapp:  #25d366;
  --whatsapp-d:#128c46;
  --ink:       #182b27;
  --muted:     #5a6b66;
  --white:     #ffffff;

  /* Typography */
  --font-display: "Fraunces", "Playfair Display", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Shape & depth */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --shadow-sm: 0 2px 8px rgba(20, 69, 61, .06);
  --shadow-md: 0 16px 40px -18px rgba(13, 46, 41, .28);
  --shadow-lg: 0 40px 90px -40px rgba(8, 33, 29, .5);
  --shadow-gold: 0 18px 40px -18px rgba(166, 124, 46, .55);

  --container: 1200px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
::selection { background: var(--green-800); color: var(--gold-200); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(72px, 9vw, 130px); position: relative; }
.section--tight { padding-block: clamp(56px, 6vw, 84px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold-700);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold-500); border-radius: 2px; }
.eyebrow--center { justify-content: center; }
.on-dark .eyebrow { color: var(--gold-400); }
.on-dark .eyebrow::before { background: var(--gold-400); }

.h-display {
  font-family: var(--font-display);
  font-weight: 600;
  font-optical-sizing: auto;
  line-height: 1.08;
  letter-spacing: -.015em;
  color: var(--green-900);
}
.on-dark .h-display { color: var(--cream); }
h2.h-display { font-size: clamp(2rem, 4.6vw, 3.35rem); }
.lede { font-size: clamp(1.05rem, 1.7vw, 1.22rem); color: var(--muted); max-width: 60ch; }
.on-dark .lede { color: var(--green-100); }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head .lede { margin-top: 20px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 100px;
  font-weight: 700; font-size: .98rem; letter-spacing: .01em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, color .3s;
  will-change: transform; white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; }
.btn--primary { background: var(--green-800); color: var(--cream); box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--green-900); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn--gold { background: linear-gradient(135deg, var(--gold-400), var(--gold-700)); color: #2a1e05; box-shadow: var(--shadow-gold); }
.btn--gold:hover { transform: translateY(-3px); filter: brightness(1.05); }
.btn--wa { background: var(--whatsapp); color: #06331a; box-shadow: 0 16px 34px -16px rgba(37,211,102,.7); }
.btn--wa:hover { background: #21c15d; transform: translateY(-3px); }
.btn--ghost { background: transparent; color: var(--green-800); box-shadow: inset 0 0 0 1.5px rgba(20,69,61,.28); }
.btn--ghost:hover { background: var(--green-800); color: var(--cream); box-shadow: inset 0 0 0 1.5px var(--green-800); transform: translateY(-3px); }
.on-dark .btn--ghost { color: var(--cream); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.35); }
.on-dark .btn--ghost:hover { background: var(--cream); color: var(--green-900); }
.btn--lg { padding: 18px 36px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
  padding-block: 16px;
}
.site-header.scrolled {
  background: rgba(252, 249, 244, .82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 1px 0 var(--sand-line), 0 10px 30px -22px rgba(8,33,29,.5);
  padding-block: 10px;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { width: 44px; height: 44px; flex: none; border-radius: 12px; box-shadow: var(--shadow-sm); }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--green-900); line-height: 1.05; }
.brand__sub { display: block; font-family: var(--font-body); font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-700); }

.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__link {
  padding: 10px 15px; border-radius: 100px; font-size: .93rem; font-weight: 600; color: var(--green-800);
  position: relative; transition: color .25s, background .25s;
}
.nav__link:hover { background: rgba(20,69,61,.07); }
.nav__actions { display: flex; align-items: center; gap: 12px; }

.nav__toggle { display: none; width: 46px; height: 46px; border-radius: 12px; background: var(--green-800); color: var(--cream); align-items: center; justify-content: center; }
.nav__toggle svg { width: 24px; height: 24px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: clamp(130px, 16vw, 190px) 0 clamp(70px, 8vw, 110px);
  background:
    radial-gradient(1100px 620px at 82% -6%, rgba(20,69,61,.10), transparent 60%),
    radial-gradient(900px 500px at 8% 108%, rgba(193,154,75,.12), transparent 55%),
    var(--cream);
  overflow: hidden;
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid var(--sand-line); box-shadow: var(--shadow-sm);
  padding: 8px 16px 8px 10px; border-radius: 100px; font-size: .82rem; font-weight: 600; color: var(--green-800);
  margin-bottom: 26px;
}
.hero__badge b { color: var(--gold-700); }
.hero__badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--whatsapp); box-shadow: 0 0 0 4px rgba(37,211,102,.2); }
.hero h1 {
  font-family: var(--font-display); font-weight: 600; letter-spacing: -.02em; line-height: 1.04;
  font-size: clamp(2.4rem, 5.4vw, 4rem); color: var(--green-900); margin-bottom: 24px;
}
.hero h1 .accent { color: var(--gold-700); font-style: italic; }
.hero__lede { font-size: clamp(1.05rem, 1.7vw, 1.24rem); color: var(--muted); max-width: 52ch; margin-bottom: 34px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 22px; align-items: center; }
.hero__trust li { display: flex; align-items: center; gap: 9px; font-size: .9rem; font-weight: 600; color: var(--green-800); }
.hero__trust svg { width: 20px; height: 20px; color: var(--green-500); flex: none; }

/* Hero visual */
.hero__visual { position: relative; }
.hero__card {
  position: relative; background: linear-gradient(160deg, var(--green-800), var(--green-950));
  border-radius: var(--r-xl); padding: 34px; color: var(--cream);
  box-shadow: var(--shadow-lg); overflow: hidden; isolation: isolate;
}
.hero__card::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(400px 260px at 80% 0%, rgba(212,176,99,.28), transparent 60%),
    radial-gradient(360px 300px at 0% 100%, rgba(58,134,118,.4), transparent 60%);
}
.hero__card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.hero__chip { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; color: var(--gold-200); border: 1px solid rgba(236,215,163,.35); padding: 6px 12px; border-radius: 100px; }
.hero__card h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; line-height: 1.25; margin-bottom: 8px; color: #fff; }
.hero__card p { color: var(--green-100); font-size: .95rem; margin-bottom: 24px; }
.hero__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero__stat { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-md); padding: 16px; backdrop-filter: blur(4px); }
.hero__stat .num { font-family: var(--font-display); font-size: 1.55rem; font-weight: 600; color: var(--gold-200); line-height: 1; }
.hero__stat .lab { font-size: .74rem; color: var(--green-100); margin-top: 6px; letter-spacing: .02em; }

.hero__float {
  position: absolute; background: var(--white); border-radius: var(--r-md); box-shadow: var(--shadow-md);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px; border: 1px solid var(--sand-line);
}
.hero__float .ic { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; flex: none; }
.hero__float .ic svg { width: 22px; height: 22px; }
.hero__float small { display: block; font-size: .72rem; color: var(--muted); font-weight: 600; }
.hero__float strong { font-size: .98rem; color: var(--green-900); font-weight: 700; }
.hero__float--a { top: -22px; left: -30px; animation: floaty 5.5s var(--ease) infinite; }
.hero__float--a .ic { background: rgba(37,211,102,.15); color: var(--whatsapp-d); }
.hero__float--b { bottom: -26px; right: -22px; animation: floaty 6.5s var(--ease) infinite reverse; }
.hero__float--b .ic { background: rgba(193,154,75,.18); color: var(--gold-700); }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ==========================================================================
   Marquee trust strip
   ========================================================================== */
.marquee { background: var(--green-900); color: var(--cream); overflow: hidden; padding: 18px 0; }
.marquee__track { display: flex; gap: 0; width: max-content; animation: scroll-x 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span { display: inline-flex; align-items: center; gap: 14px; padding-inline: 26px; font-weight: 600; font-size: .95rem; letter-spacing: .02em; white-space: nowrap; }
.marquee__track span::after { content: "✦"; color: var(--gold-400); font-size: .85rem; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ==========================================================================
   Feature grid ("Kenapa pilih")
   ========================================================================== */
.features { background: var(--cream); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  background: var(--white); border: 1px solid var(--sand-line); border-radius: var(--r-lg);
  padding: 32px; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  position: relative; overflow: hidden;
}
.feature::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--gold-400), var(--green-500)); transform: scaleX(0);
  transform-origin: left; transition: transform .45s var(--ease);
}
.feature:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature:hover::after { transform: scaleX(1); }
.feature__ic { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 22px; background: linear-gradient(150deg, var(--green-100), var(--sand)); color: var(--green-800); }
.feature__ic svg { width: 30px; height: 30px; }
.feature h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.28rem; color: var(--green-900); margin-bottom: 10px; line-height: 1.2; }
.feature p { color: var(--muted); font-size: .96rem; }

/* ==========================================================================
   Benefits (dark section)
   ========================================================================== */
.benefits { background: linear-gradient(165deg, var(--green-900), var(--green-950)); color: var(--cream); overflow: hidden; }
.benefits::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 400px at 90% 10%, rgba(193,154,75,.14), transparent 60%);
  pointer-events: none;
}
.benefits .container { position: relative; }
.benefits__layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.benefit-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.benefit {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); border-radius: var(--r-md);
  padding: 24px; transition: transform .4s var(--ease), background .4s;
}
.benefit:hover { transform: translateY(-6px); background: rgba(255,255,255,.09); }
.benefit__ic { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px; background: rgba(212,176,99,.14); color: var(--gold-200); }
.benefit__ic svg { width: 26px; height: 26px; }
.benefit h4 { font-size: 1.06rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.benefit p { font-size: .9rem; color: var(--green-100); }
.benefit--wide { grid-column: span 2; display: flex; gap: 20px; align-items: center; }
.benefit--wide .benefit__ic { margin-bottom: 0; }
.benefit--highlight { background: linear-gradient(135deg, rgba(193,154,75,.22), rgba(193,154,75,.06)); border-color: rgba(212,176,99,.4); }
.benefit--highlight .num { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--gold-200); line-height: 1; }

/* ==========================================================================
   Eligibility calculator
   ========================================================================== */
.calc { background: var(--cream); }
.calc__wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--white); border: 1px solid var(--sand-line); border-radius: var(--r-xl);
  overflow: hidden; box-shadow: var(--shadow-md);
}
.calc__form { padding: clamp(28px, 4vw, 48px); }
.calc__form .eyebrow { margin-bottom: 14px; }
.calc__form h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.6rem, 2.6vw, 2.1rem); color: var(--green-900); margin-bottom: 8px; }
.calc__form > p { color: var(--muted); font-size: .95rem; margin-bottom: 26px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: .86rem; font-weight: 700; color: var(--green-800); margin-bottom: 9px; }
.seg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg label {
  margin: 0; text-align: center; padding: 11px 8px; border-radius: 12px; font-size: .85rem; font-weight: 600;
  background: var(--cream-100); border: 1.5px solid var(--sand-line); color: var(--green-800);
  cursor: pointer; transition: all .25s;
}
.seg input:checked + label { background: var(--green-800); border-color: var(--green-800); color: var(--cream); box-shadow: var(--shadow-sm); }
.input-money { position: relative; }
.input-money span { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); font-weight: 700; color: var(--muted); font-size: 1rem; }
.input-ctrl {
  width: 100%; padding: 14px 16px; border-radius: 12px; border: 1.5px solid var(--sand-line);
  background: var(--cream-100); font: inherit; font-weight: 600; color: var(--green-900); transition: border-color .25s, box-shadow .25s;
}
.input-money .input-ctrl { padding-left: 40px; }
.input-ctrl:focus { outline: none; border-color: var(--green-500); box-shadow: 0 0 0 4px rgba(58,134,118,.15); background: var(--white); }
.range-row { display: flex; align-items: center; gap: 16px; }
input[type="range"] { flex: 1; -webkit-appearance: none; appearance: none; height: 6px; border-radius: 6px; background: var(--sand); }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%; background: var(--green-800); border: 4px solid var(--white); box-shadow: var(--shadow-sm); cursor: pointer; }
input[type="range"]::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: var(--green-800); border: 4px solid var(--white); cursor: pointer; }
.range-val { font-weight: 700; color: var(--green-900); min-width: 68px; text-align: right; }

.calc__result {
  background: linear-gradient(165deg, var(--green-800), var(--green-950)); color: var(--cream);
  padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden;
}
.calc__result::before { content: ""; position: absolute; inset: 0; background: radial-gradient(400px 300px at 90% 0%, rgba(212,176,99,.2), transparent 60%); }
.calc__result-inner { position: relative; }
.calc__result .cap { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; color: var(--gold-200); margin-bottom: 10px; }
.calc__amount { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.4rem, 5vw, 3.4rem); line-height: 1; color: #fff; margin-bottom: 6px; }
.calc__sub { color: var(--green-100); font-size: .92rem; margin-bottom: 26px; }
.calc__breakdown { display: grid; gap: 12px; margin-bottom: 28px; }
.calc__row { display: flex; justify-content: space-between; align-items: center; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.12); font-size: .92rem; }
.calc__row:last-child { border-bottom: none; }
.calc__row .k { color: var(--green-100); }
.calc__row .v { font-weight: 700; color: var(--gold-200); }
.calc__note { font-size: .76rem; color: rgba(217,232,227,.7); margin-top: 16px; line-height: 1.5; }

/* ==========================================================================
   Products
   ========================================================================== */
.products { background: var(--cream-100); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product {
  position: relative; background: var(--white); border-radius: var(--r-lg); padding: 34px 30px;
  border: 1px solid var(--sand-line); box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.product:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.product__num { font-family: var(--font-display); font-size: 3.4rem; font-weight: 600; color: var(--cream-200); line-height: .8; position: absolute; top: 22px; right: 26px; }
.product__ic { width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 22px; background: var(--green-800); color: var(--gold-200); box-shadow: var(--shadow-sm); }
.product__ic svg { width: 30px; height: 30px; }
.product h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; color: var(--green-900); margin-bottom: 10px; }
.product p { color: var(--muted); font-size: .95rem; margin-bottom: 20px; }
.product ul { display: grid; gap: 9px; }
.product li { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; color: var(--green-800); font-weight: 600; }
.product li svg { width: 18px; height: 18px; color: var(--green-500); flex: none; margin-top: 2px; }

/* ==========================================================================
   Process steps
   ========================================================================== */
.process { background: var(--cream); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.step { position: relative; text-align: center; padding: 12px; }
.step__badge {
  width: 78px; height: 78px; margin: 0 auto 22px; border-radius: 50%; display: grid; place-items: center;
  background: var(--white); border: 2px solid var(--sand-line); box-shadow: var(--shadow-sm);
  font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; color: var(--green-800); position: relative; z-index: 2;
}
.step__ic { position: absolute; top: -10px; right: calc(50% - 52px); width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--gold-500); color: #2a1e05; box-shadow: var(--shadow-sm); z-index: 3; }
.step__ic svg { width: 18px; height: 18px; }
.step h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.22rem; color: var(--green-900); margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .93rem; max-width: 30ch; margin-inline: auto; }
.steps__line { position: absolute; top: 39px; left: 16%; right: 16%; height: 2px; background: repeating-linear-gradient(90deg, var(--gold-400) 0 8px, transparent 8px 16px); z-index: 1; }

/* ==========================================================================
   About
   ========================================================================== */
.about { background: var(--cream-100); overflow: hidden; }
.about__layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.about__media { position: relative; }
.about__panel {
  border-radius: var(--r-xl); background: linear-gradient(160deg, var(--green-800), var(--green-950));
  padding: 44px; color: var(--cream); box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.about__panel::before { content: ""; position: absolute; inset: 0; background: radial-gradient(380px 300px at 100% 0%, rgba(212,176,99,.22), transparent 60%); }
.about__panel-inner { position: relative; }
.about__logo { width: 66px; height: 66px; border-radius: 16px; margin-bottom: 24px; box-shadow: var(--shadow-md); }
.about__panel h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; color: #fff; margin-bottom: 14px; line-height: 1.3; }
.about__panel p { color: var(--green-100); font-size: .96rem; margin-bottom: 20px; }
.about__metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.about__metric { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-md); padding: 18px; }
.about__metric .num { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; color: var(--gold-200); line-height: 1; }
.about__metric .lab { font-size: .78rem; color: var(--green-100); margin-top: 6px; }
.about__badge-float {
  position: absolute; bottom: -22px; left: -22px; background: var(--white); border-radius: var(--r-md);
  padding: 16px 20px; box-shadow: var(--shadow-md); border: 1px solid var(--sand-line); display: flex; align-items: center; gap: 12px;
}
.about__badge-float .ic { width: 42px; height: 42px; border-radius: 12px; background: rgba(37,211,102,.14); color: var(--whatsapp-d); display: grid; place-items: center; }
.about__badge-float small { display: block; font-size: .72rem; color: var(--muted); font-weight: 600; }
.about__badge-float strong { color: var(--green-900); }

.about__body .eyebrow { margin-bottom: 18px; }
.about__body h2 { margin-bottom: 20px; }
.about__body p { color: var(--muted); margin-bottom: 18px; }
.about__check { display: grid; gap: 12px; margin: 24px 0 30px; }
.about__check li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; color: var(--green-800); }
.about__check svg { width: 22px; height: 22px; color: var(--green-500); flex: none; margin-top: 1px; }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery { background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 18px; }
.gallery__item {
  position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--sand-line); background: linear-gradient(160deg, var(--green-700), var(--green-950));
  display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; color: var(--cream);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.gallery__item:hover { transform: translateY(-6px) scale(1.01); box-shadow: var(--shadow-md); }
.gallery__item::before { content: ""; position: absolute; inset: 0; background: radial-gradient(300px 200px at 70% 10%, rgba(212,176,99,.25), transparent 60%); opacity: .8; }
.gallery__item svg.deco { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .16; }
.gallery__item .tag { position: relative; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--gold-200); margin-bottom: 6px; }
.gallery__item h4 { position: relative; font-family: var(--font-display); font-weight: 500; font-size: 1.15rem; color: #fff; line-height: 1.2; }
.gallery__item--lg { grid-column: span 2; grid-row: span 2; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item .medal { position: absolute; top: 20px; right: 20px; width: 44px; height: 44px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { background: var(--cream-100); }
.faq__layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.faq__list { display: grid; gap: 14px; }
.faq__item { background: var(--white); border: 1px solid var(--sand-line); border-radius: var(--r-md); overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.faq__item[open] { box-shadow: var(--shadow-sm); border-color: var(--green-300); }
.faq__q {
  list-style: none; cursor: pointer; padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  font-weight: 700; font-size: 1.03rem; color: var(--green-900);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q .plus { width: 30px; height: 30px; flex: none; border-radius: 50%; background: var(--cream-100); display: grid; place-items: center; position: relative; transition: background .3s; }
.faq__item[open] .faq__q .plus { background: var(--green-800); }
.faq__q .plus::before, .faq__q .plus::after { content: ""; position: absolute; width: 13px; height: 2.5px; border-radius: 2px; background: var(--green-800); transition: transform .3s, background .3s; }
.faq__q .plus::after { transform: rotate(90deg); }
.faq__item[open] .faq__q .plus::before, .faq__item[open] .faq__q .plus::after { background: var(--cream); }
.faq__item[open] .faq__q .plus::after { transform: rotate(0); }
.faq__a { padding: 0 26px 24px; color: var(--muted); font-size: .96rem; }
.faq__aside { position: sticky; top: 100px; }
.faq__card { background: linear-gradient(160deg, var(--green-800), var(--green-950)); border-radius: var(--r-lg); padding: 34px; color: var(--cream); box-shadow: var(--shadow-md); }
.faq__card h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.4rem; color: #fff; margin-bottom: 12px; }
.faq__card p { color: var(--green-100); font-size: .94rem; margin-bottom: 24px; }

/* ==========================================================================
   Final CTA
   ========================================================================== */
.cta-band { padding-block: clamp(64px, 8vw, 100px); background: var(--cream); }
.cta-band__inner {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  background: linear-gradient(150deg, var(--green-800), var(--green-950));
  padding: clamp(44px, 6vw, 82px); text-align: center; color: var(--cream); box-shadow: var(--shadow-lg);
}
.cta-band__inner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(500px 320px at 20% 0%, rgba(212,176,99,.2), transparent 55%), radial-gradient(500px 320px at 90% 100%, rgba(58,134,118,.35), transparent 55%); }
.cta-band__inner > * { position: relative; }
.cta-band h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 4.4vw, 3.2rem); color: #fff; margin-bottom: 18px; line-height: 1.1; max-width: 18ch; margin-inline: auto; }
.cta-band p { color: var(--green-100); font-size: 1.1rem; max-width: 52ch; margin: 0 auto 34px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-band__phone { margin-top: 26px; font-size: .95rem; color: var(--green-100); }
.cta-band__phone a { color: var(--gold-200); font-weight: 700; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--green-950); color: var(--green-100); padding-block: 70px 30px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer__brand img { width: 46px; height: 46px; border-radius: 12px; }
.footer__brand .n { font-family: var(--font-display); font-size: 1.2rem; color: #fff; font-weight: 600; }
.footer__brand .s { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-400); }
.footer p.desc { font-size: .92rem; max-width: 34ch; margin-bottom: 20px; }
.footer h5 { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-400); margin-bottom: 18px; font-weight: 700; }
.footer__links { display: grid; gap: 11px; }
.footer__links a { font-size: .94rem; transition: color .25s, padding .25s; }
.footer__links a:hover { color: #fff; padding-left: 5px; }
.footer__contact { display: grid; gap: 14px; }
.footer__contact a { display: flex; align-items: center; gap: 12px; font-size: .94rem; }
.footer__contact .ic { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.07); display: grid; place-items: center; flex: none; }
.footer__contact .ic svg { width: 19px; height: 19px; color: var(--gold-200); }
.footer__social-groups { display: grid; gap: 16px; margin-top: 8px; }
.footer__social-groups .grp small { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(217,232,227,.6); margin-bottom: 8px; }
.social-row { display: flex; gap: 10px; }
.social-row a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.07); display: grid; place-items: center; transition: transform .25s, background .25s; }
.social-row a:hover { transform: translateY(-3px); background: var(--gold-500); color: #2a1e05; }
.social-row svg { width: 20px; height: 20px; }
.footer__bottom { padding-top: 26px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; font-size: .82rem; color: rgba(217,232,227,.65); }
.footer__bottom a { color: var(--gold-200); }
.footer__disclaimer { max-width: 62ch; line-height: 1.6; }

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 62px; height: 62px; border-radius: 50%; background: var(--whatsapp); color: #06331a;
  display: grid; place-items: center; box-shadow: 0 16px 40px -12px rgba(37,211,102,.7);
  transition: transform .3s var(--ease); animation: wa-pulse 2.6s infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }
@keyframes wa-pulse { 0% { box-shadow: 0 16px 40px -12px rgba(37,211,102,.7), 0 0 0 0 rgba(37,211,102,.45); } 70% { box-shadow: 0 16px 40px -12px rgba(37,211,102,.7), 0 0 0 18px rgba(37,211,102,0); } 100% { box-shadow: 0 16px 40px -12px rgba(37,211,102,.7), 0 0 0 0 rgba(37,211,102,0); } }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 520px; margin-inline: auto; width: 100%; }
  .benefits__layout, .about__layout, .faq__layout, .calc__wrap { grid-template-columns: 1fr; }
  .faq__aside { position: static; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--lg { grid-column: span 2; }
}
@media (max-width: 860px) {
  .nav__menu { display: none; }
  .nav__actions .btn--ghost { display: none; }
  .nav__toggle { display: grid; }
  .feature-grid, .product-grid, .steps { grid-template-columns: 1fr; }
  .steps__line { display: none; }
  .benefit-list { grid-template-columns: 1fr; }
  .benefit--wide { grid-column: span 1; }
  .footer__grid { grid-template-columns: 1fr 1fr; }

  /* Mobile nav panel */
  .nav__menu.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 6px;
    position: absolute; top: calc(100% + 10px); left: 16px; right: 16px;
    background: var(--white); border: 1px solid var(--sand-line); border-radius: var(--r-lg);
    padding: 14px; box-shadow: var(--shadow-lg);
  }
  .nav__menu.open .nav__link { padding: 14px 16px; border-radius: 12px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { padding-inline: 18px; }
  .hero__float { display: none; }
  .hero__cta .btn { flex: 1; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 180px; }
  .gallery__item--lg, .gallery__item--tall { grid-column: span 1; grid-row: span 1; }
  .about__metrics, .hero__stats { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta-band__actions .btn { width: 100%; }
}
