/* ==========================================================================
   Beacon Home Technology — Design System
   Premium, warm, trustworthy. Clean white, ocean navy, beacon amber.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --navy-900: #071a30;
  --navy-800: #0a2540;
  --navy-700: #0f2f52;
  --navy-600: #134074;
  --navy-500: #1e5aa8;
  --blue-400: #3f7fd1;
  --blue-100: #e8f1fb;

  --amber-500: #f5a524;
  --amber-400: #ffb84d;
  --amber-100: #fff3dd;

  --teal-500: #17a2a2;
  --teal-100: #dff5f5;

  /* Neutrals */
  --ink: #0c1b2a;
  --slate-700: #33475b;
  --slate-500: #5a7184;
  --slate-400: #7c93a6;
  --line: #e6ecf3;
  --line-soft: #eef3f8;
  --bg: #ffffff;
  --bg-soft: #f6f9fc;
  --bg-tint: #eef4fb;

  --white: #ffffff;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(10, 37, 64, 0.06), 0 1px 3px rgba(10, 37, 64, 0.05);
  --shadow-md: 0 10px 30px -12px rgba(10, 37, 64, 0.18);
  --shadow-lg: 0 24px 60px -20px rgba(10, 37, 64, 0.28);
  --shadow-amber: 0 14px 34px -12px rgba(245, 165, 36, 0.55);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --container: 1180px;
  --gap: clamp(1rem, 3vw, 2rem);

  --font-head: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--slate-700);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 800;
}

h1 { font-size: clamp(2.35rem, 5.2vw, 3.85rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.85rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { text-wrap: pretty; }
::selection { background: var(--amber-100); color: var(--navy-800); }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2rem);
}

.section { padding-block: clamp(4rem, 8vw, 7rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.bg-soft { background: var(--bg-soft); }
.bg-tint { background: linear-gradient(180deg, #fbfdff, var(--bg-tint)); }

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(2.4rem, 5vw, 3.6rem);
  text-align: center;
}
.section-head.left { margin-inline: 0; text-align: left; }
.section-head p {
  margin-top: 1rem;
  font-size: 1.12rem;
  color: var(--slate-500);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-600);
  background: var(--blue-100);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--amber-500);
  box-shadow: 0 0 0 4px rgba(245, 165, 36, 0.2);
}

.text-grad {
  background: linear-gradient(115deg, var(--navy-600), var(--blue-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-amber { color: var(--amber-500); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: linear-gradient(180deg, var(--amber-400), var(--amber-500));
  color: var(--navy-900);
  box-shadow: var(--shadow-amber);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -12px rgba(245, 165, 36, 0.65); }

.btn-dark {
  background: var(--navy-800);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-dark:hover { transform: translateY(-2px); background: var(--navy-700); }

.btn-ghost {
  background: var(--white);
  color: var(--navy-800);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--navy-500); color: var(--navy-600); }

.btn-outline-light {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.14); border-color: #fff; }

.btn-lg { padding: 1.1rem 2rem; font-size: 1.08rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px -18px rgba(10, 37, 64, 0.4);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 76px;
}
.nav-logo img { height: 42px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--slate-700);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-pill);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--navy-700); background: var(--bg-soft); }
.nav-cta { display: flex; align-items: center; gap: 0.7rem; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy-800);
  font-size: 0.98rem;
}
.nav-phone svg { width: 1.05rem; height: 1.05rem; color: var(--amber-500); }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  color: var(--navy-800);
}
.nav-toggle svg { width: 26px; height: 26px; margin-inline: auto; }

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  inset: 76px 0 auto 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: 1.2rem clamp(1.1rem, 4vw, 2rem) 1.8rem;
  transform: translateY(-120%);
  transition: transform 0.4s var(--ease);
  z-index: 55;
  display: none;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--navy-800);
  padding: 0.85rem 0.5rem;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu .btn { margin-top: 1.1rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(3rem, 6vw, 5.5rem) clamp(3.5rem, 7vw, 6rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 55% at 85% 0%, rgba(245, 165, 36, 0.14), transparent 60%),
    radial-gradient(55% 60% at 8% 15%, rgba(31, 90, 168, 0.12), transparent 60%);
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}
.hero h1 { margin-top: 1.2rem; }
.hero h1 .accent { color: var(--amber-500); }
.hero-lead {
  margin-top: 1.4rem;
  font-size: 1.22rem;
  color: var(--slate-500);
  max-width: 34ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 1.75rem;
  margin-top: 2.2rem;
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--slate-700);
}
.hero-trust svg { width: 1.15rem; height: 1.15rem; color: var(--teal-500); flex-shrink: 0; }

/* Common problems (homepage) */
.problems-section {
  border-top: 1px solid var(--line-soft);
  background: var(--white);
}
.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem 1.25rem;
  max-width: 820px;
  margin-inline: auto;
}
.problem-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--navy-800);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.problem-item:hover {
  border-color: #cfe0f4;
  box-shadow: var(--shadow-sm);
}
.problem-check {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--teal-500);
  display: grid;
  place-items: center;
}
.problem-check svg { width: 15px; height: 15px; color: #fff; }

/* Why people call us */
.why-call-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem 1.25rem;
  max-width: 900px;
  margin-inline: auto;
}
.why-call-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--navy-800);
  line-height: 1.45;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.why-call-item:hover {
  border-color: #cfe0f4;
  box-shadow: var(--shadow-sm);
}
.why-call-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(245, 165, 36, 0.15);
  display: grid;
  place-items: center;
}
.why-call-icon svg { width: 15px; height: 15px; color: var(--amber-500); }

/* Our Promise */
.promise-block {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  padding: clamp(2rem, 4vw, 2.75rem) clamp(1.5rem, 4vw, 2.5rem);
  background: linear-gradient(160deg, #fbfdff, var(--blue-100));
  border: 1px solid #cfe0f4;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.promise-block h2 {
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  color: var(--navy-800);
  margin-bottom: 0.85rem;
}
.promise-block p {
  color: var(--slate-600);
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 52ch;
  margin-inline: auto;
}
.promise-extra {
  margin-top: 1rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--navy-700);
}

/* Scam awareness spotlight (services page) */
.service-spotlight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  margin-top: 3rem;
  background: linear-gradient(160deg, #fbfdff, var(--bg-soft));
  border: 1px solid #cfe0f4;
  border-radius: var(--radius-lg);
}
.service-spotlight-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(245, 165, 36, 0.14);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.service-spotlight-icon svg { width: 28px; height: 28px; color: var(--amber-500); }
.service-spotlight h3 {
  font-size: 1.35rem;
  color: var(--navy-800);
  margin-bottom: 0.65rem;
}
.service-spotlight p {
  color: var(--slate-600);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 68ch;
}
.service-spotlight-actions { margin-top: 1.35rem; }

/* Hero visual card */
.hero-visual { position: relative; }
.hero-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 1.6rem;
  box-shadow: var(--shadow-lg);
}
.hero-card__top {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line-soft);
}
.hero-card__avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-600), var(--blue-400));
  display: grid; place-items: center;
  color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.15rem;
}
.hero-card__top h4 { font-size: 1.02rem; margin-bottom: 0.1rem; }
.hero-card__top span { font-size: 0.86rem; color: var(--slate-400); }
.hero-card__status {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; font-weight: 700; color: #0f8a5f;
  background: #e6f7ef; padding: 0.3rem 0.65rem; border-radius: var(--radius-pill);
}
.hero-card__status::before { content:""; width:7px;height:7px;border-radius:50%;background:#12b06f; }
.hero-tasklist { margin-top: 1.1rem; display: grid; gap: 0.7rem; }
.hero-task {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.75rem 0.9rem;
  background: var(--bg-soft);
  border-radius: var(--radius);
  font-weight: 600; color: var(--navy-800); font-size: 0.95rem;
}
.hero-task .check {
  width: 26px; height: 26px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--teal-500);
  display: grid; place-items: center;
}
.hero-task .check svg { width: 15px; height: 15px; color: #fff; }
.hero-task small { display:block; font-weight: 500; color: var(--slate-400); font-size: 0.8rem; }

.hero-badge-float {
  position: absolute;
  bottom: -22px; left: -18px;
  background: var(--navy-800);
  color: #fff;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 0.7rem;
}
.hero-badge-float strong { font-family: var(--font-head); font-size: 1.35rem; display:block; line-height:1; }
.hero-badge-float span { font-size: 0.78rem; color: var(--blue-100); }
.hero-badge-float .stars { color: var(--amber-400); font-size: 0.9rem; letter-spacing: 1px; }

/* ---------- Trust bar / logos ---------- */
.trust-strip { border-block: 1px solid var(--line); background: var(--white); }
.trust-strip .container {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  padding-block: 1.6rem;
}
.trust-item { display: flex; align-items: center; gap: 0.6rem; color: var(--slate-500); font-weight: 600; font-size: 0.95rem; }
.trust-item svg { width: 1.3rem; height: 1.3rem; color: var(--navy-500); }

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 3vw, 1.5rem);
}
.stat {
  text-align: center;
  padding: 1.6rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.stat .num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.7rem);
  color: var(--navy-700);
  line-height: 1;
}
.stat .num span { color: var(--amber-500); }
.stat .label { margin-top: 0.5rem; font-size: 0.92rem; color: var(--slate-500); font-weight: 500; }

/* ---------- Services grid ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
}
.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.7rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  overflow: hidden;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber-500), var(--amber-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #d7e2ee; }
.card:hover::after { transform: scaleX(1); }
.card-icon {
  width: 54px; height: 54px;
  border-radius: 15px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue-100), #d9e8fa);
  color: var(--navy-600);
  margin-bottom: 1.1rem;
}
.card-icon svg { width: 27px; height: 27px; }
.card h3 { font-size: 1.18rem; margin-bottom: 0.5rem; }
.card p { font-size: 0.97rem; color: var(--slate-500); }
.card--accent .card-icon { background: linear-gradient(135deg, var(--amber-100), #ffe6bd); color: #b4750a; }

/* Link row */
.card-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1rem; font-family: var(--font-head); font-weight: 700; font-size: 0.92rem;
  color: var(--navy-600);
}
.card-link svg { width: 1rem; height: 1rem; transition: transform 0.25s var(--ease); }
.card:hover .card-link svg { transform: translateX(4px); }

/* ---------- Why choose / feature split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.feature-list { display: grid; gap: 1.2rem; margin-top: 1.8rem; }
.feature {
  display: flex; gap: 1rem; align-items: flex-start;
}
.feature-ic {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 13px;
  display: grid; place-items: center;
  background: var(--navy-800); color: var(--amber-400);
}
.feature-ic svg { width: 22px; height: 22px; }
.feature h4 { font-family: var(--font-head); font-size: 1.1rem; color: var(--ink); margin-bottom: 0.2rem; }
.feature p { font-size: 0.97rem; color: var(--slate-500); }

.showcase {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-600));
  border-radius: var(--radius-xl);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.showcase::before {
  content:""; position:absolute; width:280px;height:280px;border-radius:50%;
  background: radial-gradient(circle, rgba(245,165,36,0.35), transparent 70%);
  top:-90px; right:-70px;
}
.showcase h3 { color: #fff; font-size: 1.5rem; }
.showcase p { color: var(--blue-100); margin-top: 0.6rem; }
.showcase-list { margin-top: 1.6rem; display: grid; gap: 0.9rem; }
.showcase-list li { display:flex; gap:0.7rem; align-items:flex-start; color: #eaf2fb; font-size: 0.98rem; }
.showcase-list svg { width: 1.3rem; height: 1.3rem; color: var(--amber-400); flex-shrink:0; margin-top: 0.1rem; }
.showcase-cta { margin-top: 1.8rem; }

/* Comparison callout */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 1rem;
}
.compare-col {
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  border: 1px solid var(--line);
}
.compare-col h4 { display:flex; align-items:center; gap:0.5rem; font-size: 1.05rem; margin-bottom: 1rem; }
.compare-col ul { display: grid; gap: 0.7rem; }
.compare-col li { display:flex; gap:0.6rem; font-size: 0.96rem; }
.compare-col li svg { width: 1.15rem; height:1.15rem; flex-shrink:0; margin-top:0.15rem; }
.compare-them { background: var(--bg-soft); }
.compare-them li { color: var(--slate-500); }
.compare-them li svg { color: var(--slate-400); }
.compare-us { background: linear-gradient(160deg, #fbfdff, var(--blue-100)); border-color: #cfe0f4; }
.compare-us li svg { color: var(--teal-500); }

/* ---------- Process ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.5vw, 1.6rem);
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.4rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.step-num {
  position: absolute;
  top: -20px; left: 1.4rem;
  width: 44px; height: 44px;
  border-radius: 13px;
  background: linear-gradient(180deg, var(--amber-400), var(--amber-500));
  color: var(--navy-900);
  font-family: var(--font-head); font-weight: 800; font-size: 1.15rem;
  display: grid; place-items: center;
  box-shadow: var(--shadow-amber);
}
.step h3 { font-size: 1.15rem; margin: 0.7rem 0 0.4rem; }
.step p { font-size: 0.95rem; color: var(--slate-500); }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.1rem, 2.5vw, 1.6rem);
  align-items: stretch;
}
.pricing-grid--packages {
  grid-template-columns: repeat(4, 1fr);
}
.price-card {
  display: flex; flex-direction: column;
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  text-align: center;
}
.price-card-icon {
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--teal-100);
  color: var(--teal-500);
  border: 1px solid rgba(13, 148, 136, 0.12);
}
.price-card-icon svg { width: 1.45rem; height: 1.45rem; }
.price-card.featured .price-card-icon {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--amber-400);
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.price-card.featured {
  background: linear-gradient(170deg, var(--navy-800), var(--navy-600));
  border-color: var(--navy-700);
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.price-card.featured h3 { color: #fff; }
.price-tag-pop {
  display: inline-block;
  align-self: center;
  background: var(--teal-500); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 0.68rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.28rem 0.65rem; border-radius: var(--radius-pill);
  margin: 0.15rem 0 0.5rem;
}
.price-card h3 { font-size: 1.25rem; margin-bottom: 0.15rem; }
.price-card .price-desc {
  font-size: 0.92rem;
  margin: 0.85rem 0 0;
  color: var(--slate-500);
  text-align: left;
}
.price-card.featured .price-desc { color: var(--blue-100); }
.price-eyebrow {
  display: block;
  width: 100%;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-400);
  margin-bottom: 0.1rem;
}
.price-extra-note,
.price-specialized-note {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  text-align: left;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--slate-600);
  background: var(--blue-100);
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: var(--radius-sm);
  padding: 0.85rem 0.95rem;
  margin-bottom: 1.2rem;
}
.price-extra-note svg,
.price-specialized-note svg {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--teal-500);
}
.price-card.featured .price-extra-note,
.price-card.featured .price-specialized-note {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--blue-100);
}
.price-card.featured .price-extra-note svg,
.price-card.featured .price-specialized-note svg { color: var(--amber-400); }
.price-features { display: grid; gap: 0.65rem; margin: 1rem 0 1.2rem; text-align: left; }
.price-features--priced li {
  justify-content: space-between;
  gap: 0.75rem;
}
.price-feature-text { flex: 1; }
.price-feature-price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy-600);
  white-space: nowrap;
}
.price-card.featured .price-feature-price { color: var(--amber-400); }
.price .amount--text { font-size: 2.2rem; color: var(--teal-500); }
.price-card.featured .price .amount--text { color: #fff; }
.btn-accent {
  background: var(--amber-500);
  color: var(--navy-900);
  border: none;
  font-weight: 700;
}
.btn-accent:hover { background: var(--amber-400); color: var(--navy-900); }

.pricing-trust-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin: 2.4rem 0 0;
}
.pricing-trust-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.8rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.pricing-trust-icon {
  width: 2.75rem;
  height: 2.75rem;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--teal-100);
  color: var(--teal-500);
}
.pricing-trust-icon svg { width: 1.35rem; height: 1.35rem; }
.pricing-trust-card h3 {
  font-size: 1.08rem;
  color: var(--navy-800);
  margin-bottom: 0.45rem;
}
.pricing-trust-card p {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.6;
}

.pricing-exclusions-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
}
.pricing-exclusions-panel h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-size: 1.05rem;
  color: var(--navy-800);
  margin-bottom: 1.2rem;
  text-align: center;
}
.pricing-exclusions-panel h3 svg {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--amber-500);
  flex-shrink: 0;
}
.price {
  display: flex; align-items: baseline; justify-content: center;
  gap: 0.3rem;
  flex-wrap: wrap;
  margin: 0.35rem 0 0;
  font-family: var(--font-head);
}
.price .unit {
  width: 100%;
  margin-top: 0.15rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate-400);
}
.price .from { font-size: 0.85rem; font-weight: 600; color: var(--slate-400); }
.price .amount { font-size: 2.75rem; font-weight: 800; color: var(--teal-600); line-height: 1; letter-spacing: -0.03em; }
.price-card.featured .price .amount { color: var(--amber-400); }
.price-card.featured .price .from { color: var(--blue-100); }
.price-card.featured .price .unit { color: var(--blue-100); }
.price-note { font-size: 0.85rem; color: var(--slate-400); margin-bottom: 1.3rem; }
.price-card.featured .price-note { color: var(--blue-100); }
.price-features li { display:flex; gap: 0.6rem; align-items:flex-start; font-size: 0.92rem; }
.price-features li svg { width: 1.2rem; height: 1.2rem; color: var(--teal-500); flex-shrink:0; margin-top:0.15rem; }
.price-card.featured .price-features li svg { color: var(--amber-400); }
.price-card .btn { margin-top: auto; }

.pricing-note {
  text-align: center;
  max-width: 62ch;
  margin: 2rem auto 0;
  font-size: 1.02rem;
  color: var(--slate-600);
  line-height: 1.65;
}

.pricing-services-list {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  max-width: 820px;
  margin-inline: auto;
}
.pricing-service-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.98rem;
}
.pricing-service-name {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy-800);
}
.pricing-service-detail {
  font-weight: 500;
  color: var(--slate-500);
}
.pricing-service-price {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--navy-700);
  white-space: nowrap;
}

.pricing-recovery {
  max-width: 820px;
  margin-inline: auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: linear-gradient(160deg, #fbfdff, var(--bg-soft));
  border: 1px solid #cfe0f4;
  border-radius: var(--radius-lg);
}
.pricing-recovery-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  margin-bottom: 0.85rem;
}
.pricing-recovery-head h3 {
  font-size: 1.25rem;
  color: var(--navy-800);
}
.pricing-recovery-price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--navy-700);
}
.pricing-recovery p {
  color: var(--slate-600);
  line-height: 1.65;
  font-size: 1rem;
}
.pricing-recovery-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--slate-500);
}

.pricing-exclusions-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem 1.5rem;
}
.pricing-exclusions-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.98rem;
  color: var(--slate-600);
  line-height: 1.55;
}
.pricing-exclusions-list svg {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--slate-400);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.card h3 + .service-price { margin-top: 0.35rem; margin-bottom: 0.15rem; }
.service-price {
  display: inline-block;
  margin-top: 0.65rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy-600);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 0.28rem 0.65rem;
  border-radius: var(--radius-pill);
}
.card--accent .service-price {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.5vw, 1.5rem); }
.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.quote .stars { color: var(--amber-500); letter-spacing: 2px; font-size: 1rem; }
.quote p { margin: 0.9rem 0 1.3rem; color: var(--slate-700); font-size: 1.02rem; }
.quote-author { display: flex; align-items: center; gap: 0.8rem; margin-top: auto; }
.quote-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display:grid; place-items:center; color:#fff; font-family: var(--font-head); font-weight: 700;
  background: linear-gradient(135deg, var(--teal-500), var(--navy-500));
}
.quote-author strong { display:block; font-family: var(--font-head); color: var(--ink); font-size: 0.98rem; }
.quote-author span { font-size: 0.85rem; color: var(--slate-400); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 0.85rem; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.faq-item[open] { border-color: #cfe0f4; box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.4rem;
  display: flex; align-items: center; gap: 1rem;
  font-family: var(--font-head); font-weight: 700; color: var(--navy-800);
  font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  margin-left: auto; flex-shrink: 0;
  width: 26px; height: 26px; position: relative;
  transition: transform 0.3s var(--ease);
}
.faq-item summary .plus::before,
.faq-item summary .plus::after {
  content:""; position:absolute; top:50%; left:50%;
  width: 14px; height: 2.4px; border-radius: 2px;
  background: var(--amber-500);
  transform: translate(-50%,-50%);
}
.faq-item summary .plus::after { transform: translate(-50%,-50%) rotate(90deg); transition: transform 0.3s var(--ease); }
.faq-item[open] summary .plus::after { transform: translate(-50%,-50%) rotate(0); }
.faq-answer { padding: 0 1.4rem 1.3rem; color: var(--slate-500); font-size: 1rem; }
.faq-answer p + p { margin-top: 0.7rem; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: linear-gradient(150deg, var(--navy-900), var(--navy-700) 60%, var(--navy-600));
  border-radius: var(--radius-xl);
  padding: clamp(2.4rem, 5vw, 3.8rem);
  color: #fff;
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(40% 80% at 85% 20%, rgba(245,165,36,0.28), transparent 60%),
    radial-gradient(50% 90% at 10% 90%, rgba(63,127,209,0.3), transparent 60%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--blue-100); max-width: 55ch; margin: 1rem auto 0; font-size: 1.1rem; }
.cta-actions { display:flex; flex-wrap:wrap; gap: 0.8rem; justify-content:center; margin-top: 2rem; }
.cta-subnote { margin-top: 1.4rem; font-size: 0.9rem; color: #9fb3c8; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.contact-info { display: grid; gap: 1.1rem; }
.contact-line { display:flex; gap:1rem; align-items:flex-start; }
.contact-line .ic {
  width: 48px; height: 48px; flex-shrink:0;
  border-radius: 14px; display:grid; place-items:center;
  background: var(--blue-100); color: var(--navy-600);
}
.contact-line .ic svg { width: 22px; height: 22px; }
.contact-line h4 { font-family: var(--font-head); font-size: 1.05rem; color: var(--ink); margin-bottom: 0.1rem; }
.contact-line a, .contact-line p { color: var(--slate-500); }
.contact-line a:hover { color: var(--navy-600); }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label {
  display:block; font-family: var(--font-head); font-weight: 600;
  font-size: 0.9rem; color: var(--navy-800); margin-bottom: 0.4rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: inherit; font-size: 1rem;
  color: var(--ink);
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue-400); background: #fff;
  box-shadow: 0 0 0 4px rgba(63,127,209,0.15);
}
.form-consent { display:flex; gap: 0.6rem; align-items:flex-start; font-size: 0.85rem; color: var(--slate-400); margin-top: 0.3rem; }
.form-consent input { width: auto; margin-top: 0.2rem; }
.form-success {
  display: none;
  background: #e6f7ef; border: 1px solid #b9e6cf; color: #0f7a53;
  padding: 1rem 1.2rem; border-radius: var(--radius-sm);
  font-weight: 600; margin-bottom: 1.2rem;
}
.form-success.show { display: block; }

/* ---------- Service area chips ---------- */
.area-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.4rem; }
.area-chip {
  display: inline-flex; align-items:center; gap: 0.45rem;
  background: var(--white); border: 1px solid var(--line);
  padding: 0.5rem 1rem; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 0.92rem; color: var(--navy-700);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, border-color 0.2s;
}
.area-chip:hover { transform: translateY(-2px); border-color: var(--blue-400); }
.area-chip svg { width: 1rem; height: 1rem; color: var(--amber-500); }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  background: linear-gradient(180deg, #fbfdff, var(--bg-tint));
  border-bottom: 1px solid var(--line);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.page-hero .eyebrow { margin-bottom: 1rem; }
.page-hero h1 { max-width: 20ch; }
.page-hero p { margin-top: 1.1rem; font-size: 1.18rem; color: var(--slate-500); max-width: 60ch; }
.breadcrumb { display:flex; gap:0.5rem; align-items:center; font-size: 0.88rem; color: var(--slate-400); margin-bottom: 1.2rem; }
.breadcrumb a:hover { color: var(--navy-600); }
.breadcrumb span { color: var(--line); }

/* ---------- Prose (about etc.) ---------- */
.prose { max-width: 760px; }
.prose p { margin-bottom: 1.2rem; font-size: 1.08rem; color: var(--slate-700); }
.prose h2 { margin: 2.4rem 0 1rem; }
.prose h3 { margin: 1.8rem 0 0.7rem; }
.prose ul.ticks { display: grid; gap: 0.7rem; margin: 1.2rem 0; }
.prose ul.ticks li { display:flex; gap: 0.6rem; align-items:flex-start; }
.prose ul.ticks svg { width: 1.25rem; height: 1.25rem; color: var(--teal-500); flex-shrink:0; margin-top: 0.15rem; }

/* Value cards (about) */
.values { display:grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.value {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.6rem; box-shadow: var(--shadow-sm);
}
.value .ic { width: 48px;height:48px;border-radius:14px;display:grid;place-items:center;
  background: linear-gradient(135deg, var(--amber-100), #ffe6bd); color:#b4750a; margin-bottom: 1rem; }
.value .ic svg { width: 24px; height: 24px; }
.value h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.value p { font-size: 0.97rem; color: var(--slate-500); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: #b6c6d6;
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: clamp(1.6rem, 4vw, 3rem);
}
.footer-brand img { height: 44px; }
.footer-brand p { margin-top: 1.1rem; font-size: 0.96rem; color: #8fa4b8; max-width: 34ch; }
.footer-social { display:flex; gap: 0.6rem; margin-top: 1.3rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 12px;
  display:grid; place-items:center;
  background: rgba(255,255,255,0.06); color: #cdd9e5;
  transition: background 0.25s, transform 0.25s;
}
.footer-social a:hover { background: var(--amber-500); color: var(--navy-900); transform: translateY(-2px); }
.footer-social svg { width: 19px; height: 19px; }
.footer-col h4 {
  color: #fff; font-family: var(--font-head); font-size: 0.95rem;
  letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1.1rem;
}
.footer-col ul { display: grid; gap: 0.65rem; }
.footer-col a { color: #a9bccd; font-size: 0.96rem; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display:flex; gap: 0.6rem; align-items:flex-start; font-size: 0.95rem; margin-bottom: 0.7rem; }
.footer-contact svg { width: 1.15rem; height:1.15rem; color: var(--amber-400); flex-shrink:0; margin-top: 0.15rem; }
.footer-bottom {
  margin-top: clamp(2.2rem, 5vw, 3.2rem);
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,0.09);
  display:flex; flex-wrap:wrap; gap: 1rem; justify-content: space-between;
  font-size: 0.86rem; color: #7e93a7;
}
.footer-bottom a:hover { color: #fff; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; }
  .hero-lead { max-width: none; }
  .cards, .quotes { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline:auto; }
  .pricing-grid--packages { grid-template-columns: repeat(2, 1fr); max-width: none; }
  .pricing-trust-row { grid-template-columns: 1fr; }
  .pricing-exclusions-list { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid, .compare { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: grid; place-items:center; }
  .mobile-menu { display: block; }
  .cards, .quotes, .steps, .values { grid-template-columns: 1fr; }
  .problems-grid { grid-template-columns: 1fr; }
  .why-call-grid { grid-template-columns: 1fr; }
  .service-spotlight { grid-template-columns: 1fr; }
  .pricing-grid--packages { grid-template-columns: 1fr; }
  .pricing-trust-row { grid-template-columns: 1fr; }
  .pricing-exclusions-list { grid-template-columns: 1fr; }
  .pricing-service-item { flex-direction: column; align-items: flex-start; gap: 0.35rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-badge-float { left: 50%; transform: translateX(-50%); bottom: -26px; }
  .step-num { top: -18px; }
}
