:root {
  --bg: #2a1454;
  --bg-2: #3b176d;
  --deep: #0b1425;
  --panel: #4b2485;
  --panel-2: #5b2a93;
  --text: #fff;
  --muted: #d9c8f0;
  --soft: #b89bd7;
  --blue: #0897ff;
  --cyan: #35c9ff;
  --violet: #8a16e6;
  --purple: #7515d8;
  --pink: #f46fd4;
  --orange: #ff9a3d;
  --green: #2fd48b;
  --red: #ff5d75;
  --line: rgba(255, 255, 255, 0.13);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  --radius: 22px;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 8%, rgba(8, 151, 255, 0.18), transparent 22%),
    radial-gradient(
      circle at 84% 16%,
      rgba(244, 111, 212, 0.16),
      transparent 25%
    ),
    linear-gradient(180deg, #2a1454 0%, #4a1975 45%, #3b176d 100%);
  line-height: 1.55;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 10px;
  top: 10px;
  width: auto;
  height: auto;
  z-index: 100;
  background: #fff;
  color: #111;
  padding: 10px;
  border-radius: 8px;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(32, 13, 66, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.nav {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 950;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 10px 24px rgba(8, 151, 255, 0.3);
}
.logo-mark svg {
  width: 19px;
  height: 19px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 900;
  color: #efe4ff;
}
.nav-links a {
  opacity: 0.84;
}
.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
}
.nav-cta {
  padding: 10px 15px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  font-weight: 950;
  box-shadow: 0 12px 30px rgba(8, 151, 255, 0.22);
}
.menu-btn {
  display: none;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 10px;
  padding: 9px;
}
.menu-btn svg {
  width: 22px;
  height: 22px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 23px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 950;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn svg {
  width: 18px;
  height: 18px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--blue));
  box-shadow: 0 18px 36px rgba(8, 151, 255, 0.22);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.2);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #eaf7ff;
  background: rgba(8, 151, 255, 0.15);
  border: 1px solid rgba(8, 151, 255, 0.26);
  font-size: 12px;
  font-weight: 950;
}
.badge svg {
  width: 17px;
  height: 17px;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #35c9ff;
  font-weight: 950;
  margin-bottom: 14px;
}
h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(45px, 6.5vw, 74px);
}
h2 {
  font-size: clamp(32px, 4.8vw, 50px);
  text-align: center;
}
h3 {
  font-size: 23px;
}
p {
  margin: 0;
}
.lead {
  font-size: 18px;
  color: #efe6fb;
  font-weight: 650;
  margin: 21px 0 29px;
  max-width: 680px;
}
.gradient-text {
  background: linear-gradient(135deg, #fff 6%, #6bcfff 46%, #8d35ff 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero {
  padding: 66px 0 64px;
  background: linear-gradient(180deg, #2b155f 0%, #34166a 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.98fr;
  align-items: center;
  gap: 58px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-media {
  position: relative;
  border-radius: 14px;
  min-height: 370px;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(33, 13, 73, 0.12), rgba(33, 13, 73, 0.72)),
    url("../img/hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: var(--shadow);
}
.hero-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0),
    rgba(88, 30, 137, 0.08)
  );
  pointer-events: none;
}
.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.float-dot {
  position: absolute;
  right: -16px;
  top: -14px;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  display: grid;
  place-items: center;
  box-shadow: 0 14px 40px rgba(8, 151, 255, 0.35);
  animation: pulse 3s ease-in-out infinite;
}
.float-dot svg {
  width: 28px;
  height: 28px;
  color: #fff;
}
section {
  padding: 68px 0;
}
.section-head {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
}
.section-head p {
  color: var(--muted);
  font-weight: 650;
  font-size: 16px;
  margin: 17px 0 0;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.076),
    rgba(255, 255, 255, 0.04)
  );
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 26px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(8, 151, 255, 0.34);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.045)
  );
}
.icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 14px 32px rgba(8, 151, 255, 0.25);
}
.icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}
.problem .card {
  text-align: center;
}
.problem .icon {
  margin-inline: auto;
  background: linear-gradient(
    135deg,
    rgba(255, 93, 117, 0.75),
    rgba(255, 154, 61, 0.75)
  );
}
.card p,
.muted {
  color: var(--muted);
  font-weight: 600;
}
.small {
  font-size: 13px;
  color: var(--soft);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}
.visual-panel {
  min-height: 360px;
  border-radius: 14px;
  background-image:
    linear-gradient(rgba(33, 13, 73, 0.12), rgba(33, 13, 73, 0.72)),
    url("../img/team.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 22px;
  color: #2b155f;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.visual-panel svg {
  width: 100%;
  height: 100%;
}
.float-score {
  position: absolute;
  left: -18px;
  bottom: 22px;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  color: #fff;
  border-radius: 10px;
  padding: 16px 18px;
  font-weight: 950;
  box-shadow: 0 14px 34px rgba(8, 151, 255, 0.28);
}
.float-score strong {
  display: block;
  font-size: 25px;
  line-height: 1;
}
.check-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}
.check {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
}
.check i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue);
  display: grid;
  place-items: center;
  font-style: normal;
  font-weight: 950;
  font-size: 13px;
}
.service-list {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.service-list li {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  gap: 8px;
}
.service-list li:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  margin-top: 8px;
  flex: 0 0 7px;
}
.result-box {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 44px;
  align-items: center;
}
.photo-card {
  min-height: 345px;
  border-radius: 12px;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(33, 13, 73, 0.12), rgba(33, 13, 73, 0.72)),
    url("../img/divorce.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: var(--shadow);
  position: relative;
}
.photo-card svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.quote {
  border-left: 4px solid var(--blue);
  padding-left: 22px;
  margin-bottom: 28px;
}
.quote strong {
  font-size: 21px;
  display: block;
  margin-bottom: 8px;
}
.quote p {
  color: #efe6fb;
  font-weight: 650;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat b {
  display: block;
  font-size: 42px;
  line-height: 1;
  color: #168dff;
  letter-spacing: -0.05em;
}
.stat span {
  font-weight: 850;
  color: #efe6fb;
  font-size: 14px;
}
.longtext {
  width: min(820px, 100%);
  margin: 0 auto;
  color: #f0e7fb;
  font-weight: 610;
}
.longtext p {
  margin-bottom: 22px;
}
.feature-strip {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
}
.form-section {
  background: linear-gradient(180deg, #3a2074, #2f1f68);
}
.form-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  align-items: start;
}
.form-card {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 28px;
}
label {
  display: block;
  font-size: 13px;
  font-weight: 950;
  margin-bottom: 8px;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 7px;
  padding: 13px 14px;
  font: inherit;
  font-weight: 650;
  outline: none;
}
input::placeholder,
textarea::placeholder {
  color: #bfaadd;
}
select option {
  background: #2f1a65;
}
.form-row {
  margin-bottom: 17px;
}
textarea {
  min-height: 110px;
  resize: vertical;
}
.form-note {
  font-size: 12px;
  text-align: center;
  color: #c6afdf;
  margin-top: 12px;
}
.notice {
  display: none;
  margin-top: 14px;
  background: rgba(8, 151, 255, 0.14);
  border: 1px solid rgba(8, 151, 255, 0.32);
  border-radius: 12px;
  padding: 15px;
  color: #eaf8ff;
  font-weight: 750;
}
.info-grid {
  display: grid;
  gap: 20px;
  margin-top: 110px;
}
.info-card {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
}
.info-line {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  color: #efe6fb;
  font-weight: 650;
  margin: 12px 0;
}
.info-line svg {
  width: 21px;
  height: 21px;
  color: var(--blue);
  margin-top: 2px;
}
.map-slot {
  margin-top: 18px;
  min-height: 290px;
  border-radius: 13px;
  overflow: hidden;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  background-image:
    linear-gradient(rgba(50, 20, 100, 0.16), rgba(50, 20, 100, 0.16)),
    url("../img/map-placeholder.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.subhero {
  padding: 76px 0 64px;
  text-align: center;
  background: linear-gradient(180deg, #2b155f, #3a176d);
}
.subhero h1 {
  font-size: clamp(42px, 6vw, 66px);
}
.subhero p {
  max-width: 760px;
  margin: 21px auto 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
}
.price-card {
  text-align: center;
  padding: 32px 24px;
}
.price-card.featured {
  border-color: rgba(8, 151, 255, 0.65);
  background: linear-gradient(
    145deg,
    rgba(8, 151, 255, 0.14),
    rgba(255, 255, 255, 0.055)
  );
  transform: translateY(-10px);
}
.price {
  font-size: 42px;
  font-weight: 950;
  letter-spacing: -0.05em;
  margin: 12px 0 5px;
  color: #fff;
}
.faq {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.faq details {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 18px 20px;
}
.faq summary {
  cursor: pointer;
  font-weight: 950;
  font-size: 18px;
}
.faq p {
  color: var(--muted);
  font-weight: 600;
  margin-top: 12px;
}
.footer {
  background: #0b1425;
  padding: 50px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 42px;
}
.footer h4 {
  margin: 0 0 14px;
  font-size: 14px;
}
.footer a,
.footer p {
  display: block;
  color: #aeb8cd;
  font-size: 14px;
  margin: 0 0 9px;
  font-weight: 550;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 34px;
  padding-top: 25px;
  color: #aeb8cd;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  background: rgba(11, 20, 37, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.42);
  border-radius: 16px;
  padding: 18px;
  display: none;
  gap: 18px;
  align-items: center;
  max-width: 980px;
  margin: auto;
}
.cookie-banner.show {
  display: flex;
}
.cookie-banner p {
  color: #dfe7ed;
  font-size: 14px;
  font-weight: 600;
  flex: 1;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-actions button {
  border: 0;
  color: #fff;
  border-radius: 10px;
  padding: 11px 16px;
  font-weight: 950;
  cursor: pointer;
}
.cookie-accept {
  background: linear-gradient(135deg, var(--purple), var(--blue));
}
.cookie-settings,
.cookie-reject {
  background: rgba(255, 255, 255, 0.1);
}
.cookie-panel {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(8, 9, 18, 0.7);
  display: none;
  place-items: center;
  padding: 20px;
}
.cookie-panel.show {
  display: grid;
}
.cookie-modal {
  background: #0b1425;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  max-width: 640px;
  width: 100%;
  padding: 26px;
  box-shadow: var(--shadow);
}
.cookie-modal h3 {
  margin-bottom: 12px;
}
.toggle-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
}
.switch {
  position: relative;
  width: 50px;
  height: 28px;
  flex: 0 0 50px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #565a6e;
  border-radius: 999px;
  transition: 0.2s;
}
.slider:before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.2s;
}
.switch input:checked + .slider {
  background: linear-gradient(135deg, var(--purple), var(--blue));
}
.switch input:checked + .slider:before {
  transform: translateX(22px);
}
.legal-page .longtext h2 {
  text-align: left;
  font-size: 30px;
  margin: 34px 0 12px;
}
.legal-page .longtext p {
  margin-bottom: 18px;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes pulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 14px 40px rgba(8, 151, 255, 0.35);
  }
  50% {
    transform: translateY(8px);
    box-shadow: 0 18px 50px rgba(117, 21, 216, 0.42);
  }
}
@media (max-width: 940px) {
  .nav-links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 76px;
    background: #22104d;
    border: 1px solid var(--line);
    border-radius: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    gap: 8px;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 12px;
    border-radius: 10px;
  }
  .nav-cta {
    text-align: center;
  }
  .menu-btn {
    display: grid;
    place-items: center;
  }
  .hero-grid,
  .split,
  .result-box,
  .form-wrap {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .grid-3,
  .grid-4,
  .stats,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-media {
    min-height: 340px;
  }
  .info-grid {
    margin-top: 0;
  }
}
@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--max));
  }
  .grid-3,
  .grid-4,
  .stats,
  .footer-grid {
    grid-template-columns: 1fr !important;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .hero-actions {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
  .cookie-banner {
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner.show {
    display: flex;
  }
  .cookie-actions button {
    flex: 1;
  }
  section {
    padding: 55px 0;
  }
}
