:root {
  --bg: #07101d;
  --bg-soft: #0b182a;
  --panel: rgba(255, 255, 255, 0.07);
  --panel-strong: rgba(255, 255, 255, 0.11);
  --text: #f4f7fb;
  --muted: #aab7c7;
  --line: rgba(255, 255, 255, 0.14);
  --gold: #2b8cff;
  --blue: #67b7ff;
  --green: #98f0c8;
  --danger: #ff9b9b;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(137, 215, 255, 0.14), transparent 34rem),
    radial-gradient(circle at 85% 5%, rgba(43, 140, 255, 0.18), transparent 28rem),
    linear-gradient(180deg, #07101d 0%, #091522 45%, #07101d 100%);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
p { color: var(--muted); margin: 0 0 1rem; }
h1, h2, h3 { margin: 0; line-height: 1.06; letter-spacing: -0.04em; }
h1 { font-size: clamp(3rem, 7vw, 6.7rem); max-width: 11ch; }
h2 { font-size: clamp(2.2rem, 4vw, 4.1rem); }
h3 { font-size: 1.18rem; letter-spacing: -0.02em; }
ul { margin: 0; padding: 0; list-style: none; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--gold);
  color: #07101d;
  padding: .7rem 1rem;
  border-radius: 999px;
  z-index: 100;
}
.skip-link:focus { left: 10px; }

.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(820px, calc(100% - 40px)); }
.section { padding: 92px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 16, 29, .76);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.site-header.compact { position: relative; }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; }
.brand-logo {
  display: block;
  width: 142px;
  height: auto;
  max-height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(25, 119, 255, .18));
}
.footer-brand .brand-logo { width: 168px; max-height: 78px; }

.brand-mark {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border: 1px solid rgba(43, 140, 255, .45);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(43, 140, 255, .22), rgba(137, 215, 255, .14));
  color: var(--gold);
  box-shadow: inset 0 1px rgba(255,255,255,.25);
}
.brand small { display: block; color: var(--muted); font-size: .78rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 24px; color: var(--muted); font-size: .94rem; }
.nav a:hover { color: var(--text); }
.nav-cta { color: var(--bg) !important; background: var(--gold); padding: .72rem 1rem; border-radius: 999px; font-weight: 700; }
.nav-toggle { display: none; border: 1px solid var(--line); background: var(--panel); color: var(--text); border-radius: 12px; padding: .55rem .75rem; }

.hero { padding-top: 110px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .62fr); gap: 54px; align-items: center; }
.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: .15em; font-weight: 800; font-size: .78rem; margin-bottom: 1rem; }
.lead { font-size: clamp(1.1rem, 1.8vw, 1.35rem); max-width: 720px; margin-top: 1.6rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 2rem; }
.btn {
  display: inline-flex; justify-content: center; align-items: center; gap: .5rem;
  min-height: 48px;
  padding: .85rem 1.18rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: linear-gradient(135deg, var(--gold), #75bbff); color: #101827; box-shadow: 0 14px 35px rgba(43,140,255,.18); }
.btn.secondary { background: rgba(255, 255, 255, .06); border-color: var(--line); color: var(--text); }
.btn.full { width: 100%; }
.btn.small { min-height: 36px; padding: .5rem .85rem; font-size: .85rem; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.8rem; }
.trust-row span { color: var(--muted); border: 1px solid var(--line); padding: .45rem .7rem; border-radius: 999px; background: rgba(255,255,255,.04); font-size: .88rem; }

.hero-card, .service-card, .price-card, .compliance-card, .cta-card, .contact-form, .legal-page .narrow {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.045));
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.hero-card { position: relative; overflow: hidden; padding: 32px; }
.card-glow { position: absolute; inset: -120px -70px auto auto; width: 240px; height: 240px; background: radial-gradient(circle, rgba(137,215,255,.35), transparent 68%); }
.card-label { color: var(--blue); font-weight: 800; text-transform: uppercase; letter-spacing: .14em; font-size: .75rem; }
.hero-card h2 { font-size: 2.2rem; margin-bottom: 1.4rem; }
.check-list { display: grid; gap: .7rem; margin: 1.1rem 0; }
.check-list li { position: relative; padding-left: 1.55rem; color: var(--muted); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 1.5rem 0; }
.metric-grid div { padding: 16px; background: rgba(0,0,0,.16); border: 1px solid var(--line); border-radius: 18px; }
.metric-grid strong { display: block; font-size: 2rem; color: var(--text); line-height: 1; }
.metric-grid span { color: var(--muted); font-size: .88rem; }
.fine-print, .form-note, .updated { font-size: .9rem; color: #8fa0b5; }

.logos-strip { padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.025); }
.strip-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; text-align: center; color: var(--muted); font-weight: 800; font-size: .88rem; text-transform: uppercase; letter-spacing: .08em; }

.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head p:last-child { font-size: 1.05rem; }
.cards.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { padding: 26px; min-height: 245px; }
.icon { display: inline-flex; color: var(--gold); font-weight: 900; margin-bottom: 1.2rem; }
.service-card h3 { margin-bottom: .9rem; }
.service-card p { font-size: .97rem; }

.muted { background: rgba(255,255,255,.035); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-grid { display: grid; grid-template-columns: .82fr 1fr; gap: 60px; }
.timeline { display: grid; gap: 14px; }
.timeline-item { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 18px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.05); }
.timeline-item span { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; background: rgba(43,140,255,.15); color: var(--gold); font-weight: 900; }
.timeline-item p { margin-top: .4rem; margin-bottom: 0; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card { position: relative; padding: 28px; }
.price-card.featured { border-color: rgba(43,140,255,.52); transform: translateY(-10px); }
.badge { display: inline-flex; color: var(--bg); background: var(--gold); padding: .35rem .65rem; border-radius: 999px; font-size: .76rem; font-weight: 900; margin-bottom: 1rem; }
.price { font-size: 2.2rem; color: var(--text); font-weight: 900; letter-spacing: -0.05em; margin: 1rem 0 .6rem; }

.compliance-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 36px; align-items: center; }
.inline-link { color: var(--gold); font-weight: 800; }
.compliance-card { padding: 30px; }
.x-list { display: grid; gap: .75rem; margin-top: 1rem; }
.x-list li { position: relative; padding-left: 1.55rem; color: var(--muted); }
.x-list li::before { content: "×"; position: absolute; left: 0; color: var(--danger); font-weight: 900; }

.cta-section { padding: 70px 0; }
.cta-card { padding: 36px; display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.cta-card h2 { max-width: 700px; font-size: clamp(2rem, 3.5vw, 3.6rem); }

.contact-grid { display: grid; grid-template-columns: .85fr 1fr; gap: 44px; }
.contact-details { margin-top: 1.5rem; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.04); }
.contact-details p { margin-bottom: .55rem; }
.contact-form { padding: 28px; display: grid; gap: 16px; }
label { display: grid; gap: 8px; font-weight: 750; color: var(--text); }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(0,0,0,.18);
  color: var(--text);
  padding: 1rem;
  font: inherit;
  outline: none;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: rgba(43,140,255,.75); box-shadow: 0 0 0 4px rgba(43,140,255,.1); }
.checkbox { grid-template-columns: 18px 1fr; align-items: start; font-weight: 500; color: var(--muted); font-size: .92rem; }
.checkbox input { width: 18px; height: 18px; margin-top: 3px; }

.site-footer { border-top: 1px solid var(--line); background: #050b14; padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr 1fr; gap: 32px; }
.footer-grid a { display: block; color: var(--muted); margin-bottom: .5rem; }
.footer-grid a:hover { color: var(--text); }
.footer-grid h3 { margin-bottom: 1rem; font-size: 1rem; }
.footer-brand { margin-bottom: 1rem; }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 36px; padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; color: var(--muted); }
.small-footer { padding-top: 0; }

.legal-page { padding: 60px 0 80px; }
.legal-page .narrow { padding: clamp(28px, 5vw, 54px); }
.legal-page h1 { max-width: none; font-size: clamp(2.4rem, 5vw, 4.2rem); }
.legal-page h2 { font-size: 1.35rem; margin-top: 2rem; margin-bottom: .7rem; letter-spacing: -0.02em; }
.legal-page a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  display: none;
  max-width: 760px;
  margin: 0 auto;
  padding: 14px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(7,16,29,.92);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.cookie-banner.show { display: flex; }
.cookie-banner p { margin: 0; font-size: .9rem; }
.cookie-banner a { color: var(--gold); text-decoration: underline; }

@media (max-width: 920px) {
  .nav-toggle { display: inline-flex; }
  .nav:not(.static) {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: rgba(7,16,29,.98);
    border: 1px solid var(--line);
    border-radius: 20px;
  }
  .nav.open { display: flex; }
  .nav.static { gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
  .hero-grid, .process-grid, .compliance-grid, .contact-grid { grid-template-columns: 1fr; }
  .cards.three, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .price-card.featured { transform: none; }
  .strip-grid { grid-template-columns: 1fr 1fr; }
  .cta-card { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .brand-logo { width: 118px; max-height: 54px; }
  .container { width: min(100% - 28px, 1160px); }
  .section { padding: 64px 0; }
  .hero { padding-top: 72px; }
  .cards.three, .pricing-grid, .strip-grid { grid-template-columns: 1fr; }
  .hero-card, .service-card, .price-card, .compliance-card, .cta-card, .contact-form { border-radius: 20px; padding: 22px; }
  .metric-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .cookie-banner { align-items: stretch; flex-direction: column; }
}
