/* ================================================
   THEFBABROS — styles.css
   Full design system for all 6 pages
   ================================================ */

/* --- Custom Properties ---*/
:root {
  --orange:      #E85A1A;
  --orange-dark: #C94D15;
  --black:       #0A0A0A;
  --white:       #FFFFFF;
  --off-white:   #FAF7F3;
  --gray-dark:   #3A3A3A;
  --gray-mid:    #8A8A8A;
  --gray-light:  #E8E8E8;
  --warm-tint:   #FFF5EE;
  --card-dark:   #111111;

  --font: 'Inter', sans-serif;

  --radius-btn:  7px;
  --radius-card: 12px;

  --container-max: 1200px;
  --container-pad: 32px;

  --section-v: 120px;

  --transition: 150ms ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--gray-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font); }

/* --- Layout --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section         { padding: var(--section-v) 0; }
.section-dark    { background: var(--black);    color: var(--white); }
.section-light   { background: var(--white); }
.section-accent  { background: var(--off-white); }

/* --- Eyebrow labels --- */
.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font); font-weight: 700; color: var(--black); }
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--white); }

h1 { font-size: clamp(38px, 5.5vw, 72px); line-height: 1.05; }
h2 { font-size: clamp(30px, 3.8vw, 52px); line-height: 1.1;  }
h3 { font-size: clamp(20px, 2.2vw, 28px); line-height: 1.2; font-weight: 600; }
h4 { font-size: 18px; line-height: 1.3; font-weight: 600; }

p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

.text-orange { color: var(--orange); }
.text-center { text-align: center; }
.text-narrow { max-width: 680px; margin-left: auto; margin-right: auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-btn);
  padding: 15px 32px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); }

.btn-secondary {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-secondary:hover { background: var(--black); color: var(--white); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover { background: var(--white); color: var(--black); border-color: var(--white); }

.btn-lg  { font-size: 18px; padding: 18px 40px; }
.btn-full { width: 100%; justify-content: center; }

.btn .arrow { transition: transform var(--transition); }
.btn:hover .arrow { transform: translateX(3px); }

/* --- Navigation --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-size: 17px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: var(--radius-btn);
  font-size: 14px;
  font-weight: 600;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--orange-dark) !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-mobile {
  display: none;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px var(--container-pad) 28px;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  font-weight: 500;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--white); }
.nav-mobile .nav-cta-mobile {
  display: block;
  margin-top: 20px;
  background: var(--orange);
  color: var(--white) !important;
  text-align: center;
  padding: 14px 24px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  border-bottom: none !important;
}
.nav-mobile .nav-cta-mobile:hover { background: var(--orange-dark); }

/* --- Photo Placeholder --- */
.photo-placeholder {
  background: #C4B09A;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  text-align: center;
  padding: 16px;
  width: 100%;
  height: 100%;
}

/* --- Trust Row --- */
.trust-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--gray-mid);
}
.trust-row span { display: flex; align-items: center; gap: 6px; }
.trust-sep { color: var(--gray-light); }
.section-dark .trust-row { color: rgba(255,255,255,0.4); }
.section-dark .trust-sep { color: rgba(255,255,255,0.15); }

/* --- HERO (Home) --- */
.hero {
  background: var(--black);
  padding: 96px 0 104px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 58% 1fr;
  gap: 64px;
  align-items: center;
}
.hero-content h1 { color: var(--white); margin-bottom: 24px; }
.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
}
.hero-body {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-photo {
  aspect-ratio: 3/4;
  max-height: 540px;
  border-radius: 12px;
  overflow: hidden;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: var(--black);
  padding: 88px 0;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 20px; }
.page-hero .sub {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  max-width: 640px;
  margin: 0 auto;
}

/* --- Section Headers --- */
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header h2 { margin-bottom: 16px; }
.section-header .sub {
  font-size: 18px;
  color: var(--gray-mid);
  max-width: 620px;
}
.section-header.centered .sub { margin: 0 auto; }
.section-dark .section-header .sub { color: rgba(255,255,255,0.5); }

/* --- Problem Section --- */
.problem-markers {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.problem-marker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  padding: 0 20px;
  border-right: 1px solid var(--gray-light);
}
.problem-marker:first-child { padding-left: 0; }
.problem-marker:last-child  { border-right: none; }

/* --- Three Pillars (Solution section) --- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.pillar-card {
  background: var(--card-dark);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 3px solid var(--orange);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  transition: box-shadow var(--transition);
}
.pillar-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.pillar-icon { width: 40px; height: 40px; color: var(--orange); margin-bottom: 20px; }
.pillar-card h3 { font-size: 20px; color: var(--white); margin-bottom: 10px; }
.pillar-card p  { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* --- Testimonial Cards (large) --- */
.testimonials-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-top: 3px solid var(--orange);
  border-radius: var(--radius-card);
  padding: 32px;
  transition: box-shadow var(--transition);
}
.testimonial-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.07); }

.testimonial-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  flex-shrink: 0;
  border: 1px solid var(--gray-light);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.testimonial-photo .photo-placeholder { border-radius: 50%; font-size: 8px; }

.testimonial-result {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.testimonial-quote {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-dark);
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-name { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 2px; }
.testimonial-role { font-size: 13px; color: var(--gray-mid); }

/* Testimonial grid (small cards) */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 48px;
}
.testimonial-card-sm {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-card);
  padding: 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: box-shadow var(--transition);
}
.testimonial-card-sm:hover { box-shadow: 0 4px 14px rgba(0,0,0,0.06); }
.testimonial-card-sm .testimonial-photo { width: 48px; height: 48px; margin-bottom: 0; }
.testimonial-card-sm .testimonial-photo .photo-placeholder { font-size: 7px; }
.testimonial-card-sm .testimonial-name { font-size: 14px; }
.testimonial-card-sm .testimonial-role { font-size: 12px; margin-bottom: 10px; }
.testimonial-card-sm .testimonial-quote { font-size: 14px; margin-bottom: 0; }

/* --- Who This Is For --- */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.who-col { border-radius: var(--radius-card); padding: 40px 36px; }
.who-col-yes {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-left: 4px solid var(--orange);
}
.who-col-no {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-left: 4px solid var(--gray-light);
}
.who-col h3 { font-size: 19px; margin-bottom: 24px; }
.who-list { display: flex; flex-direction: column; gap: 14px; }
.who-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
}
.who-list .ic { flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; }
.who-col-yes .ic { color: var(--orange); }
.who-col-no  .ic { color: var(--gray-mid); }

.who-founder-note {
  font-size: 14px;
  color: var(--gray-mid);
  font-style: italic;
  margin-bottom: 32px;
  text-align: center;
}

/* --- Timeline Preview (Home) --- */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  margin-bottom: 48px;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 23px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: var(--orange);
  opacity: 0.25;
  z-index: 0;
}
.timeline-step {
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.timeline-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.timeline-step h4 { color: var(--white); font-size: 15px; margin-bottom: 8px; }
.timeline-step p  { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.55; }

.timeline-note {
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 40px;
}

/* --- Founders Section --- */
.founders-inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  align-items: center;
}
.founders-photo { aspect-ratio: 3/4; border-radius: 12px; overflow: hidden; }
.founders-content p { color: var(--gray-dark); }
.founders-creds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 28px 0;
  padding: 28px 0;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}
.founders-cred { font-size: 13px; color: var(--gray-mid); }
.founders-cred strong { display: block; font-size: 22px; font-weight: 700; color: var(--black); margin-bottom: 2px; }

/* --- FAQ Accordion --- */
.faq-category { margin-bottom: 40px; }
.faq-category-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-light);
}
.faq-list {
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--gray-light); }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.4;
  min-height: 56px;
  transition: background var(--transition), color var(--transition);
}
.faq-question:hover   { background: var(--off-white); }
.faq-question.open    { color: var(--orange); }

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--orange);
  transition: transform var(--transition);
}
.faq-question.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 4px 28px 24px;
  font-size: 15px;
  line-height: 1.72;
  color: var(--gray-dark);
}
.faq-answer.open { display: block; }

/* --- Final CTA --- */
.final-cta {
  background: var(--black);
  padding: 120px 0;
  text-align: center;
}
.final-cta h2  { color: var(--white); margin-bottom: 16px; }
.final-cta .sub {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.65;
}
.final-cta-trust {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.final-cta-risk {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* --- Footer --- */
.footer {
  background: #060606;
  padding: 72px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--orange);
  display: block;
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.45);
  font-size: 11px;
  font-weight: 700;
  transition: border-color var(--transition), color var(--transition);
}
.footer-social a:hover { border-color: rgba(255,255,255,0.28); color: var(--white); }

.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 16px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col li a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-col li a:hover { color: var(--white); }

.footer-newsletter p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
  line-height: 1.55;
}
.footer-email-form { display: flex; gap: 8px; }
.footer-email-form input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 10px 14px;
  color: var(--white);
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  transition: border-color var(--transition);
}
.footer-email-form input::placeholder { color: rgba(255,255,255,0.28); }
.footer-email-form input:focus { border-color: var(--orange); }
.footer-email-form button {
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}
.footer-email-form button:hover { background: var(--orange-dark); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  gap: 14px;
}
.footer-copy  { font-size: 12px; color: rgba(255,255,255,0.22); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.22);
  transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* --- Pull Quote --- */
.pullquote {
  border-left: 4px solid var(--orange);
  padding: 20px 24px;
  background: var(--warm-tint);
  border-radius: 0 8px 8px 0;
  font-size: 17px;
  font-style: italic;
  color: var(--black);
  margin: 32px 0;
  line-height: 1.65;
}

/* --- About Page --- */
.about-story {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  align-items: flex-start;
}
.about-story-photo {
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  position: sticky;
  top: 96px;
  background: var(--off-white);
}
.about-story-content p { color: var(--gray-dark); margin-bottom: 20px; }

.beliefs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.belief-item { display: flex; gap: 16px; align-items: flex-start; }
.belief-num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.belief-item h4  { font-size: 15px; margin-bottom: 4px; }
.belief-item p   { font-size: 14px; color: var(--gray-mid); margin: 0; }

/* --- How It Works Page --- */
.hiw-steps { display: flex; flex-direction: column; }
.hiw-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 48px 0;
  border-bottom: 1px solid var(--gray-light);
  align-items: flex-start;
}
.hiw-step:last-child { border-bottom: none; }
.hiw-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hiw-step-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  font-size: 12px;
  color: var(--gray-mid);
  font-weight: 500;
}
.hiw-step-meta span { display: flex; align-items: center; gap: 4px; }
.hiw-step h3 { font-size: 24px; margin-bottom: 14px; }
.hiw-step p  { font-size: 16px; line-height: 1.7; color: var(--gray-dark); }

.timeline-callout {
  background: var(--off-white);
  border-radius: var(--radius-card);
  padding: 56px 48px;
  text-align: center;
  margin-bottom: 64px;
}
.timeline-callout h2 { margin-bottom: 16px; }
.timeline-callout p  { max-width: 600px; margin: 0 auto; font-size: 17px; color: var(--gray-dark); }
.timeline-callout .highlight { font-weight: 700; color: var(--orange); }

.hiw-included {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 64px;
}
.included-col { padding: 40px; border-radius: var(--radius-card); }
.included-col.yes {
  background: var(--white);
  border: 1px solid var(--gray-light);
}
.included-col.no {
  background: var(--card-dark);
  border: 1px solid rgba(255,255,255,0.06);
}
.included-col h3 { font-size: 20px; margin-bottom: 24px; }
.included-col.no h3 { color: var(--white); }
.included-list { display: flex; flex-direction: column; gap: 14px; }
.included-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
}
.included-list .ic { flex-shrink: 0; color: var(--orange); margin-top: 2px; }
.included-col.no .included-list li { color: rgba(255,255,255,0.55); }
.included-col.no .included-list .ic { color: var(--gray-mid); }

/* --- Success Stories Page --- */
.stories-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}
.story-card {
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.story-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.story-photo {
  padding: 28px 28px 0;
  display: flex;
  justify-content: center;
}
.story-photo img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--gray-light);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  flex-shrink: 0;
}
.story-body { padding: 24px 28px 28px; }
.story-body h3  { font-size: 20px; margin-bottom: 4px; }
.story-role { font-size: 13px; color: var(--gray-mid); margin-bottom: 16px; }
.story-quote {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray-dark);
  font-style: italic;
  border-top: 1px solid var(--gray-light);
  padding-top: 16px;
}

.stories-note {
  background: var(--off-white);
  border-radius: var(--radius-card);
  padding: 40px 48px;
  margin-bottom: 72px;
}
.stories-note p { font-size: 15px; line-height: 1.75; color: var(--gray-dark); max-width: 760px; }
.stories-note strong { font-weight: 700; color: var(--black); }

/* --- Book a Call Page --- */
.book-expect {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}
.expect-card {
  text-align: center;
  padding: 32px 24px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-card);
}
.expect-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.expect-card h4 { font-size: 16px; margin-bottom: 10px; }
.expect-card p  { font-size: 14px; color: var(--gray-mid); line-height: 1.6; }

.book-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 56px;
  align-items: flex-start;
}
.book-form-title { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.book-form-sub  { font-size: 15px; color: var(--gray-mid); margin-bottom: 32px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: 7px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-mid); }
.form-group textarea { min-height: 100px; resize: vertical; }

.form-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill-btn {
  padding: 8px 18px;
  border: 1.5px solid var(--gray-light);
  border-radius: 50px;
  font-size: 14px;
  font-family: var(--font);
  font-weight: 500;
  color: var(--gray-dark);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
}
.pill-btn:hover   { border-color: var(--orange); color: var(--orange); }
.pill-btn.selected { background: var(--orange); border-color: var(--orange); color: var(--white); }

.form-note {
  font-size: 13px;
  color: var(--gray-mid);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}
.form-note a { color: var(--orange); }
.form-note a:hover { text-decoration: underline; }

/* Book sidebar */
.book-sidebar-box {
  background: var(--off-white);
  border-radius: var(--radius-card);
  padding: 28px;
  margin-bottom: 20px;
}
.book-trust-items { margin-bottom: 24px; }
.book-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-dark);
  margin-bottom: 12px;
}
.book-trust-item:last-child { margin-bottom: 0; }
.book-trust-ic { color: var(--orange); flex-shrink: 0; width: 18px; height: 18px; }

.sidebar-testimonial {
  border-top: 1px solid var(--gray-light);
  padding-top: 20px;
}
.sidebar-testimonial .testimonial-quote { font-size: 14px; }

/* --- Clients 2-column grid override (services page "Who We Work With") --- */
.clients-grid-2col { grid-template-columns: repeat(2, 1fr) !important; }

/* --- Video Testimonials --- */
.video-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.video-testimonial { display: flex; flex-direction: column; gap: 12px; }
.video-embed-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
}
.video-embed-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-caption {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  text-align: center;
  margin: 0;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .testimonials-featured,
  .testimonials-grid,
  .pillars-grid,
  .stories-featured { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .book-layout { grid-template-columns: 1fr; gap: 48px; }
  .hiw-included { grid-template-columns: 1fr; }
  .founders-inner { gap: 48px; }
}

@media (max-width: 768px) {
  :root {
    --section-v: 72px;
    --container-pad: 20px;
  }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero { padding: 64px 0 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-photo { order: 2; max-height: 280px; aspect-ratio: 4/3; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  /* Grids → single col */
  .pillars-grid,
  .testimonials-featured,
  .testimonials-grid,
  .stories-featured,
  .who-grid,
  .beliefs-grid,
  .book-expect,
  .form-row { grid-template-columns: 1fr; }

  /* Timeline → vertical */
  .timeline { grid-template-columns: 1fr; }
  .timeline::before { display: none; }
  .timeline-step {
    text-align: left;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
    padding-bottom: 32px;
  }
  .timeline-num { margin: 0; }

  /* About story */
  .about-story { grid-template-columns: 1fr; gap: 40px; }
  .about-story-photo { position: static; aspect-ratio: 4/3; }

  /* Founders */
  .founders-inner { grid-template-columns: 1fr; gap: 40px; }
  .founders-photo { aspect-ratio: 4/3; }

  /* HIW */
  .hiw-step { grid-template-columns: 60px 1fr; gap: 20px; padding: 36px 0; }

  /* Stories note */
  .stories-note { padding: 28px 24px; }
  .timeline-callout { padding: 36px 24px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* Final CTA */
  .final-cta { padding: 80px 0; }
  .final-cta-trust { flex-direction: column; align-items: center; gap: 12px; }

  .problem-markers { flex-direction: column; align-items: flex-start; gap: 8px; }
  .problem-marker { border-right: none; padding-left: 0; }

  .video-testimonials-grid { grid-template-columns: 1fr; }
  .clients-grid-2col { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
  .who-col  { padding: 28px 24px; }
  .included-col { padding: 28px 24px; }
  .stories-note { padding: 24px 20px; }
  .book-sidebar-box { padding: 24px 20px; }
}
