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

html { scroll-behavior: smooth; }

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #0f172a;
  color: #e5e7eb;
  line-height: 1.6;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

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

.brand img {
  height: 58px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 18px rgba(56, 189, 248, 0.25));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.nav-links a {
  color: #cbd5e1;
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #38bdf8;
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #38bdf8, #6366f1);
  color: #fff !important;
}

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

.hero {
  min-height: 88vh;
  padding: 110px 24px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.24), transparent 35%),
    radial-gradient(circle at bottom right, rgba(99, 102, 241, 0.24), transparent 35%),
    linear-gradient(135deg, #0f172a, #111827);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
}

.badge,
.section-label {
  display: inline-block;
  margin-bottom: 20px;
  padding: 8px 18px;
  border: 1px solid rgba(56, 189, 248, 0.45);
  border-radius: 999px;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.08);
  font-weight: 700;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 1.02;
  color: #ffffff;
  letter-spacing: -0.055em;
}

.hero-text {
  max-width: 720px;
  margin-bottom: 36px;
  font-size: 1.18rem;
  color: #cbd5e1;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-card {
  padding: 34px;
  border-radius: 34px;
  background: rgba(30, 41, 59, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  text-align: center;
}

.hero-card img {
  width: 100%;
  max-width: 360px;
  border-radius: 18px;
  margin-bottom: 22px;
  filter: drop-shadow(0 0 28px rgba(56, 189, 248, 0.25));
}

.hero-card h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.hero-card p {
  color: #cbd5e1;
}

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.btn.primary {
  background: linear-gradient(135deg, #38bdf8, #6366f1);
  border: none;
  box-shadow: 0 16px 40px rgba(56, 189, 248, 0.25);
}

.btn.secondary { background: rgba(15, 23, 42, 0.7); }

.btn.small {
  margin-top: 22px;
  padding: 11px 20px;
  font-size: 0.95rem;
}

.section {
  padding: 100px 24px;
  background: #0f172a;
}

.section.dark { background: #111827; }

.section h2 {
  margin-bottom: 26px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: #ffffff;
  letter-spacing: -0.035em;
}

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

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

.card,
.price-card,
.process div,
.contact-box,
.faq-item,
.legal-box {
  background: rgba(30, 41, 59, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.18);
}

.card h3,
.price-card h3,
.process h3,
.faq-item h3,
.legal-box h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 1.25rem;
}

.card p,
.price-card li,
.process p,
.contact p,
.price-note,
.faq-item p,
.legal-box p {
  color: #cbd5e1;
}

.stats {
  padding: 45px 24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: 24px;
}

.stats strong {
  display: block;
  color: #38bdf8;
  font-size: 2.4rem;
}

.stats span {
  color: #cbd5e1;
  font-weight: 700;
}

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

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

.price-card.featured {
  border-color: rgba(56, 189, 248, 0.65);
  transform: scale(1.03);
}

.price {
  margin: 10px 0 20px;
  color: #38bdf8;
  font-size: 1.7rem;
  font-weight: 900;
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.price-card li::before {
  content: "✓ ";
  color: #38bdf8;
  font-weight: 900;
}

.price-note {
  margin-top: 28px;
  font-size: 0.95rem;
}

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8, #6366f1);
  color: #ffffff;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.contact {
  text-align: center;
}

.contact-form {
  max-width: 680px;
  margin: 34px auto 28px;
  display: grid;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  font-size: 1rem;
  outline: none;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #38bdf8;
}

.contact-box {
  max-width: 680px;
  margin: 34px auto 28px;
  text-align: left;
}

.contact-box p {
  margin-bottom: 12px;
}

.contact-box a,
.legal-box a,
.footer a {
  color: #38bdf8;
  word-break: break-word;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.legal-note {
  margin-top: 18px;
  font-size: 0.92rem;
  color: #94a3b8 !important;
}

.footer {
  padding: 30px 24px;
  text-align: center;
  background: #020617;
  color: #94a3b8;
}

.footer p {
  margin-bottom: 8px;
}

.footer-links {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  color: #38bdf8;
  font-weight: 700;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

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

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

@media (max-width: 720px) {
  .navbar {
    justify-content: center;
  }

  .brand img {
    height: 50px;
  }

  .nav-links {
    justify-content: center;
    gap: 14px;
  }

  .hero {
    padding: 80px 20px;
  }

  h1 {
    font-size: 2.7rem;
  }

  .cards,
  .price-grid,
  .process,
  .stats-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 80px 20px;
  }

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

  .btn {
    width: 100%;
    text-align: center;
  }
  
.language-link {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.45);
  color: #38bdf8 !important;
  font-weight: 800;
  text-decoration: none;
}

.language-link:hover {
  background: rgba(56, 189, 248, 0.12);
  color: #ffffff !important;
}

