/* ===== LOAN LLAMA — Brand Colors & Reset ===== */
:root {
  --green-dark:  #0f5a30;
  --green:       #14b85c;
  --green-light: #e6faee;
  --ink:         #07140d;
  --tan:         #f4f1ea;
  --tan-dark:    #e8dfc8;
  --pink:        #ff5fa2;
  --pink-dark:   #e0357f;
  --text:        #0b1411;
  --text-muted:  #586066;
  --white:       #ffffff;
  --shadow:      0 6px 24px rgba(11,20,17,0.08);
  --shadow-lg:   0 10px 20px -8px rgba(11,20,17,0.12), 0 30px 60px -20px rgba(11,20,17,0.18);
  --shadow-pop:  0 18px 40px -12px rgba(20,184,92,0.35);
  --radius:      14px;
  --radius-lg:   22px;
  --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: var(--font-display); letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.25rem); font-weight: 700; line-height: 1.05; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 700; line-height: 1.12; }
h3 { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.01em; }
p  { color: var(--text-muted); }

/* ===== LAYOUT ===== */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 80px 0; }

/* ===== NAVBAR ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(11,20,17,0.06);
  padding: 16px 0;
  transition: padding 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
nav.nav-scrolled {
  padding: 10px 0;
  box-shadow: 0 6px 24px rgba(11,20,17,0.07);
  background: rgba(255,255,255,0.9);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--green-dark);
}
.logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  display: block;
}
.footer-logo-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.btn-llama {
  height: 1.5em;
  width: auto;
  vertical-align: -0.42em;
  margin-left: 6px;
}

.logo-icon {
  width: 40px;
  height: 40px;
}

.nav-cta {
  background: var(--green);
  color: var(--white);
  padding: 11px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-pop);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.2s;
}
.nav-cta:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 22px 48px -12px rgba(20,184,92,0.5);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(160deg, #0b3a22 0%, var(--ink) 70%);
  color: var(--white);
  padding: 96px 0 48px;
  position: relative;
  overflow: hidden;
}

/* Floating gradient orbs for depth */
.hero::before {
  content: '';
  position: absolute;
  top: -25%;
  right: -8%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(20,184,92,0.55) 0%, rgba(20,184,92,0) 68%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
}
.hero .container { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
  backdrop-filter: blur(6px);
}
.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 4px rgba(255,95,162,0.25);
}

.hero h1 { margin-bottom: 22px; }
.hero h1 span {
  background: linear-gradient(100deg, #7ee8a2 0%, var(--pink) 110%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.hero-promise {
  font-size: 1rem;
  line-height: 1.5;
  border-left: 3px solid var(--pink);
  padding-left: 14px;
}
.hero-promise strong { color: #fff; }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
}

.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #7ee8a2;
}
.stat-item span { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* ===== FORM CARD ===== */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.form-card h3 {
  color: var(--text);
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.form-card p {
  font-size: 0.9rem;
  margin-bottom: 24px;
}

/* ===== PROGRESS BAR ===== */
.progress-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.progress-step {
  flex: 1;
  height: 4px;
  background: #e8eaed;
  border-radius: 2px;
  transition: background 0.3s;
}
.progress-step.active { background: var(--green); }

/* ===== FORM STEPS ===== */
.form-step { display: none; }
.form-step.active { display: block; }

.step-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.loan-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

/* Contact-preference pills: 3 across (Text / Email / Call) */
.loan-type-grid.pref-grid {
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 8px;
}

.pref-btn { position: relative; }

.pref-rank-badge {
  display: none;
  position: absolute;
  top: -9px;
  right: -9px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
  pointer-events: none;
}

.pref-btn.selected .pref-rank-badge { display: block; }

.pref-note {
  font-size: 0.78rem;
  color: #888;
  margin: 4px 0 0;
  line-height: 1.4;
}

.loan-type-btn,
.sub-btn,
.pref-btn {
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  padding: 14px 10px;
  background: var(--white);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  transition: all 0.2s;
  text-align: center;
}
.loan-type-btn:hover,
.sub-btn:hover,
.pref-btn:hover { border-color: var(--green); color: var(--green); }
.loan-type-btn.selected,
.sub-btn.selected,
.pref-btn.selected {
  border-color: var(--green);
  background: var(--green-light);
  color: var(--green-dark);
}

/* Conditional follow-up question (cash-out vs. lower-payment, construction type) */
.loan-sub {
  margin: -6px 0 18px;
  padding: 14px;
  background: var(--green-light);
  border-radius: var(--radius);
}
.loan-sub[hidden] { display: none; }
.loan-sub .loan-type-grid { margin-bottom: 0; }
.sub-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.loan-sub .sub-btn { background: var(--white); }

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  appearance: none;
}

.form-group textarea { resize: vertical; min-height: 90px; line-height: 1.5; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
}

.form-group input::placeholder { color: #b0b8c1; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.btn-primary {
  width: 100%;
  white-space: nowrap;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 15px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  margin-top: 4px;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-back {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  margin-top: 10px;
  display: block;
  text-align: center;
  width: 100%;
}
.btn-back:hover { color: var(--text); }

.form-disclaimer {
  font-size: 0.72rem;
  color: #9aa0a6;
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

.consent-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.consent-row input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  flex-shrink: 0;
}
.consent-row label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.5;
}

/* ===== SUCCESS STATE ===== */
.success-state {
  text-align: center;
  padding: 20px 0;
  display: none;
}
.success-state.active { display: block; }
.success-icon {
  width: 64px;
  height: 64px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}
.success-icon img {
  height: 78%;
  width: auto;
  object-fit: contain;
  display: block;
}
.success-state h3 { color: var(--green-dark); margin-bottom: 10px; }
.success-state p { font-size: 0.95rem; }

/* ===== HOW IT WORKS ===== */
.how-it-works { background: var(--tan); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header p { max-width: 520px; margin: 12px auto 0; font-size: 1.05rem; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
}

.step-number {
  width: 52px;
  height: 52px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 20px;
}

.step-card h3 { margin-bottom: 10px; }

/* ===== LOAN PRODUCTS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.product-card {
  border: 1px solid #e8eaed;
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.product-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.product-card h3 { margin-bottom: 10px; }
.product-card p { font-size: 0.92rem; }

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 16px;
  cursor: pointer;
}

/* ===== TRUST ===== */
.trust { background: var(--green-dark); color: var(--white); }
.trust .section-header p { color: rgba(255,255,255,0.75); }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-card {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
}

.trust-card .icon { font-size: 2rem; margin-bottom: 14px; }
.trust-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 8px; }
.trust-card p { color: rgba(255,255,255,0.7); font-size: 0.88rem; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #e8f7ee 0%, #d0f0df 100%);
  padding: 72px 0;
  text-align: center;
}

.cta-banner h2 { color: var(--green-dark); margin-bottom: 16px; }
.cta-banner p { max-width: 500px; margin: 0 auto 32px; font-size: 1.05rem; }

.btn-cta-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  background: var(--green);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.1s;
}
.btn-cta-large:hover { background: var(--green-dark); transform: translateY(-1px); }

/* ===== FOOTER ===== */
footer {
  background: #111;
  color: #999;
  padding: 40px 0 24px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #222;
}

.footer-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  color: #999;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  font-size: 0.7rem;
  color: #555;
  line-height: 1.7;
}

.footer-bottom strong { color: #777; }

.footer-eho {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #e0e0e0;
}
.eho-logo {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: #555;
}
.footer-eho span {
  font-size: 0.68rem;
  color: #555;
  line-height: 1.5;
  padding-top: 2px;
}

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }

.modal-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  width: 100%;
  max-width: 480px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

/* Lead-form modal: the form card brings its own card styling, so this wrapper is bare */
#lead-modal-inner {
  background: transparent;
  padding: 0;
  box-shadow: none;
  max-width: 460px;
  max-height: 92vh;
  overflow-y: auto;
}
#lead-modal-inner .modal-close {
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f3f5;
  border-radius: 50%;
  font-size: 1.05rem;
}
#modal-form-slot .form-card { margin: 0; }

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
}

/* ===== MEET LOAN LLAMA ===== */
.meet { background: var(--white); }
.meet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.meet-scene {
  background: linear-gradient(135deg, var(--green-light) 0%, #d0f0df 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6.5rem;
  position: relative;
  overflow: hidden;
}
.meet-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.scene-tag {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255,255,255,0.88);
  color: var(--text-muted);
  font-size: 0.68rem;
  padding: 4px 10px;
  border-radius: 999px;
}
.meet-copy .tagline {
  display: block;
  color: var(--green);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.3px;
  margin-bottom: 8px;
}
.meet-copy h2 { margin-bottom: 16px; }
.meet-copy p { font-size: 1.02rem; margin-bottom: 16px; }
.meet-values {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.meet-value { flex: 1; min-width: 140px; }
.meet-value strong {
  display: block;
  color: var(--green-dark);
  font-size: 1.02rem;
  margin-bottom: 4px;
}
.meet-value span { font-size: 0.86rem; color: var(--text-muted); }

/* ===== THE CALM JOURNEY ===== */
.journey { background: var(--tan); }
.journey-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.journey-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 18px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}
.journey-num {
  position: absolute;
  top: 12px;
  left: 14px;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--tan-dark);
}
.journey-scene {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--green-light) 0%, #d0f0df 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  overflow: hidden;
}
.journey-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.journey-stage {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.journey-card h3 { font-size: 1.0rem; margin-bottom: 8px; line-height: 1.3; }
.journey-card p { font-size: 0.84rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { flex-direction: column; gap: 24px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
  .meet-grid { grid-template-columns: 1fr; gap: 32px; }
  .journey-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 580px) {
  section { padding: 56px 0; }
  .loan-type-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .journey-grid { grid-template-columns: 1fr; }
}

/* ===== MODERN POLISH ===== */

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Hero → white wave divider (in normal flow — always flush, never drifts) */
.section-divider {
  line-height: 0;
  background: var(--white);
  margin-top: -1px;
}
.section-divider svg { width: 100%; height: 64px; display: block; }
.section-divider path { fill: var(--ink); }

/* Richer card hover lifts */
.product-card,
.step-card,
.journey-card,
.trust-card { transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease; }
.product-card:hover,
.journey-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.trust-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.04);
}

/* Product cards get a pink top accent on hover */
.product-card {
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--pink));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s ease;
}
.product-card:hover::before { transform: scaleX(1); }

/* Big CTA button — glow + sliding arrow */
.btn-cta-large {
  box-shadow: var(--shadow-pop);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.2s;
}
.btn-cta-large:hover {
  box-shadow: 0 24px 50px -12px rgba(20,184,92,0.55);
}

/* (Journey scene hover-zoom disabled) */

/* Form card lifts out of hero a touch */
.form-card { box-shadow: var(--shadow-lg); }

/* Section-header headline accent underline */
.section-header h2 { position: relative; display: inline-block; }
.section-header h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  margin: 16px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--green), var(--pink));
}

/* Hero entrance (CSS-only, safe without JS) */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}
.hero-copy { animation: heroIn 0.8s cubic-bezier(0.22,1,0.36,1) both; }
.form-card { animation: heroIn 0.8s cubic-bezier(0.22,1,0.36,1) 0.15s both; }
@media (prefers-reduced-motion: reduce) {
  .hero-copy, .form-card { animation: none; }
}

/* ===== FAQ ===== */
.faq { background: var(--white); }
.faq-list { max-width: 760px; margin: 48px auto 0; }
.faq-item {
  border: 1px solid rgba(11,20,17,0.10);
  border-radius: var(--radius);
  margin-bottom: 14px;
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item.open {
  border-color: rgba(20,184,92,0.45);
  box-shadow: var(--shadow);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  text-align: left;
}
.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  position: relative;
  color: var(--green);
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
}
.faq-icon::before { top: 11.75px; left: 4px; width: 18px; height: 2.5px; }
.faq-icon::after {
  left: 11.75px; top: 4px; width: 2.5px; height: 18px;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon::after { transform: scaleY(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}
.faq-a p {
  padding: 0 22px 22px;
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.7;
}
.faq-foot { text-align: center; margin-top: 40px; }
.faq-foot p { margin-bottom: 18px; font-size: 1.02rem; }

/* Honeypot — hidden from humans, bots fill it and get silently dropped */
.ll-hp {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
