/* =========================================================
   Noxia 3D — Site multi-pages HTML/CSS/JS
   Design system : cyan #40c0e0 / red #e02020 / noir
   ========================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 2px; }

/* ---------- Variables ---------- */
:root {
  --cyan: #40c0e0;
  --cyan-600: #0891b2;
  --cyan-700: #0e7490;
  --cyan-50: #ecfeff;
  --cyan-100: #cffafe;
  --red: #e02020;
  --red-600: #dc2626;
  --red-700: #b91c1c;
  --ink: #18181b;
  --zinc-900: #18181b;
  --zinc-800: #27272a;
  --zinc-700: #3f3f46;
  --zinc-600: #52525b;
  --zinc-500: #71717a;
  --zinc-400: #a1a1aa;
  --zinc-300: #d4d4d8;
  --zinc-200: #e4e4e7;
  --zinc-100: #f4f4f5;
  --zinc-50: #fafafa;
  --amber: #f59e0b;
  --white: #fff;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(24,24,27,.06);
  --shadow: 0 4px 16px -4px rgba(24,24,27,.12);
  --shadow-lg: 0 16px 40px -12px rgba(8,145,178,.25);
  --container: 1200px;
  --header-h: 72px;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 16px; }
@media (min-width: 640px) { .container { padding: 0 24px; } }
.section { padding: 64px 0; }
@media (min-width: 768px) { .section { padding: 80px 0; } }
.section--gray { background: var(--zinc-50); }
.section--dark { background: var(--zinc-900); color: #fff; }
.grid { display: grid; gap: 24px; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.maxw-2xl { max-width: 672px; }
.maxw-3xl { max-width: 768px; }
.maxw-4xl { max-width: 896px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { color: var(--zinc-600); }
.lead { font-size: 1.1rem; color: var(--zinc-600); }
.text-cyan { color: var(--cyan-700); }
.text-red { color: var(--red-600); }
.text-white { color: #fff; }
.text-gradient {
  background: linear-gradient(120deg, var(--cyan), var(--cyan-700));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Eyebrow / section heading ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cyan-50); color: var(--cyan-700);
  padding: 4px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); }
.section-head { max-width: 672px; margin: 0 auto 48px; text-align: center; }
.section-head--left { margin-left: 0; text-align: left; }
.section-head h2 { margin-top: 16px; }
.section-head p { margin-top: 16px; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: var(--radius);
  font-weight: 700; font-size: .95rem; transition: all .2s;
  white-space: nowrap; cursor: pointer; border: 1px solid transparent;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--cyan-600); color: #fff; }
.btn--primary:hover { background: var(--cyan-700); transform: translateY(-1px); }
.btn--red { background: var(--red-600); color: #fff; }
.btn--red:hover { background: var(--red-700); transform: translateY(-1px); }
.btn--outline { background: #fff; color: var(--ink); border-color: var(--zinc-200); }
.btn--outline:hover { border-color: var(--cyan); background: var(--cyan-50); }
.btn--ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.2); }
.btn--ghost:hover { background: rgba(255,255,255,.15); }
.btn--lg { padding: 14px 26px; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--gradient { background: linear-gradient(135deg, var(--cyan), var(--cyan-700)); color: #fff; }
.btn--gradient:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); }

/* ---------- Header ---------- */
.utility-bar { background: var(--zinc-50); border-bottom: 1px solid var(--zinc-100); font-size: 12px; color: var(--zinc-500); }
.utility-bar .container { display: flex; align-items: center; justify-content: space-between; height: 32px; }
.utility-bar .ub-right { display: flex; gap: 16px; align-items: center; }
.utility-bar a:hover { color: var(--cyan-700); }
.utility-bar svg { width: 14px; height: 14px; vertical-align: -2px; margin-right: 4px; color: var(--cyan-600); }

.site-header {
  position: sticky; top: 0; z-index: 50; background: #fff;
  border-bottom: 1px solid transparent; transition: all .25s;
}
.site-header.scrolled { border-bottom-color: var(--zinc-200); box-shadow: var(--shadow-sm); background: rgba(255,255,255,.92); backdrop-filter: blur(12px); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 12px; min-width: 0; }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { height: 42px; width: auto; max-width: 100%; }
.main-nav { display: none; align-items: center; gap: 1px; flex: 1 1 auto; min-width: 0; justify-content: center; }
.main-nav a {
  padding: 8px 10px; border-radius: 8px; font-size: .9rem; font-weight: 600; color: var(--zinc-600);
  transition: all .15s; white-space: nowrap;
}
.main-nav a:hover { background: var(--zinc-100); color: var(--ink); }
.main-nav a.active { background: var(--cyan-50); color: var(--cyan-700); }
.header-cta { display: none; align-items: center; gap: 8px; flex-shrink: 0; }
.header-cta .tel {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--cyan-100); background: var(--cyan-50); color: var(--cyan-700);
  padding: 8px 12px; border-radius: 8px; font-size: .9rem; font-weight: 700;
}
.header-cta .tel:hover { background: var(--cyan-100); }
.header-cta .tel svg { width: 16px; height: 16px; }
.menu-toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 8px; }
.menu-toggle:hover { background: var(--zinc-100); }
.menu-toggle svg { width: 22px; height: 22px; }

@media (min-width: 1024px) {
  .header-cta { display: flex; }
}
@media (min-width: 1200px) {
  .main-nav { display: flex; }
  .menu-toggle { display: none; }
}

/* ---------- Mobile drawer ---------- */
.drawer {
  position: fixed; inset: 0 0 0 auto; width: min(88vw, 360px); background: #fff; z-index: 60;
  transform: translateX(100%); transition: transform .3s, visibility .3s;
  display: flex; flex-direction: column;
  box-shadow: -10px 0 40px rgba(0,0,0,.15);
  visibility: hidden;
}
.drawer.open { transform: translateX(0); visibility: visible; }
.drawer-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 55; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.drawer-backdrop.open { opacity: 1; visibility: visible; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--zinc-100); }
.drawer-head img { height: 38px; }
.drawer-close { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: 8px; }
.drawer-close:hover { background: var(--zinc-100); }
.drawer-nav { padding: 12px; flex: 1; overflow-y: auto; }
.drawer-nav a { display: block; padding: 12px; border-radius: 8px; font-weight: 600; color: var(--zinc-700); }
.drawer-nav a:hover, .drawer-nav a.active { background: var(--cyan-50); color: var(--cyan-700); }
.drawer-foot { padding: 16px; border-top: 1px solid var(--zinc-100); display: grid; gap: 8px; }
.drawer-foot .btn { width: 100%; }

/* ---------- Hero (home) ---------- */
.hero { position: relative; background: var(--zinc-900); color: #fff; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(8,145,178,.25), transparent 60%); }
.hero-grid { position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.07) 1px, transparent 0); background-size: 22px 22px; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(110px); opacity: .35; }
.hero .container { position: relative; z-index: 1; display: grid; gap: 40px; align-items: center; padding-top: 56px; padding-bottom: 56px; }
@media (min-width: 1024px) { .hero .container { grid-template-columns: 1fr 1fr; padding-top: 88px; padding-bottom: 88px; } }
.hero .pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(64,192,224,.12); border: 1px solid rgba(64,192,224,.3); color: #67e8f9; padding: 6px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.hero .dot { position: relative; width: 8px; height: 8px; }
.hero .dot::before { content:""; position:absolute; inset:0; border-radius:50%; background: var(--cyan); animation: ping 1.8s infinite; }
.hero .dot::after { content:""; position:absolute; inset:0; border-radius:50%; background: var(--cyan); }
@keyframes ping { 75%,100% { transform: scale(2.2); opacity: 0; } }
.hero h1 { color: #fff; margin-top: 20px; }
.hero .hero-sub { margin-top: 20px; font-size: 1.15rem; color: #d4d4d8; max-width: 560px; }
.hero-trust { margin-top: 24px; display: grid; gap: 8px; }
@media (min-width:640px){ .hero-trust { grid-template-columns: 1fr 1fr; } }
.hero-trust li { display: flex; align-items: center; gap: 8px; font-size: .9rem; color: #e4e4e7; }
.hero-trust svg { width: 16px; height: 16px; color: var(--cyan); flex-shrink: 0; }
.hero-cta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-meta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 16px 24px; font-size: .9rem; color: #d4d4d8; }
.hero-meta .stars { display: inline-flex; gap: 2px; }
.hero-meta .stars svg { width: 16px; height: 16px; color: var(--amber); fill: var(--amber); }
.hero-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255,255,255,.12); box-shadow: 0 20px 50px -20px rgba(0,0,0,.5); aspect-ratio: 4/3; background: #fff; }
.hero-img img { width: 100%; height: 100%; object-fit: contain; }
.hero-badge { position: absolute; border-radius: 12px; padding: 16px; backdrop-filter: blur(8px); }
.hero-badge--stat { bottom: -16px; left: -16px; background: rgba(24,24,27,.92); border: 1px solid rgba(255,255,255,.1); }
.hero-badge--stat .num { font-size: 1.5rem; font-weight: 800; color: #fff; }
.hero-badge--stat .lbl { font-size: 12px; color: var(--zinc-400); }
.hero-badge--trust { top: 24px; right: -12px; background: rgba(64,192,224,.12); border: 1px solid rgba(64,192,224,.3); color: #67e8f9; font-weight: 700; font-size: .85rem; display: flex; align-items: center; gap: 8px; }
@media (max-width: 640px){ .hero-badge { display:none; } }

/* stats strip */
.stats-strip { border-top: 1px solid rgba(255,255,255,.1); background: rgba(0,0,0,.3); }
.stats-strip .container { display: grid; grid-template-columns: 1fr 1fr; }
@media (min-width:768px){ .stats-strip .container { grid-template-columns: repeat(4,1fr); } }
.stats-strip .stat { padding: 24px 16px; text-align: center; border-right: 1px solid rgba(255,255,255,.1); }
.stats-strip .stat:last-child { border-right: 0; }
.stats-strip .num { font-size: 1.75rem; font-weight: 800; color: #fff; }
.stats-strip .lbl { font-size: .8rem; color: var(--zinc-400); margin-top: 4px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; background: var(--zinc-900); color: #fff; overflow: hidden; }
.page-hero::before { content:""; position:absolute; inset:0; background: linear-gradient(135deg, rgba(8,145,178,.3), transparent 60%); }
.page-hero .hero-grid { position: absolute; inset: 0; opacity: .5; }
.page-hero .container { position: relative; padding-top: 48px; padding-bottom: 48px; }
@media (min-width:768px){ .page-hero .container { padding-top: 64px; padding-bottom: 64px; } }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: 12px; color: var(--zinc-400); margin-bottom: 16px; }
.breadcrumb a:hover { color: #67e8f9; }
.breadcrumb span.sep { color: var(--zinc-600); }
.page-hero h1 { color: #fff; display: flex; align-items: flex-start; gap: 16px; }
.page-hero .ph-icon { flex-shrink: 0; width: 56px; height: 56px; border-radius: 16px; background: linear-gradient(135deg, var(--cyan), var(--cyan-700)); display: grid; place-items: center; box-shadow: var(--shadow-lg); }
.page-hero .ph-icon svg { width: 28px; height: 28px; color: #fff; }
.page-hero .ph-sub { margin-top: 12px; color: #d4d4d8; max-width: 672px; font-size: 1.05rem; }

/* ---------- Cards / services ---------- */
.card { background: #fff; border: 1px solid var(--zinc-200); border-radius: var(--radius-lg); overflow: hidden; transition: all .25s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--cyan); }
.card-bar { height: 6px; background: linear-gradient(90deg, var(--cyan), var(--cyan-700)); }
.card-body { padding: 24px; }
.card-icon { width: 56px; height: 56px; border-radius: 12px; background: linear-gradient(135deg, var(--cyan), var(--cyan-700)); display: grid; place-items: center; color: #fff; box-shadow: var(--shadow); }
.card-icon svg { width: 28px; height: 28px; }
.card h3 { margin-top: 20px; }
.card .short { color: var(--cyan-700); font-weight: 600; font-size: .9rem; margin-top: 4px; }
.card .desc { margin-top: 12px; font-size: .92rem; }
.feature-list { margin-top: 20px; display: grid; gap: 10px; }
.feature-list li { display: flex; gap: 8px; font-size: .9rem; color: var(--zinc-700); }
.feature-list svg { width: 16px; height: 16px; color: var(--cyan-600); flex-shrink: 0; margin-top: 2px; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; padding: 16px 24px; border-top: 1px solid var(--zinc-100); background: var(--zinc-50); }
.chip { background: #fff; border: 1px solid var(--zinc-200); border-radius: 6px; padding: 4px 8px; font-size: 12px; color: var(--zinc-600); }

/* ---------- Nuisibles grid ---------- */
.pest-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width:768px){ .pest-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width:1024px){ .pest-grid { grid-template-columns: repeat(4,1fr); } }
.pest-card { display: flex; flex-direction: column; border: 1px solid var(--zinc-200); background: #fff; border-radius: 12px; padding: 20px; transition: all .25s; }
.pest-card:hover { transform: translateY(-4px); border-color: var(--cyan); box-shadow: var(--shadow-lg); }
.pest-card .pc-top { display: flex; align-items: flex-start; justify-content: space-between; }
.pest-card .pc-icon { width: 48px; height: 48px; border-radius: 10px; background: var(--zinc-50); display: grid; place-items: center; color: var(--zinc-700); transition: all .2s; }
.pest-card:hover .pc-icon { background: var(--cyan-50); color: var(--cyan-600); }
.pest-card .pc-icon svg { width: 24px; height: 24px; }
.pest-card h3 { margin-top: 16px; font-size: 1rem; }
.pest-card .pc-desc { font-size: .8rem; color: var(--zinc-500); margin-top: 4px; }
.pest-card .pc-foot { margin-top: 16px; display: flex; align-items: center; justify-content: space-between; }
.pest-card .urg { display: inline-flex; align-items: center; gap: 4px; padding: 2px 8px; border-radius: 999px; font-size: 11px; font-weight: 700; }
.pest-card .urg svg { width: 12px; height: 12px; }
.urg-haute { background: #fef2f2; color: var(--red-700); }
.urg-moyenne { background: #fffbeb; color: #b45309; }
.urg-faible { background: var(--cyan-50); color: var(--cyan-700); }
.pest-card .cat { font-size: 11px; color: var(--zinc-400); font-weight: 500; }

/* ---------- Method steps ---------- */
.steps { display: grid; gap: 24px; }
@media (min-width:768px){ .steps { grid-template-columns: 1fr 1fr; } }
@media (min-width:1024px){ .steps { grid-template-columns: repeat(4,1fr); } }
.step { border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.03); border-radius: 16px; padding: 24px; transition: all .2s; }
.step:hover { border-color: rgba(64,192,224,.4); background: rgba(255,255,255,.06); }
.step .st-top { display: flex; align-items: center; justify-content: space-between; }
.step .st-num { font-size: 3rem; font-weight: 900; color: rgba(255,255,255,.1); }
.step .st-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(64,192,224,.15); color: #67e8f9; display: grid; place-items: center; border: 1px solid rgba(64,192,224,.2); }
.step .st-icon svg { width: 20px; height: 20px; }
.step h3 { color: #fff; margin-top: 16px; }
.step p { color: var(--zinc-400); font-size: .9rem; margin-top: 8px; }

/* ---------- Zones ---------- */
.zone-grid { display: grid; gap: 12px; }
@media (min-width:640px){ .zone-grid { grid-template-columns: 1fr 1fr; } }
.zone-card { border: 1px solid var(--zinc-200); background: #fff; border-radius: 12px; padding: 16px; transition: all .2s; }
.zone-card:hover { border-color: var(--cyan); box-shadow: var(--shadow-sm); }
.zone-card .zc-top { display: flex; align-items: center; justify-content: space-between; }
.zone-card .zc-code { width: 32px; height: 32px; border-radius: 8px; background: var(--cyan-50); color: var(--cyan-700); display: grid; place-items: center; font-weight: 800; font-size: 13px; }
.zone-card .zc-name { font-weight: 700; }
.zone-card .zc-cities { margin-top: 8px; font-size: 12px; color: var(--zinc-500); }

/* ---------- Testimonials ---------- */
.tst-grid { display: grid; gap: 24px; }
@media (min-width:768px){ .tst-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width:1024px){ .tst-grid { grid-template-columns: repeat(3,1fr); } }
.tst { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--zinc-200); border-radius: 16px; padding: 24px; }
.tst:hover { box-shadow: var(--shadow-lg); }
.tst .quote { color: var(--cyan-100); width: 32px; height: 32px; }
.tst blockquote { flex: 1; font-size: .9rem; color: var(--zinc-700); margin-top: 12px; }
.tst .tst-foot { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--zinc-200); display: flex; align-items: center; justify-content: space-between; }
.tst .tst-name { font-weight: 700; font-size: .9rem; }
.tst .tst-city { font-size: 12px; color: var(--zinc-500); }
.tst .stars { display: flex; gap: 1px; }
.tst .stars svg { width: 14px; height: 14px; color: var(--amber); fill: var(--amber); }
.tst .tst-svc { font-size: 11px; font-weight: 600; color: var(--cyan-700); background: var(--cyan-50); padding: 2px 8px; border-radius: 999px; margin-top: 4px; }

/* rating summary */
.rating-box { display: flex; flex-direction: column; align-items: center; gap: 16px; background: var(--zinc-50); border: 1px solid var(--zinc-200); border-radius: 16px; padding: 32px; max-width: 672px; margin: 0 auto; }
@media (min-width:640px){ .rating-box { flex-direction: row; gap: 32px; } }
.rating-box .big { font-size: 3rem; font-weight: 800; }
.rating-box .stars svg { width: 24px; height: 24px; color: var(--amber); fill: var(--amber); }

/* ---------- FAQ accordion ---------- */
.accordion { border-top: 1px solid var(--zinc-200); }
.acc-item { border-bottom: 1px solid var(--zinc-200); }
.acc-trigger { width: 100%; text-align: left; padding: 20px 0; font-weight: 700; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.acc-trigger:hover { color: var(--cyan-700); }
.acc-trigger .acc-chev { width: 20px; height: 20px; color: var(--zinc-400); transition: transform .25s; flex-shrink: 0; }
.acc-item.open .acc-chev { transform: rotate(180deg); color: var(--cyan-600); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.acc-panel-inner { padding-bottom: 20px; color: var(--zinc-600); font-size: .95rem; }

/* ---------- Form ---------- */
.form-card { display: grid; background: #fff; border: 1px solid var(--zinc-200); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); }
@media (min-width:1024px){ .form-card { grid-template-columns: 1fr 1.4fr; } }
.form-aside { background: var(--zinc-900); color: #fff; padding: 32px; position: relative; overflow: hidden; }
.form-aside .hero-grid { position: absolute; inset: 0; opacity: .5; }
.form-aside > * { position: relative; }
.form-aside h3 { color: #fff; }
.form-aside .fa-list { margin-top: 32px; display: grid; gap: 12px; }
.form-aside .fa-list li { display: flex; align-items: center; gap: 12px; font-size: .9rem; }
.form-aside .fa-list .li { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.1); color: #67e8f9; display: grid; place-items: center; }
.form-aside .fa-list svg { width: 16px; height: 16px; }
.form-aside .fa-call { margin-top: 32px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.05); border-radius: 12px; padding: 16px; }
.form-aside .fa-call a { color: #fff; font-size: 1.1rem; font-weight: 800; display: flex; align-items: center; gap: 8px; }
.form-aside .fa-call svg { width: 18px; height: 18px; color: var(--cyan); }
.form-main { padding: 32px; }
.form-row { display: grid; gap: 16px; }
@media (min-width:640px){ .form-row--2 { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 6px; margin-bottom: 16px; }
.field label { font-size: .9rem; font-weight: 600; color: var(--zinc-700); }
.field .req { color: var(--red-600); }
.field input, .field select, .field textarea {
  width: 100%; padding: 10px 12px; border: 1px solid var(--zinc-300); border-radius: 8px;
  background: #fff; font-size: .95rem; transition: all .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(64,192,224,.15); outline: none;
}
.field textarea { resize: vertical; min-height: 80px; }
.field .err { color: var(--red-600); font-size: 12px; display: none; }
.field.invalid .err { display: block; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--red-600); }
.urg-group { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.urg-opt { display: flex; flex-direction: column; align-items: center; gap: 2px; border: 1px solid var(--zinc-200); border-radius: 8px; padding: 12px 8px; cursor: pointer; text-align: center; transition: all .15s; }
.urg-opt:hover { border-color: var(--cyan); background: var(--cyan-50); }
.urg-opt input { position: absolute; opacity: 0; }
.urg-opt.checked { border-color: var(--cyan-600); background: var(--cyan-50); }
.urg-opt svg { width: 16px; height: 16px; color: var(--cyan-600); }
.urg-opt .u-l { font-weight: 700; font-size: .85rem; }
.urg-opt .u-d { font-size: 11px; color: var(--zinc-500); }
.form-note { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 12px; font-size: 12px; color: var(--zinc-500); }
.form-note svg { width: 14px; height: 14px; color: var(--cyan-600); }
.form-success { text-align: center; padding: 40px 24px; }
.form-success .fs-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--cyan-600); color: #fff; display: grid; place-items: center; margin: 0 auto; }
.form-success .fs-icon svg { width: 36px; height: 36px; }
.form-success h3 { margin-top: 20px; font-size: 1.5rem; }
.form-success p { margin-top: 8px; }
.form-success .fs-call { margin-top: 20px; display: inline-flex; align-items: center; gap: 8px; background: var(--cyan-600); color: #fff; padding: 12px 24px; border-radius: 8px; font-weight: 700; }
.form-success .fs-call:hover { background: var(--cyan-700); }

/* ---------- CTA band ---------- */
.cta-band { background: #fff; padding: 64px 0; }
.cta-box { position: relative; overflow: hidden; background: var(--zinc-900); border-radius: 16px; padding: 48px 32px; text-align: center; color: #fff; }
.cta-box::before { content:""; position:absolute; inset:0; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.07) 1px, transparent 0); background-size: 22px 22px; }
.cta-box .cb-blob { position: absolute; border-radius: 50%; filter: blur(90px); }
.cta-box h2 { color: #fff; position: relative; }
.cta-box p { color: #d4d4d8; position: relative; margin-top: 12px; }
.cta-box .cb-cta { position: relative; margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- Certifications ---------- */
.cert-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
@media (min-width:768px){ .cert-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width:1024px){ .cert-grid { grid-template-columns: repeat(6,1fr); } }
.cert { border: 1px solid var(--zinc-200); background: #fff; border-radius: 12px; padding: 16px; text-align: center; transition: all .2s; }
.cert:hover { border-color: var(--cyan); }
.cert .c-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--cyan-50); color: var(--cyan-600); display: grid; place-items: center; margin: 0 auto; }
.cert .c-icon svg { width: 24px; height: 24px; }
.cert .c-label { margin-top: 12px; font-weight: 700; font-size: .9rem; }
.cert .c-desc { font-size: 11px; color: var(--zinc-500); margin-top: 4px; }

/* ---------- Reasons ---------- */
.reason { display: flex; gap: 12px; }
.reason .r-icon { width: 40px; height: 40px; border-radius: 8px; background: var(--cyan-50); color: var(--cyan-600); display: grid; place-items: center; flex-shrink: 0; }
.reason .r-icon svg { width: 20px; height: 20px; }
.reason h3 { font-size: .95rem; }
.reason p { font-size: .85rem; margin-top: 4px; }

/* ---------- Service detail ---------- */
.method-list { display: grid; gap: 12px; margin-top: 16px; }
.method-list li { display: flex; gap: 12px; border: 1px solid var(--zinc-200); background: var(--zinc-50); border-radius: 8px; padding: 16px; }
.method-list .m-num { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--cyan-700)); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 12px; flex-shrink: 0; }
.quote-card { border: 1px solid var(--zinc-200); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); }
.quote-card .qc-top { background: linear-gradient(135deg, var(--cyan), var(--cyan-700)); color: #fff; padding: 24px; }
.quote-card .qc-top .lbl { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.8); }
.quote-card .qc-top .price { font-size: 1.75rem; font-weight: 800; }
.quote-card .qc-body { padding: 24px; }
.quote-card .qc-body .btn { width: 100%; margin-top: 8px; }
.quote-card .qc-urgent { margin-top: 16px; background: #fffbeb; color: #92400e; border-radius: 8px; padding: 12px; font-size: 12px; display: flex; gap: 8px; }
.quote-card .qc-urgent svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ---------- Footer ---------- */
.site-footer { margin-top: auto; background: var(--zinc-900); color: var(--zinc-400); }
.footer-cta { border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-cta .container { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 16px; padding-top: 32px; padding-bottom: 32px; text-align: center; }
@media (min-width:640px){ .footer-cta .container { flex-direction: row; text-align: left; } }
.footer-cta h3 { color: #fff; font-size: 1.25rem; }
.footer-cta p { color: var(--zinc-400); font-size: .9rem; margin-top: 4px; }
.footer-grid { display: grid; gap: 40px; padding-top: 56px; padding-bottom: 56px; }
@media (min-width:768px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width:1024px){ .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer-brand img { height: 48px; }
.footer-brand p { margin-top: 16px; font-size: .9rem; }
.footer-badges { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.footer-badges .fb { display: inline-flex; align-items: center; gap: 4px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.05); padding: 4px 10px; border-radius: 6px; font-size: 12px; color: var(--zinc-300); }
.footer-badges svg { width: 12px; height: 12px; color: var(--cyan); }
.footer-col h4 { color: #fff; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.footer-col ul { margin-top: 16px; display: grid; gap: 10px; }
.footer-col a { font-size: .9rem; }
.footer-col a:hover { color: var(--cyan); }
.footer-col .fc-contact li { display: flex; gap: 10px; font-size: .9rem; }
.footer-col .fc-contact svg { width: 16px; height: 16px; color: var(--cyan); flex-shrink: 0; margin-top: 2px; }
.footer-col .fc-contact a:hover { color: var(--cyan); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom .container { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 12px; padding-top: 24px; padding-bottom: 24px; font-size: 12px; }
@media (min-width:640px){ .footer-bottom .container { flex-direction: row; } }
.footer-bottom .fb-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-bottom a:hover { color: var(--cyan); }

/* ---------- Mobile CTA bar ---------- */
.mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; transform: translateY(100%); transition: transform .3s; }
.mobile-cta.show { transform: translateY(0); }
.mobile-cta .mc-inner { background: rgba(255,255,255,.96); border-top: 1px solid var(--zinc-200); padding: 8px 12px; padding-bottom: max(8px, env(safe-area-inset-bottom)); backdrop-filter: blur(8px); box-shadow: 0 -8px 24px -12px rgba(0,0,0,.18); display: flex; gap: 8px; }
.mobile-cta .mc-inner .btn { flex: 1; }
@media (min-width:1024px){ .mobile-cta { display: none; } }

/* ---------- Chatbot ---------- */
.chat-launch { position: fixed; right: 16px; bottom: 88px; z-index: 50; width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--cyan-700)); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-lg); transition: transform .2s; }
@media (min-width:1024px){ .chat-launch { bottom: 24px; } }
.chat-launch:hover { transform: scale(1.08); }
.chat-launch svg { width: 26px; height: 26px; }
.chat-launch.open { transform: rotate(90deg); }
.chat-launch .cl-dot { position: absolute; top: 4px; right: 4px; width: 14px; height: 14px; }
.chat-launch .cl-dot::before { content:""; position:absolute; inset:3px; border-radius:50%; background: var(--amber); }
.chat-launch .cl-dot::after { content:""; position:absolute; inset:3px; border-radius:50%; background: var(--amber); animation: ping 1.8s infinite; }

.chat-panel {
  position: fixed; right: 16px; bottom: 156px; z-index: 50; width: calc(100vw - 32px); max-width: 384px; height: 448px;
  background: #fff; border: 1px solid var(--zinc-200); border-radius: 16px; box-shadow: 0 20px 60px -10px rgba(0,0,0,.25);
  display: flex; flex-direction: column; overflow: hidden;
  opacity: 0; transform: translateY(16px) scale(.95); pointer-events: none; transition: all .25s;
}
@media (min-width:1024px){ .chat-panel { bottom: 96px; } }
.chat-panel.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.chat-head { background: var(--zinc-900); color: #fff; padding: 12px 16px; display: flex; align-items: center; gap: 12px; }
.chat-head .ch-av { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--cyan-700)); display: grid; place-items: center; }
.chat-head .ch-av svg { width: 20px; height: 20px; color: #fff; }
.chat-head .ch-name { font-weight: 700; font-size: .9rem; }
.chat-head .ch-status { font-size: 11px; color: #67e8f9; display: flex; align-items: center; gap: 4px; }
.chat-head .ch-status::before { content:""; width:6px; height:6px; border-radius:50%; background: var(--cyan); }
.chat-body { flex: 1; overflow-y: auto; background: var(--zinc-50); padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.chat-body::-webkit-scrollbar { width: 6px; }
.chat-body::-webkit-scrollbar-thumb { background: var(--zinc-300); border-radius: 3px; }
.chat-msg { max-width: 85%; padding: 10px 14px; border-radius: 12px; font-size: .88rem; line-height: 1.5; }
.chat-msg--bot { background: #fff; color: var(--zinc-700); border: 1px solid var(--zinc-200); border-bottom-left-radius: 4px; align-self: flex-start; }
.chat-msg--user { background: var(--cyan-600); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
.chat-typing { align-self: flex-start; background: #fff; border: 1px solid var(--zinc-200); border-radius: 12px; padding: 12px; display: flex; gap: 4px; }
.chat-typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--zinc-300); animation: bounce 1.2s infinite; }
.chat-typing span:nth-child(2){ animation-delay: .15s; }
.chat-typing span:nth-child(3){ animation-delay: .3s; }
@keyframes bounce { 0%,60%,100% { transform: translateY(0); } 30% { transform: translateY(-5px); } }
.chat-suggest { display: flex; flex-direction: column; gap: 6px; }
.chat-suggest button { text-align: left; background: #fff; border: 1px solid var(--zinc-200); border-radius: 8px; padding: 8px 10px; font-size: 12px; color: var(--zinc-600); transition: all .15s; }
.chat-suggest button:hover { border-color: var(--cyan); color: var(--cyan-700); }
.chat-call { border-top: 1px solid var(--zinc-100); padding: 8px 12px; text-align: center; }
.chat-call a { font-size: 12px; font-weight: 700; color: var(--cyan-700); display: inline-flex; align-items: center; gap: 6px; }
.chat-call a:hover { text-decoration: underline; }
.chat-input { border-top: 1px solid var(--zinc-100); padding: 12px; display: flex; gap: 8px; }
.chat-input input { flex: 1; border: 1px solid var(--zinc-200); background: var(--zinc-50); border-radius: 8px; padding: 8px 12px; font-size: .9rem; }
.chat-input input:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(64,192,224,.15); outline: none; }
.chat-input button { width: 36px; height: 36px; border-radius: 8px; background: linear-gradient(135deg, var(--cyan), var(--cyan-700)); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.chat-input button:disabled { opacity: .4; }
.chat-input button svg { width: 16px; height: 16px; }

/* ---------- Layout wrapper ---------- */
.layout { display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1; }

/* ---------- Utilities ---------- */
.breadcrumb-current { color: #e4e4e7; }
.list-check { display: grid; gap: 10px; }
.list-check li { display: flex; gap: 8px; color: var(--zinc-700); font-size: .95rem; }
.list-check svg { width: 18px; height: 18px; color: var(--cyan-600); flex-shrink: 0; margin-top: 1px; }
.fade-in { animation: fadeUp .35s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* map svg responsive */
.map-wrap { position: relative; aspect-ratio: 1/1; max-width: 420px; margin: 0 auto; border: 1px solid var(--zinc-200); border-radius: 16px; background: #fff; padding: 24px; box-shadow: var(--shadow); }
.map-wrap svg { width: 100%; height: 100%; }
.map-card { position: absolute; left: 16px; right: 16px; bottom: 16px; background: rgba(255,255,255,.95); border: 1px solid var(--zinc-200); border-radius: 8px; padding: 12px; backdrop-filter: blur(8px); }

/* city chips */
.city-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.city-chips a { border: 1px solid var(--zinc-200); background: #fff; border-radius: 999px; padding: 8px 16px; font-size: .85rem; color: var(--zinc-700); transition: all .15s; }
.city-chips a:hover { border-color: var(--cyan); background: var(--cyan-50); color: var(--cyan-700); }

/* ---------- Responsive grid helpers ---------- */
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .lg-2col { grid-template-columns: 1fr 1fr !important; }
  .lg-3-2 { grid-template-columns: 1.6fr 1fr !important; }
}
