/* ============================================================
   FleetCare — Commercial Fleet & Van Servicing Design System
   Corporate · navy / steel / amber · B2B uptime framing
   ============================================================ */

:root {
  /* Palette — deep navy + steel + amber accent */
  --navy-950: #060b16;
  --navy-900: #0a1326;
  --navy-800: #0f1d38;
  --navy-700: #16294e;
  --navy-600: #1f3a6b;
  --steel-600: #3d5a8a;
  --steel-500: #5b78a6;
  --steel-400: #8ba1c4;
  --steel-200: #c9d5e6;
  --steel-100: #e6ecf5;
  --amber-600: #d98014;
  --amber-500: #f59819;
  --amber-400: #ffb14d;
  --amber-100: #ffedd2;
  --mint-500: #18b88a;
  --mint-100: #d4f5ea;
  --paper: #f5f7fb;
  --cloud: #fbfcfe;
  --white: #ffffff;
  --ink: #0c1526;
  --ink-soft: #3a4a63;
  --muted: #6b7c96;
  --line: rgba(15, 29, 56, 0.10);
  --line-strong: rgba(15, 29, 56, 0.16);

  /* Type */
  --display: "Archivo", system-ui, sans-serif;
  --sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --mono: "Archivo", ui-monospace, monospace;

  /* Shape & motion */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 26px;
  --shadow-sm: 0 4px 16px rgba(10, 19, 38, 0.07);
  --shadow: 0 16px 44px rgba(10, 19, 38, 0.12);
  --shadow-lg: 0 36px 88px rgba(6, 11, 22, 0.28);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wrap: 1240px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cloud);
  line-height: 1.7;
  font-size: 17px;
  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; }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; color: var(--ink); }
h1 { font-size: clamp(2.6rem, 6vw, 4.9rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3.3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
em { font-style: normal; color: var(--amber-500); }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--sans); font-weight: 700; font-size: 0.93rem;
  letter-spacing: 0.01em; padding: 0.95rem 1.7rem; border-radius: 10px;
  cursor: pointer; border: 1.5px solid transparent;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.btn .arr { transition: transform 0.4s var(--ease); }
.btn:hover .arr { transform: translateX(5px); }
.btn-solid {
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
  color: #1a1003; box-shadow: 0 12px 28px rgba(245, 152, 25, 0.34);
}
.btn-solid:hover { transform: translateY(-3px); box-shadow: 0 20px 42px rgba(245, 152, 25, 0.44); }
.btn-navy {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  color: #fff; box-shadow: 0 12px 28px rgba(15, 29, 56, 0.3);
}
.btn-navy:hover { transform: translateY(-3px); box-shadow: 0 20px 42px rgba(15, 29, 56, 0.42); }
.btn-ghost { background: transparent; border-color: var(--line-strong); color: var(--ink); }
.btn-ghost:hover { border-color: var(--steel-500); color: var(--navy-700); transform: translateY(-2px); }
.btn-light { background: rgba(255,255,255,0.10); color: #fff; border-color: rgba(255,255,255,0.34); backdrop-filter: blur(6px); }
.btn-light:hover { background: rgba(255,255,255,0.96); color: var(--navy-800); transform: translateY(-3px); }

/* ---------- Eyebrow & headings ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--display); font-weight: 700; font-size: 0.74rem;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--amber-600);
  margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: linear-gradient(90deg, var(--amber-500), var(--steel-400)); border-radius: 2px; }
.eyebrow.center { justify-content: center; }
.eyebrow.light { color: var(--amber-400); }
.sec-head { margin-bottom: clamp(2.5rem, 4vw, 3.5rem); }
.sec-head.center { text-align: center; max-width: 740px; margin-inline: auto; }
.sec-head .lead { color: var(--ink-soft); font-size: 1.08rem; max-width: 580px; margin-top: 1rem; }
.split-head { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; align-items: end; }
.split-head p { color: var(--ink-soft); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 0.7rem 0;
  background: rgba(251, 252, 254, 0.82);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent;
}
.site-header.shrink {
  padding: 0.3rem 0;
  background: rgba(251, 252, 254, 0.95);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-logo {
  width: 42px; height: 42px; border-radius: 11px; flex: none;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--navy-700), var(--navy-600));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 8px 18px rgba(15,29,56,0.28);
}
.brand-logo svg { width: 24px; height: 24px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-mark { font-family: var(--display); font-weight: 800; font-size: 1.32rem; letter-spacing: -0.02em; color: var(--ink); }
.brand-mark span { color: var(--amber-500); }
.brand-sub { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 0.4rem; }
.nav-links a {
  font-weight: 600; font-size: 0.95rem; color: var(--ink-soft);
  padding: 0.55rem 0.95rem; border-radius: 9px;
  transition: color 0.25s, background 0.25s;
}
.nav-links a:hover { color: var(--navy-700); background: var(--steel-100); }
.nav-links a.active { color: var(--navy-700); background: var(--steel-100); }

.nav-cta { display: flex; align-items: center; gap: 1.2rem; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 700; font-size: 0.92rem; color: var(--navy-700);
}
.nav-phone svg { width: 17px; height: 17px; color: var(--amber-500); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  background: var(--steel-100); border: 1px solid var(--line); border-radius: 11px;
  cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle span { display: block; width: 21px; height: 2px; background: var(--navy-700); border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.25s; }
.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 540px at 82% -8%, rgba(245,152,25,0.12), transparent 60%),
    radial-gradient(760px 540px at 8% 110%, rgba(61,90,138,0.16), transparent 60%),
    linear-gradient(180deg, var(--cloud), var(--paper));
  padding: clamp(2.4rem, 5vw, 4.2rem) 0 clamp(3.5rem, 6vw, 5.5rem);
}
.hero-grid { display: grid; grid-template-columns: 1.06fr 0.94fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.hero-copy { max-width: 620px; }
.hero h1 { margin-bottom: 1.4rem; }
.hero-tag { color: var(--ink-soft); font-size: 1.12rem; max-width: 540px; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 2.2rem; }
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem; }
.trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: var(--ink-soft); }
.trust-item svg { width: 19px; height: 19px; color: var(--mint-500); flex: none; }
.trust-item b { color: var(--ink); }

.hero-media { position: relative; }
.hero-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.5);
  aspect-ratio: 16 / 11;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.hero-badge {
  position: absolute; top: -18px; left: -18px; z-index: 3;
  background: var(--white); border-radius: 16px; padding: 1rem 1.2rem;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  display: flex; align-items: center; gap: 0.85rem;
}
.hero-badge .ring {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  display: grid; place-items: center; color: var(--mint-500);
  background: var(--mint-100);
}
.hero-badge .ring svg { width: 22px; height: 22px; }
.hero-badge .n { font-family: var(--display); font-weight: 800; font-size: 1.5rem; color: var(--navy-800); line-height: 1; }
.hero-badge .l { font-size: 0.74rem; color: var(--muted); font-weight: 600; }
.hero-float {
  position: absolute; bottom: -20px; right: -16px; z-index: 3;
  background: var(--navy-800); color: #fff; border-radius: 16px; padding: 0.9rem 1.15rem;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 0.8rem;
}
.hero-float .dot { width: 40px; height: 40px; border-radius: 11px; flex: none; display: grid; place-items: center; background: rgba(245,152,25,0.18); color: var(--amber-400); }
.hero-float .dot svg { width: 21px; height: 21px; }
.hero-float .t { display: flex; flex-direction: column; line-height: 1.2; }
.hero-float .t b { font-family: var(--display); font-size: 1.18rem; }
.hero-float .t span { font-size: 0.74rem; color: var(--steel-400); }

/* logo strip */
.logo-strip { border-top: 1px solid var(--line); margin-top: clamp(2.6rem, 5vw, 4rem); padding-top: 2rem; }
.logo-strip .ls-label { text-align: center; font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; color: var(--muted); margin-bottom: 1.4rem; }
.logo-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(1.6rem, 4vw, 3.4rem); }
.logo-row span { font-family: var(--display); font-weight: 800; font-size: 1.18rem; letter-spacing: -0.01em; color: var(--steel-500); opacity: 0.8; transition: opacity 0.3s, color 0.3s; }
.logo-row span:hover { opacity: 1; color: var(--navy-700); }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats { background: var(--navy-900); position: relative; overflow: hidden; }
.stats::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(600px 320px at 15% 0%, rgba(61,90,138,0.3), transparent 60%),
    radial-gradient(500px 300px at 90% 120%, rgba(245,152,25,0.12), transparent 60%);
}
.stats-inner {
  position: relative; display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; padding: clamp(3rem, 5vw, 4.5rem) 0;
}
.stat { text-align: center; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: -0.75rem; top: 50%; transform: translateY(-50%); height: 56px; width: 1px; background: rgba(139,161,196,0.2); }
.stat .n { font-family: var(--display); font-weight: 800; font-size: clamp(2.4rem, 4.5vw, 3.4rem); color: #fff; line-height: 1; display: flex; align-items: baseline; justify-content: center; }
.stat .suf, .stat .pre { color: var(--amber-400); }
.stat .l { color: var(--steel-400); font-size: 0.86rem; font-weight: 600; margin-top: 0.7rem; letter-spacing: 0.02em; }

/* ============================================================
   SERVICES CARDS
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.svc-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.8rem; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
  position: relative; overflow: hidden;
}
.svc-card::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--amber-500), var(--steel-500)); transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--ease); }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.svc-card:hover::after { transform: scaleX(1); }
.svc-ico { width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; background: linear-gradient(140deg, var(--navy-700), var(--navy-600)); color: var(--amber-400); margin-bottom: 1.3rem; }
.svc-ico svg { width: 26px; height: 26px; }
.svc-card h3 { margin-bottom: 0.6rem; }
.svc-card p { color: var(--ink-soft); font-size: 0.97rem; margin-bottom: 1.1rem; }
.svc-card .svc-more { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 700; font-size: 0.88rem; color: var(--navy-700); }
.svc-card .svc-more svg { width: 15px; height: 15px; transition: transform 0.35s var(--ease); }
.svc-card:hover .svc-more svg { transform: translateX(4px); }

/* ============================================================
   SPLIT SECTIONS
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.4rem, 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: 4 / 3; border: 1px solid var(--line); }
.split-media .frame.portrait { aspect-ratio: 4 / 5; }
.split-media .frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.split-media:hover .frame img { transform: scale(1.05); }
.split-media .tab {
  position: absolute; bottom: -18px; left: -18px;
  background: var(--white); border-radius: 14px; padding: 0.85rem 1.1rem;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 0.75rem; border: 1px solid var(--line);
}
.split-media .tab svg { width: 34px; height: 34px; padding: 7px; border-radius: 9px; background: var(--amber-100); color: var(--amber-600); flex: none; }
.split-media .tab b { display: block; font-family: var(--display); font-size: 0.98rem; color: var(--ink); }
.split-media .tab span { font-size: 0.78rem; color: var(--muted); }
.split-copy .lead { color: var(--ink-soft); font-size: 1.08rem; margin: 1rem 0 1.6rem; }
.split-copy h2 { margin-bottom: 0.4rem; }

.feature-list { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 1.6rem; }
.feature-list li { display: flex; gap: 1rem; }
.feature-list .ico { width: 42px; height: 42px; border-radius: 11px; flex: none; display: grid; place-items: center; background: var(--steel-100); color: var(--navy-700); }
.feature-list .ico svg { width: 21px; height: 21px; }
.feature-list h4 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.feature-list p { color: var(--ink-soft); font-size: 0.94rem; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: step; }
.pstep { position: relative; padding: 2rem 1.6rem; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.pstep:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.pstep .idx { font-family: var(--display); font-weight: 800; font-size: 2.4rem; color: var(--steel-200); line-height: 1; margin-bottom: 1rem; }
.pstep h4 { font-size: 1.12rem; margin-bottom: 0.5rem; }
.pstep p { color: var(--ink-soft); font-size: 0.93rem; }
.pstep .pdot { position: absolute; top: 2.1rem; right: 1.4rem; width: 9px; height: 9px; border-radius: 50%; background: var(--amber-500); box-shadow: 0 0 0 5px rgba(245,152,25,0.16); }

/* ============================================================
   SLA / PLANS PRICING
   ============================================================ */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.plan {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2.2rem 2rem; display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.plan.featured { background: var(--navy-900); color: var(--steel-200); border-color: transparent; position: relative; box-shadow: var(--shadow-lg); }
.plan.featured h3, .plan.featured .plan-price b { color: #fff; }
.plan .plan-tag { font-family: var(--display); font-weight: 700; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber-600); margin-bottom: 0.8rem; }
.plan.featured .plan-tag { color: var(--amber-400); }
.plan .badge-pop { position: absolute; top: 1.4rem; right: 1.4rem; background: var(--amber-500); color: #1a1003; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.35rem 0.7rem; border-radius: 100px; }
.plan h3 { margin-bottom: 0.3rem; }
.plan .plan-desc { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 1.4rem; }
.plan.featured .plan-desc { color: var(--steel-400); }
.plan-price { display: flex; align-items: baseline; gap: 0.3rem; margin-bottom: 0.3rem; }
.plan-price b { font-family: var(--display); font-weight: 800; font-size: 2.7rem; color: var(--ink); line-height: 1; }
.plan-price .per { color: var(--muted); font-size: 0.9rem; font-weight: 600; }
.plan.featured .plan-price .per { color: var(--steel-400); }
.plan .plan-vat { font-size: 0.78rem; color: var(--muted); margin-bottom: 1.5rem; }
.plan ul.plan-feats { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.8rem; flex: 1; }
.plan-feats li { display: flex; gap: 0.65rem; font-size: 0.93rem; color: var(--ink-soft); }
.plan.featured .plan-feats li { color: var(--steel-200); }
.plan-feats li svg { width: 18px; height: 18px; flex: none; color: var(--mint-500); margin-top: 2px; }
.plan.featured .plan-feats li svg { color: var(--amber-400); }
.plan .btn { width: 100%; justify-content: center; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.qcard { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.9rem 1.7rem; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.dark .qcard { background: rgba(255,255,255,0.04); border-color: rgba(139,161,196,0.16); }
.qcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.qcard .stars { color: var(--amber-500); letter-spacing: 0.1em; margin-bottom: 0.9rem; font-size: 0.95rem; }
.qcard blockquote { font-size: 1rem; color: var(--ink); line-height: 1.6; margin-bottom: 1.3rem; }
.dark .qcard blockquote { color: #eef2f8; }
.qmeta { display: flex; align-items: center; gap: 0.75rem; }
.qmeta .av { width: 42px; height: 42px; border-radius: 11px; flex: none; display: grid; place-items: center; font-family: var(--display); font-weight: 800; color: #fff; background: linear-gradient(140deg, var(--navy-700), var(--steel-600)); }
.qmeta b { display: block; font-size: 0.95rem; color: var(--ink); }
.dark .qmeta b { color: #fff; }
.qmeta span { font-size: 0.8rem; color: var(--muted); }

/* ============================================================
   JOURNAL / BLOG
   ============================================================ */
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.post {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex; flex-direction: column;
}
.post:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.post .post-media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--steel-100); }
.post .post-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.post:hover .post-media img { transform: scale(1.06); }
.post-body { padding: 1.5rem 1.5rem 1.7rem; flex: 1; display: flex; flex-direction: column; }
.post .meta { display: flex; align-items: center; gap: 0.6rem; font-size: 0.78rem; color: var(--muted); font-weight: 600; margin-bottom: 0.8rem; }
.post .type { color: var(--amber-600); background: var(--amber-100); padding: 0.2rem 0.6rem; border-radius: 100px; letter-spacing: 0.05em; }
.post .meta .mdot { width: 4px; height: 4px; border-radius: 50%; background: var(--steel-400); }
.post h3 { font-size: 1.22rem; margin-bottom: 0.6rem; line-height: 1.2; }
.post h3 a:hover { color: var(--navy-700); }
.post p { color: var(--ink-soft); font-size: 0.93rem; margin-bottom: 1.1rem; flex: 1; }
.post .more { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 700; font-size: 0.87rem; color: var(--navy-700); }
.post .more svg { width: 15px; height: 15px; transition: transform 0.35s var(--ease); }
.post:hover .more svg { transform: translateX(4px); }

/* featured blog */
.feature-post { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; background: var(--navy-900); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.feature-post .fp-media { aspect-ratio: 16 / 12; overflow: hidden; }
.feature-post .fp-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.feature-post:hover .fp-media img { transform: scale(1.05); }
.feature-post .fp-body { padding: clamp(2rem, 4vw, 3.4rem) clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3.4rem) 0; color: var(--steel-200); }
.feature-post .fp-body .meta { color: var(--steel-400); }
.feature-post .fp-body h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.feature-post .fp-body p { color: var(--steel-300, #b6c4dc); margin-bottom: 1.6rem; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(4rem, 8vw, 7rem) 0;
  background:
    radial-gradient(700px 380px at 20% 10%, rgba(245,152,25,0.18), transparent 60%),
    radial-gradient(700px 420px at 85% 110%, rgba(61,90,138,0.35), transparent 60%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: #fff;
}
.cta-band h2 { color: #fff; max-width: 760px; margin: 0 auto 1rem; }
.cta-band p { color: var(--steel-300, #b6c4dc); max-width: 560px; margin: 0 auto 1.8rem; }
.cta-band .hero-actions { justify-content: center; margin-bottom: 0; }

/* ============================================================
   PAGE HERO (sub-pages)
   ============================================================ */
.page-hero {
  position: relative; overflow: hidden;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
  background:
    radial-gradient(680px 380px at 88% -10%, rgba(245,152,25,0.1), transparent 60%),
    linear-gradient(180deg, var(--navy-950), var(--navy-800));
  color: #fff;
}
.page-hero .crumbs { font-size: 0.84rem; color: var(--steel-400); font-weight: 600; margin-bottom: 1rem; }
.page-hero .crumbs a:hover { color: var(--amber-400); }
.page-hero h1 { color: #fff; margin-bottom: 1rem; max-width: 760px; }
.page-hero p { color: var(--steel-300, #b6c4dc); max-width: 600px; font-size: 1.08rem; }

/* ============================================================
   FILTER BAR (services page)
   ============================================================ */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 2.8rem; }
.filter-btn {
  font-family: var(--sans); font-weight: 700; font-size: 0.88rem;
  padding: 0.6rem 1.2rem; border-radius: 100px; cursor: pointer;
  background: var(--white); border: 1.5px solid var(--line-strong); color: var(--ink-soft);
  transition: all 0.3s var(--ease);
}
.filter-btn:hover { border-color: var(--steel-500); color: var(--navy-700); }
.filter-btn.active { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }
.svc-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.svc-list .svc-card.hide { display: none; }
.svc-card .svc-price { font-family: var(--display); font-weight: 800; font-size: 1.4rem; color: var(--navy-800); margin-bottom: 0.3rem; }
.svc-card .svc-price small { font-size: 0.78rem; color: var(--muted); font-weight: 600; }
.svc-card .svc-cat { position: absolute; top: 1.4rem; right: 1.4rem; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--steel-500); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: clamp(2.4rem, 5vw, 4rem); align-items: start; }
.contact-form {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3vw, 2.6rem); box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.84rem; font-weight: 700; color: var(--ink); margin-bottom: 0.4rem; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 0.96rem; color: var(--ink);
  padding: 0.85rem 1rem; border: 1.5px solid var(--line-strong); border-radius: 11px;
  background: var(--paper); transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--amber-500); background: var(--white);
  box-shadow: 0 0 0 4px rgba(245,152,25,0.14);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.92rem; font-weight: 600; margin-top: 0.4rem; min-height: 1.2rem; }
.form-note.ok { color: var(--mint-500); }

.contact-aside { display: flex; flex-direction: column; gap: 1.2rem; }
.info-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.5rem; }
.info-card h4 { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.9rem; font-size: 1.05rem; }
.info-card h4 svg { width: 19px; height: 19px; color: var(--amber-500); }
.info-card address, .info-card p { font-style: normal; color: var(--ink-soft); font-size: 0.95rem; line-height: 1.7; }
.info-card a:hover { color: var(--navy-700); }
.hours-list { display: flex; flex-direction: column; gap: 0.5rem; }
.hours-list .hrow { display: flex; justify-content: space-between; font-size: 0.92rem; }
.hours-list .hrow span:first-child { color: var(--ink-soft); }
.hours-list .hrow span:last-child { font-weight: 700; color: var(--ink); }
.hours-list .hrow.open span:last-child { color: var(--mint-500); }

.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: var(--navy-900); }
.map-frame svg { display: block; width: 100%; height: auto; }

/* ============================================================
   REVEAL / ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s 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; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-950); color: var(--steel-400); padding-top: clamp(3.5rem, 6vw, 5rem); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 2rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(139,161,196,0.14); }
.footer-brand .brand { margin-bottom: 1.1rem; }
.footer-brand .brand-mark { color: #fff; }
.footer-brand p { font-size: 0.93rem; line-height: 1.7; max-width: 320px; margin-bottom: 1.3rem; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,0.06); transition: background 0.3s, transform 0.3s, color 0.3s; color: var(--steel-200); }
.footer-social a:hover { background: var(--amber-500); color: #1a1003; transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { color: #fff; font-size: 0.84rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col a { display: block; font-size: 0.93rem; padding: 0.32rem 0; transition: color 0.25s; }
.footer-col a:hover { color: var(--amber-400); }
.footer-nap { font-style: normal; font-size: 0.93rem; line-height: 1.9; }
.footer-nap a:hover { color: var(--amber-400); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding: 1.6rem 0; font-size: 0.82rem; }
.footer-disclaimer { background: var(--navy-900); color: var(--steel-500); font-size: 0.78rem; text-align: center; padding: 1rem 1.5rem; line-height: 1.6; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .hero-copy { max-width: none; }
  .svc-grid, .quotes-grid, .journal-grid, .plans-grid, .svc-list { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .feature-post { grid-template-columns: 1fr; }
  .feature-post .fp-body { padding: 0 2rem 2.6rem; }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch; gap: 0.3rem;
    position: absolute; top: calc(100% + 0.5rem); left: 1.3rem; right: 1.3rem;
    background: var(--white); padding: 1rem; border-radius: var(--radius);
    box-shadow: var(--shadow); border: 1px solid var(--line);
  }
  .nav.open .nav-cta {
    display: flex; flex-direction: column; align-items: stretch; gap: 0.7rem;
    position: absolute; top: calc(100% + 0.5rem); left: 1.3rem; right: 1.3rem;
    transform: translateY(calc(100% + 0.4rem));
  }
  .nav.open .nav-cta { background: transparent; }
  .nav-toggle { display: flex; }
  .nav { position: relative; }
  .split { grid-template-columns: 1fr; gap: 3rem; }
  .split.flip .split-media { order: 0; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1rem; }
  .stat:nth-child(3)::before, .stat:nth-child(2)::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .split-head { grid-template-columns: 1fr; gap: 1rem; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .svc-grid, .quotes-grid, .journal-grid, .plans-grid, .process-grid, .svc-list { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-badge { left: 0; }
  .hero-float { right: 0; }
}

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