/* ==========================================================================
   NEON TECH CANARIAS — design system
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:            #06080f;
  --bg-elevated:   #0b0f1c;
  --surface:       rgba(255, 255, 255, 0.028);
  --surface-hover: rgba(255, 255, 255, 0.055);
  --border:        rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  --text:    #e9edfb;
  --text-2:  #99a3c2;
  --text-3:  #67718f;

  --cyan:    #22d3ee;
  --violet:  #7c5cff;
  --lime:    #7df1a8;
  --amber:   #ffc95c;
  --danger:  #ff6b81;

  --glow-cyan:   rgba(34, 211, 238, 0.35);
  --glow-violet: rgba(124, 92, 255, 0.32);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 22px;

  --max: 1160px;
  --header-h: 68px;

  --shadow-card: 0 20px 50px -25px rgba(0, 0, 0, 0.9);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
  color-scheme: dark;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Ambient background wash */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 600px at 12% -8%,  rgba(124, 92, 255, 0.20), transparent 62%),
    radial-gradient(800px 560px at 92% 2%,   rgba(34, 211, 238, 0.16), transparent 60%),
    radial-gradient(700px 520px at 50% 108%, rgba(124, 92, 255, 0.12), transparent 65%);
  pointer-events: none;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 20%, transparent 78%);
  pointer-events: none;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
[hidden] { display: none !important; }

::selection { background: var(--violet); color: #fff; }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout primitives ---------- */

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.section { padding: 96px 0; position: relative; }
.section--tight { padding: 72px 0; }
.section--alt { background: linear-gradient(180deg, transparent, rgba(255,255,255,0.018) 12%, rgba(255,255,255,0.018) 88%, transparent); }

.section__head { max-width: 700px; margin: 0 auto 56px; text-align: center; }
.section__head--left { margin-left: 0; text-align: left; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--glow-cyan);
}

h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.028em; font-weight: 700; }

.section__title { font-size: clamp(1.7rem, 3.6vw, 2.5rem); margin-bottom: 16px; }
.section__lead { color: var(--text-2); font-size: 1.03rem; line-height: 1.75; }

.gradient-text {
  background: linear-gradient(100deg, var(--cyan), var(--violet) 65%, #c9b8ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease),
              background 0.22s var(--ease), border-color 0.22s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(100deg, var(--cyan), var(--violet));
  color: #050710;
  font-weight: 750;
  box-shadow: 0 10px 30px -10px var(--glow-violet), 0 0 0 1px rgba(255,255,255,0.08) inset;
}
.btn--primary:hover { box-shadow: 0 16px 40px -12px var(--glow-cyan), 0 0 0 1px rgba(255,255,255,0.16) inset; }

.btn--ghost {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: var(--surface-hover); border-color: var(--border-strong); }

.btn--sm { padding: 10px 18px; font-size: 0.86rem; }
.btn--block { width: 100%; }
.btn--danger {
  background: rgba(255, 107, 129, 0.14);
  border-color: rgba(255, 107, 129, 0.45);
  color: #ffc3cc;
}
.btn--danger:hover { background: rgba(255, 107, 129, 0.22); border-color: rgba(255, 107, 129, 0.7); }
.btn[disabled] { opacity: 0.45; pointer-events: none; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(6, 8, 15, 0.72);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.site-header.is-stuck { border-bottom-color: var(--border); background: rgba(6, 8, 15, 0.9); }

.header__inner { display: flex; align-items: center; gap: 20px; }

.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand__mark {
  width: 30px; height: 30px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  box-shadow: 0 0 18px -4px var(--glow-cyan);
  color: #050710;
  flex-shrink: 0;
}
.brand__mark svg { width: 17px; height: 17px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-size: 0.95rem; font-weight: 800; letter-spacing: -0.01em; }
.brand__name em { font-style: normal; color: var(--cyan); }
.brand__region {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--text-3);
}

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav a {
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 0.875rem;
  color: var(--text-2);
  transition: color 0.2s, background 0.2s;
}
.nav a:hover { color: var(--text); background: var(--surface); }

.header__actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav + .header__actions { margin-left: 0; }

/* Language flag selector */
.lang {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
}
.lang__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-3);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.lang__btn:hover { color: var(--text-2); }
.lang__btn.is-active { background: var(--surface-hover); color: var(--text); }
.lang__btn .flag {
  width: 18px;
  height: 13px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.18);
  filter: saturate(1.05);
}
.lang__btn:not(.is-active) .flag { opacity: 0.55; }

.nav-toggle {
  display: none;
  width: 38px; height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
}
.nav-toggle svg { width: 18px; height: 18px; }

/* ---------- Hero ---------- */

.hero { padding: 72px 0 84px; position: relative; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
}

.badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-2);
}
.badge svg { width: 13px; height: 13px; color: var(--cyan); }
.badge--accent { border-color: rgba(34,211,238,0.3); background: rgba(34,211,238,0.07); color: #a8ecf7; }

.hero h1 {
  font-size: clamp(2.15rem, 5.2vw, 3.5rem);
  margin-bottom: 20px;
  letter-spacing: -0.035em;
}
.hero__lead {
  font-size: clamp(1rem, 1.6vw, 1.13rem);
  color: var(--text-2);
  line-height: 1.72;
  max-width: 560px;
  margin-bottom: 32px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }

.hero__points { display: flex; flex-direction: column; gap: 10px; }
.hero__points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-2);
}
.hero__points svg { width: 17px; height: 17px; color: var(--lime); flex-shrink: 0; margin-top: 2px; }

/* Price card */
.price-card {
  position: relative;
  padding: 36px 32px 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(124, 92, 255, 0.14), rgba(34, 211, 238, 0.06) 55%, transparent),
    rgba(11, 15, 28, 0.86);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(14px);
  overflow: hidden;
}
.price-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(34,211,238,0.55), transparent 40%, transparent 62%, rgba(124,92,255,0.5));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.price-card__tag {
  display: inline-block;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.28);
  color: #a8ecf7;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.price-card__amount {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}
.price-card__figure {
  font-size: clamp(3.6rem, 9vw, 5rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.045em;
  background: linear-gradient(140deg, #ffffff, #b9e9f8 45%, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 60px var(--glow-cyan);
}
.price-card__unit { font-size: 1rem; font-weight: 600; color: var(--text-2); }
.price-card__caption { font-size: 1.02rem; font-weight: 600; color: var(--text); margin-bottom: 18px; }
.price-card__fine {
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--text-3);
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.price-card__fine strong { color: var(--text-2); font-weight: 650; }
.price-card .btn { margin-top: 22px; }

.price-card__list { display: grid; gap: 9px; margin: 4px 0 4px; }
.price-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  list-style: none;
  font-size: 0.86rem;
  color: var(--text-2);
}
.price-card__list svg { width: 15px; height: 15px; color: var(--cyan); flex-shrink: 0; margin-top: 3px; }

/* ---------- Stats strip ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--border);
}
.stat { padding: 26px 22px; background: var(--bg-elevated); text-align: center; }
.stat__value {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.stat__label { font-size: 0.78rem; color: var(--text-3); line-height: 1.5; }

/* ---------- Card grids ---------- */

.grid { display: grid; gap: 18px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  padding: 26px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
}
.card:hover { border-color: var(--border-strong); background: var(--surface-hover); transform: translateY(-3px); }
.card__icon {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(140deg, rgba(34,211,238,0.16), rgba(124,92,255,0.16));
  border: 1px solid var(--border);
  margin-bottom: 16px;
}
.card__icon svg { width: 20px; height: 20px; color: var(--cyan); }
.card h3 { font-size: 1rem; margin-bottom: 8px; }
.card p { font-size: 0.875rem; color: var(--text-2); line-height: 1.65; }

/* ---------- Sectors ---------- */

.sectors {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(232px, 1fr));
  gap: 10px;
}
.sector {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  font-size: 0.845rem;
  line-height: 1.4;
  color: var(--text-2);
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.2s var(--ease);
}
.sector:hover { border-color: rgba(34,211,238,0.35); background: rgba(34,211,238,0.06); color: var(--text); transform: translateY(-2px); }
.sector__icon { font-size: 1.05rem; line-height: 1; flex-shrink: 0; }

.sectors-note {
  margin-top: 26px;
  text-align: center;
  font-size: 0.86rem;
  color: var(--text-3);
}

/* ---------- Steps ---------- */

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step {
  position: relative;
  padding: 28px 22px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}
.step__num {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: #050710;
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 15px;
}
.step h3 { font-size: 0.97rem; margin-bottom: 7px; }
.step p { font-size: 0.855rem; color: var(--text-2); line-height: 1.65; }

/* ---------- Pricing detail ---------- */

.pricing-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-elevated);
  box-shadow: var(--shadow-card);
}
.pricing-panel__main {
  padding: 44px 40px;
  background:
    linear-gradient(150deg, rgba(124, 92, 255, 0.16), rgba(34, 211, 238, 0.07) 60%, transparent);
  border-right: 1px solid var(--border);
}
.pricing-panel__side { padding: 44px 40px; }
.pricing-panel__side h3 { font-size: 1.05rem; margin-bottom: 18px; }

.headline-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 12px 0 8px;
}
.headline-price__figure {
  font-size: clamp(4rem, 11vw, 6rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.05em;
  background: linear-gradient(140deg, #ffffff, #c6ecf9 40%, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 80px var(--glow-cyan);
}
.headline-price__unit { font-size: 1.05rem; font-weight: 650; color: var(--text-2); }
.headline-price__sub { font-size: 1.05rem; font-weight: 600; color: var(--text); margin-bottom: 20px; }

.small-print { font-size: 0.79rem; line-height: 1.7; color: var(--text-3); }
.small-print strong { color: var(--text-2); font-weight: 650; }

.includes { display: grid; gap: 11px; }
.includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  list-style: none;
  font-size: 0.89rem;
  color: var(--text-2);
}
.includes svg { width: 16px; height: 16px; color: var(--lime); flex-shrink: 0; margin-top: 3px; }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  font-size: 0.86rem;
}
.hours-table th, .hours-table td { padding: 9px 0; text-align: left; border-bottom: 1px solid var(--border); }
.hours-table th { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-3); font-weight: 700; }
.hours-table td { color: var(--text-2); }
.hours-table td:last-child { text-align: right; color: var(--text); font-weight: 650; }
.hours-table tr:last-child td { border-bottom: 0; }

/* ---------- Coverage ---------- */

.coverage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.coverage__towns { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.coverage__note { margin-top: 20px; font-size: 0.875rem; color: var(--text-3); line-height: 1.7; max-width: 560px; }
.coverage__note + .btn { margin-top: 16px; }
.town {
  padding: 6px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  font-size: 0.8rem;
  color: var(--text-2);
}

.callout {
  padding: 22px 24px;
  border: 1px solid rgba(34,211,238,0.26);
  border-radius: var(--radius);
  background: rgba(34,211,238,0.06);
}
.callout h4 { font-size: 0.95rem; margin-bottom: 8px; color: var(--text); }
.callout p { font-size: 0.87rem; color: var(--text-2); line-height: 1.7; }

/* ---------- FAQ ---------- */

.faq { max-width: 800px; margin: 0 auto; display: grid; gap: 10px; }
.faq__item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq__item[open] { border-color: var(--border-strong); background: var(--surface-hover); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 0.945rem;
  font-weight: 620;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: '';
  width: 9px; height: 9px;
  border-right: 2px solid var(--text-3);
  border-bottom: 2px solid var(--text-3);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
}
.faq__item[open] .faq__q::after { transform: rotate(-135deg) translateY(-2px); }
.faq__a { padding: 0 22px 20px; font-size: 0.885rem; color: var(--text-2); line-height: 1.75; }

/* ---------- Form ---------- */

.booking-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: start; }

.booking-aside { position: sticky; top: calc(var(--header-h) + 24px); }
.booking-aside .price-card { padding: 28px 26px 24px; }

.form-shell {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(11, 15, 28, 0.7);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-card);
}

.form-legend {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--text-3);
  margin: 30px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.form-legend:first-child { margin-top: 0; }
.form-legend span.opt { font-weight: 500; text-transform: none; letter-spacing: 0; opacity: 0.75; }

.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

label, .form-label {
  display: block;
  font-size: 0.79rem;
  font-weight: 620;
  color: var(--text-2);
  margin-bottom: 7px;
}
label .opt { font-weight: 400; color: var(--text-3); }

input[type="text"], input[type="email"], input[type="tel"], input[type="date"],
input[type="password"], input[type="number"],
select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-size: 0.92rem;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
textarea { resize: vertical; min-height: 96px; line-height: 1.6; }
select { appearance: none; cursor: pointer; padding-right: 38px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2367718f' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  background-size: 15px;
}
select option { background: var(--bg-elevated); color: var(--text); }

input::placeholder, textarea::placeholder { color: #4e5773; }

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: rgba(34, 211, 238, 0.55);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.12);
}
input[aria-invalid="true"], select[aria-invalid="true"], textarea[aria-invalid="true"] {
  border-color: rgba(255, 107, 129, 0.6);
  box-shadow: 0 0 0 3px rgba(255, 107, 129, 0.1);
}

/* Visible dd/mm/yyyy field. The native date input is clipped to the icon
   so Chrome cannot show mm/dd/yyyy or a black calendar glyph. */
.date-field {
  display: flex;
  align-items: stretch;
  position: relative;
}
.date-field__text {
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  padding-right: 12px;
}
.date-field__pick {
  position: relative;
  flex: 0 0 44px;
  width: 44px;
  overflow: hidden;
  color: var(--text-2);
}
.date-field:focus-within .date-field__pick { color: var(--text); }
.date-field__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  pointer-events: none;
}
.date-field__pick input[type="date"] {
  position: absolute;
  inset: 0;
  width: 44px;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  box-shadow: none;
  opacity: 0;
  cursor: pointer;
  color-scheme: dark;
}
.date-field__pick input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  cursor: pointer;
  opacity: 0;
}

.field-error { display: none; margin-top: 6px; font-size: 0.76rem; color: var(--danger); }
.field-error.is-visible { display: block; }

.field-hint { margin-top: 6px; font-size: 0.76rem; color: var(--text-3); }
.field-hint a { color: var(--text-2); }
.field-hint a:hover { color: var(--cyan); }

/* Shown instead of a bare rejection when the chosen municipality is outside
   the coverage area, so the enquiry can still reach us. */
.out-of-area {
  display: none;
  margin: 4px 0 18px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 201, 92, 0.32);
  background: rgba(255, 201, 92, 0.06);
  border-radius: var(--radius-sm);
}
.out-of-area.is-visible { display: block; }
.out-of-area h4 { color: var(--amber); font-size: 0.92rem; margin-bottom: 10px; }
.out-of-area p { color: var(--text-2); font-size: 0.855rem; line-height: 1.7; margin-bottom: 10px; }
.out-of-area p:last-of-type { margin-bottom: 16px; }
.out-of-area__actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* Chip multi-select for issue types */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.chip span {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  font-size: 0.82rem;
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.chip span:hover { border-color: var(--border-strong); color: var(--text); }
.chip input:checked + span {
  border-color: rgba(34, 211, 238, 0.55);
  background: rgba(34, 211, 238, 0.13);
  color: #bff2fb;
}
.chip input:focus-visible + span { outline: 2px solid var(--cyan); outline-offset: 2px; }

/* Hour stepper */
.hours-picker {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.035);
}
.hours-picker__btn {
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: var(--surface);
  color: var(--text);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.hours-picker__btn:hover:not(:disabled) { background: var(--surface-hover); border-color: var(--border-strong); }
.hours-picker__btn:disabled { opacity: 0.3; cursor: not-allowed; }
.hours-picker__value { flex: 1; text-align: center; font-size: 1rem; font-weight: 700; }
.hours-picker__value small { display: block; font-size: 0.72rem; font-weight: 500; color: var(--text-3); margin-top: 2px; }

.total-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 20px 0 6px;
  padding: 18px 20px;
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: var(--radius);
  background: rgba(34, 211, 238, 0.06);
}
.total-box__label { font-size: 0.78rem; color: var(--text-2); line-height: 1.55; }
.total-box__label strong { display: block; color: var(--text); font-size: 0.9rem; font-weight: 700; margin-bottom: 2px; }
.total-box__value { font-size: 1.9rem; font-weight: 800; letter-spacing: -0.03em; white-space: nowrap; }

.consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.815rem;
  font-weight: 400;
  color: var(--text-2);
  line-height: 1.65;
  cursor: pointer;
  margin-bottom: 4px;
}
.consent input {
  width: 17px; height: 17px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--cyan);
  cursor: pointer;
}
.consent a { color: var(--cyan); text-decoration: underline; text-underline-offset: 2px; }

.form-note { font-size: 0.775rem; color: var(--text-3); text-align: center; line-height: 1.65; margin-top: 12px; }

.form-alert {
  display: none;
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 107, 129, 0.35);
  border-radius: var(--radius-sm);
  background: rgba(255, 107, 129, 0.08);
  font-size: 0.86rem;
  color: #ffc3cc;
}
.form-alert.is-visible { display: block; }

.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Success panel */
.form-success { text-align: center; padding: 56px 34px; }
.form-success__icon {
  width: 62px; height: 62px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: #050710;
  box-shadow: 0 0 40px -8px var(--glow-cyan);
}
.form-success__icon svg { width: 28px; height: 28px; }
.form-success h3 { font-size: 1.35rem; margin-bottom: 12px; }
.form-success p { color: var(--text-2); font-size: 0.92rem; line-height: 1.75; }

/* Loading spinner in submit button */
.spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(0, 0, 0, 0.25);
  border-top-color: #050710;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.spinner--lg {
  width: 26px; height: 26px;
  border-width: 3px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Footer ---------- */

.site-footer {
  padding: 56px 0 32px;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.012);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__about { font-size: 0.86rem; color: var(--text-2); line-height: 1.75; max-width: 380px; margin-top: 16px; }
.footer h4 {
  font-size: 0.7rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-3);
  margin-bottom: 14px;
}
.footer__links { display: grid; gap: 9px; list-style: none; }
.footer__links a { font-size: 0.87rem; color: var(--text-2); transition: color 0.2s; }
.footer__links a:hover { color: var(--cyan); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-3);
}

/* Floating WhatsApp — fixed to the viewport so it stays visible while scrolling */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #062a12;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.6);
  transition: transform 0.22s var(--ease);
}
.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  z-index: -1;
  animation: wa-pulse 2.6s ease-out infinite;
}
@keyframes wa-pulse {
  0%       { transform: scale(1);   opacity: 0.45; }
  70%, 100% { transform: scale(1.65); opacity: 0; }
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 27px; height: 27px; }

/* ---------- Reveal on scroll ---------- */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .booking-grid { grid-template-columns: 1fr; gap: 32px; }
  .booking-aside { position: static; }
  .pricing-panel { grid-template-columns: 1fr; }
  .pricing-panel__main { border-right: 0; border-bottom: 1px solid var(--border); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .coverage { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 14px 20px 20px;
    margin: 0;
    background: rgba(6, 8, 15, 0.97);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s, transform 0.22s;
  }
  .nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav a { padding: 12px 14px; font-size: 0.95rem; }
  .nav-toggle { display: flex; }
  .header__actions { margin-left: auto; }
  .header__actions .btn { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ==========================================================================
   Landing pages (coverage + per-service)
   ========================================================================== */

.landing { padding-top: var(--header-h); }
.landing__hero { padding-bottom: 24px; }
.landing__title { max-width: 900px; }
.landing__lead { max-width: 760px; margin-top: 6px; }
.landing__hero .hero__cta { margin-top: 28px; margin-bottom: 0; }

.landing__h2 {
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  margin: 44px 0 16px;
  letter-spacing: -0.015em;
}
.landing__p { max-width: 760px; margin-bottom: 18px; }

.landing__prose { max-width: 780px; margin-right: auto; }
.landing__prose p {
  color: var(--text-2);
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 18px;
}
.landing__prose .landing__h2:first-child { margin-top: 0; }

.crumbs {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-3);
  margin-bottom: 20px;
}
.crumbs a { color: var(--text-2); text-decoration: none; }
.crumbs a:hover { color: var(--cyan); }

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-bottom: 12px;
}
.coverage-card { padding: 24px 22px; }
.coverage-card__title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--cyan);
  margin-bottom: 14px;
}
.coverage-card__list { list-style: none; display: grid; gap: 8px; }
.coverage-card__list li {
  color: var(--text);
  font-size: 0.92rem;
  padding-left: 16px;
  position: relative;
}
.coverage-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.7;
}

.coverage-out {
  color: var(--text-3);
  font-size: 0.88rem;
  line-height: 2;
  max-width: 820px;
  padding: 18px 20px;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-sm);
}

/* The homepage centres its FAQ under a centred heading; here the headings are
   left-aligned to match the prose, so the list follows. */
.landing .faq { margin-left: 0; }

.landing__cta {
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}
.landing__cta .section__lead { max-width: 620px; margin-top: 14px; }
.landing__cta .hero__cta { margin-top: 26px; margin-bottom: 0; }

.form-alert--ok {
  border-color: rgba(125, 241, 168, 0.35);
  background: rgba(125, 241, 168, 0.08);
  color: #c8f8d9;
}

/* ---------- Admin dashboard (unlisted /admin) ---------- */

.admin-main { padding: 36px 0 80px; }
.admin-main .container { max-width: 860px; }

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 28px 0 18px;
}
.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-right: auto;
}
.admin-tab {
  padding: 7px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-2);
  font-size: 0.8rem;
  font-weight: 650;
  cursor: pointer;
}
.admin-tab:hover { color: var(--text); border-color: var(--border-strong); }
.admin-tab.is-active {
  border-color: rgba(34, 211, 238, 0.5);
  background: rgba(34, 211, 238, 0.12);
  color: #bff2fb;
}
.admin-tab__n {
  display: inline-block;
  min-width: 1.3em;
  margin-left: 4px;
  font-variant-numeric: tabular-nums;
  color: var(--text-3);
}
.admin-tab.is-active .admin-tab__n { color: #bff2fb; }

.admin-empty {
  padding: 42px 24px;
  text-align: center;
  color: var(--text-2);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
}
.admin-empty p { font-size: 0.92rem; }

.admin-card {
  padding: 22px 24px;
  margin-bottom: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(11, 15, 28, 0.7);
  backdrop-filter: blur(14px);
}
.admin-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 6px;
}
.admin-card__id {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-3);
}
.admin-card__biz { font-size: 1.12rem; margin: 4px 0 2px; }
.admin-card__sub { font-size: 0.86rem; color: var(--text-2); }

.admin-pill {
  flex-shrink: 0;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
}
.admin-pill--authorised { border-color: rgba(255, 201, 92, 0.45); color: var(--amber); background: rgba(255, 201, 92, 0.08); }
.admin-pill--captured, .admin-pill--completed { border-color: rgba(125, 241, 168, 0.4); color: var(--lime); background: rgba(125, 241, 168, 0.08); }
.admin-pill--released, .admin-pill--cancelled { color: var(--text-3); }
.admin-pill--failed { border-color: rgba(255, 107, 129, 0.45); color: var(--danger); background: rgba(255, 107, 129, 0.08); }

.admin-dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin: 16px 0 0;
}
.admin-dl dt {
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
}
.admin-dl dd { font-size: 0.9rem; color: var(--text); margin-top: 3px; line-height: 1.5; }
.admin-dl a { color: var(--cyan); }
.admin-dl a:hover { text-decoration: underline; text-underline-offset: 2px; }
.admin-dl__wide { grid-column: 1 / -1; }

.admin-settle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.admin-settle > div {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.admin-settle .btn { margin-top: auto; }
.admin-settle__quote {
  font-size: 0.82rem;
  color: var(--text-2);
  margin: 8px 0 12px;
}
.admin-settle__quote strong { color: var(--text); }
.admin-note {
  margin-top: 16px;
  font-size: 0.84rem;
  color: var(--text-3);
}

.admin-dialog {
  width: min(440px, calc(100% - 32px));
  margin: auto;
  padding: 28px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  color: var(--text);
  box-shadow: var(--shadow-card);
}
.admin-dialog::backdrop { background: rgba(4, 6, 12, 0.72); }
.admin-dialog h3 { font-size: 1.15rem; margin-bottom: 10px; }
.admin-dialog p { color: var(--text-2); font-size: 0.92rem; line-height: 1.7; }
.admin-dialog__actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; margin-top: 22px; }

@media (max-width: 620px) {
  .section { padding: 68px 0; }
  .container { padding: 0 18px; }
  .coverage-grid { grid-template-columns: 1fr; }
  .landing__h2 { margin-top: 34px; }
  .grid--3, .grid--4, .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-shell { padding: 24px 20px; }
  .pricing-panel__main, .pricing-panel__side { padding: 32px 24px; }
  .hero { padding: 48px 0 64px; }
  .brand__region { display: none; }
  .total-box { flex-direction: column; align-items: flex-start; gap: 10px; }
  .wa-float { right: 14px; bottom: 14px; }
  .admin-dl, .admin-settle { grid-template-columns: 1fr; }
  .admin-card { padding: 20px 16px; }
  .admin-toolbar { flex-direction: column; align-items: stretch; }
  .admin-tabs { margin-right: 0; }
}
