/* ==========================================================================
   Gateway Pro Cleaning Services — Design System
   Brand: purple #8A0BE0 / cyan #4FC3F7
   ========================================================================== */

:root {
  --purple: #8A0BE0;
  --purple-dark: #6606A8;
  --purple-deep: #4A0578;
  --purple-soft: #F4E9FE;
  --cyan: #4FC3F7;
  --cyan-dark: #1CA6E0;
  --cyan-soft: #E6F6FE;

  --ink: #15121C;
  --ink-2: #3A3448;
  --muted: #625B72;
  --line: #E7E2EF;
  --bg: #FFFFFF;
  --bg-soft: #FAF7FE;
  --bg-tint: #F4F0FA;

  --ok: #16A34A;
  --star: #FFB400;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(21, 18, 28, .06), 0 2px 6px rgba(21, 18, 28, .05);
  --shadow: 0 4px 10px rgba(21, 18, 28, .06), 0 14px 34px rgba(21, 18, 28, .08);
  --shadow-lg: 0 10px 24px rgba(74, 5, 120, .10), 0 28px 60px rgba(74, 5, 120, .14);

  --wrap: 1180px;
  --gutter: 20px;

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --grad: linear-gradient(120deg, var(--purple) 0%, #A93BF0 45%, var(--cyan) 100%);
  --grad-deep: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple) 55%, #B24BF2 100%);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: underline; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.18; margin: 0 0 .55em; font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: clamp(2.05rem, 1.35rem + 2.6vw, 3.35rem); }
h2 { font-size: clamp(1.65rem, 1.2rem + 1.7vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 1.02rem + .5vw, 1.4rem); }
h4 { font-size: 1.03rem; }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }
li { margin-bottom: .35em; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }
:focus-visible { outline: 3px solid var(--cyan-dark); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--purple); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 820px; }
.section { padding: clamp(52px, 6vw, 92px) 0; }
.section--tint { background: var(--bg-soft); }
.section--line { border-top: 1px solid var(--line); }
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }

.section-head { max-width: 720px; margin: 0 auto clamp(30px, 4vw, 52px); text-align: center; }
.section-head p { color: var(--muted); font-size: 1.05rem; margin-bottom: 0; }
.section-head--left { margin-inline: 0; text-align: left; }

.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--purple); margin-bottom: .7rem;
}
.eyebrow--light { color: var(--cyan); }

.lead { font-size: 1.12rem; color: var(--ink-2); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: 14px 26px; border-radius: var(--radius-pill); border: 2px solid transparent;
  font-weight: 700; font-size: 1rem; line-height: 1; cursor: pointer; text-align: center;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--purple); color: #fff; box-shadow: 0 6px 18px rgba(138, 11, 224, .3); }
.btn--primary:hover { background: var(--purple-dark); color: #fff; box-shadow: 0 10px 26px rgba(138, 11, 224, .38); }
.btn--accent { background: var(--cyan); color: #06344A; box-shadow: 0 6px 18px rgba(79, 195, 247, .38); }
.btn--accent:hover { background: var(--cyan-dark); color: #fff; }
.btn--ghost { background: transparent; color: var(--purple); border-color: var(--purple); }
.btn--ghost:hover { background: var(--purple); color: #fff; }
.btn--light { background: #fff; color: var(--purple); }
.btn--light:hover { background: var(--purple-soft); color: var(--purple-dark); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn--outline-light:hover { background: #fff; color: var(--purple); }
.btn--lg { padding: 17px 34px; font-size: 1.06rem; }
.btn--block { display: flex; width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row--center { justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: var(--grad-deep);
  box-shadow: 0 2px 14px rgba(74, 5, 120, .22);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand:hover { text-decoration: none; }
.brand img, .brand svg, .brand-logo { height: 54px; width: auto; }
.site-footer .brand { margin-bottom: 6px; }
.site-footer .brand img, .site-footer .brand svg, .site-footer .brand-logo { height: 78px; }
.brand-fallback { display: flex; align-items: center; gap: 11px; }
.brand-mark { width: 42px; height: 42px; flex: 0 0 42px; }
.brand-text { color: #fff; font-weight: 900; line-height: 1.06; letter-spacing: .01em; font-size: .95rem; text-transform: uppercase; }
.brand-text span { display: block; }
.brand-text .b2 { color: var(--cyan); }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  color: #fff; font-weight: 600; font-size: .97rem; padding: 10px 14px; border-radius: var(--radius-pill);
  transition: background .15s ease;
}
.nav a:hover, .nav a:focus-visible { background: rgba(255,255,255,.16); text-decoration: none; }
.nav a[aria-current="page"] { background: rgba(255,255,255,.2); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-phone {
  color: #fff; font-weight: 800; font-size: .97rem; display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 14px; border-radius: var(--radius-pill); border: 1.5px solid rgba(255,255,255,.4);
}
.header-phone:hover { background: rgba(255,255,255,.15); text-decoration: none; }
.header-phone svg { width: 16px; height: 16px; }

.nav-toggle {
  display: none; background: rgba(255,255,255,.14); border: 0; color: #fff; width: 46px; height: 46px;
  border-radius: 12px; cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 1000px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 78px 0 auto 0; background: var(--purple-deep); flex-direction: column;
    align-items: stretch; gap: 2px; padding: 16px var(--gutter) 26px; display: none;
    max-height: calc(100vh - 78px); overflow-y: auto; box-shadow: 0 18px 30px rgba(0,0,0,.25);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 16px; border-radius: 10px; font-size: 1.05rem; }
  .header-phone span { display: none; }
  .header-phone { padding: 11px; }
}

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--grad-deep); color: #fff; overflow: hidden; padding: clamp(56px, 7vw, 104px) 0 clamp(64px, 7vw, 112px); }
.hero::before {
  content: ""; position: absolute; width: 720px; height: 720px; right: -180px; top: -280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(79,195,247,.34) 0%, rgba(79,195,247,0) 66%);
}
.hero::after {
  content: ""; position: absolute; width: 520px; height: 520px; left: -200px; bottom: -260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.14) 0%, rgba(255,255,255,0) 68%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(32px, 4vw, 60px); align-items: center; }
.hero h1 { color: #fff; margin-bottom: .5em; }
.hero h1 .accent { color: var(--cyan); }
.hero p { color: rgba(255,255,255,.92); font-size: 1.1rem; max-width: 56ch; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 30px; padding: 0; list-style: none; }
.hero-badges li {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.22); color: #fff; padding: 8px 15px; border-radius: var(--radius-pill);
  font-size: .87rem; font-weight: 600; margin: 0;
}
.hero-badges svg { width: 15px; height: 15px; color: var(--cyan); flex-shrink: 0; }
.hero-card {
  background: #fff; border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-lg); color: var(--ink-2);
}
.hero-card h2 { font-size: 1.35rem; margin-bottom: .35em; }
.hero-card ul { list-style: none; padding: 0; margin: 0 0 22px; }
.hero-card li { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 12px; font-size: .97rem; }
.hero-card li svg { width: 19px; height: 19px; color: var(--purple); flex-shrink: 0; margin-top: 3px; }
.hero-visual { display: flex; justify-content: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

/* ---------- Page banner (inner pages) ---------- */
.page-banner { background: var(--grad-deep); color: #fff; padding: clamp(42px, 5vw, 74px) 0 clamp(46px, 5vw, 72px); position: relative; overflow: hidden; }
.page-banner::before {
  content: ""; position: absolute; width: 620px; height: 620px; right: -220px; top: -300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(79,195,247,.3) 0%, rgba(79,195,247,0) 68%);
}
.page-banner .wrap { position: relative; z-index: 1; }
.page-banner h1 { color: #fff; margin-bottom: .4em; }
.page-banner p { color: rgba(255,255,255,.92); max-width: 66ch; font-size: 1.08rem; margin-bottom: 0; }
.page-banner .btn-row { margin-top: 28px; }

.crumbs { font-size: .85rem; color: rgba(255,255,255,.78); margin-bottom: 14px; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; }
.crumbs li { margin: 0; display: flex; gap: 8px; align-items: center; }
.crumbs li + li::before { content: "/"; color: rgba(255,255,255,.45); }
.crumbs a { color: rgba(255,255,255,.9); text-decoration: underline; text-underline-offset: 3px; }
.crumbs a:hover { color: #fff; }
.crumbs [aria-current] { color: var(--cyan); font-weight: 600; }

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #D9CFEA; }
.card-media {
  aspect-ratio: 16 / 10; background: var(--grad); position: relative; display: flex; align-items: center;
  justify-content: center; overflow: hidden;
}
.card-media svg { width: 62px; height: 62px; color: rgba(255,255,255,.94); }
/* Photo fills the media panel. If the file is missing the <img> removes itself
   and the branded gradient + icon underneath shows instead, so a missing image
   never renders as a broken one. */
.card-photo {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s ease;
}
.card:hover .card-photo { transform: scale(1.04); }
.card-media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(74,5,120,.16) 0%, rgba(74,5,120,0) 42%, rgba(21,18,28,.28) 100%);
}
.card-body { padding: 26px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: .45em; }
.card-body p { color: var(--muted); font-size: .97rem; }
.card-body .btn-row { margin-top: auto; padding-top: 14px; }
.card-tag {
  position: absolute; top: 14px; left: 14px; background: #fff; color: var(--purple); font-size: .72rem;
  font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 6px 12px; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}

.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.feature:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.feature-icon {
  width: 50px; height: 50px; border-radius: 14px; background: var(--purple-soft); color: var(--purple);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.feature-icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.1rem; margin-bottom: .4em; }
.feature p { color: var(--muted); font-size: .95rem; margin-bottom: 0; }

/* ---------- Checklists ---------- */
.checklist { list-style: none; padding: 0; margin: 0 0 1.2em; }
.checklist li { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 11px; }
.checklist li::before {
  content: ""; flex: 0 0 21px; width: 21px; height: 21px; margin-top: 2px; border-radius: 50%;
  background: var(--purple-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A0BE0' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 13px no-repeat;
}
.checklist--cyan li::before {
  background: var(--cyan-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231CA6E0' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 13px no-repeat;
}
.checklist strong { color: var(--ink); }
.checklist--2col { columns: 2; column-gap: 34px; }
.checklist--2col li { break-inside: avoid; }
@media (max-width: 620px) { .checklist--2col { columns: 1; } }

/* ---------- Service detail block ---------- */
.svc {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); scroll-margin-top: 100px;
}
.svc-head { background: var(--bg-tint); padding: 26px 30px; border-bottom: 1px solid var(--line); }
.svc-head h2 { margin-bottom: .3em; }
.svc-head p { margin-bottom: 0; color: var(--muted); }
.svc-body { padding: 28px 30px 30px; }
.svc-body h3 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: .06em; color: var(--purple); }
@media (max-width: 560px) { .svc-head, .svc-body { padding-inline: 22px; } }

/* ---------- Steps ---------- */
.steps { list-style: none; counter-reset: s; padding: 0; margin: 0; display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.steps li { counter-increment: s; position: relative; padding-top: 58px; margin: 0; }
.steps li::before {
  content: counter(s); position: absolute; top: 0; left: 0; width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; box-shadow: 0 5px 14px rgba(138,11,224,.28);
}
.steps h3 { font-size: 1.06rem; margin-bottom: .35em; }
.steps p { color: var(--muted); font-size: .95rem; margin-bottom: 0; }

/* ---------- Testimonials ---------- */
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 26px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.stars { display: flex; gap: 3px; color: var(--star); margin-bottom: 14px; }
.stars svg { width: 18px; height: 18px; }
.quote blockquote { margin: 0 0 18px; font-size: 1.02rem; color: var(--ink-2); }
.quote figcaption { font-weight: 700; color: var(--ink); font-size: .94rem; margin-top: auto; }
.quote figcaption span { display: block; font-weight: 500; color: var(--muted); font-size: .87rem; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--grad-deep); color: #fff; padding: clamp(48px, 5.5vw, 78px) 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 120%, rgba(79,195,247,.3), transparent 55%);
}
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.92); max-width: 58ch; margin-inline: auto; font-size: 1.06rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 12px;
  transition: box-shadow .18s ease;
}
.faq details[open] { box-shadow: var(--shadow-sm); border-color: #D9CFEA; }
.faq summary {
  cursor: pointer; list-style: none; padding: 19px 52px 19px 22px; font-weight: 700; color: var(--ink);
  position: relative; font-size: 1.02rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 20px; top: 50%; width: 12px; height: 12px; margin-top: -7px;
  border-right: 2.5px solid var(--purple); border-bottom: 2.5px solid var(--purple);
  transform: rotate(45deg); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq .faq-a { padding: 0 22px 20px; color: var(--muted); }
.faq .faq-a p:last-child { margin-bottom: 0; }

/* ---------- Areas ---------- */
.area-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); }
.area-list li { margin: 0; }
.area-list a {
  display: flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 13px 16px; color: var(--ink-2); font-weight: 600; font-size: .95rem;
  transition: all .16s ease;
}
.area-list a:hover { border-color: var(--purple); color: var(--purple); background: var(--purple-soft); text-decoration: none; transform: translateY(-2px); }
.area-list svg { width: 16px; height: 16px; color: var(--purple); flex-shrink: 0; }

.pin-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.pin-list li { margin: 0; }
.pin-list a, .pin-list span {
  display: inline-block; background: var(--purple-soft); color: var(--purple-dark); border-radius: var(--radius-pill);
  padding: 7px 15px; font-size: .87rem; font-weight: 600;
}
.pin-list a:hover { background: var(--purple); color: #fff; text-decoration: none; }

/* ---------- Prose ---------- */
.prose h2 { margin-top: 2.1em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.7em; }
.prose ol li, .prose ul li { color: var(--ink-2); }

.note {
  background: var(--cyan-soft); border-left: 4px solid var(--cyan); border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px; margin: 0 0 1.4em;
}
.note p:last-child { margin-bottom: 0; }
.note strong { color: var(--ink); }

/* ---------- Form ---------- */
.form-wrap {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 3.2vw, 40px);
  box-shadow: var(--shadow);
}
.field { margin-bottom: 20px; }
.field label, .fieldset-legend { display: block; font-weight: 700; color: var(--ink); margin-bottom: 7px; font-size: .95rem; }
.req { color: #D6006E; }
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field input[type="number"],
.field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; transition: border-color .15s ease, box-shadow .15s ease; font-size: 1rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(138, 11, 224, .14);
}
.field textarea { min-height: 130px; resize: vertical; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23625B72' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 17px; padding-right: 42px; }
.field-row { display: grid; gap: 20px; grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.hint { font-size: .85rem; color: var(--muted); margin: 6px 0 0; }

fieldset { border: 1.5px solid var(--line); border-radius: var(--radius); padding: 20px 22px; margin: 0 0 20px; }
legend { font-weight: 700; color: var(--ink); padding: 0 8px; font-size: .95rem; }
.addons { display: grid; gap: 10px; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.check {
  display: flex; align-items: center; gap: 10px; background: var(--bg-soft); border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); padding: 11px 14px; cursor: pointer; font-size: .94rem; transition: all .14s ease;
}
.check:hover { border-color: var(--purple); background: var(--purple-soft); }
.check input { width: 18px; height: 18px; accent-color: var(--purple); flex-shrink: 0; margin: 0; cursor: pointer; }
.check:has(input:checked) { border-color: var(--purple); background: var(--purple-soft); font-weight: 600; }

.consent { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 22px; font-size: .95rem; }
.consent input { width: 19px; height: 19px; accent-color: var(--purple); flex-shrink: 0; margin-top: 3px; }

.hp { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; width: 0; overflow: hidden; }

.form-alert { padding: 15px 18px; border-radius: var(--radius-sm); margin-bottom: 22px; font-weight: 600; }
.form-alert--error { background: #FEE7EF; border-left: 4px solid #D6006E; color: #8A0040; }
.form-alert--ok { background: #E6F8EC; border-left: 4px solid var(--ok); color: #0B5C29; }

/* ---------- Contact panel ---------- */
.contact-panel { background: var(--grad-deep); color: #fff; border-radius: var(--radius-lg); padding: 32px 30px; }
.contact-panel h2 { color: #fff; font-size: 1.45rem; }
.contact-panel p { color: rgba(255,255,255,.9); }
.contact-list { list-style: none; padding: 0; margin: 0 0 24px; }
.contact-list li { display: flex; gap: 13px; align-items: flex-start; margin-bottom: 17px; }
.contact-list svg { width: 21px; height: 21px; color: var(--cyan); flex-shrink: 0; margin-top: 3px; }
.contact-list a { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.contact-list span { display: block; font-size: .82rem; color: rgba(255,255,255,.72); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; }

/* ---------- Socials ---------- */
.socials { display: flex; gap: 10px; align-items: center; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.14); color: #fff; transition: all .16s ease;
}
.socials a:hover { background: #fff; color: var(--purple); transform: translateY(-2px); }
.socials svg { width: 20px; height: 20px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--grad-deep); color: rgba(255,255,255,.86); padding: clamp(46px, 5vw, 70px) 0 0; }
.footer-grid { display: grid; gap: 34px; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h2, .site-footer h3 { color: #fff; font-size: 1.02rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.1em; }
.site-footer a { color: rgba(255,255,255,.86); }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-tag { color: var(--cyan); font-weight: 700; font-size: 1.05rem; margin-top: 16px; }
.footer-bottom {
  margin-top: 44px; border-top: 1px solid rgba(255,255,255,.18); padding: 22px 0;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
  font-size: .87rem; color: rgba(255,255,255,.72);
}
.footer-bottom p { margin: 0; }
.footer-bottom nav { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- Sticky mobile action bar ---------- */
.action-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; display: none; gap: 10px; padding: 10px 12px;
  background: rgba(255,255,255,.97); border-top: 1px solid var(--line); box-shadow: 0 -4px 18px rgba(21,18,28,.1);
  backdrop-filter: blur(8px);
}
.action-bar .btn { flex: 1; padding: 13px 10px; font-size: .95rem; }
@media (max-width: 780px) {
  .action-bar { display: flex; }
  body { padding-bottom: 74px; }
}

/* ---------- Utility ---------- */
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 1.6rem; }
.text-muted { color: var(--muted); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .btn:hover, .card:hover, .feature:hover, .area-list a:hover, .socials a:hover { transform: none; }
}

@media print {
  .site-header, .site-footer, .action-bar, .cta-band, .btn { display: none !important; }
  body { color: #000; font-size: 12pt; }
}
