
/* ============ Root & Base ============ */

:root {
  --navy: #0b2748;
  --navy-soft: #153a63;
  --blue: #1d76c2;
  --blue-soft: #4aa0e6;
  --blue-pastel: #e5f3ff;
  --red: #c62828;
  --red-pastel: #ffe5e5;
  --offwhite: #f7f9fc;
  --text-main: #1f2933;
  --text-muted: #6b7280;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.14);
  --shadow-subtle: 0 8px 24px rgba(15, 23, 42, 0.08);
  --max-width: 1120px;
}

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

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background: linear-gradient(180deg, #f5f7fb 0%, #ffffff 40%, #f7f9fc 100%);
}

/* Utility */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  transition: all 0.18s ease-out;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-soft) 100%);
  color: #ffffff;
  box-shadow: var(--shadow-subtle);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.btn-outline {
  background: rgba(255,255,255,0.96);
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
}

.btn-outline:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}


.btn-outline:hover {
  background: #1b4b9c;
  color: #ffffff;
  border-color: #1b4b9c;
}

/* ============ Header ============ */

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: none;
  background: linear-gradient(
      90deg,
      rgba(11, 39, 72, 0.95),
      rgba(11, 39, 72, 0.92)
    );
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo {
  height: 40px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
}

.brand-subtitle {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.75);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-cta {
  margin-left: 0.8rem;
}

/* Mobile nav */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: 56px 0 auto;
    background: rgba(11, 39, 72, 0.97);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    transform: translateY(-200%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease-out;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-cta {
    margin-left: 0;
    width: 100%;
  }
  .nav-toggle {
    display: block;
  }
}

/* ============ Hero ============ */

.hero {
  padding: 3.5rem 0 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(29, 118, 194, 0.09);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-heading {
  margin-top: 1.1rem;
  font-size: clamp(2.1rem, 2.8vw + 1.2rem, 3.1rem);
  line-height: 1.05;
  color: var(--navy);
}

.hero-heading span {
  color: var(--blue);
}

.hero-subtitle {
  margin-top: 1rem;
  max-width: 36rem;
  font-size: 1rem;
  color: var(--text-muted);
}

.hero-meta {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.hero-meta strong {
  color: var(--navy-soft);
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-reassurance {
  margin-top: 0.8rem;
  font-size: 0.92rem;
  color: var(--navy-soft);
  opacity: 1;
}

.hero-highlight {
  margin-top: 1.4rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    rgba(229, 243, 255, 0.95),
    rgba(255, 255, 255, 1)
  );
  border: 1px solid rgba(26, 86, 219, 0.08);
  font-size: 0.86rem;
  color: var(--text-muted);
}

.hero-highlight strong {
  color: var(--navy-soft);
}

.hero-card {
  background: radial-gradient(circle at 0 0, var(--red-pastel), transparent 55%),
    radial-gradient(circle at 100% 100%, var(--blue-pastel), transparent 55%),
    #ffffff;
  border-radius: var(--radius-xl);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero-card-tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.hero-stat {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
}

.hero-stat span {
  color: var(--blue-soft);
}

.hero-card p {
  margin: 0.25rem 0 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.7rem;
}

.hero-pill {
  font-size: 0.76rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(11, 39, 72, 0.06);
  color: var(--navy-soft);
}

.hero-card-footer {
  margin-top: 1.3rem;
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(15, 23, 42, 0.14);
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============ Section / Process ============ */

.section {
  padding: 3rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
}

.section-title {
  font-size: 1.85rem;
  margin: 0.6rem 0 0.4rem;
  color: var(--navy);
}

.section-subtitle {
  max-width: 36rem;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.process-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.2rem 1.3rem;
  box-shadow: var(--shadow-subtle);
  border-top: 4px solid rgba(29, 118, 194, 0.6);
}

.process-icon {
  height: 36px;
  width: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-pastel), #ffffff);
  color: var(--blue);
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.process-title {
  font-weight: 700;
  margin-bottom: 0.2rem;
}

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

/* ============ Video + Calendar ============ */

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

.video-card,
.calendar-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-subtle);
  padding: 1.5rem;
}

.video-card iframe {
  width: 100%;
  min-height: 260px;
  border-radius: 18px;
  border: none;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-soft);
  margin-bottom: 0.3rem;
}

.card-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.calendar-expectations {
  margin: 0 0 1.1rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(11, 24, 40, 0.04);
  border: 1px solid rgba(11, 24, 40, 0.06);
}

.calendar-expectations-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy-soft);
  margin-bottom: 0.5rem;
}

.calendar-expectations ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.calendar-expectations li {
  margin: 0.25rem 0;
}

.calendar-card iframe {
  border-radius: 16px;
}

/* ============ Founders ============ */

.founders-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
}

.founder-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-subtle);
  position: relative;
}

.founder-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-soft);
  margin-bottom: 0.15rem;
}

.founder-role {
  font-size: 0.86rem;
  color: var(--blue);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.founder-body {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============ Blog cards ============ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.blog-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.2rem 1.5rem;
  box-shadow: var(--shadow-subtle);
  position: relative;
}

.blog-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--red);
  letter-spacing: 0.16em;
}

.blog-title {
  font-size: 1.05rem;
  margin: 0.5rem 0;
  color: var(--navy);
}

.blog-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.blog-card a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}

/* ============ Blog Article ============ */

.article {
  max-width: 760px;
  margin: 0 auto;
  background: #ffffff;
  padding: 2rem 2.2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.article h1 {
  font-size: 2rem;
  margin-top: 0;
  color: var(--navy);
}

.article-meta {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 1.3rem;
}

.article h2 {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  color: var(--navy-soft);
}

.article p {
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--text-main);
}

.article ul {
  padding-left: 1.1rem;
}

.article li {
  font-size: 0.95rem;
  margin: 0.25rem 0;
}

/* ============ FAQ ============ */

.faq-list {
  max-width: 760px;
  margin: 1.5rem auto 0;
}

.faq-item {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: var(--shadow-subtle);
  margin-bottom: 0.9rem;
  overflow: hidden;
}

.faq-question {
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 0.98rem;
  margin: 0;
  color: var(--navy-soft);
}

.faq-toggle {
  font-size: 1.2rem;
  color: var(--blue);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.1rem;
  transition: max-height 0.2s ease-out, padding-bottom 0.2s ease-out;
}

.faq-answer.open {
  padding-bottom: 0.9rem;
}

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

/* ============ Footer ============ */

.site-footer {
  margin-top: 3rem;
  padding: 2.2rem 0 1.4rem;
  background: #0b2748;
  color: rgba(255, 255, 255, 0.85);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  gap: 2rem;
  margin-bottom: 1.8rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}

.footer-logo img {
  height: 38px;
}

.footer-logo-text {
  font-weight: 700;
  font-size: 1.05rem;
}

.footer-copy {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-heading {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.7rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-links,
.footer-contact {
  font-size: 0.88rem;
}

.footer-links a {
  display: block;
  margin-bottom: 0.3rem;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  padding-top: 0.8rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ============ Page Hero (inner pages) ============ */

.page-hero {
  padding: 2.6rem 0 1.3rem;
}

.page-hero-title {
  font-size: 1.9rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.page-hero-subtitle {
  font-size: 0.96rem;
  color: var(--text-muted);
  max-width: 32rem;
}

/* ============ Responsive ============ */

@media (max-width: 992px) {
  .hero-inner,
  .layout-two-column,
  .founders-grid,
  .blog-grid,
  .process-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero-inner {
    gap: 2rem;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .article {
    padding: 1.5rem 1.4rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.4rem;
  }
}


.founder-card {
  display:flex;
  flex-direction:column;
}

.founder-card img {
  width:100%;
  height:auto;
  border-radius:18px;
  margin-bottom:0.9rem;
}


/* Extra breathing room so content doesn't sit on top of footer */
main {
  padding-bottom: 4rem;
}


.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo {
  height: 40px;
  width: auto;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.brand-subtitle {
  font-size: 0.75rem;
  font-weight: 500;
  color: #dbe2ea;
  letter-spacing: 0.8px;
}


/* Subtle load-in animation for main sections */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero,
.section {
  animation: fadeInUp 0.6s ease-out both;
}

/* Staggered effect for cards */
.hero .hero-content,
.hero .hero-aside,
.section .card,
.section .blog-card,
.section .founder-card {
  animation: fadeInUp 0.7s ease-out both;
}

.header, .header a, .brand-title, .brand-subtitle {
    color: #ffffff !important;
}

.nav-links a {
    color: #ffffff !important;
}

.nav-links a:hover {
    color: #a8d1ff !important;
}



.nav-container a,
.brand-title,
.brand-subtitle {
  color: #ffffff !important;
}

.nav-links a {
  color: #ffffff !important;
  opacity: 0.95;
}

.nav-links a:hover {
  color: #4aa8ff !important;
  opacity: 1;
}

/* Mobile header & nav tweaks */
@media (max-width: 768px) {
  

  .brand-logo {
    height: 36px;
  }

  .nav-toggle {
    color: #ffffff !important;
    font-size: 1.6rem;
  }

  .nav-links {
    background: #031224;
    width: 100%;
    padding: 0.75rem 0 1rem 0;
  }

  .nav-links a {
    color: #ffffff !important;
    padding: 0.9rem 1rem;
    display: block;
    text-align: center;
  }
}


/* === FORCE DARK HEADER OVERRIDE (FINAL) === */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  min-height: 70px;
  display: flex;
  align-items: center;
  background-color: #031224 !important;
  background-image: none !important;
  opacity: 1 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container a,
.brand-title,
.brand-subtitle {
  color: #ffffff !important;
}

.nav-links a {
  color: #ffffff !important;
  opacity: 0.95;
}

.nav-links a:hover {
  color: #4aa8ff !important;
  opacity: 1;
}

@media (max-width: 768px) {
  .header {
    background-color: #031224 !important;
  }

  .nav-links {
    background-color: #031224 !important;
  }
}


/* ===== FINAL HEADER COLOR OVERRIDE ===== */
.header {
    background: linear-gradient(180deg, #0A3D91 0%, #0B56C0 100%) !important;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-links,
.nav-links a,
.brand-title,
.brand-subtitle {
    color: #ffffff !important;
}

@media (max-width: 768px) {
    .header {
        background: linear-gradient(180deg, #0A3D91 0%, #0B56C0 100%) !important;
    }
    .nav-links {
        background: #0A3D91 !important;
    }
}


/* Header animation + shadow on scroll */
.header {
  transition: padding 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.header-scrolled {
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

/* Underline hover animation for nav links */
.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  background: #4aa8ff;
  transform: translateX(-50%);
  transition: width 0.18s ease;
}

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


/* Testimonials */
.section-testimonials {
  background: #f5f7fb;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: 0 18px 45px rgba(15, 35, 52, 0.08);
  border: 1px solid rgba(15, 35, 52, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #22324a;
  margin-bottom: 1.25rem;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.testimonial-name {
  font-weight: 600;
  color: #14243c;
}

.testimonial-role {
  font-size: 0.85rem;
  color: #6c7a93;
}

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


/* Phone link styling */
.phone-link {
  color: var(--blue-soft);
  font-weight: 600;
  text-decoration: none;
}

.phone-link:hover {
  text-decoration: underline;
}


.nav-link-small {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.85);
}

.nav-link-small:hover {
  color: #ffffff;
}

/* Secondary CTA button in header */
.cta-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: none;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Mobile bottom CTA bar */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: none;
  background: linear-gradient(90deg, #0A3D91, #0B56C0);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.35);
}

.mobile-cta {
  flex: 1;
  text-align: center;
  padding: 0.7rem 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.mobile-cta:last-child {
  border-right: none;
}

.mobile-cta-call { background: rgba(0,0,0,0.05); }
.mobile-cta-text { background: rgba(0,0,0,0.12); }
.mobile-cta-book { background: rgba(255,255,255,0.08); }

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex;
  }

  body {
    padding-bottom: 3.2rem;
  }
}


/* Intake form section */
.section-form {
  background: var(--offwhite);
}

.intake-form {
  max-width: 720px;
  margin: 0 auto;
  background: #ffffff;
  padding: 1.75rem 1.9rem 2rem;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #6c7a93;
}

.form-field input,
.form-field textarea {
  border-radius: 10px;
  border: 1px solid #d4deee;
  padding: 0.55rem 0.7rem;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-field textarea {
  resize: vertical;
}

.form-consent label {
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.form-consent input[type="checkbox"] {
  margin-right: 0.4rem;
}

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


.hero-text-link {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.9rem;
  color: var(--blue-soft);
  text-decoration: underline;
}


/* Trust badges strip */
.section-trust {
  background: #041630;
  color: #ffffff;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.trust-layout {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.trust-badge {
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust-note {
  font-size: 0.88rem;
  opacity: 0.9;
}

/* Mini how-it-works strip */
.section-how-mini {
  background: #f5f7fb;
}

.how-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.25rem;
}

.how-mini-step {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.25rem 1.3rem;
  box-shadow: var(--shadow-soft);
}

.how-mini-number {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-soft);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.how-mini-title {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.how-mini-text {
  font-size: 0.9rem;
  color: #4b5a74;
}

.guarantee-line {
  margin-top: 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #28344c;
}

/* Quiz styles */
.section-quiz {
  background: #ffffff;
}

.quiz-card {
  max-width: 720px;
  margin: 0 auto;
  border-radius: 18px;
  border: 1px solid #d4deee;
  padding: 1.8rem 1.9rem 1.6rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.quiz-step {
  display: none;
}

.quiz-step-active {
  display: block;
}

.quiz-question {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #182840;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.quiz-option {
  border-radius: 999px;
  border: 1px solid #d4deee;
  padding: 0.65rem 0.9rem;
  background: #f7f9fe;
  text-align: left;
  cursor: pointer;
  font-size: 0.92rem;
}

.quiz-option:hover {
  background: #e4edff;
}

.quiz-result-text {
  font-size: 0.95rem;
  color: #34415a;
  margin-bottom: 1rem;
}

.quiz-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.quiz-footnote {
  font-size: 0.78rem;
  color: #6c7a93;
}

.quiz-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.2rem;
  padding-top: 0.9rem;
  border-top: 1px solid #e1e6f0;
}

.quiz-back,
.quiz-skip {
  background: transparent;
  border: none;
  font-size: 0.85rem;
  color: #4b5a74;
  cursor: pointer;
}

.quiz-dots {
  display: flex;
  gap: 0.3rem;
}

.quiz-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #c5cfe4;
}

.quiz-dot-active {
  background: var(--blue-soft);
}

/* Floating call button (desktop) */
.floating-call-btn {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #0B56C0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  z-index: 65;
}

.floating-call-btn span {
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .how-mini-grid {
    grid-template-columns: 1fr;
  }

  .floating-call-btn {
    display: none;
  }

  .trust-layout {
    align-items: flex-start;
  }
}

/* Exit-intent modal */
.exit-intent-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 8, 20, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 70;
}

.exit-intent-overlay.active {
  display: flex;
}

.exit-intent-modal {
  background: #ffffff;
  max-width: 480px;
  width: 90%;
  border-radius: 18px;
  padding: 1.8rem 1.7rem 1.5rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.exit-intent-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.exit-intent-text {
  font-size: 0.95rem;
  color: #34415a;
  margin-bottom: 1rem;
}

.exit-intent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.exit-intent-close {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: #6c7a93;
  cursor: pointer;
  text-decoration: underline;
}

/* Force readable outline CTA (used for hero secondary button). */
.btn-outline-strong {
  opacity: 1 !important;
}
