:root {
  color-scheme: dark;
  --bg: #07111f;
  --bg-soft: #0d1a2e;
  --card: rgba(255, 255, 255, 0.075);
  --card-strong: rgba(255, 255, 255, 0.11);
  --line: rgba(255, 255, 255, 0.16);
  --text: #f6f9ff;
  --muted: #b7c4d8;
  --muted-2: #8ea0bb;
  --brand: #52f7d2;
  --brand-2: #7c5cff;
  --warm: #ffcf66;
  --danger: #ff7a90;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.36);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 8% 4%, rgba(82, 247, 210, .18), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(124, 92, 255, .22), transparent 30rem),
    radial-gradient(circle at 50% 72%, rgba(255, 207, 102, .08), transparent 28rem),
    linear-gradient(180deg, #07111f 0%, #0a1324 45%, #07111f 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 999;
  padding: .75rem 1rem;
  background: var(--brand);
  color: #04101c;
  border-radius: 999px;
  transform: translateY(-200%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(7, 17, 31, .78);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: .78rem;
  font-weight: 900;
  letter-spacing: -.03em;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #06111e;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 14px 36px rgba(82, 247, 210, .2);
}

.logo-mark svg { width: 25px; height: 25px; }

.brand-text { display: grid; line-height: 1.05; }
.brand-text small { color: var(--muted-2); font-size: .74rem; letter-spacing: .04em; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  padding: .36rem;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
}

.nav-links a {
  padding: .65rem .88rem;
  color: var(--muted);
  font-size: .94rem;
  border-radius: 999px;
  transition: color .18s ease, background .18s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, .08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: .7rem;
}

.lang-switch {
  display: inline-flex;
  gap: .25rem;
  padding: .28rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
}

.lang-switch a {
  min-width: 42px;
  text-align: center;
  padding: .48rem .66rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
  font-size: .82rem;
}

.lang-switch a[aria-current="page"] {
  color: #05111e;
  background: var(--brand);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
}

.btn {
  --btn-bg: rgba(255,255,255,.08);
  --btn-fg: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  padding: .82rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 850;
  letter-spacing: -.01em;
  box-shadow: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .32);
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}

.btn-primary {
  --btn-bg: linear-gradient(135deg, var(--brand), var(--brand-2));
  --btn-fg: #04101c;
  border-color: transparent;
  box-shadow: 0 20px 46px rgba(82, 247, 210, .16);
}

.btn-ghost {
  background: rgba(255,255,255,.06);
}

.btn-small { min-height: 42px; padding: .62rem .88rem; font-size: .92rem; }

.icon { width: 1.05em; height: 1.05em; flex: 0 0 auto; }

.hero {
  position: relative;
  padding: clamp(4rem, 7vw, 7.5rem) 0 clamp(3rem, 6vw, 6rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .86fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .42rem .75rem;
  border: 1px solid rgba(82, 247, 210, .26);
  border-radius: 999px;
  color: #c8fff4;
  background: rgba(82, 247, 210, .08);
  font-weight: 800;
  font-size: .92rem;
}

.eyebrow::before {
  content: "";
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 .45rem rgba(82,247,210,.14);
}

h1, h2, h3 { line-height: 1.08; margin: 0; letter-spacing: -.045em; }

.hero h1 {
  margin-top: 1.2rem;
  max-width: 820px;
  font-size: clamp(2.75rem, 7.2vw, 6.35rem);
}

.text-gradient {
  color: transparent;
  background: linear-gradient(135deg, var(--brand), #e6f7ff 44%, var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy {
  max-width: 720px;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .8rem;
  margin-top: 2rem;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
  max-width: 720px;
  margin-top: 2rem;
}

.trust-item {
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  background: rgba(255,255,255,.05);
}

.trust-item strong { display: block; font-size: 1.2rem; }
.trust-item span { color: var(--muted-2); font-size: .92rem; }

.hero-card {
  position: relative;
  padding: .85rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(82, 247, 210, .38), transparent 42%, rgba(124, 92, 255, .34));
  opacity: .75;
}

.hero-card img {
  width: 100%;
  border-radius: 26px;
  background: #07111f;
}

.float-card {
  position: absolute;
  display: grid;
  gap: .15rem;
  min-width: 178px;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  background: rgba(8, 18, 32, .78);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 56px rgba(0,0,0,.32);
  animation: floaty 5.2s ease-in-out infinite;
}

.float-card strong { color: var(--text); font-size: .98rem; }
.float-card span { color: var(--muted-2); font-size: .85rem; }
.float-card.one { left: -24px; bottom: 38px; }
.float-card.two { right: -22px; top: 48px; animation-delay: -1.2s; }

@keyframes floaty {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.section { padding: clamp(3.5rem, 7vw, 6.8rem) 0; }

.section-head {
  display: grid;
  gap: .9rem;
  max-width: 790px;
  margin-bottom: 2rem;
}

.section-kicker {
  color: var(--brand);
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-size: .78rem;
}

.section h2 { font-size: clamp(2rem, 4.4vw, 4rem); }
.section-head p { color: var(--muted); margin: 0; font-size: 1.08rem; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  position: relative;
  padding: clamp(1.1rem, 2vw, 1.45rem);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.045));
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at top right, rgba(82,247,210,.14), transparent 44%);
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 18px;
  color: #07111f;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.service-icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.28rem; margin-bottom: .55rem; }
.card p { color: var(--muted); margin: 0; }

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1rem;
}

.tag-cloud span {
  padding: .42rem .62rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  color: #dbe6f6;
  background: rgba(255,255,255,.05);
  font-size: .84rem;
  font-weight: 750;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: start;
}

.panel {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-pad { padding: clamp(1.2rem, 3vw, 2rem); }

.check-list {
  display: grid;
  gap: .9rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: .75rem;
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #06111e;
  background: var(--brand);
  font-weight: 950;
  line-height: 1;
}

.process-list {
  display: grid;
  gap: .8rem;
  counter-reset: process;
}

.process-step {
  counter-increment: process;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  background: rgba(255,255,255,.045);
}

.process-step::before {
  content: counter(process, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: var(--brand);
  background: rgba(82,247,210,.08);
  border: 1px solid rgba(82,247,210,.18);
  font-weight: 950;
}

.process-step h3 { margin-bottom: .2rem; font-size: 1.08rem; }
.process-step p { margin: 0; color: var(--muted); }

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(82,247,210,.22), transparent 24rem),
    radial-gradient(circle at bottom right, rgba(124,92,255,.25), transparent 22rem),
    rgba(255,255,255,.07);
  box-shadow: var(--shadow);
}

.cta-band-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.cta-band h2 { font-size: clamp(1.65rem, 4vw, 3rem); }
.cta-band p { margin: .75rem 0 0; color: var(--muted); max-width: 760px; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.price-card {
  padding: 1.4rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.055);
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(82,247,210,.13), rgba(124,92,255,.1));
  border-color: rgba(82,247,210,.28);
}

.price-card h3 { font-size: 1.22rem; }
.price-note { color: var(--muted-2); font-size: .92rem; margin: .35rem 0 1rem; }
.price-card strong { display: block; font-size: 2rem; letter-spacing: -.04em; margin-bottom: .6rem; }
.price-card ul { padding-left: 1.15rem; color: var(--muted); margin: 0 0 1.2rem; }

.faq-list {
  display: grid;
  gap: .75rem;
}

.faq-item {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.055);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 850;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin: 0; padding: 0 1.15rem 1.1rem; color: var(--muted); }

.site-footer {
  padding: 3rem 0 6rem;
  border-top: 1px solid rgba(255,255,255,.09);
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr .7fr;
  gap: 1.5rem;
}

.footer-grid h2,
.footer-grid h3 { color: var(--text); letter-spacing: -.03em; }
.footer-grid p { margin: .5rem 0 0; max-width: 640px; }
.footer-links { display: grid; gap: .45rem; margin-top: .7rem; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--brand); }

.sticky-contact {
  position: fixed;
  z-index: 80;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  display: flex;
  gap: .6rem;
  padding: .55rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  background: rgba(7,17,31,.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 70px rgba(0,0,0,.35);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 1050px) {
  .nav-links {
    position: absolute;
    top: calc(100% + .7rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: .75rem;
    border-radius: 24px;
    background: rgba(7,17,31,.96);
    box-shadow: var(--shadow);
  }
  .nav-links a { text-align: center; }
  .nav-links.is-open { display: flex; }
  .menu-toggle { display: block; }
  .nav-cta { display: none; }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero-visual { max-width: 720px; margin-inline: auto; }
}

@media (max-width: 820px) {
  .grid-3, .price-grid, .footer-grid, .trust-row { grid-template-columns: 1fr; }
  .cta-band-inner { align-items: stretch; flex-direction: column; }
  .cta-band-inner .btn { width: 100%; }
  .float-card { position: static; margin: .75rem; animation: none; }
  .hero-card { display: grid; gap: .2rem; }
  .hero-actions .btn { width: 100%; }
  .sticky-contact { width: calc(100% - 2rem); border-radius: 22px; }
  .sticky-contact .btn { flex: 1; padding-inline: .7rem; }
}

@media (max-width: 540px) {
  .container { width: min(100% - 1.1rem, var(--container)); }
  .nav { min-height: 68px; }
  .brand-text small { display: none; }
  .brand-lockup { font-size: .98rem; }
  .logo-mark { width: 38px; height: 38px; }
  .lang-switch a { min-width: 36px; padding-inline: .5rem; }
  .hero { padding-top: 3rem; }
  .hero h1 { font-size: clamp(2.35rem, 13vw, 3.2rem); }
  .section { padding-block: 3.2rem; }
  .process-step { grid-template-columns: 1fr; }
  .process-step::before { width: 46px; height: 46px; }
}
