/* =========================================
   BLACKKEY.HOMES — Wise Color Palette
   Wise exact colors:
     #9FE870  Lime green (primary brand)
     #163300  Dark forest green ("black")
     #7BC855  Lime green hover
     #E9F9DC  Lime green soft bg
     #F5F3EF  Warm light bg
     #FFFFFF  White
     #888888  Medium gray
     #E5E7EB  Border gray
   ========================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #163300;
  background: #FFFFFF;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

/* ===== UTILITIES ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

.bg-white      { background: #FFFFFF; }
.bg-light      { background: #F5F3EF; }
.bg-dark       { background: #163300; }
.bg-green-soft { background: #E9F9DC; }

.section { padding: 100px 0; }

/* ===== TYPOGRAPHY ===== */
.eyebrow-green {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #163300;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.6;
}
.eyebrow-center {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #163300;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-align: center;
  opacity: 0.6;
}

.section-big-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: #163300;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 60px;
}
.section-big-title.white { color: #FFFFFF; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  line-height: 1;
  font-family: inherit;
}

/* Wise: lime green button with DARK text */
.btn-green {
  background: #9FE870;
  color: #163300;
  border-color: #9FE870;
}
.btn-green:hover {
  background: #7BC855;
  border-color: #7BC855;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(159,232,112,0.4);
}

/* Wise: dark forest green button */
.btn-dark {
  background: #163300;
  color: #FFFFFF;
  border-color: #163300;
}
.btn-dark:hover { background: #0e2200; border-color: #0e2200; transform: translateY(-1px); }

.btn-outline-dark {
  background: transparent;
  color: #163300;
  border-color: #163300;
}
.btn-outline-dark:hover { background: #163300; color: #FFFFFF; }

.btn-outline-white {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: #FFFFFF; }

.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-xl { padding: 20px 44px; font-size: 17px; }
.btn-full { width: 100%; }

.btn-sm-green {
  display: inline-block;
  padding: 10px 20px;
  background: #9FE870;
  color: #163300;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-sm-green:hover { background: #7BC855; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FFFFFF;
  border-bottom: 1px solid #E5E7EB;
  transition: box-shadow 0.2s;
}
.header.scrolled { box-shadow: 0 4px 24px rgba(22,51,0,0.08); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  display: block;
  width: auto;
  height: 58px;
}

.logo-white {
  padding: 8px 10px;
  border-radius: 14px;
  background: #FFFFFF;
  width: fit-content;
}

.nav { display: flex; gap: 32px; flex: 1; }
.nav a { text-decoration: none; color: #163300; font-size: 14px; font-weight: 500; transition: color 0.2s; opacity: 0.75; }
.nav a:hover { color: #163300; opacity: 1; }

.header-actions { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.header-phone { text-decoration: none; color: #163300; font-weight: 700; font-size: 14px; }
.header-phone:hover { color: #9FE870; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span { display: block; width: 24px; height: 2px; background: #163300; border-radius: 2px; transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 28px 24px;
  border-top: 1px solid #E5E7EB;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 10px 0; text-decoration: none; color: #163300; font-weight: 500; border-bottom: 1px solid #F5F3EF; }
.mobile-nav a:last-child { border-bottom: none; }

/* ===== HERO ===== */
.hero { background: #FFFFFF; overflow: hidden; }

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px;
  align-items: start;
  padding-top: 80px;
  padding-bottom: 60px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.hero-eyebrow { margin-bottom: 24px; }

.badge {
  display: inline-block;
  background: #E9F9DC;
  color: #163300;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 40px;
  letter-spacing: 0.3px;
}

.hero-content h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.0;
  color: #163300;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.headline-green { color: #9FE870; }

.hero-sub {
  font-size: 18px;
  color: #888888;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust { display: flex; gap: 12px; flex-wrap: wrap; }

.trust-pill {
  background: #F5F3EF;
  color: #163300;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 40px;
}

.hero-form-card {
  width: 100%;
  max-width: 560px;
  margin-top: 32px;
  background: #163300;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 70px rgba(22,51,0,0.16);
}

.hero-form-header {
  margin-bottom: 18px;
}

.hero-form-header h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 8px;
}

.hero-form-header p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.hero-stack-form {
  display: grid;
  gap: 12px;
}

.hero-stack-form input {
  width: 100%;
  padding: 16px 20px;
  border-radius: 14px;
  border: 2px solid rgba(159,232,112,0.16);
  background: rgba(255,255,255,0.08);
  color: #FFFFFF;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
}

.hero-stack-form input::placeholder {
  color: rgba(255,255,255,0.45);
}

.hero-stack-form input:focus {
  outline: none;
  border-color: #9FE870;
  background: rgba(255,255,255,0.12);
}

.hero-form-note {
  margin-top: 14px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.56);
}

.hero-form-note a {
  color: #9FE870;
  text-decoration: none;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 0;
  padding-left: 52px;
}

.hero-photo-frame {
  width: 100%;
  max-width: 500px;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(22,51,0,0.18);
  border: 8px solid #FFFFFF;
  margin-left: auto;
}

.hero-photo-frame img {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22,51,0,0.04) 0%, rgba(22,51,0,0.38) 100%);
}

.hero-photo-badge {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 12px 32px rgba(22,51,0,0.12);
}

.hero-photo-badge strong {
  display: block;
  font-size: 15px;
  color: #163300;
  margin-bottom: 4px;
}

.hero-photo-badge span {
  font-size: 13px;
  color: #5c6f4e;
}

.hero-card-float {
  position: absolute;
  background: #FFFFFF;
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 40px rgba(22,51,0,0.12);
  font-size: 13px;
  white-space: nowrap;
  z-index: 2;
}
.card-float-1 { top: 10%; left: 0; }
.card-float-2 { bottom: 20%; right: -10px; }

.float-icon {
  min-width: 44px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #E9F9DC;
  color: #163300;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-align: center;
}
.float-info { display: flex; flex-direction: column; }
.float-info strong { font-size: 13px; font-weight: 700; color: #163300; }
.float-info span { font-size: 11px; color: #888888; }
.float-check { color: #9FE870; font-size: 18px; font-weight: 700; margin-left: 8px; }

/* Hero Form — Wise dark forest green bar */
.hero-form-wrap {
  background: #163300;
  padding: 56px 0;
}

.hero-form-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}

.form-headline h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 8px;
}
.form-headline p { color: rgba(255,255,255,0.5); font-size: 14px; }

.inline-form {
  display: flex;
  gap: 12px;
  flex: 1;
  flex-wrap: wrap;
}

.inline-form input {
  flex: 1;
  min-width: 180px;
  padding: 16px 20px;
  border-radius: 40px;
  border: 2px solid rgba(159,232,112,0.2);
  background: rgba(255,255,255,0.07);
  color: #FFFFFF;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s;
}
.inline-form input::placeholder { color: rgba(255,255,255,0.35); }
.inline-form input:focus { outline: none; border-color: #9FE870; }

.form-micro {
  color: rgba(255,255,255,0.3);
  font-size: 12px;
  margin-top: 10px;
  text-align: center;
  flex-basis: 100%;
}
.form-micro a { color: #9FE870; text-decoration: none; }

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: #F5F3EF;
  padding: 24px 0;
  border-bottom: 1px solid #E5E7EB;
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #163300;
  font-size: 14px;
  font-weight: 500;
}
.trust-item svg { color: #163300; flex-shrink: 0; opacity: 0.7; }
.trust-sep { color: #888888; font-size: 20px; }

/* ===== SPLIT SECTIONS ===== */
.section-split { padding: 100px 0; }

.split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.flip-split .split-inner { direction: rtl; }
.flip-split .split-inner > * { direction: ltr; }

.split-text { display: flex; flex-direction: column; gap: 0; }
.split-visual { display: flex; flex-direction: column; gap: 24px; }

.split-headline {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #163300;
  line-height: 1.1;
  margin-bottom: 20px;
}

.split-body {
  color: #888888;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 28px;
}

/* Steps list */
.steps-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }

.step-row { display: flex; gap: 20px; align-items: flex-start; }

.step-num {
  font-size: 11px;
  font-weight: 800;
  color: #163300;
  letter-spacing: 1px;
  padding-top: 3px;
  flex-shrink: 0;
  min-width: 28px;
  opacity: 0.5;
}

.step-detail { display: flex; flex-direction: column; gap: 4px; }
.step-detail strong { font-size: 16px; font-weight: 700; color: #163300; }
.step-detail span { font-size: 14px; color: #888888; }

/* Check list */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: #163300; font-weight: 500; }
.chk { color: #163300; font-size: 17px; font-weight: 700; flex-shrink: 0; }

/* Process card stack */
.process-card-stack { display: flex; flex-direction: column; gap: 16px; }

.section-photo-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(22,51,0,0.12);
  min-height: 280px;
}

.section-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.section-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22,51,0,0.02) 0%, rgba(22,51,0,0.18) 100%);
}

.process-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #FFFFFF;
  border-radius: 14px;
  padding: 20px 24px;
  border: 2px solid #E5E7EB;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.process-card.active-card {
  border-color: #9FE870;
  box-shadow: 0 8px 30px rgba(159,232,112,0.25);
}

.pc-icon { font-size: 28px; flex-shrink: 0; }
.pc-body { flex: 1; display: flex; flex-direction: column; }
.pc-body strong { font-size: 15px; font-weight: 700; color: #163300; }
.pc-body span { font-size: 13px; color: #888888; margin-top: 2px; }

.pc-status { font-size: 16px; font-weight: 800; flex-shrink: 0; }
.pc-status.done { color: #9FE870; }
.pc-status.pending { color: #888888; }

/* ===== BOLD CALLOUT — Wise dark forest green ===== */
.bold-callout {
  background: #163300;
  padding: 100px 0;
  text-align: center;
}

.callout-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #9FE870;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.callout-headline {
  font-size: clamp(42px, 8vw, 90px);
  font-weight: 900;
  color: #9FE870;
  line-height: 0.95;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.callout-body {
  color: rgba(255,255,255,0.5);
  font-size: 18px;
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.callout-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== COMPARISON TABLE ===== */
.comp-table {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid #E5E7EB;
}

.comp-header, .comp-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
}

.comp-row.alt { background: #F5F3EF; }

.comp-header { background: #163300; }

.comp-cell {
  padding: 18px 24px;
  font-size: 15px;
  display: flex;
  align-items: center;
}

.comp-head-traditional {
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  justify-content: center;
}

/* Wise: lime green header for Blackkey column */
.comp-head-blackkey {
  background: #9FE870;
  color: #163300;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  justify-content: center;
  gap: 8px;
}

.comp-label {
  font-size: 14px;
  font-weight: 600;
  color: #163300;
}

.comp-cell.trad, .comp-cell.bk {
  justify-content: center;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}

.bad { color: #cc4444; }
.good { color: #163300; }

.comp-cta { text-align: center; margin-top: 40px; }

/* ===== SITUATIONS — dark forest green sections ===== */
.sit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(159,232,112,0.08);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 24px;
}

.sit-card {
  background: #1a3d00;
  padding: 0 32px 40px;
  transition: background 0.2s;
}
.sit-card:hover { background: #1f4a00; }

.sit-photo {
  width: calc(100% + 64px);
  height: 180px;
  object-fit: cover;
  display: block;
  margin: 0 -32px 24px;
  border-bottom: 1px solid rgba(159,232,112,0.12);
}

.sit-num {
  font-size: 11px;
  font-weight: 800;
  color: #9FE870;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.sit-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.sit-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ===== STATES SCROLL STRIP — lime green ===== */
.states-strip {
  background: #9FE870;
  padding: 0;
  overflow: hidden;
}

.states-track { overflow: hidden; padding: 18px 0; }

.states-inner {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: scrollStates 40s linear infinite;
  width: max-content;
}

.states-inner span {
  display: inline-block;
  color: #163300;
  font-size: 14px;
  font-weight: 700;
  padding: 0 28px;
  border-right: 1px solid rgba(22,51,0,0.2);
}

@keyframes scrollStates {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== TRUST METRICS ===== */
.trust-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.metric-card {
  background: #F5F3EF;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 2px solid #E5E7EB;
}
.metric-card.mc-green { background: #E9F9DC; border-color: #c5f0a0; }
.metric-card.mc-dark  { background: #163300; border-color: #163300; }
.metric-card.mc-dark .metric-num   { color: #9FE870; }
.metric-card.mc-dark .metric-label { color: rgba(255,255,255,0.45); }

.metric-num {
  font-size: 52px;
  font-weight: 900;
  color: #163300;
  line-height: 1;
  letter-spacing: -2px;
}
.metric-num sup { font-size: 24px; font-weight: 700; vertical-align: super; }

.mc-green .metric-num { color: #163300; }

.metric-label {
  font-size: 14px;
  color: #888888;
  font-weight: 500;
  line-height: 1.4;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: #F5F3EF;
  padding: 100px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}

.testi-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 36px 32px;
  border: 2px solid #E5E7EB;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testi-card:hover { box-shadow: 0 12px 40px rgba(22,51,0,0.08); transform: translateY(-2px); }

.testi-stars { font-size: 22px; color: #F59E0B; letter-spacing: 2px; }

.testi-card blockquote {
  font-size: 15px;
  color: #163300;
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  opacity: 0.8;
}

.testi-author { display: flex; align-items: center; gap: 14px; }

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  border: 2px solid #E9F9DC;
}

.testi-author strong { display: block; font-size: 14px; color: #163300; }
.testi-author span { font-size: 12px; color: #888888; }

/* ===== FORM CARD ===== */
.form-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(22,51,0,0.10);
  border: 2px solid #E5E7EB;
}

.form-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: #163300;
  margin-bottom: 24px;
}

.form-card form { display: flex; flex-direction: column; gap: 12px; }

.form-card input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #E5E7EB;
  border-radius: 10px;
  font-size: 15px;
  color: #163300;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-card input::placeholder { color: #888888; }
.form-card input:focus { outline: none; border-color: #9FE870; box-shadow: 0 0 0 3px rgba(159,232,112,0.2); }

.form-micro-left {
  font-size: 11px;
  color: #888888;
  line-height: 1.6;
}
.form-micro-left a { color: #163300; text-decoration: underline; }

.or-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #888888;
  font-size: 13px;
}
.or-divider::before, .or-divider::after { content: ''; flex: 1; height: 1px; background: #E5E7EB; }

/* ===== FAQ ===== */
.faq-wrap { max-width: 760px; }

.faq-list {
  margin-top: 16px;
  border: 2px solid #E5E7EB;
  border-radius: 16px;
  overflow: hidden;
}

.faq-item { border-bottom: 1px solid #E5E7EB; }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  background: #FFFFFF;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: #163300;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.faq-q:hover { background: #F5F3EF; }
.faq-item.open .faq-q { background: #E9F9DC; color: #163300; }

.faq-arr {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #888888;
  transition: transform 0.3s;
}
.faq-item.open .faq-arr { transform: rotate(180deg); color: #163300; }

.faq-a { display: none; padding: 0 28px 24px; background: #E9F9DC; }
.faq-item.open .faq-a { display: block; }
.faq-a p { color: #163300; font-size: 15px; line-height: 1.8; opacity: 0.7; }

/* ===== FINAL CTA — lime green Wise style ===== */
.final-cta {
  background: #9FE870;
  padding: 100px 0;
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  color: #163300;
  line-height: 1.05;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.final-cta p {
  color: rgba(22,51,0,0.6);
  font-size: 18px;
  margin-bottom: 40px;
}

.final-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.final-photo-strip img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 22px;
  display: block;
  box-shadow: 0 16px 30px rgba(22,51,0,0.12);
}

.final-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.final-cta .btn-green { background: #163300; color: #9FE870; border-color: #163300; }
.final-cta .btn-green:hover { background: #0e2200; box-shadow: 0 6px 20px rgba(22,51,0,0.3); }
.final-cta .btn-outline-white { border-color: rgba(22,51,0,0.4); color: #163300; }
.final-cta .btn-outline-white:hover { background: rgba(22,51,0,0.08); border-color: #163300; }

/* ===== FOOTER ===== */
.footer { background: #163300; color: rgba(255,255,255,0.5); }

.footer-top {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  padding: 72px 28px 56px;
  max-width: 1160px;
  margin: 0 auto;
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 16px; max-width: 240px; }
.footer-phone { display: block; color: #9FE870; font-weight: 700; font-size: 16px; text-decoration: none; }

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 8px;
}

.footer-col h5 { color: #FFFFFF; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.footer-col a { display: block; color: rgba(255,255,255,0.4); text-decoration: none; font-size: 14px; margin-bottom: 12px; transition: color 0.2s; }
.footer-col a:hover { color: #9FE870; }

.footer-areas {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 28px;
}
.footer-areas .container { max-width: 1160px; margin: 0 auto; }
.footer-areas p, .footer-areas div { font-size: 12px; line-height: 1.9; }
.footer-areas strong { color: rgba(255,255,255,0.55); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 28px;
}
.footer-bottom .container { max-width: 1160px; margin: 0 auto; text-align: center; }
.footer-bottom p { font-size: 13px; }
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-bottom a:hover { color: #9FE870; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; padding-top: 60px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { margin: 0 auto 48px; padding: 0 28px; }
  .hero-photo-frame { max-width: 720px; }
  .card-float-1 { left: 12px; }
  .card-float-2 { right: 24px; }
  .hero-form-inner { flex-direction: column; gap: 28px; }
  .inline-form { justify-content: center; }
  .split-inner { grid-template-columns: 1fr; gap: 48px; }
  .flip-split .split-inner { direction: ltr; }
  .trust-metrics { grid-template-columns: repeat(2, 1fr); }
  .sit-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .comp-cell { padding: 14px 16px; }
  .footer-top { grid-template-columns: 1fr; }
  .final-photo-strip { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; margin-bottom: 32px; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .header-actions { display: none; }
  .hamburger { display: flex; }
  .section-split, .section { padding: 70px 0; }
  .sit-grid { grid-template-columns: 1fr; }
  .trust-metrics { grid-template-columns: 1fr 1fr; }
  .comp-header, .comp-row { grid-template-columns: 1.5fr 1fr 1fr; }
  .bold-callout { padding: 70px 0; }
  .final-cta { padding: 70px 0; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .form-card { padding: 28px 24px; }
  .section-photo-card img,
  .section-photo-card { min-height: 220px; }
  .sit-photo { height: 160px; }
  .hero-card-float { display: none; }
  .hero-photo-frame img { height: 380px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 38px; letter-spacing: -0.5px; }
  .callout-headline { font-size: 40px; letter-spacing: -1px; }
  .trust-metrics { grid-template-columns: 1fr; }
  .comp-header, .comp-row { grid-template-columns: 1fr 0.8fr 0.8fr; }
  .comp-cell { padding: 12px 10px; font-size: 12px; }
  .footer-nav { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 320px; }
}
