:root {
  --ink: #0f172a;
  --cream: #f3f6fb;
  --paper: #ffffff;
  --accent: #1f4fb5;
  --accent-dark: #162f63;
  --sun: #2563eb;
  --coral: #b4233c;
  --line: #d6deea;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #f8fbff 0%, var(--cream) 35%, #e7edf7 100%);
  color: var(--ink);
  line-height: 1.6;
}

.bg-noise {
  position: fixed;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="2" stitchTiles="stitch"/></filter><rect width="200" height="200" filter="url(%23n)" opacity="0.08"/></svg>');
  pointer-events: none;
  z-index: -1;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(243, 246, 251, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Fraunces", serif;
  font-size: 1.45rem;
  letter-spacing: 0.4px;
}

.logo img {
  width: 40px;
  height: 40px;
  display: block;
}

.logo span {
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 0.95rem;
}

.compliance-strip {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(31, 79, 181, 0.12), rgba(22, 47, 99, 0.08));
}

.compliance-strip .container {
  padding: 10px 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1f2a44;
}

.compliance-strip a {
  color: var(--accent-dark);
  text-decoration: underline;
}

.hero {
  padding: 80px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.15;
  margin: 12px 0 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2.2px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-dark);
}

.lead {
  font-size: 1.05rem;
  max-width: 520px;
}

.brand-note {
  margin: 10px 0 0;
  font-weight: 600;
  color: var(--accent-dark);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 24px rgba(31, 79, 181, 0.24);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(31, 79, 181, 0.32);
}

.btn-outline {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: none;
}

.btn-ghost {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}

.btn-call {
  background: var(--sun);
  color: #fff;
  border-color: #1d4ed8;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.28);
}

.btn-call:hover {
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.36);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.trust-item {
  background: var(--paper);
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.trust-title {
  display: block;
  font-weight: 600;
}

.trust-sub {
  font-size: 0.85rem;
  color: #5b6578;
}

.hero-card {
  background: var(--paper);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.card-pill {
  display: inline-block;
  background: rgba(31, 79, 181, 0.12);
  color: var(--accent-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.hero-card h3 {
  margin: 14px 0 8px;
  font-size: 1.3rem;
}

.checklist {
  margin: 18px 0;
  display: grid;
  gap: 10px;
}

.checklist div {
  padding-left: 20px;
  position: relative;
}

.checklist div::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.link {
  font-weight: 600;
  color: var(--accent-dark);
}

.policy-link {
  display: inline-flex;
  margin-top: 10px;
}

.service-link {
  display: inline-flex;
  margin-top: 10px;
}

.section {
  padding: 70px 0;
}

.section-alt {
  background: #f7faff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 30px;
}

.section-head h2 {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  margin: 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.service-card,
.policy-card {
  background: var(--paper);
  border-radius: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
}

.tag {
  display: inline-block;
  margin-top: 12px;
  background: rgba(31, 79, 181, 0.12);
  color: #1d3f8d;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.step {
  background: var(--paper);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid var(--line);
}

.step-no {
  font-weight: 700;
  color: var(--accent-dark);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  align-items: center;
}

.note {
  background: rgba(180, 35, 60, 0.1);
  border-left: 4px solid var(--coral);
  padding: 12px 14px;
  border-radius: 12px;
  margin-top: 16px;
}

.price-card {
  background: var(--paper);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.plain-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 22px;
}

.plain-list li {
  padding-left: 18px;
  position: relative;
  margin-bottom: 10px;
}

.plain-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.faq {
  display: grid;
  gap: 12px;
}

details {
  background: var(--paper);
  border-radius: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-weight: 600;
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 14px;
  background: var(--paper);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--line);
}

.label {
  font-size: 0.78rem;
  color: #667085;
  text-transform: uppercase;
  letter-spacing: 1.3px;
}

.compliance {
  background: var(--accent-dark);
  color: #f8fbff;
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 28px 0 50px;
  border-top: 1px solid var(--line);
  background: #eef3fb;
}

.footer-brand {
  margin: 6px 0 0;
  font-weight: 600;
  color: #4f5d75;
}

.footer-logo {
  width: 56px;
  height: 56px;
  display: block;
  margin-bottom: 10px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 6px;
}

.footer-list a {
  font-weight: 600;
  color: var(--accent-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.mobile-call-cta {
  display: none;
}

@media (max-width: 820px) {
  body {
    padding-bottom: calc(84px + env(safe-area-inset-bottom));
  }
  .bg-noise {
    display: none;
  }
  .nav {
    display: none;
  }
  .mobile-call-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    font-weight: 700;
    box-shadow: 0 14px 30px rgba(31, 79, 181, 0.36);
    z-index: 40;
  }
  .mobile-call-cta:hover {
    transform: translateY(-1px);
  }
  .compliance-strip .container {
    font-size: 0.83rem;
  }
  .hero {
    padding-top: 60px;
  }
}






