/* ============================================================
   Apex Bodyworks — Collision Repair & Paint Design System
   Crisp white · confident blue · steel grey · sharp + dependable
   ============================================================ */

:root {
  /* Palette */
  --blue-900: #0a1f3c;
  --blue-800: #102a52;
  --blue-700: #163b73;
  --blue-600: #1d54a8;
  --blue-500: #2667d4;
  --blue-400: #3f86f0;
  --blue-300: #7fb0f7;
  --blue-100: #dbe9fc;
  --blue-50:  #eef4fe;

  --steel-900: #11161d;
  --steel-700: #2b333f;
  --steel-600: #404a59;
  --steel-500: #5a6675;
  --steel-400: #8893a3;
  --steel-300: #b6bfca;
  --steel-200: #d8dde4;
  --steel-100: #eceff3;

  --paper: #ffffff;
  --mist: #f5f7fa;
  --fog: #f9fbfd;
  --ink: #11161d;
  --ink-soft: #404a59;
  --muted: #6c7888;
  --line: rgba(17, 22, 29, 0.10);
  --line-strong: rgba(17, 22, 29, 0.18);

  --amber: #ff9e2c;
  --green: #1faf6a;

  /* Type */
  --display: "Sora", system-ui, sans-serif;
  --body: "Archivo", system-ui, sans-serif;

  /* Shape & motion */
  --radius: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --shadow-sm: 0 2px 10px rgba(17, 22, 29, 0.06);
  --shadow: 0 14px 40px rgba(17, 22, 29, 0.10);
  --shadow-lg: 0 36px 80px rgba(10, 31, 60, 0.20);
  --shadow-blue: 0 18px 44px rgba(29, 84, 168, 0.30);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-sharp: cubic-bezier(0.65, 0, 0.35, 1);
  --wrap: 1240px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16.5px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }

.wrap { width: min(100% - 2.6rem, var(--wrap)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }
.mist { background: var(--mist); }
.dark { background: var(--blue-900); color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--body); font-weight: 700;
  font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue-600);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--blue-500);
}
.eyebrow.center::before { display: none; }
.eyebrow.center { justify-content: center; }
.eyebrow.light { color: var(--blue-300); }

.lead { font-size: 1.12rem; color: var(--ink-soft); margin-bottom: 1.4rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--body); font-weight: 700; font-size: 0.92rem;
  letter-spacing: 0.01em; padding: 0.95rem 1.7rem; border-radius: var(--radius);
  cursor: pointer; border: 2px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.btn .arr { transition: transform 0.35s var(--ease); }
.btn:hover .arr { transform: translateX(5px); }
.btn-solid {
  background: var(--blue-600); color: #fff; box-shadow: var(--shadow-blue);
}
.btn-solid:hover { background: var(--blue-700); transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--ink); border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--blue-500); color: var(--blue-600); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--blue-700); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline-light {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.4);
}
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn-amber { background: var(--amber); color: var(--steel-900); }
.btn-amber:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(255,158,44,0.35); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,0.86);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: padding 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s;
}
.site-header.shrink { box-shadow: var(--shadow-sm); background: rgba(255,255,255,0.96); }
.nav { display: flex; align-items: center; gap: 1.6rem; padding: 1.15rem 0; transition: padding 0.35s var(--ease); }
.site-header.shrink .nav { padding: 0.7rem 0; }

.brand { display: flex; flex-direction: column; line-height: 1; margin-right: auto; }
.brand-mark {
  font-family: var(--display); font-weight: 800; font-size: 1.32rem;
  letter-spacing: -0.02em; color: var(--ink); display: inline-flex; align-items: center; gap: 0.5rem;
}
.brand-mark .chev {
  width: 26px; height: 26px; display: inline-grid; place-items: center;
  background: var(--blue-600); border-radius: 3px;
  transform: skewX(-8deg);
}
.brand-mark .chev svg { width: 15px; height: 15px; stroke: #fff; transform: skewX(8deg); }
.brand-mark b { color: var(--blue-600); font-weight: 800; }
.brand-sub {
  font-family: var(--body); font-weight: 700; font-size: 0.62rem;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--muted); margin-top: 0.32rem; padding-left: 2.1rem;
}

.nav-links { display: flex; gap: 0.3rem; }
.nav-links a {
  font-weight: 600; font-size: 0.92rem; color: var(--ink-soft);
  padding: 0.55rem 0.85rem; border-radius: var(--radius); position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0.85rem; right: 0.85rem; bottom: 0.32rem;
  height: 2px; background: var(--blue-500); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--blue-700); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 1.1rem; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-weight: 700; font-size: 0.88rem; color: var(--ink);
}
.nav-phone svg { width: 16px; height: 16px; stroke: var(--blue-600); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px;
  align-items: center; justify-content: center; background: var(--mist);
  border: 1px solid var(--line); border-radius: var(--radius); cursor: pointer;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); transition: transform 0.3s var(--ease), opacity 0.2s; }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 500px at 88% -8%, var(--blue-50), transparent 60%),
    linear-gradient(180deg, #fff, var(--fog));
  padding: clamp(2.6rem, 5vw, 4.5rem) 0 clamp(4rem, 7vw, 6rem);
}
.hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(2rem, 5vw, 4.2rem); align-items: center; }
.hero-copy .eyebrow { margin-bottom: 1.3rem; }
.hero h1 { margin-bottom: 1.3rem; }
.hero h1 em { font-style: normal; color: var(--blue-600); position: relative; }
.hero h1 em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0.08em; height: 0.16em;
  background: var(--amber); opacity: 0.55; z-index: -1;
}
.hero-tag { font-size: 1.1rem; color: var(--ink-soft); max-width: 35ch; margin-bottom: 1.9rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }
.hero-trust { display: flex; align-items: center; gap: 0.7rem; margin-top: 2rem; font-size: 0.92rem; color: var(--ink-soft); }
.hero-trust .stars { color: var(--amber); letter-spacing: 2px; }
.hero-trust b { color: var(--ink); }

.hero-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.7rem; }
.trust-chip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; font-weight: 700; color: var(--blue-700);
  background: var(--blue-50); border: 1px solid var(--blue-100);
  padding: 0.4rem 0.75rem; border-radius: 100px;
}
.trust-chip svg { width: 14px; height: 14px; stroke: var(--blue-600); }

.hero-media { position: relative; }
.hero-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/3.3;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.hero-frame::before {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(160deg, transparent 55%, rgba(10,31,60,0.42));
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); will-change: transform; }
.hero-badge {
  position: absolute; left: -22px; bottom: 26px; z-index: 3;
  background: var(--blue-600); color: #fff; padding: 1.1rem 1.3rem;
  border-radius: var(--radius-md); box-shadow: var(--shadow-blue);
}
.hero-badge .n { font-family: var(--display); font-weight: 800; font-size: 2.1rem; line-height: 1; }
.hero-badge .l { font-size: 0.74rem; letter-spacing: 0.06em; opacity: 0.9; margin-top: 0.35rem; text-transform: uppercase; }
.hero-float {
  position: absolute; right: -16px; top: 28px; z-index: 3;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  box-shadow: var(--shadow); padding: 0.8rem 1rem; display: flex; align-items: center; gap: 0.7rem;
}
.hero-float .dot { width: 38px; height: 38px; border-radius: 50%; background: var(--blue-50); display: grid; place-items: center; }
.hero-float .dot svg { width: 19px; height: 19px; stroke: var(--blue-600); }
.hero-float .t { display: flex; flex-direction: column; line-height: 1.2; }
.hero-float .t b { font-family: var(--display); font-size: 1rem; }
.hero-float .t span { font-size: 0.72rem; color: var(--muted); }

/* ---------- Logo strip ---------- */
.logos { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--fog); }
.logos-inner { display: flex; align-items: center; gap: 1.4rem; padding: 1.5rem 0; flex-wrap: wrap; justify-content: center; }
.logos-inner .lbl { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.insurer {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--display); font-weight: 700; font-size: 1rem; color: var(--steel-500);
  opacity: 0.85; transition: opacity 0.25s, color 0.25s;
}
.insurer:hover { opacity: 1; color: var(--blue-700); }
.insurer svg { width: 20px; height: 20px; stroke: currentColor; }

/* ---------- Stats ---------- */
.stats { background: var(--blue-900); color: #fff; position: relative; overflow: hidden; }
.stats::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(115deg, transparent 60%, rgba(63,134,240,0.18)),
    repeating-linear-gradient(125deg, transparent 0 38px, rgba(255,255,255,0.025) 38px 40px);
  pointer-events: none;
}
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.stat { padding: clamp(2.6rem,5vw,3.6rem) 1.5rem; text-align: center; border-right: 1px solid rgba(255,255,255,0.10); }
.stat:last-child { border-right: none; }
.stat .n { font-family: var(--display); font-weight: 800; font-size: clamp(2.4rem, 4vw, 3.3rem); line-height: 1; color: #fff; }
.stat .n .suf { color: var(--blue-300); }
.stat .l { margin-top: 0.6rem; font-size: 0.84rem; letter-spacing: 0.04em; color: var(--steel-300); text-transform: uppercase; }

/* ---------- Section heads ---------- */
.sec-head { margin-bottom: 3rem; }
.sec-head.center { text-align: center; max-width: 720px; margin-inline: auto; }
.sec-head .eyebrow { margin-bottom: 1rem; }
.sec-head h2 { margin-bottom: 0.6rem; }
.sec-head.center h2 { margin-bottom: 0; }
.split-head { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2rem; align-items: end; }
.split-head p { color: var(--ink-soft); }
.sec-foot { margin-top: 2.8rem; text-align: center; }

/* ---------- Services grid ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.svc {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 2rem 1.8rem; position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
}
.svc::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--blue-500); transform: scaleY(0); transform-origin: top;
  transition: transform 0.4s var(--ease);
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.svc:hover::before { transform: scaleY(1); }
.svc .ico {
  width: 54px; height: 54px; border-radius: var(--radius); background: var(--blue-50);
  display: grid; place-items: center; margin-bottom: 1.3rem; transition: background 0.3s, transform 0.4s var(--ease);
}
.svc:hover .ico { background: var(--blue-600); transform: rotate(-6deg); }
.svc .ico svg { width: 26px; height: 26px; stroke: var(--blue-600); transition: stroke 0.3s; }
.svc:hover .ico svg { stroke: #fff; }
.svc h3 { margin-bottom: 0.6rem; }
.svc p { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 1.1rem; }
.svc .lnk { font-weight: 700; font-size: 0.88rem; color: var(--blue-600); display: inline-flex; align-items: center; gap: 0.4rem; }
.svc .lnk svg { width: 15px; height: 15px; stroke: currentColor; transition: transform 0.3s var(--ease); }
.svc:hover .lnk svg { transform: translateX(4px); }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.flip .split-media { order: 2; }
.split-media { position: relative; }
.split-media .frame {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 5/6; position: relative;
}
.split-media .frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.split-media .frame:hover img { transform: scale(1.06); }
.split-media .tab {
  position: absolute; left: 22px; bottom: 22px; right: 22px;
  background: rgba(255,255,255,0.94); backdrop-filter: blur(8px);
  border-radius: var(--radius-md); padding: 0.85rem 1.1rem; display: flex; align-items: center; gap: 0.8rem;
  box-shadow: var(--shadow-sm);
}
.split-media .tab svg { width: 26px; height: 26px; stroke: var(--blue-600); flex-shrink: 0; }
.split-media .tab b { display: block; font-family: var(--display); font-size: 0.98rem; }
.split-media .tab span { font-size: 0.78rem; color: var(--muted); }
.split-copy h2 { margin-bottom: 1.1rem; }

.feature-list { display: grid; gap: 1.1rem; margin-top: 1.6rem; }
.feature-list li { display: flex; gap: 1rem; }
.feature-list .fico {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: var(--radius); background: var(--blue-50);
  display: grid; place-items: center;
}
.feature-list .fico svg { width: 20px; height: 20px; stroke: var(--blue-600); }
.feature-list h4 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.feature-list p { color: var(--ink-soft); font-size: 0.94rem; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; counter-reset: step; }
.step {
  position: relative; padding: 2.2rem 1.5rem 1.7rem; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-md);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.step .num {
  font-family: var(--display); font-weight: 800; font-size: 2.4rem;
  color: var(--blue-100); line-height: 1; margin-bottom: 0.8rem;
  -webkit-text-stroke: 1px var(--blue-300);
}
.step h4 { font-size: 1.08rem; margin-bottom: 0.45rem; }
.step p { font-size: 0.9rem; color: var(--ink-soft); }
.step .pin {
  position: absolute; top: 1.4rem; right: 1.4rem; width: 32px; height: 32px;
  border-radius: 50%; background: var(--blue-50); display: grid; place-items: center;
}
.step .pin svg { width: 16px; height: 16px; stroke: var(--blue-600); }

/* ---------- Banner CTA mid ---------- */
.banner {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--blue-800), var(--blue-600));
  color: #fff; padding: clamp(2.5rem, 5vw, 4rem); display: grid;
  grid-template-columns: 1.4fr 1fr; gap: 2rem; align-items: center;
}
.banner::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,0.14), transparent 70%);
}
.banner h2 { color: #fff; margin-bottom: 0.7rem; }
.banner p { color: rgba(255,255,255,0.86); }
.banner .b-actions { display: flex; justify-content: flex-end; gap: 0.8rem; flex-wrap: wrap; }

/* ---------- Testimonials ---------- */
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.qcard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 2rem 1.8rem; position: relative; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.qcard:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.qcard .mark { font-family: var(--display); font-size: 3.4rem; line-height: 0.6; color: var(--blue-100); }
.qcard .stars { color: var(--amber); letter-spacing: 2px; margin: 0.4rem 0 0.9rem; font-size: 0.95rem; }
.qcard blockquote { font-size: 1rem; color: var(--ink-soft); margin-bottom: 1.4rem; }
.qmeta { display: flex; align-items: center; gap: 0.8rem; }
.qmeta .av {
  width: 44px; height: 44px; border-radius: 50%; background: var(--blue-600); color: #fff;
  display: grid; place-items: center; font-family: var(--display); font-weight: 700;
}
.qmeta b { display: block; font-size: 0.95rem; }
.qmeta span { font-size: 0.8rem; color: var(--muted); }

/* ---------- Guarantee band ---------- */
.guarantee { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.gcard {
  text-align: center; padding: 2.2rem 1.5rem; border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md); background: rgba(255,255,255,0.03);
}
.gcard .gico {
  width: 60px; height: 60px; margin: 0 auto 1.1rem; border-radius: var(--radius); display: grid; place-items: center;
  background: rgba(63,134,240,0.18);
}
.gcard .gico svg { width: 30px; height: 30px; stroke: var(--blue-300); }
.gcard h3 { color: #fff; margin-bottom: 0.5rem; }
.gcard p { color: var(--steel-300); font-size: 0.94rem; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; text-align: center; color: #fff;
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  background: linear-gradient(125deg, var(--blue-900), var(--blue-700));
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(125deg, transparent 0 50px, rgba(255,255,255,0.03) 50px 52px);
}
.cta-band .wrap { position: relative; }
.cta-band h2 { color: #fff; margin: 0.8rem auto 0.9rem; max-width: 16ch; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 52ch; margin: 0 auto 2rem; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--steel-900); color: var(--steel-300); padding-top: clamp(3.5rem, 6vw, 5rem); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 2.4rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .brand-mark { color: #fff; margin-bottom: 1rem; }
.footer-brand .brand-mark b { color: var(--blue-400); }
.footer-brand p { font-size: 0.92rem; max-width: 34ch; margin-bottom: 1.3rem; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.14);
  display: grid; place-items: center; transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.footer-social a:hover { background: var(--blue-600); border-color: var(--blue-600); transform: translateY(-2px); }
.footer-social svg { width: 17px; height: 17px; stroke: currentColor; }
.footer-col h4 { color: #fff; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col a { display: block; font-size: 0.92rem; padding: 0.32rem 0; color: var(--steel-300); transition: color 0.2s, padding-left 0.25s; }
.footer-col a:hover { color: #fff; padding-left: 0.3rem; }
.footer-nap { font-style: normal; font-size: 0.92rem; line-height: 1.9; }
.footer-nap a { color: var(--steel-300); }
.footer-nap a:hover { color: var(--blue-400); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding: 1.6rem 0; font-size: 0.82rem; color: var(--steel-400);
}
.footer-disclaimer {
  background: #000; color: var(--steel-400); font-size: 0.78rem; text-align: center;
  padding: 1rem 1.4rem; line-height: 1.6;
}

/* ---------- Page hero (inner) ---------- */
.page-hero {
  background: linear-gradient(180deg, var(--blue-900), var(--blue-700)); color: #fff;
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(3.5rem, 7vw, 5.5rem); position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(125deg, transparent 0 46px, rgba(255,255,255,0.03) 46px 48px);
}
.page-hero .wrap { position: relative; }
.crumbs { display: flex; align-items: center; gap: 0.5rem; font-size: 0.84rem; color: var(--blue-300); margin-bottom: 1.2rem; }
.crumbs a:hover { color: #fff; }
.crumbs span { opacity: 0.5; }
.page-hero h1 { color: #fff; max-width: 18ch; margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 56ch; font-size: 1.08rem; }

/* ---------- Filterable pricing grid ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.5rem; justify-content: center; }
.filter-btn {
  font-family: var(--body); font-weight: 700; font-size: 0.85rem;
  padding: 0.6rem 1.2rem; border-radius: 100px; border: 1.5px solid var(--line-strong);
  background: #fff; color: var(--ink-soft); cursor: pointer; transition: all 0.25s var(--ease);
}
.filter-btn:hover { border-color: var(--blue-400); color: var(--blue-600); }
.filter-btn.active { background: var(--blue-600); border-color: var(--blue-600); color: #fff; box-shadow: var(--shadow-blue); }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 1.9rem 1.7rem; display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), opacity 0.4s, border-color 0.3s;
}
.price-card.hide { display: none; }
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.price-card .pc-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.price-card .pc-ico { width: 48px; height: 48px; border-radius: var(--radius); background: var(--blue-50); display: grid; place-items: center; flex-shrink: 0; }
.price-card .pc-ico svg { width: 24px; height: 24px; stroke: var(--blue-600); }
.price-card .tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-600); background: var(--blue-50); padding: 0.3rem 0.6rem; border-radius: 100px; }
.price-card h3 { margin-bottom: 0.5rem; }
.price-card p { font-size: 0.93rem; color: var(--ink-soft); margin-bottom: 1.2rem; flex-grow: 1; }
.price-card .from { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.price-card .price { font-family: var(--display); font-weight: 800; font-size: 1.8rem; color: var(--ink); line-height: 1; margin: 0.2rem 0 0.3rem; }
.price-card .price small { font-size: 0.9rem; font-weight: 600; color: var(--muted); }
.price-card .pc-note { font-size: 0.82rem; color: var(--muted); }
.price-card .pc-btn { margin-top: 1.3rem; }

/* ---------- Inclusion / list rows ---------- */
.incl { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem 2rem; margin-top: 1.4rem; }
.incl li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.95rem; color: var(--ink-soft); }
.incl li svg { width: 18px; height: 18px; stroke: var(--green); flex-shrink: 0; margin-top: 0.18rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3vw, 2.6rem); box-shadow: var(--shadow-sm);
}
.form-card h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.4rem; }
.form-card .fc-sub { color: var(--ink-soft); margin-bottom: 1.7rem; font-size: 0.96rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.82rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--body); font-size: 0.95rem; color: var(--ink);
  padding: 0.8rem 0.95rem; border: 1.5px solid var(--line-strong); border-radius: var(--radius);
  background: var(--fog); transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue-500); background: #fff;
  box-shadow: 0 0 0 4px var(--blue-50);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
[data-form-note] {
  margin-top: 1rem; padding: 0.9rem 1.1rem; border-radius: var(--radius);
  background: var(--blue-50); border: 1px solid var(--blue-100); color: var(--blue-700);
  font-size: 0.9rem; font-weight: 600; display: none;
}
[data-form-note].show { display: block; }

.info-card {
  background: var(--blue-900); color: #fff; border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 1.3rem;
}
.info-card h3 { color: #fff; margin-bottom: 1.3rem; }
.info-row { display: flex; gap: 0.9rem; padding: 0.7rem 0; align-items: flex-start; }
.info-row .iico { width: 40px; height: 40px; flex-shrink: 0; border-radius: var(--radius); background: rgba(63,134,240,0.18); display: grid; place-items: center; }
.info-row .iico svg { width: 19px; height: 19px; stroke: var(--blue-300); }
.info-row b { display: block; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue-300); margin-bottom: 0.15rem; }
.info-row span, .info-row a { font-size: 0.96rem; color: #fff; }
.info-row a:hover { color: var(--blue-300); }

.hours-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem,3vw,2.2rem); }
.hours-card h3 { margin-bottom: 1rem; }
.hours-row { display: flex; justify-content: space-between; padding: 0.55rem 0; border-bottom: 1px dashed var(--line); font-size: 0.94rem; }
.hours-row:last-child { border-bottom: none; }
.hours-row b { font-weight: 700; }
.hours-row .closed { color: var(--muted); }
.hours-row.today { color: var(--blue-700); }
.hours-row.today .badge { font-size: 0.68rem; background: var(--green); color: #fff; padding: 0.1rem 0.5rem; border-radius: 100px; margin-left: 0.5rem; }

.map-wrap { margin-top: 3rem; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-wrap svg { display: block; width: 100%; height: auto; }

/* ---------- Blog ---------- */
.featured-post {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 0; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm);
  margin-bottom: 3.5rem;
}
.featured-post .fp-media { position: relative; min-height: 340px; overflow: hidden; }
.featured-post .fp-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform 0.7s var(--ease); }
.featured-post:hover .fp-media img { transform: scale(1.05); }
.featured-post .fp-body { padding: clamp(2rem, 4vw, 3rem); display: flex; flex-direction: column; justify-content: center; }
.featured-post .fp-tag { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; background: var(--amber); color: var(--steel-900); padding: 0.35rem 0.7rem; border-radius: 100px; margin-bottom: 1rem; width: fit-content; }
.featured-post h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 0.8rem; }
.featured-post .fp-excerpt { color: var(--ink-soft); margin-bottom: 1.4rem; }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.post {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden;
  display: flex; flex-direction: column; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.post:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.post .p-media { aspect-ratio: 16/10; overflow: hidden; position: relative; background: var(--mist); }
.post .p-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.post:hover .p-media img { transform: scale(1.06); }
.post .p-media .p-cat {
  position: absolute; left: 14px; top: 14px; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue-700);
  background: rgba(255,255,255,0.94); padding: 0.3rem 0.6rem; border-radius: 100px;
}
.post .p-grad { width: 100%; height: 100%; }
.post .p-body { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.post .p-meta { font-size: 0.78rem; color: var(--muted); margin-bottom: 0.6rem; display: flex; align-items: center; gap: 0.5rem; }
.post .p-meta .d { width: 4px; height: 4px; border-radius: 50%; background: var(--steel-300); }
.post h3 { font-size: 1.18rem; margin-bottom: 0.6rem; line-height: 1.2; }
.post h3 a:hover { color: var(--blue-600); }
.post .p-excerpt { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 1.1rem; flex-grow: 1; }
.post .more { font-weight: 700; font-size: 0.86rem; color: var(--blue-600); display: inline-flex; align-items: center; gap: 0.4rem; }
.post .more svg { width: 14px; height: 14px; stroke: currentColor; transition: transform 0.3s var(--ease); }
.post:hover .more svg { transform: translateX(4px); }

/* ---------- Newsletter ---------- */
.news-card {
  background: linear-gradient(120deg, var(--blue-800), var(--blue-600)); color: #fff;
  border-radius: var(--radius-lg); padding: clamp(2.2rem, 4vw, 3.2rem); text-align: center; position: relative; overflow: hidden;
}
.news-card::after { content: ""; position: absolute; right: -50px; bottom: -50px; width: 240px; height: 240px; background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%); }
.news-card h2 { color: #fff; margin-bottom: 0.6rem; }
.news-card p { color: rgba(255,255,255,0.86); max-width: 48ch; margin: 0 auto 1.6rem; }
.news-form { display: flex; gap: 0.7rem; max-width: 460px; margin: 0 auto; position: relative; }
.news-form input { flex: 1; padding: 0.85rem 1rem; border-radius: var(--radius); border: none; font-family: var(--body); font-size: 0.95rem; }
.news-form input:focus { outline: none; box-shadow: 0 0 0 4px rgba(255,255,255,0.25); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 560px; margin-inline: auto; }
  .split-head { grid-template-columns: 1fr; align-items: start; }
  .svc-grid, .quotes-grid, .price-grid, .post-grid, .guarantee { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; gap: 0; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); padding: 0.6rem 1.3rem 1.2rem;
  }
  .nav.open .nav-links a { padding: 0.85rem 0.3rem; border-bottom: 1px solid var(--line); }
  .nav.open .nav-links a::after { display: none; }
  .nav.open .nav-cta { display: flex; position: absolute; top: 100%; margin-top: 1px; left: 0; right: 0; flex-direction: column; align-items: stretch; background: #fff; padding: 1.2rem 1.3rem; box-shadow: var(--shadow); }
  .nav.open .nav-cta .btn { justify-content: center; }
  .nav-toggle { display: flex; }
  .nav { position: relative; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.10); }
  .split { grid-template-columns: 1fr; }
  .split.flip .split-media { order: 0; }
  .split-media .frame { aspect-ratio: 4/3; max-width: 540px; }
  .banner { grid-template-columns: 1fr; }
  .banner .b-actions { justify-content: flex-start; }
  .featured-post { grid-template-columns: 1fr; }
  .featured-post .fp-media { min-height: 240px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .svc-grid, .quotes-grid, .price-grid, .post-grid, .guarantee, .steps, .incl { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-badge { left: 8px; }
  .hero-float { right: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-frame img { transform: none !important; }
}
