:root {
  --bg: #1b0d3b;
  --bg-2: #251052;
  --panel: #3d1d73;
  --panel-2: #4b2485;
  --text: #ffffff;
  --muted: #d8c9ee;
  --soft: #ad96cc;
  --blue: #0797ff;
  --violet: #8a14df;
  --cyan: #20d2ff;
  --green: #39d98a;
  --orange: #ff9f1c;
  --red: #ff5a76;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 22px 65px rgba(0, 0, 0, 0.24);
  --radius: 24px;
  --radius-sm: 14px;
  --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(0, 151, 255, 0.28), transparent 25%),
    radial-gradient(
      circle at 82% 20%,
      rgba(138, 20, 223, 0.34),
      transparent 28%
    ),
    linear-gradient(180deg, #210d49 0%, #3a156f 48%, #210d49 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;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(26, 11, 57, 0.84);
  border-bottom: 1px solid var(--line);
}
.nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 10px 28px rgba(7, 151, 255, 0.3);
}
.logo-mark svg {
  width: 20px;
  height: 20px;
}
.logo span {
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 800;
  color: #e7dcf6;
}
.nav-links a {
  opacity: 0.86;
}
.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  color: #fff;
}
.nav-cta {
  padding: 11px 17px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(7, 151, 255, 0.24);
}
.menu-btn {
  display: none;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 12px;
  padding: 10px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 12px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    0.2s transform,
    0.2s opacity,
    0.2s border-color;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: linear-gradient(135deg, var(--violet), var(--blue));
  box-shadow: 0 18px 35px rgba(7, 151, 255, 0.22);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}
.btn-outline {
  border-color: rgba(255, 255, 255, 0.22);
  background: transparent;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(7, 151, 255, 0.15);
  border: 1px solid rgba(7, 151, 255, 0.28);
  color: #dff4ff;
  font-size: 13px;
  font-weight: 900;
}
.hero {
  padding: 78px 0 64px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 64px;
}
.eyebrow {
  font-weight: 900;
  color: #35c9ff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  margin-bottom: 14px;
}
h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(46px, 7vw, 78px);
}
h2 {
  font-size: clamp(34px, 5vw, 54px);
  text-align: center;
}
h3 {
  font-size: 25px;
}
.lead {
  font-size: 19px;
  color: #ecdefa;
  font-weight: 650;
  margin: 22px 0 32px;
  max-width: 650px;
}
.gradient-text {
  background: linear-gradient(135deg, #fff 10%, #6dcfff 52%, #8b26ff 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 430px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.92),
    rgba(238, 231, 255, 0.96)
  );
  box-shadow: var(--shadow);
}
.hero-visual {
  position: absolute;
  inset: 0;
  padding: 34px;
  display: grid;
  place-items: center;
  color: #2b1357;
    background-image:
    linear-gradient(rgba(33, 13, 73, 0.165), rgba(33, 13, 73, 0.72)),
    url("../img/hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-visual:before {
  content: "";
  position: absolute;
  inset: auto -15% -18% -15%;
  height: 230px;
  background: linear-gradient(
    90deg,
    rgba(138, 20, 223, 0.2),
    rgba(7, 151, 255, 0.24)
  );
  filter: blur(16px);
}
.scale-icon {
  width: min(78%, 380px);
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 34px rgba(59, 23, 109, 0.26));
}
.float-card {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 3;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  border-radius: 16px;
  padding: 16px 20px;
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}
.float-card strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}
.float-pill {
  position: absolute;
  right: 24px;
  top: 24px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.86);
  color: #32135c;
  border: 1px solid rgba(70, 35, 125, 0.18);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  font-size: 13px;
}
section {
  padding: 74px 0;
}
.section-head {
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: center;
}
.section-head p {
  color: var(--muted);
  font-weight: 650;
  font-size: 17px;
  margin: 18px 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: 24px;
}
.card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.075),
    rgba(255, 255, 255, 0.045)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 28px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.12);
}
.card:hover {
  border-color: rgba(7, 151, 255, 0.38);
}
.icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 14px 32px rgba(7, 151, 255, 0.25);
}
.icon svg {
  width: 25px;
  height: 25px;
}
.card p,
.muted {
  color: var(--muted);
  font-weight: 600;
}
.small {
  font-size: 14px;
  color: var(--soft);
}
.problem .card {
  text-align: center;
}
.problem .icon {
  margin-inline: auto;
  background: linear-gradient(
    135deg,
    rgba(255, 90, 118, 0.9),
    rgba(255, 159, 28, 0.8)
  );
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}
.check-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}
.check {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
}
.check i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: grid;
  place-items: center;
  font-style: normal;
  font-weight: 900;
  font-size: 13px;
}
.visual-panel {
  min-height: 360px;
  border-radius: var(--radius);
    background-image:
    linear-gradient(rgba(33, 13, 73, 0.165), rgba(33, 13, 73, 0.72)),
    url("../img/team.png");
      background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 26px;
  color: #2b1357;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.document-stack {
  height: 100%;
  display: grid;
  place-items: center;
  min-height: 300px;
}
.service-card h3 {
  margin-bottom: 12px;
}
.service-list {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.service-list li {
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  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.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}
.photo-card {
  min-height: 365px;
  border-radius: 18px;
  overflow: hidden;
    background-image:
    linear-gradient(rgba(33, 13, 73, 0.165), rgba(33, 13, 73, 0.72)),
    url("../img/mission.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  box-shadow: var(--shadow);
}
.photo-card svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.quote {
  border-left: 4px solid var(--blue);
  padding-left: 22px;
  margin: 0 0 30px;
}
.quote strong {
  font-size: 22px;
  display: block;
  margin-bottom: 8px;
}
.quote p {
  margin: 0;
  color: #f2eafd;
  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: #169cff;
  letter-spacing: -0.05em;
}
.stat span {
  font-weight: 800;
  color: #e8def5;
}
.longtext {
  width: min(840px, 100%);
  margin: 0 auto;
  color: #f0e7fb;
  font-weight: 610;
}
.longtext p {
  margin: 0 0 22px;
}
.form-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  align-items: start;
}
.form-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 28px;
}
label {
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin: 0 0 8px;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 9px;
  padding: 14px 15px;
  font: inherit;
  font-weight: 650;
  outline: none;
}
input::placeholder,
textarea::placeholder {
  color: #bba8d7;
}
select option {
  background: #281251;
}
.form-row {
  margin-bottom: 18px;
}
textarea {
  min-height: 112px;
  resize: vertical;
}
.form-note {
  font-size: 12px;
  text-align: center;
  color: #bfaadd;
  margin-top: 12px;
}
.info-grid {
  display: grid;
  gap: 22px;
}
.info-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
}
.info-line {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  color: #eee1ff;
  font-weight: 650;
  margin: 12px 0;
}
.map-slot {
  margin-top: 22px;
  min-height: 310px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08),
    rgba(7, 151, 255, 0.12)
  );
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
}
.map-slot svg {
  width: 100%;
  height: 260px;
  opacity: 0.72;
}
.footer {
  background: #0b1425;
  padding: 54px 0 30px;
  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: 15px;
}
.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: 38px;
  padding-top: 26px;
  color: #aeb8cd;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}
.subhero {
  padding: 76px 0 62px;
  text-align: center;
}
.subhero h1 {
  font-size: clamp(42px, 6vw, 68px);
}
.subhero p {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
}
.timeline {
  position: relative;
  max-width: 930px;
  margin: 0 auto;
}
.timeline:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(var(--blue), var(--violet));
}
.t-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  margin: 0 0 34px;
  align-items: center;
}
.t-item:nth-child(even) .t-card {
  grid-column: 2;
}
.t-item:nth-child(even) .t-empty {
  grid-column: 1;
  grid-row: 1;
}
.t-card {
  position: relative;
}
.t-card:after {
  content: "";
  position: absolute;
  right: -44px;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 8px rgba(7, 151, 255, 0.18);
}
.t-item:nth-child(even) .t-card:after {
  right: auto;
  left: -44px;
}
.price-card {
  text-align: center;
  padding: 34px 26px;
  display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 450px;
    height: auto;
}
.price-card.featured {
  border-color: rgba(7, 151, 255, 0.8);
  background: linear-gradient(
    145deg,
    rgba(7, 151, 255, 0.16),
    rgba(255, 255, 255, 0.06)
  );
  transform: translateY(-10px);
}
.price {
  font-size: 44px;
  font-weight: 950;
  letter-spacing: -0.05em;
  margin: 12px 0 4px;
}
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  background: rgba(12, 18, 36, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.4);
  border-radius: 18px;
  padding: 18px;
  display: none;
  gap: 18px;
  align-items: center;
  max-width: 980px;
  margin: auto;
}
.cookie-banner.show {
  display: flex;
}
.cookie-banner p {
  margin: 0;
  color: #d5deef;
  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: 11px;
  padding: 11px 16px;
  font-weight: 900;
  cursor: pointer;
}
.cookie-accept {
  background: linear-gradient(135deg, var(--violet), var(--blue));
}
.cookie-settings,
.cookie-reject {
  background: rgba(255, 255, 255, 0.1);
}
.cookie-panel {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(10, 8, 20, 0.68);
  display: none;
  place-items: center;
  padding: 20px;
}
.cookie-panel.show {
  display: grid;
}
.cookie-modal {
  background: #101a31;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  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: #556070;
  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(--violet), 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 ul {
  color: #f0e7fb;
}
.notice {
  background: rgba(7, 151, 255, 0.14);
  border: 1px solid rgba(7, 151, 255, 0.3);
  border-radius: 16px;
  padding: 18px;
  color: #eaf8ff;
  font-weight: 700;
}
.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;
}
@media (max-width: 920px) {
  .nav-links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 82px;
    background: #160a33;
    border: 1px solid var(--line);
    border-radius: 18px;
    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 {
    padding-top: 46px;
  }
  .hero-card {
    min-height: 350px;
  }
  .timeline:before {
    left: 13px;
  }
  .t-item,
  .t-item:nth-child(even) {
    display: block;
    margin-left: 28px;
  }
  .t-card:after,
  .t-item:nth-child(even) .t-card:after {
    left: -46px;
    right: auto;
  }
}
@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: 56px 0;
  }
}
