/* ============================================================
   Lead Host AI — Lead Host
   Brand palette:
     --navy  #0a3045  (dark blue, headings / dark sections)
     --blue  #00a6d6  (light blue, accents / CTAs)
   ============================================================ */

:root {
  --navy: #0a3045;
  --navy-700: #0d3c57;
  --navy-900: #07283a;
  --blue: #00a6d6;
  --blue-600: #0090ba;
  --blue-200: #b9ecff;
  --ink: #0a1620;
  --slate: #5b6b78;
  --slate-300: #8a99a6;
  --line: #e6ecf1;
  --bg: #ffffff;
  --bg-soft: #f5f9fc;
  --bg-tint: #eef7fc;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(10, 48, 69, 0.06), 0 4px 14px rgba(10, 48, 69, 0.06);
  --shadow-md: 0 10px 40px rgba(10, 48, 69, 0.12);
  --shadow-blue: 0 10px 30px rgba(0, 166, 214, 0.35);
  --container: 1180px;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 { line-height: 1.1; letter-spacing: -0.02em; color: var(--navy); font-weight: 800; }
h1 { font-size: clamp(2.4rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: 1.35rem; }

p { color: var(--slate); }

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

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--bg-tint);
  border: 1px solid var(--blue-200);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.lead { font-size: 1.18rem; color: var(--slate); max-width: 640px; }
.center .lead { margin-left: auto; margin-right: auto; }

.text-blue { color: var(--blue-600); }
.text-white { color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 1rem; font-family: var(--font);
  padding: 15px 26px; border-radius: 12px; cursor: pointer;
  border: 1px solid transparent; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover { background: var(--blue-600); transform: translateY(-2px); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn-ghost { background: #fff; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue-600); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline-light:hover { background: rgba(255,255,255,.1); }
.btn-lg { padding: 17px 32px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.2rem; color: var(--navy); letter-spacing: -0.02em; }
.brand .logo-mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 1rem;
  box-shadow: var(--shadow-blue);
}
.brand-logo { height: 36px; width: auto; display: block; }
.footer-brand .brand-logo, .footer-logo { height: 32px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-weight: 600; font-size: .98rem; color: var(--navy); opacity: .82; transition: opacity .15s, color .15s; }
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--blue-600); }
.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; border-radius: 2px; transition: .25s; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--bg); padding: 80px 0 90px; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 85% 0%, rgba(0,166,214,.10), transparent 70%),
    radial-gradient(45% 40% at 0% 100%, rgba(10,48,69,.06), transparent 70%);
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 22px; }
.hero h1 .accent { color: var(--blue-600); }
.hero p { font-size: 1.2rem; max-width: 520px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-trust { display: flex; column-gap: 28px; row-gap: 9px; flex-wrap: wrap; }
.hero-trust .t-item { font-size: .98rem; color: var(--slate); }
.hero-trust .t-item strong { color: var(--navy); font-weight: 800; }

/* ---------- Phone / chat mock ---------- */
.phone-wrap { position: relative; display: flex; justify-content: center; }
.float-badge {
  position: absolute; z-index: 3; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 12px 16px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px;
}
.float-badge .fb-emoji { font-size: 1.4rem; }
.float-badge .fb-num { font-weight: 800; color: var(--navy); font-size: 1.05rem; line-height: 1; }
.float-badge .fb-label { font-size: .76rem; color: var(--slate); }
.float-badge.tl { top: 10px; left: -6px; animation: floaty 5s ease-in-out infinite; }
.float-badge.br { bottom: 24px; right: -6px; animation: floaty 6s ease-in-out infinite reverse; }
@keyframes floaty { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-12px) } }

.phone {
  width: 320px; max-width: 84vw; background: #fff; border-radius: 34px;
  border: 1px solid var(--line); box-shadow: var(--shadow-md); padding: 14px; position: relative; z-index: 2;
}
.phone-screen { background: var(--bg-soft); border-radius: 24px; overflow: hidden; height: 560px; display: flex; flex-direction: column; }
.phone-top { background: var(--navy); color: #fff; padding: 16px 18px; display: flex; align-items: center; gap: 10px; }
.phone-top .pt-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--blue-600)); display: grid; place-items: center; font-weight: 800; }
.phone-top .pt-name { font-weight: 700; font-size: .98rem; }
.phone-top .pt-status { font-size: .72rem; opacity: .8; }
.chat { flex: 1; padding: 18px 16px; display: flex; flex-direction: column; gap: 10px; overflow: hidden; }
.bubble { max-width: 80%; padding: 10px 14px; border-radius: 16px; font-size: .9rem; line-height: 1.45; opacity: 0; transform: translateY(8px); animation: pop .4s ease forwards; }
.bubble.in { background: #fff; border: 1px solid var(--line); color: var(--ink); align-self: flex-start; border-bottom-left-radius: 4px; }
.bubble.out { background: var(--blue); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.bubble.tag { align-self: center; background: #e7f7ee; color: #137a45; font-weight: 600; font-size: .8rem; border-radius: 999px; max-width: 92%; text-align: center; }
@keyframes pop { to { opacity: 1; transform: translateY(0); } }
.phone-input { padding: 12px 14px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 10px; background: #fff; }
.phone-input .pi-box { flex: 1; background: var(--bg-soft); border-radius: 999px; padding: 9px 14px; color: var(--slate-300); font-size: .85rem; }
.phone-input .pi-send { width: 34px; height: 34px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; font-weight: 700; }

/* ---------- Logos / trust strip ---------- */
.trust-strip { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-strip .container { padding-top: 40px; padding-bottom: 40px; }
.trust-title { text-align: center; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-300); font-weight: 700; margin-bottom: 26px; }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat-card { text-align: center; padding: 22px 14px; }
.stat-card .s-emoji { font-size: 1.5rem; }
.stat-card .s-num { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; color: var(--navy); line-height: 1.1; margin: 6px 0 4px; }
.stat-card .s-label { font-size: .92rem; color: var(--slate); }

/* ---------- Section heading block ---------- */
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head p { margin-top: 16px; font-size: 1.12rem; }

/* ---------- Service cards (home) ---------- */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-200); }
.card .c-icon { width: 54px; height: 54px; border-radius: 14px; background: var(--bg-tint); display: grid; place-items: center; font-size: 1.6rem; margin-bottom: 20px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .98rem; margin-bottom: 18px; }
.card .c-link { font-weight: 700; color: var(--blue-600); font-size: .95rem; }
.card .c-link:hover { color: var(--navy); }

/* ---------- Big results band ---------- */
.results-band { background: var(--navy); color: #fff; }
.results-band h2 { color: #fff; }
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
.results-grid .r-num { font-size: clamp(2.6rem, 6vw, 4rem); font-weight: 800; color: #fff; line-height: 1; }
.results-grid .r-num .text-blue { color: var(--blue); }
.results-grid .r-label { color: rgba(255,255,255,.7); margin-top: 10px; font-size: 1.02rem; }
.results-grid .r-num span.lb { color: var(--blue); }

/* ---------- Calculator ---------- */
.calc-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch; }
.calc-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; }
.calc-panel h3 { margin-bottom: 6px; }
.calc-panel .hint { font-size: .9rem; color: var(--slate-300); margin-bottom: 22px; }
.field { margin-bottom: 22px; }
.field label { display: flex; justify-content: space-between; font-weight: 700; color: var(--navy); font-size: .95rem; margin-bottom: 4px; }
.field .sub { font-weight: 500; color: var(--slate-300); font-size: .8rem; }
.field input[type="range"] { width: 100%; accent-color: var(--blue); margin-top: 8px; }
.field .input-line { display: flex; align-items: center; gap: 10px; }
.field .val { font-weight: 800; color: var(--blue-600); font-size: 1.05rem; min-width: 92px; text-align: right; }
.calc-result { background: linear-gradient(160deg, var(--navy), var(--navy-900)); color: #fff; border-radius: var(--radius-lg); padding: 34px; display: flex; flex-direction: column; }
.calc-result h3 { color: #fff; }
.calc-flag { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .82rem; color: #ffd9a8; margin: 6px 0 24px; }
.calc-flag::before { content:""; width: 9px; height: 9px; border-radius: 50%; background: #ffb44d; box-shadow: 0 0 0 4px rgba(255,180,77,.25); }
.calc-rows { display: flex; flex-direction: column; gap: 14px; margin-bottom: 22px; }
.calc-rows .cr { display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.12); padding-bottom: 12px; color: rgba(255,255,255,.8); font-size: .96rem; }
.calc-rows .cr strong { color: #fff; font-weight: 800; }
.calc-total { margin-top: auto; }
.calc-total .ct-label { color: rgba(255,255,255,.7); font-size: .92rem; }
.calc-total .ct-num { font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 800; color: var(--blue); line-height: 1.1; margin: 4px 0 22px; }

/* ---------- Testimonials ---------- */
.tcards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.tcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; }
.tcard .stars { color: #f5a623; letter-spacing: 2px; margin-bottom: 14px; }
.tcard blockquote { font-size: 1.05rem; color: var(--ink); line-height: 1.55; margin-bottom: 18px; }
.tcard blockquote strong { color: var(--navy); }
.tcard .who { display: flex; align-items: center; gap: 12px; }
.tcard .who .av { width: 42px; height: 42px; border-radius: 50%; background: var(--bg-tint); display: grid; place-items: center; font-weight: 800; color: var(--blue-600); }
.tcard .who .nm { font-weight: 700; color: var(--navy); font-size: .95rem; }
.tcard .who .rl { font-size: .85rem; color: var(--slate-300); }

/* ---------- Service detail (services page) ---------- */
.svc { padding: 80px 0; border-bottom: 1px solid var(--line); }
.svc:nth-child(even) { background: var(--bg-soft); }
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.svc.flip .svc-grid { direction: rtl; }
.svc.flip .svc-grid > * { direction: ltr; }
.svc-tag { font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-600); }
.svc h2 { margin: 10px 0 14px; }
.svc > .container > .svc-grid p.svc-intro { font-size: 1.08rem; margin-bottom: 26px; }
.steps { display: flex; flex-direction: column; gap: 18px; margin-bottom: 26px; }
.step { display: flex; gap: 16px; }
.step .n { flex: none; width: 34px; height: 34px; border-radius: 10px; background: var(--navy); color: #fff; font-weight: 800; display: grid; place-items: center; font-size: .95rem; }
.step h4 { color: var(--navy); font-size: 1.02rem; margin-bottom: 3px; }
.step p { font-size: .94rem; }
.svc-stats { display: flex; gap: 26px; flex-wrap: wrap; margin-bottom: 26px; }
.svc-stats .ss .n { font-size: 1.7rem; font-weight: 800; color: var(--blue-600); line-height: 1; }
.svc-stats .ss .l { font-size: .85rem; color: var(--slate); }
.mock { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; }
.mock-top { background: var(--navy); color: #fff; padding: 16px 20px; }
.mock-top .mt-title { font-weight: 700; }
.mock-top .mt-sub { font-size: .8rem; opacity: .75; }
.mock-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; }

/* ---------- Comparison table ---------- */
.compare { overflow-x: auto; }
.compare table { width: 100%; border-collapse: collapse; min-width: 640px; background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.compare th, .compare td { padding: 16px 18px; text-align: center; border-bottom: 1px solid var(--line); }
.compare th { font-size: .95rem; color: var(--navy); }
.compare thead th:first-child, .compare tbody td:first-child { text-align: left; color: var(--slate); font-weight: 600; }
.compare thead th.hl { background: var(--navy); color: #fff; }
.compare tbody td.hl { background: var(--bg-tint); font-weight: 800; color: var(--navy); }
.compare .yes { color: #1aa85b; font-weight: 800; }
.compare .no { color: #c4ccd2; font-weight: 800; }

/* ---------- About: story / timeline / values ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.quote-box { background: var(--bg-tint); border-left: 4px solid var(--blue); border-radius: 12px; padding: 22px 24px; margin: 22px 0; }
.quote-box p { color: var(--navy); font-style: italic; font-size: 1.05rem; }
.quote-box .by { font-style: normal; font-weight: 700; color: var(--blue-600); margin-top: 8px; font-size: .9rem; }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.tl-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.tl-item .em { font-size: 1.7rem; }
.tl-item h4 { color: var(--navy); margin: 10px 0 6px; }
.tl-item .sub { font-weight: 700; color: var(--blue-600); font-size: .9rem; margin-bottom: 8px; }
.tl-item p { font-size: .9rem; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.value .em { font-size: 1.6rem; }
.value h4 { color: var(--navy); margin: 12px 0 8px; }
.value p { font-size: .95rem; }

/* ---------- Case studies ---------- */
.cs-feature { background: var(--navy); border-radius: var(--radius-lg); padding: 14px; }
.cs-feature .video { background: var(--navy-900); border-radius: 16px; aspect-ratio: 16/8; display: grid; place-items: center; color: rgba(255,255,255,.6); }
.cs-feature .play { width: 70px; height: 70px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; font-size: 1.5rem; box-shadow: var(--shadow-blue); }
.cs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.cs-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.cs-card .video { background: var(--bg-soft); aspect-ratio: 16/9; display: grid; place-items: center; color: var(--slate-300); position: relative; }
.cs-card .video .play { width: 54px; height: 54px; border-radius: 50%; background: rgba(0,166,214,.92); color:#fff; display: grid; place-items: center; }
.cs-card .body { padding: 26px; }
.cs-card .pill { display: inline-block; font-size: .78rem; font-weight: 700; color: var(--blue-600); background: var(--bg-tint); padding: 5px 12px; border-radius: 999px; margin-bottom: 12px; }
.cs-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.cs-card p { font-size: .94rem; margin-bottom: 18px; }
.cs-metrics { display: flex; gap: 26px; }
.cs-metrics .m .n { font-size: 1.5rem; font-weight: 800; color: var(--navy); line-height: 1; }
.cs-metrics .m .l { font-size: .8rem; color: var(--slate-300); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: start; }
.feature-list { display: flex; flex-direction: column; gap: 22px; }
.feature-list .fi { display: flex; gap: 16px; }
.feature-list .fi .ic { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--bg-tint); display: grid; place-items: center; font-size: 1.3rem; }
.feature-list .fi h4 { color: var(--navy); font-size: 1.02rem; margin-bottom: 3px; }
.feature-list .fi p { font-size: .94rem; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.form-card h3 { margin-bottom: 6px; }
.form-card .hint { font-size: .9rem; color: var(--slate-300); margin-bottom: 22px; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-weight: 700; color: var(--navy); font-size: .9rem; margin-bottom: 6px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: 10px;
  font-family: var(--font); font-size: 1rem; color: var(--ink); background: #fff; transition: border-color .15s, box-shadow .15s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,166,214,.15); }
.consent { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; }
.consent input { margin-top: 4px; }
.consent label { font-size: .78rem; color: var(--slate); font-weight: 500; line-height: 1.45; }
.form-note { font-size: .82rem; color: var(--slate-300); display: flex; gap: 8px; align-items: flex-start; margin-top: 8px; }

/* ---------- Booking calendar embed ---------- */
.booking-card { display: flex; flex-direction: column; }
.booking-embed {
  position: relative;
  width: 100%;
  margin: 4px 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
  box-shadow: inset 0 1px 2px rgba(10, 48, 69, 0.04);
  overflow: hidden;
}
.booking-embed iframe {
  width: 100%;
  min-height: 660px;
  border: none;
  display: block;
  background: transparent;
}
@media (max-width: 640px) {
  .booking-embed iframe { min-height: 600px; }
}

/* ---------- Booking stage (contact v2) ---------- */
.booking-stage { background: var(--bg-soft); padding: 56px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.booking-stage-card {
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 44px 48px 40px;
}
.booking-stage .booking-embed { border-color: transparent; background: #fff; box-shadow: none; margin: 0; }
.booking-stage .booking-embed iframe { min-height: 700px; }
.booking-stage-foot {
  display: flex; gap: 9px; align-items: flex-start; justify-content: center;
  text-align: center; max-width: 560px; margin: 22px auto 0;
  font-size: .85rem; color: var(--slate-300);
}

/* ---------- Value row (contact v2) ---------- */
.value-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--blue-200); }
.value-card .ic { width: 50px; height: 50px; border-radius: 13px; background: var(--bg-tint); display: grid; place-items: center; font-size: 1.4rem; margin-bottom: 16px; }
.value-card h4 { color: var(--navy); font-size: 1.05rem; margin-bottom: 7px; }
.value-card p { font-size: .92rem; color: var(--slate); line-height: 1.55; }

/* ---------- Steps row (contact v2) ---------- */
.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 940px; margin: 0 auto; }
.step-block { text-align: left; }
.step-block .n { width: 42px; height: 42px; border-radius: 12px; background: var(--navy); color: #fff; font-weight: 800; display: grid; place-items: center; font-size: 1.1rem; margin-bottom: 16px; }
.step-block h4 { color: var(--navy); font-size: 1.12rem; margin-bottom: 7px; }
.step-block p { font-size: .96rem; color: var(--slate); line-height: 1.6; }

@media (max-width: 920px) {
  .value-row { grid-template-columns: repeat(2, 1fr); }
  .steps-row { grid-template-columns: 1fr; gap: 24px; max-width: 480px; }
}
@media (max-width: 560px) {
  .value-row { grid-template-columns: 1fr; }
  .booking-stage-card { padding: 28px 20px 26px; }
  .booking-stage { padding: 40px 0; }
}

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(150deg, var(--navy), var(--navy-700)); color: #fff; text-align: center; border-radius: 0; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.78); max-width: 560px; margin: 16px auto 30px; font-size: 1.12rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-ticks { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; margin-top: 28px; color: rgba(255,255,255,.85); font-size: .95rem; }
.cta-ticks span::before { content: "✓ "; color: var(--blue); font-weight: 800; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.7); padding: 54px 0 34px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; font-size: 1.2rem; }
.footer-brand .logo-mark { width: 32px; height: 32px; border-radius: 9px; background: linear-gradient(135deg, var(--blue), var(--blue-600)); display: grid; place-items: center; color: #fff; font-weight: 800; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a { font-size: .95rem; transition: color .15s; }
.footer-links a:hover { color: var(--blue); }
.footer-bottom { padding-top: 22px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .88rem; }

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

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .calc-wrap, .svc-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .svc.flip .svc-grid { direction: ltr; }
  .phone-wrap { margin-top: 20px; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: 1fr 1fr; }
  .results-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .site-header.open .nav-links {
    display: flex; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column;
    background: #fff; border-bottom: 1px solid var(--line); padding: 18px 24px; gap: 18px;
  }
  .site-header.open .nav-cta .btn { display: inline-flex; }
  .site-header.open .nav-cta { position: absolute; top: 210px; left: 24px; right: 24px; }
  .cards, .tcards, .cs-grid, .values, .stat-row { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .compare { border: 1px solid var(--line); border-radius: var(--radius); }
}
