:root {
  --bg: #f7f8fc;
  --surface: #ffffff;
  --surface-soft: #f2f5ff;
  --text: #111827;
  --muted: #5f6880;
  --line: rgba(17, 24, 39, 0.08);
  --line-strong: rgba(17, 24, 39, 0.14);
  --shadow: 0 20px 60px rgba(17, 24, 39, 0.08);
  --radius: 28px;
  --cyan: #12c2ff;
  --magenta: #ff2ebd;
  --lime: #9ce62e;
  --orange: #ff8a1c;
  --navy: #13233b;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p { line-height: 1.7; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 14px 38px rgba(17, 24, 39, 0.06);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
}
.brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.navbar .brand {
  position: relative;
  padding: 10px 16px;
  border-radius: 24px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(18, 194, 255, 0.9), rgba(255, 46, 189, 0.8), rgba(156, 230, 46, 0.85)) border-box;
  border: 2px solid transparent;
  box-shadow: 0 16px 44px rgba(17, 24, 39, 0.10);
}
.navbar .brand::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(18, 194, 255, 0.08), rgba(255, 46, 189, 0.07));
  pointer-events: none;
}
.brand img {
  position: relative;
  z-index: 1;
  height: 70px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-links a {
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  background: transparent;
  transition: background .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.nav-links a:hover {
  background: linear-gradient(90deg, rgba(18, 194, 255, 0.14), rgba(255, 46, 189, 0.12));
  color: var(--text);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.08);
  transform: translateY(-1px);
}
.static-links a:hover { background: linear-gradient(90deg, rgba(18, 194, 255, 0.14), rgba(255, 46, 189, 0.12)); }

.nav-toggle {
  display: none;
  border: 0;
  padding: 0;
  background: transparent;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  border-radius: 999px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.045em;
}
h1 { font-size: clamp(2.9rem, 7vw, 6.1rem); max-width: 780px; }
h1 span {
  background: linear-gradient(90deg, var(--cyan), var(--magenta) 55%, var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
h2 { font-size: clamp(2rem, 4vw, 3.6rem); max-width: 780px; }
h3 { font-size: 1.35rem; }

.hero {
  position: relative;
  overflow: hidden;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 40px;
  align-items: center;
}
.hero-text {
  max-width: 700px;
  font-size: 1.08rem;
  color: var(--muted);
  margin: 24px 0 0;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-tags span,
.mini-label,
.service-index,
.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
}
.hero-tags span {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  color: var(--navy);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.05);
}
.hero-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}
.mini-label {
  padding: 8px 14px;
  background: linear-gradient(90deg, rgba(18, 194, 255, 0.16), rgba(255, 46, 189, 0.16));
  color: var(--navy);
  margin-bottom: 18px;
}
.metric-card {
  display: grid;
  gap: 6px;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(18, 194, 255, 0.12), rgba(255, 46, 189, 0.12), rgba(156, 230, 46, 0.12));
  border: 1px solid rgba(17, 24, 39, 0.06);
}
.metric-card strong {
  font-size: 2.6rem;
  color: var(--navy);
}
.metric-card span,
.metric-list p,
.section-head p,
.focus-points p,
.contact-copy p,
.contact-card span,
.footer p,
.legal-card p,
.legal-card li,
.service-card p,
.step-card p {
  color: var(--muted);
}
.metric-list {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}
.metric-list div {
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
}
.metric-list strong {
  color: var(--navy);
  font-size: 0.9rem;
}
.metric-list p { margin: 8px 0 0; }

.hero-orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(18px);
  opacity: 0.7;
}
.orb-cyan {
  top: 80px;
  left: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(18, 194, 255, 0.28), transparent 72%);
}
.orb-magenta {
  right: -100px;
  bottom: -50px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 46, 189, 0.22), transparent 72%);
}

.btn {
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  color: white;
  box-shadow: 0 14px 38px rgba(18, 194, 255, 0.22);
}
.btn-secondary {
  background: var(--surface);
  border-color: var(--line-strong);
  color: var(--navy);
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}
.compact-head { margin-bottom: 24px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.service-card,
.focus-points article,
.step-card,
.contact-form,
.contact-card,
.legal-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}
.service-card {
  min-height: 250px;
  padding: 26px;
}
.service-card.wide { grid-column: span 2; }
.service-index {
  min-width: 54px;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  color: var(--navy);
}
.accent-cyan .service-index { background: rgba(18, 194, 255, 0.16); }
.accent-magenta .service-index { background: rgba(255, 46, 189, 0.16); }
.accent-lime .service-index { background: rgba(156, 230, 46, 0.22); }
.accent-orange .service-index { background: rgba(255, 138, 28, 0.18); }
.accent-mix .service-index { background: linear-gradient(90deg, rgba(18, 194, 255, 0.16), rgba(255, 46, 189, 0.16), rgba(156, 230, 46, 0.18)); }

.stripe-section {
  background: linear-gradient(180deg, rgba(18, 194, 255, 0.05), rgba(255, 255, 255, 0));
  border-block: 1px solid rgba(17, 24, 39, 0.05);
}
.focus-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}
.focus-points {
  display: grid;
  gap: 16px;
}
.focus-points article,
.step-card { padding: 24px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.step-card span {
  min-width: 52px;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(18, 194, 255, 0.18), rgba(255, 46, 189, 0.18));
}

.contact-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(156, 230, 46, 0.06));
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}
.contact-card {
  display: grid;
  gap: 8px;
  margin-top: 26px;
  padding: 22px 24px;
}
.contact-card strong { color: var(--navy); }
.contact-form {
  padding: 28px;
  display: grid;
  gap: 16px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--navy);
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: #ffffff;
  padding: 15px 16px;
  font: inherit;
  color: var(--text);
  outline: none;
}
input:focus,
select:focus,
textarea:focus {
  border-color: rgba(18, 194, 255, 0.8);
  box-shadow: 0 0 0 4px rgba(18, 194, 255, 0.12);
}
textarea { resize: vertical; }
.checkbox-row {
  grid-template-columns: 20px 1fr;
  align-items: start;
  font-weight: 500 !important;
}
.checkbox-row input {
  width: auto;
  margin-top: 5px;
}
.checkbox-row span { color: var(--muted); }
.checkbox-row a,
.legal-card a { color: var(--navy); font-weight: 800; }
.honeypot { position: absolute; left: -9999px; opacity: 0; }

.footer {
  padding: 26px 0 38px;
  border-top: 1px solid rgba(17, 24, 39, 0.06);
}
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-brand img { height: 56px; }
.footer-brand-group { display: grid; gap: 10px; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 700;
  color: var(--navy);
}

.legal-body {
  min-height: 100vh;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
}
.legal-page { padding: 70px 0 90px; }
.legal-card {
  max-width: 960px;
  margin: 0 auto;
  padding: 32px;
}
.legal-card h2 {
  margin-top: 28px;
  font-size: 1.45rem;
}

@media (max-width: 1040px) {
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .focus-grid,
  .contact-grid,
  .hero-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 26px, 1180px); }
  .section-space { padding: 76px 0; }
  .brand img { height: 58px; max-width: 270px; object-fit: contain; }
  .nav-toggle { display: inline-block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 78px;
    left: 13px;
    right: 13px;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 16px; color: var(--navy); }
  .nav-links a:hover { color: var(--navy); background: rgba(18, 194, 255, 0.12); }
  .navbar .brand { padding: 8px 12px; border-radius: 20px; }
  .navbar .brand::after { inset: 6px; border-radius: 15px; }
  .static-links {
    position: static;
    display: flex;
    flex-direction: row;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .service-grid { grid-template-columns: 1fr; }
  .service-card.wide { grid-column: auto; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
}
