/* ==========================================================================
   QUICK WASH EXPERT — DESIGN SYSTEM
   Theme: "Service Dial" — inspired by washing-machine cycle dials and
   fabric-care labels. Steel/navy base, signal-orange for action,
   cyan for the "wash" accent. Used sparingly, never as a gradient wash.
   ========================================================================== */

:root {
  /* Color tokens */
  --navy: #153861;
  --navy-light: #1E3660;
  --steel: #5C6B84;
  --steel-light: #97A2B4;
  --bg: #F3F5F8;
  --bg-alt: #E7EBF1;
  --white: #FFFFFF;
  --orange: #FF6A3D;
  --orange-dark: #E1531F;
  --cyan: #00A9B7;
  --cyan-dark: #00838D;
  --success: #1E8E5A;
  --line: #D6DCE5;
  --text: #1B2434;
  --text-soft: #212121;

  /* Type */
  --font-display: 'Space Grotesk', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --radius-s: 6px;
  --radius-m: 12px;
  --radius-l: 22px;
  --shadow-card: 0 10px 30px -12px rgba(18, 33, 61, 0.18);
  --shadow-lift: 0 18px 40px -14px rgba(18, 33, 61, 0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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


h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0 0 0.5em;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }

p { margin: 0 0 1em; color: #e1dddd;}
.lead{color: #322727;}
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section--alt { background: var(--bg-alt); }
.section--navy { background: var(--navy); color: #DCE3EE; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy p { color: #B7C2D6; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--orange);
  display: inline-block;
}
.section--navy .eyebrow { color: var(--cyan); }
.section--navy .eyebrow::before { background: var(--cyan); }

.lead {
  font-size: 1.12rem;
  max-width: 640px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 15px 28px;
  border-radius: var(--radius-s);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 22px -8px rgba(255, 106, 61, 0.55);
}
.btn--primary:hover { background: var(--orange-dark); }

.btn--outline {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}
.btn--outline:hover { border-color: #fff; }

.btn--navy {
  background: var(--navy);
  color: #fff;
}
.btn--navy:hover { background: var(--navy-light); }

.btn--ghost {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn--ghost:hover { background: var(--navy); color: #fff; }

.btn--block { width: 100%; }
.btn--sm { padding: 11px 18px; font-size: 0.88rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(243, 245, 248, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__bar {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 4px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand-icon {
    width: 450px;
    height: auto;
    object-fit: contain;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--navy);
 width: 420px;
}
.brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: conic-gradient(from 220deg, var(--cyan) 0deg, var(--navy) 260deg, var(--orange) 360deg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.brand__mark::after {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--bg);
}
.brand small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-size: 0.94rem;
}
.nav__links a {
  color: var(--text-soft);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--navy);
  border-color: var(--orange);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.94rem;
}
.header-phone svg { color: var(--orange); flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  padding: 64px 0 40px;
  background:radial-gradient(circle at 88% 12%, rgb(199 157 134 / 73%), #abeaff5c 45%), var(--bg);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 30px;
}
.care-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: #fff;
  border: 1.5px dashed var(--steel-light);
  border-radius: var(--radius-s);
  padding: 8px 12px;
}
.care-tag span.dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--orange); flex-shrink:0;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 6px; }
.hero__note { margin-top: 16px; font-size: 0.86rem; color: var(--steel); }

.hero__art {
  position: relative;
}
.hero__frame {
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 1px solid var(--line);
  aspect-ratio: 4/5;

}
.hero__dial {
  position: absolute;
  bottom: -26px;
  left: -26px;
  background: #fff;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
}
.hero__dial strong { display:block; font-family: var(--font-display); font-size: 1.2rem; color: var(--navy);}
.hero__dial span { font-size: 0.76rem; color: var(--steel); }

/* ---------- Trust strip ---------- */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
}
.trust-strip__item {
  background: #fff;
  padding: 26px 20px;
  text-align: center;
}
.trust-strip__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--navy);
}
.trust-strip__item span {
  font-size: 0.82rem;
  color: var(--steel);
  font-weight: 600;
}

/* ---------- Cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 30px 26px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255,106,61,0.13);
  color: var(--orange-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.icon-badge--orange,
.icon-badge--navy { background: rgba(255,106,61,0.13); color: var(--orange-dark); }

/* ---------- Process dial ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process__step { position: relative; padding-top: 12px; }
.process__ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  background: #fff;
  margin-bottom: 16px;
  box-shadow: var(--shadow-card);
}
.process__step:nth-child(1) .process__ring,
.process__step:nth-child(2) .process__ring,
.process__step:nth-child(3) .process__ring,
.process__step:nth-child(4) .process__ring { border-color: var(--orange); }
.process__connector {
  display: none;
}

/* ---------- Brand strip ---------- */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.brand-chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 18px 10px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}

/* ---------- Issues table ---------- */
.issues-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.issue-list { list-style: none; margin: 0; padding: 0; }
.issue-list li {
  display: flex;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 0.96rem;
}
.issue-list li:last-child { border-bottom: none; }
.issue-list li svg { flex-shrink: 0; margin-top: 3px; color: var(--cyan-dark); }

/* ---------- Testimonial ---------- */
.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 40px;
  position: relative;
}
.testimonial__quote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  line-height: 1.45;
  margin-bottom: 20px;
}
.testimonial__meta { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-alt);
  display: flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-weight:700; color: var(--navy);
}
.testimonial__flag {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--steel);
  background: var(--bg-alt);
  padding: 4px 9px;
  border-radius: 20px;
}

/* ---------- FAQ / Accordion ---------- */
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy);
  cursor: pointer;
}
.accordion-item__q .plus {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--steel-light);
  display: flex; align-items:center; justify-content:center;
  position: relative;
  transition: transform 0.2s ease, background 0.2s ease;
}
.accordion-item__q .plus::before,
.accordion-item__q .plus::after {
  content: "";
  position: absolute;
  background: var(--navy);
}
.accordion-item__q .plus::before { width: 10px; height: 2px; }
.accordion-item__q .plus::after { width: 2px; height: 10px; transition: transform 0.2s ease; }
.accordion-item.is-open .plus { background: var(--orange); border-color: var(--orange); }
.accordion-item.is-open .plus::before,
.accordion-item.is-open .plus::after { background: #fff; }
.accordion-item.is-open .plus::after { transform: rotate(90deg) scaleX(0); }
.accordion-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.accordion-item__a p { padding: 0 4px 20px; margin: 0; }

/* ---------- Forms ---------- */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-weight: 700;
  font-size: 0.84rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-s);
  font-family: var(--font-body);
  font-size: 0.96rem;
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 90px; }
.form-note { font-size: 0.8rem; color: var(--steel); margin-top: 10px; text-align: center; }
.form-status { font-size: 0.9rem; font-weight: 600; margin-top: 12px; display:none; }
.form-status.success { color: var(--success); display:block; }
.form-status.error { color: #C23A2E; display:block; }

/* Compact inline lead form (used on Home / Services / About) */
.mini-lead {
  background: var(--navy);
  border-radius: var(--radius-l);
  padding: 40px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.mini-lead h2, .mini-lead h3 { color: #fff; }
.mini-lead p { color: #B7C2D6; }
.mini-lead .form-card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.14); box-shadow:none; }
.mini-lead .field label { color: #DCE3EE; }
.mini-lead .field input,
.mini-lead .field select { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.22); color: #fff; }
.mini-lead .field input::placeholder { color: #8493AC; }

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--navy);
  border-radius: var(--radius-l);
  padding: 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 60px solid rgba(0,169,183,0.10);
  top: -220px; right: -140px;
}
.final-cta > * { position: relative; }
.final-cta h2 { color: #fff; }
.final-cta p { color: #B7C2D6; max-width: 520px; margin-left:auto; margin-right:auto; }
.final-cta__actions { display:flex; gap:14px; justify-content:center; margin-top:26px; flex-wrap:wrap; }
.final-cta__note { margin-top: 18px; font-size: 0.85rem; color: #8493AC; }

/* ---------- Footer ---------- */
.site-footer {
  background: #0E1930;
  color: #9BA8BF;
  padding: 64px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.site-footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 16px; }
.site-footer .brand { color: #fff; }
.site-footer ul { list-style:none; margin:0; padding:0; }
.site-footer li { margin-bottom: 10px; font-size: 0.92rem; }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
}

/* .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
} */
.footer-links a {
  color: inherit;
  text-decoration: none;
  margin-left: 20px;
}

.footer-links a:hover {
  text-decoration: underline;
}
.footer-links {
  display: flex;
  gap: 20px;
  margin-left: 0;
}
/* ---------- Floating buttons ---------- */
.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px -8px rgba(0,0,0,0.35);
  color: #fff;
  animation: floatPulse 2.6s ease-in-out infinite;
}
.float-btn--whatsapp { background: #25D366; }
.float-btn--call { background: var(--orange); animation-delay: .3s; }
.float-btn:hover { animation-play-state: paused; transform: scale(1.06); }

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 12px 24px -8px rgba(0,0,0,0.35), 0 0 0 0 rgba(37,211,102,0.35); }
  50% { box-shadow: 0 12px 24px -8px rgba(0,0,0,0.35), 0 0 0 10px rgba(37,211,102,0); }
}
.float-btn--call { animation-name: floatPulseOrange; }
@keyframes floatPulseOrange {
  0%, 100% { box-shadow: 0 12px 24px -8px rgba(0,0,0,0.35), 0 0 0 0 rgba(255,106,61,0.35); }
  50% { box-shadow: 0 12px 24px -8px rgba(0,0,0,0.35), 0 0 0 10px rgba(255,106,61,0); }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 52px 0;
  background: var(--navy);
  color: #fff;
}
.page-hero h1 { color: #fff; }
.page-hero p { color: #B7C2D6; max-width: 600px; }
.breadcrumb { font-size: 0.82rem; color: #8493AC; margin-bottom: 14px; }
.breadcrumb a:hover { color: #fff; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mx-auto { margin-left:auto; margin-right:auto; }
.mt-lg { margin-top: 48px; }
.stack-center { display:flex; flex-direction:column; align-items:center; }
.section__head { max-width: 640px; margin-bottom: 46px; }
.section__head.text-center { margin-left:auto; margin-right:auto; }
.tag-row { display:flex; flex-wrap:wrap; gap:10px; }
.map-frame { border-radius: var(--radius-l); overflow:hidden; border:1px solid var(--line); }

/* ==========================================================================
   MODERN EFFECTS — ADDED ON TOP, NOTHING ABOVE THIS WAS CHANGED
   Scroll reveals, hover polish, button shine, header scroll state, counters.
   ========================================================================== */

/* ---------- Scroll reveal (classes added by JS, no markup edited) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.reveal--visible { opacity: 1; transform: none; }
.reveal--left { transform: translateX(-36px); }
.reveal--left.reveal--visible { transform: none; }
.reveal--right { transform: translateX(36px); }
.reveal--right.reveal--visible { transform: none; }
.reveal--pop { transform: scale(0.88); }
.reveal--pop.reveal--visible { transform: scale(1); }

.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal--left, .reveal--right, .reveal--pop {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
}

/* ---------- Button shine sweep + soft glow on primary CTA ---------- */
.btn { position: relative; overflow: hidden; isolation: isolate; }
.btn::after {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 35%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-18deg);
  transition: left 0.6s ease;
  pointer-events: none;
  z-index: 1;
}
.btn:hover::after { left: 130%; }
.btn--primary { animation: btnGlow 2.8s ease-in-out infinite; }
.btn--primary:hover { animation-play-state: paused; }
@keyframes btnGlow {
  0%, 100% { box-shadow: 0 10px 22px -8px rgba(255,106,61,0.55), 0 0 0 0 rgba(255,106,61,0.32); }
  50%      { box-shadow: 0 10px 22px -8px rgba(255,106,61,0.55), 0 0 0 8px rgba(255,106,61,0); }
}

/* ---------- Card hover polish ---------- */
.card { transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.card:hover { border-color: var(--cyan); }
.icon-badge { transition: transform 0.35s cubic-bezier(.34,1.56,.64,1), background 0.3s ease; }
.card:hover .icon-badge { transform: rotate(-6deg) scale(1.08); }

/* ---------- Hero image gentle zoom ---------- */
.hero__frame { overflow: hidden; }
.hero__frame img { transition: transform 6s ease; }
.hero__frame:hover img { transform: scale(1.06); }
.hero__dial { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.hero__dial:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }

/* ---------- Logo hover ---------- */
.brand-icon { transition: transform 0.3s ease; }
.brand:hover .brand-icon { transform: scale(1.04); }
.brand-icon{ width: 650px !important; height: auto;}

/* ---------- Nav link animated underline ---------- */
.nav__links a { position: relative; }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.25s ease;
}
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { width: 100%; }

/* ---------- Sticky header gains shadow once page scrolls ---------- */
.site-header { transition: box-shadow 0.25s ease; }
.site-header.is-scrolled { box-shadow: 0 8px 24px -12px rgba(18,33,61,0.25); }

/* ---------- Process ring hover ---------- */
.process__ring { transition: transform 0.4s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s ease; }
.process__step:hover .process__ring { transform: scale(1.08); }

/* ---------- Brand chip hover ---------- */
.brand-chip { transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, border-color 0.25s ease; }
.brand-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: var(--cyan); color: var(--cyan-dark); }

/* ---------- Trust strip hover + testimonial hover ---------- */
.trust-strip__item { transition: background 0.25s ease; }
.trust-strip__item:hover { background: var(--bg-alt); }
.testimonial { transition: box-shadow 0.3s ease; }
.testimonial:hover { box-shadow: var(--shadow-card); }

/* ---------- Footer link nudge on hover ---------- */
.site-footer ul li { transition: transform 0.2s ease; }
.site-footer ul li:hover { transform: translateX(3px); }

/* ---------- Issue list row hover ---------- */
.issue-list li { transition: color 0.2s ease, padding-left 0.2s ease; }
.issue-list li:hover { color: var(--navy); padding-left: 4px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; }
  .grid-3, .grid-2, .issues-grid, .form-row, .brand-grid, .footer-grid, .mini-lead, .process, .trust-strip {
    grid-template-columns: 1fr 1fr;
  }
  .process { grid-template-columns: 1fr 1fr; row-gap: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav, .header-phone span { display: none; }
  .nav-toggle { display: flex; }
  .nav.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 26px;
    border-bottom: 1px solid var(--line);
    gap: 18px;
  }
  .nav.is-open .nav__links { flex-direction: column; gap: 14px; }
  .nav.is-open .header-cta { flex-direction: column; align-items: flex-start; gap: 12px; width: 100%; }
  .nav.is-open .header-phone span { display: inline; }
  .nav.is-open .btn { width: 100%; }

  .section { padding: 60px 0; }
  .grid-3, .issues-grid, .form-row, .mini-lead, .trust-strip, .grid-2 { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .process { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .final-cta { padding: 40px 24px; }
  .form-card { padding: 24px; }
  .mini-lead { padding: 28px 22px; }
  .hero { padding-top: 34px; }
  .hero__dial { left: 14px; bottom: -20px; }
}

@media (max-width: 480px) {
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .float-btn { width: 52px; height: 52px; }
  .floating-actions { right: 14px; bottom: 16px; }
}


/*=========================
Terms & Conditions
=========================*/

.legal-content{
    max-width:900px;
    margin:0 auto;
    /* background:#fff; */
    padding:45px;
    border-radius:12px;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
}

.legal-content h3{
    font-size:26px;
    color:#004aad;
    margin:35px 0 15px;
  
    line-height:1.4;
}

.legal-content p{
    font-size:17px;
    color:#555;
    line-height:1.9;
    margin-bottom:18px;
}

.legal-content ul{
    margin:0 0 20px 20px;
    padding:0;
}

.legal-content li{
    margin-bottom:12px;
    color:#555;
    font-size:16px;
    line-height:1.8;
}

.legal-content strong{
    color:#222;
}

/* Tablet */

@media (max-width:768px){

    .legal-content{
        padding:25px 20px;
    }

    .legal-content h3{
        font-size:22px;
    }

    .legal-content p,
    .legal-content li{
        font-size:15px;
    }

}

/* Mobile */

@media (max-width:480px){

    .section{
        padding:35px 12px;
    }

    .legal-content{
        padding:18px 15px;
        border-radius:8px;
    }

    .legal-content h3{
        font-size:19px;
        margin:25px 0 12px;
        padding-left:10px;
    }

    .legal-content p,
    .legal-content li{
        font-size:14px;
        line-height:1.7;
    }

    .legal-content ul{
        margin-left:18px;
    }

}


.card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.legal-updated{
  font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .74rem;
    font-weight: 600;
    color: var(--cyan);
    background: rgba(23, 195, 178, 0.10);
    border: 1px solid rgba(23, 195, 178, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}