/* ════════════════════════════════════════════════════════
   EKI Videonadzor — full site styles
   Brand: navy #0B1F3A / deep #081627 / blue #2E7CF6
   ════════════════════════════════════════════════════════ */
:root {
  --navy: #0B1F3A;
  --navy-deep: #081627;
  --navy-black: #050E1D;
  --blue: #2E7CF6;
  --blue-dark: #1f6ae0;
  --blue-soft: #EAF2FE;
  --blue-tint: #7eb1fb;
  --wa: #25D366;
  --wa-dark: #1fbd5a;
  --light-bg: #F4F7FB;
  --line-light: #E2E8F0;
  --ink-soft: rgba(11, 31, 58, 0.7);
  --ink-fade: rgba(11, 31, 58, 0.55);
  /* video framing — final values dialed in during design */
  --vid-flip: 1;
  --vid-shift-x: 1%;
  --vid-zoom: 1.07;
  --scrim-dark: 0.86;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--navy-deep);
  color: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); }

/* ── scroll reveal (only when JS present) ── */
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ════════════════ HERO ════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; flex-direction: column;
  overflow: hidden;
  background: var(--navy-deep);
}
.video-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.video-bg video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateX(var(--vid-shift-x)) scaleX(var(--vid-flip)) scale(var(--vid-zoom));
}
.video-fallback {
  position: absolute; inset: 0;
  background: radial-gradient(120% 130% at 78% 20%, #16365f 0%, var(--navy) 48%, var(--navy-deep) 100%);
  opacity: 0; transition: opacity 0.6s ease;
}
.video-failed .video-fallback,
.no-video .video-fallback { opacity: 1; }
/* On mobile / no-video the <video> never loads — hide the empty element */
.no-video .video-bg video { display: none; }
.hero .scrim {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(8,22,39, var(--scrim-dark)) 0%,
      rgba(8,22,39, calc(var(--scrim-dark) * 0.9)) 36%,
      rgba(8,22,39, 0.28) 64%,
      rgba(8,22,39, 0.10) 100%),
    linear-gradient(180deg, rgba(8,22,39,0.55) 0%, rgba(8,22,39,0) 24%, rgba(8,22,39,0) 66%, rgba(8,22,39,1) 100%);
}

/* header */
.hero-header {
  position: relative; z-index: 5;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 22px clamp(20px, 5vw, 56px);
}
.header-center {
  position: absolute; left: 50%; transform: translateX(-50%);
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
  white-space: nowrap;
  color: rgba(255,255,255,0.7);
}
@media (max-width: 1024px) { .header-center { display: none; } }
.brand { display: flex; flex-direction: column; gap: 7px; }
.brand svg.wordmark { height: 30px; display: block; }
.brand-sub {
  display: flex; align-items: center; gap: 6px;
  font-size: 9.5px; font-weight: 600; letter-spacing: 0.3em;
  color: rgba(255,255,255,0.78);
}
.phone-link {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 600; letter-spacing: 0.02em;
  padding: 10px 16px; border-radius: 999px;
  background: rgba(255,255,255,0.1); color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.phone-link:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,0,0,0.3); }
.phone-link svg { display: block; }
.phone-num { white-space: nowrap; }

/* language switcher (flags) */
.header-right { display: flex; align-items: center; gap: clamp(8px, 1.4vw, 12px); }
.lang-switch {
  display: inline-flex;
  gap: 2px;
  padding: 2px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.lang-btn {
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: none; cursor: pointer;
  padding: 4px;
  border-radius: 7px;
  line-height: 0;
  transition: background 0.15s ease;
}
.lang-btn .flag {
  display: block;
  width: 21px; height: 14px;
  border-radius: 2.5px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
.lang-btn:hover .flag { opacity: 0.85; }
.lang-btn.is-active { background: rgba(255, 255, 255, 0.16); }
.lang-btn.is-active .flag { opacity: 1; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4); }

/* hero main */
.hero-main {
  position: relative; z-index: 4;
  flex: 1;
  display: flex; align-items: center;
  padding: clamp(16px, 3vw, 40px) clamp(20px, 5vw, 56px) clamp(64px, 8vw, 110px);
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}
.hero-copy { max-width: 600px; }
.promise-pill {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  padding: 9px 16px; border-radius: 999px;
  margin-bottom: 26px;
  background: rgba(46,124,246,0.2); color: #9cc1fb;
  border: 1px solid rgba(46,124,246,0.4);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--blue); flex: none; position: relative; }
.pulse-dot::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid var(--blue); opacity: 0;
}
.hero h1 {
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin-bottom: 18px;
  text-shadow: 0 2px 24px rgba(8,22,39,0.55);
}
.subhead {
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.82);
}
.loc-swap {
  display: inline-block;
  min-width: 4.6em;
  font-weight: 700;
  color: var(--blue-tint);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.loc-swap.is-out { opacity: 0; transform: translateY(8px); }

/* buttons */
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 16px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: inherit;
  font-size: 16px; font-weight: 600;
  padding: 16px 26px; border-radius: 12px;
  min-height: 54px;
  cursor: pointer; border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; box-shadow: none !important; }
.btn svg { display: block; flex: none; }
.btn-email { background: var(--blue); color: #fff; box-shadow: 0 6px 18px rgba(46,124,246,0.35); }
.btn-email:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(46,124,246,0.45); }
.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 6px 18px rgba(37,211,102,0.3); }
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(37,211,102,0.4); }
.cta-note { font-size: 13.5px; line-height: 1.5; margin-bottom: 28px; color: rgba(255,255,255,0.6); }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px 24px; font-size: 14px; font-weight: 600; }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.88); }
.trust-item svg { display: block; flex: none; }

.video-chips {
  position: absolute; z-index: 4;
  right: clamp(20px, 5vw, 56px);
  bottom: clamp(40px, 6vw, 72px);
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
  pointer-events: none;
}
.chip {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em;
  padding: 9px 14px; border-radius: 10px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  white-space: nowrap;
  background: rgba(11,31,58,0.72); color: #fff;
}
.rec-dot { width: 8px; height: 8px; border-radius: 50%; background: #FF4747; flex: none; }
/* the REC chip belongs to the live video — hide it when there is no video */
.no-video .video-chips { display: none; }

/* hero entrance */
@media (prefers-reduced-motion: no-preference) {
  .pulse-dot::after { animation: ekiPulse 2s ease-out infinite; }
  .rec-dot { animation: ekiBlink 1.4s steps(1) infinite; }
  .hero-copy > * { opacity: 0; transform: translateY(14px); animation: ekiRise 0.7s ease forwards; }
  .hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
  .hero-copy > *:nth-child(2) { animation-delay: 0.15s; }
  .hero-copy > *:nth-child(3) { animation-delay: 0.25s; }
  .hero-copy > *:nth-child(4) { animation-delay: 0.35s; }
  .hero-copy > *:nth-child(5) { animation-delay: 0.42s; }
  .hero-copy > *:nth-child(6) { animation-delay: 0.5s; }
  .video-chips { opacity: 0; animation: ekiRise 0.9s ease 0.55s forwards; }
}
.anim-fallback .hero-copy > *, .anim-fallback .video-chips {
  animation: none !important; opacity: 1 !important; transform: none !important;
}
@keyframes ekiPulse { 0% { transform: scale(0.6); opacity: 0.9; } 70% { transform: scale(1.8); opacity: 0; } 100% { opacity: 0; } }
@keyframes ekiBlink { 0%, 60% { opacity: 1; } 61%, 100% { opacity: 0.25; } }
@keyframes ekiRise { to { opacity: 1; transform: translateY(0); } }

/* ════════════════ BRIDGE ════════════════ */
.bridge {
  position: relative;
  background: var(--navy-deep);
  padding: clamp(72px, 9vw, 130px) 0 clamp(120px, 13vw, 190px);
  overflow: hidden;
}
.bridge::before {
  /* signal bar — logo DNA, bleeding from the left edge */
  content: "";
  position: absolute; left: 0; top: clamp(38px, 5vw, 72px);
  width: clamp(60px, 9vw, 130px); height: 10px;
  background: var(--blue);
}
.bridge-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 70% at 50% 110%, rgba(46,124,246,0.13) 0%, rgba(46,124,246,0) 70%);
}
.bridge-text {
  position: relative;
  max-width: 880px;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.5;
  font-weight: 500;
  color: rgba(255,255,255,0.66);
  text-wrap: pretty;
}
.bridge-text strong { color: #fff; font-weight: 600; }
.bridge-text .hl { color: var(--blue-tint); font-weight: 600; }

/* ════════════════ LIGHT SHEET (process + photo + faq) ════════════════ */
.sheet {
  display: block;
  position: relative; z-index: 2;
  background: var(--light-bg);
  color: var(--navy);
  border-radius: clamp(24px, 3vw, 40px) clamp(24px, 3vw, 40px) 0 0;
  margin-top: clamp(-110px, -7vw, -60px);
  box-shadow: 0 -24px 60px rgba(0,0,0,0.35);
  padding-bottom: clamp(80px, 9vw, 130px);
}
.section-head { padding-top: clamp(72px, 9vw, 120px); margin-bottom: clamp(36px, 5vw, 56px); }
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.22em;
  color: var(--blue);
  margin-bottom: 16px;
}
.kicker::before { content: ""; width: 26px; height: 4px; background: var(--blue); }
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.section-head p.lede {
  margin-top: 14px;
  font-size: clamp(15.5px, 1.4vw, 18px);
  color: var(--ink-soft);
  max-width: 560px;
  line-height: 1.55;
}

/* process cards */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  position: relative;
}
.step-card {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 20px;
  padding: clamp(24px, 2.6vw, 34px);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(11,31,58,0.10); }
.step-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.step-num {
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 6px 12px; border-radius: 999px;
}
.step-icon {
  width: 46px; height: 46px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy);
  color: #fff;
}
.step-icon svg { display: block; }
.step-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.step-card p { font-size: 15px; line-height: 1.55; color: var(--ink-soft); }
.step-card .step-meta {
  margin-top: 18px; padding-top: 16px;
  border-top: 1px dashed var(--line-light);
  font-size: 13px; font-weight: 600; color: var(--blue);
  display: flex; align-items: center; gap: 7px;
}
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }

/* reassurance — 24h promise (understated, not a focal point) */
.assure-band { margin-top: clamp(52px, 7vw, 92px); }
.assure-card {
  position: relative;
  display: flex; align-items: center; gap: clamp(20px, 3vw, 40px);
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 22px;
  padding: clamp(22px, 3vw, 34px) clamp(24px, 3.5vw, 46px);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(11,31,58,0.06);
}
.assure-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 5px; background: var(--blue);
}
.assure-mark {
  flex: none;
  width: clamp(74px, 8.5vw, 94px); height: clamp(74px, 8.5vw, 94px);
  border-radius: 18px;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(11,31,58,0.20);
}
.assure-num { font-size: clamp(30px, 4vw, 40px); font-weight: 700; line-height: 1; letter-spacing: -0.02em; }
.assure-unit { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; color: var(--blue-tint); margin-top: 5px; text-transform: uppercase; }
.assure-text { flex: 1 1 auto; min-width: 0; }
.assure-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.2em;
  color: var(--blue); margin-bottom: 10px;
}
.assure-kicker .pulse-dot { width: 8px; height: 8px; }
.assure-text p {
  font-size: clamp(19px, 2.3vw, 27px); font-weight: 600; line-height: 1.28;
  letter-spacing: -0.01em; color: var(--navy); text-wrap: balance;
}
.assure-deco { flex: none; color: rgba(11,31,58,0.07); width: clamp(58px, 7vw, 92px); height: auto; }
@media (max-width: 640px) {
  .assure-card { flex-direction: column; align-items: flex-start; gap: 18px; }
  .assure-deco { display: none; }
}

/* ════════════════ UPGRADE / TIERS ════════════════ */
.upgrade-band { margin-top: clamp(56px, 7vw, 96px); }
.tier-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(16px, 2.2vw, 26px);
  margin-top: clamp(32px, 4vw, 48px);
  align-items: stretch;
}
.tier-card {
  position: relative;
  border-radius: 22px;
  padding: clamp(26px, 3vw, 38px);
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tier-card.basic {
  background: #fff;
  border: 1px solid var(--line-light);
}
.tier-card.basic:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(11,31,58,0.10); }
.tier-card.featured {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 100%);
  border: 1px solid rgba(46,124,246,0.4);
  color: #fff;
  box-shadow: 0 22px 54px rgba(11,31,58,0.28);
  overflow: hidden;
}
.tier-card.featured::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(80% 60% at 88% 0%, rgba(46,124,246,0.28) 0%, rgba(46,124,246,0) 62%);
}
.tier-label {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.2em;
  padding: 6px 12px; border-radius: 999px;
  margin-bottom: 18px;
}
.tier-card.basic .tier-label { background: var(--blue-soft); color: var(--blue); }
.tier-card.featured .tier-label { background: rgba(46,124,246,0.22); color: #9cc1fb; border: 1px solid rgba(46,124,246,0.45); position: relative; }
.tier-card.featured .tier-label .pulse-dot { width: 8px; height: 8px; }
.tier-card h3 {
  font-size: clamp(22px, 2.5vw, 29px); font-weight: 700;
  letter-spacing: -0.015em; line-height: 1.1;
  margin-bottom: clamp(20px, 2.4vw, 28px);
  position: relative;
}
.tier-list { list-style: none; display: flex; flex-direction: column; gap: 13px; position: relative; }
.tier-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: clamp(15px, 1.5vw, 17px); font-weight: 600;
}
.tier-list li .tier-ic {
  flex: none;
  width: 26px; height: 26px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.tier-card.basic .tier-list li { color: var(--navy); }
.tier-card.basic .tier-ic { background: var(--blue-soft); color: var(--blue); }
.tier-card.featured .tier-list li { color: rgba(255,255,255,0.92); }
.tier-card.featured .tier-list li.base-line { color: rgba(255,255,255,0.7); }
.tier-card.featured .base-line .tier-ic { background: rgba(255,255,255,0.12); color: #fff; }
.tier-card.featured .add-line .tier-ic { background: var(--blue); color: #fff; }
.tier-card.featured .add-line { font-weight: 700; }
.tier-divider {
  height: 1px; margin: 6px 2px;
  background: rgba(255,255,255,0.12);
}
@media (max-width: 760px) {
  .tier-grid { grid-template-columns: 1fr; }
}

/* FAQ */
.faq-grid { max-width: 820px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.faq-item[open] { border-color: rgba(46,124,246,0.45); box-shadow: 0 10px 30px rgba(11,31,58,0.08); }
.faq-item summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 19px 22px;
  font-size: 16.5px; font-weight: 600;
  cursor: pointer;
  -webkit-user-select: none; user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-x {
  flex: none;
  width: 30px; height: 30px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-soft); color: var(--blue);
  transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease;
}
.faq-item[open] .faq-x { transform: rotate(45deg); background: var(--blue); color: #fff; }
.faq-body { padding: 0 22px 20px; font-size: 15px; line-height: 1.6; color: var(--ink-soft); max-width: 660px; }

/* ════════════════ CONTACT ════════════════ */
.contact {
  position: relative;
  background:
    radial-gradient(70% 60% at 80% 0%, rgba(46,124,246,0.14) 0%, rgba(46,124,246,0) 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: clamp(80px, 10vw, 140px) 0 clamp(80px, 9vw, 120px);
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute; right: 0; top: clamp(80px, 10vw, 140px);
  width: clamp(60px, 9vw, 130px); height: 10px;
  background: var(--blue);
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.contact-intro .kicker { color: var(--blue-tint); }
.contact-intro .kicker::before { background: var(--blue-tint); }
.contact-intro h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.12; font-weight: 700; letter-spacing: -0.015em;
  margin-bottom: 16px; text-wrap: balance;
}
.contact-intro p { font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.72); max-width: 440px; margin-bottom: 28px; }
.contact-alt { display: flex; flex-direction: column; gap: 12px; }
.alt-line {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.85);
}
.alt-line svg { flex: none; }
.alt-line a { color: var(--blue-tint); }
.alt-line a:hover { text-decoration: underline; }

.form-card {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: clamp(24px, 3vw, 38px);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label { font-size: 13px; font-weight: 600; letter-spacing: 0.04em; color: rgba(255,255,255,0.75); }
.field input, .field select, .field textarea {
  font-family: inherit;
  font-size: 15px;
  color: #fff;
  background: rgba(8,22,39,0.55);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 11px;
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%237eb1fb' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.35); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(46,124,246,0.25);
}
.field textarea { resize: vertical; min-height: 92px; }

/* photo dropzone */
.dropzone {
  border: 1.5px dashed rgba(126,177,251,0.45);
  background: rgba(46,124,246,0.07);
  border-radius: 13px;
  padding: 20px;
  display: flex; align-items: center; gap: 14px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.dropzone:hover, .dropzone.drag {
  border-color: var(--blue);
  background: rgba(46,124,246,0.14);
}
.dropzone svg { flex: none; color: var(--blue-tint); }
.dropzone .dz-text { font-size: 14px; line-height: 1.45; color: rgba(255,255,255,0.78); }
.dropzone .dz-text strong { color: #fff; }
.dz-previews { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.dz-thumb {
  position: relative;
  width: 76px; height: 76px;
  border-radius: 10px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
}
.dz-thumb img { width: 100%; height: 100%; object-fit: cover; }
.dz-thumb button {
  position: absolute; top: 4px; right: 4px;
  width: 20px; height: 20px; border-radius: 6px;
  border: none; cursor: pointer;
  background: rgba(8,22,39,0.85); color: #fff;
  font-size: 12px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
}
.form-submit { width: 100%; margin-top: 8px; }
.form-note { margin-top: 14px; font-size: 12.5px; color: rgba(255,255,255,0.45); text-align: center; }
.form-error {
  margin-top: 12px;
  font-size: 13px; font-weight: 600; text-align: center;
  color: #FF9B9B;
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 10px;
  padding: 10px 14px;
}
/* honeypot — hidden from real users, left for bots to fill in */
.botcheck {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-success {
  display: none;
  text-align: center;
  padding: clamp(28px, 4vw, 48px) clamp(18px, 3vw, 36px);
}
.form-card.sent form { display: none; }
.form-card.sent .form-success { display: block; }
.success-ring {
  width: 64px; height: 64px; margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(37,211,102,0.15);
  border: 2px solid var(--wa);
  display: flex; align-items: center; justify-content: center;
  color: var(--wa);
}
.form-success h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.form-success p { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.7); max-width: 360px; margin: 0 auto; }

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ════════════════ FOOTER ════════════════ */
.footer {
  background: var(--navy-black);
  padding: clamp(56px, 7vw, 88px) 0 36px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  margin-bottom: clamp(40px, 5vw, 64px);
}
.footer-brand .brand-sub { margin-top: 9px; }
.footer-tag { margin-top: 18px; font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.5); max-width: 300px; }
.footer h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col li { font-size: 14.5px; color: rgba(255,255,255,0.78); }
.footer-col a:hover { color: var(--blue-tint); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 12px 24px;
  align-items: center; justify-content: space-between;
  font-size: 13px; color: rgba(255,255,255,0.4);
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* small screens */
@media (max-width: 920px) {
  .hero .scrim {
    background:
      linear-gradient(180deg,
        rgba(8,22,39, 0.92) 0%,
        rgba(8,22,39, 0.82) 55%,
        rgba(8,22,39, 1) 100%);
  }
  .video-chips { right: 16px; bottom: 28px; }
  .hero-copy { max-width: 100%; }
}

/* tablet / large phone */
@media (max-width: 680px) {
  .hero-main { padding-bottom: clamp(48px, 12vw, 72px); }
  .section-head { padding-top: clamp(56px, 12vw, 84px); }
  .section-head h2 { font-size: clamp(26px, 7vw, 34px); }
  .bridge { padding: clamp(56px, 12vw, 96px) 0 clamp(96px, 18vw, 150px); }
  .bridge-text { font-size: clamp(19px, 5vw, 25px); }
  .step-card { padding: 24px; }
  .contact-intro h2, .section-head h2 { letter-spacing: -0.01em; }
  .faq-item summary { font-size: 15.5px; padding: 17px 18px; gap: 14px; }
  .faq-body { padding: 0 18px 18px; }
  .form-card { padding: 22px 18px; }
}

@media (max-width: 560px) {
  .phone-num { display: none; }
  .phone-link { padding: 12px; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .hero h1 { font-size: clamp(30px, 8.6vw, 38px); }
  .subhead { font-size: 16.5px; }
  .brand svg.wordmark { height: 26px; }
  .promise-pill { font-size: 12px; padding: 8px 13px; }
  .trust-row { gap: 8px 18px; font-size: 13px; }
  .sheet { margin-top: -40px; border-radius: 22px 22px 0 0; }
  .steps { gap: 14px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 380px) {
  .header-center { display: none; }
  .assure-mark { width: 66px; height: 66px; }
  .assure-text p { font-size: 18px; }
}

/* ════════════════ COOKIE CONSENT ════════════════ */
.cookie-consent {
  position: fixed;
  left: clamp(14px, 4vw, 28px);
  right: clamp(14px, 4vw, 28px);
  bottom: clamp(14px, 4vw, 28px);
  z-index: 100;
  max-width: 640px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.cookie-consent.show { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .cookie-consent { transition: none; transform: none; }
}
.cookie-inner {
  display: flex;
  align-items: flex-start;
  gap: clamp(14px, 2vw, 20px);
  flex-wrap: wrap;
  padding: clamp(18px, 2.4vw, 24px);
  border-radius: 18px;
  background: rgba(11, 31, 58, 0.86);
  border: 1px solid rgba(46, 124, 246, 0.32);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.cookie-icon {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(46, 124, 246, 0.18);
  border: 1px solid rgba(46, 124, 246, 0.4);
  color: var(--blue-tint);
}
.cookie-copy { flex: 1 1 240px; min-width: 0; }
.cookie-title {
  font-size: 15px; font-weight: 700; letter-spacing: -0.01em;
  color: #fff; margin-bottom: 6px;
}
.cookie-desc {
  font-size: 13.5px; line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}
.cookie-link { color: var(--blue-tint); text-decoration: underline; }
.cookie-link:hover { color: #fff; }
.cookie-actions {
  flex: 0 0 auto;
  display: flex; align-items: center; gap: 10px;
  margin-left: auto;
}
.cookie-btn {
  font-family: inherit;
  font-size: 14px; font-weight: 600;
  padding: 11px 20px;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.cookie-btn:active { transform: translateY(1px); }
.cookie-reject {
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.24);
}
.cookie-reject:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.4); }
.cookie-accept {
  background: var(--blue);
  color: #fff;
  border: 1px solid var(--blue);
  box-shadow: 0 6px 16px rgba(46, 124, 246, 0.35);
}
.cookie-accept:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 10px 22px rgba(46, 124, 246, 0.45); }

@media (max-width: 560px) {
  .cookie-actions { width: 100%; margin-left: 0; }
  .cookie-btn { flex: 1 1 0; text-align: center; padding: 13px 14px; }
}
