:root {
  --bg: #061b28;
  --bg-deep: #03131d;
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --soft: rgba(255, 255, 255, 0.48);
  --line: rgba(255, 255, 255, 0.105);
  --line-bright: rgba(103, 224, 255, 0.22);
  --cyan: #08a9e5;
  --cyan-light: #67e0ff;
  --panel: rgba(255, 255, 255, 0.052);
  --panel-strong: rgba(255, 255, 255, 0.075);
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
  --radius: 12px;
  --radius-lg: 20px;
  --max: 1120px;
  --header-height: 82px;
}

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

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

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 20% -10%, rgba(8, 169, 229, 0.14), transparent 28%),
    radial-gradient(circle at 100% 20%, rgba(8, 169, 229, 0.09), transparent 32%),
    var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(3, 19, 29, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-link { display: inline-flex; align-items: center; min-width: 0; }
.site-logo { height: 54px; width: auto; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.70);
  font-size: 14px;
}

.nav-links a {
  position: relative;
  transition: color 300ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--cyan);
  transition: width 320ms ease;
}

.nav-links a:hover,
.nav-links a.active { color: white; }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 12px; }

.header-phone {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  transition: color 300ms ease;
}

.header-phone:hover { color: white; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform 420ms ease,
    background 420ms ease,
    border-color 420ms ease,
    color 420ms ease,
    box-shadow 420ms ease;
}

.btn:hover { transform: translateY(-3px); }

.btn-primary {
  background: linear-gradient(135deg, #11b8ee, #0796d4);
  color: var(--bg-deep);
  box-shadow: 0 16px 42px rgba(8, 169, 229, 0.21);
}

.btn-primary:hover {
  background: white;
  box-shadow: 0 20px 48px rgba(255, 255, 255, 0.12);
}

.btn-white { background: white; color: var(--bg-deep); }
.btn-white:hover { background: #dff7ff; }

.btn-ghost {
  background: rgba(255, 255, 255, 0.052);
  border-color: rgba(255, 255, 255, 0.14);
  color: white;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(103, 224, 255, 0.28);
}

.hero-wrap {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(3, 19, 29, 0.28), rgba(6, 27, 40, 0.96)),
    var(--bg);
}

.hero-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 14%, rgba(8, 169, 229, 0.25), transparent 32%),
    radial-gradient(circle at 10% 82%, rgba(8, 169, 229, 0.10), transparent 28%);
  pointer-events: none;
}

.hero-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 74%);
  pointer-events: none;
}

.hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 64px;
  align-items: center;
  padding: 104px 0 118px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  padding: 9px 15px;
  border: 1px solid rgba(103, 224, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.048);
  color: #d9f8ff;
  font-size: 14px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(8, 169, 229, 0.9);
}

h1 {
  max-width: 790px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.058em;
  font-weight: 900;
}

.accent-text { color: #9cecff; }

.hero p {
  margin-top: 26px;
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.mini-proof span {
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
}

.hero-visual { position: relative; }

.hero-logo-panel {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 390px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.085), rgba(255,255,255,0.026)),
    var(--bg-deep);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-logo-panel::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 999px;
  background: rgba(8, 169, 229, 0.15);
  filter: blur(48px);
  transform: translate(18%, -20%);
}

.hero-logo-panel::after {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.075);
  pointer-events: none;
}

.hero-product-img {
  position: relative;
  z-index: 2;
  width: min(670px, 94%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 40px rgba(0,0,0,0.28));
}

.floating-badge {
  position: absolute;
  z-index: 3;
  left: 26px;
  bottom: -22px;
  max-width: 270px;
  padding: 16px 17px;
  border: 1px solid rgba(103, 224, 255, 0.20);
  border-radius: 15px;
  background: rgba(3, 19, 29, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 55px rgba(0,0,0,0.28);
}

.floating-badge strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.floating-badge span {
  display: block;
  color: var(--muted-soft);
  font-size: 13px;
  line-height: 1.55;
}

section { padding: 98px 0; }
.section-head { max-width: 760px; }

.section-kicker {
  color: var(--cyan-light);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h2 {
  margin-top: 14px;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.section-intro {
  margin-top: 18px;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 18px;
  line-height: 1.8;
}

.services-panel { margin-top: 52px; border-top: 1px solid var(--line); }

.service-row {
  display: grid;
  grid-template-columns: 188px 1fr 44px;
  gap: 34px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  transition: border-color 360ms ease, transform 360ms ease, background 360ms ease;
}

.service-row:hover { border-color: rgba(103, 224, 255, 0.24); transform: translateX(4px); }

.service-label {
  color: var(--cyan-light);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-row h3 { font-size: 24px; letter-spacing: -0.02em; margin-bottom: 7px; }

.service-row p {
  max-width: 730px;
  color: var(--muted);
  line-height: 1.75;
}

.service-arrow {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--cyan-light);
  background: rgba(8, 169, 229, 0.105);
  transition: transform 360ms ease, background 360ms ease;
}

.service-row:hover .service-arrow { transform: translateX(4px); background: rgba(8, 169, 229, 0.16); }

.split-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 8%, rgba(8,169,229,0.10), transparent 27%),
    linear-gradient(180deg, rgba(255,255,255,0.026), rgba(255,255,255,0.042));
}

.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 62px;
  align-items: center;
}

.product-stage {
  position: relative;
  min-height: 340px;
  display: grid;
  place-items: center;
}

.product-stage::before {
  content: "";
  position: absolute;
  inset: 14% 4% 10%;
  background: rgba(8, 169, 229, 0.12);
  filter: blur(55px);
  border-radius: 999px;
}

.product-stage img {
  position: relative;
  z-index: 2;
  width: min(640px, 100%);
  filter: drop-shadow(0 24px 38px rgba(0,0,0,0.28));
}

.simple-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 28px;
}

.simple-list-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.82);
}

.check {
  display: grid;
  place-items: center;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(8, 169, 229, 0.16);
  color: var(--cyan-light);
  font-size: 13px;
  font-weight: 900;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 50px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-step {
  padding: 36px 30px;
  border-right: 1px solid var(--line);
}

.process-step:last-child { border-right: 0; }

.step-number {
  color: var(--cyan-light);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.process-step h3 { font-size: 22px; margin-bottom: 10px; letter-spacing: -0.02em; }
.process-step p { color: var(--muted); line-height: 1.72; }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 78px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 14%, rgba(8,169,229,0.18), transparent 32%),
    linear-gradient(180deg, rgba(3,19,29,0.34), rgba(6,27,40,0.95));
}

.page-hero h1 { max-width: 820px; }
.page-hero p {
  margin-top: 22px;
  max-width: 740px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.content-section {
  max-width: 850px;
  margin: 0 auto;
}

.content-section h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-top: 36px;
}

.content-section h2:first-child { margin-top: 0; }

.content-section p,
.content-section li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.content-section p { margin-top: 18px; }

.content-section ul {
  margin-top: 18px;
  padding-left: 22px;
}

.content-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.045);
  padding: 36px;
}

.visit-section {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 18%, rgba(8,169,229,0.13), transparent 30%),
    var(--bg-deep);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 0.94fr;
  gap: 56px;
  align-items: center;
}

.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.03));
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(0,0,0,0.18);
}

.contact-row {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 18px;
  padding: 23px 24px;
  border-bottom: 1px solid var(--line);
}

.contact-row:last-child { border-bottom: 0; }

.contact-label {
  color: var(--cyan-light);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.contact-value,
.contact-value a {
  color: rgba(255, 255, 255, 0.80);
  transition: color 300ms ease;
}

.contact-value a:hover { color: white; }

.final-cta {
  padding: 60px 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 10%, rgba(8, 169, 229, 0.14), transparent 30%),
    var(--bg);
}

.final-cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.final-cta h2 { margin: 0; font-size: clamp(28px, 4vw, 42px); }
.final-cta p { margin-top: 10px; color: var(--muted); line-height: 1.7; }

footer {
  border-top: 1px solid var(--line);
  background: var(--bg-deep);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
}

.footer-logo { height: 42px; width: auto; object-fit: contain; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { transition: color 300ms ease; }
.footer-links a:hover { color: white; }


.sms-consent-note {
  grid-column: 1 / -1;
  margin: 0 24px 22px;
  padding: 14px 16px;
  border: 1px solid rgba(103, 224, 255, 0.14);
  border-radius: 10px;
  background: rgba(3, 19, 29, 0.34);
  color: rgba(255, 255, 255, 0.64);
  font-size: 11.5px;
  line-height: 1.55;
}

.sms-consent-note strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sms-consent-note-hero {
  max-width: 650px;
  margin: 16px 0 0;
}

.cta-phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  max-width: 520px;
}

.sms-consent-note-compact {
  width: min(520px, 100%);
  margin: 0;
  text-align: left;
}

.sms-consent-note-page {
  margin-top: 16px;
}

@media (max-width: 900px) {
  :root { --header-height: 76px; }

  .nav-links,
  .header-phone { display: none; }

  .site-logo { height: 48px; }

  .hero,
  .split-grid,
  .visit-grid { grid-template-columns: 1fr; }

  .hero { padding: 72px 0 92px; }

  .service-row {
    grid-template-columns: 1fr 36px;
    gap: 18px;
  }

  .service-label { grid-column: 1 / -1; }

  .process-line { grid-template-columns: 1fr; }

  .process-step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-step:last-child { border-bottom: 0; }

  .final-cta-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-phone-wrap {
    align-items: flex-start;
    max-width: none;
  }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, var(--max)); }
  .site-logo { height: 40px; }
  .header-actions .btn { display: none; }

  section { padding: 74px 0; }
  .hero { padding: 60px 0 78px; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn,
  .final-cta-box .btn,
  .cta-phone-wrap { width: 100%; }

  .hero-logo-panel {
    min-height: 250px;
    border-radius: 18px;
  }

  .floating-badge {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 14px;
    max-width: none;
  }

  .service-row { padding: 27px 0; }
  .service-row h3 { font-size: 22px; }
  .contact-row { grid-template-columns: 1fr; gap: 8px; }
  .content-card { padding: 24px; }

  .sms-consent-note {
    margin-left: 20px;
    margin-right: 20px;
  }

  .sms-consent-note-hero,
  .sms-consent-note-compact {
    margin-left: 0;
    margin-right: 0;
  }

  .footer-logo { height: 34px; }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}