@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

/* ════════════════════════════════════════════════════════════════
   Chillaxin 'N' Waxin — Theme v2 (mobile-first redesign, 2026-06)
   ════════════════════════════════════════════════════════════════ */

:root {
  --red: #ff1d3f;
  --red-soft: rgba(255, 29, 63, 0.12);
  --blue: #3d8aff;
  --blue-bright: #5fa3ff;
  --blue-dim: rgba(61, 138, 255, 0.12);
  --gold: #d4a843;
  --gold-light: #e8c472;
  --green: #22c55e;

  --bg: #05060b;
  --bg2: #090b13;
  --surface: rgba(11, 13, 23, 0.92);
  --panel: rgba(12, 15, 27, 0.86);
  --panel2: rgba(255, 255, 255, 0.045);
  --line: rgba(148, 170, 220, 0.13);
  --line-strong: rgba(160, 180, 225, 0.24);
  --line-blue: rgba(61, 138, 255, 0.28);

  --text: rgba(242, 246, 255, 0.97);
  --muted: rgba(170, 190, 228, 0.8);
  --muted2: rgba(196, 212, 242, 0.86);

  --grad-brand: linear-gradient(90deg, var(--red), var(--blue));
  --grad-cta: linear-gradient(135deg, #3d8aff 0%, #1f63d8 100%);

  --radius: 22px;
  --radius-sm: 16px;
  --radius-xs: 10px;
  --radius-pill: 999px;

  --shadow: 0 24px 80px rgba(0, 0, 0, 0.65);
  --shadow-sm: 0 8px 32px rgba(0, 0, 0, 0.45);
  --shadow-card: 0 2px 32px rgba(0, 0, 0, 0.45);

  --glow-blue: 0 0 28px rgba(61, 138, 255, 0.25);
  --glow-gold: 0 0 28px rgba(212, 168, 67, 0.22);
  --glow-red: 0 0 28px rgba(255, 29, 63, 0.22);

  --t: 0.2s ease;
  --t-slow: 0.4s ease;
  --t-spring: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 72px;
}

/* ── Reset / base ── */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
}

html { scroll-behavior: smooth; }

img { max-width: 100%; display: block; }
a { color: inherit; -webkit-tap-highlight-color: transparent; }
button { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }

::selection { background: rgba(61, 138, 255, 0.35); color: #fff; }

.section-inner, .page-intro, .svc, .service-card, .why-card, .stat-card, .video-card {
  overflow-wrap: break-word;
  max-width: 100%;
}

body {
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  font-size: clamp(15.5px, 1vw + 11px, 17px);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ambient gradient backdrop on its own fixed compositor layer. Replaces
   `background-attachment: fixed` on <body>, which forced a full-screen
   repaint every scroll frame. Same look, no per-frame repaint cost. */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(1100px 500px at 85% -100px, rgba(61, 138, 255, 0.07), transparent 60%),
    radial-gradient(900px 420px at 0% 30%, rgba(255, 29, 63, 0.04), transparent 55%);
}

.wrap {
  width: min(1140px, 94vw);
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 64px;
  display: grid;
  gap: clamp(14px, 2.4vw, 24px);
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

/* ── Inline SVG icons (sprite in header partial) ── */
.ico {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: -0.18em;
}

.ico-sm { width: 17px; height: 17px; }
.ico-lg { width: 28px; height: 28px; }

/* Icon chip — gradient-tinted rounded square that holds an icon */
.icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(95, 163, 255, 0.28);
  background: linear-gradient(145deg, rgba(61, 138, 255, 0.16), rgba(61, 138, 255, 0.05));
  color: var(--blue-bright);
  flex-shrink: 0;
}

.icon-chip .ico { width: 23px; height: 23px; }

.icon-chip.red {
  border-color: rgba(255, 29, 63, 0.3);
  background: linear-gradient(145deg, rgba(255, 29, 63, 0.16), rgba(255, 29, 63, 0.04));
  color: #ff7088;
}

.icon-chip.gold {
  border-color: rgba(212, 168, 67, 0.32);
  background: linear-gradient(145deg, rgba(212, 168, 67, 0.16), rgba(212, 168, 67, 0.04));
  color: var(--gold-light);
}

.icon-chip.green {
  border-color: rgba(34, 197, 94, 0.3);
  background: linear-gradient(145deg, rgba(34, 197, 94, 0.14), rgba(34, 197, 94, 0.04));
  color: #5fdb8d;
}

/* ════════════════ Header / Navigation ════════════════ */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  overflow: visible;
  /* full-bleed bar; content is centered by .nav-inner */
  background: rgba(5, 6, 11, 0.82);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  transition: background var(--t-slow), border-color var(--t-slow), box-shadow var(--t-slow);
}

/* Centered content rail — aligns the logo + nav with the page content column */
.nav-inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px clamp(16px, 3vw, 30px);
  transition: min-height var(--t), padding var(--t);
}

.site-nav.scrolled {
  background: rgba(4, 5, 9, 0.97);
  border-color: var(--line-blue);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.55);
}

.site-nav.scrolled .nav-inner { min-height: 58px; }
.site-nav.scrolled .site-logo { height: 2.6rem; }

.site-brand a {
  font-family: "Great Vibes", cursive;
  font-size: 2.05rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  line-height: 1;
}

.site-logo {
  height: 3.1rem;
  width: auto;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
  transition: height var(--t);
}

.site-brand .red  { color: var(--red); }
.site-brand .blue { color: var(--blue-bright); }

.nav-links {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 3px;
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  padding: 10px 14px;
  border-radius: var(--radius-xs);
  border: 1px solid transparent;
  background: transparent;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
  transition: color var(--t), background var(--t), border-color var(--t);
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.nav-links a.active {
  color: #fff;
  background: rgba(61, 138, 255, 0.16);
  border-color: rgba(61, 138, 255, 0.45);
}

.nav-links a.nav-cta {
  background: var(--grad-cta);
  border-color: rgba(95, 163, 255, 0.55);
  color: #fff;
  margin-left: 6px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 18px rgba(31, 99, 216, 0.35);
}

.nav-links a.nav-cta:hover {
  box-shadow: 0 6px 24px rgba(61, 138, 255, 0.5);
  transform: translateY(-1px);
}

/* Hamburger */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font: inherit;
  cursor: pointer;
  transition: background var(--t), border-color var(--t);
}

.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }
.menu-toggle[aria-expanded="true"] .icon-open  { display: none; }

.menu-toggle[aria-expanded="true"],
.site-nav.nav-open .menu-toggle {
  background: rgba(61, 138, 255, 0.18);
  border-color: rgba(61, 138, 255, 0.5);
}

/* ════════════════ Full-bleed hero ════════════════ */

.hero-full {
  position: relative;
  min-height: 88vh;
  min-height: 88svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://res.cloudinary.com/degkp7cvl/image/upload/f_auto,q_auto,w_1800/v1773248897/Frontwebpage_yznzuu.jpg');
  background-size: cover;
  background-position: center 60%;
  transform: scale(1.07);
  transition: transform 9s ease;
  will-change: transform;
}

.hero-full.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg,
      rgba(5, 6, 11, 1)    0%,
      rgba(5, 6, 11, 0.82) 26%,
      rgba(5, 6, 11, 0.42) 56%,
      rgba(5, 6, 11, 0.18) 80%,
      rgba(5, 6, 11, 0.3)  100%),
    linear-gradient(125deg, rgba(255, 29, 63, 0.1) 0%, transparent 40%),
    linear-gradient(235deg, rgba(61, 138, 255, 0.09) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1100px, 94vw);
  text-align: center;
  padding: 110px 20px 90px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(61, 138, 255, 0.45);
  background: rgba(8, 12, 24, 0.55);
  color: #b8d4ff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 9px 18px;
  margin-bottom: 26px;
  opacity: 0;
  backdrop-filter: blur(8px);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.7);
  animation: pulse-dot 2.2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.65; transform: scale(0.8); }
}

.hero-title {
  margin: 0 0 18px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.6rem, 7.5vw, 6.5rem);
  letter-spacing: 0.1em;
  white-space: nowrap;
  text-align: center;
  text-transform: uppercase;
  line-height: 1;
  opacity: 0;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.55);
}

.hero-title .t-red  { color: var(--red); }
.hero-title .t-blue { color: var(--blue-bright); }

.hero-sub {
  max-width: 56ch;
  margin: 0 auto 22px;
  font-size: clamp(0.98rem, 1.8vw, 1.12rem);
  line-height: 1.7;
  color: var(--muted2);
  opacity: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

/* Star-rating row in hero */
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 26px;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(212, 168, 67, 0.35);
  background: rgba(8, 12, 24, 0.55);
  backdrop-filter: blur(8px);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--muted2);
  text-decoration: none;
  opacity: 0;
  transition: border-color var(--t), background var(--t);
}

.hero-rating:hover {
  border-color: rgba(232, 196, 114, 0.6);
  background: rgba(212, 168, 67, 0.1);
}

.hero-rating .stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold-light);
}

.hero-rating .stars .ico { width: 15px; height: 15px; fill: currentColor; stroke: none; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
  opacity: 0;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 12, 24, 0.5);
  border-radius: var(--radius-pill);
  padding: 9px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted2);
  backdrop-filter: blur(6px);
  white-space: nowrap;
}

.hero-pill .ico { width: 16px; height: 16px; color: var(--blue-bright); }
.hero-pill .ico.gold { color: var(--gold-light); }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  opacity: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
}

.hero-scroll-arrow {
  width: 18px;
  height: 18px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.32);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.32);
  transform: rotate(45deg);
  animation: bounce-arrow 1.6s ease-in-out infinite;
}

@keyframes bounce-arrow {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
  50%      { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

.page-loaded .hero-badge  { animation: fadeInDown 0.6s ease 0.1s forwards; }
.page-loaded .hero-title  { animation: fadeInUp 0.7s ease 0.22s forwards; }
.page-loaded .hero-sub    { animation: fadeInUp 0.7s ease 0.38s forwards; }
.page-loaded .hero-rating { animation: fadeInUp 0.65s ease 0.5s forwards; }
.page-loaded .hero-trust  { animation: fadeInUp 0.65s ease 0.6s forwards; }
.page-loaded .hero-ctas   { animation: fadeInUp 0.65s ease 0.7s forwards; }
.page-loaded .hero-scroll { animation: fadeIn 1s ease 1.2s forwards; }

/* ════════════════ Buttons ════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-strong);
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 0.93rem;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.05);
  transition: background var(--t), border-color var(--t), transform var(--t), box-shadow var(--t), color var(--t);
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}

.btn .ico { width: 18px; height: 18px; }

.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn.primary {
  background: var(--grad-cta);
  border-color: rgba(95, 163, 255, 0.65);
  color: #fff;
  box-shadow: 0 6px 22px rgba(31, 99, 216, 0.35);
}

.btn.primary:hover {
  box-shadow: 0 8px 30px rgba(61, 138, 255, 0.5);
  border-color: rgba(140, 188, 255, 0.9);
}

.btn.secondary {
  background: rgba(61, 138, 255, 0.1);
  border-color: rgba(61, 138, 255, 0.45);
  color: #bcd6ff;
}

.btn.secondary:hover {
  background: rgba(61, 138, 255, 0.2);
  border-color: rgba(95, 163, 255, 0.7);
  color: #fff;
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--muted2);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text);
}

.btn.gold-btn {
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.3), rgba(180, 138, 30, 0.18));
  border-color: rgba(212, 168, 67, 0.55);
  color: var(--gold-light);
}

.btn.gold-btn:hover {
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.48), rgba(180, 138, 30, 0.32));
  border-color: rgba(232, 196, 114, 0.75);
  box-shadow: var(--glow-gold);
}

button.btn { font: inherit; font-weight: 800; cursor: pointer; }

/* ════════════════ Stats strip ════════════════ */

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stat-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel);
  padding: 26px 18px 22px;
  text-align: center;
  transition: border-color var(--t-slow), transform var(--t), box-shadow var(--t);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-brand);
  opacity: 0.45;
  transition: opacity var(--t-slow);
}

.stat-card:hover {
  border-color: var(--line-blue);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.stat-card:hover::before { opacity: 1; }

.stat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  letter-spacing: 0.04em;
  color: var(--blue-bright);
  line-height: 1;
  margin-bottom: 7px;
}

.stat-num.gold { color: var(--gold); }
.stat-num.red  { color: var(--red); }

.stat-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.45;
}

/* ════════════════ Sections ════════════════ */

.section,
main.section { margin-top: 0; }

.section-inner { padding: clamp(22px, 4vw, 40px); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.section-head::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 64px;
  height: 2px;
  background: var(--grad-brand);
  border-radius: 2px;
}

.section-head h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.05em;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.1;
}

.section-head p {
  margin: 0;
  font-size: 0.92rem;
}

.section-kicker {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 6px;
}

.subtitle,
.panel-text,
.section-head p,
.page-intro p,
.svc p,
.svc ul,
.micro-copy,
.form-note,
.steps,
.gallery-caption,
.lightbox-caption,
.field label,
.video-card p {
  color: var(--muted2);
}

/* ── Page intro (interior page hero) ── */
.page-intro {
  padding: clamp(34px, 6vw, 56px) clamp(20px, 5vw, 46px);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(255, 29, 63, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(61, 138, 255, 0.07) 0%, transparent 50%),
    var(--panel);
}

.page-intro::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--red), var(--blue));
}

.page-intro h1 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  color: var(--text);
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.05;
  overflow-wrap: break-word;
}

.page-intro p {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.74;
  max-width: 72ch;
  margin: 0.7rem 0 0;
}

.page-intro .cta-row .btn { flex: 0 1 230px; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

/* ── Badges / chips ── */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.badge {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-pill);
  padding: 9px 15px;
  font-size: 0.84rem;
  font-weight: 600;
  transition: background var(--t), border-color var(--t);
}

.badge-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  min-height: 40px;
}

.badge-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.26);
}

.info-badge,
.coming,
.coming-badge {
  display: inline-block;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(61, 138, 255, 0.45);
  background: rgba(61, 138, 255, 0.1);
  color: #b5d2ff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 13px;
}

.coming { margin-bottom: 14px; }

.service-note {
  margin: 0;
  border-left: 3px solid rgba(61, 138, 255, 0.55);
  background: rgba(61, 138, 255, 0.05);
  border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
  color: var(--muted);
  padding: 11px 16px;
  font-weight: 600;
  font-size: 0.88rem;
}

/* Warning / pricing note */
.pricing-note {
  margin: 0 0 20px;
  padding: 13px 16px;
  background: rgba(255, 200, 50, 0.06);
  border: 1px solid rgba(255, 200, 50, 0.22);
  border-radius: var(--radius-xs);
  font-size: 0.86rem;
  color: rgba(232, 218, 140, 0.92);
  line-height: 1.6;
}

.pricing-note a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }

/* ════════════════ Service cards ════════════════ */

.services {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.services .svc { grid-column: span 6; }
.services .svc.wide { grid-column: 1 / -1; }

.svc {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.022);
  padding: 24px;
  transition: border-color var(--t-slow), background var(--t-slow), transform var(--t), box-shadow var(--t);
  position: relative;
  overflow: hidden;
}

.svc::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(61, 138, 255, 0.4), transparent);
  opacity: 0;
  transition: opacity var(--t-slow);
}

.svc:hover {
  border-color: rgba(61, 138, 255, 0.3);
  background: rgba(61, 138, 255, 0.035);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.32);
}

.svc:hover::after { opacity: 1; }

.svc h3 {
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
  line-height: 1.3;
  color: #fff;
}

.svc h4 {
  margin: 16px 0 0;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(168, 196, 255, 0.55);
}

.svc p  { margin: 0; line-height: 1.7; font-size: 0.93rem; }
.svc ul { margin: 6px 0 0; padding-left: 20px; line-height: 1.8; font-size: 0.92rem; }

.svc-icon {
  font-size: 1.9rem;
  margin-bottom: 14px;
  display: inline-flex;
}

.svc .icon-chip { margin-bottom: 14px; }

.compact-services .svc.wide { grid-column: span 12; }

/* Collapsible details inside service cards */
.svc-details {
  margin-top: 14px;
  border-top: 1px solid var(--line);
}

.svc-details summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 2px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(168, 196, 255, 0.7);
  user-select: none;
}

.svc-details summary::-webkit-details-marker { display: none; }

.svc-details summary .ico {
  width: 16px;
  height: 16px;
  transition: transform var(--t);
}

.svc-details[open] summary .ico { transform: rotate(180deg); }

.svc-details ul { margin: 0 0 12px; }

/* ════════════════ Why-us grid ════════════════ */

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.why-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.022);
  padding: 26px 22px;
  text-align: center;
  transition: border-color var(--t-slow), transform var(--t), box-shadow var(--t);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212, 168, 67, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity var(--t-slow);
}

.why-card:hover {
  border-color: rgba(212, 168, 67, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.38);
}

.why-card:hover::before { opacity: 1; }

.why-card-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
  position: relative;
  z-index: 1;
}

.why-card .icon-chip {
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.why-card h3 {
  margin: 0 0 9px;
  font-size: 1rem;
  color: #fff;
  position: relative;
  z-index: 1;
}

.why-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.62;
  position: relative;
  z-index: 1;
}

/* ════════════════ CTA band ════════════════ */

.cta-band {
  padding: clamp(38px, 7vw, 60px) clamp(20px, 5vw, 46px);
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(600px 200px at 50% 0%, rgba(61, 138, 255, 0.1), transparent 70%),
    linear-gradient(135deg, rgba(61, 138, 255, 0.05) 0%, rgba(5, 6, 11, 0) 40%, rgba(255, 29, 63, 0.05) 100%),
    var(--panel);
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue) 30%, var(--red) 70%, transparent);
  opacity: 0.7;
}

.cta-band h2 {
  margin: 0 0 12px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.9rem, 5vw, 3.4rem);
  letter-spacing: 0.06em;
  line-height: 1.08;
}

.cta-band p {
  margin: 0 auto 28px;
  max-width: 54ch;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
}

.cta-band .cta-row { justify-content: center; margin-top: 0; }

/* ════════════════ Misc layout helpers ════════════════ */

.stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.two-col {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.two-col > .svc { grid-column: auto; }

.about-mid-cards {
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quick-facts ul { margin-top: 8px; line-height: 1.65; }

/* ── Vehicle filter strip ── */
.vehicle-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 9px;
  margin-top: 10px;
}

.filter-pills { margin-top: 2px; }

.filter-pill {
  cursor: pointer;
  color: var(--muted);
  min-height: 42px;
  transition: background var(--t), border-color var(--t), color var(--t);
}

.filter-pill.is-active {
  border-color: rgba(61, 138, 255, 0.8);
  background: rgba(61, 138, 255, 0.22);
  color: #fff;
}

.services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.services-grid .service-card {
  grid-column: auto;
  display: flex;
  flex-direction: column;
}

.service-quote-link { margin-top: auto; padding-top: 18px; width: fit-content; }
.service-card[hidden] { display: none !important; }
.services-grid .service-card.wide { grid-column: 1 / -1; }

.filter-empty {
  grid-column: 1 / -1;
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
  padding: 16px;
  color: var(--muted2);
}

/* ── Tables ── */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.015);
  -webkit-overflow-scrolling: touch;
}

.glance-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  font-size: 0.95rem;
}

.glance-table th,
.glance-table td {
  border: 1px solid var(--line);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

.glance-table th {
  background: rgba(61, 138, 255, 0.08);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: #a8caff;
}

/* ════════════════ Gallery ════════════════ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gallery-tile {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  transition: border-color var(--t-slow), transform 0.28s ease, box-shadow 0.28s ease;
  position: relative;
  font: inherit;
  color: inherit;
  text-align: left;
}

.gallery-tile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 8, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.28s ease;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  z-index: 1;
}

.gallery-tile-overlay span,
.gallery-tile-overlay .ico {
  font-size: 1.8rem;
  width: 30px;
  height: 30px;
  color: #fff;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.25s ease, transform 0.28s ease;
}

.gallery-tile:hover { border-color: rgba(61, 138, 255, 0.4); transform: translateY(-4px); box-shadow: 0 18px 52px rgba(0, 0, 0, 0.5); }
.gallery-tile:hover .gallery-tile-overlay { background: rgba(5, 5, 8, 0.45); }
.gallery-tile:hover .gallery-tile-overlay span,
.gallery-tile:hover .gallery-tile-overlay .ico { opacity: 1; transform: scale(1); }
.gallery-tile:hover img { transform: scale(1.06); }

.gallery-tile img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-caption {
  padding: 11px 14px;
  font-size: 0.85rem;
  font-weight: 600;
}

.gallery-pair {
  grid-column: span 2;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.gallery-pair-label {
  padding: 10px 14px 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.gallery-pair-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.gallery-pair-images .gallery-tile {
  border: none;
  border-radius: 0;
  border-top: 1px solid var(--line);
}

.gallery-pair-images .gallery-tile:first-child {
  border-right: 1px solid var(--line);
}

.gallery-ba-label {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.gallery-ba-label.before { color: rgba(255, 110, 110, 0.9); }
.gallery-ba-label.after  { color: rgba(90, 210, 130, 0.95); }

.gallery-tile.gallery-featured {
  display: block;
  width: 100%;
  margin-bottom: 16px;
  aspect-ratio: 16 / 6;
}

.gallery-tile.gallery-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: auto;
}

.gallery-featured-label {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(2, 3, 6, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 300;
  backdrop-filter: blur(8px);
}

.lightbox.open { display: flex; }

.lightbox-inner {
  width: 100%;
  max-width: 960px;
}

.lightbox-image {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: #030409;
}

.lightbox-meta {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.lightbox-caption { margin: 0; font-size: 0.92rem; }

.lightbox-close {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  padding: 11px 20px;
  min-height: 44px;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background var(--t), border-color var(--t);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.32);
}

/* ── Video ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.video-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.022);
  padding: 18px;
}

.video-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xs);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 29, 63, 0.08), rgba(61, 138, 255, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.07em;
  margin: 10px 0;
}

.owner-video-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #000;
  overflow: hidden;
}

.owner-video-wrap video {
  display: block;
  width: 100%;
  max-height: 72vh;
}

/* ════════════════ Forms ════════════════ */

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }

.field label {
  font-size: 0.87rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.field input,
.field select,
.field textarea,
.readonly-message {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 13px 14px;
  min-height: 50px;
  font: inherit;
  font-size: max(16px, 1em); /* prevents iOS zoom-on-focus */
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(61, 138, 255, 0.65);
  background: rgba(61, 138, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(61, 138, 255, 0.12);
}

.field select option { background: #0d0f1c; color: var(--text); }

.field textarea,
.readonly-message { resize: vertical; min-height: 120px; line-height: 1.6; }

.readonly-message { min-height: 180px; font-size: 0.92rem; }

.form-note   { margin: 10px 0 0; font-size: 0.86rem; }
.form-status { margin: 10px 0 0; font-size: 0.9rem; color: #ffa8b8; }
.form-status.ok { color: #a8c8ff; }

.contact-actions            { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.contact-actions .btn       { min-width: 200px; }
.contact-email-row          { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 12px; }
.email-text                 { margin: 0; font-weight: 700; font-size: 1.05rem; }
.confirmation-panel[hidden] { display: none; }

/* ── Numbered steps ── */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.steps li {
  counter-increment: steps;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.94rem;
  color: var(--muted2);
  line-height: 1.6;
  overflow-wrap: break-word;
}

.steps li::before {
  content: counter(steps);
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(61, 138, 255, 0.14);
  border: 1px solid rgba(61, 138, 255, 0.35);
  color: #a8caff;
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* ── Booking option cards (contact page) ── */
.booking-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 16px;
  margin: 8px 0 0;
}

.booking-option {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-sm);
  padding: 26px 24px 22px;
  background: rgba(255, 255, 255, 0.025);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
}

.booking-option:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.booking-option.primary-opt        { border-color: rgba(61, 138, 255, 0.3); background: rgba(61, 138, 255, 0.05); }
.booking-option.primary-opt:hover  { border-color: rgba(61, 138, 255, 0.5); background: rgba(61, 138, 255, 0.09); }

.booking-option::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
}

.booking-option.primary-opt::before { background: linear-gradient(180deg, #3d8aff, #2d6fd4); }
.booking-option.phone-opt::before   { background: linear-gradient(180deg, #ff1d3f, #cc1733); }
.booking-option.chat-opt::before    { background: linear-gradient(180deg, #a855f7, #7c3aed); }

.opt-icon { font-size: 2rem; line-height: 1; }

.opt-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: #fff;
  margin: 0;
  line-height: 1.1;
}

.opt-desc {
  font-size: 0.88rem;
  color: rgba(170, 192, 232, 0.68);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.opt-badge {
  display: inline-block;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(61, 138, 255, 0.15);
  color: #a8caff;
  border: 1px solid rgba(61, 138, 255, 0.25);
  border-radius: 20px;
  padding: 3px 10px;
  width: fit-content;
}

/* ════════════════ Footer ════════════════ */

footer {
  margin-top: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(700px 240px at 50% 0%, rgba(61, 138, 255, 0.05), transparent 70%),
    rgba(8, 9, 15, 0.95);
  overflow: hidden;
}

.footer-body {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 36px;
  padding: 40px 36px 28px;
  border-bottom: 1px solid var(--line);
}

.footer-brand-name {
  font-family: "Great Vibes", cursive;
  font-size: 2.1rem;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  line-height: 1.2;
}

.footer-brand-name .red  { color: var(--red); }
.footer-brand-name .blue { color: var(--blue-bright); }

.footer-tagline {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
  max-width: 34ch;
}

.footer-cta-row {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-cta-row .btn {
  min-height: 42px;
  padding: 9px 18px;
  font-size: 0.86rem;
}

.footer-col-head {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(168, 196, 255, 0.45);
  margin: 0 0 14px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li { color: var(--muted2); font-size: 0.9rem; }

.footer-col ul li a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  transition: color var(--t);
  display: inline-flex;
  align-items: center;
  min-height: 32px;
}

.footer-col ul li a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 36px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.34);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color var(--t);
}

.footer-links a:hover { color: var(--text); }

/* ════════════════ Mobile sticky CTA bar ════════════════ */

.mobile-sticky-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 150;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  background: rgba(4, 5, 9, 0.92);
  border-top: 1px solid rgba(61, 138, 255, 0.25);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.mobile-sticky-cta .btn { min-height: 50px; font-size: 0.92rem; }
.mobile-sticky-cta.is-hidden { display: none !important; }

/* ── Link affordances ── */
.section-inner a:not(.btn):not(.badge-link),
.page-intro a:not(.btn):not(.badge-link),
.svc a:not(.btn) {
  text-underline-offset: 3px;
}

.section-inner a:not(.btn):not(.badge-link):hover,
.page-intro a:not(.btn):not(.badge-link):hover,
.svc a:not(.btn):hover,
footer a:hover {
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
.gallery-tile:focus-visible,
.nav-links a:focus-visible {
  outline: 2px solid rgba(95, 163, 255, 1);
  outline-offset: 3px;
}

/* ════════════════ Animations / reveal ════════════════ */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Reveal-on-scroll: only hides content when JS is confirmed running */
html.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

html.js .reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

html.js .reveal-left {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

html.js .reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 { transition-delay: 0.05s; }
.reveal-delay-2 { transition-delay: 0.1s; }
.reveal-delay-3 { transition-delay: 0.15s; }
.reveal-delay-4 { transition-delay: 0.2s; }
.reveal-delay-5 { transition-delay: 0.25s; }
.reveal-delay-6 { transition-delay: 0.3s; }

/* ════════════════ Extra components ════════════════ */

/* City Slicker Picker */
.csp-link {
  color: #a8caff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.15s;
}
.csp-link:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.csp-link-plain {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(168, 190, 230, 0.85);
}

.csp-tag {
  display: inline-block;
  margin-left: auto;
  font-size: 0.7rem;
  padding: 2px 9px;
  border-radius: 20px;
  background: rgba(96, 165, 250, 0.12);
  color: rgba(168, 190, 230, 0.7);
  border: 1px solid rgba(96, 165, 250, 0.2);
  vertical-align: middle;
  white-space: nowrap;
}

.csp-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.15s;
}

.csp-list li:hover { background: rgba(255, 255, 255, 0.06); }

/* Notice banner */
.cnw-notice-banner {
  background: linear-gradient(135deg, rgba(255, 29, 63, 0.12), rgba(61, 138, 255, 0.1));
  border: 2px solid rgba(255, 29, 63, 0.35);
  border-radius: var(--radius-sm);
  padding: 28px 32px;
  text-align: center;
}

/* Google reviews trust bar */
.google-trust-bar { padding: 16px 26px; }

.google-trust-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.google-trust-stars {
  display: inline-flex;
  gap: 3px;
  color: var(--gold-light);
  font-size: 1.05rem;
  letter-spacing: 1px;
}

.google-trust-stars .ico { width: 18px; height: 18px; fill: currentColor; stroke: none; }

.google-trust-text { font-size: 0.95rem; color: var(--muted2); }

.google-trust-link {
  font-size: 0.86rem;
  min-height: 42px;
  padding: 9px 18px;
}

/* Legacy two-panel hero (kept for compatibility) */
.hero { display: grid; grid-template-columns: 1.25fr 0.75fr; }
.hero-left { padding: 44px 40px; }
.hero-right { padding: 30px; border-left: 1px solid var(--line); background: rgba(255, 255, 255, 0.02); }

.kicker {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.title {
  margin: 0.3rem 0 0.6rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 7vw, 5rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.title .red  { color: var(--red); }
.title .blue { color: var(--blue); }

.subtitle { margin: 0.2rem 0 0; max-width: 58ch; font-size: 1.05rem; line-height: 1.76; }

.panel-title {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.85rem;
  letter-spacing: 0.06em;
}

/* ════════════════ Process / How-it-works strip ════════════════ */

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.process-step {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.022);
  padding: 28px 24px 24px;
  overflow: hidden;
  transition: border-color var(--t-slow), transform var(--t), box-shadow var(--t);
}

.process-step:hover {
  border-color: var(--line-blue);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.36);
}

.process-num {
  position: absolute;
  top: 10px;
  right: 18px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  line-height: 1;
  color: rgba(95, 163, 255, 0.16);
}

.process-step .icon-chip { margin-bottom: 14px; }
.process-step h3 { margin: 0 0 8px; font-size: 1.08rem; color: #fff; }
.process-step p  { margin: 0; font-size: 0.91rem; color: var(--muted); line-height: 1.62; }

/* ════════════════ FAQ accordion ════════════════ */

.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq {
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.022);
  overflow: hidden;
  transition: border-color var(--t);
}

.faq[open] { border-color: var(--line-blue); }

.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  font-weight: 700;
  font-size: 0.98rem;
  color: #fff;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary .ico {
  width: 18px;
  height: 18px;
  color: var(--blue-bright);
  flex-shrink: 0;
  transition: transform var(--t);
}

.faq[open] summary .ico { transform: rotate(180deg); }

.faq-a { padding: 0 18px 16px; }
.faq-a p { margin: 0; color: var(--muted2); font-size: 0.92rem; line-height: 1.66; }
.faq-a a { color: #a8caff; text-underline-offset: 2px; }

@media (max-width: 860px) {
  .process-grid { grid-template-columns: 1fr; gap: 10px; }
  .process-step { padding: 22px 20px 20px; }
}

/* ════════════════════════════════════════════════════════════
   Responsive — consolidated breakpoints: 1100 / 860 / 640 / 420
   ════════════════════════════════════════════════════════════ */

@media (min-width: 1101px) {
  .nav-inner { flex-wrap: nowrap; }
}

/* ── ≤1100px: hamburger nav + slide-down drawer ── */
@media (max-width: 1100px) {
  .menu-toggle { display: inline-flex; }

  .site-nav.nav-open::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(2, 3, 6, 0.62);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: -1;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    margin: 0;
    background: rgba(5, 6, 11, 0.98);
    border-bottom: 1px solid rgba(61, 138, 255, 0.25);
    border-radius: 0 0 20px 20px;
    padding: 10px 14px calc(16px + env(safe-area-inset-bottom));
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    max-height: calc(100vh - var(--nav-h));
    max-height: calc(100svh - var(--nav-h));
    overflow-y: auto;
  }

  .site-nav.nav-open .nav-links { display: flex; }

  .site-nav.nav-open .nav-links a {
    animation: navItemIn 0.3s ease both;
  }

  .site-nav.nav-open .nav-links a:nth-child(1) { animation-delay: 0.03s; }
  .site-nav.nav-open .nav-links a:nth-child(2) { animation-delay: 0.06s; }
  .site-nav.nav-open .nav-links a:nth-child(3) { animation-delay: 0.09s; }
  .site-nav.nav-open .nav-links a:nth-child(4) { animation-delay: 0.12s; }
  .site-nav.nav-open .nav-links a:nth-child(5) { animation-delay: 0.15s; }
  .site-nav.nav-open .nav-links a:nth-child(6) { animation-delay: 0.18s; }
  .site-nav.nav-open .nav-links a:nth-child(7) { animation-delay: 0.21s; }
  .site-nav.nav-open .nav-links a:nth-child(8) { animation-delay: 0.24s; }

  @keyframes navItemIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .nav-links a {
    text-align: center;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 1rem;
    letter-spacing: 0.02em;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(61, 138, 255, 0.12);
    color: #fff;
  }

  .nav-links a.nav-cta {
    order: -1;
    margin: 0 0 6px;
    box-shadow: 0 4px 18px rgba(31, 99, 216, 0.4);
  }

  .site-nav.scrolled .nav-inner { min-height: 54px; padding-block: 6px; }
  .site-nav.scrolled .site-logo { height: 2.3rem; transition: height 0.2s; }
}

/* ── ≤980px: grid steps ── */
@media (max-width: 980px) {
  .services-grid { grid-template-columns: 1fr; }
  .stats-strip   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-us-grid   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-body   { grid-template-columns: 1fr 1fr; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .gallery-grid, .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ── ≤860px: tablet / large phone ── */
@media (max-width: 860px) {
  body { padding-bottom: 0; }
  body.has-mobile-sticky-cta { padding-bottom: 92px; }

  .wrap { width: min(1140px, 100% - 24px); }
  .card, footer { border-radius: 18px; }

  .nav-inner { padding: 8px 14px; }
  .site-brand a { font-size: 1.7rem; gap: 0.4rem; }
  .site-logo { height: 2.7rem; }

  /* Hero: bottom-anchored composition that fits one screen */
  .hero-full { min-height: 100svh; }
  .hero-bg {
    background-image: url('https://res.cloudinary.com/degkp7cvl/image/upload/f_auto,q_auto,w_900,ar_4:5,c_fill,g_auto/v1773248897/Frontwebpage_yznzuu.jpg');
    background-position: center 40%;
  }
  .hero-overlay {
    background:
      linear-gradient(0deg,
        rgba(5, 6, 11, 1)    0%,
        rgba(5, 6, 11, 0.9)  30%,
        rgba(5, 6, 11, 0.55) 60%,
        rgba(5, 6, 11, 0.25) 85%,
        rgba(5, 6, 11, 0.4)  100%);
  }
  .hero-content {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    padding: 86px 18px 30px;
  }
  .hero-badge { margin-bottom: 16px; padding: 8px 15px; font-size: 0.68rem; }
  .hero-title {
    font-size: clamp(2.5rem, 12.5vw, 4.4rem);
    white-space: normal;
    letter-spacing: 0.07em;
    margin-bottom: 12px;
  }
  .hero-sub {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: 36ch;
  }
  .hero-rating { margin-bottom: 18px; padding: 8px 14px; font-size: 0.82rem; }
  .hero-ctas {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .hero-ctas .btn { width: 100%; min-height: 52px; font-size: 0.93rem; padding: 13px 10px; }
  .hero-ctas .btn:first-child { grid-column: 1 / -1; min-height: 56px; font-size: 1rem; }

  /* Credential chips become an edge-to-edge swipe row */
  .hero-trust {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    width: calc(100% + 36px);
    margin: 0 -18px 18px;
    padding: 4px 18px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .hero-trust::-webkit-scrollbar { display: none; }
  .hero-pill { flex: 0 0 auto; font-size: 0.78rem; padding: 8px 13px; }

  .hero-scroll { display: none; }

  /* Sections */
  .section-head { margin-bottom: 18px; }
  .stats-strip { gap: 10px; }
  .stat-card { padding: 18px 14px 16px; }
  .stat-label { font-size: 0.69rem; }

  /* Service cards become compact rows */
  .services .svc { grid-column: 1 / -1; }
  .svc { padding: 18px; }
  .svc .icon-chip { width: 42px; height: 42px; border-radius: 12px; margin-bottom: 12px; }
  .svc h3 { font-size: 1rem; }
  .svc p { font-size: 0.89rem; line-height: 1.6; }
  .svc .btn { min-height: 46px; font-size: 0.85rem; padding: 10px 18px; }

  .why-us-grid { grid-template-columns: 1fr; gap: 10px; }
  .why-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4px 16px;
    text-align: left;
    padding: 18px;
    align-items: start;
  }
  .why-card .icon-chip, .why-card-icon { grid-row: span 2; margin-bottom: 0; }
  .why-card h3 { margin-bottom: 2px; font-size: 0.97rem; }
  .why-card p { font-size: 0.86rem; }

  .two-col,
  .about-mid-cards { grid-template-columns: 1fr !important; gap: 12px; }

  .filter-pills,
  #service-filters {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .filter-pills::-webkit-scrollbar { display: none; }
  .filter-pill { flex: 0 0 auto; }

  .footer-body { grid-template-columns: 1fr; gap: 24px; padding: 28px 22px 22px; }
  .footer-col + .footer-col { border-top: 1px solid var(--line); padding-top: 20px; }
  .footer-col ul li a { min-height: 42px; }
  .footer-bottom { padding: 16px 22px; flex-direction: column; align-items: center; text-align: center; gap: 8px; }
  .footer-links { justify-content: center; gap: 14px; }

  .mobile-sticky-cta { display: grid; }

  .cta-band .cta-row { flex-direction: column; }
  .cta-band .cta-row .btn { width: 100%; }
  .page-intro .cta-row { flex-direction: column; width: 100%; }
  .page-intro .cta-row .btn { width: 100%; flex-basis: auto; }
}

/* ── ≤640px: phones ── */
@media (max-width: 640px) {
  .wrap { width: min(1140px, 100% - 20px); }
  .gallery-grid, .video-grid { grid-template-columns: 1fr; }

  .site-brand a { font-size: 1.5rem; }
  .site-logo { height: 2.4rem; }

  .gallery-pair { grid-column: span 1; }
  .gallery-pair-images { grid-template-columns: 1fr 1fr; }

  .gallery-tile.gallery-featured { aspect-ratio: 16 / 8; }

  .lightbox { padding: 10px; }
  .lightbox-meta { flex-direction: column-reverse; align-items: stretch; text-align: center; }
  .lightbox-close { width: 100%; }

  .badge { font-size: 0.8rem; padding: 8px 13px; }
  .glance-table { font-size: 0.88rem; }
  .booking-options { grid-template-columns: 1fr; }
}

/* ── ≤420px: small phones ── */
@media (max-width: 420px) {
  .section-inner { padding: 18px 14px; }
  .page-intro { padding: 28px 18px; }
  .page-intro h1 { font-size: clamp(1.7rem, 9vw, 2.2rem); }
  .stat-num { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .stats-strip { gap: 8px; }
  .stat-card { padding: 16px 10px 14px; }
  .hero-title { font-size: clamp(2.2rem, 13vw, 3.2rem); }
  .hero-ctas { max-width: 100%; }
  .mobile-sticky-cta .btn { font-size: 0.88rem; min-height: 48px; }
  .cta-band h2 { font-size: clamp(1.5rem, 8vw, 2rem); }
  .site-brand a { font-size: 1.35rem; }
  .site-logo { height: 2.2rem; }
  .footer-brand-name { font-size: 1.75rem; }
}

/* ── Chat bubble: auto-dismiss on mobile so it doesn't cover content ── */
@keyframes cnwBubbleFadeOut {
  from { opacity: 1; }
  to   { opacity: 0; pointer-events: none; }
}

@media (max-width: 860px) {
  .cnw-bubble.visible {
    animation: cnwBubbleFadeOut 0.4s ease forwards;
    animation-delay: 4s;
  }
  .footer-owner-link { display: none; }
}

@media (max-width: 700px) {
  .form-grid { grid-template-columns: 1fr; }
  .csp-grid { grid-template-columns: 1fr !important; }
  .cnw-notice-banner { padding: 20px 16px; border-radius: 12px; }
}

/* ════════════════ Reduced motion ════════════════ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html.js .reveal,
  html.js .reveal-left {
    opacity: 1;
    transform: none;
  }

  .hero-badge, .hero-title, .hero-sub, .hero-rating,
  .hero-trust, .hero-ctas, .hero-scroll {
    opacity: 1;
  }

  .hero-bg { transform: none; }
}
