*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #1f2933;
  background-color: #f5f7fa;
}

/* Layout helpers */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background-color: #ffffff;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.section-intro {
  max-width: 720px;
  margin-bottom: 2rem;
}

/* Header */

.site-header {
  background-color: #0b3d91;
  color: #ffffff;
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0b3d91, #00b894);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.logo-text small {
  font-size: 0.7rem;
  opacity: 0.85;
}

.main-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.main-nav a {
  color: #e3f2fd;
  text-decoration: none;
  font-size: 0.9rem;
}

.main-nav a:hover {
  text-decoration: underline;
}

/* Hero */

.hero {
  background: radial-gradient(circle at top left, #e8f5ff, #f5f7fa 50%, #ecfdf5 100%);
  padding: 3.5rem 0 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.hero h1 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
}

.hero p {
  margin-bottom: 1rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1rem 0;
}

.hero-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 16px 40px rgba(15, 35, 75, 0.08);
}

.hero-card h2 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.hero-card ul {
  list-style: disc;
  padding-left: 1.25rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: #5c6c80;
  max-width: 640px;
}

.small-text {
  font-size: 0.85rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s ease-out;
}

.btn-primary {
  background: linear-gradient(135deg, #0b3d91, #00b894);
  color: #ffffff;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-outline {
  background-color: transparent;
  border-color: rgba(11, 61, 145, 0.4);
  color: #0b3d91;
}

.btn-outline:hover {
  background-color: rgba(11, 61, 145, 0.06);
}

.btn-full {
  width: 100%;
}

.small-btn {
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
}

/* Cards & grids */

.grid {
  display: grid;
  gap: 1.5rem;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background-color: #ffffff;
  border-radius: 1.1rem;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 8px 24px rgba(15, 35, 75, 0.06);
}

.card h3 {
  margin-bottom: 0.5rem;
}

/* Packages */

.packages-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.package-header {
  margin-bottom: 0.75rem;
}

.package-header h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
}

.price span {
  font-size: 0.8rem;
  font-weight: 500;
  color: #5c6c80;
}

.package-list {
  list-style: disc;
  padding-left: 1.3rem;
  margin: 0.75rem 0 0.75rem;
}

.package-note {
  font-size: 0.85rem;
  color: #5c6c80;
  margin-bottom: 0.75rem;
}

.package-featured {
  border: 2px solid #00b894;
  position: relative;
}

.package-featured::before {
  content: "Most Popular";
  position: absolute;
  top: -0.9rem;
  right: 1rem;
  background: #00b894;
  color: #ffffff;
  font-size: 0.7rem;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
}

/* Steps */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.step {
  background-color: #ffffff;
  border-radius: 1.1rem;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 8px 20px rgba(15, 35, 75, 0.06);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background-color: #0b3d91;
  color: #ffffff;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

/* Digital Card */

.digital-card {
  background-color: #ffffff;
  border-radius: 1.3rem;
  padding: 1.5rem 1.6rem;
  box-shadow: 0 16px 40px rgba(15, 35, 75, 0.1);
  max-width: 520px;
}

.digital-card-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.8rem;
}

.digital-logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0b3d91, #00b894);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ffffff;
}

.digital-card-body p {
  margin-bottom: 0.25rem;
}

.digital-tagline {
  margin-top: 0.6rem;
  font-style: italic;
}

.digital-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

/* Contact */

.contact-grid {
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: 2rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.5rem 0.6rem;
  border-radius: 0.6rem;
  border: 1px solid #cbd2e1;
  margin-bottom: 0.8rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0b3d91;
  box-shadow: 0 0 0 2px rgba(11, 61, 145, 0.15);
}

/* Footer */

.site-footer {
  background-color: #0b3d91;
  color: #ddeeff;
  padding: 1.3rem 0;
  margin-top: 2rem;
}

.footer-inner {
  text-align: center;
}

/* Responsive */

@media (max-width: 840px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .main-nav {
    justify-content: flex-end;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero h1 {
    font-size: 1.9rem;
  }
}
