/* =========================================================
   Clear Cut Lending Solutions — site styles
   Brand palette extracted from logo
   ========================================================= */

:root {
  --teal-900: #0e2c30;
  --teal-800: #163c41;
  --teal-700: #204d52;     /* primary brand */
  --teal-600: #2a6168;
  --teal-500: #3b7e86;
  --mint-300: #b4f6d0;     /* accent */
  --mint-400: #8fe5b7;
  --mint-500: #5fcc94;
  --cream:    #f6f4ee;
  --bg:       #ffffff;
  --bg-soft:  #f8faf9;
  --ink:      #14272a;
  --ink-soft: #4a5d60;
  --line:     #e6ece9;
  --shadow:   0 10px 30px rgba(20, 39, 42, 0.08);
  --radius:   16px;
  --radius-sm: 10px;
  --maxw:     1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
  color: var(--teal-700);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }
strong { color: var(--ink); }

a { color: var(--teal-700); text-decoration: none; transition: color .2s; }
a:hover { color: var(--teal-500); }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--teal-700);
}
.nav-brand img { height: 44px; width: 44px; border-radius: 8px; }
.nav-brand small { display: block; font-size: 0.7rem; font-weight: 400; color: var(--ink-soft); font-family: 'Inter', sans-serif; letter-spacing: 0.04em; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 6px 2px;
  position: relative;
}
.nav-links a.active,
.nav-links a:hover {
  color: var(--teal-700);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--mint-400);
  border-radius: 2px;
}

.nav-cta {
  background: var(--teal-700);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--teal-800); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 6px;
  color: var(--teal-700);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 80% 20%, rgba(180, 246, 208, 0.35), transparent 55%),
    linear-gradient(135deg, #163c41 0%, #204d52 60%, #2a6168 100%);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.4;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 110px 24px 130px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 0.3em;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--mint-300), var(--mint-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-kicker {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mint-300);
  background: rgba(180, 246, 208, 0.1);
  border: 1px solid rgba(180, 246, 208, 0.3);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-stats {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 540px;
}
.hero-stat .num {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  color: var(--mint-300);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat .lbl { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

.hero-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  padding: 32px;
  color: #fff;
  position: relative;
}
.hero-card h3 { color: #fff; margin-bottom: 18px; }
.hero-card .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-card label { display: block; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 6px; }
.hero-card input, .hero-card select {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
}
.hero-card input::placeholder { color: rgba(255,255,255,0.5); }
.hero-card input:focus, .hero-card select:focus { outline: none; border-color: var(--mint-300); background: rgba(255,255,255,0.15); }
.hero-card .form-field { margin-bottom: 14px; }
.hero-card button { width: 100%; margin-top: 6px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 1rem;
  border: 0;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  font-family: inherit;
}
.btn-primary {
  background: var(--mint-300);
  color: var(--teal-800);
}
.btn-primary:hover { background: var(--mint-400); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(143, 229, 183, 0.3); color: var(--teal-800); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover { border-color: var(--mint-300); color: var(--mint-300); transform: translateY(-2px); }

.btn-dark {
  background: var(--teal-700);
  color: #fff;
}
.btn-dark:hover { background: var(--teal-800); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(32, 77, 82, 0.22); }

/* ---------- Sections ---------- */
section { padding: 90px 0; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-head .kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-500);
  margin-bottom: 14px;
}
.section-head p { font-size: 1.08rem; }

.alt-bg { background: var(--bg-soft); }
.dark-bg { background: var(--teal-800); color: rgba(255,255,255,0.85); }
.dark-bg h1, .dark-bg h2, .dark-bg h3 { color: #fff; }
.dark-bg .section-head .kicker { color: var(--mint-300); }
.dark-bg p { color: rgba(255,255,255,0.78); }

/* ---------- Feature grid ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--mint-300); }
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--mint-300), var(--mint-500));
  display: grid;
  place-items: center;
  color: var(--teal-800);
  margin-bottom: 20px;
}
.feature-icon svg { width: 26px; height: 26px; }

.feature-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.feature-card p { font-size: 0.95rem; margin-bottom: 0; }
.feature-card .more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-weight: 500;
  font-size: 0.92rem;
}
.feature-card .more::after { content: "→"; transition: transform .2s; }
.feature-card .more:hover::after { transform: translateX(4px); }

/* ---------- Split (image+text) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.split.reverse { grid-template-columns: 1.1fr 1fr; }
.split.reverse .split-media { order: 2; }

.split-media {
  position: relative;
}
.split-media img {
  border-radius: var(--radius);
  width: 100%;
  height: auto;
}
.split-media .accent-tag {
  position: absolute;
  top: 24px;
  left: -16px;
  background: var(--mint-300);
  color: var(--teal-800);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: var(--shadow);
}
.split-media .floating-card {
  position: absolute;
  bottom: -28px;
  right: -16px;
  background: #fff;
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.split-media .floating-card .big {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  color: var(--teal-700);
  line-height: 1;
}
.split-media .floating-card .lbl {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 4px;
}

.split-content .kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-500);
  margin-bottom: 12px;
}

/* ---------- Process timeline ---------- */
.timeline {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--mint-300), var(--teal-500));
}
.step {
  display: flex;
  gap: 24px;
  padding: 18px 0 36px;
  position: relative;
}
.step-num {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal-700);
  color: var(--mint-300);
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  box-shadow: 0 0 0 6px var(--bg-soft);
  z-index: 1;
}
.step-content {
  flex: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.step-content h3 { margin-bottom: 8px; font-size: 1.2rem; }
.step-content p { margin-bottom: 0; font-size: 0.97rem; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-700), var(--teal-800));
  color: #fff;
  border-radius: 24px;
  padding: 60px 50px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, var(--mint-300), transparent 70%);
  opacity: 0.4;
  border-radius: 50%;
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 0; }
.cta-banner .actions { display: flex; gap: 14px; justify-content: flex-end; flex-wrap: wrap; position: relative; z-index: 1; }

/* ---------- Forms ---------- */
.form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field { margin-bottom: 16px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.97rem;
  font-family: inherit;
  background: #fff;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(143, 229, 183, 0.2);
}
.form-field textarea { min-height: 130px; resize: vertical; }

.form-success {
  display: none;
  background: rgba(143, 229, 183, 0.15);
  border: 1px solid var(--mint-400);
  color: var(--teal-700);
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-weight: 500;
}
.form-success.show { display: block; }

/* ---------- Calculator ---------- */
.calc {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.calc-inputs .form-field { margin-bottom: 22px; }
.calc-inputs .range-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}
.calc-inputs input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--line);
}
.calc-inputs input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--teal-700);
  border: 3px solid var(--mint-300);
  cursor: pointer;
}
.calc-inputs input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%; background: var(--teal-700); border: 3px solid var(--mint-300); cursor: pointer; border: none;
}
.calc-inputs .num-display {
  font-family: 'Fraunces', serif;
  color: var(--teal-700);
  font-size: 1.2rem;
  min-width: 110px;
  text-align: right;
}

.calc-results {
  background: linear-gradient(135deg, var(--teal-700), var(--teal-800));
  color: #fff;
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.calc-results .label {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mint-300);
  margin-bottom: 6px;
}
.calc-results .repayment {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 24px;
}
.calc-results .repayment .freq { font-size: 1rem; color: rgba(255,255,255,0.7); font-family: 'Inter', sans-serif; margin-left: 6px; }

.calc-breakdown { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 20px; }
.calc-breakdown div {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.95rem;
}
.calc-breakdown div span:last-child { font-weight: 600; color: #fff; }

/* ---------- Insights / services blocks ---------- */
.insight-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding: 50px 0;
  border-bottom: 1px solid var(--line);
}
.insight-block:last-child { border-bottom: 0; }
.insight-block .insight-title {
  position: sticky;
  top: 100px;
  align-self: start;
}
.insight-block .insight-title .num {
  font-family: 'Fraunces', serif;
  color: var(--mint-500);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 4px;
}
.insight-block .insight-title h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.insight-block .insight-body p { font-size: 1.02rem; }
.insight-block .insight-body ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.insight-block .insight-body ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--ink-soft);
}
.insight-block .insight-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--mint-300);
  border: 2px solid var(--teal-500);
}
.insight-block .insight-body ul li strong { color: var(--ink); display: block; }

/* ---------- Sub-page hero (smaller) ---------- */
.sub-hero {
  background: linear-gradient(135deg, #163c41 0%, #204d52 100%);
  color: #fff;
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
}
.sub-hero::before {
  content: "";
  position: absolute;
  right: -150px;
  bottom: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(180, 246, 208, 0.18), transparent 70%);
}
.sub-hero h1 { color: #fff; max-width: 760px; }
.sub-hero p { color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 680px; margin-bottom: 0; }
.sub-hero .breadcrumb {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mint-300);
  margin-bottom: 16px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--teal-900);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 28px;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.site-footer h4 { color: #fff; font-family: 'Inter', sans-serif; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px; font-weight: 600; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.site-footer a:hover { color: var(--mint-300); }
.site-footer .brand-row { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; }
.site-footer .brand-row img { height: 44px; width: 44px; border-radius: 8px; }
.site-footer .brand-row strong { color: #fff; font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.1rem; }
.site-footer p { color: rgba(255,255,255,0.65); font-size: 0.93rem; }
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 50px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; padding: 70px 24px 80px; gap: 40px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-media { order: 0; }
  .calc { grid-template-columns: 1fr; padding: 28px; }
  .cta-banner { grid-template-columns: 1fr; padding: 40px 28px; }
  .cta-banner .actions { justify-content: flex-start; }
  .insight-block { grid-template-columns: 1fr; gap: 18px; padding: 36px 0; }
  .insight-block .insight-title { position: static; }
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 70px 0; }
}

@media (max-width: 700px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 20px 24px; gap: 18px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: inline-flex; }
  .nav-cta { display: none; }
  .hero-card .field-row { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .site-footer .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .step { gap: 16px; }
  .step-num { width: 44px; height: 44px; flex-basis: 44px; font-size: 1rem; }
  .timeline::before { left: 22px; }
  h1 { font-size: 2rem; }
  .hero h1 { font-size: 2.2rem; }
}

/* ============================================================
   v2: animations, testimonials, maps, decorative graphics
   ============================================================ */

/* Animated hero background */
.hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(180, 246, 208, 0.35), transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(95, 204, 148, 0.22), transparent 60%),
    linear-gradient(135deg, #163c41 0%, #204d52 60%, #2a6168 100%);
  background-size: 200% 200%, 200% 200%, 100% 100%;
  animation: heroShift 22s ease-in-out infinite alternate;
}
@keyframes heroShift {
  0%   { background-position: 0% 0%, 100% 100%, 0 0; }
  100% { background-position: 100% 50%, 0% 50%, 0 0; }
}
.hero-inner { position: relative; z-index: 1; }

/* Floating SVG decoration */
.hero-shape {
  position: absolute;
  pointer-events: none;
  opacity: 0.5;
}
.hero-shape.s1 { top:  8%; left:  6%; width: 90px;  animation: floatY 8s ease-in-out infinite; }
.hero-shape.s2 { top: 65%; left:  4%; width: 60px;  animation: floatY 10s ease-in-out infinite reverse; }
.hero-shape.s3 { top: 12%; right:  8%; width: 70px;  animation: floatY 9s ease-in-out infinite 1s; }
.hero-shape.s4 { bottom: 8%; right: 12%; width: 110px; animation: floatRot 14s linear infinite; opacity: 0.22; }
.hero-shape.s5 { top: 40%; right: 28%; width: 36px; animation: floatY 7s ease-in-out infinite; opacity: 0.4; }
.hero-shape.s6 { bottom: 25%; left: 32%; width: 48px; animation: floatY 11s ease-in-out infinite 2s; opacity: 0.35; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-22px); }
}
@keyframes floatRot {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero-card { animation: cardIn 1.2s cubic-bezier(.2,.7,.3,1) both; }
@keyframes cardIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}

.hero-stat .num { animation: statPop 0.9s cubic-bezier(.2,.9,.3,1.4) both; animation-delay: 0.4s; }
.hero-stat:nth-child(2) .num { animation-delay: 0.55s; }
.hero-stat:nth-child(3) .num { animation-delay: 0.7s; }
@keyframes statPop {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

.feature-icon { transition: transform .35s; }
.feature-card:hover .feature-icon { transform: rotate(-6deg) scale(1.06); }

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
  margin-top: 24px;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--mint-300); }
.testimonial .stars {
  color: #f5b942;
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
  display: block;
}
.testimonial blockquote {
  margin: 0 0 22px;
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink);
  font-style: italic;
}
.testimonial .who {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.testimonial .who .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  color: var(--teal-800);
  background: linear-gradient(135deg, var(--mint-300), var(--mint-500));
  font-size: 1.05rem;
}
.testimonial .who .name { font-weight: 600; color: var(--ink); font-size: 0.95rem; }
.testimonial .who .role { font-size: 0.82rem; color: var(--ink-soft); }
.testimonial .quote-mark {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: 'Fraunces', serif;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--mint-300);
  opacity: 0.6;
  pointer-events: none;
}

/* Map cards */
.maps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 12px;
}
.map-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-card iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}
.map-card .map-info {
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.map-card .map-info .label {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-500);
  font-weight: 600;
  margin-bottom: 6px;
}
.map-card .map-info p { margin: 0; color: var(--ink); font-size: 0.96rem; }
.map-card .map-info a {
  flex: 0 0 auto;
  font-size: 0.85rem;
  color: var(--teal-700);
  font-weight: 500;
  white-space: nowrap;
}

/* Form banner */
.form-banner {
  background: rgba(143, 229, 183, 0.18);
  border: 1px solid var(--mint-400);
  color: var(--teal-700);
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 22px;
  font-weight: 500;
}
.form-banner.error {
  background: rgba(245, 100, 100, 0.1);
  border-color: #f56666;
  color: #a23030;
}

/* Animated nav underline */
.nav-links a:not(.nav-cta) { position: relative; }
.nav-links a:not(.nav-cta)::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--mint-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
  border-radius: 2px;
}
.nav-links a:not(.nav-cta):hover::before { tr