/* ============================================================
   Variation 1 — Coastal Light
   Send My Brother · property care & maintenance · Hermanus
   ============================================================ */

:root {
  --teal: #00B8C9;
  --teal-dark: #008894;
  --teal-soft: #E3F6F8;
  --teal-tint: #D2F0F3;
  --coral: #FF6B6B;
  --coral-dark: #E24F4F;
  --charcoal: #10131A;
  --charcoal-soft: #374151;
  --light: #F8FBFC;
  --white: #FFFFFF;
  --border: #E7EEF0;
  --muted: #5d6b78;

  --radius: 22px;
  --radius-sm: 14px;
  --shadow-soft: 0 18px 40px rgba(15, 19, 26, .08);
  --shadow-card: 0 10px 30px rgba(15, 19, 26, .06);
  --shadow-lift: 0 26px 54px rgba(15, 19, 26, .14);
  --max: 1180px;
  --ease: cubic-bezier(.22, .61, .36, 1);

  --font: 'Nunito', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --script: 'Dancing Script', cursive;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 800;
  font-size: .98rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(0, 184, 201, .32);
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(0, 184, 201, .42);
}
.btn-outline {
  background: transparent;
  color: var(--coral-dark);
  border-color: var(--coral);
}
.btn-outline:hover {
  background: var(--coral);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(255, 107, 107, .38);
}
.btn-block { width: 100%; }

/* ---------- Pills / eyebrows ---------- */
.pill {
  display: inline-block;
  font-weight: 900;
  font-size: .74rem;
  letter-spacing: .14em;
  padding: 8px 18px;
  border-radius: 999px;
}
.pill-coral {
  background: rgba(255, 107, 107, .14);
  color: var(--coral-dark);
}
.eyebrow {
  display: inline-block;
  font-weight: 900;
  font-size: .78rem;
  letter-spacing: .18em;
  color: var(--teal-dark);
  background: var(--teal-soft);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow-light {
  color: #7eeaf4;
  background: rgba(0, 184, 201, .16);
}

/* ---------- Script accents ---------- */
.script-note {
  font-family: var(--script);
  font-weight: 600;
  color: var(--teal-dark);
  font-size: 1.5rem;
  line-height: 1.3;
}
.heart { color: var(--coral); }

/* ---------- Section scaffolding ---------- */
.section { padding: 100px 0; position: relative; }
.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
  position: relative;
}
.section-title {
  font-weight: 900;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -.01em;
  position: relative;
  z-index: 1;
}
/* soft brush-stroke blob behind headings */
.section-head::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  height: 120px;
  background: radial-gradient(closest-side, rgba(0, 184, 201, .14), transparent 70%);
  filter: blur(4px);
  z-index: 0;
  pointer-events: none;
}
.section-lead {
  font-size: 1.12rem;
  color: var(--muted);
  margin-top: 16px;
}
.section-body {
  font-size: 1.05rem;
  color: var(--muted);
  margin-top: 14px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(248, 251, 252, .72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 8px 28px rgba(15, 19, 26, .08);
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.nav-logo img { width: 150px; height: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  font-weight: 700;
  font-size: .95rem;
  color: var(--charcoal-soft);
  padding: 8px 12px;
  border-radius: 999px;
  position: relative;
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.nav-link:hover { color: var(--teal-dark); }
.nav-link.active {
  color: var(--teal-dark);
  background: var(--teal-soft);
}
.nav-cta { margin-left: 10px; padding: 11px 22px; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  margin: 0 auto;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 150px 0 130px;
  overflow: hidden;
}
.hero-wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 78% 12%, rgba(0, 184, 201, .16), transparent 70%),
    radial-gradient(50% 45% at 12% 0%, rgba(0, 184, 201, .10), transparent 70%),
    radial-gradient(40% 40% at 90% 80%, rgba(255, 107, 107, .08), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 50px;
}
.hero-title {
  font-weight: 900;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -.02em;
  margin: 22px 0 18px;
}
.hero-title .line { display: block; }
.hero-title .line-accent {
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.heart-inline {
  width: 36px;
  height: 36px;
  color: var(--coral);
  flex: none;
  animation: heartbeat 2.4s ease-in-out infinite;
}
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  12% { transform: scale(1.18); }
  24% { transform: scale(1); }
}
.hero-lead {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-blob {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 108%;
  max-width: 520px;
  aspect-ratio: 1 / 1.04;
  background: linear-gradient(155deg, var(--teal-tint), #eafafb 60%, rgba(255, 107, 107, .08));
  border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
  box-shadow: var(--shadow-soft);
}
.hero-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  filter: drop-shadow(0 24px 30px rgba(15, 19, 26, .18));
}
.hero-script {
  position: absolute;
  z-index: 2;
  right: -6px;
  bottom: 6px;
  background: var(--white);
  padding: 8px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-card);
  font-size: 1.35rem;
}

/* Trust bar */
.trust-bar {
  position: relative;
  z-index: 2;
  margin-top: 64px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 26px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-icon {
  flex: none;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--teal-soft);
  color: var(--teal-dark);
}
.trust-icon svg { width: 24px; height: 24px; }
.trust-item h3 { font-size: 1rem; font-weight: 800; }
.trust-item p { font-size: .88rem; color: var(--muted); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.role-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.role-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.role-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.role-card:hover::before { transform: scaleX(1); }
.role-head { display: flex; align-items: flex-end; gap: 18px; margin-bottom: 22px; }
.role-img {
  width: 96px;
  height: auto;
  flex: none;
  filter: drop-shadow(0 10px 14px rgba(15, 19, 26, .14));
}
.role-head h3 { font-size: 1.5rem; font-weight: 900; }
.role-sub { color: var(--muted); font-size: .98rem; }
.role-list { display: grid; gap: 12px; }
.role-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .98rem; }
.tick {
  flex: none;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-dark);
}
.tick svg { width: 15px; height: 15px; }
.about-close { text-align: center; margin-top: 44px; font-size: 1.6rem; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: linear-gradient(180deg, var(--white), var(--light)); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card-accent {
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), #4fd6e3);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.service-card:hover .card-accent { transform: scaleX(1); }
.service-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  margin-bottom: 20px;
  transition: background-color .3s var(--ease), transform .3s var(--ease);
}
.service-icon svg { width: 30px; height: 30px; }
.service-card:hover .service-icon { transform: scale(1.06) rotate(-3deg); background: var(--teal-tint); }
.service-card h3 { font-size: 1.22rem; font-weight: 800; margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: .96rem; }

.services-footer {
  margin-top: 48px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 36px 28px;
}
.services-footer-text {
  font-size: 1.1rem;
  font-weight: 700;
  max-width: 620px;
  margin: 0 auto 22px;
}
.services-footer-note { display: block; margin-top: 14px; color: var(--muted); font-size: .92rem; }

/* ============================================================
   EXPERIENCE
   ============================================================ */
.experience { position: relative; }
.exp-script { margin-top: 18px; font-size: 1.7rem; color: var(--coral-dark); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 34px 24px;
  text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.stat-number {
  display: block;
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  line-height: 1;
  color: var(--teal);
  margin-bottom: 12px;
}
.stat-number.stat-text { font-size: clamp(1.8rem, 4vw, 2.3rem); color: var(--coral); }
.stat-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.stat-card p { color: var(--muted); font-size: .9rem; }
.exp-close { text-align: center; margin-top: 44px; font-size: 1.7rem; }

/* ============================================================
   WHY CHOOSE US — DARK
   ============================================================ */
.why-us {
  background:
    radial-gradient(50% 60% at 85% 10%, rgba(0, 184, 201, .18), transparent 70%),
    radial-gradient(40% 50% at 10% 90%, rgba(255, 107, 107, .10), transparent 70%),
    var(--charcoal);
  color: #e8eef2;
}
.why-us .section-title { color: #fff; }
.why-us .section-lead { color: #aeb9c2; }
.why-us .section-head::before { background: radial-gradient(closest-side, rgba(0, 184, 201, .28), transparent 70%); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--radius);
  padding: 30px 24px;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease), background-color .3s var(--ease);
}
.why-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.why-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .07);
  border-color: rgba(0, 184, 201, .4);
}
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(0, 184, 201, .16);
  color: #5fe1ef;
  margin-bottom: 18px;
}
.why-icon svg { width: 27px; height: 27px; }
.why-card h3 { font-size: 1.18rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.why-card p { color: #b6c1ca; font-size: .94rem; margin-bottom: 16px; }
.why-tag {
  display: inline-block;
  font-family: var(--script);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--coral);
}
.why-close { text-align: center; margin-top: 48px; font-size: 1.8rem; color: #7eeaf4; }

/* ============================================================
   PLANS
   ============================================================ */
.plans { background: linear-gradient(180deg, var(--light), var(--white)); }
.plans-note { margin-top: 18px; font-size: 1.45rem; color: var(--coral-dark); }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: center;
}
.plan-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 36px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.plan-featured {
  transform: scale(1.05);
  border: 2px solid var(--teal);
  box-shadow: var(--shadow-lift);
  z-index: 1;
}
.plan-featured:hover { transform: scale(1.05) translateY(-6px); }
.plan-ribbon {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--coral);
  color: #fff;
  font-weight: 900;
  font-size: .72rem;
  letter-spacing: .1em;
  padding: 8px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(255, 107, 107, .4);
  white-space: nowrap;
}
.plan-ribbon svg { width: 14px; height: 14px; }
.plan-name { font-size: 1.5rem; font-weight: 900; }
.plan-tag { color: var(--muted); font-size: .96rem; margin-top: 4px; }
.plan-price { margin: 20px 0 24px; display: flex; align-items: baseline; gap: 4px; }
.plan-price .amount { font-size: 2.6rem; font-weight: 900; color: var(--teal); }
.plan-featured .plan-price .amount { color: var(--teal-dark); }
.plan-price .period { color: var(--muted); font-weight: 700; }
.plan-list { display: grid; gap: 13px; margin-bottom: 28px; flex: 1; }
.plan-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; }
.plan-cta { width: 100%; margin-top: auto; }

.plans-closing { text-align: center; margin-top: 50px; }
.plans-closing p { color: var(--muted); margin-bottom: 6px; }
.plans-closing .script-note { color: var(--teal-dark); font-size: 1.5rem; margin-top: 12px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.process-sub {
  font-family: var(--script);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--coral-dark);
  margin-top: 6px;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-tint), var(--teal), var(--teal-tint));
  border-radius: 3px;
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-weight: 900;
  font-size: 1.4rem;
  box-shadow: 0 10px 22px rgba(0, 184, 201, .35);
  border: 4px solid var(--light);
  transition: transform .3s var(--ease), background-color .3s var(--ease);
}
.step:hover .step-num { transform: translateY(-5px) scale(1.05); background: var(--teal-dark); }
.step h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .92rem; }
.process-closing { text-align: center; margin-top: 52px; }
.process-closing .script-note { font-size: 1.65rem; margin-bottom: 22px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: linear-gradient(180deg, var(--white), var(--light)); }
.contact-sub {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--teal-dark);
  margin-top: 8px;
}
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  align-items: start;
}
.contact-block {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  padding: 18px 20px;
  margin-bottom: 16px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
a.contact-block:hover { transform: translateX(4px); box-shadow: var(--shadow-soft); }
.contact-icon {
  flex: none;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--teal-soft);
  color: var(--teal-dark);
}
.contact-icon svg { width: 24px; height: 24px; }
.contact-label { display: block; font-size: .8rem; color: var(--muted); font-weight: 700; }
.contact-value { display: block; font-weight: 800; font-size: 1.05rem; }
.contact-promise { margin-top: 22px; font-size: 1.45rem; line-height: 1.4; }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 34px;
}
.contact-form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-weight: 700; font-size: .88rem; color: var(--charcoal-soft); }
.field input,
.field select,
.field textarea {
  font-family: var(--font);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--light);
  color: var(--charcoal);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 184, 201, .14);
}
.field input[type="file"] { padding: 9px 12px; background: var(--light); cursor: pointer; }
.form-success {
  background: var(--teal-soft);
  border: 1.5px solid var(--teal);
  color: var(--teal-dark);
  font-weight: 800;
  text-align: center;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
}
.form-foot { font-size: .9rem; color: var(--muted); margin-top: 16px; text-align: center; }
.form-foot-urgent { font-weight: 700; color: var(--charcoal-soft); }
.form-foot-urgent a { color: var(--teal-dark); font-weight: 800; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  color: #c7d0d8;
  padding: 64px 0 32px;
  text-align: center;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.footer-brand img { width: 180px; height: auto; margin-bottom: 14px; }
.footer-tagline { font-weight: 800; color: #fff; font-size: 1.2rem; }
.footer-script { color: #7eeaf4; font-size: 1.5rem; margin-bottom: 6px; }
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  font-size: .94rem;
  margin: 18px 0;
}
.footer-contact li { color: #c7d0d8; }
.footer-contact li[aria-hidden] { color: #4a5560; }
.footer-copy {
  font-size: .85rem;
  color: #7d8893;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 24px;
  margin-top: 14px;
  width: 100%;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .heart-inline { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .timeline::before { display: none; }
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 78px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--white);
    padding: 18px 24px 28px;
    box-shadow: 0 20px 40px rgba(15, 19, 26, .12);
    border-bottom: 1px solid var(--border);
    transform: translateY(-130%);
    transition: transform .35s var(--ease);
    max-height: calc(100vh - 78px);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-link { padding: 13px 14px; font-size: 1.05rem; }
  .nav-cta { margin: 8px 0 0; text-align: center; }
  .hamburger { display: flex; }

  .hero { padding: 124px 0 90px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-text { order: 2; }
  .hero-visual { order: 1; }
  .hero-title .line-accent { justify-content: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-img { max-width: 320px; }
  .hero-blob { max-width: 380px; }

  .plans-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .plan-featured { transform: none; order: -1; }
  .plan-featured:hover { transform: translateY(-6px); }
}

@media (max-width: 680px) {
  .section { padding: 72px 0; }
  .trust-bar { grid-template-columns: 1fr 1fr; padding: 22px; gap: 18px; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 26px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .trust-bar { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 20px; }
  .role-head { flex-direction: column; align-items: flex-start; }
  .hero-script { right: 50%; transform: translateX(50%); bottom: -10px; font-size: 1.15rem; }
}
