/* =====================================================
   BBI – letsgetdry.com Landing Page Stylesheet
   Fonts: Lato (headlines), Nunito Sans (body)
   Colors: pink #e0177b | blue #2b4fa0 | navy #1a2d5a

   TYPE SCALE (16px base):
     .75rem  = 12px — fine print: refs, copyright, hints
     .875rem = 14px — secondary meta: progress label, consent
     1rem    = 16px — ALL body copy, nav, buttons, labels, captions
     1.5rem  = 24px — small section headings
     1.75rem = 28px — mid headings (Try It First)
     2rem    = 32px — phone bar number
     2.75rem = 44px — hero h1
     3.25rem = 52px — stat numbers
===================================================== */

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #444;
  background: #fff;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
sup { font-size: .6em; vertical-align: super; }

/* ===== LAYOUT ===== */
.wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn-grad {
  display: inline-block;
  background: linear-gradient(to right, #4a6fd4 0%, #e0177b 100%);
  color: #fff !important;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 13px 36px;
  border-radius: .75rem;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: opacity .15s;
}
.btn-grad:hover { opacity: .88; }

/* ===== NAV ===== */
.nav {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  padding: 9px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 46px; width: auto; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-phone { font-weight: 600; font-size: 1rem; color: #333; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url(/images/header-bg-back.jpg);
  background-position: center center;
  background-size: 150%;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,.78) 0%,
    rgba(255,255,255,.4) 50%,
    rgba(255,255,255,.05) 100%
  );
  z-index: 1;
}
.hero-front {
  position: absolute;
  right: 24vw;
  bottom: 0;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.hero-front img {
  height: 100%;
  width: auto;
  display: block;
  margin-left: auto;
}
.hero .wrap {
  position: relative;
  z-index: 3;
  padding-top: 48px;
  padding-bottom: 36px;
  width: 100%;
}
.hero .wrap h1,
.hero .wrap p {
  text-shadow: 0 0 2rem #ffffff;
}
.hero h1 {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 2.75rem;
  color: #20144c;
  line-height: 1.1;
  margin-bottom: 12px;
  max-width: 480px;
}
.hero-quote {
  font-style: italic;
  font-size: 1rem;
  color: #20144c;
  line-height: 1.5;
  margin-bottom: 4px;
  max-width: 400px;
}
.hero-attrib {
  font-size: 1rem;
  color: #e0177b;
  font-weight: 700;
}

/* ===== TRY IT FIRST ===== */
.try-first {
  background: #fce8f3;
  padding: 32px 0 36px;
  text-align: center;
}
.try-first .eyebrow {
  font-size: 1rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 5px;
}
.try-first h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 1.75rem;
  color: #111;
  margin-bottom: 10px;
}
.try-first h2 .pink { color: #e0177b; font-style: italic; }
.try-first .sub {
  font-size: 1rem;
  color: #555;
  max-width: 560px;
  margin: 0 auto 8px;
  line-height: 1.55;
}

/* Steps */
.steps-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
  margin-bottom: 30px;
}
.step-pill {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 14px;
  padding: 20px 22px 18px;
  flex: 1;
  min-width: 210px;
  max-width: 270px;
  box-shadow: 0 3px 14px rgba(0,0,0,.09);
  margin-top: 20px;
}
.step-num {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-pill span {
  font-size: 1rem;
  font-weight: 700;
  color: #e0177b;
  line-height: 1.35;
  text-align: center;
}
.cta-wrap { text-align: center; margin-bottom: 12px; }
.cta-phone { font-size: 1rem; color: #333; margin-top: 10px; }
.cta-phone strong { font-weight: 700; }

/* ===== STATS ===== */
.stats { background: #fff; padding: 36px 0 40px; }
.stats-grid {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-card {
  flex: 1;
  min-width: 220px;
  max-width: 290px;
  border: 1.5px solid #e8e8e8;
  border-radius: 6px;
  padding: 24px 18px 20px;
  text-align: center;
  background: #fff;
  border-top: 4px solid transparent;
  background-clip: padding-box;
  position: relative;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: -4px; left: -1.5px; right: -1.5px;
  height: 4px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(to right, #4a6fd4, #e0177b);
}
.stat-big {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 3.25rem;
  color: #e0177b;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-desc {
  font-size: 1rem;
  color: #444;
  line-height: 1.4;
  margin-bottom: 16px;
}
.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  height: 52px;
}
.stat-icon img { height: 48px; width: auto; object-fit: contain; }

/* ===== WHY BBI ===== */
.why-bbi { background: #e8eef8; padding: 36px 0 40px; }
.why-bbi h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #222;
  text-align: center;
  margin-bottom: 24px;
}
.why-items {
  max-width: 700px;
  margin: 0 auto 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.why-item { display: flex; align-items: flex-start; gap: 18px; }
.why-icon-wrap {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-icon-wrap img { width: 64px; height: 64px; object-fit: contain; }
.why-item h3 {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #e0177b;
  margin-bottom: 3px;
}
.why-item p { font-size: 1rem; color: #444; line-height: 1.5; }

/* ===== QUIZ ===== */
.quiz-section { background: #fff; padding: 40px 0 36px; }
.quiz-section h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #222;
  text-align: center;
  margin-bottom: 10px;
}
.quiz-section .intro {
  font-size: 1rem;
  color: #555;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 6px;
  line-height: 1.55;
}
.quiz-section .cta-line {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  font-style: italic;
  color: #e0177b;
  margin-bottom: 22px;
}

/* Quiz card */
.quiz-card {
  max-width: 680px;
  margin: 0 auto;
  border: 1.5px solid #e0177b;
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0px 0px 5px #cacaca;
}
.quiz-card-head {
  padding: 10px 18px 9px;
  background: #fff;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.q-label {
  font-size: .75rem;
  font-weight: 700;
  color: #999;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.progress-track {
  flex: 1;
  height: 5px;
  background: #eee;
  border-radius: 3px;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  background: #e0177b;
  border-radius: 3px;
  transition: width .3s;
}
.q-pct {
  font-size: .75rem;
  font-weight: 700;
  color: #999;
  white-space: nowrap;
}
.quiz-card-body { padding: 22px 22px 18px; }

/* Fieldsets */
#quiz1 fieldset { border: none; padding: 0; margin: 0; }
#quiz1 fieldset legend {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #222;
  margin-bottom: 14px;
  width: 100%;
  float: left;
  line-height: 1.4;
}
#quiz1 fieldset legend + * { clear: both; }
#quiz1 fieldset legend small {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  font-size: .875rem;
  display: block;
  color: #999;
  margin-top: 3px;
}
#quiz1 fieldset label:not(.field-lbl) {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  margin-bottom: 7px;
  border: 1.5px solid #e0e0e0;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  color: #333;
  transition: border-color .12s, background .12s;
  line-height: 1.35;
}
#quiz1 fieldset label:not(.field-lbl):hover { border-color: #70a6d9; background: #e8f0f9; }
#quiz1 fieldset label:not(.field-lbl).label-selected {
  border-color: #70a6d9;
  background: #e8f0f9;
  font-weight: 600;
}
#quiz1 fieldset input[type="radio"],
#quiz1 fieldset input[type="checkbox"] {
  accent-color: #70a6d9;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Contact fields */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.contact-grid .full { grid-column: 1 / -1; }
.field-lbl {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}
.field-inp {
  width: 100%;
  border: 1.5px solid #ccc;
  border-radius: 4px;
  padding: 9px 12px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1rem;
  color: #333;
  outline: none;
  background: #fff;
}
.field-inp:focus { border-color: #e0177b; box-shadow: 0 0 0 3px rgba(224,23,123,.08); }

/* Quiz nav buttons */
.btn-wrap {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid #f0f0f0;
}
.btn-next {
  background: linear-gradient(to right, #4a6fd4, #e0177b);
  color: #fff;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 9px 22px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity .15s;
}
.btn-next:hover { opacity: .88; }
.btn-next:disabled { background: #ccc; opacity: 1; cursor: not-allowed; }
.btn-back {
  background: #f0f0f0;
  color: #555;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 9px 22px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.btn-back:hover { background: #e0e0e0; }

.quiz-consent {
  font-size: .875rem;
  color: #888;
  line-height: 1.5;
  max-width: 680px;
  margin: 14px auto 0;
}

/* ===== LOCATIONS ===== */
.locations {
  background: linear-gradient(135deg, #fce8f3 0%, #f5cfe7 100%);
  padding: 40px 0;
}
.locations .wrap {
  display: flex;
  align-items: center;
  gap: 48px;
  justify-content: center;
}
.loc-map { flex: 0 0 280px; }
.loc-map img { width: 100%; }
.loc-text h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #e0177b;
  margin-bottom: 14px;
  line-height: 1.3;
}
.loc-list { list-style: none; padding: 0; }
.loc-list li {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  padding: 3px 0 3px 16px;
  position: relative;
}
.loc-list li::before { content: '•'; position: absolute; left: 0; color: #222; }

/* ===== PHONE BAR ===== */
.phone-bar { background: linear-gradient(to right, #4a6fd4 0%, #e0177b 100%); padding: 22px 0; text-align: center; }
.phone-bar .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.phone-bar .phone-num {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: #fff;
}
.phone-bar .phone-sub {
  font-size: 1.5rem;
  color: rgba(255,255,255,.9);
  font-weight: 400;
}

/* ===== FOOTER ===== */
.footer { background: #1a2d5a; padding: 20px 0 16px; }
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 1rem;
  color: rgba(255,255,255,.75);
}
.footer-links a { color: rgba(255,255,255,.75); }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.footer-links .sep { color: rgba(255,255,255,.35); }
.footer-center {
  text-align: center;
  font-size: 1rem;
  color: rgba(255,255,255,.55);
}
.footer-logo img { height: 44px; width: auto; }
.footer hr { border: none; border-top: 1px solid rgba(255,255,255,.15); margin: 10px 0; }
.footer-disclaimer {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
  margin-bottom: 6px;
}
.footer-refs { font-size: .75rem; color: rgba(255,255,255,.4); line-height: 1.6; }
.footer-refs ol { padding-left: 14px; margin: 2px 0 0; }
.footer-copyright { font-size: .75rem; color: rgba(255,255,255,.35); margin-top: 6px; }

/* ===== MOBILE ===== */
@media (max-width: 680px) {
  .nav-phone { display: none; }
  .hero { min-height: 260px; }
  .hero h1 { font-size: 2rem; }
  .hero-front { display: none; }
  .try-first h2 { font-size: 1.5rem; }
  .steps-row { flex-direction: column; align-items: center; }
  .step-pill { max-width: 320px; width: 100%; margin-top: 24px; }
  .stats-grid { flex-direction: column; align-items: center; }
  .stat-card { max-width: 320px; width: 100%; }
  .locations .wrap { flex-direction: column; gap: 24px; }
  .loc-map { flex: none; width: 220px; align-self: center; }
  .loc-text { text-align: center; }
  .phone-bar .phone-num { font-size: 1.5rem; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 8px; }
  .contact-grid { grid-template-columns: 1fr; }
}
