:root {
  --bg: #f7f8fb;
  --surface: #ffffff;
  --surface-alt: #f1f5fb;
  --text: #10203f;
  --muted: #51667a;
  --accent: #0257d1;
  --accent-strong: #003b82;
  --border: #d9e2ef;
  --shadow: 0 20px 50px rgba(16, 32, 63, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(16, 32, 63, 0.08);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--accent-strong);
}

.nav-cta {
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-section {
  padding: 4rem 0 3rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-copy h1,
.section-header h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 3.75rem);
  line-height: 1.05;
}

.hero-text,
.trust-line,
.section-header p,
.service-tagline,
.pricing-note,
.payment-card p,
.contact-copy p,
.footer-note {
  color: var(--muted);
}

.hero-text {
  max-width: 42rem;
  margin: 1.5rem 0 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.trust-line {
  max-width: 38rem;
  font-size: 0.95rem;
}

.hero-panel {
  padding: 2rem;
  background: linear-gradient(180deg, rgba(2, 87, 209, 0.1), rgba(255, 255, 255, 0.95));
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-panel h2 {
  margin-top: 0;
  font-size: 1.4rem;
}

.section {
  padding: 3rem 0;
}

.section-header {
  max-width: 36rem;
  margin-bottom: 2rem;
}

.card-grid {
  display: grid;
  gap: 1.5rem;
}

.info-card,
.service-card,
.pricing-card,
.payment-card {
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.info-card h3,
.service-card h3,
.pricing-card h3,
.payment-card h3 {
  margin-top: 0;
}

.service-card ul,
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.service-card li,
.pricing-card li {
  margin-bottom: 0.75rem;
  color: var(--muted);
}

.service-tagline,
.pricing-note {
  margin: 0.5rem 0 1rem;
}

.pricing-grid,
.service-grid,
.payment-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.pricing-card .price {
  margin: 1rem 0 0.5rem;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-strong);
}

.pricing-card .price span {
  display: block;
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
}

.pricing-disclaimer {
  margin-top: 1.5rem;
  color: var(--muted);
}

.payment-card {
  min-height: 160px;
}

.steps-grid {
  display: grid;
  gap: 1rem;
}

.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.step-card span {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}

.about-grid,
.contact-grid {
  display: grid;
  gap: 2rem;
}

.about-image img {
  border-radius: 24px;
  object-fit: cover;
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.about-copy h2 {
  margin-top: 0;
}

.contact-section {
  padding-bottom: 4rem;
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 1rem;
}

.contact-email a {
  color: var(--accent-strong);
}

.contact-form {
  display: grid;
  gap: 1rem;
  background: var(--surface);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-form label {
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid #d8dee9;
  border-radius: 14px;
  background: #fff;
  color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(2, 87, 209, 0.4);
  outline-offset: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 30px rgba(2, 87, 209, 0.18);
}

.btn-secondary {
  background: var(--surface-alt);
  color: var(--text);
}

.site-footer {
  padding: 2rem 0;
  background: #fff;
  border-top: 1px solid rgba(16, 32, 63, 0.08);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-brand {
  font-weight: 700;
  margin: 0;
}

.footer-note {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-list {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .header-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    padding-top: 1rem;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-section {
    padding-top: 3rem;
  }

  .hero-panel {
    padding: 1.5rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100%, calc(100% - 1.5rem));
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .contact-form,
  .hero-panel,
  .info-card,
  .service-card,
  .pricing-card,
  .payment-card,
  .step-card {
    padding: 1.25rem;
  }
}
