/* ==========================================================================
   Arad Starco Ltd — Painting & Decorating, Manchester
   Global stylesheet
   Brand colours are taken from the logo: deep navy + bright blue.
   ========================================================================== */

:root {
  /* Brand */
  --brand:        #1d6dfc;
  --brand-hover:  #4d95ff;
  --brand-soft:   rgba(29, 109, 252, 0.14);

  /* Dark surfaces */
  --bg:           #0a1628;
  --surface:      #0f2038;
  --surface-2:    #16294a;
  --line:         rgba(255, 255, 255, 0.10);

  /* Light surfaces */
  --light:        #f4f7fc;
  --light-2:      #e8eef8;

  /* Text */
  --text:         #e9eff8;
  --muted:        #9aadc9;
  --ink:          #0a1628;
  --ink-muted:    #51637f;

  /* Feedback */
  --ok:           #22c55e;
  --err:          #f87171;

  /* Shape & motion */
  --radius:       14px;
  --radius-lg:    22px;
  --shadow:       0 18px 45px rgba(0, 0, 0, 0.35);
  --shadow-light: 0 14px 34px rgba(10, 22, 40, 0.10);
  --ease:         cubic-bezier(0.22, 1, 0.36, 1);

  /* Layout */
  --header-h:     76px;
  --gutter:       20px;
}

/* --------------------------------------------------------- Reset / base */

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

html {
  scroll-behavior: smooth;
  /* Stop sticky header covering anchored sections */
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }

a { color: var(--brand-hover); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: 'Outfit', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 1.1em; padding-left: 1.3em; }
li { margin-bottom: 0.45em; }

:focus-visible {
  outline: 3px solid var(--brand-hover);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Screen-reader-only text (used for accessible labels) */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--brand);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------- Layout */

.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow { max-width: 820px; }

.section { padding: clamp(60px, 8vw, 110px) 0; }
.section--tight { padding: clamp(44px, 5vw, 68px) 0; }

/* Light band on an otherwise dark page */
.section--light {
  background: var(--light);
  color: var(--ink);
}
.section--light h1,
.section--light h2,
.section--light h3 { color: var(--ink); }
.section--light a { color: var(--brand); }

.section--surface { background: var(--surface); }

.section-head {
  max-width: 720px;
  margin-bottom: clamp(32px, 4vw, 54px);
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-hover);
  margin-bottom: 14px;
}
.section--light .eyebrow { color: var(--brand); }

.lead {
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: var(--muted);
}
.section--light .lead { color: var(--ink-muted); }

/* Generic responsive grid */
.grid { display: grid; gap: 22px; }
@media (min-width: 640px)  { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 640px)  { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

/* -------------------------------------------------------------- Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border: 1px solid transparent;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 19px; height: 19px; flex: none; }

.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 26px rgba(29, 109, 252, 0.35);
}
.btn--primary:hover { background: var(--brand-hover); }

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--text);
}
.btn--ghost:hover { border-color: var(--brand-hover); background: rgba(255, 255, 255, 0.05); }

.section--light .btn--ghost {
  border-color: rgba(10, 22, 40, 0.22);
  color: var(--ink);
}
.section--light .btn--ghost:hover { border-color: var(--brand); background: #fff; }

.btn--whatsapp { background: #25d366; color: #05270f; }
.btn--whatsapp:hover { background: #3ee57c; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.btn-row--center { justify-content: center; }

/* ---------------------------------------------------------------- Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(10, 22, 40, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35); }

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex: none;
}
.brand:hover { text-decoration: none; }
.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 3px;
}
.brand__name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.06rem;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.brand__tag {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--brand-hover);
}

/* Desktop navigation */
.nav {
  display: none;
  align-items: center;
  gap: 4px;
}
.nav a {
  padding: 9px 14px;
  border-radius: 9px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.18s, background 0.18s;
}
.nav a:hover { color: #fff; background: rgba(255, 255, 255, 0.07); text-decoration: none; }
.nav a.is-active { color: #fff; background: var(--brand-soft); }

.header-cta { display: none; }

@media (min-width: 1000px) {
  .nav { display: flex; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none !important; }
}

/* Hamburger */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0 11px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 99;
  background: var(--bg);
  padding: 26px var(--gutter) 40px;
  overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.32s var(--ease), visibility 0.32s;
}
.mobile-nav.is-open { transform: translateX(0); visibility: visible; }
.mobile-nav a {
  display: block;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 1.22rem;
  font-weight: 600;
}
.mobile-nav a:hover { text-decoration: none; color: var(--brand-hover); }
.mobile-nav a.is-active { color: var(--brand-hover); }
.mobile-nav .btn-row { margin-top: 28px; flex-direction: column; align-items: stretch; }

body.nav-open { overflow: hidden; }

/* ------------------------------------------------------------------ Hero */

.hero {
  position: relative;
  padding: clamp(64px, 9vw, 120px) 0 clamp(56px, 7vw, 96px);
  background:
    radial-gradient(900px 480px at 78% -8%, rgba(29, 109, 252, 0.30), transparent 62%),
    radial-gradient(700px 420px at 4% 108%, rgba(29, 109, 252, 0.14), transparent 60%),
    var(--bg);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  gap: clamp(34px, 5vw, 60px);
  align-items: center;
}
@media (min-width: 950px) {
  .hero__inner { grid-template-columns: 1.08fr 0.92fr; }
}

.hero h1 { margin-bottom: 20px; }
.hero h1 .accent {
  background: linear-gradient(120deg, var(--brand-hover), #9cc3ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  font-size: clamp(1.05rem, 1.9vw, 1.24rem);
  color: var(--muted);
  max-width: 56ch;
  margin-bottom: 30px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 17px 8px 12px;
  margin-bottom: 24px;
  background: var(--brand-soft);
  border: 1px solid rgba(29, 109, 252, 0.35);
  border-radius: 100px;
  font-size: 0.86rem;
  font-weight: 500;
  color: #cfe0ff;
}
.badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.22);
}

/* Small proof points under the hero buttons */
.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  list-style: none;
  padding-left: 0;
}
.hero__points li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}
.hero__points svg { width: 17px; height: 17px; color: var(--brand-hover); flex: none; }

/* ------------------------------------------- Hero with video background */

.hero--video {
  position: relative;
  isolation: isolate;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: center;
  background: var(--bg);
}

.hero--video .hero__inner {
  grid-template-columns: 1fr;   /* single column — text sits over the video */
  max-width: 760px;
}

/* The video itself, filling the section */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero__bg video,
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Only one clip is visible at a time; the others wait, faded out */
.hero__bg video {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.hero__bg video.is-active { opacity: 1; }

/* Dark wash so white text stays readable whatever the footage shows */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(8, 18, 34, 0.94) 0%, rgba(8, 18, 34, 0.86) 42%, rgba(8, 18, 34, 0.58) 100%),
    linear-gradient(to top, rgba(8, 18, 34, 0.85), transparent 45%);
}
@media (max-width: 860px) {
  /* Narrow screens: text covers more of the frame, so darken further */
  .hero__scrim {
    background:
      linear-gradient(rgba(8, 18, 34, 0.86), rgba(8, 18, 34, 0.90)),
      linear-gradient(to top, rgba(8, 18, 34, 0.9), transparent 55%);
  }
}

/* Small dots showing which clip is playing */
.hero__dots {
  display: flex;
  gap: 8px;
  margin-top: 30px;
  padding: 0;
  list-style: none;
}
.hero__dots button {
  width: 30px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: background 0.3s;
}
.hero__dots button.is-active { background: var(--brand-hover); }

/* Hero visual card */
.hero__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3.4;
  display: grid;
  place-items: center;
  padding: 30px;
  text-align: center;
}
.hero__visual img { width: min(78%, 340px); }
.hero__visual .placeholder-note {
  margin-top: 18px;
  font-size: 0.8rem;
  color: var(--muted);
}

/* ----------------------------------------------------------- Trust strip */

.trust {
  background: var(--surface);
  border-block: 1px solid var(--line);
  padding: 26px 0;
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 18px;
  text-align: center;
}
@media (min-width: 860px) { .trust__grid { grid-template-columns: repeat(4, 1fr); } }

.trust__item strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 2px;
}
.trust__item span { font-size: 0.86rem; color: var(--muted); }

/* ------------------------------------------------------------------ Card */

.card {
  padding: 30px 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.28s var(--ease), border-color 0.28s, box-shadow 0.28s;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(29, 109, 252, 0.45);
  box-shadow: var(--shadow);
}
.card h3 { margin-bottom: 10px; color: #fff; }
.card p { color: var(--muted); font-size: 0.97rem; margin-bottom: 0; }

.card__icon {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  margin-bottom: 18px;
  background: var(--brand-soft);
  border-radius: 14px;
  color: var(--brand-hover);
}
.card__icon svg { width: 25px; height: 25px; }

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--brand-hover);
}
.card__link svg { width: 15px; height: 15px; transition: transform 0.2s var(--ease); }
.card:hover .card__link svg { transform: translateX(4px); }

/* Light variant */
.section--light .card {
  background: #fff;
  border-color: rgba(10, 22, 40, 0.09);
  box-shadow: var(--shadow-light);
}
.section--light .card h3 { color: var(--ink); }
.section--light .card p { color: var(--ink-muted); }
.section--light .card__icon { color: var(--brand); }
.section--light .card__link { color: var(--brand); }

/* Featured card (kitchen spraying) */
.card--featured {
  background: linear-gradient(155deg, rgba(29, 109, 252, 0.20), var(--surface) 62%);
  border-color: rgba(29, 109, 252, 0.42);
}
.card__flag {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 14px;
  background: var(--brand);
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

/* --------------------------------------------------------------- Process */

.steps {
  display: grid;
  gap: 24px;
  counter-reset: step;
}
@media (min-width: 800px) { .steps { grid-template-columns: repeat(2, 1fr); } }

.step {
  position: relative;
  padding: 28px 26px 28px 78px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 26px; top: 26px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-hover);
  opacity: 0.85;
}
.step h3 { margin-bottom: 8px; color: #fff; font-size: 1.12rem; }
.step p { margin-bottom: 0; color: var(--muted); font-size: 0.96rem; }

.section--light .step { background: #fff; border-color: rgba(10, 22, 40, 0.09); box-shadow: var(--shadow-light); }
.section--light .step h3 { color: var(--ink); }
.section--light .step p { color: var(--ink-muted); }
.section--light .step::before { color: var(--brand); }

/* ------------------------------------------------------------------- FAQ */

.faq { max-width: 860px; margin-inline: auto; }

.faq__item {
  border-bottom: 1px solid var(--line);
}
.section--light .faq__item { border-color: rgba(10, 22, 40, 0.12); }

.faq__q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  background: none;
  border: 0;
  color: inherit;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.faq__q:hover { color: var(--brand-hover); }
.section--light .faq__q:hover { color: var(--brand); }

.faq__icon {
  flex: none;
  width: 26px; height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform 0.28s var(--ease), background 0.2s, border-color 0.2s;
}
.section--light .faq__icon { border-color: rgba(10, 22, 40, 0.18); }
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  width: 11px; height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.faq__icon::after { transform: rotate(90deg); transition: transform 0.28s var(--ease); }
.faq__q[aria-expanded="true"] .faq__icon {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.faq__q[aria-expanded="true"] .faq__icon::after { transform: rotate(0deg); }

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.34s var(--ease);
}
.faq__a > div { overflow: hidden; }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a p {
  padding: 0 0 22px;
  max-width: 72ch;
  color: var(--muted);
  font-size: 0.99rem;
}
.section--light .faq__a p { color: var(--ink-muted); }

/* --------------------------------------------------------------- Gallery */

.gallery {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.gallery__item {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  cursor: pointer;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 26px 18px 14px;
  background: linear-gradient(transparent, rgba(5, 12, 24, 0.92));
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
}

/* Shown when a photo file is missing so the layout still reads correctly */
.gallery__placeholder {
  display: grid;
  place-content: center;
  gap: 8px;
  height: 100%;
  padding: 20px;
  text-align: center;
  color: var(--muted);
  font-size: 0.86rem;
}
.gallery__placeholder svg { width: 32px; height: 32px; margin-inline: auto; opacity: 0.55; }

/* ---------------------------------------------------- Before / after */

.ba-grid {
  display: grid;
  gap: 28px;
}
@media (min-width: 1000px) { .ba-grid--2 { grid-template-columns: repeat(2, 1fr); } }

.ba-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.28s var(--ease), border-color 0.28s;
}
.ba-item:hover { transform: translateY(-4px); border-color: rgba(29, 109, 252, 0.45); }

.section--light .ba-item {
  background: #fff;
  border-color: rgba(10, 22, 40, 0.09);
  box-shadow: var(--shadow-light);
}

/* The two photos sit side by side with a hairline between them */
.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--line);
}
.ba-pair figure { margin: 0; position: relative; background: var(--surface-2); overflow: hidden; }
.ba-pair img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform 0.5s var(--ease);
}
.ba-pair figure:hover img { transform: scale(1.04); }

.ba-body { padding: 20px 22px 24px; }
.ba-body h3 { margin-bottom: 6px; font-size: 1.1rem; color: #fff; }
.section--light .ba-body h3 { color: var(--ink); }
.ba-body p { margin: 0; font-size: .93rem; color: var(--muted); }
.section--light .ba-body p { color: var(--ink-muted); }

.ba-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 11px;
  background: var(--brand-soft);
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand-hover);
}
.section--light .ba-tag { color: var(--brand); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(4, 9, 18, 0.93);
  backdrop-filter: blur(6px);
}
.lightbox.is-open { display: grid; }
.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  border-radius: var(--radius);
  object-fit: contain;
}
.lightbox__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.22); }

/* ------------------------------------------------------------------ Form */

.form-wrap {
  padding: clamp(26px, 4vw, 40px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.section--light .form-wrap {
  background: #fff;
  border-color: rgba(10, 22, 40, 0.09);
  box-shadow: var(--shadow-light);
}

.field { margin-bottom: 18px; }
.field label {
  display: block;
  margin-bottom: 7px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
}
.field .req { color: var(--brand-hover); }
.section--light .field .req { color: var(--brand); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.section--light .field input,
.section--light .field select,
.section--light .field textarea {
  background: var(--light);
  border-color: rgba(10, 22, 40, 0.14);
  color: var(--ink);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-soft);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--muted); opacity: 0.75; }

.field--error input,
.field--error select,
.field--error textarea { border-color: var(--err); }

.field__error {
  display: none;
  margin-top: 6px;
  font-size: 0.84rem;
  color: var(--err);
}
.field--error .field__error { display: block; }

@media (min-width: 620px) {
  .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
}

.form-note {
  margin-top: 16px;
  font-size: 0.84rem;
  color: var(--muted);
}
.section--light .form-note { color: var(--ink-muted); }

.form-status {
  display: none;
  padding: 14px 18px;
  margin-bottom: 20px;
  border-radius: 11px;
  font-size: 0.94rem;
}
.form-status.is-ok  { display: block; background: rgba(34, 197, 94, 0.14); border: 1px solid rgba(34, 197, 94, 0.4); color: #86efac; }
.form-status.is-err { display: block; background: rgba(248, 113, 113, 0.12); border: 1px solid rgba(248, 113, 113, 0.4); color: #fca5a5; }
.section--light .form-status.is-ok  { color: #15803d; }
.section--light .form-status.is-err { color: #b91c1c; }

/* Honeypot — hidden from people, visible to bots */
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; }

/* -------------------------------------------------------- Contact blocks */

.contact-grid { display: grid; gap: 30px; align-items: start; }
@media (min-width: 950px) { .contact-grid { grid-template-columns: 1fr 0.85fr; gap: 46px; } }

.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li {
  display: flex;
  gap: 15px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  margin: 0;
}
.section--light .info-list li { border-color: rgba(10, 22, 40, 0.11); }
.info-list li:last-child { border-bottom: 0; }
.info-list svg { width: 21px; height: 21px; flex: none; margin-top: 4px; color: var(--brand-hover); }
.section--light .info-list svg { color: var(--brand); }
.info-list strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  margin-bottom: 2px;
}
.info-list span, .info-list a { font-size: 0.97rem; color: var(--muted); }
.section--light .info-list span,
.section--light .info-list a { color: var(--ink-muted); }
.info-list a:hover { color: var(--brand-hover); }

.hours { list-style: none; padding: 0; margin: 0; }
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.95rem;
  margin: 0;
}
.section--light .hours li { border-color: rgba(10, 22, 40, 0.14); }
.hours li:last-child { border-bottom: 0; }
.hours span:last-child { color: var(--muted); }
.section--light .hours span:last-child { color: var(--ink-muted); }

/* ---------------------------------------------------------- Page banners */

.page-banner {
  padding: clamp(52px, 7vw, 92px) 0 clamp(40px, 5vw, 64px);
  background:
    radial-gradient(760px 380px at 82% -18%, rgba(29, 109, 252, 0.28), transparent 62%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.page-banner p { max-width: 62ch; color: var(--muted); margin-bottom: 0; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  padding: 0;
  list-style: none;
  font-size: 0.85rem;
  color: var(--muted);
}
.breadcrumb li { margin: 0; }
.breadcrumb li + li::before { content: '/'; margin-right: 8px; opacity: 0.5; }

/* -------------------------------------------------------------- Area tags */

.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  list-style: none;
}
.areas li {
  margin: 0;
  padding: 9px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.9rem;
  color: var(--muted);
}
.section--light .areas li {
  background: #fff;
  border-color: rgba(10, 22, 40, 0.1);
  color: var(--ink-muted);
}

/* ------------------------------------------------------------------- CTA */

.cta {
  position: relative;
  padding: clamp(46px, 6vw, 76px) clamp(26px, 5vw, 62px);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #123a8f, var(--brand));
  text-align: center;
  overflow: hidden;
}
.cta::after {
  content: '';
  position: absolute;
  inset: auto -10% -60% auto;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.20), transparent 68%);
}
.cta > * { position: relative; z-index: 1; }
.cta h2 { color: #fff; }
.cta p { max-width: 54ch; margin-inline: auto; color: rgba(255, 255, 255, 0.86); }
.cta .btn--primary { background: #fff; color: var(--brand); box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22); }
.cta .btn--primary:hover { background: #e8f0ff; }
.cta .btn--ghost { border-color: rgba(255, 255, 255, 0.55); color: #fff; }
.cta .btn--ghost:hover { background: rgba(255, 255, 255, 0.14); }

/* ---------------------------------------------------------------- Footer */

.site-footer {
  padding: clamp(50px, 6vw, 76px) 0 0;
  background: #071021;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  gap: 36px;
  padding-bottom: 46px;
}
@media (min-width: 720px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 44px; } }

.site-footer h4 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 18px;
}
.site-footer p,
.site-footer li,
.site-footer a { font-size: 0.93rem; color: var(--muted); }
.site-footer a:hover { color: var(--brand-hover); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 11px; }

.footer-brand img {
  width: 116px;
  background: #fff;
  border-radius: 12px;
  padding: 9px;
  margin-bottom: 18px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 0 28px;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}
.footer-bottom p { margin: 0; font-size: 0.85rem; }

/* Extra bottom space on mobile so the sticky call bar never covers content */
@media (max-width: 767px) {
  .footer-bottom { padding-bottom: 92px; }
}

/* --------------------------------------------- Floating / sticky actions */

/* Desktop: floating WhatsApp bubble */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.42);
  transition: transform 0.22s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; color: #fff; }
@media (min-width: 768px) { .wa-float { display: flex; } }

/* Mobile: fixed call + WhatsApp bar */
.mobile-bar {
  position: fixed;
  inset: auto 0 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}
.mobile-bar .btn { padding: 13px 10px; font-size: 0.95rem; }
@media (min-width: 768px) { .mobile-bar { display: none; } }

/* ------------------------------------------------------- Scroll reveal */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

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