/* ============================================================
   Serrurerie de La Voute — style.css v4
   Modern, mobile-first, animated, SEO & GMB friendly
   Palette : noir #0B0B0C | orange urgence #E8450A | blanc
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:      #0B0B0C;
  --ink-soft: #141416;
  --ink-mid:  #1F1F23;
  --ink-line: #2A2A30;
  --accent:       #E8450A;
  --accent-2:     #FF7A3D;
  --accent-dark:  #B8330A;
  --accent-glow:  rgba(232,69,10,.18);
  --accent-light: rgba(232,69,10,.08);
  --white:    #FFFFFF;
  --off:      #F7F7F8;
  --off-2:    #EFEFF1;
  --border:   #E6E6EA;
  --muted:    #6A6A72;
  --muted-2:  #9A9AA2;
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --shadow-xs: 0 1px 2px rgba(10,10,15,.05);
  --shadow-sm: 0 2px 8px rgba(10,10,15,.06);
  --shadow:    0 8px 28px rgba(10,10,15,.10);
  --shadow-lg: 0 20px 60px rgba(10,10,15,.18);
  --shadow-accent: 0 10px 30px rgba(232,69,10,.35);
  --ease:      cubic-bezier(.4,0,.2,1);
  --bounce:    cubic-bezier(.2,.8,.2,1.2);
  --font: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --header-h: 62px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-size-adjust: 100%; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font); color: var(--ink); background: var(--white);
  line-height: 1.65; font-size: 16px; overflow-x: hidden;
}
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
p    { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
button { font-family: inherit; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

h1 { font-size: clamp(1.9rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.1; letter-spacing: -.025em; }
h2 { font-size: clamp(1.45rem, 3.4vw, 2.2rem); font-weight: 800; line-height: 1.2; letter-spacing: -.015em; }
h3 { font-size: clamp(1.05rem, 2vw, 1.2rem); font-weight: 700; line-height: 1.3; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: clamp(3rem, 6vw, 5.5rem) 0; }
.section--alt  { background: var(--off); }
.section--dark { background: var(--ink); color: var(--white); }

/* ---- SCROLL PROGRESS ---- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  z-index: 1500; transition: width .1s linear;
  box-shadow: 0 0 10px rgba(232,69,10,.6);
}

/* ---- URGENCY TOP BAR ---- */
.top-urgency {
  background: linear-gradient(90deg, var(--accent-dark), var(--accent));
  color: var(--white); text-align: center;
  font-size: .82rem; font-weight: 600;
  padding: .5rem 1rem;
  display: flex; justify-content: center; align-items: center; gap: .5rem;
}
.top-urgency a { color: var(--white); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.top-urgency svg { width: 14px; height: 14px; fill: currentColor; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1 } 50% { transform: scale(1.15); opacity: .8 } }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.7rem; border-radius: 999px;
  font-weight: 700; font-size: .95rem; cursor: pointer;
  border: none; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
  white-space: nowrap; text-decoration: none; position: relative; overflow: hidden;
  min-height: 44px;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; fill: currentColor; }
.btn--accent { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: var(--white); box-shadow: 0 6px 20px rgba(232,69,10,.25); }
.btn--accent:hover { transform: translateY(-2px); box-shadow: var(--shadow-accent); }
.btn--accent::before {
  content:''; position:absolute; inset:0;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  opacity:0; transition: opacity .25s;
}
.btn--accent:hover::before { opacity:1; }
.btn--accent > * { position: relative; z-index: 1; }
.btn--dark   { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: var(--ink-mid); transform: translateY(-2px); }
.btn--ghost  { background: rgba(255,255,255,.08); color: var(--white); border: 1.5px solid rgba(255,255,255,.25); backdrop-filter: blur(10px); }
.btn--ghost:hover { background: rgba(255,255,255,.15); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn--outline:hover { background: var(--accent); color: var(--white); }
.btn--lg { padding: 1.05rem 2.1rem; font-size: 1.05rem; min-height: 52px; }
.btn--full { width: 100%; }

/* ---- HEADER ---- */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(11,11,12,.92);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem 1.25rem; max-width: 1180px; margin: 0 auto; gap: 1rem;
}
.header__logo { display: flex; align-items: center; gap: .65rem; line-height: 1.15; }
.header__logo-mark {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--white);
  display: grid; place-items: center; flex-shrink: 0;
  overflow: hidden; padding: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,.3);
}
.header__logo-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.header__logo-mark svg { width: 20px; height: 20px; fill: var(--accent); }
.header__logo-text { display: flex; flex-direction: column; }
.header__logo-name { font-size: .98rem; font-weight: 800; color: var(--white); letter-spacing: -.01em; }
.header__logo-sub  { font-size: .6rem; color: var(--accent-2); text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.header__right { display: flex; align-items: center; gap: .65rem; }
.header__phone { font-size: .95rem; font-weight: 700; color: var(--accent-2); display: flex; align-items: center; gap: .35rem; transition: opacity .15s; }
.header__phone:hover { opacity: .85; }
.header__phone svg { width: 15px; height: 15px; fill: currentColor; }

/* Burger (mobile) */
.burger {
  display: none;
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  cursor: pointer; padding: 0;
  position: relative; transition: background .2s;
}
.burger:hover { background: rgba(255,255,255,.14); }
.burger span { position: absolute; left: 10px; right: 10px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s, top .3s var(--ease); }
.burger span:nth-child(1) { top: 13px; }
.burger span:nth-child(2) { top: 20px; }
.burger span:nth-child(3) { top: 27px; }
.burger.open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* ---- NAV ---- */
.nav {
  background: var(--ink-soft);
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: sticky;
  top: var(--header-h, 62px);
  z-index: 999;
}
.nav__inner { display: flex; align-items: stretch; max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; flex-wrap: wrap; }
.nav a, .nav__dropdown-toggle {
  color: rgba(255,255,255,.62); font-size: .85rem; font-weight: 500;
  padding: .75rem 1rem; display: flex; align-items: center; gap: .3rem;
  transition: color .15s; border-bottom: 2px solid transparent;
  cursor: pointer; background: none; border-top: none; border-left: none; border-right: none;
  font-family: var(--font);
}
.nav a:hover, .nav a.active,
.nav__dropdown:hover .nav__dropdown-toggle,
.nav__dropdown.open .nav__dropdown-toggle {
  color: var(--accent-2); border-bottom-color: var(--accent);
}
.nav__dropdown { position: relative; display: flex; align-items: stretch; }
.nav__dropdown-toggle::after { content: '▾'; font-size: .7rem; margin-left: .15rem; transition: transform .2s; }
.nav__dropdown.open .nav__dropdown-toggle::after { transform: rotate(-180deg); }
.nav__dropdown-menu {
  display: none;
  position: absolute; top: 100%; left: 0;
  background: var(--ink-mid); border: 1px solid rgba(255,255,255,.1);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  min-width: 240px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  overflow: hidden;
  animation: dropdownIn .2s var(--ease);
}
@keyframes dropdownIn { from { opacity: 0; transform: translateY(-6px) } to { opacity: 1; transform: translateY(0) } }
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.open .nav__dropdown-menu { display: block; }
.nav__dropdown-menu a {
  display: block; padding: .75rem 1.1rem;
  font-size: .85rem; color: rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .15s, color .15s, padding-left .15s;
}
.nav__dropdown-menu a:last-child { border-bottom: none; }
.nav__dropdown-menu a:hover, .nav__dropdown-menu a.active { background: var(--accent); color: var(--white); padding-left: 1.4rem; }

/* ---- BREADCRUMB ---- */
.breadcrumb { background: var(--off); border-bottom: 1px solid var(--border); padding: .7rem 0; font-size: .82rem; color: var(--muted); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: .2rem; align-items: center; max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }
.breadcrumb li { display: flex; align-items: center; gap: .45rem; }
.breadcrumb li::after { content: '›'; color: var(--border); font-size: 1rem; }
.breadcrumb li:last-child::after { content: ''; }
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb li:last-child { color: var(--ink); font-weight: 600; }

/* ---- HERO ---- */
.hero {
  background-color: var(--ink);
  color: var(--white); padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(3.5rem, 8vw, 7rem);
  text-align: center; overflow: hidden; position: relative;
}
.hero::before {
  content: ''; position: absolute; inset: -20px;
  background: url('../images/lyon-paysage.jpg') center 40% / cover no-repeat;
  filter: blur(5px) brightness(.55);
  transform: scale(1.08); z-index: 0;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(232,69,10,.25) 0%, transparent 60%),
    linear-gradient(180deg, rgba(10,10,10,.55) 0%, rgba(10,10,10,.82) 100%);
  z-index: 1;
}
.hero__content { position: relative; z-index: 2; animation: heroIn .8s var(--ease) both; }
@keyframes heroIn { from { opacity: 0; transform: translateY(14px) } to { opacity: 1; transform: translateY(0) } }
.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(232,69,10,.15); color: var(--accent-2);
  border: 1px solid rgba(232,69,10,.4); border-radius: 999px;
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  padding: .4rem 1.1rem; margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}
.hero__badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--accent-2);
  box-shadow: 0 0 0 0 rgba(255,122,61,.6); animation: liveDot 2s infinite;
}
@keyframes liveDot {
  0% { box-shadow: 0 0 0 0 rgba(255,122,61,.6) }
  70% { box-shadow: 0 0 0 8px rgba(255,122,61,0) }
  100% { box-shadow: 0 0 0 0 rgba(255,122,61,0) }
}
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero h1 span { background: linear-gradient(135deg, var(--accent-2), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { font-size: clamp(1rem, 2vw, 1.15rem); color: rgba(255,255,255,.72); max-width: 620px; margin: 0 auto 2.25rem; line-height: 1.6; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; margin-bottom: 2.75rem; }
.hero__trust { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; }
.hero__trust-item {
  display: flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px; padding: .4rem 1rem; font-size: .78rem; color: rgba(255,255,255,.8);
  backdrop-filter: blur(10px);
}
.hero__trust-item svg { width: 13px; height: 13px; fill: var(--accent-2); flex-shrink: 0; }

/* ---- SERVICE HERO ---- */
.service-hero {
  background: var(--ink);
  background-image:
    radial-gradient(ellipse 70% 50% at 55% -5%, rgba(232,69,10,.22) 0%, transparent 55%),
    linear-gradient(180deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: var(--white); padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2.5rem, 5vw, 3.5rem);
}
.service-hero h1 { color: var(--white); margin-bottom: .75rem; }
.service-hero__sub { font-size: 1rem; color: rgba(255,255,255,.72); max-width: 680px; line-height: 1.6; }

/* ---- SECTION TITLE ---- */
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title__eyebrow {
  display: inline-block; font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .16em;
  color: var(--accent); background: var(--accent-light); padding: .35rem .95rem; border-radius: 999px; margin-bottom: .85rem;
}
.section--dark .section-title__eyebrow { color: var(--accent-2); background: rgba(232,69,10,.18); }
.section-title h2 { margin-bottom: .65rem; }
.section-title p  { color: var(--muted); max-width: 580px; margin: 0 auto; font-size: .96rem; }
.section--dark .section-title p { color: rgba(255,255,255,.55); }

/* ---- STATS BAND ---- */
.stats-band {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: var(--white); padding: 2rem 0; position: relative; overflow: hidden;
}
.stats-band::before {
  content: ''; position: absolute; top: -50%; left: -10%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 60%);
  pointer-events: none;
}
.stats-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; text-align: center; position: relative; z-index: 1; }
@media (min-width:700px) { .stats-grid { grid-template-columns: repeat(4,1fr); } }
.stat__number { font-size: clamp(1.7rem, 4vw, 2.4rem); font-weight: 900; line-height: 1; margin-bottom: .35rem; letter-spacing: -.02em; }
.stat__label { font-size: .75rem; opacity: .85; text-transform: uppercase; letter-spacing: .09em; font-weight: 600; }

/* ---- SERVICES GRID ---- */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
@media (min-width:540px)  { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width:1000px) { .services-grid { grid-template-columns: repeat(3,1fr); } }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(232,69,10,.3);
}
.service-card__media {
  position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--off);
}
.service-card__media img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease);
}
.service-card:hover .service-card__media img { transform: scale(1.06); }
.service-card__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,11,12,.55) 100%);
}
.service-card__tag {
  position: absolute; top: .9rem; left: .9rem; z-index: 2;
  background: rgba(255,255,255,.94); backdrop-filter: blur(8px);
  color: var(--accent); font-size: .68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .09em;
  padding: .3rem .7rem; border-radius: 999px;
  display: inline-flex; align-items: center; gap: .35rem;
}
.service-card__tag svg { width: 12px; height: 12px; fill: currentColor; }
.service-card__body { padding: 1.35rem 1.5rem 1.5rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.service-card__body h3 { color: var(--ink); font-size: 1.08rem; }
.service-card__body p { font-size: .88rem; color: var(--muted); line-height: 1.6; flex: 1; }
.service-card .link-arrow {
  font-size: .85rem; font-weight: 700; color: var(--accent);
  display: inline-flex; align-items: center; gap: .35rem;
  transition: gap .2s; margin-top: .5rem;
}
.service-card:hover .link-arrow { gap: .6rem; }
.service-card .link-arrow::after {
  content: '→'; transition: transform .2s;
}
.service-card:hover .link-arrow::after { transform: translateX(3px); }

/* ---- WHY CARDS ---- */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width:600px) { .why-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width:900px) { .why-grid { grid-template-columns: repeat(4,1fr); } }
.why-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 1.9rem 1.5rem; text-align: center;
  transition: background .3s, transform .3s var(--ease), border-color .3s;
}
.why-card:hover { background: rgba(255,255,255,.08); transform: translateY(-4px); border-color: rgba(232,69,10,.4); }
.why-card__icon {
  width: 56px; height: 56px;
  background: rgba(232,69,10,.15); border: 1px solid rgba(232,69,10,.3);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; transition: transform .3s var(--bounce);
}
.why-card:hover .why-card__icon { transform: scale(1.08) rotate(-4deg); }
.why-card__icon svg { width: 24px; height: 24px; fill: var(--accent-2); }
.why-card h3 { color: var(--white); font-size: 1rem; margin-bottom: .45rem; }
.why-card p { font-size: .86rem; color: rgba(255,255,255,.58); margin: 0; line-height: 1.6; }

/* ---- REVIEWS ---- */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
@media (min-width:600px) { .reviews-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width:900px) { .reviews-grid { grid-template-columns: repeat(3,1fr); } }
.review-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-xs); transition: box-shadow .25s, transform .25s;
  position: relative;
}
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.review-card::before {
  content: '"'; position: absolute; top: -12px; left: 20px;
  font-size: 4rem; font-family: Georgia, serif; color: var(--accent); opacity: .25; line-height: 1;
}
.review-card__stars  { color: #FFB400; font-size: 1.05rem; letter-spacing: .05em; margin-bottom: .7rem; }
.review-card__text   { font-size: .9rem; color: var(--ink); margin-bottom: 1rem; line-height: 1.65; }
.review-card__author { font-weight: 700; font-size: .86rem; color: var(--ink); }
.review-card__place  { font-size: .78rem; color: var(--muted); }

.rating-hero { display: flex; flex-direction: column; align-items: center; gap: .35rem; margin-bottom: 2.5rem; }
.rating-hero__score { font-size: clamp(3rem, 6vw, 3.8rem); font-weight: 900; line-height: 1; letter-spacing: -.03em; }
.rating-hero__stars { color: #FFB400; font-size: 1.6rem; letter-spacing: .08em; }
.rating-hero__label { font-size: .88rem; color: var(--muted); }
.google-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid var(--border); border-radius: 999px;
  padding: .45rem 1.1rem; font-size: .78rem; font-weight: 600; color: var(--muted);
  background: var(--white); box-shadow: var(--shadow-xs); margin-top: .6rem;
}

/* ---- MAP ---- */
.map-block {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  height: clamp(300px, 50vw, 460px);
}
.map-block iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---- NAP CARDS (Google-friendly local info) ---- */
.nap-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem; }
@media (min-width:700px) { .nap-grid { grid-template-columns: repeat(3,1fr); } }
.nap-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.35rem 1.4rem;
  display: flex; flex-direction: column; gap: .45rem;
  transition: border-color .2s, transform .2s;
}
.nap-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.nap-card__icon { width: 42px; height: 42px; border-radius: 12px; background: var(--accent-light); display: grid; place-items: center; }
.nap-card__icon svg { width: 20px; height: 20px; fill: var(--accent); }
.nap-card__label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.nap-card__value { font-size: 1rem; font-weight: 700; color: var(--ink); }
.nap-card__value a { color: var(--accent); }

/* ---- SERVICE PHOTO ---- */
.service-photo { width: 100%; max-height: 420px; object-fit: cover; border-radius: var(--radius); margin-bottom: 2rem; box-shadow: var(--shadow-sm); }

/* ---- PHOTO PLACEHOLDER ---- */
.photo-placeholder { background: var(--off); border: 2px dashed var(--border); border-radius: var(--radius); display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 200px; color: var(--muted); font-size: .82rem; text-align: center; padding: 1.5rem; gap: .4rem; }

/* ---- CTA BAND ---- */
.cta-band {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 50%, var(--accent-2) 100%);
  padding: clamp(2.5rem, 6vw, 4rem) 0; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: -60%; right: -5%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,.14) 0%, transparent 60%); pointer-events: none;
}
.cta-band::after {
  content: ''; position: absolute; bottom: -60%; left: -5%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,0,0,.12) 0%, transparent 60%); pointer-events: none;
}
.cta-band__content { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: .6rem; }
.cta-band p  { color: rgba(255,255,255,.85); margin-bottom: 1.75rem; font-size: 1rem; }

/* ---- FAQ ---- */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: .6rem; background: var(--white); overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.faq-item:hover { border-color: rgba(232,69,10,.35); }
.faq-item.open { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%; background: none; border: none; text-align: left;
  padding: 1.1rem 1.25rem; font-size: .98rem; font-weight: 700; color: var(--ink);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-family: var(--font); min-height: 56px;
}
.faq-question::after {
  content: ''; width: 22px; height: 22px; flex-shrink: 0;
  background: var(--accent-light); border-radius: 50%;
  position: relative; transition: transform .3s var(--ease), background .2s;
}
.faq-question::before {
  content: '+'; position: absolute; right: 1.25rem;
  font-size: 1.3rem; font-weight: 400; color: var(--accent);
  transition: transform .3s var(--ease); z-index: 1;
  width: 22px; text-align: center;
}
.faq-item.open .faq-question::before { transform: rotate(45deg); }
.faq-item.open .faq-question::after { background: rgba(232,69,10,.2); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease), padding .25s; font-size: .92rem; color: var(--muted); line-height: 1.7; padding: 0 1.25rem; }
.faq-item.open .faq-answer { max-height: 600px; padding: 0 1.25rem 1.1rem; }

/* ---- SERVICE PAGE CONTENT ---- */
.service-content { max-width: 820px; margin: 0 auto; }
.service-content h2 { color: var(--ink); margin: 1.85rem 0 .7rem; font-size: 1.25rem; }
.service-content ul { margin-bottom: 1.25rem; }
.service-content ul li { padding: .4rem 0 .4rem 1.6rem; position: relative; font-size: .94rem; color: var(--muted); }
.service-content ul li::before { content: ''; position: absolute; left: 0; top: .75rem; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px rgba(232,69,10,.18); }
.callout {
  background: linear-gradient(135deg, rgba(232,69,10,.08), rgba(232,69,10,.03));
  border: 1px solid rgba(232,69,10,.25);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.35rem 1.6rem;
  display: flex; flex-direction: column; gap: .4rem; margin: 2rem 0;
}
.callout strong { color: var(--ink); font-size: .95rem; }
.callout a { color: var(--accent); font-weight: 800; font-size: 1.2rem; }

/* ---- INTERNAL LINKS ---- */
.internal-links { padding: 2.75rem 0; background: var(--off); }
.internal-links h3 { color: var(--ink); margin-bottom: 1.35rem; text-align: center; }
.internal-links__grid { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }
.internal-links__grid a { background: var(--white); border: 1px solid var(--border); border-radius: 999px; padding: .6rem 1.25rem; font-size: .85rem; font-weight: 600; color: var(--ink); transition: all .2s; }
.internal-links__grid a:hover { background: var(--accent); color: var(--white); border-color: var(--accent); transform: translateY(-2px); }

/* ---- URGENCY BAR ---- */
.urgency-bar { background: var(--accent); color: var(--white); text-align: center; padding: .8rem 1rem; font-size: .88rem; font-weight: 600; }
.urgency-bar a { color: var(--white); font-weight: 800; text-decoration: underline; }

/* ---- CONTACT ---- */
.contact-page-hero {
  background: var(--ink);
  background-image: radial-gradient(ellipse 60% 50% at 60% -5%, rgba(232,69,10,.25) 0%, transparent 55%);
  color: var(--white); padding: 3rem 0 2.5rem;
}
.contact-page-hero h1 { color: var(--white); margin-bottom: .5rem; }
.contact-page-hero p  { color: rgba(255,255,255,.72); font-size: 1rem; }

.hours-list li { display: flex; justify-content: space-between; padding: .5rem 0; border-bottom: 1px solid var(--border); font-size: .9rem; color: var(--muted); }
.hours-list li:last-child { border-bottom: none; }
.hours-list li span:last-child { font-weight: 700; color: var(--ink); }

.success-msg { display: none; background: #D1FAE5; border: 1px solid #6EE7B7; border-radius: var(--radius-sm); padding: 1rem; color: #065F46; font-size: .9rem; margin-top: 1rem; }
.form-notice { font-size: .82rem; color: var(--muted); margin-top: .75rem; line-height: 1.5; }

.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width:768px) { .contact-grid { grid-template-columns: 1fr 1.4fr; gap: 2.5rem; } }
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-card { background: var(--off); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; transition: border-color .2s; }
.contact-info-card:hover { border-color: var(--accent); }
.contact-info-card h3 { font-size: 1rem; color: var(--ink); margin-bottom: .75rem; display: flex; align-items: center; gap: .5rem; }
.contact-info-card h3 svg { width: 18px; height: 18px; fill: var(--accent); flex-shrink: 0; }
.contact-info-card p, .contact-info-card address { font-size: .92rem; color: var(--muted); line-height: 1.7; font-style: normal; }
.contact-info-card a { color: var(--accent); font-weight: 700; }
.contact-info-card a.btn { color: var(--white); }
.contact-form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm); }
.contact-form-card h2 { color: var(--ink); margin-bottom: 1.5rem; font-size: 1.45rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--ink); margin-bottom: .4rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: .95rem; font-family: var(--font); color: var(--ink); background: var(--white);
  transition: border-color .15s, box-shadow .15s; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(232,69,10,.12); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%236b6b6b'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width:480px) { .form-row { grid-template-columns: 1fr 1fr; } }

/* ---- FOOTER ---- */
.footer { background: var(--ink); color: rgba(255,255,255,.58); padding: 3.5rem 0 1.5rem; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.25rem; margin-bottom: 2.5rem; }
@media (min-width:600px) { .footer__grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width:900px) { .footer__grid { grid-template-columns: repeat(3,1fr); } }
.footer__col h4 { color: rgba(255,255,255,.4); font-size: .68rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 1rem; font-weight: 700; }
.footer__col address { font-style: normal; font-size: .88rem; line-height: 1.8; }
.footer__col a { color: rgba(255,255,255,.58); transition: color .15s; }
.footer__col a:hover { color: var(--white); }
.footer__col ul li { margin-bottom: .45rem; }
.footer__col ul li a { font-size: .88rem; }
.footer__phone-link { color: var(--accent-2) !important; font-weight: 700; font-size: 1rem; display: inline-block; margin-top: .5rem; }
.footer__phone-link:hover { color: var(--white) !important; }
.footer__divider { border: none; border-top: 1px solid rgba(255,255,255,.08); margin-bottom: 1.25rem; }
.footer__bottom { text-align: center; font-size: .76rem; color: rgba(255,255,255,.35); display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem 1.5rem; }
.footer__bottom a { color: rgba(255,255,255,.35); }
.footer__bottom a:hover { color: rgba(255,255,255,.7); }

/* ---- FLOATING MOBILE CTA ---- */
.fab-call {
  position: fixed; bottom: 18px; right: 18px; z-index: 900;
  display: none;
  align-items: center; gap: .55rem;
  padding: .85rem 1.25rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--white); border-radius: 999px;
  font-weight: 800; font-size: .95rem;
  box-shadow: 0 12px 30px rgba(232,69,10,.45), 0 0 0 0 rgba(232,69,10,.5);
  animation: fabPulse 2.4s infinite;
}
.fab-call svg { width: 20px; height: 20px; fill: currentColor; }
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(232,69,10,.45), 0 0 0 0 rgba(232,69,10,.45) }
  70% { box-shadow: 0 12px 30px rgba(232,69,10,.35), 0 0 0 14px rgba(232,69,10,0) }
}

/* ---- EDITPIXEL CREDIT BADGE ---- */
.editpixel-credit {
  position: fixed; left: 14px; bottom: 14px; z-index: 950;
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem .9rem .5rem .6rem;
  background: linear-gradient(135deg, #2b4a8a 0%, #1e3370 100%);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px;
  text-decoration: none;
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  box-shadow:
    0 10px 36px rgba(30,51,112,.65),
    0 4px 12px rgba(0,0,0,.35),
    0 0 0 1px rgba(255,255,255,.08) inset;
  transition: transform .25s var(--ease), box-shadow .25s;
  cursor: pointer;
  max-width: calc(100vw - 28px);
}
.editpixel-credit:hover,
.editpixel-credit:focus-visible {
  transform: translateY(-3px);
  box-shadow:
    0 18px 52px rgba(30,51,112,.75),
    0 6px 18px rgba(0,0,0,.4),
    0 0 0 1px rgba(255,255,255,.15) inset;
}
.editpixel-credit__by {
  font-family: var(--font);
  font-size: .68rem; font-weight: 400;
  color: rgba(255,255,255,.5);
  white-space: nowrap; letter-spacing: .03em;
}
.editpixel-credit__name {
  font-family: var(--font);
  font-size: .82rem; font-weight: 800;
  color: #fff;
  white-space: nowrap; letter-spacing: -.01em;
}
.editpixel-credit__name-pixel {
  background: linear-gradient(135deg, #7b9eff, #a78bfa);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

@media (max-width:480px) {
  .editpixel-credit { left: 10px; bottom: 10px; border-radius: 11px; }
  .editpixel-credit__name { font-size: .75rem; }
}

/* ---- REVEAL ON SCROLL ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---- FEATURES LIST (info band) ---- */
.feature-band {
  background: var(--off); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.feature-band__grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; align-items: center;
}
@media (min-width:800px) { .feature-band__grid { grid-template-columns: repeat(4,1fr); } }
.feature-band__item { display: flex; align-items: center; gap: .65rem; font-size: .85rem; font-weight: 600; color: var(--ink); }
.feature-band__item svg { width: 22px; height: 22px; flex-shrink: 0; fill: var(--accent); }

/* ---- RESPONSIVE / MOBILE NAV ---- */
@media (max-width:860px) {
  .header__phone { display: none; }
  .header__right .btn { padding: .6rem 1rem; font-size: .85rem; min-height: 40px; }
  .header__logo-sub { display: none; }
}

@media (max-width:720px) {
  .burger { display: block; }
  .header__right .btn:not(.btn--accent) { display: none; }
  .nav {
    position: fixed; inset: 0 0 0 auto;
    top: 0; left: auto; right: 0; width: min(86vw, 340px); height: 100dvh;
    background: var(--ink);
    transform: translateX(100%); transition: transform .35s var(--ease);
    border-left: 1px solid rgba(255,255,255,.08);
    border-bottom: none;
    z-index: 1100; padding-top: 4.5rem;
    overflow-y: auto;
  }
  .nav.open { transform: translateX(0); box-shadow: -20px 0 60px rgba(0,0,0,.5); }
  .nav__inner { flex-direction: column; align-items: stretch; padding: 0; }
  .nav a, .nav__dropdown-toggle {
    padding: 1rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.06);
    border-top: none; justify-content: space-between;
    font-size: .95rem; color: rgba(255,255,255,.8);
  }
  .nav a:hover, .nav a.active,
  .nav__dropdown.open .nav__dropdown-toggle {
    background: rgba(232,69,10,.1); border-bottom-color: rgba(255,255,255,.06); color: var(--accent-2);
  }
  .nav__dropdown { flex-direction: column; align-items: stretch; }
  .nav__dropdown-toggle { width: 100%; }
  .nav__dropdown-menu {
    position: static; display: none; min-width: 0; box-shadow: none;
    border: none; border-radius: 0; background: rgba(0,0,0,.3);
  }
  .nav__dropdown.open .nav__dropdown-menu { display: block; animation: none; }
  .nav__dropdown-menu a { padding: .85rem 2.25rem; font-size: .88rem; }
  .nav__dropdown:hover .nav__dropdown-menu { display: none; }
  .nav__dropdown.open .nav__dropdown-menu { display: block; }

  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(0,0,0,.55);
    backdrop-filter: blur(4px); z-index: 1050; opacity: 0; pointer-events: none;
    transition: opacity .3s;
  }
  .nav-backdrop.show { opacity: 1; pointer-events: auto; }
  body.nav-open { overflow: hidden; }

  .fab-call { display: inline-flex; }
}

@media (max-width:480px) {
  .btn--lg { padding: .95rem 1.75rem; font-size: 1rem; }
  .hero { padding: 3rem 0 3rem; }
  .section { padding: 2.75rem 0; }
  .hero__cta { flex-direction: column; width: 100%; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .map-block { height: 320px; }
  .header__inner { padding: .75rem 1rem; }
  .header__logo-mark { width: 34px; height: 34px; }
  .header__logo-name { font-size: .92rem; }
  .section-title { margin-bottom: 2.25rem; }
  .fab-call { bottom: 14px; right: 14px; padding: .75rem 1.1rem; font-size: .88rem; }
  .fab-call svg { width: 18px; height: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
