/* ============================================
   LIKED SOCIAL — Refined Stylesheet
   Design: Sophisticated, minimal, photo-forward
   Brand: Courier Prime (headings) · Garet (body)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400&family=Nunito:wght@300;400;600;700&display=swap');

/* NOTE: Garet font files → /assets/fonts/
   Uncomment @font-face below when ready.

@font-face {
  font-family: 'Garet';
  src: url('../fonts/Garet-Book.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Garet';
  src: url('../fonts/Garet-Heavy.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
*/

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  /* Brand palette */
  --navy:         #21409a;
  --coral:        #f16077;
  --yellow:       #f6d617;
  --sky:          #00aeef;
  --light-pink:   #f6b1cf;
  --light-yellow: #fce294;
  --light-blue:   #71d0f6;

  /* Neutral base */
  --white:        #ffffff;
  --off-white:    #f9f8f6;
  --cream:        #fdfcf9;
  --tint-yellow:  #fefcf3;
  --tint-pink:    #fdf6f8;
  --tint-blue:    #f5fbff;
  --dark:         #1c1c1c;
  --mid-gray:     #6b7280;
  --light-gray:   #e5e5e5;
  --divider:      #efefef;

  /* Typography */
  --font-heading:  'Courier Prime', 'Courier New', monospace;
  --font-body:     'Garet', 'Nunito', sans-serif;

  /* Spacing */
  --section-v:  120px;
  --section-sm: 72px;
  --container:  1120px;

  /* Shape */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  100px;

  /* Elevation */
  --shadow-xs: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.10);

  --transition: 0.22s ease;
}

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  display: block;
  margin-bottom: 0.9rem;
}

.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--mid-gray);
  line-height: 1.75;
}

.closing {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-top: 2rem;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}

.section        { padding-block: var(--section-v); }
.section--sm    { padding-block: var(--section-sm); }
.section--flush { padding-block: 0; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split--wide {
  grid-template-columns: 1.1fr 0.9fr;
}

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }

.text-center { text-align: center; }

/* Section header */
.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 4rem;
}
.section-header p { color: var(--mid-gray); font-size: 1.1rem; margin-top: 0.75rem; }

/* Background variants */
.bg-white      { background: var(--white); }
.bg-off-white  { background: var(--off-white); }
.bg-cream      { background: var(--cream); }
.bg-tint-pink  { background: var(--tint-pink); }
.bg-tint-yellow{ background: var(--tint-yellow); }
.bg-tint-blue  { background: var(--tint-blue); }
.bg-navy       { background: var(--navy); }

/* ============================================
   PHOTO PLACEHOLDER
   ============================================ */
.photo-block {
  background: var(--light-gray);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.photo-block--tall   { min-height: 540px; }
.photo-block--medium { min-height: 420px; }
.photo-block--short  { min-height: 300px; }

.photo-block__icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-block__icon svg {
  width: 22px;
  height: 22px;
  color: #aaa;
}
.photo-block__label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: #aaa;
  text-align: center;
  max-width: 160px;
  line-height: 1.4;
}

/* When a real image or video is placed inside .photo-block */
.photo-block img,
.photo-block video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero video — disable the lift effect so it feels anchored */
.hero__video-wrap:hover {
  transform: none;
}

/* Depth lift on photo blocks */
.photo-block {
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition), transform var(--transition);
}
.photo-block:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: var(--r-xl);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 3px 12px rgba(246,214,23,0.35);
}
.btn-primary:hover {
  background: #edd900;
  box-shadow: 0 6px 20px rgba(246,214,23,0.45);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover { background: #1a3280; }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-sm { padding: 0.6rem 1.5rem; font-size: 0.875rem; }

/* Text link style */
.text-link {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1.5px solid var(--yellow);
  padding-bottom: 1px;
  transition: gap var(--transition), color var(--transition);
}
.text-link:hover { gap: 0.65rem; color: var(--coral); }
.text-link::after { content: '→'; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--divider);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  border-bottom-color: transparent;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 2rem;
}

.nav__logo img { height: 60px; width: auto; }
.nav__logo { display: flex; align-items: center; }
.nav__logo-fallback {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--navy);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.nav__links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  padding: 0.45rem 0.85rem;
  border-radius: var(--r-sm);
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.01em;
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--navy);
  background: var(--tint-yellow);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r-sm);
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 0 1.5rem;
  border-top: 1px solid var(--divider);
  gap: 0.15rem;
}
.mobile-menu a {
  font-weight: 600;
  color: var(--dark);
  padding: 0.7rem 0.75rem;
  border-radius: var(--r-sm);
  transition: background var(--transition);
}
.mobile-menu a:hover { background: var(--off-white); }
.mobile-menu .btn { margin-top: 0.75rem; width: 100%; text-align: center; }
.mobile-menu.open { display: flex; }

/* ============================================
   HERO — HOMEPAGE
   ============================================ */
.hero {
  padding: 120px 0 104px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Subtle decorative blob behind hero text */
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -180px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(246,214,23,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero .container { position: relative; z-index: 1; }

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hero__text {}
.hero h1 {
  color: var(--navy);
  margin-bottom: 1.25rem;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.hero__sub {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--mid-gray);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ============================================
   HERO — INNER PAGES
   ============================================ */
.page-hero {
  padding: 80px 0 64px;
  background: var(--off-white);
  border-bottom: 1px solid var(--divider);
}
.page-hero__inner { max-width: 680px; }
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p { color: var(--mid-gray); font-size: 1.1rem; }
.page-hero .eyebrow { margin-bottom: 1rem; }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  padding: 28px 0;
  background: var(--white);
  border-bottom: 1px solid var(--divider);
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
}
.trust-item__dot {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}
.stars { color: var(--yellow); font-size: 1rem; letter-spacing: 1px; }

/* ============================================
   CHECK LIST
   ============================================ */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.check-item__mark {
  width: 22px;
  height: 22px;
  background: var(--light-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.2rem;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--navy);
}
.check-item p { margin: 0; font-size: 1rem; color: var(--dark); line-height: 1.5; }

/* White variant for dark sections */
.check-item--white .check-item__mark { background: rgba(255,255,255,0.15); color: var(--white); }
.check-item--white p { color: rgba(255,255,255,0.88); }

/* ============================================
   PROBLEM LIST
   ============================================ */
.problem-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.problem-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.1rem;
  background: var(--off-white);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--light-pink);
}
.problem-item p { margin: 0; font-size: 0.96rem; font-weight: 600; color: var(--dark); }

/* ============================================
   STEP CARDS
   ============================================ */
.step-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid var(--divider);
  border-bottom: 3px solid transparent;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-bottom-color: var(--yellow);
}
.step-num {
  width: 52px;
  height: 52px;
  background: var(--tint-yellow);
  border: 1.5px solid var(--light-yellow);
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.step-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.step-card p { color: var(--mid-gray); font-size: 0.95rem; }

/* ============================================
   STEP VISUAL CARDS (How It Works overview)
   ============================================ */

@keyframes badge-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-7px); }
}

.steps-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.step-vis-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--divider);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.step-vis-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.step-vis-card__media {
  position: relative;
  height: 260px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-vis-card__media--yellow { background: #fffbe6; }
.step-vis-card__media--pink   { background: #fff0f6; }
.step-vis-card__media--blue   { background: #f0fbff; }

/* Decorative background circles */
.step-vis-card__dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

/* Central icon container */
@keyframes icon-bob {
  0%, 100% { transform: translateY(0px) scale(1); }
  50%       { transform: translateY(-6px) scale(1.04); }
}

.step-vis-card__icon-wrap {
  position: relative;
  z-index: 1;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  animation: icon-bob 3.5s ease-in-out infinite;
}

.step-vis-card__icon-wrap--yellow {
  background: var(--yellow);
  color: var(--navy);
  animation-delay: 0s;
}
.step-vis-card__icon-wrap--pink {
  background: var(--light-pink);
  color: #8b2252;
  animation-delay: 0.6s;
}
.step-vis-card__icon-wrap--blue {
  background: var(--light-blue);
  color: #005a7a;
  animation-delay: 1.2s;
}

/* Floating badge inside media area */
.step-vis-card__badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  animation: badge-float 3s ease-in-out infinite;
}

.step-vis-card__badge--yellow {
  background: var(--yellow);
  color: var(--navy);
  animation-delay: 0s;
}

.step-vis-card__badge--pink {
  background: var(--light-pink);
  color: #8b2252;
  animation-delay: 0.8s;
}

.step-vis-card__badge--blue {
  background: var(--light-blue);
  color: #005a7a;
  animation-delay: 1.6s;
}

.step-vis-card__body {
  padding: 1.75rem 1.75rem 2rem;
}

.step-vis-card__pill {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--tint-yellow);
  border: 1.5px solid var(--light-yellow);
  border-radius: 100px;
  padding: 0.2rem 0.7rem;
  margin-bottom: 0.85rem;
}

.step-vis-card h3 {
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.step-vis-card p {
  color: var(--mid-gray);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.service-card {
  padding: 2rem 1.75rem;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--divider);
  border-bottom: 3px solid transparent;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-bottom-color: var(--yellow);
}
.service-card__icon {
  width: 48px;
  height: 48px;
  background: var(--tint-yellow);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-card__icon svg { width: 22px; height: 22px; stroke: var(--navy); }
.service-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.service-card p { color: var(--mid-gray); font-size: 0.93rem; line-height: 1.6; }

/* ============================================
   TESTIMONIAL
   ============================================ */
.testimonial {
  padding: 2.5rem;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--divider);
  position: relative;
}
.testimonial__quote {
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 1;
  color: var(--light-yellow);
  margin-bottom: 1rem;
  display: block;
}
.testimonial p {
  font-size: 1.1rem;
  color: var(--dark);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.testimonial cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--mid-gray);
}
.testimonial cite span {
  color: var(--coral);
}

/* ============================================
   VALUE CARD (About)
   ============================================ */
.value-card {
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--divider);
  border-bottom: 3px solid transparent;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-bottom-color: var(--light-pink);
}
.value-card__icon {
  width: 44px;
  height: 44px;
  background: var(--tint-pink);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.value-card__icon svg { width: 20px; height: 20px; stroke: var(--navy); }

.contact-item__icon svg { width: 18px; height: 18px; stroke: var(--navy); }

.reassurance-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.reassurance-icon svg { width: 24px; height: 24px; stroke: var(--yellow); }
.value-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.value-card p { color: var(--mid-gray); font-size: 0.92rem; }

/* ============================================
   WHO WE SERVE — PILL LIST
   ============================================ */
.serve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.serve-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--divider);
}
.serve-item__dot {
  width: 10px;
  height: 10px;
  background: var(--light-pink);
  border-radius: 50%;
  flex-shrink: 0;
}
.serve-item p { margin: 0; font-size: 0.95rem; font-weight: 600; }

/* ============================================
   FAQ GRID
   ============================================ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: var(--r-md);
  padding: 1.75rem;
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-item h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.65rem;
  line-height: 1.4;
}

.faq-item p {
  font-size: 0.95rem;
  color: var(--mid-gray);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   STAT BLOCK (About page grid)
   ============================================ */
.stat-block {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--divider);
  text-align: center;
}

/* ============================================
   STATS ROW — horizontal numbers bar
   ============================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--divider);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
}
.stats-row__item {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--divider);
  transition: background var(--transition);
}
.stats-row__item:last-child { border-right: none; }
.stats-row__item:hover { background: var(--tint-yellow); }
.stats-row__number {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 3.5vw, 3.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.6rem;
  display: block;
}
.stats-row__number em {
  font-style: normal;
  color: var(--coral);
}
.stats-row__label {
  font-size: 0.85rem;
  color: var(--mid-gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ============================================
   PAIN GRID — typographic problem section
   ============================================ */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 820px;
  margin: 0 auto 2.5rem;
}
.pain-card {
  padding: 1.5rem 1.75rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  border-left: 3px solid var(--light-pink);
}
.pain-card p {
  margin: 0;
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}
.stat-block__value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.stat-block__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--mid-gray);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}
.form-group label {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--r-md);
  font-size: 0.96rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(33,64,154,0.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ============================================
   CONTACT INFO
   ============================================ */
.contact-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-item__icon {
  width: 40px;
  height: 40px;
  background: var(--tint-yellow);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-item__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.2rem;
}
.contact-item__value {
  font-size: 0.96rem;
  color: var(--dark);
  font-weight: 600;
}
.contact-item__value a { transition: color var(--transition); }
.contact-item__value a:hover { color: var(--navy); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--navy);
  padding: var(--section-v) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Warm radial glow behind CTA */
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(246,214,23,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section .eyebrow { display: block; margin-bottom: 1rem; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; font-size: clamp(2rem, 3.5vw, 3rem); }
.cta-section p { color: rgba(255,255,255,0.72); font-size: 1.1rem; max-width: 540px; margin: 0 auto 2rem; }
.cta-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.cta-list li {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.cta-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   DIVIDER / ACCENT LINE
   ============================================ */
.accent-line {
  width: 40px;
  height: 3px;
  background: var(--yellow);
  border-radius: 3px;
  margin-bottom: 1.5rem;
}
.accent-line--center { margin-inline: auto; }

/* ============================================
   TAG / PILL
   ============================================ */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--tint-yellow);
  border: 1px solid var(--light-yellow);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--r-xl);
}

/* ============================================
   INFO BOX
   ============================================ */
.info-box {
  background: var(--tint-yellow);
  border: 1px solid var(--light-yellow);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
}
.info-box p {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #111827;
  color: rgba(255,255,255,0.6);
  padding: 72px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer__brand img { height: 60px; margin-bottom: 1.25rem; }
.footer__brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 1rem;
  display: block;
}
.footer__brand p { font-size: 0.9rem; max-width: 280px; line-height: 1.65; }

.footer__col h5 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.25rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer__col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer__col ul li a:hover { color: var(--yellow); }

.footer__contact-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
  color: rgba(255,255,255,0.55);
}
.footer__contact-row a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer__contact-row a:hover { color: var(--yellow); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy { font-size: 0.82rem; color: rgba(255,255,255,0.3); }
.footer__socials { display: flex; gap: 0.6rem; }
.footer__socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  transition: background var(--transition), color var(--transition);
}
.footer__socials a:hover { background: var(--yellow); color: var(--navy); }

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }
.fade-up:nth-child(5) { transition-delay: 0.32s; }
.fade-up:nth-child(6) { transition-delay: 0.40s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  :root { --section-v: 96px; }
}

@media (max-width: 768px) {
  :root { --section-v: 72px; --section-sm: 56px; }

  .hamburger { display: flex; }
  .nav__links, .nav__cta { display: none; }

  .split, .hero__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .split .photo-block { order: -1; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .steps-card-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }

  /* New components */
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stats-row__item:nth-child(2) { border-right: none; }
  .stats-row__item:nth-child(1),
  .stats-row__item:nth-child(2) { border-bottom: 1px solid var(--divider); }
  .pain-grid { grid-template-columns: 1fr; }
  .services-grid-2 { grid-template-columns: 1fr !important; }

  .footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .section-header { margin-bottom: 2.5rem; }
  .hero { padding: 80px 0 64px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .trust-bar__inner { gap: 1.5rem; }
}
