
:root {
  --primary: #0A1F44;
  --primary-light: #1C355F;
  --primary-dark: #07162F;
  --accent: #C62026;
  --accent-dark: #9A181D;

  --bg: #FFFFFF;
  --bg-alt: #F4F5F7;
  --text-main: #0A1F44;
  --text-muted: #42526E;

  --border: #D6D9DF;
  --card-bg: #FFFFFF;
  --accent-soft: #FDEBEC;
  --primary-soft: #E3E8F4;

  --max-width: 1120px;
  --radius-lg: 18px;
  --shadow-soft: 0 18px 40px rgba(10, 31, 68, 0.13);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at top left, #F7FAFF 0, #FFFFFF 55%);
}

/* NAVBAR */

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(214, 217, 223, 0.9);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  overflow: hidden;
  background: #0A1F44;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-title {
  display: flex;
  flex-direction: column;
}

.nav-title span:first-child {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--primary);
}

.nav-title span:last-child {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 0.87rem;
  color: var(--text-muted);
}

.nav-links a {
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-pill {
  font-size: 0.8rem;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: #FFFFFF;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 999px;
  padding: 8px 18px;
  border: none;
  color: white;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(198, 32, 38, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    filter 0.15s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 18px 40px rgba(198, 32, 38, 0.45);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 10px 25px rgba(198, 32, 38, 0.35);
}

main {
  flex: 1;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 20px;
}

/* HERO */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  padding-top: 56px;
  padding-bottom: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #FFFFFF;
  font-size: 0.78rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.eyebrow span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw + 1.4rem, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
  color: var(--primary-dark);
}

.hero h1 span.highlight {
  color: var(--accent);
}

.hero-sub {
  color: var(--text-muted);
  font-size: 0.98rem;
  max-width: 540px;
  margin-bottom: 26px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 0.8rem;
}

.badge {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
}

.badge strong {
  color: var(--primary);
}

.hero-note {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-note span {
  color: var(--accent-dark);
  font-weight: 600;
}

.hero-form-card {
  background: #FFFFFF;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  padding: 24px 22px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero-form-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0 0, rgba(10, 31, 68, 0.06), transparent 55%);
  opacity: 1;
  pointer-events: none;
}

.hero-form-head {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}

.hero-form-head h2 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--primary-dark);
}

.hero-form-head p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.8rem;
}

.field label {
  color: var(--text-muted);
}

.field input,
.field select {
  background: var(--bg-alt);
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 8px 14px;
  color: var(--text-main);
  font-size: 0.82rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease,
    background 0.15s ease;
}

.field input::placeholder {
  color: #8C96AB;
}

.field input:focus,
.field select:focus {
  border-color: var(--accent);
  background: #FFFFFF;
  box-shadow: 0 0 0 1px rgba(198, 32, 38, 0.3);
}

.tiny-text {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.tiny-text a {
  color: var(--accent);
}

/* SECTION HEADERS */

.section-header {
  max-width: 640px;
  margin-bottom: 28px;
}

.section-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.section-header h2 {
  font-size: 1.6rem;
  margin-bottom: 6px;
  color: var(--primary-dark);
}

.section-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* HOW IT WORKS */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 18px 16px 16px;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: attr(data-step);
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(10, 31, 68, 0.08);
}

.step-chip {
  display: inline-flex;
  font-size: 0.7rem;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 500;
}

.step-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--primary);
}

.step-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* FAQ + TESTIMONIALS LAYOUT */

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: flex-start;
}

.faq-list {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #FFFFFF;
  overflow: hidden;
}

details {
  border-bottom: 1px solid #EDF0F5;
  padding: 14px 16px;
}

details:last-child {
  border-bottom: none;
}

summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--primary);
}

summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  flex-shrink: 0;
  font-size: 1.3rem;
  color: var(--accent);
  transition: transform 0.15s ease;
}

details[open] summary .faq-icon {
  transform: rotate(45deg);
}

details p {
  margin-top: 8px;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.reviews-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 20px 18px;
  box-shadow: var(--shadow-soft);
}

.review-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.review-score h3 {
  font-size: 1.1rem;
  color: var(--primary-dark);
}

.stars {
  display: flex;
  gap: 2px;
  font-size: 1rem;
  color: #FBB03B;
}

.reviews-list {
  display: grid;
  gap: 12px;
  font-size: 0.82rem;
}

.review {
  padding: 10px 12px;
  border-radius: 14px;
  background: var(--bg-alt);
  border: 1px solid #E2E6EE;
}

.review-name {
  font-weight: 500;
  margin-bottom: 3px;
  font-size: 0.84rem;
  color: var(--primary);
}

.review-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

/* CTA / CONTACT */

.cta-section {
  margin-top: 24px;
}

.cta-banner {
  border-radius: 20px;
  background: linear-gradient(120deg, #FDEBEC, #F4F5F7);
  border: 1px solid #F4C2C5;
  padding: 22px 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
  gap: 18px;
  align-items: center;
}

.cta-banner h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--primary-dark);
}

.cta-banner p {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.cta-contact {
  font-size: 0.86rem;
  color: var(--primary);
}

.cta-contact strong {
  color: var(--accent-dark);
}

/* FOOTER */

footer {
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding: 26px 20px 28px;
  background: var(--bg-alt);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 24px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-meta strong {
  color: var(--primary-dark);
}

.footer-legal {
  font-size: 0.7rem;
  line-height: 1.7;
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .hero,
  .two-column,
  .cta-banner,
  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 32px;
  }

  .nav-inner {
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
  }

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

@media (max-width: 640px) {
  .section {
    padding-inline: 16px;
  }

  .hero-form-card {
    padding-inline: 18px;
  }
}
