:root {
  --bg: #070b14;
  --bg-elev: #0c1524;
  --navy: #12203a;
  --panel: rgba(16, 32, 56, 0.72);
  --gold: #e4c27a;
  --gold-deep: #c9a227;
  --cyan: #5ee7f2;
  --cyan-deep: #2bc4d4;
  --cream: #f3ead8;
  --text: #e9eef6;
  --muted: #9aa8bd;
  --line: rgba(228, 194, 122, 0.18);
  --orange: #ff9f1c;
  --danger: #ff6b6b;
  --ok: #3ee0a3;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --max: 1180px;
  --header: 78px;
  --font-display: "Sora", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(94, 231, 242, 0.08), transparent 50%),
    radial-gradient(900px 420px at 10% 0%, rgba(228, 194, 122, 0.09), transparent 45%),
    linear-gradient(180deg, #070b14 0%, #0a1422 40%, #070b14 100%);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}

img, svg { max-width: 100%; display: block; }
img { outline: 1px solid rgba(255,255,255,0.08); outline-offset: -1px; }
a { color: var(--cyan); text-decoration: none; }
a:hover { color: var(--gold); }
button, .btn { cursor: pointer; font-family: inherit; }

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--cyan);
  color: #041018;
  padding: 8px 12px;
  z-index: 100;
}
.skip:focus { left: 8px; }

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.topbar {
  background: #05080f;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(7, 11, 20, 0.78);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
}
.brand img { width: 168px; height: 38px; outline: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a {
  color: #d7deea;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #041018;
  background: var(--cream);
}

.nav-cta { display: flex; gap: 8px; align-items: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }

.btn-cyan {
  background: linear-gradient(180deg, #7af0f8, var(--cyan-deep));
  color: #041018;
  box-shadow: 0 8px 24px rgba(94, 231, 242, 0.25);
}
.btn-gold {
  background: linear-gradient(180deg, #f6e2a8, var(--gold-deep));
  color: #2a1c05;
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--line);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--cream);
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.hero { padding: 28px 0 8px; }

.hero-panel {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 56px 28px 48px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(8, 18, 34, 0.82), rgba(7, 11, 20, 0.78)),
    url("/assets/mylaser247-hero.jpg") center/cover no-repeat;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(94,231,242,0.12), transparent 42%);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; }

.app-badge {
  width: 112px;
  height: 112px;
  border-radius: 26px;
  margin: 0 auto 22px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.18);
}
.app-badge img { width: 100%; height: 100%; object-fit: cover; outline: none; }

h1, h2, h3, .display {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--cream);
  text-wrap: balance;
}

h1 {
  font-size: clamp(2rem, 5.2vw, 3.6rem);
  margin: 10px auto 14px;
  font-weight: 700;
  letter-spacing: -0.03em;
  max-width: 18ch;
  text-transform: uppercase;
}

.lede {
  font-size: 1.06rem;
  color: #c5d0e0;
  max-width: 62ch;
  margin: 0 auto;
  text-wrap: pretty;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
  justify-content: center;
}

.pill {
  border: 1px solid rgba(94,231,242,0.28);
  color: #d7f8fb;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(4, 16, 24, 0.55);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 18px auto 36px;
}

.stat {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  text-align: center;
}
.stat b {
  display: block;
  font-size: 1.5rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
}
.stat span { color: var(--muted); font-size: 13px; }

section { padding: 28px 0 12px; }
.section-head { max-width: 70ch; margin-bottom: 22px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); }

h2 {
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.prose p { color: #c9d4e4; max-width: 78ch; }
.prose h2, .prose h3 { margin-top: 1.4em; }

.grid-3, .grid-2, .grid-6 { display: grid; gap: 16px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

.card {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.16);
}
.card h3 { margin: 0 0 8px; font-size: 1.12rem; text-transform: none; }
.card p { margin: 0; color: var(--muted); }

.icon-orb {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(94,231,242,0.1);
  color: var(--cyan);
  margin-bottom: 12px;
}

.steps { counter-reset: step; }
.step { position: relative; }
.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: #2a1c05;
  font-weight: 700;
  margin-bottom: 10px;
}

.schema-graph {
  background:
    radial-gradient(circle at 20% 20%, rgba(94,231,242,0.08), transparent 28%),
    var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px 18px 18px;
  overflow: auto;
}
.schema-svg { width: 100%; min-width: 760px; height: auto; }
.schema-caption { color: var(--muted); font-size: 13px; margin-top: 8px; }

table.data {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 16px;
}
table.data th, table.data td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
table.data th { color: var(--gold); font-weight: 650; }
table.data td { color: #c5d0e0; }
table.data tr:nth-child(even) td { background: rgba(255,255,255,0.02); }

.faq details {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 10px;
}
.faq summary { cursor: pointer; font-weight: 700; color: var(--cream); }
.faq p { margin: 10px 0 0; color: var(--muted); }

.trust-list { color: #c5d0e0; }
.updated { color: var(--gold); font-size: 13px; }

.cta-band {
  margin: 36px 0;
  border-radius: 28px;
  padding: 36px 28px;
  background: linear-gradient(120deg, #16324f, #0e1c31 45%, #1b3a3f);
  border: 1px solid rgba(94,231,242,0.18);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.answer-block {
  background: var(--panel);
  border-left: 3px solid var(--cyan);
  border-radius: 0 18px 18px 0;
  padding: 18px 20px;
  color: #c9d4e4;
  max-width: 78ch;
}

.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  margin-top: 28px;
}
.hero-photo {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }

footer.site {
  margin-top: 48px;
  background: #05080f;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 40px 0 24px;
  color: var(--muted);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 24px;
}

footer h3 {
  color: var(--cream);
  font-size: 0.95rem;
  margin: 0 0 12px;
  font-family: var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 8px; }
footer a { color: #b7c3d6; }
.legal {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 13px;
}

.page-hero { padding: 48px 0 12px; }
.crumbs { color: var(--muted); font-size: 13px; margin-bottom: 10px; }
.crumbs a { color: var(--gold); }

form.contact { display: grid; gap: 12px; max-width: 560px; }
label { font-size: 13px; color: var(--cream); }
.field {
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 13px 16px;
  background: #f4f7fb;
  color: #132033;
  font-size: 15px;
}
textarea.field { min-height: 140px; resize: vertical; }
.field:focus { outline: 2px solid var(--cyan); }
.form-ok { color: var(--ok); display: none; }
.form-ok.show { display: block; }

.legal-doc h2 { font-size: 1.35rem; text-transform: none; }
.legal-doc li { margin-bottom: 8px; }

@media (max-width: 980px) {
  .hero-split, .grid-3, .grid-2, .stats, .foot-grid, .cta-band, .grid-6 {
    grid-template-columns: 1fr;
  }
  .nav-links, .nav-cta { display: none; }
  .nav-links.open, .nav-cta.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(var(--header) + 28px);
    background: #0c1524;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid var(--line);
    z-index: 60;
  }
  .menu-toggle { display: grid; place-items: center; }
}

.wa-float {
  position: fixed !important;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid !important;
  place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.wa-float:hover,
.wa-float:focus-visible {
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.5);
}
.wa-float:focus-visible {
  outline: 2px solid #7af0f8;
  outline-offset: 3px;
}
.wa-float svg {
  width: 30px;
  height: 30px;
  outline: none;
}
.wa-float-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
  .wa-float { transition: none; }
}
