/* ============================================================
   IH Capital & Research — Website Stylesheet
   Brand: Red gradient (#FF1717 → #E74C4C), white, dark
   Fonts: Playfair Display (headings) + Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@300;400;500;600;700;800;900&display=swap');

/* === CSS Variables ========================================= */
:root {
  --red:           #E74C4C;
  --red-deep:      #C0392B;
  --red-bright:    #FF1717;
  --gradient-cta:  linear-gradient(135deg, #FF1717 0%, #E74C4C 51%, #C0392B 100%);
  --gradient-hero: linear-gradient(135deg, #0D1B2A 0%, #1a2d42 100%);
  --dark:          #0D1B2A;
  --dark-mid:      #1E293B;
  --dark-soft:     #2C3E50;
  --gray:          #64748B;
  --gray-light:    #F1F5F9;
  --gray-mid:      #E2E8F0;
  --white:         #FFFFFF;
  --text:          #1A1A1A;
  --text-muted:    #64748B;
  --text-light:    #94A3B8;
  --font-heading:  'Urbanist', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:     'Urbanist', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w:         1200px;
  --radius:        8px;
  --radius-lg:     16px;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.06);
  --shadow:        0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:     0 8px 48px rgba(0,0,0,0.12);
  --shadow-hover:  0 12px 40px rgba(231,76,76,0.18);
  --transition:    all 0.3s ease;
}

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

/* === Utility ============================================== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 64px 0; }
.text-center { text-align: center; }
.text-red { color: var(--red); }
.bg-dark { background: var(--dark); }
.bg-gray { background: var(--gray-light); }
.bg-white { background: var(--white); }

/* Footer logo — always white (dark background) */
.logo-footer {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* Section label above headings */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

/* Section headings */
.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.section-heading.light { color: var(--white); }
.section-subheading {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
}
.section-subheading.light { color: rgba(255,255,255,0.75); }

/* === Buttons ============================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-cta);
  background-size: 200% auto;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(231,76,76,0.3);
}
.btn-primary:hover {
  background-position: right center;
  box-shadow: 0 6px 28px rgba(231,76,76,0.45);
  transform: translateY(-1px);
}
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}
.btn-outline-dark {
  border: 2px solid var(--dark);
  color: var(--dark);
  background: transparent;
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}
.btn-outline-red {
  border: 2px solid var(--red);
  color: var(--red);
  background: transparent;
}
.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
}
.btn svg { width: 18px; height: 18px; }

/* === Header / Navigation ================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.site-header.scrolled {
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(255,255,255,0.06);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

/* Logo — image-based */
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 56px;
  width: auto;
  display: block;
  transition: opacity 0.3s ease;
}
/* Color logo: visible on white nav (default) */
.logo-color { display: block; }
.logo-bw    { display: none;  }
/* Swap to B&W logo when nav turns dark */
.site-header.scrolled .logo-color { display: none;  }
.site-header.scrolled .logo-bw    { display: block; }

/* Primary nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 6px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--text);
  background: var(--gray-light);
}
/* White text when header is dark (scrolled) */
.site-header.scrolled .nav-link {
  color: rgba(255,255,255,0.82);
}
.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}
.nav-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-mid);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
  overflow: hidden;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--gray-mid);
  transition: var(--transition);
}
.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover { background: var(--gray-light); }
.dropdown-icon {
  width: 36px;
  height: 36px;
  background: #FEF2F2;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}
.dropdown-icon svg { width: 18px; height: 18px; }
.dropdown-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.dropdown-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 16px;
}
.btn-book {
  background: var(--gradient-cta);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(231,76,76,0.25);
}
.btn-book:hover {
  box-shadow: 0 4px 20px rgba(231,76,76,0.45);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
/* White bars when nav is dark */
.site-header.scrolled .hamburger span { background: var(--white); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark);
  overflow-y: auto;
  z-index: 999;
  padding: 24px;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  display: block;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius);
  transition: var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav-link:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.mobile-nav-sub { padding-left: 24px; }
.mobile-nav-sub .mobile-nav-link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  border-bottom: none;
  padding: 10px 16px;
}
.mobile-nav .btn-primary { margin-top: 16px; width: 100%; justify-content: center; }

/* === Hero Section ========================================= */
.hero {
  background: var(--gradient-hero);
  padding: 160px 0 120px;
  position: relative;
  overflow: hidden;
}
/* Radial glow accents */
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(231,76,76,0.1) 0%, transparent 65%);
  pointer-events: none;
}
/* Bottom wave into next section */
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
/* Centered single-column layout */
.hero-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(231,76,76,0.15);
  border: 1px solid rgba(231,76,76,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FF8080;
  margin-bottom: 24px;
}
.hero-badge span { width: 6px; height: 6px; background: var(--red); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.hero-title .accent { color: var(--red); }
.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.hero-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 36px;
  text-align: center;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  justify-content: center;
}
.hero-stat {
  flex: 1;
  max-width: 220px;
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* === Name Reframe Strip =================================== */
.reframe {
  background: var(--white);
  padding: 80px 0;
  border-bottom: 1px solid var(--gray-mid);
}
.reframe-intro {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
  margin-bottom: 48px;
}
.reframe-grid {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  align-items: stretch;
}
.reframe-card {
  padding: 40px;
  border: 2px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.reframe-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-hover);
}
.reframe-word {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 8px;
}
.reframe-old {
  font-size: 0.8rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.reframe-new {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.65;
}
.reframe-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-muted);
}
.reframe-anchor {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 28px 40px;
  margin-top: 40px;
  border-left: 4px solid var(--red);
}
.reframe-anchor p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
}

/* === Who It's For ========================================= */
.for-section {
  background: var(--gray-light);
  padding: 100px 0;
}
.for-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.for-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
}
.for-card:hover {
  border-color: rgba(231,76,76,0.4);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.for-icon {
  width: 52px;
  height: 52px;
  background: rgba(231,76,76,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--red);
}
.for-icon svg { width: 26px; height: 26px; color: var(--red); }
.for-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.for-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.for-not-fit {
  margin-top: 48px;
  padding: 24px 32px;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 16px;
}
.for-not-fit p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.for-not-fit p strong { color: var(--text); }

/* === Value Proposition ==================================== */
.value-prop {
  background: var(--white);
  padding: 100px 0;
}
.vp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.vp-card {
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.vp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-cta);
  transform: scaleX(0);
  transition: var(--transition);
}
.vp-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.vp-card:hover::before { transform: scaleX(1); }
.vp-challenge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.vp-problem {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.35;
}
.vp-divider {
  width: 32px;
  height: 2px;
  background: var(--red);
  margin-bottom: 16px;
  opacity: 0.4;
}
.vp-solution {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* === Process Section ====================================== */
.process-section {
  background: var(--gray-light);
  padding: 100px 0;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(to right, var(--red), var(--red-deep));
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 64px;
  height: 64px;
  background: var(--gradient-cta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(231,76,76,0.35);
  position: relative;
}
.step-num::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(231,76,76,0.2);
}
.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* === Services Section ===================================== */
.services-section {
  background: var(--white);
  padding: 100px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
}
.service-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.service-icon {
  width: 56px;
  height: 56px;
  background: #FEF2F2;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--red);
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--red); color: var(--white); }
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  transition: var(--transition);
}
.service-link:hover { gap: 10px; }
.service-link svg { width: 16px; height: 16px; }
.services-cta {
  text-align: center;
  margin-top: 48px;
}

/* === Stats Section ======================================== */
.stats-section {
  background: var(--dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--gradient-cta);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span { color: var(--red); }
.stat-label {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

/* === Testimonials Section ================================= */
.testimonials-section {
  background: var(--gray-light);
  padding: 100px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.quote-mark {
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: var(--red);
  opacity: 0.15;
  position: absolute;
  top: 20px;
  left: 30px;
}
.testimonial-text {
  font-size: 0.975rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 24px;
  padding-top: 16px;
  position: relative;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-mid);
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}
.author-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.stars svg { width: 16px; height: 16px; color: #F59E0B; fill: #F59E0B; }

/* === About Teaser ========================================= */
.about-teaser {
  background: var(--white);
  padding: 100px 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image-frame img {
  width: 100%;
  object-fit: cover;
  object-position: top center;
  max-height: 500px;
}
.about-credential {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--gradient-cta);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.about-credential strong { display: block; font-size: 1.2rem; font-weight: 700; }
.about-credential span { font-size: 0.75rem; opacity: 0.85; }
.about-content .section-label { display: block; margin-bottom: 12px; }
.about-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.about-pillar {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: var(--gray-light);
  border-radius: var(--radius);
}
.pillar-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}
.about-pillar span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}

/* === Lead Magnet ========================================== */
.lead-magnet {
  background: var(--gradient-cta);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.lead-magnet::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
}
.lead-magnet::after {
  content: '';
  position: absolute;
  bottom: -60%; left: -5%;
  width: 500px;
  height: 500px;
  background: rgba(0,0,0,0.08);
  border-radius: 50%;
}
.lead-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.lead-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.25;
}
.lead-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
}
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lead-form input {
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}
.lead-form input::placeholder { color: rgba(255,255,255,0.55); }
.lead-form input:focus { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.18); }
.lead-form button {
  padding: 14px 28px;
  background: var(--white);
  color: var(--red-deep);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  letter-spacing: 0.01em;
}
.lead-form button:hover { background: rgba(255,255,255,0.92); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.lead-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* === Insights Section ===================================== */
.insights-section {
  background: var(--white);
  padding: 100px 0;
}
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.insight-card {
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.insight-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.insight-thumb {
  height: 200px;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gray);
  position: relative;
  overflow: hidden;
}
.insight-thumb-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
.insight-thumb-icon {
  width: 48px;
  height: 48px;
  background: rgba(231,76,76,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}
.insight-thumb-icon svg { width: 24px; height: 24px; }
.insight-pillar {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.insight-body { padding: 24px; }
.insight-tag {
  display: inline-block;
  background: #FEF2F2;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.insight-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.4;
}
.insight-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.insight-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-light);
}
.insights-cta { text-align: center; margin-top: 48px; }

/* === Final CTA Banner ===================================== */
.final-cta {
  background: var(--dark);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(231,76,76,0.12) 0%, transparent 60%);
}
.final-cta-inner { position: relative; z-index: 1; }
.final-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.final-cta p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.final-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === Footer =============================================== */
.site-footer {
  background: #07111C;
  padding: 80px 0 0;
  color: rgba(255,255,255,0.65);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.75;
  margin: 16px 0 24px;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.social-link:hover { background: var(--red); color: var(--white); }
.social-link svg { width: 16px; height: 16px; }
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--red); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
}
.contact-item svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.3); transition: var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* === Inner Page Banner ==================================== */
.page-banner {
  background: var(--gradient-hero);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-banner-content { max-width: 720px; }
.page-banner h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.page-banner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb svg { width: 12px; height: 12px; }

/* === Booking Page ========================================= */
.booking-page { padding: 60px 0 100px; }
.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: flex-start;
}
.booking-info h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.booking-info p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.booking-points { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.booking-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: var(--gray-light);
  border-radius: var(--radius);
}
.booking-point-icon {
  width: 32px; height: 32px;
  background: #FEF2F2;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.booking-point-icon svg { width: 16px; height: 16px; }
.booking-point p { font-size: 0.875rem; color: var(--text); line-height: 1.5; margin: 0; }
.booking-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-mid);
  min-height: 700px;
}
.booking-embed iframe { display: block; }

/* === Responsive =========================================== */
@media (max-width: 1024px) {
  .primary-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 120px 0 80px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .hero-stat { border-right: none; padding: 0 20px; }

  .reframe-grid { grid-template-columns: 1fr; }
  .reframe-divider { display: none; }

  .for-grid { grid-template-columns: 1fr 1fr; }
  .vp-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(2n) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:last-child, .stat-item:nth-last-child(2) { border-bottom: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-image-wrap { max-width: 480px; margin: 0 auto; }
  .lead-inner { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .booking-inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section-pad { padding: 64px 0; }
  .for-grid { grid-template-columns: 1fr; }
  .vp-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
  .about-credential { bottom: 0; right: 0; }
  .hero-stat { max-width: 100%; padding: 12px 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .hero-stat:last-child { border-bottom: none; }
}
