:root {
  --bg: #070512;
  --bg-soft: #0d091c;
  --card: rgba(255, 255, 255, 0.065);
  --card-strong: rgba(255, 255, 255, 0.095);
  --border: rgba(255, 255, 255, 0.12);
  --text: #f6f2ff;
  --muted: #b9aecf;
  --muted-2: #8f83aa;
  --accent: #9b5cff;
  --accent-2: #28e0b3;
  --accent-3: #ff4ecd;
  --danger: #ff6b8b;
  --radius: 24px;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 12%, rgba(155, 92, 255, 0.26), transparent 28%),
    radial-gradient(circle at 86% 8%, rgba(40, 224, 179, 0.15), transparent 24%),
    radial-gradient(circle at 50% 92%, rgba(255, 78, 205, 0.13), transparent 28%),
    var(--bg);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.22) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(155,92,255,0.28) 0 1px, transparent 1.7px),
    radial-gradient(circle, rgba(40,224,179,0.18) 0 1px, transparent 1.5px);
  background-size: 120px 120px, 180px 180px, 230px 230px;
  background-position: 0 0, 30px 60px, 70px 20px;
  opacity: 0.35;
  animation: sporesMove 24s linear infinite;
}

@keyframes sporesMove {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-80px, -120px, 0); }
}

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

p {
  color: var(--muted);
  line-height: 1.72;
}

.container {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(7, 5, 18, 0.78);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 20px;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,0.9), transparent 9%),
    radial-gradient(circle at 68% 70%, rgba(40,224,179,0.95), transparent 12%),
    linear-gradient(135deg, #8d4dff, #2c174d 48%, #111827);
  box-shadow: 0 0 30px rgba(155, 92, 255, 0.4);
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover {
  color: var(--text);
}

.actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.07);
  color: var(--text);
  font-weight: 700;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.26);
  background: rgba(255,255,255,0.10);
}

.btn-primary {
  border: 0;
  background: linear-gradient(135deg, var(--accent), #6c45ff 48%, #28e0b3);
  box-shadow: 0 14px 34px rgba(155, 92, 255, 0.26);
}

.btn-ghost {
  background: rgba(255,255,255,0.045);
}

.hero {
  padding: 92px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 46px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border: 1px solid rgba(40,224,179,0.28);
  background: rgba(40,224,179,0.08);
  color: #c9fff2;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent-2);
  box-shadow: 0 0 18px var(--accent-2);
}

h1 {
  margin: 24px 0 18px;
  font-size: clamp(44px, 7vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.gradient-text {
  background: linear-gradient(135deg, #fff, #d9ccff 45%, #7ff7df);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 680px;
  font-size: 19px;
  color: #d2c9e7;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 18px;
  color: var(--muted-2);
  font-size: 14px;
}

.visual-card {
  position: relative;
  min-height: 510px;
  border-radius: 34px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.105), rgba(255,255,255,0.035)),
    radial-gradient(circle at 50% 30%, rgba(155,92,255,0.32), transparent 42%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.orbit {
  position: absolute;
  inset: 46px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  animation: rotate 22s linear infinite;
}

.orbit:nth-child(2) {
  inset: 90px 58px;
  animation-duration: 30s;
  transform: rotate(36deg);
}

.orbit:nth-child(3) {
  inset: 128px 72px;
  animation-duration: 18s;
  transform: rotate(-18deg);
}

.node {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: var(--accent-2);
  box-shadow: 0 0 22px var(--accent-2);
}

.node.p1 { top: 13%; left: 48%; }
.node.p2 { right: 17%; top: 45%; background: var(--accent); box-shadow: 0 0 22px var(--accent); }
.node.p3 { bottom: 19%; left: 23%; background: var(--accent-3); box-shadow: 0 0 22px var(--accent-3); }

.phone-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(320px, 78%);
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,0.13);
  background: rgba(9, 7, 22, 0.72);
  backdrop-filter: blur(18px);
  border-radius: 30px;
  padding: 22px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
}

.status {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  margin-bottom: 12px;
}

.status strong {
  display: block;
}

.status span {
  color: var(--muted-2);
  font-size: 13px;
}

.pill {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(40,224,179,0.12);
  color: #bffbed;
  font-size: 13px;
  font-weight: 800;
}

@keyframes rotate {
  to { rotate: 360deg; }
}

.section {
  padding: 78px 0;
}

.section-title {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.section-title h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.section-title p {
  max-width: 520px;
  margin: 0;
}

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

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.16);
}

.card:hover {
  background: var(--card-strong);
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: rgba(155, 92, 255, 0.13);
  border: 1px solid rgba(155, 92, 255, 0.28);
}

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

.card p {
  margin: 0;
  font-size: 15px;
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 74px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 22px;
  top: 22px;
  width: 34px;
  height: 34px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.price {
  display: flex;
  flex-direction: column;
  min-height: 265px;
}

.price .amount {
  margin: 18px 0 10px;
  font-size: 38px;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.price .amount span {
  color: var(--muted-2);
  font-size: 16px;
  font-weight: 700;
}

.price ul {
  padding: 0;
  margin: 18px 0 24px;
  list-style: none;
  color: var(--muted);
  line-height: 1.9;
}

.price .btn {
  margin-top: auto;
}

.location {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.flag {
  font-size: 34px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255,255,255,0.045);
  padding: 20px 22px;
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.faq-item p {
  margin: 0;
}

.cta {
  padding: 44px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.13);
  background:
    radial-gradient(circle at 18% 20%, rgba(155,92,255,0.32), transparent 34%),
    radial-gradient(circle at 82% 16%, rgba(40,224,179,0.20), transparent 30%),
    rgba(255,255,255,0.06);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer {
  padding: 46px 0;
  border-top: 1px solid rgba(255,255,255,0.09);
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

.footer a {
  color: var(--muted);
}

.footer a:hover {
  color: var(--text);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.legal-page {
  padding: 64px 0 96px;
}

.legal-shell {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: rgba(255,255,255,0.055);
  padding: clamp(24px, 5vw, 52px);
  box-shadow: var(--shadow);
}

.legal-shell h1 {
  font-size: clamp(36px, 6vw, 56px);
}

.legal-shell h2 {
  margin-top: 34px;
}

.legal-shell li {
  color: var(--muted);
  line-height: 1.75;
  margin: 8px 0;
}

.notice {
  border: 1px solid rgba(40,224,179,0.25);
  background: rgba(40,224,179,0.08);
  color: #d7fff6;
  border-radius: 18px;
  padding: 16px 18px;
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-grid,
  .cta,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .visual-card {
    min-height: 420px;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .section-title {
    display: block;
  }

  .section-title p {
    margin-top: 12px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .header-inner {
    min-height: 66px;
  }

  .actions .btn-ghost {
    display: none;
  }

  h1 {
    font-size: 43px;
  }

  .hero-actions {
    display: grid;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .card,
  .cta {
    padding: 20px;
  }

  .step {
    padding-left: 20px;
    padding-top: 68px;
  }

  .step::before {
    left: 20px;
  }
}

/* Refinements: real logo, modern icons, local flags */
.logo-image-wrap {
  overflow: hidden;
  background: rgba(255,255,255,0.08);
}

.logo-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-icon {
  color: #d9ccff;
}


.logo-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.logo-image-wrap {
  overflow: hidden;
  background: rgba(255,255,255,0.06);
}

.app-icon-image-wrap {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 14px 34px rgba(0,0,0,0.22);
  overflow: hidden;
}

.app-icon-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: transparent;
}

.logo-mark {
  width: 42px;
  height: 42px;
}

.footer .logo-mark {
  width: 38px;
  height: 38px;
}

.flag-img {
  width: 58px;
  height: 42px;
  display: block;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.22);
}

.footer .logo-mark {
  width: 38px;
  height: 38px;
}


.app-icon-rabbithole {
  object-fit: cover;
  transform: scale(1.22);
}


.app-icon-image-wrap-happ {
  background: #f4f4f6;
}

.app-icon-image-wrap-happ .app-icon-image {
  object-fit: contain;
  padding: 0;
  transform: scale(1.45);
}


.section-about {
  padding-top: 18px;
}

.about-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 34px;
  padding: clamp(24px, 5vw, 44px);
  background:
    radial-gradient(circle at 16% 18%, rgba(155,92,255,0.22), transparent 32%),
    radial-gradient(circle at 86% 20%, rgba(40,224,179,0.14), transparent 28%),
    rgba(255,255,255,0.055);
  box-shadow: 0 22px 70px rgba(0,0,0,0.28);
}

.about-card h2 {
  margin: 18px 0 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.about-card p:first-child {
  margin-top: 0;
}

@media (max-width: 920px) {
  .about-card {
    grid-template-columns: 1fr;
  }
}


.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.contact-help {
  margin-top: 34px;
  padding: 0 4px;
}

.contact-help h2 {
  margin-top: 0;
}

@media (max-width: 720px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .contact-help {
    padding: 0;
  }
}

/* Logo size tuning */
.header .logo-mark {
  width: 56px;
  height: 56px;
  border-radius: 18px;
}

.header .logo {
  gap: 14px;
  font-size: 21px;
}

.footer .logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
}

@media (max-width: 620px) {
  .header .logo-mark {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .header .logo {
    gap: 12px;
    font-size: 19px;
  }

  .footer .logo-mark {
    width: 42px;
    height: 42px;
  }
}

/* Documents accordion */
.documents-shell {
  max-width: 980px;
}

.docs-accordion {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.doc-item {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  background: rgba(255,255,255,0.045);
  overflow: hidden;
}

.doc-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  color: var(--text);
  font-size: 19px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.doc-item summary::-webkit-details-marker {
  display: none;
}

.doc-item summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(155,92,255,0.16);
  border: 1px solid rgba(155,92,255,0.28);
  color: #e6dcff;
  font-size: 24px;
  line-height: 1;
}

.doc-item[open] summary {
  border-bottom: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.045);
}

.doc-item[open] summary::after {
  content: "–";
}

.doc-content {
  padding: 4px 24px 28px;
}

.doc-content h2 {
  font-size: 22px;
}

.doc-content ul {
  padding-left: 22px;
}

@media (max-width: 620px) {
  .doc-item summary {
    padding: 18px;
    font-size: 17px;
  }

  .doc-content {
    padding: 2px 18px 24px;
  }
}

/* Documents contrast fix */
.documents-shell {
  background:
    radial-gradient(circle at 14% 8%, rgba(155,92,255,0.10), transparent 34%),
    rgba(255,255,255,0.035);
}

.doc-item {
  background: rgba(10, 8, 24, 0.58);
}

.doc-item[open] {
  background: rgba(10, 8, 24, 0.72);
  border-color: rgba(255,255,255,0.14);
}

.doc-item[open] summary {
  background: rgba(255,255,255,0.035);
}

.doc-content {
  background: rgba(8, 6, 18, 0.30);
}

.doc-content .notice {
  background: rgba(40,224,179,0.055);
  border-color: rgba(40,224,179,0.20);
}

.doc-content p,
.doc-content li {
  color: #cfc6e3;
}

.doc-content h2 {
  color: #f7f2ff;
}

.pricing-cta {
  margin-top: 22px;
}

/* Contact page custom icons */
.contact-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow: 0 14px 34px rgba(0,0,0,0.20);
  overflow: hidden;
}

.contact-icon-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

/* Contact icons shape fix */
.contact-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.contact-icon-img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 999px;
  display: block;
}

/* Language switch */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.055);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.lang-switch:hover {
  color: var(--text);
  background: rgba(255,255,255,0.09);
}

@media (max-width: 620px) {
  .lang-switch {
    min-height: 34px;
    padding: 0 10px;
    font-size: 13px;
  }
}

/* New locations icon */
.new-locations-img {
  object-fit: contain;
  background: transparent;
  box-shadow: none;
}

/* New locations icon size tweak */
.new-locations-img {
  width: 58px;
  height: 58px;
}
