/* ═══════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #4d7fff;
  --blue-bright: #6690ff;
  --blue-glow: rgba(50, 90, 255, 0.45);
  --bg: #0b1120;
  --bg-nav: #0d1526;
  --bg-card: #111c30;
  --border: rgba(255, 255, 255, 0.08);
  --text: #e8edf5;
  --muted: rgba(200, 210, 230, 0.55);
  --white: #ffffff;
  --radius: 14px;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
.navbar {
  background: var(--bg-nav);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-inner {
  height: 64px;
  display: flex;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.3px;
}

.logo-blue {
  color: var(--blue-bright);
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;

  /* Dark navy → deep blue radial gradient matching screenshot */
  background:
    radial-gradient(ellipse 70% 80% at 80% 50%,
      rgba(20, 50, 160, 0.55) 0%,
      rgba(10, 25, 80, 0.3) 50%,
      transparent 80%),
    radial-gradient(ellipse 50% 60% at 90% 20%,
      rgba(30, 60, 180, 0.3) 0%,
      transparent 60%),
    var(--bg);

  padding: 100px 0 100px;
}

/* Ambient blobs */
.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.blob-1 {
  width: 600px;
  height: 600px;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle,
      rgba(30, 70, 200, 0.35) 0%,
      rgba(10, 30, 120, 0.2) 50%,
      transparent 70%);
}

.blob-2 {
  width: 400px;
  height: 400px;
  bottom: -80px;
  right: 200px;
  background: radial-gradient(circle,
      rgba(20, 50, 160, 0.25) 0%,
      transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 1;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: rgba(220, 230, 255, 0.75);
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.04);
}

.badge svg {
  opacity: 0.7;
}

/* Headline */
h1 {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
}

.h1-domain {
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1.0;
  color: var(--text);
}

.h1-sub {
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1.05;
  color: var(--blue-bright);
}

/* Description */
.hero-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 48px;
}

/* CTA row */
.hero-cta {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  backdrop-filter: blur(8px);
}

.btn-cta:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.btn-cta svg {
  flex-shrink: 0;
}

.cta-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 28px;
}

.price-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--muted);
}

.price-amount {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
  line-height: 1.2;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-dash {
  font-size: 1.4rem;
}

.price-vat {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: var(--bg-nav);
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════
   MODAL
═══════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 25, 0.8);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.2s ease;
}

.modal-overlay[hidden] {
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal {
  background: #111c30;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 520px;
  position: relative;
  animation: slideUp 0.25s ease;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--muted);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.modal h2 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 6px;
}

.modal h2 .blue {
  color: var(--blue-bright);
}

.modal-sub {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 28px;
}

/* Form */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--muted);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  resize: vertical;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(180, 195, 220, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: rgba(77, 127, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(77, 127, 255, 0.15);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #f87171;
}

.field-error {
  font-size: 0.78rem;
  color: #f87171;
  font-weight: 500;
  min-height: 1em;
}

.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-top: 4px;
}

.btn-submit:hover {
  background: var(--blue-bright);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(77, 127, 255, 0.4);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.spin {
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.form-feedback {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  text-align: center;
}

.form-feedback.success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #6ee7b7;
}

.form-feedback.error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #fca5a5;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }

  .hero {
    padding: 70px 0 80px;
  }

  .h1-domain,
  .h1-sub {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
    letter-spacing: -2px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .cta-divider {
    width: 48px;
    height: 1px;
    margin: 0;
  }

  .modal {
    padding: 28px 20px;
  }
}