:root {
  --bg: #08111f;
  --surface: #0f1b31;
  --surface-2: #101f3c;
  --text: #111827;
  --muted: #64748b;
  --line: #d8e1ef;
  --brand: #2d65ff;
  --brand-2: #57a6ff;
  --white: #ffffff;
  --light: #f5f8fc;
  --radius: 22px;
  --shadow: 0 20px 60px rgba(8, 17, 31, 0.12);
}
* { 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;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(840px, 100%); }
.center-text { text-align: center; }
.section { padding: 88px 0; }
.section-muted { background: var(--light); }
.section-dark { background: linear-gradient(180deg, #091221, #0c1830); color: var(--white); }
.site-main { overflow: clip; }
.eyebrow {
  display: inline-block;
  font-size: .84rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 14px;
}
.section-dark .eyebrow, .light .eyebrow { color: #8ec5ff; }
h1, h2, h3 { line-height: 1.12; margin: 0 0 16px; }
h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); letter-spacing: -0.02em; }
h3 { font-size: 1.15rem; }
p { margin: 0 0 14px; }
.lead { font-size: 1.15rem; color: #42526b; }
.section-dark .lead, .light .lead { color: rgba(255,255,255,.82); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: var(--white); box-shadow: 0 12px 30px rgba(45,101,255,.26); }
.button-secondary { border-color: #cad6ea; color: var(--text); background: var(--white); }
.section-dark .button-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,.22); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,.82);
  border-bottom: 1px solid rgba(216,225,239,.8);
}
.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.site-brand {
  font-weight: 900;
  letter-spacing: .06em;
  font-size: 1.1rem;
}
.site-nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.nav-link { color: #42526b; font-weight: 600; }
.nav-link.is-active, .nav-link:hover { color: var(--brand); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lang-link { font-weight: 700; color: #64748b; }
.lang-link.is-active { color: var(--brand); }
.lang-sep { color: #94a3b8; }
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  width: 40px;
  height: 40px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #0f172a;
  margin: 5px auto;
}
.hero {
  background: radial-gradient(circle at top left, rgba(45,101,255,.08), transparent 38%), linear-gradient(180deg, #ffffff, #f6f9fe);
}
.hero-grid, .split-block, .cta-grid, .hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.hero-copy .lead { max-width: 58ch; }
.hero-points, .check-list, .footer-links { list-style: none; padding: 0; margin: 22px 0 0; }
.hero-points li, .check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}
.hero-points li::before, .check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: inset 0 0 0 4px rgba(255,255,255,.75);
}
.hero-media img, .split-media img {
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.section-heading { margin-bottom: 34px; }
.section-heading.center { text-align: center; }
.card-grid {
  display: grid;
  gap: 22px;
}
.three-up { grid-template-columns: repeat(3, minmax(0,1fr)); }
.four-up { grid-template-columns: repeat(4, minmax(0,1fr)); }
.info-card, .product-card, .feature-card, .contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.info-card, .product-card { padding: 24px; }
.product-card img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin-bottom: 18px;
}
.section-dark .info-card {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.09);
  box-shadow: none;
}
.section-dark .info-card p { color: rgba(255,255,255,.8); }
.feature-grid { display: grid; gap: 26px; }
.feature-card.horizontal {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  padding: 24px;
  align-items: center;
}
.feature-card.horizontal img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 16px;
  background: #f8fbff;
}
.phone-sequence {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 32px;
  align-items: center;
}
.phone-sequence-visual {
  display: flex;
  justify-content: center;
}
.phone-shell {
  position: relative;
  width: min(330px, 100%);
  padding: 16px 16px 18px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 30px 80px rgba(0,0,0,.22);
}
.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 38%;
  height: 22px;
  border-radius: 999px;
  background: rgba(8,17,31,.85);
  z-index: 2;
}
.phone-sequence-screen {
  display: block;
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(0,0,0,.24);
  transition: opacity .38s ease, transform .38s ease, filter .38s ease;
}
.phone-sequence-screen.is-changing {
  opacity: .1;
  transform: scale(.985);
  filter: blur(1px);
}
.phone-sequence-copy {
  display: grid;
  gap: 20px;
}
.phone-sequence-status {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  padding: 22px;
}
.phone-sequence-step-label {
  display: inline-block;
  color: rgba(255,255,255,.64);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}
.phone-sequence-step-title {
  display: block;
  font-size: 1.45rem;
  margin-bottom: 10px;
}
.phone-sequence-step-text {
  color: rgba(255,255,255,.8);
  margin: 0;
}
.phone-step-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.phone-step {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  width: 100%;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  background: rgba(255,255,255,.03);
  color: var(--white);
  padding: 16px;
  text-align: left;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.phone-step:hover,
.phone-step:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(142,197,255,.45);
  background: rgba(255,255,255,.06);
  outline: none;
}
.phone-step.is-active {
  border-color: rgba(142,197,255,.55);
  background: rgba(45,101,255,.16);
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
}
.phone-step-number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.12);
  font-weight: 800;
}
.phone-step-copy {
  display: grid;
  gap: 4px;
}
.phone-step-copy strong {
  color: var(--white);
  font-size: 1rem;
}
.phone-step-copy span {
  color: rgba(255,255,255,.72);
  font-size: .94rem;
  line-height: 1.45;
}
.pricing-table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.pricing-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}
.pricing-table th,
.pricing-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.pricing-table th {
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #475569;
  background: #f8fbff;
}
.pricing-table tr:last-child td {
  border-bottom: 0;
}
.pricing-note {
  margin-top: 18px;
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 20px;
  background: #eef5ff;
  border: 1px solid #cfdcf5;
  color: #314155;
}
.cta-band { background: linear-gradient(135deg, rgba(45,101,255,.08), rgba(87,166,255,.1)); }
.end-on-desktop { justify-content: flex-end; }
.faq-list { display: grid; gap: 14px; }
details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  padding: 0 18px;
}
details summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  padding: 18px 0;
  color: #0f172a;
}
details summary::-webkit-details-marker { display: none; }
details p { padding: 0 0 18px; color: #475569; }
.faq-page details {
  box-shadow: 0 14px 34px rgba(5, 13, 28, .12);
}
.faq-page details[open] {
  border-color: rgba(45,101,255,.35);
}
.faq-page details[open] summary {
  color: #1746ff;
}
.pill-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 24px; }
.pill { padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); }
.page-hero, .simple-hero { background: linear-gradient(180deg, #f8fbff, #fff); }
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 24px;
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; margin-bottom: 18px; }
.form-grid label { display: grid; gap: 8px; font-weight: 600; }
.form-grid .full { grid-column: 1 / -1; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
}
textarea { resize: vertical; }
.form-status {
  background: #eef8f0;
  color: #166534;
  border: 1px solid #b7e1bf;
  border-radius: 16px;
  padding: 12px 14px;
  margin-bottom: 16px;
}
.site-footer {
  background: #08111f;
  color: rgba(255,255,255,.82);
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 28px;
}
.footer-brand { font-size: 1.2rem; font-weight: 900; letter-spacing: .06em; color: var(--white); margin-bottom: 8px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 34px;
  padding: 18px 0 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: .95rem;
}
.desktop-only { display: inline-flex; }
@media (max-width: 1024px) {
  .three-up, .four-up, .contact-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .phone-sequence { grid-template-columns: 1fr; }
  .hero-grid, .split-block, .cta-grid, .feature-card.horizontal { grid-template-columns: 1fr; }
  .feature-card.horizontal img { max-width: 360px; }
  .end-on-desktop { justify-content: flex-start; }
}
@media (max-width: 782px) {
  .section { padding: 70px 0; }
  .header-inner { grid-template-columns: auto auto auto; }
  .menu-toggle { display: inline-block; justify-self: end; }
  .site-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    padding: 18px 16px 24px;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid rgba(216,225,239,.9);
    flex-direction: column;
  }
  .site-nav.is-open { display: flex; }
  .desktop-only { display: none; }
  .three-up, .four-up, .contact-grid, .footer-grid, .form-grid, .phone-step-list { grid-template-columns: 1fr; }
  .hero { padding-top: 0; }
  .hero-grid { gap: 26px; }
  .hero-media { order: -1; margin: 0 calc(-16px); }
  .hero-media img {
    width: 100%;
    border-radius: 0 0 28px 28px;
  }
  .hero-copy { padding-top: 2px; }
  .phone-shell { width: min(320px, 100%); }
  .phone-sequence-copy { gap: 16px; }
  .phone-sequence-status, .phone-step { padding: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button, .phone-sequence-screen, .phone-step {
    transition: none !important;
    animation: none !important;
  }
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--brand);
  margin-top: 10px;
}
.text-link:hover { text-decoration: underline; }
.ai-grid-section .info-card { height: 100%; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}
.process-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 14px;
}
.process-list li {
  padding-left: 6px;
  color: #334155;
}
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; }
}
