/* ============================================================
   Triple Check Electric — design system
   Palette extracted from the actual logo SVG:
   purple #271d70/#422c88 · orange #f7921e→#d85820 · gold #ffda02 · cyan #0097cf
   Fonts: Kanit (display, italic accents echo the logo slant) + DM Sans (body)
   ============================================================ */
:root {
  --purple-deep: #1d1550;
  --purple: #271d70;
  --purple-mid: #422c88;
  --purple-soft: #8869ae;
  --orange: #f7921e;
  --orange-deep: #d85820;
  --gold: #ffda02;
  --gold-deep: #fdb515;
  --cyan: #43c5e4;
  --cyan-deep: #0097cf;

  --color-primary: var(--orange-deep);
  --color-secondary: var(--purple);
  --color-bg: #FFFFFF;
  --color-surface: #F5F4FB;
  --color-surface-dark: var(--purple);
  --color-surface-darker: var(--purple-deep);
  --color-text: #241f3d;
  --color-text-light: #5c5678;
  --color-text-on-dark: #FFFFFF;
  --color-text-on-dark-muted: #b9b3d6;
  --color-border: #E5E2F0;
  --grad-orange: linear-gradient(180deg, var(--orange) 0%, var(--orange-deep) 100%);
  --grad-hero: linear-gradient(105deg, rgba(23,16,66,0.96) 0%, rgba(29,21,80,0.88) 34%, rgba(39,29,112,0.55) 62%, rgba(39,29,112,0.18) 100%);
  --color-google-star: #FBBC04;

  --font-display: 'Kanit', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --container-width: 1200px;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow-sm: 0 2px 8px rgba(29, 21, 80, 0.08);
  --shadow-md: 0 8px 24px rgba(29, 21, 80, 0.13);
  --shadow-lg: 0 20px 48px rgba(29, 21, 80, 0.18);
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --speed-fast: 0.25s;
  --speed: 0.4s;
  --badge-star-color: var(--gold);
  --badge-text-color: #fff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan-deep); }
p + p { margin-top: 14px; }

.container { max-width: var(--container-width); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

h1, h2, h3, h4 { font-family: var(--font-display); text-transform: uppercase; line-height: 1.15; color: var(--color-secondary); }
h3 { font-size: 21px; font-weight: 700; }

/* ---------- section scaffolding ---------- */
.section { padding: 96px 0; }
.section--surface { background: var(--color-surface); }
.section__footer { text-align: center; margin-top: 44px; }
.section-subtitle {
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 14px;
  color: var(--orange-deep); margin-bottom: 10px;
}
.section-title { font-size: clamp(30px, 3.6vw, 44px); font-weight: 800; margin-bottom: 18px; }
.section-title--bolt { position: relative; padding-bottom: 18px; }
.section-title--bolt::after {
  content: ''; display: block; width: 96px; height: 7px; margin: 14px auto 0;
  background: linear-gradient(90deg, var(--gold) 0 33%, var(--orange) 33% 66%, var(--cyan-deep) 66% 100%);
  transform: skewX(-24deg); border-radius: 2px;
}
.section-title--bolt.left::after { margin-left: 4px; }
.text-center .section-title--bolt::after { margin-left: auto; margin-right: auto; }
.prose { max-width: 780px; }
.prose h2 { margin-top: 8px; }

/* dark band sections */
.band {
  position: relative; padding: 96px 0; color: #fff; overflow: hidden;
  background: linear-gradient(118deg, var(--purple-deep) 0%, var(--purple) 55%, var(--purple-mid) 100%);
}
.band .section-title { color: #fff; }
.band p { color: rgba(255,255,255,0.86); }
.band__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.band::before {
  content: ''; position: absolute; right: -140px; top: 50%; transform: translateY(-50%) rotate(8deg);
  width: 560px; height: 560px; opacity: 0.05; z-index: 0;
  background-image: url('../images/icon-512.png'); background-size: contain; background-repeat: no-repeat;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block; padding: 16px 32px; border-radius: var(--radius);
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  text-transform: uppercase; letter-spacing: 0.04em; text-decoration: none;
  line-height: 1; cursor: pointer; border: 0; white-space: nowrap;
  transition: transform var(--speed-fast) var(--ease), box-shadow var(--speed-fast) var(--ease), background var(--speed-fast) var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--primary { background: var(--grad-orange); color: #fff; box-shadow: 0 4px 14px rgba(216, 88, 32, 0.35); }
.btn--outline-light { border: 2px solid rgba(255,255,255,0.8); color: #fff; background: transparent; }
.btn--outline-light:hover { background: rgba(255,255,255,0.12); }
.btn--outline { border: 2px solid var(--purple); color: var(--purple); background: transparent; }
.btn--outline:hover { background: var(--purple); color: #fff; }
.btn--sm { padding: 12px 22px; font-size: 13.5px; }
.btn-pair { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- mobile CTA bar ---------- */
.mobile-cta-bar { display: none; }
@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; position: fixed; top: 0; left: 0; right: 0; z-index: 1100; }
  .mobile-cta-bar a {
    flex: 1; padding: 14px 0; text-align: center; font-family: var(--font-display);
    font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.04em; text-decoration: none;
  }
  .mobile-cta-bar a { font-size: 13px; padding: 14px 0; }
  .mobile-cta-bar__primary { background: var(--grad-orange); color: #fff; }
  .mobile-cta-bar__call { background: var(--purple-deep); color: #fff; }
  .mobile-cta-bar__save { background: var(--purple-mid); color: var(--gold); }
  body { padding-top: 46px; }
}

/* ---------- utility bar ---------- */
.utility-bar { background: var(--purple-deep); color: #fff; padding: 9px 0; font-size: 13.5px; position: relative; z-index: 1001; }
.utility-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.utility-bar__item { display: inline-flex; align-items: center; gap: 7px; color: var(--color-text-on-dark-muted); }
.utility-bar__item svg { width: 15px; height: 15px; color: var(--gold); }
.utility-bar__actions { display: flex; align-items: center; gap: 20px; }
.utility-bar__phone { color: #fff; font-weight: 700; text-decoration: none; }
.utility-bar__phone:hover { color: var(--gold); }
@media (max-width: 768px) {
  .utility-bar__hours-wrap { display: none; }
  .utility-bar__actions .utility-bar__item { display: none; }
  .utility-bar .container { justify-content: center; }
  .utility-bar__actions { justify-content: center; }
}

/* ---------- nav ---------- */
.nav {
  background: var(--purple); position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 14px rgba(23, 16, 66, 0.35);
}
.nav .container { display: flex; align-items: center; gap: 28px; min-height: 78px; }
.nav__logo { flex-shrink: 0; display: flex; }
.nav__logo img { width: 190px; height: auto; }
.nav__links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__link, .nav__dropdown-toggle {
  font-family: var(--font-body); font-size: 15.5px; font-weight: 600; color: #fff;
  text-decoration: none; padding: 10px 13px; background: none; border: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px; border-radius: 6px;
  transition: background var(--speed-fast) var(--ease), color var(--speed-fast) var(--ease);
}
.nav__link:hover, .nav__dropdown-toggle:hover { background: rgba(255,255,255,0.1); color: var(--gold); }
.nav__dropdown { position: relative; }
.nav__dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 250px;
  background: var(--purple-deep); border-radius: 10px; padding: 10px;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.08);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  z-index: 1002;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__dropdown-item {
  display: block; padding: 10px 14px; color: rgba(255,255,255,0.88); text-decoration: none;
  font-size: 14.5px; font-weight: 500; border-radius: 6px;
  transition: background var(--speed-fast) var(--ease), color var(--speed-fast) var(--ease);
}
.nav__dropdown-item:hover { background: rgba(247, 146, 30, 0.16); color: var(--gold); }
.nav__actions { display: flex; align-items: center; gap: 10px; margin-left: 8px; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto; }
.nav__hamburger span { width: 26px; height: 3px; border-radius: 2px; background: #fff; transition: transform var(--speed) var(--ease), opacity var(--speed) var(--ease); }
.nav__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav-overlay {
  position: fixed; inset: 0; background: rgba(13, 9, 40, 0.6); opacity: 0; visibility: hidden;
  transition: opacity var(--speed) var(--ease); z-index: 999;
}
.nav-overlay.active { opacity: 1; visibility: visible; }

@media (max-width: 1080px) {
  .nav__hamburger { display: flex; }
  .nav__actions { display: none; }
  .nav__links {
    position: fixed; top: 0; right: -100%; width: 86%; max-width: 400px; height: 100vh;
    background: var(--purple-deep); flex-direction: column; align-items: stretch;
    padding: 84px 26px 32px; gap: 2px; transition: right var(--speed) var(--ease-out);
    z-index: 1000; overflow-y: auto; margin-left: 0;
  }
  .nav__links.open { right: 0; }
  .nav__dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; background: rgba(255,255,255,0.05);
    max-height: 0; overflow: hidden; padding: 0 10px;
    transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
  }
  .nav__dropdown.open .nav__dropdown-menu { max-height: 500px; padding: 8px 10px; }
  .nav__dropdown-toggle { width: 100%; justify-content: space-between; }
}

/* ---------- hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; background: var(--purple-deep); }
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero::after { content: ''; position: absolute; inset: 0; background: var(--grad-hero); }
.hero .container { position: relative; z-index: 2; }
.hero--home .container { padding-top: 96px; padding-bottom: 120px; }
.hero--sub .container { padding-top: 56px; padding-bottom: 96px; }
.hero--nophoto { background: linear-gradient(118deg, var(--purple-deep) 0%, var(--purple) 48%, var(--purple-mid) 100%); }
.hero--nophoto::after { background: none; }
.hero--nophoto .hero__bolt-tex {
  content: ''; position: absolute; right: -80px; bottom: -110px; width: 460px; height: 460px;
  opacity: 0.07; transform: rotate(10deg);
  background-image: url('../images/icon-512.png'); background-size: contain; background-repeat: no-repeat;
}
.hero__content { max-width: 660px; }
.hero__title {
  font-size: clamp(33px, 4.6vw, 56px); font-weight: 800; font-style: italic;
  color: #fff; margin: 6px 0 10px; letter-spacing: 0.005em;
}
.hero__title em { font-style: italic; color: var(--orange); }
.hero__count {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  text-transform: uppercase; color: var(--gold); font-size: clamp(16px, 1.8vw, 20px);
  margin-bottom: 12px; letter-spacing: 0.03em;
}
.hero__text { font-size: 17.5px; color: rgba(255,255,255,0.88); max-width: 560px; margin-bottom: 22px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }

.hero__badges { display: flex; flex-wrap: wrap; gap: 26px; margin-bottom: 22px; }
.hero__badge { display: flex; align-items: center; gap: 12px; }
.hero__badge-logo { width: 40px; height: 40px; flex-shrink: 0; }
.hero__badge-info { display: flex; flex-direction: column; gap: 2px; }
.hero__badge-stars { display: flex; gap: 1px; }
.hero__badge-stars svg { width: 16px; height: 16px; fill: var(--badge-star-color); }
.hero__badge-text {
  font-family: var(--font-display); font-weight: 800; font-size: 1rem;
  color: var(--badge-text-color); text-transform: uppercase; letter-spacing: 0.08em;
}

.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 20px; }
.hero__trust-item { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 600; color: rgba(255,255,255,0.92); }
.hero__trust-item svg { width: 17px; height: 17px; flex-shrink: 0; }
.hero__trust-item:nth-child(3n+1) svg { color: var(--gold); }
.hero__trust-item:nth-child(3n+2) svg { color: var(--orange); }
.hero__trust-item:nth-child(3n) svg { color: var(--cyan); }

/* bolt zigzag divider at hero base */
.hero__zag { position: absolute; bottom: -1px; left: 0; right: 0; z-index: 3; line-height: 0; }
.hero__zag svg { display: block; width: 100%; height: 44px; }

.breadcrumbs { font-size: 13.5px; color: rgba(255,255,255,0.65); margin-bottom: 34px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.breadcrumbs a { color: rgba(255,255,255,0.65); text-decoration: none; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .current { color: #fff; }

@media (max-width: 768px) {
  .hero--home .container { padding-top: 56px; padding-bottom: 84px; }
  .hero--sub .container { padding-top: 40px; padding-bottom: 72px; }
  .hero__badges { gap: 18px; }
}

/* ---------- floating trust strip ---------- */
.trust-strip { position: relative; z-index: 5; margin-top: -54px; margin-bottom: 8px; }
.trust-strip__card {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 26px 30px;
  border-top: 5px solid transparent;
  border-image: linear-gradient(90deg, var(--gold) 0 33%, var(--orange) 33% 66%, var(--cyan-deep) 66% 100%) 1;
}
.trust-strip__item { display: flex; align-items: center; gap: 13px; padding: 6px 10px; }
.trust-strip__icon {
  width: 46px; height: 46px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-mid) 100%); color: var(--gold);
}
.trust-strip__icon svg { width: 24px; height: 24px; }
.trust-strip__label { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 14.5px; color: var(--purple); line-height: 1.25; }
.trust-strip__sub { font-size: 12.5px; color: var(--color-text-light); }
@media (max-width: 1024px) { .trust-strip__card { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .trust-strip__card { grid-template-columns: 1fr; padding: 18px; } }

/* ---------- cards ---------- */
.card-grid { display: grid; gap: 28px; margin-top: 44px; }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .card-grid--3, .card-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .card-grid--2, .card-grid--3, .card-grid--4 { grid-template-columns: 1fr; } }

.photo-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.photo-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.photo-card__img-wrap { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.photo-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.photo-card__tag {
  position: absolute; bottom: 12px; left: 12px; background: var(--grad-orange); color: #fff;
  font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 12.5px;
  text-transform: uppercase; letter-spacing: 0.05em; padding: 7px 14px; border-radius: 6px;
  transform: skewX(-8deg);
}
.photo-card__body { padding: 26px 26px 30px; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.photo-card__body p { color: var(--color-text-light); font-size: 15.5px; flex: 1; }

.icon-card {
  background: #fff; border-radius: var(--radius-lg); padding: 30px 26px;
  box-shadow: var(--shadow-sm); border-top: 4px solid var(--orange);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.icon-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.icon-card__icon {
  width: 52px; height: 52px; border-radius: 12px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-mid) 100%); color: var(--gold);
}
.icon-card__icon svg { width: 26px; height: 26px; }
.icon-card h3 { margin-bottom: 8px; }
.icon-card p { font-size: 15px; color: var(--color-text-light); }

/* ---------- triple check process ---------- */
.check-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; position: relative; z-index: 1; }
.check-step {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 34px 28px; position: relative;
}
.check-step__mark {
  width: 58px; height: 58px; margin-bottom: 18px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; transform: skewX(-6deg);
}
.check-step__mark svg { width: 30px; height: 30px; color: #1d1550; }
.check-step:nth-child(1) .check-step__mark { background: linear-gradient(180deg, var(--gold) 0%, var(--gold-deep) 100%); }
.check-step:nth-child(2) .check-step__mark { background: var(--grad-orange); }
.check-step:nth-child(2) .check-step__mark svg { color: #fff; }
.check-step:nth-child(3) .check-step__mark { background: linear-gradient(180deg, var(--cyan) 0%, var(--cyan-deep) 100%); }
.check-step:nth-child(3) .check-step__mark svg { color: #fff; }
.check-step__label {
  font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 13px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
}
.check-step h3 { color: #fff; margin-bottom: 10px; }
.check-step p { font-size: 15px; }
@media (max-width: 900px) { .check-steps { grid-template-columns: 1fr; } }

/* ---------- splits / stats ---------- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.split__img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } }

.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 30px; }
.stat { text-align: center; background: var(--color-surface); border-radius: 10px; padding: 18px 8px; }
.stat__num { font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: 27px; color: var(--orange-deep); }
.stat__label { font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-text-light); }
@media (max-width: 560px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }

/* ---------- check list ---------- */
.check-list { list-style: none; columns: 2; gap: 40px; margin-top: 20px; }
.check-list li { display: flex; align-items: center; gap: 10px; padding: 7px 0; break-inside: avoid; }
.check-list li svg { width: 18px; height: 18px; flex-shrink: 0; }
.check-list li:nth-child(3n+1) svg { color: var(--gold-deep); }
.check-list li:nth-child(3n+2) svg { color: var(--orange-deep); }
.check-list li:nth-child(3n) svg { color: var(--cyan-deep); }
.check-list a { color: var(--color-text); text-decoration: none; font-weight: 500; }
.check-list a:hover { color: var(--orange-deep); }
@media (max-width: 640px) { .check-list { columns: 1; } }

/* ---------- reviews ---------- */
.review-card {
  background: linear-gradient(160deg, var(--purple) 0%, var(--purple-deep) 100%);
  color: #fff; border-radius: var(--radius-lg); padding: 30px 28px;
  position: relative; box-shadow: var(--shadow-md); display: flex; flex-direction: column;
}
.review-card__g { position: absolute; top: 22px; right: 22px; width: 26px; height: 26px; }
.review-card__g svg { width: 100%; height: 100%; }
.review-card__stars { display: flex; gap: 2px; margin-bottom: 14px; }
.review-card__stars svg { width: 17px; height: 17px; color: var(--gold); }
.review-card__text { font-size: 15px; color: rgba(255,255,255,0.9); flex: 1; }
.review-card__meta { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.review-card__avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.review-card__author { font-family: var(--font-display); font-weight: 700; font-size: 15px; text-transform: uppercase; }
.review-card__when { font-size: 12.5px; color: var(--color-text-on-dark-muted); }
.reviews__cta { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 44px; }

/* ---------- areas ---------- */
.area-section { position: relative; }
.area-section::before {
  content: ''; position: absolute; inset: 0; opacity: 0.5; pointer-events: none;
  background-image: radial-gradient(rgba(66, 44, 136, 0.14) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
}
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; position: relative; }
.area-card {
  background: #fff; border: 1px solid var(--color-border); border-radius: 10px;
  padding: 18px 20px; transition: transform var(--speed-fast) var(--ease), box-shadow var(--speed-fast) var(--ease), border-color var(--speed-fast) var(--ease);
}
.area-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--orange); }
.area-card__city {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display);
  font-weight: 700; text-transform: uppercase; font-size: 16px; color: var(--purple); text-decoration: none;
}
.area-card__city svg { width: 16px; height: 16px; color: var(--orange-deep); }
.area-card__city:hover { color: var(--orange-deep); }
.area-card__links { margin-top: 6px; font-size: 13px; color: var(--color-text-light); display: flex; flex-wrap: wrap; gap: 6px; }
.area-card__links a { color: var(--color-text-light); text-decoration: none; }
.area-card__links a:hover { color: var(--orange-deep); }
@media (max-width: 900px) { .area-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .area-grid { grid-template-columns: 1fr; } }

/* ---------- forms ---------- */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-weight: 600; font-size: 14px; }
.form-input, .form-textarea {
  width: 100%; padding: 12px 15px; border: 1.5px solid var(--color-border);
  border-radius: var(--radius); font-family: var(--font-body); font-size: 15.5px;
  color: var(--color-text); background: #fff;
  transition: border-color var(--speed-fast) var(--ease), box-shadow var(--speed-fast) var(--ease);
}
.form-input:focus, .form-textarea:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(247, 146, 30, 0.18);
}
.lead-form { max-width: 640px; margin: 44px auto 0; }
.lead-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.lead-form__full { grid-column: 1 / -1; }
.lead-form__submit {
  grid-column: 1 / -1; padding: 16px 32px; background: var(--grad-orange); color: #fff;
  border: 0; border-radius: var(--radius); font-family: var(--font-display); font-size: 16px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; cursor: pointer;
  transition: transform var(--speed-fast) var(--ease), box-shadow var(--speed-fast) var(--ease);
}
.lead-form__submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.lead-form__consent { grid-column: 1 / -1; font-size: 12px; line-height: 1.5; color: var(--color-text-light); }
@media (max-width: 640px) { .lead-form__grid { grid-template-columns: 1fr; } }

.form-card { background: #fff; border-radius: var(--radius-lg); padding: 34px 30px; box-shadow: var(--shadow-lg); color: var(--color-text); }
.form-card__title { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 22px; color: var(--purple); }
.form-card__sub { font-size: 14px; color: var(--color-text-light); margin: 4px 0 20px; }
.form-card .lead-form__grid { gap: 14px; }

/* ---------- steps ---------- */
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.step { background: #fff; border-radius: var(--radius-lg); padding: 32px 28px; box-shadow: var(--shadow-sm); position: relative; }
.step__num {
  font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: 44px;
  background: linear-gradient(180deg, var(--orange) 0%, var(--orange-deep) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; margin-bottom: 12px;
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--color-text-light); }
@media (max-width: 900px) { .step-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 44px auto 0; }
.faq-item { border: 1.5px solid var(--color-border); border-radius: 10px; margin-bottom: 10px; overflow: hidden; background: #fff; }
.faq-item__question {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 14px;
  padding: 18px 22px; cursor: pointer; font-family: var(--font-body); font-weight: 600;
  font-size: 16px; color: var(--color-text); background: #fff; border: 0; text-align: left;
  transition: background var(--speed-fast) var(--ease);
}
.faq-item__question:hover { background: var(--color-surface); }
.faq-item__question svg { flex-shrink: 0; transition: transform var(--speed-fast) var(--ease); color: var(--orange-deep); }
.faq-item.active .faq-item__question svg { transform: rotate(180deg); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height var(--speed) var(--ease); }
.faq-item__answer-inner { padding: 0 22px 20px; color: var(--color-text-light); font-size: 15.5px; }

/* ---------- CTA band ---------- */
.cta-section {
  position: relative; padding: 88px 0; text-align: center; color: #fff; overflow: hidden;
  background: linear-gradient(112deg, var(--purple-mid) 0%, var(--purple) 45%, var(--purple-deep) 100%);
}
.cta-section::before {
  content: ''; position: absolute; left: -100px; top: -80px; width: 420px; height: 420px;
  opacity: 0.06; transform: rotate(-12deg);
  background-image: url('../images/icon-512.png'); background-size: contain; background-repeat: no-repeat;
}
.cta-section h2 { color: #fff; font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.85); max-width: 620px; margin: 0 auto 28px; }
.cta-section .container { position: relative; z-index: 1; }

/* ---------- map ---------- */
.map-section { line-height: 0; }
.map-embed { width: 100%; height: 320px; border: 0; }

/* ---------- footer ---------- */
.footer { background: var(--purple-deep); color: var(--color-text-on-dark-muted); padding: 84px 0 40px; position: relative; }
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--gold) 0 33%, var(--orange) 33% 66%, var(--cyan-deep) 66% 100%);
}
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 44px; }
.footer__logo img { width: 210px; }
.footer__brand-desc { font-size: 14.5px; margin-top: 18px; line-height: 1.7; }
.footer__heading { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.footer__links a {
  display: block; padding: 4px 0; color: var(--color-text-on-dark-muted); text-decoration: none;
  font-size: 14.5px; transition: color var(--speed-fast) var(--ease);
}
.footer__links a:hover { color: var(--gold); }
.footer__contact-item { display: flex; align-items: flex-start; gap: 10px; padding: 6px 0; font-size: 14.5px; }
.footer__contact-item svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 3px; color: var(--orange); }
.footer__contact-item a { color: #fff; font-weight: 600; text-decoration: none; }
.footer__contact-item a:hover { color: var(--gold); }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 9px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.07); color: #fff; transition: background var(--speed-fast) var(--ease), color var(--speed-fast) var(--ease);
}
.footer__social a:hover { background: var(--grad-orange); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom {
  margin-top: 56px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.09);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13.5px;
}
@media (max-width: 1024px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer__grid { grid-template-columns: 1fr; } .footer__bottom { flex-direction: column; } }

.legal-footer { background: #14103d; padding: 16px 0; text-align: center; font-size: 12.5px; color: #8b85ad; }
.legal-footer a { color: #8b85ad; text-decoration: none; margin: 0 8px; }
.legal-footer a:hover { color: var(--gold); }

/* ---------- trust logos (real award badges) ---------- */
.trust-logos { background: #fff; padding: 44px 0; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.trust-logos__inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 28px 44px; }
.trust-logos__label {
  font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 13px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-text-light);
  flex-basis: 100%; text-align: center;
}
.trust-logos__inner img { height: 74px; width: auto; }
@media (max-width: 640px) { .trust-logos__inner { gap: 18px 26px; } .trust-logos__inner img { height: 54px; } }

/* ---------- phone-gated specials clip-out ---------- */
.specials-clip {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
  background: #fff; border: 3px dashed var(--orange); border-radius: var(--radius-lg);
  padding: 38px 42px; box-shadow: var(--shadow-sm);
}
.specials-clip__bolt {
  width: 72px; height: 72px; border-radius: 18px; flex-shrink: 0; transform: skewX(-6deg);
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-orange); color: #fff;
}
.specials-clip__bolt svg { width: 38px; height: 38px; }
.specials-clip > div:nth-child(2) { flex: 1; min-width: 260px; }
.specials-clip__cta { flex-shrink: 0; }
@media (max-width: 640px) { .specials-clip { padding: 28px 22px; } }

/* ---------- van cutout in areas section ---------- */
.area-section { overflow: hidden; }
.area-section__truck {
  position: absolute; right: -30px; bottom: 18px; width: 300px; height: auto;
  opacity: 0.92; pointer-events: none; z-index: 1;
  filter: drop-shadow(0 10px 24px rgba(29, 21, 80, 0.25));
}
@media (max-width: 1200px) { .area-section__truck { display: none; } }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
