/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:      #1a56db;
  --blue-dark: #1340b0;
  --blue-light:#eff6ff;
  --gray-50:   #f9fafb;
  --gray-100:  #f3f4f6;
  --gray-200:  #e5e7eb;
  --gray-400:  #9ca3af;
  --gray-600:  #4b5563;
  --gray-800:  #1f2937;
  --black:     #111827;
  --white:     #ffffff;
  --radius:    8px;
  --shadow:    0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.06);
  --nav-h:     64px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Utility ── */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px;  }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background .15s, transform .1s;
  text-align: center;
  border: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover { background: var(--blue-dark); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover { background: var(--blue-light); }

.btn-lg { padding: 17px 40px; font-size: 1.1rem; }
.btn-block { width: 100%; display: block; }

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  height: var(--nav-h);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.nav-logo {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -.3px;
  white-space: nowrap;
}
.nav-logo span { color: var(--blue); }
.nav-logo:hover { text-decoration: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  flex-wrap: nowrap;
}

.nav-links a {
  color: var(--gray-600);
  font-size: .875rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background .12s, color .12s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--blue-light);
  color: var(--blue);
  text-decoration: none;
}

.nav-cta { margin-left: 8px; }

.nav-cta a {
  background: #f59e0b !important;
  color: #111 !important;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 6px;
}
.nav-cta a:hover {
  background: #f59e0b !important;
  color: #111 !important;
  text-decoration: none;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 12px 20px 20px;
    gap: 2px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 12px; }
  .nav-cta { display: none; }
}

/* ── Footer ── */
.footer {
  background: var(--gray-800);
  color: var(--gray-400);
  padding: 48px 0 28px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: .9rem;
  margin-top: 10px;
  max-width: 280px;
  line-height: 1.6;
}

.footer-col h4 {
  color: var(--white);
  font-size: .875rem;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: var(--gray-400);
  font-size: .9rem;
  transition: color .12s;
}
.footer-col a:hover { color: var(--white); text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  font-size: .82rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}
.footer-logo span { color: #60a5fa; }

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
}

/* ── Page header (inner pages) ── */
.page-header {
  background: var(--blue-light);
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--gray-200);
}

.page-header h1 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 520px;
}

/* ── Section spacing ── */
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-alt { background: var(--gray-50); }

/* ── Section titles ── */
.section-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.25;
}

.section-sub {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 560px;
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, #1a56db 0%, #1340b0 100%);
  color: var(--white);
  padding: 96px 0 88px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; }

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .5px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,.2);
}

.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.12;
  max-width: 700px;
  margin-bottom: 24px;
  letter-spacing: -.5px;
}

.hero p {
  font-size: 1.15rem;
  opacity: .88;
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.65;
}

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

.btn-white {
  background: var(--white);
  color: var(--blue);
  font-weight: 700;
}
.btn-white:hover { background: #f0f4ff; }

.btn-ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.3);
}
.btn-ghost:hover { background: rgba(255,255,255,.2); }

.hero-social-proof {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: .9rem;
  opacity: .8;
  flex-wrap: wrap;
}

.hero-social-proof .stars { color: #fbbf24; letter-spacing: 2px; }

/* ── Trust bar ── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 0;
}

.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  color: var(--gray-600);
  font-weight: 500;
}

.trust-item svg { flex-shrink: 0; }

/* ── Feature cards ── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: box-shadow .15s, transform .15s;
}
.card:hover { box-shadow: 0 4px 24px rgba(0,0,0,.1); transform: translateY(-2px); }

.card-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 1.3rem;
}

.card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.card p  { font-size: .9rem; color: var(--gray-600); }

/* ── Steps ── */
.steps { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }

.step {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-200);
  align-items: flex-start;
}
.step:last-child { border-bottom: none; }

.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.step p  { font-size: .95rem; color: var(--gray-600); }

/* ── Checklist ── */
.checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }

.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .975rem;
  color: var(--gray-800);
}

.check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  margin-top: 1px;
}

/* ── Pricing card ── */
.pricing-wrap { display: flex; justify-content: center; margin-top: 48px; }

.pricing-card {
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 8px 40px rgba(26,86,219,.12);
  text-align: center;
}

.pricing-badge {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.pricing-card h2 { font-size: 1.3rem; font-weight: 800; margin-bottom: 6px; }

.price-row {
  margin: 24px 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
}

.price-dollar { font-size: 1.5rem; font-weight: 700; color: var(--gray-600); margin-bottom: 8px; }
.price-amount { font-size: 4rem; font-weight: 900; line-height: 1; color: var(--black); }
.price-period { font-size: .9rem; color: var(--gray-400); margin-bottom: 10px; }

.pricing-card .note {
  font-size: .85rem;
  color: var(--gray-600);
  margin-top: 16px;
  line-height: 1.5;
}

/* ── CTA band ── */
.cta-band {
  background: linear-gradient(135deg, #1a56db 0%, #1340b0 100%);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
}

.cta-band h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 800; margin-bottom: 14px; }
.cta-band p  { opacity: .85; font-size: 1.05rem; margin-bottom: 32px; }

/* ── Testimonials ── */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 40px; }

.testimonial {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.testimonial-stars { color: #f59e0b; font-size: .9rem; margin-bottom: 12px; }
.testimonial p { font-size: .95rem; color: var(--gray-600); line-height: 1.6; font-style: italic; }
.testimonial-author { margin-top: 16px; font-size: .875rem; font-weight: 700; color: var(--gray-800); }

/* ── FAQ ── */
.faq { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }

.faq-item {
  border-top: 1px solid var(--gray-200);
}
.faq-item:last-child { border-bottom: 1px solid var(--gray-200); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-q .icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  font-weight: 700;
  transition: transform .2s;
}

.faq-q[aria-expanded="true"] .icon { transform: rotate(45deg); }

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .25s ease, padding .2s;
}

.faq-a.open { max-height: 300px; padding-bottom: 20px; }
.faq-a p { font-size: .95rem; color: var(--gray-600); line-height: 1.65; }

/* ── Form embed ── */
.form-embed {
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 40px;
}

.form-embed iframe {
  display: block;
  width: 100%;
  border: none;
  min-height: 680px;
}

/* ── Contact form ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 48px;
}

@media (max-width: 680px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form { display: flex; flex-direction: column; gap: 18px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label { font-size: .875rem; font-weight: 600; color: var(--gray-800); }

.form-group input,
.form-group textarea,
.form-group select {
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: inherit;
  color: var(--black);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,86,219,.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: none;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
  border-radius: var(--radius);
  padding: 16px;
  font-size: .95rem;
  font-weight: 500;
}

.contact-info { display: flex; flex-direction: column; gap: 24px; }

.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }

.contact-info-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1.1rem;
}

.contact-info-item h4 { font-size: .9rem; font-weight: 700; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: .9rem; color: var(--gray-600); }

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 48px;
}
@media (max-width: 680px) { .about-grid { grid-template-columns: 1fr; } }

.about-visual {
  background: var(--blue-light);
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
}

.about-visual .big-num {
  font-size: 4rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}
.about-visual .big-label { font-size: .9rem; color: var(--gray-600); margin-top: 6px; }
.about-stats { display: flex; justify-content: center; gap: 32px; margin-top: 32px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat .num { font-size: 1.8rem; font-weight: 800; color: var(--black); }
.stat .lbl { font-size: .8rem; color: var(--gray-600); margin-top: 2px; }

/* ── Privacy ── */
.prose h2 { font-size: 1.2rem; font-weight: 700; margin: 36px 0 10px; color: var(--black); }
.prose h2:first-child { margin-top: 0; }
.prose p  { font-size: .95rem; color: var(--gray-600); margin-bottom: 14px; line-height: 1.7; }
.prose ul { list-style: disc; padding-left: 20px; margin-bottom: 14px; }
.prose ul li { font-size: .95rem; color: var(--gray-600); margin-bottom: 6px; }
.prose .updated { font-size: .82rem; color: var(--gray-400); margin-bottom: 32px; }

/* ── Responsive tweaks ── */
@media (max-width: 520px) {
  .btn-lg { padding: 15px 28px; font-size: 1rem; }
  .hero { padding: 72px 0 64px; }
  .hero p { font-size: 1rem; }
  .pricing-card { padding: 36px 24px; }
}
