
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: radial-gradient(circle at top, #020617 0, #020314 45%, #000010 100%);
  color: #f9fafb;
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

/* Layout */

.wrapper {
  max-width: 1120px;
  margin: 0 auto;
  padding: 96px 16px 120px;
}

header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(2, 6, 23, 0.94);
  border-bottom: 1px solid rgba(148, 163, 255, 0.25);
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-container img {
  width: 32px;
  height: 32px;
}

.logo-title {
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.98rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.9rem;
  color: #c7d2fe;
}

.nav-links a {
  padding: 4px 8px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background: rgba(37, 99, 235, 0.2);
  color: #e5e7ff;
}

.nav-call-btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  background: linear-gradient(135deg, #22d3ee, #38bdf8, #4ade80);
  color: #020617;
  cursor: pointer;
  box-shadow: 0 0 18px rgba(59, 130, 246, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.nav-call-btn span.phone {
  font-weight: 500;
  opacity: 0.9;
}

/* Hero */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  animation: fadeInUp 0.8s ease-out both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 255, 0.5);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #a5b4fc;
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  margin-top: 16px;
  margin-bottom: 12px;
}

.hero-highlight {
  background: linear-gradient(135deg, #22d3ee, #38bdf8, #4ade80);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  color: #e5e7eb;
  font-size: 0.98rem;
  max-width: 520px;
}

.hero-cta-row {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.primary-btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  font-size: 0.96rem;
  font-weight: 600;
  background: linear-gradient(135deg, #22d3ee, #38bdf8, #4ade80);
  color: #020617;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.5);
}

.secondary-link {
  font-size: 0.9rem;
  color: #a5b4fc;
  text-decoration: underline;
  text-decoration-style: dotted;
  cursor: pointer;
}

.hero-meta {
  margin-top: 10px;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Gradient bordered cards */

.card {
  position: relative;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.5), rgba(45, 212, 191, 0.5));
  overflow: hidden;
}

.card-inner {
  border-radius: inherit;
  background: rgba(15, 23, 42, 0.96);
  padding: 16px 16px 18px;
}

.card h2,
.card h3 {
  margin-bottom: 8px;
}

.card p {
  font-size: 0.9rem;
  color: #e5e7ff;
}

.pill {
  display: inline-block;
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 255, 0.7);
  color: #c7d2fe;
  margin-bottom: 4px;
}

/* Grids & sections */

section {
  margin-top: 56px;
}

.section-title {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 0.9rem;
  color: #d1d5db;
  max-width: 560px;
  margin-bottom: 18px;
}

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

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

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

/* Steps */

.steps {
  counter-reset: step;
}

.step-item {
  position: relative;
  padding-left: 38px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: #e5e7ff;
}

.step-item::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 3px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: #c7d2ff;
  background: rgba(15, 23, 42, 0.9);
}

/* FAQ */

.faq-item {
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 255, 0.35);
  padding: 10px 12px;
  margin-bottom: 10px;
  background: rgba(15, 23, 42, 0.94);
}

.faq-q {
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.faq-a {
  font-size: 0.86rem;
  color: #e5e7ff;
}

/* Footer */

footer {
  margin-top: 40px;
  padding: 18px 16px 80px;
  font-size: 0.78rem;
  color: #9ca3af;
  border-top: 1px solid rgba(148, 163, 255, 0.35);
  text-align: center;
  background: #020617;
}

/* Bottom Call Bar */

.bottom-call-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: radial-gradient(circle at top, #111827, #020617);
  border-top: 1px solid rgba(148, 163, 255, 0.4);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.bottom-call-label {
  display: none;
  font-size: 0.8rem;
  color: #9ca3af;
}

.bottom-call-bar .primary-btn {
  flex: 1;
  max-width: 420px;
}

/* Mobile Call Popup */

.call-popup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
}

.call-popup {
  width: 90%;
  max-width: 360px;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.7), rgba(45, 212, 191, 0.7));
  animation: popIn 0.25s ease-out;
}

.call-popup-inner {
  border-radius: inherit;
  background: #020617;
  padding: 18px 16px 16px;
}

.call-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.call-popup-title {
  font-size: 1rem;
  font-weight: 600;
}

.call-popup-close {
  background: transparent;
  border: none;
  color: #9ca3af;
  font-size: 1.2rem;
  cursor: pointer;
}

.call-popup-text {
  font-size: 0.86rem;
  color: #e5e7eb;
  margin-bottom: 12px;
}

/* Animations */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .wrapper {
    padding-top: 80px;
    padding-bottom: 120px;
  }

  .nav-links {
    display: none;
  }

  .nav-call-btn span.phone {
    display: none;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .bottom-call-label {
    display: inline;
  }
}
