/* ============================================================
   Neringos valymo paslaugos — stylesheet
   ============================================================ */

:root {
  --bg:        #050a18;
  --bg-2:      #081229;
  --bg-3:      #0b1a3a;
  --panel:     rgba(255, 255, 255, 0.035);
  --panel-brd: rgba(120, 170, 255, 0.16);

  --blue:        #1f7bff;
  --blue-bright: #3d9bff;
  --cyan:        #5cc8ff;
  --gold:        #f5c542;

  --text:      #eaf1ff;
  --text-dim:  #9fb3d6;
  --text-mut:  #6f84a8;

  --radius:    16px;
  --radius-sm: 11px;
  --maxw:      1180px;
  --shadow:    0 24px 60px -28px rgba(0, 0, 0, 0.85);
  --ease:      cubic-bezier(.22, 1, .36, 1);

  --chrome: linear-gradient(180deg, #ffffff 0%, #dcebff 28%, #8fb4e8 52%, #f2f8ff 66%, #a9c4ec 100%);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-wrap: break-word; /* long tokens (email, codes, URLs) never force overflow */
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 13px; --pad-x: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: var(--pad-y) var(--pad-x);
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn svg { transition: transform 0.25s var(--ease); }
.btn-sm  { --pad-y: 10px; --pad-x: 18px; font-size: 0.88rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  color: #fff;
  box-shadow: 0 12px 26px -10px rgba(31, 123, 255, 0.7);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -10px rgba(31, 123, 255, 0.85); }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--panel-brd);
  color: var(--text);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--blue-bright); background: rgba(61, 155, 255, 0.12); }

.btn-phone {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  color: #fff;
  box-shadow: 0 10px 24px -12px rgba(31, 123, 255, 0.8);
  padding: 11px 20px;
}
.btn-phone:hover { transform: translateY(-2px); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 10, 24, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(120, 170, 255, 0.08);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(5, 10, 24, 0.94);
  border-bottom-color: rgba(120, 170, 255, 0.16);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(150deg, rgba(61, 155, 255, 0.18), rgba(11, 26, 58, 0.4));
  border: 1px solid var(--panel-brd);
  filter: drop-shadow(0 4px 10px rgba(31, 123, 255, 0.3));
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 1.15rem;
  letter-spacing: 0.3px;
  background: var(--chrome);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-text small {
  font-size: 0.62rem;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 600;
}

.main-nav { display: flex; gap: 6px; margin-left: auto; }
.main-nav a {
  position: relative;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-dim);
  border-radius: 8px;
  transition: color 0.2s var(--ease);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.main-nav a:hover, .main-nav a.active { color: #fff; }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }

.header-inner .btn-phone { margin-left: 4px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--panel-brd);
  border-radius: 10px;
  cursor: pointer;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.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); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: 86px 0 56px;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% -10%, #123a6e 0%, transparent 60%),
    linear-gradient(180deg, #071026 0%, #050a18 100%);
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.burst {
  position: absolute;
  top: -10%; left: 50%;
  width: 1100px; height: 1100px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at center, rgba(61, 155, 255, 0.55) 0%, rgba(31, 123, 255, 0.22) 22%, transparent 55%);
  filter: blur(10px);
  opacity: 0.9;
}
.rays {
  position: absolute;
  top: -260px; left: 50%;
  width: 1400px; height: 1000px;
  transform: translateX(-50%);
  background:
    conic-gradient(from 180deg at 50% 35%,
      transparent 0deg, rgba(120, 190, 255, 0.10) 6deg, transparent 14deg,
      transparent 28deg, rgba(120, 190, 255, 0.08) 36deg, transparent 46deg,
      transparent 64deg, rgba(120, 190, 255, 0.12) 72deg, transparent 82deg,
      transparent 110deg, rgba(120, 190, 255, 0.08) 120deg, transparent 130deg,
      transparent 230deg, rgba(120, 190, 255, 0.10) 240deg, transparent 250deg,
      transparent 290deg, rgba(120, 190, 255, 0.09) 300deg, transparent 312deg);
  mask-image: radial-gradient(circle at 50% 35%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 50% 35%, #000 0%, transparent 70%);
}
.sparkles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 18% 30%, rgba(255,255,255,.9), transparent),
    radial-gradient(2px 2px at 82% 22%, rgba(180,220,255,.9), transparent),
    radial-gradient(1.5px 1.5px at 65% 42%, rgba(255,255,255,.8), transparent),
    radial-gradient(1.5px 1.5px at 33% 52%, rgba(180,220,255,.75), transparent),
    radial-gradient(2px 2px at 50% 16%, rgba(255,255,255,.85), transparent),
    radial-gradient(1.5px 1.5px at 12% 60%, rgba(200,230,255,.7), transparent),
    radial-gradient(1.5px 1.5px at 90% 55%, rgba(255,255,255,.7), transparent),
    radial-gradient(2px 2px at 73% 64%, rgba(180,220,255,.7), transparent);
  animation: twinkle 4s ease-in-out infinite alternate;
}
@keyframes twinkle { from { opacity: 0.5; } to { opacity: 1; } }

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
  min-height: 380px;
}

.hero-brand { text-align: center; }
.wordmark {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(3.4rem, 9vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: -1px;
  background: var(--chrome);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 6px 14px rgba(31, 123, 255, 0.45));
  text-shadow: 0 1px 0 rgba(255,255,255,0.2);
}
.wordmark-sub {
  margin-top: 6px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 2.6vw, 1.7rem);
  letter-spacing: clamp(4px, 1.4vw, 12px);
  text-transform: uppercase;
  color: #cfe2ff;
}
.hero-phone {
  display: inline-block;
  margin-top: 22px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 4.4vw, 2.7rem);
  letter-spacing: 1px;
  background: var(--chrome);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 12px rgba(92, 200, 255, 0.4));
  transition: transform 0.25s var(--ease);
}
.hero-phone:hover { transform: scale(1.03); }

.hero-copy { padding-left: 12px; }
.hero-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}
.hero-lead {
  color: var(--text-dim);
  font-size: 1.06rem;
  max-width: 460px;
  margin-bottom: 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Trust bar */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
  padding: 22px;
  list-style: none;
  background: var(--panel);
  border: 1px solid var(--panel-brd);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}
.trust-bar li { display: flex; align-items: center; gap: 13px; }
.trust-ico {
  flex: none;
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  color: var(--cyan);
  background: rgba(61, 155, 255, 0.12);
  border: 1px solid rgba(92, 200, 255, 0.22);
}
.trust-bar strong { display: block; font-size: 0.92rem; font-weight: 700; }
.trust-bar span span, .trust-bar div span { color: var(--text-mut); font-size: 0.78rem; }
.trust-bar div { line-height: 1.35; }

/* ============================================================
   Sections (shared)
   ============================================================ */
.section { padding: 92px 0; position: relative; }
.section-alt {
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(31, 123, 255, 0.07), transparent 50%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  border-top: 1px solid rgba(120, 170, 255, 0.06);
  border-bottom: 1px solid rgba(120, 170, 255, 0.06);
}

.eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}
.section-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.5px;
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.section-sub { color: var(--text-dim); font-size: 1.05rem; margin-top: 16px; }

/* ---------- About ---------- */
.about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.about-copy p { color: var(--text-dim); margin: 16px 0; font-size: 1.05rem; }
.about-copy .lead-intro { color: var(--text); font-size: 1.12rem; }
.about-copy strong { color: var(--text); }
.about-copy .btn { margin-top: 14px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card {
  background: var(--panel);
  border: 1px solid var(--panel-brd);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.stat-card:hover { transform: translateY(-4px); border-color: var(--blue-bright); }
.stat-num {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.85rem;
  line-height: 1.1;
  background: var(--chrome);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label { display: block; margin-top: 8px; color: var(--text-mut); font-size: 0.85rem; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--panel);
  border: 1px solid var(--panel-brd);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.32s var(--ease), border-color 0.32s var(--ease), box-shadow 0.32s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 0% 0%, rgba(61, 155, 255, 0.10), transparent 55%);
  opacity: 0;
  transition: opacity 0.32s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(92, 200, 255, 0.4);
  box-shadow: var(--shadow);
}
.service-card:hover::before { opacity: 1; }
.service-ico {
  position: relative;
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  margin-bottom: 18px;
  border-radius: 14px;
  color: var(--cyan);
  background: linear-gradient(150deg, rgba(61, 155, 255, 0.2), rgba(11, 26, 58, 0.3));
  border: 1px solid rgba(92, 200, 255, 0.25);
}
.service-card h3 {
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  line-height: 1.25;
  margin-bottom: 9px;
}
.service-card p { position: relative; color: var(--text-dim); font-size: 0.94rem; }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--panel-brd);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.price-card:hover { transform: translateY(-5px); border-color: var(--blue-bright); }
.price-card h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  margin-bottom: 14px;
  min-height: 2.6em;
  display: flex;
  align-items: flex-end;
}
.price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 14px; }
.price .from { color: var(--text-mut); font-size: 0.82rem; font-weight: 600; }
.price .amount {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  background: var(--chrome);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price .amount--text { font-size: 1.45rem; }
.price .unit { color: var(--text-dim); font-weight: 600; }
.price-card p { color: var(--text-dim); font-size: 0.92rem; flex: 1; margin-bottom: 20px; }
.price-card .btn { align-self: flex-start; }

.price-card--featured {
  border-color: rgba(92, 200, 255, 0.5);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(31, 123, 255, 0.18), transparent 60%),
    var(--panel);
  box-shadow: 0 20px 50px -24px rgba(31, 123, 255, 0.6);
}
.price-card--featured .badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  padding: 5px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 8px 18px -8px rgba(31, 123, 255, 0.9);
}

/* ---------- Contact ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info .section-title, .contact-info .section-sub { text-align: left; }
.contact-info .section-sub { margin-left: 0; max-width: 440px; }
.contact-list { list-style: none; margin-top: 30px; display: grid; gap: 16px; }
.contact-list li { display: flex; align-items: center; gap: 15px; }
.contact-ico {
  flex: none;
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  color: var(--cyan);
  background: rgba(61, 155, 255, 0.12);
  border: 1px solid rgba(92, 200, 255, 0.22);
}
.contact-label { display: block; font-size: 0.74rem; letter-spacing: 1px; text-transform: uppercase; color: var(--text-mut); }
.contact-list a, .contact-list div > span:last-child { font-weight: 600; font-size: 1.02rem; }
.contact-list a:hover { color: var(--cyan); }

.contact-form {
  background: var(--panel);
  border: 1px solid var(--panel-brd);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(8px);
}
.contact-form h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 22px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 7px;
}
.field input, .field textarea {
  width: 100%;
  padding: 12px 15px;
  background: rgba(5, 10, 24, 0.6);
  border: 1px solid var(--panel-brd);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 0.96rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-mut); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 3px rgba(61, 155, 255, 0.18);
}
.field textarea { resize: vertical; min-height: 96px; }
.form-note {
  margin-top: 14px;
  padding: 12px 15px;
  border-radius: var(--radius-sm);
  background: rgba(61, 155, 255, 0.12);
  border: 1px solid rgba(92, 200, 255, 0.3);
  color: var(--cyan);
  font-size: 0.9rem;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid rgba(120, 170, 255, 0.1);
  padding-top: 44px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 32px;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(120, 170, 255, 0.08);
}
.footer-brand { display: flex; align-items: center; gap: 11px; }
.footer-brand .brand-mark {
  background: linear-gradient(150deg, rgba(61, 155, 255, 0.18), rgba(11, 26, 58, 0.4));
}
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 14px; }
.footer-nav a { color: var(--text-dim); font-size: 0.9rem; font-weight: 600; white-space: nowrap; padding: 10px 8px; transition: color 0.2s; }
.footer-nav a:hover { color: var(--cyan); }
.footer-contact { display: flex; flex-direction: column; gap: 4px; text-align: right; }
.footer-contact a { font-weight: 600; transition: color 0.2s; }
.footer-contact a:hover { color: var(--cyan); }
.footer-contact span { color: var(--text-mut); font-size: 0.88rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px 24px;
  color: var(--text-mut);
  font-size: 0.84rem;
}

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.services-grid .reveal.in,
.pricing-grid .reveal.in,
.about-stats .reveal.in { transition-delay: var(--d, 0s); }

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

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 940px) {
  .main-nav, .header-inner > .btn-phone { display: none; }
  .nav-toggle { display: flex; }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    gap: 4px;
    padding: 16px 24px 24px;
    background: #060b1a;
    box-shadow: 0 24px 40px -16px rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid var(--panel-brd);
  }
  .main-nav.open a { padding: 13px 12px; font-size: 0.95rem; }
  .main-nav.open a::after { display: none; }

  .hero-inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero-copy { padding-left: 0; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }

  .trust-bar { grid-template-columns: 1fr 1fr; gap: 18px; }

  .about { grid-template-columns: 1fr; gap: 36px; }
  .services-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .contact { grid-template-columns: 1fr; gap: 36px; }

  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 22px; }
  .footer-brand { justify-content: center; }
  .footer-contact { text-align: center; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .section { padding: 64px 0; }
  .hero { padding: 56px 0 44px; }
  .trust-bar { grid-template-columns: 1fr; }
  .services-grid, .pricing-grid, .about-stats { grid-template-columns: 1fr; }
  .price-card h3 { min-height: 0; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ============================================================
   Accessibility — skip link, keyboard focus, forced-colors
   ============================================================ */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  color: #fff;
  font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

:where(a, button, input, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 6px;
}
.brand:focus-visible,
.hero-phone:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
  border-radius: 10px;
}

/* Gradient/clip-text content vanishes in Windows High-Contrast — restore it */
@media (forced-colors: active) {
  .wordmark,
  .hero-phone,
  .brand-text strong,
  .stat-num,
  .price .amount {
    -webkit-text-fill-color: CanvasText;
    color: CanvasText;
    background: none;
    filter: none;
  }
  :where(a, button, input, textarea, summary):focus-visible { outline: 3px solid Highlight; }
}

/* Sparkles: settle after the intro instead of compositing forever */
.sparkles { animation: twinkle 4s ease-in-out 3 alternate forwards; }

/* ============================================================
   Served areas, company sub-line
   ============================================================ */
.served-areas { color: var(--text-dim); font-size: 1rem; }
.served-areas strong { color: var(--text); }
.contact-sub { display: block; color: var(--text-mut); font-size: 0.85rem; }

/* Let flex/grid children shrink below content width on narrow screens,
   and let long tokens (email, codes) break so they never overflow. */
.contact-info, .contact-form, .contact-list li > div { min-width: 0; }
.contact-list a, .contact-sub, .footer-contact a, .footer-contact span { overflow-wrap: anywhere; }

/* ============================================================
   FAQ (D.U.K.)
   ============================================================ */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--panel);
  border: 1px solid var(--panel-brd);
  border-radius: var(--radius-sm);
  padding: 4px 22px;
  transition: border-color 0.25s var(--ease);
}
.faq-item[open] { border-color: rgba(92, 200, 255, 0.4); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 30px 16px 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.04rem;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 2px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cyan);
  transition: transform 0.25s var(--ease);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { color: var(--text-dim); padding: 0 0 18px; font-size: 0.98rem; }
.faq-item a { color: var(--cyan); text-decoration: underline; }

/* ============================================================
   Form — consent, honeypot, privacy note
   ============================================================ */
.field-consent .consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--text-dim);
  cursor: pointer;
}
.field-consent .consent input { margin-top: 0.2rem; flex: 0 0 auto; width: 17px; height: 17px; accent-color: var(--blue-bright); }
.field-consent a, .form-privacy a { color: var(--cyan); text-decoration: underline; }
.form-privacy { margin-top: 0.7rem; font-size: 0.78rem; color: var(--text-mut); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* ============================================================
   Legal pages (privacy policy)
   ============================================================ */
.legal h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 30px 0 8px;
}
.legal p { color: var(--text-dim); margin-bottom: 10px; }
.legal a { color: var(--cyan); text-decoration: underline; }
.legal strong { color: var(--text); }
.legal { max-width: 800px; }
.legal h1 { margin-bottom: 18px; }
.legal-meta { color: var(--text-mut); }
.legal-back { margin-left: auto; }
.legal-back-wrap { margin-top: 32px; }

/* Error (404) page */
.error-page { min-height: 72vh; display: grid; place-items: center; text-align: center; }
.error-cta { margin-top: 26px; }

/* Service-area coverage callout (replaces external map — keeps the site 100% first-party) */
.coverage {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 26px;
  padding: 20px 22px;
  background: var(--panel);
  border: 1px solid var(--panel-brd);
  border-radius: var(--radius-sm);
}
.coverage-ico {
  flex: none;
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  color: var(--cyan);
  background: rgba(61, 155, 255, 0.12);
  border: 1px solid rgba(92, 200, 255, 0.22);
}
.coverage div { min-width: 0; }
.coverage strong { display: block; font-size: 0.95rem; }
.coverage p { color: var(--text-dim); font-size: 0.9rem; margin-top: 2px; }

/* Robustness: let trust-bar text shrink like the contact list */
.trust-bar li > div { min-width: 0; }

/* ---------- Responsive edge cases ---------- */
@media (max-width: 360px) {
  .wordmark { font-size: clamp(2.6rem, 12vw, 3.4rem); }
}
@media (max-height: 560px) and (orientation: landscape) {
  .hero { padding: 40px 0 32px; }
  .hero-inner { min-height: 0; gap: 24px; }
}

/* ---------- Print ---------- */
@media print {
  body { background: #fff; color: #111; }
  .site-header, .nav-toggle, .hero-bg, .skip-link, .coverage, .contact-form, .footer-nav { display: none !important; }
  .wordmark, .hero-phone, .brand-text strong, .stat-num, .price .amount, .section-title {
    -webkit-text-fill-color: #111; color: #111; background: none; filter: none;
  }
  a { color: #111; text-decoration: underline; }
  .section, .hero { padding: 12px 0; }
  .service-card, .price-card, .stat-card, .faq-item { border-color: #ccc; background: none; box-shadow: none; }
}
