/* ============================================
   REAL LIFE RESULTS — SHARED STYLES
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Barlow+Condensed:wght@600;700;900&display=swap');

:root {
  --black:      #080809;
  --dark:       #0f1012;
  --dark-2:     #161719;
  --dark-3:     #1e2023;
  --grey-mid:   #2c2f33;
  --grey-line:  rgba(255,255,255,0.07);
  --grey-light: #f2f2f0;
  --grey-pale:  #e8e8e5;
  --blue:       #0aacff;
  --blue-dim:   rgba(10,172,255,0.12);
  --blue-line:  rgba(10,172,255,0.2);
  --white:      #ffffff;
  --off-white:  #e8e9ea;
  --muted:      #72777e;
  --muted-2:    #50545a;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--off-white);
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: 38px; /* clears the fixed promo bar */
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---- TYPOGRAPHY ---- */
.display {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.03em;
  line-height: 0.95;
}

.condensed {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--white);
}

.section-title .blue { color: var(--blue); }

.section-body {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 580px;
}

/* ---- LAYOUT ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

section { padding: 96px 0; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 2px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-blue {
  background: var(--blue);
  color: var(--black);
}
.btn-blue:hover { background: #2ec0ff; transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

.btn-ghost {
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--blue-line);
  padding: 12px 28px;
  font-size: 0.85rem;
}
.btn-ghost:hover { background: var(--blue-dim); }

/* ---- CHIPS ---- */
.chip {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  background: var(--blue-dim);
  color: var(--blue);
  border: 1px solid var(--blue-line);
}

/* ---- DIVIDER ---- */
.divider {
  width: 48px;
  height: 3px;
  background: var(--blue);
  margin: 20px 0;
}

/* ---- PROMO BAR (Busy Parent Reset push) ---- */
.promo-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 210;
  display: block;
  height: 38px;
  line-height: 38px;
  background: var(--blue);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 0 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background 0.2s;
}

.promo-bar:hover { background: #2ec0ff; }

.promo-bar .promo-arrow {
  display: inline-block;
  margin-left: 6px;
  font-weight: 900;
}

/* ---- NAV ---- */
nav {
  position: fixed;
  top: 38px; left: 0; right: 0;
  z-index: 200;
  height: 68px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  justify-content: space-between;
  background: rgba(8,8,9,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--grey-line);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.nav-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 1.1;
}

.nav-logo-text span {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--blue);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 2px;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-links .nav-cta {
  background: var(--blue);
  color: var(--black);
  margin-left: 8px;
  padding: 8px 20px;
}

.nav-links .nav-cta:hover { background: #2ec0ff; color: var(--black); }

/* ---- HAMBURGER ---- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 300;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- MOBILE NAV ---- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,8,9,0.98);
  z-index: 250;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.06em;
  color: var(--white);
  padding: 8px 0;
  transition: color 0.2s;
}

.mobile-nav a:hover { color: var(--blue); }

.mobile-nav .mob-cta {
  margin-top: 20px;
  background: var(--blue);
  color: var(--black) !important;
  padding: 14px 48px;
  border-radius: 2px;
  font-size: 1.8rem;
}

/* ---- FOOTER ---- */
footer {
  background: var(--dark);
  border-top: 1px solid var(--grey-line);
  padding: 48px 40px;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}

.footer-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 0.78rem;
  color: var(--muted-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--blue); }

.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--grey-line);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--muted);
  transition: all 0.2s;
}

.footer-social a:hover {
  border-color: var(--blue-line);
  color: var(--blue);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--muted-2);
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--grey-line);
  max-width: 1160px;
  margin: 32px auto 0;
}

/* ---- CARD ---- */
.card {
  background: var(--dark-2);
  border: 1px solid var(--grey-line);
  border-radius: 4px;
  padding: 32px;
  transition: border-color 0.25s;
}

.card:hover { border-color: var(--blue-line); }

/* ---- INCLUDE LIST ---- */
.include-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.include-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--off-white);
  line-height: 1.5;
}

.include-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M4 9l3.5 3.5 6.5-7' stroke='%23000' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ---- TESTIMONIAL ---- */
.testimonial {
  background: var(--dark-2);
  border-left: 3px solid var(--blue);
  border-radius: 0 4px 4px 0;
  padding: 28px;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--off-white);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-quote::before {
  content: '\201C';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--blue);
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 3px;
}

.testimonial-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.testimonial-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---- BEFORE/AFTER ---- */
.ba-card {
  background: var(--dark-2);
  border: 1px solid var(--grey-line);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.25s;
}

.ba-card:hover { border-color: var(--blue-line); }

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ba-image-wrap { position: relative; }

.ba-image-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center top;
}

.ba-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 6px;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ba-label.before { background: rgba(0,0,0,0.7); color: var(--white); }
.ba-label.after { background: rgba(10,172,255,0.8); color: var(--black); }

.ba-single img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center top;
}

.ba-content { padding: 24px; }

.ba-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 6px;
}

.ba-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.ba-chips { display: flex; flex-wrap: wrap; gap: 6px; }

/* ---- WEEK BADGE ---- */
.week-badge {
  display: inline-block;
  background: var(--blue);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  padding: 3px 9px;
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .container { padding: 0 24px; }
  section { padding: 72px 0; }
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  footer { padding: 40px 24px; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .container { padding: 0 16px; }
  section { padding: 56px 0; }
  nav { padding: 0 16px; height: 60px; }
  .section-title { font-size: 2rem; }
  footer { padding: 32px 16px; }
  .promo-bar { font-size: 0.72rem; letter-spacing: 0.06em; padding: 0 10px; }
  .promo-bar .promo-extra { display: none; }
}
