:root {
  --bg: #eef4ff;
  --bg-soft: #f8fbff;
  --text: #0b1b33;
  --muted: #5f6f86;
  --card: rgba(255, 255, 255, 0.9);
  --card-solid: #ffffff;
  --line: rgba(17, 44, 85, 0.12);
  --primary: #312eea;
  --primary-dark: #241cc8;
  --secondary: #6554ff;
  --accent: #ff8a3d;
  --accent-soft: #fff0e7;
  --success: #16c79a;
  --navy: #091a33;
  --navy-soft: #10284f;
  --danger: #d92d20;
  --shadow: 0 24px 70px rgba(11, 27, 51, 0.12);
  --shadow-soft: 0 14px 36px rgba(11, 27, 51, 0.08);
}

* { 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:
    radial-gradient(circle at top left, rgba(49, 46, 234, 0.18), transparent 32rem),
    radial-gradient(circle at top right, rgba(255, 138, 61, 0.2), transparent 28rem),
    linear-gradient(180deg, #f8fbff 0%, var(--bg) 42%, #ffffff 100%);
  line-height: 1.6;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(49, 46, 234, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 46, 234, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.75), transparent 72%);
}
a { color: inherit; text-decoration: none; }
.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,
.site-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 0 0 28px 28px;
  background: rgba(248, 251, 255, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 32px rgba(11, 27, 51, 0.06);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  box-shadow: 0 12px 26px rgba(49, 46, 234, 0.24);
}
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}
.nav a,
.language-switcher select {
  border-radius: 999px;
  padding: 9px 12px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.nav a:hover {
  color: var(--primary-dark);
  background: rgba(49, 46, 234, 0.08);
  transform: translateY(-1px);
}
.nav .nav-cta {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 12px 24px rgba(49, 46, 234, 0.22);
}
.language-switcher select {
  border: 1px solid rgba(49, 46, 234, 0.18);
  background: rgba(255,255,255,0.82);
  color: var(--primary-dark);
  font-weight: 900;
  cursor: pointer;
}
.hero,
.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 24px;
}
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 38px;
  align-items: center;
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 42px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(240, 246, 255, 0.78)),
    radial-gradient(circle at 78% 22%, rgba(255, 138, 61, 0.25), transparent 22rem);
  box-shadow: var(--shadow);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.9;
}
.hero::before { right: -70px; top: -70px; width: 230px; height: 230px; background: rgba(49, 46, 234, 0.16); }
.hero::after { right: 260px; bottom: -90px; width: 180px; height: 180px; background: rgba(22, 199, 154, 0.16); }
.hero-content,
.hero-card { position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--primary-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
}
.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 138, 61, 0.14);
}
h1,
h2,
h3 { line-height: 1.1; margin: 0 0 16px; letter-spacing: -0.04em; }
h1 {
  max-width: 900px;
  font-size: clamp(2.45rem, 5vw, 4.95rem);
  background: linear-gradient(135deg, var(--navy), var(--primary-dark) 58%, var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
h2 { font-size: clamp(1.85rem, 3vw, 3rem); }
h3 { font-size: 1.2rem; }
.hero-text { max-width: 720px; color: var(--muted); font-size: 1.18rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 13px 21px;
  font-weight: 900;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:disabled { opacity: 0.65; cursor: wait; transform: none; }
.primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 16px 30px rgba(49, 46, 234, 0.25);
}
.primary:hover { background: linear-gradient(135deg, var(--primary-dark), #4d3df0); box-shadow: 0 20px 38px rgba(49, 46, 234, 0.32); }
.secondary { background: rgba(255, 255, 255, 0.78); color: var(--text); border-color: rgba(49, 46, 234, 0.18); box-shadow: var(--shadow-soft); }
.hero-card,
.card,
.price-card,
.contact-form,
.trust-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.hero-card {
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(255, 138, 61, 0.24), transparent 14rem),
    linear-gradient(150deg, rgba(9, 26, 51, 0.98), rgba(34, 28, 148, 0.94));
  border-color: rgba(255, 255, 255, 0.18);
}
.hero-logo { display: block; border-radius: 26px; margin-bottom: 18px; box-shadow: 0 18px 40px rgba(0,0,0,0.2); }
.hero-card h2 { color: #ffffff; }
.hero-card ul { padding-left: 20px; color: rgba(255, 255, 255, 0.78); }
.hero-card li + li { margin-top: 8px; }
.text-link {
  color: #ffffff;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  display: inline-flex;
  padding: 10px 14px;
  margin-top: 8px;
}
.section-heading { max-width: 760px; margin-bottom: 28px; }
.grid { display: grid; gap: 18px; }
.cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card,
.price-card,
.timeline div,
.contact-form,
.trust-card { backdrop-filter: blur(14px); }
.card { position: relative; overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
.card::before {
  content: "";
  display: block;
  width: 42px;
  height: 5px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--success));
}
.card:hover,
.price-card:hover { transform: translateY(-5px); border-color: rgba(49, 46, 234, 0.22); box-shadow: var(--shadow); }
.card p,
.price-card p,
.split p { color: var(--muted); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: start; }
.timeline { display: grid; gap: 12px; }
.timeline div {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(49, 46, 234, 0.12);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}
.timeline strong { color: var(--primary-dark); margin-right: 6px; }
.pricing { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.price {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #d95711 !important;
  font-size: 1.08rem;
  font-weight: 950;
}
.featured {
  position: relative;
  border-color: rgba(49, 46, 234, 0.34);
  transform: translateY(-8px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.96));
}
.featured::before {
  content: "★";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  font-size: 0.9rem;
  font-weight: 900;
}
.cta-band {
  position: relative;
  text-align: center;
  overflow: hidden;
  color: #fff;
  border-radius: 34px;
  margin-bottom: 54px;
  background:
    radial-gradient(circle at top left, rgba(255, 138, 61, 0.42), transparent 22rem),
    linear-gradient(135deg, var(--navy), var(--primary-dark));
  box-shadow: var(--shadow);
}
.cta-band p { color: rgba(255, 255, 255, 0.76); }
.cta-band .button { margin-top: 8px; }
.site-footer { color: var(--muted); border-top: 1px solid var(--line); }
.contact-page h1 {
  font-size: clamp(2rem, 4vw, 3.65rem);
  background: linear-gradient(135deg, var(--navy), var(--primary-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.contact-layout { grid-template-columns: 0.85fr 1.15fr; }
.trust-card { margin-top: 22px; background: rgba(255,255,255,0.72); }
.trust-card h2 { font-size: 1.2rem; }
.contact-form { display: grid; gap: 13px; background: rgba(255, 255, 255, 0.88); }
.form-row { display: grid; gap: 14px; }
.two-columns { grid-template-columns: 1fr 1fr; }
.contact-form label { font-weight: 900; }
input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(17, 44, 85, 0.14);
  border-radius: 16px;
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
input:focus,
textarea:focus,
select:focus {
  border-color: rgba(49, 46, 234, 0.7);
  box-shadow: 0 0 0 4px rgba(49, 46, 234, 0.12);
  background: #ffffff;
}
textarea { resize: vertical; }
.checkbox-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
}
.checkbox-row input { width: 18px; height: 18px; margin-top: 4px; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.captcha-box {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 0;
}
.captcha-note,
.form-note { color: var(--muted); font-size: 0.92rem; margin: 0; }
.form-note.success { color: #067647; font-weight: 800; }
.form-note.error { color: var(--danger); font-weight: 800; }
@media (max-width: 940px) {
  .site-header { align-items: flex-start; flex-direction: column; border-radius: 0 0 24px 24px; }
  .nav { flex-wrap: wrap; }
  .hero,
  .split,
  .cards,
  .pricing,
  .contact-layout { grid-template-columns: 1fr; }
  .hero { margin: 14px 12px 0; padding: 54px 22px; border-radius: 32px; }
  .section { padding: 58px 24px; }
  .featured { transform: none; }
}
@media (max-width: 620px) {
  .nav a { padding: 8px 10px; }
  .hero-actions .button { width: 100%; }
  .hero-card,
  .card,
  .price-card,
  .contact-form,
  .trust-card { padding: 22px; }
  .two-columns { grid-template-columns: 1fr; }
}
