/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { margin: 0; padding: 0; }

:root {
  --red:     #f12728;
  --dark:    #1c1c1c;
  --navy:    #1e2d3d;
  --gray-bg: #f4f4f4;
  --border:  #e5e5e5;
  --text:    #333;
  --muted:   #777;
  --white:   #ffffff;
  --radius:  14px;
  --shadow:  0 6px 32px rgba(0,0,0,0.10);
}

html { scroll-behavior: smooth; margin: 0; padding: 0; }

body {
  font-family: 'DM Sans', 'Inter', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
}

h4, h5, h6 {
  font-family: 'DM Sans', 'Inter', 'Segoe UI', sans-serif;
  font-weight: 700;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.img-ph       { background: #d0d0d0; border-radius: var(--radius); }
.img-ph-round { background: #c0c0c0; border-radius: 50%; }
.img-ph-rect  { background: linear-gradient(145deg,#ddd,#c8c8c8); }

.eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--red); margin-bottom: 6px;
  display: block;
}
.eyebrow.light { color: rgba(255,255,255,0.6); }

.section-title { font-size: 28px; font-weight: 400; font-family: 'DM Serif Display', Georgia, serif; line-height: 1.2; color: var(--dark); }
.section-title.white { color: #fff; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky; top: 0; z-index: 999;
  background: #fff; 
  height: 100px; overflow: visible;
}
.nav-container {
  max-width: 1400px; margin: 0 auto; padding: 0 40px;
  height: 100%; display: flex; align-items: center;
  position: relative; overflow: visible;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; z-index: 2; }
.logo-svg  { width: 120px; height: auto; display: block; }

/* Nav centered absolutely */
.nav-menu {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 32px;
  list-style: none; margin: 0; padding: 0; overflow: visible;
}
.nav-link  { font-size: 15.5px; font-weight: 500; color: #444; transition: color .2s; white-space: nowrap; display: flex; align-items: center; gap: 4px; }
.nav-link:hover, .nav-link.active { color: var(--red); font-weight: 600; }
.nav-link .arrow { font-size: 9px; margin-left: 2px; }

/* Services dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown .dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 0;
  background: #fff; border-radius: 12px; min-width: 240px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.13); border: 1px solid #f0f0f0;
  padding: 8px 0; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all .22s ease; z-index: 10000;
  list-style: none;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown .dropdown-menu li a {
  display: block; padding: 10px 20px; font-size: 13.5px;
  color: #444; transition: background .15s, color .15s; white-space: nowrap;
}
.nav-dropdown .dropdown-menu li a:hover { background: #fff5f5; color: var(--red); }

.nav-phone-btn {
  margin-left: auto; display: flex; align-items: center; gap: 8px;
  background: var(--dark); color: #fff; font-size: 15px; font-weight: 600;
  padding: 13px 26px; border-radius: 50px; white-space: nowrap;
  transition: background .2s; text-decoration: none; flex-shrink: 0; z-index: 2;
}
.nav-phone-btn:hover { background: var(--red); }

.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 40px; height: 40px; background: none;
  border: none; cursor: pointer; padding: 4px; flex-shrink: 0; margin-left: auto;
}
.hamburger span { display: block; height: 2px; background: var(--dark); border-radius: 2px; transition: transform .3s, opacity .3s; }
.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); }

/* ============================================================
   HERO — boxed banner + overlapping book card
   ============================================================ */
.hero-wrapper { max-width: 1200px; margin: 0 auto; padding: 0 28px; position: relative; }

.hero {
  background: #e2e2e2 url('https://www.transparenttextures.com/patterns/cubes.png');
  background-size: cover; background-position: center;
  border-radius: 20px; padding: 56px 52px 110px; overflow: hidden; position: relative;top:30px;
}
.hero::after {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-box {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 40px; align-items: flex-start; position: relative; z-index: 1;
}
.hero-right-space { display: block; }
.hero-heading { font-size: 36px; font-weight: 900; line-height: 1.2; color: var(--red); margin-bottom: 20px; }
.hero-sub { font-size: 14px; color: #444; max-width: 420px; line-height: 1.75; }

.hero-bottom {
  display: grid; grid-template-columns: 1fr 400px;
  gap: 40px; align-items: flex-end;
  margin-top: -60px; position: relative; z-index: 10;
}

/* stat cards */
.stats-cards { display: flex; gap: 14px; align-self: flex-end; margin-left: 20px;}
.stat-card {
  background: #fff; border-radius: 16px; padding: 18px 20px 14px;
  min-width: 148px; box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  display: flex; flex-direction: column; gap: 8px;
  border: 1.5px solid #f0f0f0; transition: transform .2s;
}
.stat-card:hover { transform: translateY(-3px); }
.stat-card--accent { background: var(--dark); border-color: var(--dark); }
.stat-card--accent .stat-card-icon,
.stat-card--accent .stat-card-num,
.stat-card--accent .stat-card-label { color: #fff; }
.stat-card--accent .stat-card-bar  { background: rgba(255,255,255,0.2); }
.stat-card--accent .stat-card-fill { background: rgba(255,255,255,0.55); }
.stat-card-icon  { color: var(--red); display: flex; }
.stat-card-body  { display: flex; flex-direction: column; gap: 2px; }
.stat-card-num   { font-size: 26px; font-weight: 900; color: var(--dark); line-height: 1; }
.stat-card-label { font-size: 11px; color: var(--muted); font-weight: 500; }
.stat-card-bar   { height: 4px; background: #eee; border-radius: 4px; overflow: hidden; margin-top: 4px; }
.stat-card-fill  { height: 100%; background: var(--red); border-radius: 4px; }

/* book card */
.book-card-wrap { margin-top: -230px; }
.book-card {
  background: #fff; border-radius: 20px;
  padding: 30px 28px 26px; box-shadow: 0 12px 48px rgba(0,0,0,0.14);margin-right: 30px;
}
.book-title    { font-size: 22px; font-weight: 800; margin-bottom: 4px; text-align: center; }
.book-subtitle { font-size: 12px; color: var(--muted); margin-bottom: 20px; text-align: center; }
.book-form     { display: flex; flex-direction: column; gap: 10px; }
.form-group    { display: flex; flex-direction: column; }
.form-row      { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-input {
  width: 100%; padding: 11px 14px; border: 1.5px solid #e0e0e0;
  border-radius: 8px; font-size: 13px; font-family: inherit;
  color: var(--text); outline: none; background: #fff; transition: border-color .2s;
}
.form-input:focus { border-color: var(--red); }
.form-input::placeholder { color: #aaa; }
.select-wrap { position: relative; }
.form-select { appearance: none; cursor: pointer; }
.select-wrap::after {
  content: '▾'; position: absolute; right: 12px; top: 50%;
  transform: translateY(-50%); font-size: 11px; color: #888; pointer-events: none;
}
.btn-book {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; background: var(--red); color: #fff; border: none;
  border-radius: 50px; padding: 12px 10px 12px 22px;
  font-size: 14px; font-weight: 700; cursor: pointer; margin-top: 6px; transition: opacity .2s;
}
.btn-book:hover { opacity: .88; }
.btn-circle {
  width: 34px; height: 34px; background: rgba(255,255,255,0.22);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 16px; flex-shrink: 0;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: 80px 0; background: #fff; }
.about-container {
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.about-images { position: relative; height: 440px; }
.about-img-main { position: absolute; top: 0; left: 0; width: 68%; height: 100%; }
.about-img-small { position: absolute; bottom: 0; right: 0; width: 48%; height: 67%; }
.about-badge {
  position: absolute; top: 12%; right: -5%; transform: translate(-50%,-50%);
  background: var(--red); color: #fff; border-radius: var(--radius);
  padding: 16px 20px; text-align: center; z-index: 3;
  box-shadow: 0 8px 28px rgba(232,48,42,0.35); min-width: 110px;
}
.badge-num { display: block; font-size: 30px; font-weight: 900; line-height: 1; }
.badge-txt { display: block; font-size: 11px; opacity: .85; margin-top: 4px; line-height: 1.4; }

.about-content .section-title { margin-bottom: 16px; }
.about-para { font-size: 13.5px; color: #555; margin-bottom: 20px; line-height: 1.75; }
.about-bullets { display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
.about-bullets li { font-size: 13.5px; color: #444; padding-left: 16px; position: relative; }
.about-bullets li::before { content: '•'; color: var(--red); position: absolute; left: 0; font-size: 16px; line-height: 1.3; }

.doctor-strip {
  display: flex; align-items: center; gap: 14px;
  background: var(--border); border-radius: var(--radius); padding: 14px 18px;
}
.doctor-avatar { width: 54px; height: 54px; flex-shrink: 0; }
.doctor-text { flex: 1; }
.doctor-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--dark); }
.doctor-text span   { font-size: 12px; color: var(--muted); line-height: 1.4; }
.doctor-arrow {
  width: 38px; height: 38px; border-radius: 50%; background: var(--dark);
  color: #fff; border: none; font-size: 22px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s;
}
.doctor-arrow:hover { background: var(--red); }

/* ============================================================
   ATTENTION
   ============================================================ */
.attention { max-width: 1200px; margin: 48px auto; padding: 0 28px; position: relative; }
.attention-overlay {
  position: absolute; inset: 0 28px; border-radius: 20px; z-index: 0;
  background: linear-gradient(rgba(22,32,48,0.80),rgba(22,32,48,0.80)),
    url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=1200&q=80') center/cover no-repeat;
}
.attention-inner { position: relative; z-index: 1; padding: 52px 56px; border-radius: 20px; }
.attention .section-title { margin-bottom: 12px; }
.attention-desc { font-size: 13.5px; color: rgba(255,255,255,0.65); max-width: 680px; margin-bottom: 36px; line-height: 1.7; }
.pain-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; }
.pain-grid li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,0.88); text-transform: capitalize;
  padding: 14px 32px 14px 0; border-bottom: 1px solid rgba(255,255,255,0.18);
}
.pain-grid li:nth-last-child(-n+3) { border-bottom: none; }
.dot { width: 8px; height: 8px; background: var(--red); border-radius: 50%; flex-shrink: 0; }
.pain-label { font-size: 14px; font-weight: 500; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: 80px 0; background: #fff; }
.services-container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.services-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; }
.services-header .section-title { margin-top: 4px; }
.btn-view-all {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: 1.5px solid var(--dark); color: var(--dark);
  font-size: 13px; font-weight: 600; padding: 9px 18px; border-radius: 50px;
  cursor: pointer; white-space: nowrap; transition: background .2s, color .2s;
}
.btn-view-all:hover { background: var(--dark); color: #fff; }
.btn-circle-sm {
  width: 24px; height: 24px; background: var(--dark); color: #fff;
  border-radius: 50%; display: inline-flex; align-items: center;
  justify-content: center; font-size: 13px; transition: background .2s;
}
.btn-view-all:hover .btn-circle-sm { background: #fff; color: var(--dark); }

.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.svc-card {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s;
}
.svc-card:hover { box-shadow: var(--shadow); }
.svc-img { height: 150px; width: 100%; }
.svc-body { padding: 14px 16px 16px; display: flex; flex-direction: column; flex: 1; }
.svc-title { font-size: 13.5px; font-weight: 700; margin-bottom: 7px; color: var(--dark); }
.svc-desc  { font-size: 12px; color: var(--muted); line-height: 1.6; flex: 1; margin-bottom: 12px; }
.svc-arrow {
  width: 30px; height: 30px; border-radius: 50%; background: var(--dark);
  color: #fff; border: none; font-size: 14px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.svc-arrow:hover { background: var(--red); }
.svc-cta {
  grid-column: span 2; background: var(--border); border-radius: var(--radius);
  padding: 32px 36px; display: flex; flex-direction: column; justify-content: center; gap: 12px;
}
.svc-cta-title { font-size: 22px; font-weight: 800; color: var(--dark); line-height: 1.2; }
.svc-cta-desc  { font-size: 13.5px; color: #555; line-height: 1.65; }
.btn-book-sm {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: #fff; border: none; border-radius: 50px;
  padding: 11px 14px 11px 22px; font-size: 13.5px; font-weight: 700;
  cursor: pointer; width: fit-content; transition: opacity .2s;
}
.btn-book-sm:hover { opacity: .88; }
.btn-book-sm .btn-circle { width: 28px; height: 28px; font-size: 14px; }

/* ============================================================
   THERAPY PROCESS — unique card grid with arrows
   ============================================================ */
.process { padding: 80px 0; background: var(--gray-bg); }
.process-container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

.process-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 48px;
}
.process-head .section-title { margin-top: 6px; }
.process-sub { font-size: 14px; color: var(--muted); max-width: 300px; text-align: right; line-height: 1.6; }

/* 4 cards + 3 arrows in a single row using 7-col grid */
.process-grid {
  display: grid;
  grid-template-columns: 1fr 32px 1fr 32px 1fr 32px 1fr;
  gap: 0 8px;
  align-items: stretch;
}

/* arrow connector */
.pg-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--red); opacity: 0.5; align-self: center;
}

/* base card */
.pg-card {
  background: #fff; border-radius: 20px;
  padding: 28px 24px 24px; border: 1.5px solid var(--border);
  display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.pg-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,0.12); }

/* top-left step number watermark */
.pg-num {
  position: absolute; top: 16px; right: 18px;
  font-size: 42px; font-weight: 900; line-height: 1;
  color: rgba(0,0,0,0.1); pointer-events: none; user-select: none;
}

/* icon circle */
.pg-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: #fff2f2; color: var(--red);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.pg-title { font-size: 15px; font-weight: 800; color: var(--dark); line-height: 1.3; }
.pg-desc  { font-size: 13px; color: var(--muted); line-height: 1.65; flex: 1; }

/* duration/type pill at bottom */
.pg-tag {
  display: inline-block; align-self: flex-start;
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  color: var(--red); background: #fff2f2;
  border: 1.5px solid #ffd0ce; border-radius: 50px; padding: 4px 12px;
  margin-top: auto;
}

/* red accent card */
.pg-card--red {
  background: var(--red); border-color: var(--red);
}
.pg-card--red .pg-num   { color: rgba(255,255,255,0.12); }
.pg-card--red .pg-icon  { background: rgba(255,255,255,0.18); color: #fff; }
.pg-card--red .pg-title { color: #fff; }
.pg-card--red .pg-desc  { color: rgba(255,255,255,0.78); }
.pg-card--red .pg-tag   { color: #fff; background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.3); }

/* dark card */
.pg-card--dark {
  background: var(--dark); border-color: var(--dark);
}
.pg-card--dark .pg-num   { color: rgba(255,255,255,0.06); }
.pg-card--dark .pg-icon  { background: rgba(255,255,255,0.1); color: var(--red); }
.pg-card--dark .pg-title { color: #fff; }
.pg-card--dark .pg-desc  { color: rgba(255,255,255,0.6); }
.pg-card--dark .pg-tag   { color: #fff; background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }

/* ============================================================
   FOOTER — tall, airy, dark with generous negative space
   ============================================================ */
.footer {
  background: #080d12;
  color: #ccc;
  position: relative;
  overflow: hidden;
}

/* subtle dot grid texture */
.footer::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* ---- italic quote band ---- */
.footer-quote-band {
  position: relative; z-index: 1;
  padding: 56px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-quote-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
}
.footer-quote-line {
  flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, rgba(232,48,42,0.5), transparent);
}
.footer-quote-text {
  font-size: clamp(15px, 2vw, 19px);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

/* ---- CTA strip ---- */
.footer-cta-band {
  position: relative; z-index: 1;
  background: var(--red);
  padding: 52px 28px;
}
.footer-cta-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.footer-cta-text h2 {
  font-size: 28px; font-weight: 900; color: #fff; line-height: 1.2; margin-bottom: 8px;
}
.footer-cta-text p { font-size: 14px; color: rgba(255,255,255,0.75); }
.footer-cta-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff; color: var(--red);
  font-size: 14px; font-weight: 800;
  padding: 15px 16px 15px 28px; border-radius: 50px;
  white-space: nowrap; flex-shrink: 0;
  transition: transform .2s, box-shadow .2s;
}
.footer-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,0.3); }
.footer-cta-btn .btn-circle { background: var(--red); color: #fff; width: 36px; height: 36px; font-size: 16px; }

/* ---- main body ---- */
.footer-body {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  padding: 80px 28px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.5fr;
  gap: 56px;
  padding-bottom: 72px;
  align-items: start;
}

/* brand col */
.footer-logo { margin-bottom: 24px; }
.footer-logo .logo-svg { width: 120px; height: auto; }

.footer-tagline {
  font-size: 13.5px; color: rgba(255,255,255,0.38);
  line-height: 1.85; margin-bottom: 36px; max-width: 300px;
}

.footer-contact-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,0.5);
  transition: color .2s; line-height: 1.55;
}
.footer-contact-item:hover { color: rgba(255,255,255,0.9); }
.fc-icon {
  width: 30px; height: 30px; border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); flex-shrink: 0; margin-top: 1px;
}

/* social icons — brand colors */
.footer-socials-row { display: flex; gap: 10px; }
.fs-btn {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: transform .2s, filter .2s;
}
.fs-btn:hover { transform: translateY(-3px); filter: brightness(1.15); }
.fs-fb { background: #1877F2; }
.fs-ig { background: linear-gradient(135deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.fs-yt { background: #FF0000; }
.fs-wa { background: #25D366; }

/* nav cols */
.footer-col-title {
  font-size: 10.5px; font-weight: 800; color: #fff;
  text-transform: uppercase; letter-spacing: 2.5px;
  margin-bottom: 28px; position: relative; padding-bottom: 14px;
}
.footer-col-title::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 24px; height: 2px; background: var(--red); border-radius: 2px;
}

.footer-nav-list { display: flex; flex-direction: column; gap: 14px; }
.footer-nav-list li a {
  font-size: 13px; color: rgba(255,255,255,0.45);
  display: flex; align-items: center; gap: 0;
  transition: color .2s, gap .2s;
}
.footer-nav-list li a::before {
  content: '›'; color: var(--red); font-size: 16px;
  width: 0; overflow: hidden; transition: width .2s;
}
.footer-nav-list li a:hover { color: #fff; gap: 6px; }
.footer-nav-list li a:hover::before { width: 12px; }

/* hours */
.footer-hours { display: flex; flex-direction: column; gap: 0; margin-bottom: 0; }
.footer-hours li {
  display: flex; justify-content: space-between;
  font-size: 13px; color: rgba(255,255,255,0.45);
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-hours li:first-child { border-top: 1px solid rgba(255,255,255,0.05); }
.footer-hours li span:first-child { color: rgba(255,255,255,0.7); font-weight: 500; }
.closed { color: var(--red) !important; font-weight: 600; }

/* newsletter block */
.footer-nl-block { margin-top: 40px; }
.footer-nl-text { font-size: 12.5px; color: rgba(255,255,255,0.38); margin-bottom: 14px; line-height: 1.65; }
.footer-nl-form {
  display: flex; border-radius: 10px; overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.1); transition: border-color .2s;
}
.footer-nl-form:focus-within { border-color: var(--red); }
.footer-nl-input {
  flex: 1; background: rgba(255,255,255,0.05); border: none;
  padding: 13px 14px; font-size: 13px; color: #fff; font-family: inherit; outline: none;
}
.footer-nl-input::placeholder { color: rgba(255,255,255,0.25); }
.footer-nl-btn {
  background: var(--red); border: none; padding: 0 18px;
  color: #fff; cursor: pointer; display: flex; align-items: center; transition: opacity .2s;
}
.footer-nl-btn:hover { opacity: .85; }

/* ---- bottom bar — links on top, copyright below, clear of WhatsApp ---- */
.footer-bottom-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 0 52px;   /* 52px bottom so WA button never overlaps */
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.footer-bottom-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-bottom-links a {
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  transition: color .2s;
  position: relative;
}
.footer-bottom-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .2s;
}
.footer-bottom-links a:hover { color: #fff; }
.footer-bottom-links a:hover::after { transform: scaleX(1); }
.footer-bottom-bar > p {
  font-size: 12px;
  color: rgba(255,255,255,0.22);
}

/* ---- responsive ---- */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .footer-quote-band { padding: 40px 20px; }
  .footer-quote-text { white-space: normal; font-size: 14px; }
  .footer-cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-cta-text h2 { font-size: 22px; }
  .footer-body { padding: 56px 20px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-tagline { max-width: 100%; }
  .footer-bottom-bar { padding-bottom: 40px; }
}
@media (max-width: 480px) {
  .footer-cta-band { padding: 40px 20px; }
  .footer-bottom-links { gap: 16px; }
}

/* ---- WhatsApp button — left side so it never overlaps bottom-right links ---- */
.wa-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 1500;
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  border-radius: 50px;
  padding: 10px 18px 10px 10px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  text-decoration: none;
  font-size: 13.5px; font-weight: 700;
  transition: transform .2s, box-shadow .2s;
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
  animation: none;
}
.wa-btn svg { width: 38px; height: 38px; flex-shrink: 0; }
.wa-label { white-space: nowrap; }

@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 6px 36px rgba(37,211,102,0.75); }
}

@media (max-width: 768px) {
  .wa-btn { bottom: 20px; right: 16px; padding: 8px 14px 8px 8px; font-size: 12.5px; }
  .wa-btn svg { width: 32px; height: 32px; }
}
@media (max-width: 480px) {
  .wa-label { display: none; }
  .wa-btn { padding: 10px; border-radius: 50%; right: 14px; bottom: 16px; }
  .wa-btn svg { width: 36px; height: 36px; }
}

/* ============================================================
   RESPONSIVE — full coverage for all sections
   ============================================================ */

/* ---- Tablet 1024px ---- */
@media (max-width: 1024px) {
  /* hero */
  .hero-box { grid-template-columns: 1fr; }
  .hero-right-space { display: none; }
  .hero-bottom { grid-template-columns: 1fr; margin-top: 0; gap: 24px; }
  .book-card-wrap { margin-top: 0; }
  .stats-cards { width: 100%; }
  .stat-card { flex: 1; }

  /* about */
  .about-container { grid-template-columns: 1fr; gap: 40px; }
  .about-images { height: 320px; }

  /* services */
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .svc-cta { grid-column: span 2; }

  /* process */
  .process-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 20px;
  }
  .pg-arrow { display: none; }

  /* footer */
  .footer-container { grid-template-columns: 1fr 1fr; }
}

/* ---- Tablet nav 1100px ---- */
@media (max-width: 1100px) {
  .hamburger { display: flex; }
  .nav-phone-btn { display: none; }
  .navbar { position: fixed; top: 0; left: 0; right: 0; height: 100px; z-index: 9999; }
  body { padding-top: 70px; }
  .nav-menu {
    display: none !important;
    position: fixed; top: 70px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    transform: none; /* reset absolute centering */
    background: #fff; border-top: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    padding: 8px 0 24px; z-index: 9998;
    max-height: calc(100vh - 70px); overflow-y: auto; overflow-x: hidden;
  }
  .nav-menu.open { display: flex !important; }
  .nav-menu li { width: 100%; }
  .nav-link { display: block !important; padding: 14px 24px; font-size: 15px; border-bottom: 1px solid #f5f5f5; font-weight: 500; white-space: normal; }
  .nav-menu li:last-child .nav-link { border-bottom: none; }

  /* Mobile dropdown — override desktop hover behaviour */
  .nav-dropdown .dropdown-menu {
    position: static !important; box-shadow: none !important; border: none !important;
    border-radius: 0 !important; opacity: 1 !important; visibility: visible !important;
    transform: none !important; background: #fafafa; padding: 0; min-width: unset;
    z-index: auto !important; max-height: 0; overflow: hidden;
    transition: max-height .3s ease !important;
  }
  .nav-dropdown.open .dropdown-menu { max-height: 600px !important; }
  .nav-dropdown .dropdown-menu li a {
    padding: 11px 24px 11px 40px; font-size: 14px;
    border-bottom: 1px solid #f0f0f0; color: #555; display: block;
  }
  .nav-dropdown .dropdown-menu li:last-child a { border-bottom: none; }
}

/* ---- Mobile 768px ---- */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-phone-btn { display: none; }
  .logo-svg { width: 80px; }
  .nav-container { gap: 12px; padding: 0 20px; }

  /* hero */
  .hero-wrapper { padding: 0 12px; margin-top: 12px; }
  .hero { padding: 32px 22px 80px; border-radius: 16px; }
  .hero-heading { font-size: 26px; }
  .hero-sub { font-size: 13.5px; }
  .hero-bottom { grid-template-columns: 1fr; margin-top: 0; gap: 20px; }
  .stats-cards { flex-wrap: wrap; gap: 10px; }
  .stat-card { flex: 1 1 calc(50% - 5px); min-width: 130px; }
  .book-card-wrap { margin-top: 0; }

  /* about */
  .about { padding: 56px 0; }
  .about-container { padding: 0 20px; gap: 32px; }
  .about-images { height: 260px; }

  /* attention */
  .attention { padding: 0 12px; margin: 32px auto; }
  .attention-overlay { inset: 0 12px; }
  .attention-inner { padding: 36px 24px; }
  .pain-grid { grid-template-columns: repeat(2,1fr); }
  .pain-grid li:nth-last-child(-n+3) { border-bottom: 1px solid rgba(255,255,255,0.18); }
  .pain-grid li:nth-last-child(-n+2) { border-bottom: none; }

  /* services */
  .services { padding: 56px 0; }
  .services-container { padding: 0 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-cta { grid-column: span 1; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* process */
  .process { padding: 56px 0; }
  .process-container { padding: 0 20px; }
  .process-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .process-sub { text-align: left; max-width: 100%; }
  .process-grid { grid-template-columns: 1fr; gap: 16px; }
  .pg-arrow { display: none; }

  /* footer */
  .footer-container { grid-template-columns: 1fr; padding: 0 20px 40px; }
}

/* ---- Small mobile 480px ---- */
@media (max-width: 480px) {
  .hero-heading { font-size: 22px; }
  .hero { padding: 28px 18px 70px; }
  .stats-cards { flex-direction: column; }
  .stat-card { flex: unset; width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-grid li:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.18); }
  .pain-grid li:last-child { border-bottom: none; }
  .about-images { height: 220px; }
  .badge-num { font-size: 22px; }
  .section-title { font-size: 24px; }
  .pg-card { padding: 22px 18px 20px; }
}

/* ============================================================
   BLOG
   ============================================================ */
.blog { padding: 80px 0; background: #fff; }
.blog-container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.blog-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 36px; gap: 16px;
}
.blog-header .section-title { margin-top: 4px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.blog-card {
  border-radius: 16px; overflow: hidden;
  border: 1.5px solid var(--border);
  background: #fff;
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,0.11); }

.blog-img {
  height: 200px; position: relative;
  display: flex; align-items: flex-start; padding: 14px;
}
.blog-cat {
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; background: var(--red); color: #fff;
  padding: 4px 10px; border-radius: 50px;
}

.blog-body { padding: 22px 20px 24px; display: flex; flex-direction: column; flex: 1; gap: 12px; }
.blog-meta { display: flex; gap: 12px; }
.blog-meta span { font-size: 11px; color: var(--muted); }
.blog-meta span:first-child::after { content: '·'; margin-left: 12px; }

.blog-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 17px; font-weight: 400; color: var(--dark);
  line-height: 1.45; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-excerpt {
  font-size: 13px; color: var(--muted); line-height: 1.65;
  display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-read-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: none; color: var(--red);
  font-size: 13px; font-weight: 700; cursor: pointer;
  padding: 0; margin-top: 4px; transition: gap .2s;
}
.blog-read-btn:hover { gap: 10px; }

/* ============================================================
   BLOG MODAL
   ============================================================ */
.blog-modal {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.blog-modal.open { opacity: 1; pointer-events: all; }

.blog-modal-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(4px);
}
.blog-modal-box {
  position: relative; z-index: 1;
  background: #fff; border-radius: 20px;
  width: 90%; max-width: 720px; max-height: 88vh;
  overflow-y: auto; box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  transform: translateY(20px); transition: transform .3s;
}
.blog-modal.open .blog-modal-box { transform: translateY(0); }

.blog-modal-close {
  position: sticky; top: 14px; float: right; margin: 14px 14px 0 0;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gray-bg); border: none; font-size: 14px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--dark); z-index: 2; transition: background .2s;
}
.blog-modal-close:hover { background: var(--red); color: #fff; }

.bm-img {
  height: 240px; display: flex; align-items: flex-start; padding: 20px;
  border-radius: 20px 20px 0 0;
}
.bm-body { padding: 28px 32px 36px; }
.bm-title { font-size: 22px; font-weight: 800; color: var(--dark); line-height: 1.3; margin: 12px 0 20px; }
.bm-body h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin: 20px 0 8px; }
.bm-body p  { font-size: 14px; color: #555; line-height: 1.75; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 80px 0; background: var(--gray-bg); }
.faq-container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.faq-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 48px;
}
.faq-header .section-title { margin-top: 6px; }
.faq-sub { font-size: 14px; color: var(--muted); max-width: 260px; text-align: right; line-height: 1.6; }

/* 2-column grid */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.faq-item {
  background: #fff; border-radius: 14px;
  border: 1.5px solid var(--border);
  overflow: hidden; transition: border-color .2s;
}
.faq-item.open { border-color: var(--red); }

.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 22px; background: none; border: none;
  cursor: pointer; text-align: left;
}
.faq-q span:first-child { font-size: 14.5px; font-weight: 600; color: var(--dark); line-height: 1.4; }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--gray-bg); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 400; line-height: 1;
  transition: background .2s, color .2s;
}
.faq-item.open .faq-icon { background: var(--red); color: #fff; }

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 22px;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 22px 20px; }
.faq-a p { font-size: 13.5px; color: #555; line-height: 1.75; }

/* ============================================================
   RESPONSIVE — Blog + FAQ + Modal
   ============================================================ */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid  { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .blog { padding: 56px 0; }
  .blog-container { padding: 0 20px; }
  .blog-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .blog-grid { grid-template-columns: 1fr; }

  .faq { padding: 56px 0; }
  .faq-container { padding: 0 20px; }
  .faq-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .faq-sub { text-align: left; max-width: 100%; }
  .faq-grid { grid-template-columns: 1fr; }

  .blog-modal-box { width: 95%; max-height: 92vh; border-radius: 16px; }
  .bm-body { padding: 20px 20px 28px; }
  .bm-title { font-size: 18px; }
  .bm-img { height: 180px; }
}

@media (max-width: 480px) {
  .blog-img { height: 150px; }
  .bm-img { height: 140px; }
  .faq-q span:first-child { font-size: 13.5px; }
}

/* ============================================================
   TESTIMONIALS — auto-scrolling marquee with summary bar
   ============================================================ */
.testi {
  padding: 80px 0 60px;
  background: #0f1923;
  position: relative;
  overflow: hidden;
}

/* giant watermark word */
.testi-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(80px, 18vw, 200px);
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: 12px;
}

.testi-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.testi-head {
  text-align: center;
  margin-bottom: 52px;
}
.testi-head .section-title { color: #fff; margin: 8px 0 12px; }
.testi-sub { font-size: 14px; color: rgba(255,255,255,0.5); }

/* ---- scrolling track ---- */
.testi-track-wrap {
  overflow: hidden;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  margin: 0 -28px;
  padding: 8px 0 16px;
}

.testi-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: testiScroll 38s linear infinite;
}
.testi-track:hover { animation-play-state: paused; }

@keyframes testiScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- individual card ---- */
.testi-card {
  background: #1c2a38;
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 26px 24px;
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .2s;
}
.testi-card:hover { border-color: var(--red); }

.testi-card--red {
  background: var(--red);
  border-color: var(--red);
}
.testi-card--dark {
  background: #111;
  border-color: #333;
}

.testi-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800;
  color: var(--dark);
  flex-shrink: 0;
}
.testi-card--red .testi-avatar { color: var(--red); }
.testi-card--dark .testi-avatar { color: #fff; }

.testi-top > div:nth-child(2) { flex: 1; }
.testi-top strong { display: block; font-size: 14px; font-weight: 700; color: #fff; }
.testi-top span   { font-size: 11.5px; color: rgba(255,255,255,0.5); }

.testi-stars { color: #f5a623; font-size: 13px; letter-spacing: 1px; }
.testi-stars--lg { font-size: 18px; }

.testi-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  font-style: italic;
}
.testi-card--red p { color: rgba(255,255,255,0.88); }

/* ---- summary bar ---- */
.testi-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding: 28px 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  flex-wrap: wrap;
}
.testi-score {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testi-big {
  font-size: 52px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.testi-score > div span { font-size: 12px; color: rgba(255,255,255,0.5); display: block; margin-top: 4px; }

.testi-platforms {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.testi-plat {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 12px 18px;
}
.testi-plat span:nth-child(2) { font-size: 12px; color: rgba(255,255,255,0.55); }
.testi-plat strong { font-size: 14px; color: #f5a623; }
.plat-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.plat-icon.g { background: #4285F4; }
.plat-icon.p { background: #2ECC71; }
.plat-icon.j { background: #FF6B35; }

/* ============================================================
   WHATSAPP — already defined above, responsive overrides below
   ============================================================ */

/* ============================================================
   RESPONSIVE — Testimonials + WhatsApp
   ============================================================ */
@media (max-width: 768px) {
  .testi { padding: 56px 0 48px; }
  .testi-container { padding: 0 20px; }
  .testi-track-wrap { margin: 0 -20px; }
  .testi-card { width: 280px; padding: 20px 18px; }
  .testi-summary { flex-direction: column; align-items: flex-start; padding: 22px 20px; gap: 20px; }
  .testi-big { font-size: 40px; }
  .testi-platforms { gap: 12px; }
}

@media (max-width: 480px) {
  .testi-card { width: 260px; }
}

