/* ===========================================================
   BabbleBoxx landing page — full page styles (Navy direction)
   Built on top of shared.css
   =========================================================== */

body { background: var(--paper); }

/* Section primitives */
.section {
  padding: clamp(72px, 10vw, 128px) clamp(24px, 5vw, 80px);
}
.section.tight { padding-block: clamp(48px, 6vw, 80px); }
.section.dark { background: var(--oxford-navy); color: var(--white); }
.section.pink { background: var(--babble-pink); color: var(--oxford-navy); }
.section.paper { background: var(--paper); color: var(--oxford-navy); }
.container {
  max-width: 1240px;
  margin: 0 auto;
}

/* Section eyebrow + title pattern */
.sec-head {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 2.4fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.sec-head .meta {
  display: grid;
  gap: 14px;
  align-content: start;
}
.sec-head .num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.sec-head h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.sec-head .lede { max-width: 56ch; }
@media (max-width: 800px) {
  .sec-head { grid-template-columns: 1fr; align-items: start; }
  .sec-head .num { font-size: 32px; }
}

/* Logo bar */
.logo-bar {
  border-block: 1px solid rgba(9, 24, 56, 0.10);
}
.logo-bar .row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
}
.logo-bar .row .brand-logo {
  height: 56px;
  width: 100%;
  max-width: 140px;
  margin: 0 auto;
  object-fit: contain;
}
@media (max-width: 800px) {
  .logo-bar .row { grid-template-columns: repeat(2, 1fr); }
}

/* Problem section — 3 columns */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.pain-card {
  padding: clamp(28px, 3vw, 40px);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-card);
  display: grid;
  gap: 16px;
  align-content: start;
}
.pain-card .pain-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--lls-pink);
  text-transform: uppercase;
}
.pain-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}
.pain-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(9,24,56,0.72);
}
@media (max-width: 800px) {
  .pain-grid { grid-template-columns: 1fr; }
}

/* What we do section — 4x2 services grid */
.do-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.4vw, 20px);
  align-items: stretch;
}
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-card);
  padding: clamp(20px, 1.8vw, 28px);
  display: grid;
  gap: 12px;
  align-content: start;
}
.service-card.flagship {
  background: var(--oxford-navy);
  border-color: var(--oxford-navy);
  color: var(--white);
}
.service-card .badge {
  display: inline-block;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--vivid-blue);
  color: var(--oxford-navy);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.service-card h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0;
  text-wrap: balance;
}
.service-card.flagship h4 { color: var(--white); }
.service-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.service-card ul li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(9, 24, 56, 0.78);
}
.service-card.flagship ul li { color: rgba(255, 255, 255, 0.86); }
.service-card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 8px; height: 8px;
  background: var(--lls-pink);
  border-radius: 2px;
  transform: rotate(45deg);
}
.service-card.flagship ul li::before { background: var(--vivid-blue); }
.service-card .footnote {
  margin: 4px 0 0;
  font-size: 12px;
  font-style: italic;
  color: rgba(9, 24, 56, 0.55);
}
.service-card.flagship .footnote { color: rgba(255, 255, 255, 0.6); }

.do-add-ons {
  margin-top: clamp(20px, 2.4vw, 32px);
  padding: clamp(16px, 1.6vw, 22px) clamp(18px, 2vw, 26px);
  background: rgba(9, 24, 56, 0.04);
  border-left: 3px solid var(--vivid-blue);
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 0;
}
.do-add-ons strong {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--oxford-navy);
  display: block;
  margin-bottom: 4px;
}

@media (max-width: 1100px) {
  .do-wrap { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .do-wrap { grid-template-columns: 1fr; }
}

/* Hero top: two-column with text on left and form on right */
.hero-top {
  display: grid;
  grid-template-columns: 1fr minmax(340px, 400px);
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
  position: relative;
  z-index: 2;
}
.hero-text {
  display: grid;
  gap: 28px;
  align-content: start;
}
.hero-form {
  position: relative;
  z-index: 3;
  background: rgba(9, 24, 56, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: clamp(20px, 1.8vw, 28px);
  gap: 12px;
}
.hero-form-head { margin-bottom: 4px; }
.hero-form-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
  color: var(--white);
}
.hero-form-sub {
  font-size: 13.5px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.hero-form .submit { padding: 14px 22px; }
.hero-form .fineprint { font-size: 11.5px; }
@media (max-width: 1000px) {
  .hero-top { grid-template-columns: 1fr; }
  .hero-form { max-width: 480px; }
}

/* Footer Inc. 500 badge */
.site-foot .inc-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.site-foot .inc-badge img {
  height: 56px;
  width: auto;
  display: block;
}
.site-foot .inc-badge span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Hero strip — real images replace the placeholder rectangles */
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-card);
  display: block;
}

/* Logo-bar trust line above the slots */
.logo-bar .trust-line {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 24px;
  text-align: center;
}

/* Proof section (on dark navy) */
.proof-stat {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(48px, 6vw, 64px);
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.proof-stat .big {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(80px, 14vw, 200px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--vivid-blue);
}
.proof-stat .qual {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--white);
  margin: 0 0 16px;
  text-wrap: balance;
}
.proof-stat .note {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.6);
  margin: 0;
  font-style: italic;
}
@media (max-width: 800px) {
  .proof-stat { grid-template-columns: 1fr; align-items: start; }
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2vw, 28px);
}
.case-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-card);
  padding: 20px;
  display: grid;
  gap: 16px;
  align-content: start;
}
.case-card .thumb {
  aspect-ratio: 4/3;
  border-radius: var(--radius-box);
}
.case-card .meta-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.case-card .meta-line .pip {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--vivid-blue);
}
.case-card h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0;
  text-wrap: balance;
}
.case-card .ask {
  font-size: 15px;
  color: rgba(255,255,255,0.74);
  line-height: 1.5;
  margin: 0;
}
.case-card .result-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.case-card .result-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--vivid-blue);
}
.case-card .result-lbl {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
@media (max-width: 900px) { .case-grid { grid-template-columns: 1fr; } }

.pull-quote {
  margin-top: clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}
.pull-quote .quotemark {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 96px;
  line-height: 0.7;
  color: var(--lls-pink);
}
.pull-quote blockquote {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--white);
  text-wrap: balance;
}
.pull-quote .attr {
  margin-top: 20px;
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
@media (max-width: 700px) {
  .pull-quote { grid-template-columns: 1fr; }
  .pull-quote .quotemark { font-size: 64px; }
}

/* Why us / vs comparison */
.vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 24px);
}
.vs-col {
  border-radius: var(--radius-card);
  padding: clamp(28px, 3vw, 40px);
  display: grid;
  gap: 18px;
  align-content: start;
}
.vs-col.them {
  background: var(--white);
  border: 1px solid var(--rule);
  color: rgba(9,24,56,0.7);
}
.vs-col.us {
  background: var(--oxford-navy);
  color: var(--white);
}
.vs-col .label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.vs-col.them .label { color: rgba(9,24,56,0.5); }
.vs-col.us .label { color: var(--vivid-blue); }
.vs-col h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0;
}
.vs-col ul {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.vs-col ul li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 16px;
  line-height: 1.45;
}
.vs-col ul li::before {
  content: "";
  width: 14px; height: 14px;
  margin-top: 6px;
  border-radius: 3px;
}
.vs-col.them ul li::before {
  background: rgba(9,24,56,0.2);
  -webkit-mask: linear-gradient(45deg, transparent 45%, #000 45%, #000 55%, transparent 55%);
          mask: linear-gradient(45deg, transparent 45%, #000 45%, #000 55%, transparent 55%);
  background: rgba(9,24,56,0.4);
  border-radius: 0;
  width: 14px; height: 2px;
  margin-top: 11px;
}
.vs-col.us ul li::before {
  background: var(--vivid-blue);
  transform: rotate(45deg);
}
@media (max-width: 800px) { .vs-grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: clamp(20px, 2.4vw, 28px) 0;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 24px;
  align-items: start;
  cursor: pointer;
}
.faq-item .q-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.faq-item .q-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--oxford-navy);
}
.faq-item .q-toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--oxford-navy);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease;
}
.faq-item[data-open="true"] .q-toggle {
  background: var(--lls-pink);
  transform: rotate(45deg);
}
.faq-item .q-answer {
  grid-column: 2 / 3;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(9,24,56,0.72);
  max-width: 64ch;
  margin-top: 14px;
  display: none;
}
.faq-item[data-open="true"] .q-answer { display: block; }
@media (max-width: 700px) {
  .faq-item { grid-template-columns: 1fr 36px; gap: 14px; }
  .faq-item .q-num { display: none; }
  .faq-item .q-answer { grid-column: 1 / 2; }
}

/* Final CTA section */
.cta-card {
  background: var(--oxford-navy);
  color: var(--white);
  border-radius: clamp(20px, 3vw, 36px);
  padding: clamp(48px, 6vw, 96px);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 4vw, 80px);
  align-items: center;
}
.cta-card::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 28%;
  aspect-ratio: 1.24/1;
  background: var(--vivid-blue);
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  pointer-events: none;
}
.cta-card .cta-copy h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  text-wrap: balance;
}
.cta-card .cta-copy p {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin: 0;
  max-width: 44ch;
}
.cta-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-card);
  padding: clamp(24px, 2.4vw, 32px);
  display: grid;
  gap: 14px;
  position: relative;
  z-index: 2;
}
.cta-form label {
  display: grid;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.cta-form input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--white);
  outline: none;
  transition: border 0.18s ease, background 0.18s ease;
}
.cta-form input::placeholder { color: rgba(255,255,255,0.4); }
.cta-form input:focus {
  border-color: var(--vivid-blue);
  background: rgba(22,226,255,0.08);
}
.cta-form .submit {
  margin-top: 6px;
  background: var(--vivid-blue);
  color: var(--oxford-navy);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 0;
  border-radius: 999px;
  padding: 16px 24px;
  cursor: pointer;
  transition: background 0.18s ease;
}
.cta-form .submit:hover { background: #5cebff; }
.cta-form .fineprint {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin: 4px 0 0;
  line-height: 1.45;
}
@media (max-width: 900px) {
  .cta-card { grid-template-columns: 1fr; }
}

/* Footer */
footer.site-foot {
  padding: clamp(48px, 6vw, 80px) clamp(24px, 5vw, 80px) 32px;
  border-top: 1px solid var(--rule);
}
footer.site-foot .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
  max-width: 1240px;
  margin: 0 auto;
}
footer.site-foot .row .left { display: grid; gap: 14px; }
footer.site-foot .row .left .logo { width: 160px; color: var(--oxford-navy); }
footer.site-foot .row .left p {
  margin: 0; font-size: 13px; color: var(--muted); max-width: 36ch;
}
footer.site-foot .row .right {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
}
@media (max-width: 700px) {
  footer.site-foot .row { grid-template-columns: 1fr; align-items: start; }
  footer.site-foot .row .right { text-align: left; }
}

/* Section number meta wrapper for full bleed sections */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.section.dark .section-tag { color: rgba(255,255,255,0.55); }
.section-tag .pip {
  width: 6px; height: 6px; border-radius: 50%; background: var(--lls-pink);
}

/* Mobile hero adjustments */
@media (max-width: 900px) {
  .hero-02-strip { grid-template-columns: 1fr 1fr !important; }
  .hero-02-strip > :nth-child(3) { display: none; }
}
@media (max-width: 700px) {
  .hero-02-strip { grid-template-columns: 1fr !important; }
  .hero-02-strip > :nth-child(2),
  .hero-02-strip > :nth-child(3) { display: none; }
}
