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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #182235;
  background: #f6fbff;
}

.hero {
  min-height: 92vh;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.24), transparent 32%),
    linear-gradient(135deg, #06283d 0%, #0f766e 48%, #0284c7 100%);
  color: white;
  padding: 25px 8%;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin-left: 22px;
  font-weight: 700;
  opacity: 0.95;
}

.hero-content {
  max-width: 840px;
  margin-top: 130px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 800;
  color: #fcd34d;
  margin-bottom: 12px;
}

.eyebrow.dark {
  color: #0284c7;
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1.02;
  margin-bottom: 22px;
  letter-spacing: -2px;
}

.hero-text {
  font-size: 1.25rem;
  max-width: 760px;
  margin-bottom: 32px;
  color: #eef9ff;
}

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

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

.btn, .small-btn {
  display: inline-block;
  background: #fcd34d;
  color: #102030;
  padding: 15px 25px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 12px 25px rgba(0,0,0,0.18);
}

.btn.secondary {
  background: white;
  color: #0f766e;
}

.btn.secondary.light {
  background: rgba(255,255,255,0.16);
  color: white;
  border: 1px solid rgba(255,255,255,0.35);
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  padding: 18px 8%;
  background: white;
  box-shadow: 0 12px 28px rgba(2, 132, 199, 0.12);
  text-align: center;
  font-weight: 800;
  color: #0f766e;
}

.section {
  padding: 75px 8%;
  text-align: center;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.section > p {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.08rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.card {
  position: relative;
  background: white;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 18px 35px rgba(9, 44, 66, 0.11);
  border: 1px solid rgba(2, 132, 199, 0.10);
}

.icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.card h3 {
  color: #0f766e;
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.highlight {
  background: linear-gradient(135deg, #e0f2fe, #ecfdf5);
}

.price h4 {
  font-size: 2.3rem;
  color: #0284c7;
  margin: 10px 0;
}

.featured {
  border: 3px solid #fcd34d;
  transform: translateY(-8px);
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #fcd34d;
  color: #102030;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
}

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

.digital {
  background: #ecfdf5;
}

.contact {
  background: linear-gradient(135deg, #06283d, #0f766e);
  color: white;
}

.contact-box {
  background: rgba(255,255,255,0.13);
  max-width: 600px;
  margin: 28px auto;
  padding: 26px;
  border-radius: 22px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.18);
}

.contact-box a {
  color: white;
  font-weight: 700;
}

footer {
  text-align: center;
  padding: 22px;
  background: #111827;
  color: white;
}

@media (max-width: 700px) {
  nav {
    flex-direction: column;
    gap: 18px;
  }

  .nav-links a {
    margin: 0 8px;
  }

  .hero-content {
    margin-top: 80px;
  }

  .featured {
    transform: none;
  }
}
