:root {
  --bg: #070a12;
  --bg2: #0b1224;
  --card: rgba(255, 255, 255, 0.06);
  --card2: rgba(255, 255, 255, 0.08);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --line: rgba(255, 255, 255, 0.10);
  --brand1: #6d4cff;
  --brand2: #22d3ee;
  --cta1: #22c55e;
  --cta2: #16a34a;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --bg-grad-1: rgba(109, 76, 255, 0.28);
  --bg-grad-2: rgba(34, 211, 238, 0.20);
  --header-bg: rgba(7, 10, 18, 0.62);
  --footer-bg: rgba(0, 0, 0, 0.12);
}

html[data-theme="light"] {
  --bg: #f7f8fc;
  --bg2: #ffffff;
  --card: rgba(2, 6, 23, 0.05);
  --card2: rgba(2, 6, 23, 0.06);
  --text: rgba(2, 6, 23, 0.92);
  --muted: rgba(2, 6, 23, 0.64);
  --line: rgba(2, 6, 23, 0.12);
  --shadow: 0 18px 50px rgba(2, 6, 23, 0.14);
  --bg-grad-1: rgba(109, 76, 255, 0.14);
  --bg-grad-2: rgba(34, 211, 238, 0.10);
  --header-bg: rgba(255, 255, 255, 0.76);
  --footer-bg: rgba(255, 255, 255, 0.72);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 600px at 15% 10%, var(--bg-grad-1), transparent 55%),
              radial-gradient(900px 500px at 80% 15%, var(--bg-grad-2), transparent 60%),
              linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 14px 0;
  gap: 14px;
}

.brand {
  flex: 0 1 auto;
}

.site-nav {
  flex: 0 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand-logo {
  height: 52px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
  border-radius: 0;
  border: 0;
  background: transparent;
  padding: 0;
  filter: none;
}

html[data-theme="light"] .brand-logo {
  border-color: transparent;
  background: transparent;
  filter: none;
}

html[data-theme="light"] .cta-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
  border-color: rgba(2, 6, 23, 0.12);
}

html[data-theme="light"] .cta-meta {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(2, 6, 23, 0.12);
}

html[data-theme="light"] .meta-value {
  color: rgba(2, 6, 23, 0.88);
}

html[data-theme="light"] .to-top {
  color: rgba(2, 6, 23, 0.70);
}

html[data-theme="light"] .to-top:hover {
  background: rgba(2, 6, 23, 0.06);
  color: rgba(2, 6, 23, 0.92);
}

html[data-theme="light"] .site-footer {
  border-top-color: rgba(2, 6, 23, 0.10);
}

html[data-theme="light"] .footer-bottom {
  color: rgba(2, 6, 23, 0.62);
}

html[data-theme="light"] .social-link {
  border-color: rgba(2, 6, 23, 0.12);
  background: rgba(255, 255, 255, 0.86);
  color: rgba(2, 6, 23, 0.78);
}

html[data-theme="light"] .social-link:hover {
  background: rgba(2, 6, 23, 0.05);
}

html[data-theme="light"] .meta-label {
  color: rgba(2, 6, 23, 0.56);
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand1), var(--brand2));
  box-shadow: 0 0 0 6px rgba(109, 76, 255, 0.14);
}

.brand-text { font-size: 14px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  margin-left: auto;
}

html[data-theme="light"] .site-nav {
  color: rgba(2, 6, 23, 0.72);
}

.site-nav a {
  padding: 10px 10px;
  border-radius: 12px;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.95);
}

html[data-theme="light"] .site-nav a:hover {
  background: rgba(2, 6, 23, 0.06);
  color: rgba(2, 6, 23, 0.92);
}

.nav-cta {
  margin-left: 6px;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
}

html[data-theme="light"] .nav-toggle {
  background: rgba(2, 6, 23, 0.03);
}

.theme-toggle {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.86);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

html[data-theme="light"] .theme-toggle {
  background: rgba(2, 6, 23, 0.03);
  color: rgba(2, 6, 23, 0.80);
}

.lang-toggle {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.86);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: 0.2px;
}

html[data-theme="light"] .lang-toggle {
  background: rgba(2, 6, 23, 0.03);
  color: rgba(2, 6, 23, 0.80);
}

.lang-label {
  font-size: 12px;
  line-height: 1;
}

.theme-icon {
  width: 20px;
  height: 20px;
}

.theme-icon-moon { display: none; }
html[data-theme="light"] .theme-icon-sun { display: none; }
html[data-theme="light"] .theme-icon-moon { display: block; }

.nav-toggle .bar {
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(255, 255, 255, 0.86);
  margin: 4px 0;
  border-radius: 2px;
}

html[data-theme="light"] .nav-toggle .bar {
  background: rgba(2, 6, 23, 0.78);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  box-shadow: 0 10px 28px rgba(0,0,0,0.20);
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}

html[data-theme="light"] .btn {
  background: rgba(2, 6, 23, 0.03);
  color: rgba(2, 6, 23, 0.86);
  border-color: rgba(2, 6, 23, 0.12);
  box-shadow: 0 10px 28px rgba(2, 6, 23, 0.08);
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

html[data-theme="light"] .btn:hover {
  background: rgba(2, 6, 23, 0.06);
  border-color: rgba(2, 6, 23, 0.16);
}

.btn:active { transform: translateY(0px); }

.btn-primary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, var(--cta1), var(--cta2));
}

html[data-theme="light"] .btn-primary {
  background: linear-gradient(135deg, var(--cta1), var(--cta2));
  color: rgba(255, 255, 255, 0.98);
  border-color: rgba(22, 163, 74, 0.55);
}

html[data-theme="light"] .btn-primary:hover {
  background: linear-gradient(135deg, #16a34a, #15803d);
  border-color: rgba(21, 128, 61, 0.65);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
}

html[data-theme="light"] .btn-secondary {
  background: rgba(2, 6, 23, 0.04);
}

.btn-small { padding: 10px 12px; border-radius: 12px; }
.btn-wide { width: 100%; }

.hero {
  position: relative;
  padding: 64px 0 30px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1.02;
}


.lead {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.hero-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.badge {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 14px 14px;
}

.badge-title {
  font-weight: 700;
  margin-bottom: 4px;
}

.badge-sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.logo-globe {
  width: min(420px, 38vw);
  aspect-ratio: 1 / 1;
  position: relative;
  display: grid;
  place-items: center;
  perspective: 900px;
}

.logo-globe::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.00) 60%);
  filter: blur(0.2px);
  pointer-events: none;
}

html[data-theme="light"] .logo-globe::before {
  background: radial-gradient(circle at 30% 25%, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.00) 60%);
}

.logo-globe-sphere {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  animation: logoGlobeSpin 16s linear infinite;
}

@keyframes logoGlobeSpin {
  from { transform: rotateY(0deg) rotateX(14deg); }
  to { transform: rotateY(360deg) rotateX(14deg); }
}

.logo-globe-item {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 52px;
  height: 52px;
  transform-style: preserve-3d;
  margin-left: -26px;
  margin-top: -26px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.40);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
}

html[data-theme="light"] .logo-globe-item {
  border-color: rgba(2, 6, 23, 0.14);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(2, 6, 23, 0.12);
}

.logo-globe-item img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.35));
}

@media (prefers-reduced-motion: reduce) {
  .logo-globe-sphere { animation: none; }
}

.hero-glow {
  position: absolute;
  inset: auto -10% -45% -10%;
  height: 420px;
  background: radial-gradient(closest-side, rgba(34, 211, 238, 0.18), transparent 65%),
              radial-gradient(closest-side, rgba(109, 76, 255, 0.20), transparent 60%);
  filter: blur(20px);
  pointer-events: none;
}

.section-quick-cta {
  padding: 8px 0 18px;
}

.quick-cta {
  display: flex;
  justify-content: center;
}

.quick-cta .btn {
  min-width: 220px;
}

.section {
  padding: 64px 0;
}

.section-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.00));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-head {
  text-align: center;
  margin-bottom: 26px;
}

.section-head.left { text-align: left; }

.section-head h2 {
  margin: 0 0 10px;
  font-size: 30px;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}


.grid {
  display: grid;
  gap: 18px;
}

.grid.two {
  grid-template-columns: 1fr 1fr;
}

.align-center { align-items: center; }

.card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  padding: 22px;
  box-shadow: 0 16px 42px rgba(0,0,0,0.25);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.card-accent {
  background: linear-gradient(135deg, rgba(109, 76, 255, 0.20), rgba(34, 211, 238, 0.12));
  border-color: rgba(255, 255, 255, 0.14);
}

.mini-stats {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.mini-stat {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 14px;
}

.mini-stat-num {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.mini-stat-label {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

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

.feature {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  padding: 20px;
  min-height: 200px;
}

.feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(135deg, rgba(109, 76, 255, 0.40), rgba(34, 211, 238, 0.20));
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.feature-icon svg { width: 20px; height: 20px; }

.feature h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.feature-cta {
  background: linear-gradient(135deg, rgba(109, 76, 255, 0.24), rgba(34, 211, 238, 0.16));
  border-color: rgba(255, 255, 255, 0.16);
}

.feature-cta-inner {
  display: grid;
  gap: 10px;
  height: 100%;
  align-content: center;
}

.feature-cta-inner h3 {
  margin: 0;
  font-size: 18px;
}

.feature-cta-inner p { margin: 0; color: var(--muted); }

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.pill {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  font-size: 13px;
}

.accordion {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.10);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

html[data-theme="light"] .accordion {
  border-color: rgba(2, 6, 23, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.acc-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.92);
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}

html[data-theme="light"] .acc-item {
  color: rgba(2, 6, 23, 0.90);
}

.acc-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

html[data-theme="light"] .acc-item:hover {
  background: rgba(2, 6, 23, 0.05);
}

.acc-title { font-size: 14px; }

.acc-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  position: relative;
}

html[data-theme="light"] .acc-icon {
  border-color: rgba(2, 6, 23, 0.22);
}

.acc-icon::before,
.acc-icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 10px;
  height: 2px;
  background: rgba(255, 255, 255, 0.82);
  transform: translate(-50%, -50%);
  border-radius: 2px;
}

html[data-theme="light"] .acc-icon::before,
html[data-theme="light"] .acc-icon::after {
  background: rgba(2, 6, 23, 0.72);
}

.acc-icon::after {
  width: 2px;
  height: 10px;
}

.acc-item[aria-expanded="true"] .acc-icon::after {
  display: none;
}

.acc-panel {
  padding: 0 18px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

html[data-theme="light"] .acc-panel {
  border-bottom-color: rgba(2, 6, 23, 0.10);
}

.acc-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

html[data-theme="light"] .acc-panel p {
  color: rgba(2, 6, 23, 0.72);
}

.acc-item:last-of-type + .acc-panel { border-bottom: 0; }

.section-cta {
  padding: 70px 0;
}

.cta-card {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(1200px 700px at 20% 10%, rgba(109, 76, 255, 0.18), transparent 55%),
              radial-gradient(900px 500px at 80% 20%, rgba(34, 211, 238, 0.14), transparent 55%),
              rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
  padding: 26px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: start;
}

.cta-copy h2 {
  margin: 0 0 10px;
  font-size: 30px;
  letter-spacing: -0.02em;
}

.cta-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-actions .btn {
  white-space: nowrap;
}

.cta-meta {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(7, 10, 18, 0.28);
  padding: 18px;
}

.meta-item { margin-bottom: 14px; }
.meta-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 6px;
}

.meta-value {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.phone-divider {
  display: block;
  height: 1px;
  margin: 10px 0;
  background: rgba(255, 255, 255, 0.10);
}

html[data-theme="light"] .phone-divider {
  background: rgba(2, 6, 23, 0.10);
}

.social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 8px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.86);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.07);
}

.social-link svg { width: 18px; height: 18px; }

.legal {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.legal a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.legal a:hover { color: rgba(255, 255, 255, 0.92); }

.dot-sep { margin: 0 8px; }

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  background: var(--footer-bg);
}

.footer-bottom {
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 13px;
}

html[data-theme="light"] .footer-bottom {
  border-top-color: rgba(2, 6, 23, 0.10);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.footer-brand { font-weight: 800; letter-spacing: 0.3px; }
.footer-tag { color: var(--muted); font-size: 13px; margin-top: 4px; line-height: 1.5; }
.to-top { color: rgba(255, 255, 255, 0.76); font-weight: 600; padding: 10px 12px; border-radius: 12px; }
.to-top:hover { background: rgba(255, 255, 255, 0.05); color: rgba(255, 255, 255, 0.92); }

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .cta-card { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-block; }

  .brand-logo {
    max-width: 220px;
    height: 46px;
  }

  .site-nav {
    position: absolute;
    top: 62px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(7, 10, 18, 0.86);
    box-shadow: var(--shadow);
  }

  html[data-theme="light"] .site-nav {
    border-color: rgba(2, 6, 23, 0.14);
    background: rgba(255, 255, 255, 0.96);
  }

  .site-nav.open { display: flex; }

  .site-nav a { padding: 12px 12px; }
  .nav-cta { margin-left: 0; }

  .hero { padding-top: 44px; }
  .hero-badges { grid-template-columns: 1fr; }

  .grid.two { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }

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