/* ============================================================
   Sparkly & Co. — Cleaning Services
   Palette, type, motion system
   ============================================================ */

:root {
  /* Brand */
  --navy:        #15264E;
  --navy-deep:   #0E1A38;
  --navy-soft:   #1E335F;
  --gold:        #BF9A4A;
  --gold-bright: #D4B45F;
  --gold-soft:   #E7D6A6;
  --green:       #4C7A39;
  --green-soft:  #6E9A52;

  /* Neutrals */
  --cream:       #F6F2E9;
  --cream-2:     #FBF8F1;
  --paper:       #FFFFFF;
  --ink:         #1A2236;
  --ink-soft:    #45506B;
  --line:        #E6DFD0;

  /* Type */
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Manrope", system-ui, sans-serif;
  --script:"Pinyon Script", cursive;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --shadow-sm: 0 2px 10px rgba(21,38,78,.06);
  --shadow-md: 0 18px 44px -20px rgba(21,38,78,.28);
  --shadow-lg: 0 40px 80px -32px rgba(14,26,56,.45);

  --maxw: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { margin: 0; font-weight: 600; line-height: 1.08; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

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

/* ---------- Reusable bits ---------- */
.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center::after {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold);
  display: inline-block;
}

.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: .01em;
  color: var(--navy);
}
.section-title em { font-style: italic; color: var(--gold); }

.lede { color: var(--ink-soft); font-size: 18px; max-width: 60ch; }

.btn {
  --bg: var(--gold);
  --fg: var(--navy-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  background: var(--bg);
  color: var(--fg);
  border: 1.5px solid var(--bg);
  cursor: pointer;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .3s, color .3s;
  box-shadow: 0 12px 26px -12px rgba(191,154,74,.7);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 20px 38px -14px rgba(191,154,74,.85); }
.btn svg { width: 18px; height: 18px; }
.btn.ghost {
  --bg: transparent; --fg: var(--navy);
  border-color: rgba(21,38,78,.22);
  box-shadow: none;
}
.btn.ghost:hover { background: var(--navy); color: #fff; border-color: var(--navy); box-shadow: var(--shadow-md); }
.btn.light { --bg: #fff; --fg: var(--navy); box-shadow: 0 14px 30px -16px rgba(0,0,0,.4); }
.btn.wa { --bg: #25D366; --fg: #06321a; box-shadow: 0 12px 26px -12px rgba(37,211,102,.6); }

/* sparkle motif */
.sparkle {
  position: absolute;
  background:
    radial-gradient(closest-side, var(--gold-bright), transparent 70%) center/100% 100% no-repeat;
  clip-path: polygon(50% 0, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0 50%, 40% 40%);
  background: var(--gold-bright);
  pointer-events: none;
  opacity: .9;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--navy-deep);
  color: #cdd6ea;
  font-size: 13.5px;
  letter-spacing: .02em;
}
.topbar .wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 42px; gap: 18px;
}
.topbar a { color: #cdd6ea; transition: color .25s; }
.topbar a:hover { color: var(--gold-bright); }
.topbar .tb-left { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.topbar .tb-item { display: inline-flex; align-items: center; gap: 8px; }
.topbar svg { width: 14px; height: 14px; opacity: .8; }
.topbar .tb-socials { display: flex; gap: 14px; align-items: center; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(246,242,233,.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .35s, box-shadow .35s, border-color .35s;
}
.nav.scrolled { background: rgba(251,248,241,.92); box-shadow: var(--shadow-sm); border-color: var(--line); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 24px; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-weight: 600; font-size: 15px; color: var(--navy);
  position: relative; padding: 6px 0; white-space: nowrap;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: .3s; }

/* ---------- Logo ---------- */
.logo { display: flex; flex-direction: column; line-height: .9; user-select: none; }
.logo .l-main {
  font-family: var(--serif); font-weight: 600; color: var(--navy);
  font-size: 30px; letter-spacing: .14em; display: flex; align-items: center; gap: 6px;
}
.logo .l-main .spk { position: relative; }
.logo .l-sub {
  font-family: var(--sans); font-weight: 700; font-size: 9.5px;
  letter-spacing: .42em; color: var(--gold); margin-top: 4px; padding-left: 3px;
}
.logo .l-amp { color: var(--gold); font-style: italic; }
.logo .star { color: var(--gold); font-size: 16px; transform: translateY(-8px); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: 64px 0 90px; overflow: hidden; }
.hero-bg-glow {
  position: absolute; width: 720px; height: 720px; right: -180px; top: -220px;
  background: radial-gradient(closest-side, rgba(191,154,74,.18), transparent 70%);
  pointer-events: none;
}
.hero .wrap { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero-script {
  font-family: var(--script); color: var(--gold);
  font-size: clamp(30px, 4vw, 44px); line-height: 1; margin-bottom: 6px;
}
.hero h1 {
  font-family: var(--serif); color: var(--navy);
  font-size: clamp(44px, 5.4vw, 72px); line-height: 1.02; letter-spacing: .01em; margin: 8px 0 26px;
}
.hero h1 .em { color: var(--gold); font-style: italic; }
.hero .lede { margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-badges {
  display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.7); border: 1px solid var(--line);
  padding: 9px 16px; border-radius: 100px; font-weight: 700; font-size: 13px;
  color: var(--navy); letter-spacing: .03em;
}
.hero-badge svg { width: 17px; height: 17px; color: var(--gold); }

/* hero image cluster */
.hero-media { position: relative; }
.hero-media .frame {
  position: relative; border-radius: 26px; overflow: hidden;
  box-shadow: var(--shadow-lg); border: 6px solid #fff;
}
.hero-media .frame img { width: 100%; height: 520px; object-fit: cover; }
.hero-media .blob {
  position: absolute; inset: -8% -6% auto auto; width: 78%; height: 86%;
  background: linear-gradient(160deg, var(--navy), var(--navy-soft));
  border-radius: 38% 62% 58% 42% / 44% 38% 62% 56%;
  z-index: -1; top: -6%; right: -6%;
}
.hero-chip {
  position: absolute; background: #fff; border-radius: 18px; padding: 16px 20px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 13px;
}
.hero-chip.b { left: -26px; bottom: 42px; }
.hero-chip .num { font-family: var(--serif); font-size: 34px; font-weight: 700; color: var(--navy); line-height: 1; }
.hero-chip .lbl { font-size: 12.5px; color: var(--ink-soft); font-weight: 600; max-width: 110px; }
.hero-chip .ic {
  width: 44px; height: 44px; border-radius: 12px; background: var(--cream);
  display: grid; place-items: center; color: var(--gold);
}
.hero-chip .ic svg { width: 22px; height: 22px; }

/* ============================================================
   MARQUEE / TRUST STRIP
   ============================================================ */
.trust { background: var(--navy); color: #fff; padding: 0; overflow: hidden; }
.marquee { display: flex; gap: 0; white-space: nowrap; }
.marquee-track {
  display: flex; align-items: center; gap: 56px; padding: 22px 28px;
  animation: scrollx 32s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--serif); font-style: italic; font-size: 22px; color: rgba(255,255,255,.92);
  display: inline-flex; align-items: center; gap: 56px;
}
.marquee-track .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); display: inline-block; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ============================================================
   SECTION SHELL
   ============================================================ */
section.block { padding: 100px 0; position: relative; }
.block.cream { background: var(--cream); }
.block.paper { background: var(--cream-2); }
.block.navy { background: var(--navy); color: #fff; }
.head { max-width: 720px; margin-bottom: 56px; }
.head.center { margin: 0 auto 56px; text-align: center; }
.head .section-title { margin: 14px 0 18px; }
.block.navy .section-title { color: #fff; }
.block.navy .lede { color: rgba(255,255,255,.74); }
.block.navy .eyebrow { color: var(--gold-bright); }

/* ============================================================
   STORY
   ============================================================ */
.story .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.story-media { position: relative; }
.story-media .main { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-md); border: 5px solid #fff; }
.story-media .main img { width: 100%; height: 500px; object-fit: cover; }
.story-media .inset {
  position: absolute; right: -28px; bottom: -34px; width: 46%;
  border-radius: 18px; overflow: hidden; border: 5px solid #fff; box-shadow: var(--shadow-md);
}
.story-media .est {
  position: absolute; left: -24px; top: 30px; background: var(--navy); color: #fff;
  padding: 16px 18px; border-radius: 16px; box-shadow: var(--shadow-md); text-align: center;
}
.story-media .est .n { font-family: var(--serif); font-size: 30px; font-weight: 700; line-height: 1; color: var(--gold-bright); }
.story-media .est .t { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; opacity: .8; margin-top: 4px; }
.story-copy p + p { margin-top: 18px; }
.story-copy .sig {
  margin-top: 28px; display: flex; align-items: center; gap: 16px;
}
.story-copy .sig .name { font-family: var(--script); font-size: 34px; color: var(--navy); line-height: 1; }
.story-copy .sig .role { font-size: 13px; color: var(--ink-soft); font-weight: 600; }
.pull {
  font-family: var(--serif); font-style: italic; font-size: 26px; color: var(--navy);
  border-left: 3px solid var(--gold); padding-left: 22px; margin: 26px 0;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.svc-grid .svc:nth-child(4),
.svc-grid .svc:nth-child(5) { grid-column: span 1; }
.svc {
  background: #fff; border-radius: 20px; overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
  display: flex; flex-direction: column;
}
.svc:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.svc .img { position: relative; overflow: hidden; }
.svc .img img { width: 100%; height: 210px; object-fit: cover; transition: transform .8s var(--ease-out); }
.svc:hover .img img { transform: scale(1.04); }
.svc .icon-badge {
  position: absolute; left: 16px; top: 16px; width: 46px; height: 46px;
  background: var(--navy); border-radius: 12px; display: grid; place-items: center;
  color: var(--gold-bright); box-shadow: var(--shadow-md);
}
.svc .icon-badge svg { width: 24px; height: 24px; }
.svc .body { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.svc h3 { font-family: var(--serif); font-size: 25px; color: var(--navy); margin-bottom: 8px; }
.svc p { color: var(--ink-soft); font-size: 14.5px; }
.svc .more {
  margin-top: 16px; font-weight: 700; font-size: 13px; color: var(--gold);
  letter-spacing: .04em; display: inline-flex; align-items: center; gap: 7px;
  text-transform: uppercase;
}
.svc .more svg { width: 15px; height: 15px; transition: transform .3s; }
.svc:hover .more svg { transform: translateX(4px); }

/* ============================================================
   INCLUDED (Regular vs Deep)
   ============================================================ */
.incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.plan {
  background: #fff; border-radius: 22px; overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.plan.featured { border: 1.5px solid var(--gold); box-shadow: var(--shadow-md); }
.plan .ph {
  padding: 26px 30px; color: #fff; display: flex; align-items: center; justify-content: space-between;
}
.plan.regular .ph { background: var(--navy); }
.plan.deep .ph { background: linear-gradient(100deg, var(--gold), var(--gold-bright)); color: var(--navy-deep); }
.plan .ph h3 { font-family: var(--serif); font-size: 28px; letter-spacing: .01em; }
.plan .ph .tag {
  font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  background: rgba(255,255,255,.18); padding: 6px 12px; border-radius: 100px;
}
.plan.deep .ph .tag { background: rgba(14,26,56,.16); }
.plan .pb { padding: 28px 30px 34px; flex: 1; }
.plan .feat { display: flex; align-items: flex-start; gap: 13px; padding: 12px 0; border-bottom: 1px dashed var(--line); }
.plan .feat:last-child { border-bottom: 0; }
.plan .feat .ck {
  flex: none; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center;
  background: var(--cream); color: var(--gold); margin-top: 1px;
}
.plan.deep .feat .ck { background: rgba(191,154,74,.16); }
.plan .feat .ck svg { width: 14px; height: 14px; }
.plan .feat span { font-weight: 600; color: var(--ink); font-size: 15.5px; }

/* ============================================================
   ADD-ONS + GARDEN
   ============================================================ */
.addon-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 24px; }
.panel {
  background: #fff; border-radius: 20px; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); padding: 30px; height: 100%;
}
.panel h3 {
  font-family: var(--serif); font-size: 24px; color: var(--navy); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.panel.garden h3 { color: var(--green); }
.panel h3 .gi { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: var(--cream); color: var(--gold); }
.panel.garden h3 .gi { color: var(--green); background: rgba(76,122,57,.1); }
.panel h3 .gi svg { width: 22px; height: 22px; }
.chip-list { display: flex; flex-direction: column; gap: 4px; }
.chip-list li {
  display: flex; align-items: center; gap: 12px; padding: 11px 0;
  border-bottom: 1px solid var(--line); font-weight: 600; color: var(--ink); font-size: 15px;
}
.chip-list li:last-child { border-bottom: 0; }
.chip-list li .b { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex: none; }
.panel.garden .chip-list li .b { background: var(--green); }
.addon-grid .panel.addons .chip-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }

/* ============================================================
   CONTRACT
   ============================================================ */
.contract-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cc {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px; padding: 36px 30px; transition: transform .45s var(--ease-out), background .35s, border-color .35s;
}
.cc:hover { transform: translateY(-8px); background: rgba(255,255,255,.09); border-color: var(--gold); }
.cc .ci { width: 56px; height: 56px; border-radius: 14px; background: var(--gold); color: var(--navy-deep); display: grid; place-items: center; margin-bottom: 22px; }
.cc .ci svg { width: 28px; height: 28px; }
.cc h3 { font-family: var(--serif); font-size: 26px; margin-bottom: 8px; }
.cc p { color: rgba(255,255,255,.7); font-size: 14.5px; }
.cc .freq { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-bright); font-weight: 800; margin-bottom: 14px; }

/* ============================================================
   WHY / VALUES
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 30px 26px;
  box-shadow: var(--shadow-sm); transition: transform .4s var(--ease-out);
}
.why:hover { transform: translateY(-6px); }
.why .wi { width: 52px; height: 52px; border-radius: 14px; background: var(--cream); color: var(--gold); display: grid; place-items: center; margin-bottom: 18px; }
.why .wi svg { width: 26px; height: 26px; }
.why h3 { font-family: var(--serif); font-size: 22px; color: var(--navy); margin-bottom: 8px; }
.why p { color: var(--ink-soft); font-size: 14px; }

.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-top: 54px; }
.stat { text-align: center; }
.stat .n { font-family: var(--serif); font-weight: 700; font-size: clamp(42px,6vw,64px); color: var(--gold); line-height: 1; }
.block.navy .stat .n { color: var(--gold-bright); }
.stat .l { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-top: 8px; font-weight: 700; }
.block.navy .stat .l { color: rgba(255,255,255,.65); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tst-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.tst {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 32px;
  box-shadow: var(--shadow-sm); position: relative; display: flex; flex-direction: column;
}
.tst .quote { font-family: var(--serif); font-size: 70px; color: var(--gold-soft); line-height: .6; height: 30px; }
.tst .stars { color: var(--gold); letter-spacing: 3px; margin: 6px 0 14px; font-size: 16px; }
.tst p { color: var(--ink); font-size: 16px; line-height: 1.7; font-style: italic; flex: 1; }
.tst .who { display: flex; align-items: center; gap: 13px; margin-top: 22px; }
.tst .who .av { width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: var(--gold-bright); display: grid; place-items: center; font-family: var(--serif); font-weight: 700; font-size: 18px; }
.tst .who .nm { font-weight: 700; color: var(--navy); font-size: 15px; }
.tst .who .ct { font-size: 13px; color: var(--ink-soft); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-info .ci-list { display: flex; flex-direction: column; gap: 8px; margin-top: 30px; }
.ci-row {
  display: flex; gap: 18px; align-items: flex-start; padding: 20px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease-out), border-color .35s;
}
.ci-row:hover { transform: translateX(6px); border-color: var(--gold); }
.ci-row .ic { width: 50px; height: 50px; flex: none; border-radius: 13px; background: var(--navy); color: var(--gold-bright); display: grid; place-items: center; }
.ci-row .ic svg { width: 24px; height: 24px; }
.ci-row.wa .ic { background: #25D366; color: #fff; }
.ci-row .lbl { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; }
.ci-row .val { font-weight: 700; color: var(--navy); font-size: 17px; margin-top: 2px; }
.ci-row .sub { font-size: 13px; color: var(--ink-soft); margin-top: 2px; }

.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-card h3 { font-family: var(--serif); font-size: 28px; color: var(--navy); margin-bottom: 6px; }
.form-card .fc-sub { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 24px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 7px; letter-spacing: .02em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: var(--sans); font-size: 15px; color: var(--ink); background: var(--cream-2);
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 4px rgba(191,154,74,.14);
}
.field textarea { resize: vertical; min-height: 110px; }
.field.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field.row2 .field { margin: 0; }
.form-note { font-size: 12.5px; color: var(--ink-soft); margin-top: 4px; }
.form-success {
  display: none; padding: 16px; border-radius: 12px; background: rgba(76,122,57,.12);
  color: var(--green); font-weight: 700; font-size: 14.5px; margin-top: 14px;
  align-items: center; gap: 10px;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; }

/* map */
.map-wrap { margin-top: 16px; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-embed { display: block; width: 100%; height: 220px; border: 0; }
.map-ph {
  height: 220px; position: relative;
  background:
    repeating-linear-gradient(45deg, #eef1f6 0 12px, #e7ebf2 12px 24px);
  display: grid; place-items: center;
}
.map-ph .pin { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--navy); }
.map-ph .pin svg { width: 40px; height: 40px; color: var(--gold); }
.map-ph .pin .t { font-weight: 700; }
.map-ph .pin .m { font-family: monospace; font-size: 11px; color: var(--ink-soft); letter-spacing: .04em; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { position: relative; overflow: hidden; background: linear-gradient(120deg, var(--navy-deep), var(--navy-soft)); color: #fff; }
.cta-banner .wrap { padding: 80px 28px; text-align: center; position: relative; z-index: 2; }
.cta-banner h2 { font-family: var(--serif); font-size: clamp(34px,5vw,56px); margin-bottom: 14px; }
.cta-banner h2 em { color: var(--gold-bright); font-style: italic; }
.cta-banner p { color: rgba(255,255,255,.78); font-size: 18px; max-width: 56ch; margin: 0 auto 30px; }
.cta-banner .actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-banner .deco { position: absolute; inset: 0; pointer-events: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0B1430; color: #aab4cc; padding: 70px 0 30px; }
.footer .top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .logo .l-main { color: #fff; }
.footer p { font-size: 14px; line-height: 1.7; margin-top: 18px; max-width: 34ch; }
.footer h4 { color: #fff; font-size: 14px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; font-family: var(--sans); }
.footer ul li { margin-bottom: 11px; }
.footer ul a { font-size: 14px; transition: color .25s, padding-left .25s; }
.footer ul a:hover { color: var(--gold-bright); padding-left: 5px; }
.footer .fcontact li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; margin-bottom: 13px; }
.footer .fcontact svg { width: 16px; height: 16px; color: var(--gold); flex: none; margin-top: 3px; }
.footer .bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; font-size: 13px; gap: 14px; flex-wrap: wrap; }
.footer .bottom a:hover { color: var(--gold-bright); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 80;
  width: 60px; height: 60px; border-radius: 50%; background: #25D366;
  display: grid; place-items: center; color: #fff; box-shadow: 0 14px 30px -8px rgba(37,211,102,.6);
  transition: transform .35s var(--ease-out);
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); }
.wa-float svg { width: 32px; height: 32px; }
.wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25D366;
  animation: ping 2.4s var(--ease-out) infinite;
}
@keyframes ping { 0% { transform: scale(1); opacity: .7; } 80%,100% { transform: scale(1.7); opacity: 0; } }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .marquee-track, .wa-float::after { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 48px; }
  .hero-media { order: -1; }
  .hero-media .frame img { height: 380px; }
  .story .wrap { grid-template-columns: 1fr; gap: 80px; }
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .addon-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .tst-grid { grid-template-columns: 1fr; }
  .contact .wrap { grid-template-columns: 1fr; }
  .footer .top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 820px) {
  .nav-links, .nav .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; position: absolute; top: 78px; left: 0; right: 0; flex-direction: column;
    background: var(--cream-2); padding: 22px 28px; gap: 18px; box-shadow: var(--shadow-md); border-top: 1px solid var(--line);
  }
  .topbar .tb-left .tb-item.hide-sm { display: none; }
  .incl-grid { grid-template-columns: 1fr; }
  .contract-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 32px 22px; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  section.block { padding: 70px 0; }
  .svc-grid, .why-grid { grid-template-columns: 1fr; }
  .addon-grid .panel.addons .chip-list { grid-template-columns: 1fr; }
  .field.row2 { grid-template-columns: 1fr; }
  .hero-chip.b { left: 0; bottom: 12px; }
  .story-media .inset { display: none; }
  .footer .top { grid-template-columns: 1fr; }
}
