
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #03050a;
  --charcoal: #080d15;
  --charcoal-2: #0c1420;
  --blue: #087bff;
  --blue-light: #45b9ff;
  --ice: #dff4ff;
  --white: #f8fcff;
  --muted: #a9b6c8;
  --border: rgba(255,255,255,0.13);
  --border-blue: rgba(69,185,255,0.34);
  --glass: rgba(255,255,255,0.055);
  --shadow: 0 28px 90px rgba(0,0,0,0.38);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 18% 0%, rgba(8,123,255,0.12), transparent 32%),
    radial-gradient(circle at 82% 12%, rgba(69,185,255,0.08), transparent 28%),
    var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.45), transparent 75%);
  z-index: 0;
}

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

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
  background: rgba(3, 5, 10, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 18px 60px rgba(0,0,0,0.22);
}

.navbar {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  gap: 7px;
  align-items: center;
  font-weight: 900;
  letter-spacing: 1.4px;
  font-size: 20px;
  white-space: nowrap;
  text-shadow: 0 0 18px rgba(69,185,255,0.18);
}

.brand strong {
  color: var(--blue-light);
}

.nav-links {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-light), transparent);
  transition: width 0.25s ease;
}

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

.nav-links a:hover::after {
  width: 100%;
}

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

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  font-size: 12px;
  font-weight: 800;
}

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

.lang-switch a.active,
.lang-switch a:hover {
  color: var(--blue-light);
}

.nav-cta {
  background: linear-gradient(135deg, #0a7dff, #68caff);
  color: #00111f;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 10px 34px rgba(8,123,255,0.36), inset 0 1px 0 rgba(255,255,255,0.34);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 126px 24px 86px;
  background:
    radial-gradient(circle at 78% 42%, rgba(8,123,255,0.38), transparent 31%),
    radial-gradient(circle at 55% 80%, rgba(69,185,255,0.07), transparent 35%),
    linear-gradient(90deg, #03050a 0%, #07101b 54%, #081b2e 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -135px;
  bottom: 70px;
  width: 700px;
  height: 275px;
  border-radius: 50%;
  background:
    linear-gradient(150deg, rgba(255,255,255,0.07), transparent 41%),
    radial-gradient(circle at 65% 45%, rgba(8,123,255,0.5), transparent 43%);
  filter: blur(2px);
  transform: rotate(-8deg);
  opacity: 0.96;
}

.hero::before {
  content: "";
  position: absolute;
  right: 70px;
  bottom: 172px;
  width: 540px;
  height: 158px;
  border-top: 4px solid rgba(255,255,255,0.9);
  border-bottom: 2px solid rgba(69,185,255,0.95);
  border-radius: 70% 45% 30% 20%;
  transform: skewX(-15deg);
  opacity: 0.28;
  filter: drop-shadow(0 0 26px rgba(69,185,255,0.24));
}

.hero-content {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 100%;
}

.eyebrow, .section-label {
  color: var(--blue-light);
  text-transform: uppercase;
  letter-spacing: 2.4px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 14px;
}

.eyebrow::before,
.section-label::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  margin-right: 10px;
  vertical-align: middle;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
}

h1 {
  max-width: 805px;
  font-size: clamp(44px, 8vw, 88px);
  line-height: 0.95;
  letter-spacing: -3.4px;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #fff 8%, #d9e8f6 55%, #7ebfff 120%);
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 24px 90px rgba(8,123,255,0.18);
}

.hero-text {
  max-width: 740px;
  color: #dce7f4;
  font-size: 20px;
  margin-bottom: 34px;
}

.hero-actions, .contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 21px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #087bff, #63c8ff);
  color: #00111f;
  box-shadow: 0 16px 42px rgba(8,123,255,0.35), inset 0 1px 0 rgba(255,255,255,0.38);
}

.btn-secondary, .btn-card {
  border-color: var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.btn-secondary:hover, .btn-card:hover {
  border-color: var(--border-blue);
  box-shadow: 0 12px 34px rgba(8,123,255,0.16);
}

.trust-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.trust-row span {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 15px;
  color: #c7d5e6;
  background: rgba(255,255,255,0.045);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
}

.section {
  padding: 96px 24px;
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}

h2 {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.04;
  letter-spacing: -1.7px;
  margin-bottom: 20px;
}

h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

p {
  color: #d4deeb;
}

.paragraph-gap {
  margin-top: 16px;
}

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

.dark-section {
  background:
    radial-gradient(circle at 20% 0%, rgba(8,123,255,0.12), transparent 32%),
    linear-gradient(180deg, #070b12, #0b121d);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cards, .pricing-grid, .steps, .info-grid {
  display: grid;
  gap: 22px;
  margin-top: 36px;
}

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

.card, .price-card, .step, .contact-box, .info-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.035));
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 29px;
  box-shadow: var(--shadow);
}

.card::before, .price-card::before, .step::before, .info-card::before, .contact-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent 35%, rgba(8,123,255,0.08));
  opacity: 0.55;
  pointer-events: none;
}

.card:hover, .price-card:hover, .step:hover, .info-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-blue);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.icon {
  color: var(--blue-light);
  font-size: 27px;
  margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(69,185,255,0.4);
}

.card h3, .step h3 {
  color: var(--white);
}

.center {
  text-align: center;
}

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

.price-card {
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: rgba(69,185,255,0.92);
  transform: scale(1.025);
  background:
    radial-gradient(circle at 50% 0%, rgba(69,185,255,0.2), transparent 38%),
    linear-gradient(180deg, rgba(8,123,255,0.16), rgba(255,255,255,0.05));
  box-shadow: 0 28px 100px rgba(8,123,255,0.18), var(--shadow);
}

.badge {
  position: absolute;
  top: 16px;
  right: 18px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #00111f;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(8,123,255,0.28);
}

.price {
  font-size: 48px;
  color: var(--blue-light);
  font-weight: 900;
  margin: 12px 0 0;
  text-shadow: 0 0 30px rgba(69,185,255,0.24);
}

.promo {
  margin-top: 10px;
  display: inline-block;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(8,123,255,0.16);
  border: 1px solid rgba(69,185,255,0.42);
  color: #eaf7ff;
  font-weight: 900;
}

.price-subtitle {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 14px;
}

.price-card ul {
  list-style: none;
  margin-bottom: 18px;
  flex: 1;
}

.price-card li {
  padding: 9px 0;
  color: #d4deeb;
  border-bottom: 1px solid rgba(255,255,255,0.075);
}

.price-card li::before {
  content: "✓";
  color: var(--blue-light);
  font-weight: 900;
  margin-right: 8px;
}

.small-note {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}

.offer, .price-note {
  margin-top: 25px;
  padding: 20px 24px;
  border: 1px solid rgba(69,185,255,0.5);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(69,185,255,0.13), transparent 62%),
    rgba(8,123,255,0.1);
  text-align: center;
  color: var(--white);
  box-shadow: 0 20px 70px rgba(0,0,0,0.18);
}

.offer-deadline {
  display: inline-block;
  margin-top: 8px;
  color: #dce7f4;
  font-size: 15px;
  font-weight: 650;
}

.price-note {
  border-color: var(--border);
  background: rgba(255,255,255,0.04);
  color: #d4deeb;
}

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

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

.step span {
  color: var(--blue-light);
  font-weight: 900;
  font-size: 30px;
  letter-spacing: -1px;
}

.zone-note {
  margin: 18px 0;
  padding: 17px 19px;
  border-left: 4px solid var(--blue-light);
  background: rgba(8,123,255,0.11);
  border-radius: 16px;
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
}

.reassurance-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
}

.reassurance-list {
  display: grid;
  gap: 20px;
}

.reassurance-list div {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.032));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.reassurance-list div::after {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  background: linear-gradient(180deg, var(--blue-light), transparent);
  border-radius: 99px;
}

.contact {
  background:
    radial-gradient(circle at 50% 0%, rgba(8,123,255,0.24), transparent 38%),
    radial-gradient(circle at 80% 70%, rgba(69,185,255,0.08), transparent 35%),
    #03050a;
}

.contact-box {
  text-align: center;
  max-width: 870px;
  margin-inline: auto;
}

.contact-actions {
  justify-content: center;
  margin-top: 26px;
}

.contact-details {
  margin-top: 28px;
}

.contact-details p {
  margin: 7px 0;
}

footer {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 30px 20px;
  color: var(--muted);
  background: rgba(0,0,0,0.22);
}

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

@media (max-width: 980px) {
  .two-col, .service-grid, .pricing-grid, .steps, .reassurance-grid, .info-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .hero::before, .hero::after {
    opacity: 0.12;
  }

  .card:hover, .price-card:hover, .step:hover, .info-card:hover {
    transform: none;
  }
}

@media (max-width: 620px) {
  .navbar {
    padding: 14px 16px;
  }

  .brand {
    font-size: 15px;
    letter-spacing: 0.8px;
  }

  .nav-cta {
    display: none;
  }

  .lang-switch {
    font-size: 11px;
  }

  .hero {
    padding: 112px 18px 72px;
  }

  .section {
    padding: 74px 18px;
  }

  h1 {
    letter-spacing: -2.2px;
  }

  .hero-text {
    font-size: 18px;
  }

  .price {
    font-size: 41px;
  }

  .card, .price-card, .step, .contact-box, .info-card {
    padding: 24px;
    border-radius: 22px;
  }
}
