:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-alt: #eaf0f8;
  --text: #14233b;
  --muted: #4f637f;
  --primary: #1a2b4c;
  --primary-soft: #263f6d;
  --accent: #28a745;
  --accent-soft: #e8f8ee;
  --border: #d7e0ec;
  --radius: 14px;
  --shadow: 0 10px 28px rgba(13, 31, 58, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--surface-alt);
}

.section-accent {
  background: linear-gradient(130deg, #10213c 0%, #1d3964 60%, #214879 100%);
  color: #f2f7ff;
}

.eyebrow {
  margin: 0 0 0.7rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0 0 0.8rem;
  line-height: 1.2;
}

h1 {
  font-size: clamp(1.9rem, 6vw, 3rem);
}

h2 {
  font-size: clamp(1.55rem, 4vw, 2.2rem);
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0;
}

.lead {
  margin-top: 1rem;
  color: var(--muted);
  max-width: 60ch;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(244, 247, 251, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  min-height: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
}

.brand-mark {
  width: 2.15rem;
  height: 2.15rem;
  display: inline-flex;
  border-radius: 0.75rem;
  box-shadow: 0 10px 20px rgba(17, 42, 74, 0.25);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-text {
  display: inline-flex;
  align-items: baseline;
  letter-spacing: 0.01em;
}

.brand-name {
  color: #152846;
}

.brand-name-accent {
  color: #1a9650;
  margin-left: 0.06em;
}

.nav-list {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.2rem;
}

.nav-list a {
  color: var(--muted);
  font-weight: 500;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--primary);
}

.desktop-cta {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.78rem 1.15rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: #06230f;
  box-shadow: 0 8px 18px rgba(40, 167, 69, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #34bb56;
}

.btn-secondary {
  background: var(--surface);
  color: var(--primary);
  border-color: var(--border);
}

.hero-grid {
  display: grid;
  gap: 1.4rem;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-metrics {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.hero-metrics h2 {
  font-size: 1.25rem;
}

.hero-metrics ul {
  margin: 0.7rem 0 0;
  padding-left: 1rem;
}

.hero-metrics li + li {
  margin-top: 0.45rem;
}

.card-grid,
.pricing-grid,
.faq-list {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.95rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.15rem;
}

.card p {
  color: var(--muted);
}

.process-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.95rem;
}

.pricing-card ul {
  margin: 0.9rem 0 0;
  padding-left: 1rem;
}

.pricing-card li + li {
  margin-top: 0.35rem;
}

.pricing-btn {
  margin-top: 1rem;
  width: 100%;
}

.price {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.price span {
  margin-left: 0.25rem;
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
}

.featured {
  border-color: #a5dcb4;
  background: var(--accent-soft);
}

.contact-wrap {
  display: grid;
  gap: 1.2rem;
}

.contact-wrap p {
  color: #d5e5ff;
}

.contact-info {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(193, 214, 246, 0.3);
  border-radius: var(--radius);
  padding: 1.2rem;
  max-width: 42rem;
}

.contact-email-line {
  margin-top: 0.9rem;
  font-weight: 600;
  color: #f2f7ff !important;
}

.contact-email-link {
  color: #9de8b1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-mail-btn {
  margin-top: 1rem;
}

.footer {
  border-top: 1px solid var(--border);
  background: #f2f5fb;
}

.footer-wrap {
  min-height: 4.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  font-size: 0.93rem;
  color: var(--muted);
  padding: 0.9rem 0;
}

.footer a {
  color: var(--primary-soft);
}

.reveal {
  animation: fadeSlideIn 0.65s ease both;
}

.reveal:nth-of-type(2) {
  animation-delay: 0.06s;
}

.reveal:nth-of-type(3) {
  animation-delay: 0.12s;
}

.reveal:nth-of-type(4) {
  animation-delay: 0.18s;
}

.reveal:nth-of-type(5) {
  animation-delay: 0.24s;
}

.reveal:nth-of-type(6) {
  animation-delay: 0.3s;
}

.reveal:nth-of-type(7) {
  animation-delay: 0.36s;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

@media (min-width: 760px) {
  .nav-list {
    display: flex;
  }

  .desktop-cta {
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }

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

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

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

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

  .contact-wrap {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .footer-wrap {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1040px) {
  .section {
    padding: 5.2rem 0;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
