/** Site Custom Stylesheet (From File) **/ 



 /** Site Custom Styles (From DB) **/ 

/* ---- Design tokens (primitive colour names) ---- */ :root  {
  /* Brand scarlet (from master logo) */ --color-scarlet: #E1002A;
  --color-scarlet-dark: #BE0023;
  /* Brand navy */ --color-navy: #0B1C66;
  --color-navy-dark: #081544;
  /* Warm neutrals */ --color-cream: #FBFAF7;
  --color-cream-warm: #F4F0E9;
  --color-ink: #21283A;
  --color-slate: #5E667A;
  --color-line: #EAE5DC;
  --color-line-soft: #F1ECE3;
  /* Cool accent */ --color-sky: #EAF2F8;
  --color-sky-ink: #1F4E73;
  --color-white: #FFFFFF;
  --color-gold: #F6A823;
  /* Semantic anchors */ --color-brand: var(--color-scarlet);
  --color-text: var(--color-ink);
  --color-bg: var(--color-cream);
  /* Content layout */ --base-content-section-max-width: 84rem;
  --base-content-section-padding-x: 5%;
  /* Form field tokens */ --color-form-field-text-color: var(--color-ink);
  --color-form-field-bg: #FFFFFF;
  --color-form-field-border: var(--color-line);
  --color-form-field-border-focus: var(--color-navy);
  --color-form-field-bg-disabled: #F0EDE7;
  --color-form-field-text-disabled:#A7A294;
  --color-form-button-text-color: #FFFFFF;
  --color-form-button-bg: var(--color-scarlet);
  --color-checkbox-accent: var(--color-navy);
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow-sm: 0 2px 8px rgba(11,28,102,.06);
  --shadow-md: 0 14px 34px -16px rgba(11,28,102,.22);
  --shadow-lg: 0 30px 70px -28px rgba(11,28,102,.30);
}
/* ---- Background utilities ---- */ .bg-white  {
  background-color: var(--color-white);
}
.bg-cream  {
  background-color: var(--color-cream);
}
.bg-cream-warm  {
  background-color: var(--color-cream-warm);
}
.bg-navy  {
  background-color: var(--color-navy);
}
.bg-navy-dark  {
  background-color: var(--color-navy-dark);
}
.bg-scarlet  {
  background-color: var(--color-scarlet);
}
.bg-sky  {
  background-color: var(--color-sky);
}
/* ============================================================
   Base typography
   ============================================================ */ html  {
  scroll-behavior: smooth;
}
body  {
  font-family: "Alexandria", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}
img  {
  max-width: 100%;
  display: block;
}
a  {
  color: inherit;
  text-decoration: none;
}
h1, h2, h3, h4  {
  font-family: "Poppins", system-ui, sans-serif;
  color: var(--color-navy);
  line-height: 1.08;
  margin: 0;
  letter-spacing: -.02em;
  font-weight: 800;
  text-wrap: balance;
}
p  {
  margin: 0;
}
/* Accent span inside headings — always scarlet */ h1 .accent, h2 .accent, h3 .accent, h4 .accent  {
  color: var(--color-scarlet);
}
.lead  {
  font-size: clamp(18px, 2.1vw, 21px);
  color: var(--color-slate);
  line-height: 1.6;
}
.eyebrow  {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-scarlet);
  margin-bottom: 14px;
}
.eyebrow .dot  {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}
.section-head  {
  max-width: 680px;
}
.section-head h2  {
  font-size: clamp(28px, 4.4vw, 44px);
}
.section-head p  {
  margin-top: 16px;
}
.section-head.center  {
  margin-inline: auto;
  text-align: center;
}
/* ============================================================
   Buttons
   ============================================================ */ .btn  {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  border: none;
  border-radius: 999px;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -.01em;
  padding: 18px 30px;
  line-height: 1;
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease;
  text-wrap: nowrap;
  cursor: pointer;
}
.btn-primary  {
  background: var(--color-scarlet);
  color: #fff;
  box-shadow: none;
}
.btn-primary:hover  {
  background: var(--color-scarlet-dark);
  transform: translateY(-2px);
}
.btn-lg  {
  padding: 21px 38px;
  font-size: 19px;
}
.btn .ico  {
  width: 20px;
  height: 20px;
  flex: none;
}
/* ============================================================
   Sticky mobile CTA bar
   ============================================================ */ .mobile-cta-bar  {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  gap: 10px;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--color-line);
  box-shadow: 0 -8px 26px -14px rgba(11,28,102,.35);
  transition: transform .3s ease;
}
.mobile-cta-bar .btn  {
  flex: 1;
  padding: 16px;
  font-size: 16px;
}
.mobile-cta-bar .btn-call  {
  flex: none;
  width: 56px;
  padding: 0;
  background: #fff;
  border: 1.5px solid var(--color-line);
  color: var(--color-navy);
}
.mobile-cta-bar .btn-call svg  {
  width: 22px;
  height: 22px;
}
@media (max-width: 767px)  {
  .mobile-cta-bar  {
    display: flex;
  }
  body  {
    padding-bottom: 84px;
  }
}
@media (prefers-reduced-motion: reduce)  {
  html  {
    scroll-behavior: auto;
  }
}


 /** Content Section Styles **/ 

.content-section-2223  {
  &.content-section  {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251,250,247,.88);
    backdrop-filter: saturate(140%) blur(12px);
    border-bottom: 1px solid transparent;
    box-shadow: none;
    transition: border-color .2s ease, box-shadow .2s ease;
  }
  &.content-section.is-stuck  {
    border-color: var(--color-line);
    box-shadow: 0 4px 16px -8px rgba(11,28,102,.25);
  }
  .header-bar  {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-block: 14px;
  }
  .logo img  {
    height: 42px;
    width: auto;
  }
  .header-nav  {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .phone-link  {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    flex: none;
    font-weight: 800;
    color: var(--color-navy);
    font-size: 18px;
    letter-spacing: -.01em;
  }
  .phone-link .ico  {
    width: 20px;
    height: 20px;
    color: var(--color-scarlet);
  }
  .phone-link .ph-label  {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    white-space: nowrap;
  }
  .phone-link .ph-label small  {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: none;
    color: var(--color-slate);
  }
  .header-cta  {
    display: inline-flex;
  }
  @media (max-width: 767px)  {
    .header-cta  {
      display: none;
    }
  }
  @media (max-width: 639px)  {
    .phone-link .ph-num  {
      display: none;
    }
    .phone-link .ph-label small  {
      display: none;
    }
    .logo img  {
      height: 36px;
    }
    .header-bar  {
      gap: 12px;
    }
  }
}
.content-section-2224  {
  &.content-section  {
    color: rgba(255,255,255,.74);
  }
  .footer-layout  {
    display: grid;
    gap: 36px;
    grid-template-columns: 1.4fr 1fr 1fr;
  }
  .footer-brand img  {
    height: 52px;
    width: auto;
  }
  .footer-brand p  {
    margin-top: 18px;
    max-width: 34ch;
    font-size: 15px;
  }
  .footer-col h4  {
    color: #fff;
    font-size: 14px;
    letter-spacing: .08em;
    text-transform: none;
    margin-bottom: 16px;
  }
  .footer-col h4.spaced  {
    margin-top: 24px;
  }
  .footer-col a, .footer-col p  {
    color: rgba(255,255,255,.74);
    font-size: 15.5px;
    margin-bottom: 10px;
    display: block;
  }
  .footer-col a:hover  {
    color: #fff;
  }
  .footer-col .muted  {
    color: rgba(255,255,255,.55);
    font-size: 14px;
    margin-top: 10px;
  }
  .footer-socials  {
    display: flex;
    gap: 12px;
    margin-top: 16px;
  }
  .footer-socials a  {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,.08);
    display: grid;
    place-items: center;
    margin: 0;
  }
  .footer-socials svg  {
    width: 18px;
    height: 18px;
    color: #fff;
  }
  .footer-bottom  {
    margin-top: 42px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.12);
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 13.5px;
    color: rgba(255,255,255,.5);
  }
  @media (max-width: 767px)  {
    .footer-layout  {
      grid-template-columns: 1fr;
      gap: 28px;
    }
    .footer-bottom  {
      flex-direction: column;
      gap: 8px;
    }
  }
}
.content-section-2225  {
  .hero-layout  {
    display: grid;
    gap: clamp(32px,5vw,64px);
    align-items: center;
    grid-template-columns: 1.05fr .95fr;
  }
  h1  {
    font-size: clamp(30px,3.4vw,45px);
    line-height: 1.15;
  }
  h1 .accent  {
    color: var(--color-scarlet) !important;
  }
  .hero-sub  {
    margin-top: 22px;
    max-width: 42ch;
  }
  .hero-cta-row  {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: fit-content;
    margin-top: 30px;
  }
  .hero-orcall  {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--color-navy);
  }
  .hero-orcall .ico  {
    width: 22px;
    height: 22px;
    color: var(--color-scarlet);
  }
  .hero-orcall small  {
    color: var(--color-slate);
    font-weight: 600;
  }
  .trust-strip  {
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px solid var(--color-line);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .trust-callouts  {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px 22px;
    width: 100%;
    margin-top: 18px;
    padding-top: 22px;
    border-top: 1px solid var(--color-line);
  }
  .trust-item  {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--color-ink);
  }
  .trust-item .ico  {
    width: 18px;
    height: 18px;
    color: var(--color-navy);
    flex: none;
  }
  .stars  {
    display: inline-flex;
    gap: 2px;
    color: var(--color-gold);
  }
  .stars svg  {
    width: 17px;
    height: 17px;
  }
  .hero-media  {
    position: relative;
  }
  .hero-photo  {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/4.4;
    background: var(--color-cream-warm);
  }
  .hero-photo img  {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
  }
  .photo-chip  {
    position: absolute;
    left: 18px;
    bottom: 18px;
    display: flex;
    align-items: center;
    gap: 11px;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(6px);
    padding: 11px 16px 11px 12px;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
  }
  .photo-chip .badge  {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--color-navy);
    color: #fff;
    display: grid;
    place-items: center;
    flex: none;
  }
  .photo-chip .badge svg  {
    width: 20px;
    height: 20px;
  }
  .photo-chip b  {
    display: block;
    color: var(--color-navy);
    font-size: 15px;
    line-height: 1.2;
  }
  .photo-chip span  {
    font-size: 12.5px;
    color: var(--color-slate);
    font-weight: 600;
  }
  @media (max-width: 1023px)  {
    .hero-layout  {
      grid-template-columns: 1fr;
    }
  }
  @media (max-width: 767px)  {
    .hero-cta-row  {
      width: 100%;
    }
    .hero-cta-row .btn-lg  {
      width: 100%;
    }
    .trust-callouts  {
      justify-content: flex-start;
      gap: 12px 18px;
    }
    .photo-chip  {
      left: 12px;
      bottom: 12px;
    }
  }
  @media (max-width: 639px)  {
    .hero-photo  {
      aspect-ratio: 4/4;
    }
    h1  {
      font-size: clamp(26px,7vw,34px);
    }
  }
}
.content-section-2226  {
  .symptom-grid  {
    margin-top: 46px;
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr 1fr;
  }
  .symptom  {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: var(--color-white);
    border: 1px solid var(--color-line-soft);
    border-radius: var(--radius-md);
    padding: 20px 22px;
    box-shadow: var(--shadow-sm);
  }
  .symptom .tick  {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: #FCE8EC;
    color: var(--color-scarlet);
    display: grid;
    place-items: center;
    flex: none;
    margin-top: 1px;
  }
  .symptom .tick svg  {
    width: 17px;
    height: 17px;
  }
  .symptom b  {
    color: var(--color-navy);
    display: block;
    font-size: 18px;
  }
  .symptom span  {
    color: var(--color-slate);
    font-size: 15.5px;
  }
  .problem-note  {
    margin: 34px auto 0;
    font-size: clamp(19px,2.4vw,24px);
    color: var(--color-navy);
    font-weight: 700;
    max-width: 760px;
    text-align: center;
    text-wrap: balance;
  }
  .problem-note em  {
    color: var(--color-scarlet);
    font-style: normal;
  }
  @media (max-width: 767px)  {
    .symptom-grid  {
      grid-template-columns: 1fr;
    }
  }
}
.content-section-2227  {
  &.content-section  {
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .eyebrow  {
    color: #FF748E;
  }
  .founder-layout  {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: clamp(32px,5vw,60px);
    align-items: center;
  }
  .founder-media img  {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
  }
  .founder-quote  {
    font-family: "Alexandria", system-ui, sans-serif;
    font-style: italic;
    font-weight: 500;
    font-size: clamp(24px,3.6vw,40px);
    line-height: 1.32;
    color: #fff;
    max-width: 26ch;
    margin: 0;
    letter-spacing: -.01em;
  }
  .founder-quote .hl  {
    color: #FFC9D3;
    font-style: normal;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
  }
  .founder-body  {
    margin-top: 28px;
    max-width: 62ch;
    color: rgba(255,255,255,.82);
    font-size: 18px;
  }
  .founder-sign  {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
  }
  .founder-sign .line  {
    width: 34px;
    height: 2px;
    background: var(--color-scarlet);
  }
  .founder-sign b  {
    color: #fff;
    font-size: 17px;
  }
  .founder-sign span  {
    color: rgba(255,255,255,.6);
    font-size: 14px;
    display: block;
    font-weight: 600;
  }
  @media (max-width: 1023px)  {
    .founder-layout  {
      grid-template-columns: 1fr;
    }
  }
}
.content-section-2228  {
  .diff-grid  {
    margin-top: 46px;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3,1fr);
  }
  .diff-card  {
    background: var(--color-white);
    border: 1px solid var(--color-line-soft);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
  }
  .diff-card .num  {
    font-size: 14px;
    font-weight: 800;
    color: var(--color-scarlet);
    letter-spacing: .05em;
  }
  .diff-card h3  {
    font-size: 21px;
    margin: 10px 0 8px;
  }
  .diff-card p  {
    color: var(--color-slate);
    font-size: 16px;
  }
  .vs-row  {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    flex-wrap: wrap;
  }
  .vs-pill  {
    font-size: 13.5px;
    font-weight: 700;
    padding: 7px 13px;
    border-radius: 999px;
  }
  .vs-pill.bad  {
    background: #F4F2EE;
    color: var(--color-slate);
    text-decoration: line-through;
    text-decoration-color: #c9c3b8;
  }
  .vs-pill.good  {
    background: #E8FBEF;
    color: #0E7A43;
  }
  .vs-arrow  {
    color: var(--color-slate);
  }
  .section-cta  {
    margin-top: 42px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: fit-content;
  }
  .section-cta-note  {
    color: var(--color-slate);
    font-weight: 600;
  }
  @media (max-width: 767px)  {
    .diff-grid  {
      grid-template-columns: 1fr;
    }
    .section-cta  {
      width: 100%;
    }
    .section-cta .btn-lg  {
      width: 100%;
    }
  }
}
.content-section-2229  {
  .steps  {
    margin-top: 48px;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4,1fr);
  }
  .step  {
    position: relative;
    background: var(--color-white);
    border: 1px solid var(--color-line-soft);
    border-radius: var(--radius-md);
    padding: 30px 26px;
    box-shadow: var(--shadow-sm);
  }
  .step .stepnum  {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--color-navy);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 18px;
  }
  .step h3  {
    font-size: 20px;
    margin: 0 0 8px;
  }
  .step p  {
    color: var(--color-slate);
    font-size: 15.5px;
  }
  .step .mins  {
    position: absolute;
    top: 30px;
    right: 24px;
    font-size: 13px;
    font-weight: 800;
    color: var(--color-scarlet);
    background: #FCE8EC;
    padding: 5px 11px;
    border-radius: 999px;
  }
  @media (max-width: 1023px)  {
    .steps  {
      grid-template-columns: 1fr 1fr;
    }
  }
  @media (max-width: 639px)  {
    .steps  {
      grid-template-columns: 1fr;
    }
  }
}
.content-section-2230  {
  .support-layout  {
    display: grid;
    gap: clamp(32px,5vw,60px);
    align-items: start;
    grid-template-columns: 1fr 1fr;
  }
  .support-photo  {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/3;
  }
  .support-photo img  {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  h2  {
    font-size: clamp(28px,4.4vw,42px);
  }
  .lead  {
    margin-top: 16px;
  }
  .feature-list  {
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 18px;
  }
  .feature-list li  {
    display: flex;
    gap: 15px;
    align-items: flex-start;
  }
  .feature-list .fico  {
    width: 54px;
    height: 54px;
    flex: none;
    display: grid;
    place-items: center;
  }
  .feature-list .fico img  {
    width: 54px;
    height: 54px;
  }
  .feature-list b  {
    color: var(--color-navy);
    display: block;
    font-size: 17.5px;
  }
  .feature-list span  {
    color: var(--color-slate);
    font-size: 15.5px;
  }
  .support-banner  {
    margin-top: 38px;
    background: var(--color-sky);
    color: var(--color-sky-ink);
    border-radius: var(--radius-md);
    padding: 22px 26px;
    font-weight: 700;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .support-banner .ico  {
    width: 26px;
    height: 26px;
    flex: none;
  }
  @media (max-width: 1023px)  {
    .support-layout  {
      grid-template-columns: 1fr;
    }
  }
}
.content-section-2231  {
  &.content-section  {
    color: #fff;
  }
  h2  {
    color: #fff;
  }
  .eyebrow  {
    color: #FF748E;
  }
  .why-grid  {
    margin-top: 46px;
    display: grid;
    gap: 1px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-md);
    overflow: hidden;
    grid-template-columns: 1fr 1fr;
  }
  .why-item  {
    background: var(--color-navy-dark);
    padding: 26px 28px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .why-item .wico  {
    width: 52px;
    height: 52px;
    flex: none;
    display: grid;
    place-items: center;
  }
  .why-item .wico img  {
    width: 52px;
    height: 52px;
  }
  .why-item b  {
    display: block;
    font-size: 18px;
    color: #fff;
    margin-bottom: 4px;
  }
  .why-item span  {
    color: rgba(255,255,255,.7);
    font-size: 15px;
  }
  @media (max-width: 767px)  {
    .why-grid  {
      grid-template-columns: 1fr;
    }
  }
}
.content-section-2232  {
  .adj-card  {
    background: var(--color-white);
    border: 1px solid var(--color-line-soft);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
  }
  .adj-media  {
    background: var(--color-cream-warm);
    padding: 0;
    display: block;
    min-height: 320px;
  }
  .adj-media img  {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .adj-body  {
    padding: clamp(28px,4vw,48px);
  }
  .adj-body h2  {
    font-size: clamp(26px,3.6vw,36px);
  }
  .adj-body .adj-intro  {
    color: var(--color-slate);
    margin-top: 14px;
    font-size: 17px;
  }
  .adj-tags  {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
  }
  .adj-tag  {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--color-cream-warm);
    border-radius: 999px;
    padding: 9px 16px;
    font-weight: 700;
    font-size: 14.5px;
    color: var(--color-navy);
  }
  .adj-tag .ico  {
    width: 16px;
    height: 16px;
    color: var(--color-scarlet);
  }
  .adj-reframe  {
    margin-top: 22px;
    color: var(--color-slate);
    font-size: 16px;
  }
  .adj-reframe b  {
    color: var(--color-navy);
  }
  @media (max-width: 1023px)  {
    .adj-card  {
      grid-template-columns: 1fr;
    }
    .adj-media  {
      min-height: 240px;
      aspect-ratio: 16/10;
    }
  }
}
.content-section-2233  {
  .reviews-head  {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }
  .stars  {
    display: inline-flex;
    gap: 2px;
    color: var(--color-gold);
  }
  .stars svg  {
    width: 18px;
    height: 18px;
  }
  .google-badge  {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 14px;
    padding: 13px 18px;
    box-shadow: var(--shadow-sm);
  }
  .google-badge .g  {
    font-size: 24px;
    font-weight: 800;
  }
  .google-badge .g b:nth-child(1)  {
    color:#4285F4
  }
  .google-badge .g b:nth-child(2)  {
    color:#EA4335
  }
  .google-badge .g b:nth-child(3)  {
    color:#FBBC05
  }
  .google-badge .g b:nth-child(4)  {
    color:#4285F4
  }
  .google-badge .g b:nth-child(5)  {
    color:#34A853
  }
  .google-badge .g b:nth-child(6)  {
    color:#EA4335
  }
  .google-badge .gr strong  {
    color: var(--color-navy);
    font-size: 17px;
  }
  .google-badge .gr .stars  {
    margin-top: 2px;
  }
  .review-grid  {
    margin-top: 44px;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3,1fr);
  }
  .review  {
    background: var(--color-white);
    border: 1px solid var(--color-line-soft);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
  }
  .review .stars  {
    margin-bottom: 14px;
  }
  .review p  {
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--color-ink);
    line-height: 1.5;
    flex: 1;
  }
  .review .who  {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .review .who .av  {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-navy);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 17px;
    flex: none;
  }
  .review .who b  {
    color: var(--color-navy);
    font-size: 16px;
  }
  .review .who span  {
    color: var(--color-slate);
    font-size: 13px;
    display: block;
  }
  @media (max-width: 767px)  {
    .review-grid  {
      grid-template-columns: 1fr;
    }
    .reviews-head  {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .section-head  {
      max-width: 100%;
    }
    .google-badge  {
      width: 100%;
      justify-content: center;
    }
  }
}
.content-section-2234  {
  .core-accordion-01  {
    margin-top: 44px;
  }
  details  {
    background: var(--color-white);
    border: 1px solid var(--color-line);
  }
  summary  {
    color: var(--color-navy);
  }
  details p  {
    color: var(--color-slate);
    font-size: 16.5px;
  }
}
.content-section-2235  {
  .book-layout  {
    display: grid;
    gap: clamp(30px,5vw,56px);
    align-items: start;
    grid-template-columns: 1fr 1fr;
  }
  h2  {
    font-size: clamp(30px,4.8vw,50px);
  }
  .book-copy .lead  {
    margin-top: 16px;
  }
  .book-points  {
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
    display: grid;
    gap: 16px;
  }
  .book-points li  {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    font-size: 17px;
    font-weight: 600;
    color: var(--color-ink);
  }
  .book-points .ico  {
    width: 24px;
    height: 24px;
    color: #0E7A43;
    flex: none;
  }
  .book-callbox  {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
  }
  .book-callbox.center  {
    justify-content: center;
    margin-top: 24px;
  }
  .book-callbox .ico  {
    width: 30px;
    height: 30px;
    color: var(--color-scarlet);
    flex: none;
  }
  .book-callbox small  {
    display: block;
    color: var(--color-slate);
    font-weight: 700;
    font-size: 13px;
    text-transform: none;
    letter-spacing: .06em;
  }
  .book-callbox a  {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-navy);
    letter-spacing: -.01em;
  }
  .book-form  {
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 70px -34px rgba(11,28,102,.16);
    padding: clamp(26px,4vw,40px);
  }
  .form-title  {
    font-size: 23px;
  }
  .form-sub  {
    color: var(--color-slate);
    font-size: 15px;
    margin: 6px 0 24px;
  }
  .book-form .field  {
    margin-bottom: 18px;
  }
  .book-form label  {
    font-size: 14.5px;
    color: var(--color-navy);
  }
  .book-form label .opt  {
    color: var(--color-slate);
    font-weight: 600;
  }
  .book-form input  {
    background: var(--color-cream);
    border-radius: 12px;
  }
  .book-form input:focus  {
    background: #fff;
    box-shadow: 0 0 0 4px rgba(11,28,102,.10);
  }
  .book-form .field.invalid input  {
    border-color: var(--color-scarlet);
    box-shadow: 0 0 0 4px rgba(225,0,42,.10);
  }
  .book-form .field .err  {
    display: none;
    color: var(--color-scarlet);
    font-size: 13px;
    font-weight: 600;
    margin-top: 6px;
  }
  .book-form .field.invalid .err  {
    display: block;
  }
  .time-group  {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
  }
  .time-opt  {
    position: relative;
    display: block;
  }
  .time-opt input  {
    position: absolute;
    opacity: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    margin: 0;
  }
  .time-opt span  {
    display: block;
    text-align: center;
    padding: 13px 6px;
    border: 1.5px solid var(--color-line);
    border-radius: 12px;
    font-weight: 700;
    font-size: 14.5px;
    color: var(--color-navy);
    background: var(--color-cream);
    transition: all .15s ease;
  }
  .time-opt input:checked + span  {
    border-color: var(--color-navy);
    background: var(--color-navy);
    color: #fff;
  }
  .book-form button[type="submit"]  {
    width: 100%;
    border-radius: 999px;
    padding: 1.15rem;
    font-size: 1.0625rem;
    font-weight: 800;
    margin-top: 4px;
    border-color: transparent;
    box-shadow: none;
  }
  .book-form button[type="submit"]:hover  {
    background: var(--color-scarlet-dark);
  }
  .form-fine  {
    font-size: 13px;
    color: var(--color-slate);
    margin-top: 16px;
    text-align: center;
    line-height: 1.5;
  }
  .form-success  {
    display: none;
    text-align: center;
    padding: 18px 0;
  }
  .form-success.show  {
    display: block;
  }
  .book-form.done .form-live  {
    display: none;
  }
  .success-ring  {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: #E8FBEF;
    color: #0E7A43;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
  }
  .success-ring svg  {
    width: 38px;
    height: 38px;
  }
  .form-success h3  {
    font-size: 24px;
  }
  .form-success p  {
    color: var(--color-slate);
    margin-top: 10px;
  }
  .form-fail  {
    display: none;
    text-align: center;
    padding: 18px 0;
    color: var(--color-scarlet);
    font-weight: 600;
  }
  .form-fail.show  {
    display: block;
  }
  .form-fail a  {
    color: var(--color-navy);
    font-weight: 800;
  }
  @media (max-width: 1023px)  {
    .book-layout  {
      grid-template-columns: 1fr;
    }
    .book-callbox a  {
      font-size: 22px;
    }
  }
  @media (max-width: 639px)  {
    .time-group  {
      grid-template-columns: 1fr 1fr;
    }
  }
}
