/* =========================================================
   Ideal Solutions Provider — Shared Stylesheet
   Mobile-first, dark + red brand
   ========================================================= */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text-main);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --red: #c5091a;
  --red-dark: #a60815;
  --red-darker: #870611;
  --red-soft: #fff0f1;

  /* Neutrals */
  --black: #0a0a0a;
  --gray-darker: #111111;
  --gray-dark: #1a1a1a;
  --gray-mid: #3d3d44;
  --gray-soft: #f7f7f8;
  --gray-border: #e2e2e6;

  /* Text */
  --text-main: #111111;
  --text-muted: #333333;
  --text-light: #6b6b75;
  --text-on-dark: rgba(255,255,255,0.78);
  --text-on-dark-muted: rgba(255,255,255,0.62);

  /* Spacing scale */
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 96px;

  /* Layout */
  --container: 1280px;
  --container-pad: 20px;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --header-h: 120px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.18);
}

@media (min-width: 600px) { :root { --container-pad: 28px; } }
@media (min-width: 900px) { :root { --container-pad: 32px; } }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--red);
  color: #fff;
  padding: 10px 16px;
  font-weight: 600;
  border-radius: 0 0 6px 0;
  z-index: 1000;
}
.skip-link:focus { left: 0; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* ---------- Typography ---------- */
.h1, .h2, .h3 {
  font-family: "Manrope", "Inter", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-weight: 700;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--space-3);
}
.eyebrow--on-dark { color: #ff5a6a; }

.section-title {
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text-main);
  margin-bottom: var(--space-3);
}
.section-title--on-dark { color: #fff; }
.section-title--centered { text-align: center; }

.section-lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 680px;
}
.section-lead--on-dark { color: var(--text-on-dark-muted); }
.section-head--centered { text-align: center; max-width: 720px; margin: 0 auto var(--space-6); }
.section-head--centered .section-lead { margin-left: auto; margin-right: auto; }

/* ---------- Sections ---------- */
.section { padding: var(--space-7) 0; }
.section-dark { background: var(--gray-dark); color: #fff; }
.section-darker { background: var(--gray-darker); color: #fff; }
.section-black { background: var(--black); color: #fff; }
.section-gray { background: var(--gray-soft); }
.section-white { background: #fff; }
@media (min-width: 900px) { .section { padding: var(--space-8) 0; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.08s, box-shadow 0.18s;
  white-space: nowrap;
  line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 16px 30px; font-size: 16px; border-radius: 8px; }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-block { display: flex; width: 100%; }

.btn-red { background: var(--red); color: #fff; box-shadow: 0 4px 14px rgba(197,9,26,0.32); }
.btn-red:hover { background: var(--red-dark); box-shadow: 0 6px 18px rgba(197,9,26,0.42); }
.btn-red:active { background: var(--red-darker); }

.btn-dark { background: var(--gray-dark); color: #fff; }
.btn-dark:hover { background: var(--gray-mid); }

.btn-outline-white {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}

.btn-outline-dark {
  background: transparent; color: var(--text-main);
  border-color: var(--text-main);
}
.btn-outline-dark:hover { background: var(--gray-soft); }

.btn-ghost { background: transparent; color: var(--red); }
.btn-ghost:hover { background: var(--red-soft); }

.btn i, .btn svg { width: 18px; height: 18px; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--gray-border);
  padding-top: 8px;
  padding-bottom: 8px;
  transition: padding 0.32s ease, box-shadow 0.32s ease;
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

@keyframes logo-spin-y {
  0%   { transform: perspective(400px) rotateY(0deg); }
  100% { transform: perspective(400px) rotateY(360deg); }
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 106px; width: 125px; object-fit: contain; animation: logo-spin-y 0.8s ease-out 0.3s 1 both; }

/* Desktop nav */
.site-nav {
  display: none;
  align-items: center;
  gap: var(--space-5);
  margin-left: auto;
}
@media (min-width: 1024px) { .site-nav { display: flex; } }

.nav-item { position: relative; }

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 17px;
  font-weight: 500;
  color: var(--text-main);
  padding: 10px 0;
  transition: color 0.15s;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-link:hover, .nav-link:focus-visible { color: var(--red); }
.nav-link.active { color: var(--red); font-weight: 600; }
.nav-link .caret {
  width: 12px; height: 12px;
  transition: transform 0.18s;
}
.nav-item.is-open > .nav-link .caret { transform: rotate(180deg); }

/* Dropdown panel */
.nav-submenu {
  position: absolute;
  top: 100%; left: -8px;
  min-width: 320px;
  white-space: nowrap;
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  display: none;
  z-index: 200;
}
.nav-item.is-open > .nav-submenu { display: block; }
.nav-submenu a {
  display: block;
  font-size: 16px;
  color: var(--text-main);
  padding: 10px 14px;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.nav-submenu a:hover, .nav-submenu a:focus-visible {
  background: var(--red-soft);
  color: var(--red);
}

/* Header right */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-left: auto;
}
@media (min-width: 1024px) { .header-actions { margin-left: var(--space-5); } }

.header-phone {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--gray-dark);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 11px 18px 11px 12px;
  font-size: 17px;
  font-weight: 500;
  transition: background 0.15s;
}
.header-phone:hover { background: var(--gray-mid); color: #fff; }
.header-phone-icon {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.header-phone-icon i, .header-phone-icon svg { width: 20px; height: 20px; }
@media (min-width: 768px) { .header-phone { display: inline-flex; } }

.btn-consult {
  background: var(--red); color: #fff;
  padding: 11px 18px;
  border-radius: var(--radius-sm);
  font-size: 17px; font-weight: 500;
  transition: background 0.15s;
  white-space: nowrap;
  display: none;
}
.btn-consult:hover { background: var(--red-dark); color: #fff; }
@media (min-width: 1024px) { .btn-consult { display: inline-flex; } }

/* Scroll-shrink */
.site-header.is-scrolled {
  padding-top: 5px;
  padding-bottom: 5px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}
.site-header.is-scrolled .logo img {
  height: 52px;
  width: auto;
}
.logo img {
  transition: height 0.32s ease, width 0.32s ease;
}

/* Hamburger (mobile only) */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 8px;
  color: var(--red);
  margin-left: var(--space-1);
}
.nav-toggle svg { width: 28px; height: 28px; stroke-width: 2.5; }
.nav-toggle:hover { background: var(--gray-soft); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--container-pad);
  border-bottom: 1px solid var(--gray-border);
  min-height: var(--header-h);
}
.mobile-nav-close {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px;
}
.mobile-nav-close:hover { background: var(--gray-soft); }
.mobile-nav-close svg { width: 24px; height: 24px; }
.mobile-nav-list {
  display: flex; flex-direction: column;
  padding: var(--space-3) var(--container-pad) var(--space-5);
  gap: 4px;
}
.mobile-nav-item {
  border-bottom: 1px solid var(--gray-border);
}
.mobile-nav-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 4px;
  font-size: 16px; font-weight: 600;
  color: var(--text-main);
  width: 100%;
  text-align: left;
}
.mobile-nav-link svg.caret { width: 16px; height: 16px; transition: transform 0.18s; }
.mobile-nav-item.is-open .mobile-nav-link svg.caret { transform: rotate(180deg); }
.mobile-nav-sub {
  display: none;
  padding: 0 0 12px 4px;
}
.mobile-nav-item.is-open .mobile-nav-sub { display: block; }
.mobile-nav-sub a {
  display: block;
  padding: 10px 0;
  font-size: 15px;
  color: var(--text-muted);
}
.mobile-nav-sub a:hover { color: var(--red); }
.mobile-nav-cta {
  display: flex; flex-direction: column; gap: 10px;
  padding: var(--space-4) var(--container-pad) var(--space-6);
  margin-top: auto;
  border-top: 1px solid var(--gray-border);
}

body.no-scroll { overflow: hidden; }

/* Backdrop */
.nav-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 150;
}
.nav-backdrop.is-visible { opacity: 1; pointer-events: auto; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: #fff;
  display: flex;
  align-items: center;
  min-height: 70vh;
  padding: var(--space-7) 0;
}
@media (min-width: 900px) { .hero { min-height: 78vh; padding: var(--space-8) 0; } }

.hero-carousel {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
img.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-slide.is-active {
  opacity: 1;
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.70) 60%, rgba(0,0,0,0.82) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  width: 100%;
}
.hero-title {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5.2vw, 3.8rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: var(--space-4);
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
}
.hero-title .accent { color: var(--red); }
.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  max-width: 760px;
  margin: 0 auto var(--space-5);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-cta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  animation: fadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.45s;
}

/* =========================================================
   STATS BAR
   ========================================================= */
.stats-bar {
  background: var(--gray-darker);
  color: #fff;
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding-top: var(--space-5);
  padding-bottom: var(--space-5);
}
@media (min-width: 768px) {
  .stats-bar .container { grid-template-columns: repeat(4, 1fr); }
}
.stat-item {
  text-align: center;
  padding: var(--space-5) var(--space-4);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.stat-item + .stat-item::before {
  content: "";
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.12);
}
@media (max-width: 767px) {
  /* Hide vertical separator for left-column items */
  .stat-item:nth-child(odd)::before { display: none; }
  /* Horizontal separator above bottom row — applied directly so item 4 keeps its vertical ::before */
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-top: 1px solid rgba(255,255,255,0.12);
  }
}
.stat-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(197, 9, 26, 0.18);
  border-radius: 10px;
  margin-bottom: 12px;
}
.stat-icon svg {
  width: 24px;
  height: 24px;
  color: var(--red);
  stroke: var(--red);
}
.stat-num {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
  letter-spacing: 0.02em;
  font-weight: 600;
}

/* =========================================================
   SERVICES GRID
   ========================================================= */
.services-section { padding: var(--space-7) 0; background: var(--gray-soft); }
@media (min-width: 900px) { .services-section { padding: var(--space-8) 0; } }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 600px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #fafafb 100%);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-5);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 24px 48px -12px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(197, 9, 26, 0.08),
    0 8px 24px -8px rgba(197, 9, 26, 0.18);
  border-color: transparent;
}

/* Staggered reveal — leverages .reveal/.is-visible from initReveal() */
.services-section .service-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.services-section.is-visible .service-card {
  opacity: 1;
  transform: translateY(0);
}
.services-section.is-visible .service-card:hover { transform: translateY(-8px); }
.services-section.is-visible .service-card:nth-child(1) { transition-delay: 0ms, 0ms, 0s, 0s; }
.services-section.is-visible .service-card:nth-child(2) { transition-delay: 80ms, 80ms, 0s, 0s; }
.services-section.is-visible .service-card:nth-child(3) { transition-delay: 160ms, 160ms, 0s, 0s; }
.services-section.is-visible .service-card:nth-child(4) { transition-delay: 240ms, 240ms, 0s, 0s; }
.services-section.is-visible .service-card:nth-child(5) { transition-delay: 320ms, 320ms, 0s, 0s; }
.services-section.is-visible .service-card:nth-child(6) { transition-delay: 400ms, 400ms, 0s, 0s; }
@media (prefers-reduced-motion: reduce) {
  .services-section .service-card { opacity: 1; transform: none; transition: none; }
}

.service-card-img {
  margin: calc(-1 * var(--space-6)) calc(-1 * var(--space-5)) var(--space-4);
  height: 230px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover .service-card-img img {
  transform: scale(1.04);
}

.service-card-title {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-2);
  color: var(--text-main);
  transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover .service-card-title { color: var(--red); }

.service-card-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: var(--space-4);
  flex: 1;
}
.service-card-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card-link i, .service-card-link svg {
  width: 14px; height: 14px;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card-link::after {
  content: "";
  position: absolute;
  inset: 0;
}
.service-card:hover .service-card-link { color: var(--red-dark); }
.service-card:hover .service-card-link i,
.service-card:hover .service-card-link svg { transform: translateX(6px); }

/* =========================================================
   HEADACHE SECTION (dark)
   ========================================================= */
.headache-section {
  background: var(--gray-dark);
  color: #fff;
  padding: var(--space-7) 0;
}
@media (min-width: 900px) { .headache-section { padding: var(--space-8) 0; } }
.headache-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.headache-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.headache-header .section-title { color: #fff; }
.headache-lead {
  font-size: 16px; line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-top: var(--space-3);
}
.headache-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  list-style: none;
  padding: 0; margin: 0;
}
@media (min-width: 640px) {
  .headache-grid { grid-template-columns: 1fr 1fr; }
}
.headache-feature {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid transparent;
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.headache-feature:hover {
  border-color: rgba(255,255,255,0.15);
  border-left-color: var(--red);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  transform: translateY(-2px);
}
.headache-feature-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: rgba(197,9,26,0.18);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
}
.headache-feature-icon i, .headache-feature-icon svg { width: 20px; height: 20px; }
.headache-feature-text strong {
  display: block;
  font-size: 16px; font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.3;
}
.headache-feature-text span {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}
.headache-outro {
  margin-top: var(--space-5);
  text-align: center;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
}
.headache-outro strong { color: var(--red); font-weight: 700; }

/* =========================================================
   COST SECTION (with big stat)
   ========================================================= */
.stat-bar {
  background: var(--red);
  padding: var(--space-5) 0;
}
.stat-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  text-align: center;
}
.stat-bar-num {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  color: #fff;
  white-space: nowrap;
  letter-spacing: -0.02em;
}
.stat-bar-divider {
  display: none;
}
@media (min-width: 640px) {
  .stat-bar-divider {
    display: block;
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.35);
    flex-shrink: 0;
  }
}
.stat-bar-label {
  font-size: 16px;
  color: rgba(255,255,255,0.92);
  max-width: 380px;
  line-height: 1.5;
}

/* =========================================================
   ABOUT / WHO WE ARE
   ========================================================= */
.about-section { background: var(--gray-soft); padding: var(--space-7) 0; }
@media (min-width: 900px) { .about-section { padding: var(--space-8) 0; } }
.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: stretch;
}
@media (min-width: 900px) {
  .about-inner { grid-template-columns: 1fr 1.05fr; gap: var(--space-7); align-items: stretch; }
}
.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 300px;
  order: -1;
}
@media (min-width: 900px) { .about-photo { order: 0; } }
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-copy p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}
.about-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 10px 18px 10px 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  margin-top: var(--space-3);
}
.about-pill-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-pill-icon i, .about-pill-icon svg { width: 18px; height: 18px; }

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why-section { padding: var(--space-7) 0; background: #fff; }
@media (min-width: 900px) { .why-section { padding: var(--space-8) 0; } }
.why-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: stretch;
}
@media (min-width: 900px) {
  .why-inner { grid-template-columns: 1fr 1.1fr; gap: var(--space-7); align-items: stretch; }
}
.why-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 300px;
}
.why-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.why-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.why-copy .section-lead { margin-bottom: var(--space-5); }
.why-bullets {
  display: flex; flex-direction: column;
  gap: var(--space-3);
}
.why-bullet {
  display: flex; align-items: flex-start; gap: 14px;
  padding: var(--space-3);
  background: var(--gray-soft);
  border-radius: var(--radius);
  border: 1px solid transparent;
  border-left: 3px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.why-bullet:hover {
  border-color: var(--gray-border);
  border-left-color: var(--red);
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.why-bullet-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: var(--red-soft);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
}
.why-bullet-icon i, .why-bullet-icon svg { width: 20px; height: 20px; }
.why-bullet strong {
  display: block;
  font-size: 16px; font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}
.why-bullet span {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* gray-bg variant: section is gray, cards are white */
.why-section--gray-bg { background: var(--gray-soft); }
.why-section--gray-bg .why-bullet {
  background: #fff;
  border-color: var(--gray-border);
}
.why-section--gray-bg .why-bullet:hover {
  background: #fff;
  border-color: var(--gray-border);
  border-left-color: var(--red);
}

/* =========================================================
   GETTING STARTED — 3 steps (dark)
   ========================================================= */
.started-section { background: var(--gray-darker); color: #fff; padding: var(--space-7) 0; }
@media (min-width: 900px) { .started-section { padding: var(--space-8) 0; } }
.started-head { text-align: center; margin-bottom: var(--space-6); }
.started-head .section-title { color: #fff; }
.started-head .section-lead { color: rgba(255,255,255,0.65); margin: 0 auto; }
.started-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
@media (min-width: 768px) { .started-steps { grid-template-columns: repeat(3, 1fr); } }
.started-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: var(--space-5) var(--space-4);
  text-align: center;
  position: relative;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.started-step:hover {
  border-color: rgba(255,255,255,0.15);
  border-top-color: var(--red);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  transform: translateY(-2px);
}
.started-step-num {
  width: 56px; height: 56px;
  margin: 0 auto var(--space-3);
  background: var(--red);
  color: #fff;
  border-radius: var(--radius);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 22px;
  box-shadow: 0 4px 14px rgba(197,9,26,0.4);
}
.started-step-title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
}
.started-step-body {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.started-cta { text-align: center; }

/* =========================================================
   TESTIMONIALS CAROUSEL
   ========================================================= */
.testimonials-section {
  position: relative;
  overflow: hidden;
  padding: var(--space-7) 0;
  background: #1f1f23;
  color: #fff;
}
@media (min-width: 900px) { .testimonials-section { padding: var(--space-8) 0; } }
.testimonials-bg {
  position: absolute; inset: 0;
  background-image: url('../testimonials-meeting.webp');
  background-size: cover;
  background-position: center;
  filter: blur(4px) brightness(0.22);
  transform: scale(1.05);
  z-index: 0;
}
.testimonials-section > .container { position: relative; z-index: 1; }
.testimonials-head { text-align: center; margin-bottom: var(--space-6); }
.testimonials-head .section-title { color: #fff; }

.testimonials-viewport {
  overflow: hidden;
  margin: 0 auto;
}
.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.testimonial-slide {
  flex: 0 0 100%;
  padding: 0 8px;
}
@media (min-width: 768px) { .testimonial-slide { flex: 0 0 50%; } }
@media (min-width: 1024px) { .testimonial-slide { flex: 0 0 33.333%; } }

.testimonial-card {
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius);
  padding: var(--space-5) var(--space-4);
  text-align: left;
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-3);
  color: var(--red);
}
.testimonial-stars svg { width: 18px; height: 18px; fill: currentColor; }
.testimonial-quote {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: var(--space-3);
  flex: 1;
}
.testimonial-quote::before { content: "\201C"; }
.testimonial-quote::after { content: "\201D"; }
.testimonial-attr {
  border-top: 1px solid var(--gray-border);
  padding-top: var(--space-2);
  font-size: 13.5px;
  color: var(--text-muted);
}
.testimonial-name { font-weight: 700; color: var(--text-main); }

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-5);
}
.testimonials-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, transform 0.08s;
  border: 1px solid rgba(255,255,255,0.18);
}
.testimonials-arrow:hover { background: var(--red); border-color: var(--red); }
.testimonials-arrow:active { transform: scale(0.95); }
.testimonials-arrow svg { width: 20px; height: 20px; }
.testimonials-dots { display: flex; gap: 8px; }
.testimonials-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: background 0.18s, transform 0.18s;
  cursor: pointer;
}
.testimonials-dot.is-active {
  background: var(--red);
  transform: scale(1.25);
}

/* =========================================================
   PARTNER LOGO MARQUEE
   ========================================================= */
.partners-section { padding: var(--space-7) 0; background: #fff; }
.partners-head { text-align: center; margin-bottom: var(--space-5); }
.partners-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.partners-track {
  display: flex;
  gap: var(--space-7);
  width: max-content;
  animation: partner-scroll 36s linear infinite;
  align-items: center;
}
.partners-marquee:hover .partners-track { animation-play-state: paused; }
.partner-logo {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #888;
  letter-spacing: -0.02em;
  white-space: nowrap;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
}
.partner-logo:hover { color: var(--red); }
.partner-logo small { font-size: 11px; font-weight: 500; color: #aaa; }
.partner-logo img {
  height: 80px;
  width: auto;
  display: block;
}
.partner-logo--text {
  height: 80px;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.01em;
  color: var(--text-muted);
}
.partner-logo--more {
  font-style: italic;
  font-weight: 600;
  color: var(--gray-dark);
}

@keyframes partner-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .partners-track { animation: none; }
}

/* =========================================================
   INDUSTRIES
   ========================================================= */
.industries-section { background: var(--gray-soft); padding: var(--space-7) 0; }
@media (min-width: 900px) { .industries-section { padding: var(--space-8) 0; } }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}
@media (min-width: 600px) { .industries-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .industries-grid { grid-template-columns: repeat(4, 1fr); } }
.industry {
  background: #fff;
  border: 1px solid var(--gray-border);
  border-top: 3px solid var(--gray-border);
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.industry:hover {
  border-color: var(--gray-border);
  border-top-color: var(--red);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.industry-icon {
  width: 48px; height: 48px;
  background: var(--red-soft);
  color: var(--red);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.industry-icon i, .industry-icon svg { width: 24px; height: 24px; }
.industry-name {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-main);
}

/* =========================================================
   FINAL CTA BAND
   ========================================================= */
.final-cta {
  background: linear-gradient(135deg, var(--gray-dark) 0%, #2a0a0e 100%);
  color: #fff;
  padding: var(--space-7) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 900px) { .final-cta { padding: var(--space-8) 0; } }
.final-cta::before {
  content: "";
  position: absolute;
  top: -50%; right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(197,9,26,0.3), transparent 60%);
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.final-cta .section-title { color: #fff; }
.final-cta .section-lead { color: rgba(255,255,255,0.78); margin: 0 auto var(--space-5); }
.final-cta-btns {
  display: flex; gap: var(--space-2);
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================================
   INNER PAGE HERO
   ========================================================= */
.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gray-dark) 0%, #1a0a0d 100%);
  color: #fff;
  padding: var(--space-7) 0;
  text-align: center;
}
@media (min-width: 900px) { .page-hero { padding: var(--space-8) 0; } }
.page-hero::before {
  content: "";
  position: absolute;
  top: -40%; right: -15%;
  width: 60%; height: 180%;
  background: radial-gradient(circle, rgba(197,9,26,0.28), transparent 60%);
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: -40%; left: -15%;
  width: 55%; height: 170%;
  background: radial-gradient(circle, rgba(197,9,26,0.18), transparent 60%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  z-index: 1;
}
.page-hero-title {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: clamp(1.875rem, 4.2vw, 3rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: var(--space-4);
}
.page-hero-sub {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  max-width: 760px;
  margin: 0 auto var(--space-5);
}
.page-hero-cta {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* =========================================================
   PROSE BLOCK
   ========================================================= */
.prose-section { padding: var(--space-7) 0; background: #fff; }
@media (min-width: 900px) { .prose-section { padding: var(--space-8) 0; } }
.prose {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.prose p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}
.prose p:last-child { margin-bottom: 0; }

/* =========================================================
   FEATURE CHECK LIST
   ========================================================= */
.features-section { padding: var(--space-7) 0; background: var(--gray-soft); }
@media (min-width: 900px) { .features-section { padding: var(--space-8) 0; } }
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
@media (min-width: 700px) { .features-grid { grid-template-columns: 1fr 1fr; } }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--gray-border);
  border-left: 3px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.feature-item:hover {
  border-color: var(--gray-border);
  border-left-color: var(--red);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.feature-item-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: var(--red-soft);
  color: var(--red);
  border-radius: var(--radius);
  display: inline-flex; align-items: center; justify-content: center;
}
.feature-item-icon i, .feature-item-icon svg { width: 20px; height: 20px; }
.feature-item-text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-main);
  font-weight: 500;
  align-self: center;
}
.features-outro {
  max-width: 820px;
  margin: var(--space-5) auto 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* =========================================================
   AUDIENCE GRID (reuses .why-bullet)
   ========================================================= */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  max-width: 980px;
  margin: 0 auto;
  flex-direction: initial;
}
@media (min-width: 700px) { .audience-grid { grid-template-columns: 1fr 1fr; } }
.audience-outro {
  max-width: 820px;
  margin: var(--space-5) auto 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* =========================================================
   STARTED STEPS — 4-column variant
   ========================================================= */
.started-steps.started-steps--four { grid-template-columns: 1fr; }
@media (min-width: 600px) { .started-steps.started-steps--four { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .started-steps.started-steps--four { grid-template-columns: repeat(4, 1fr); } }

.started-step-body--left { text-align: left; }

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.faq-section { padding: var(--space-7) 0; background: var(--gray-soft); }
@media (min-width: 900px) { .faq-section { padding: var(--space-8) 0; } }
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-item[open] {
  border-color: var(--gray-border);
  box-shadow: var(--shadow);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: var(--text-main);
  cursor: pointer;
  list-style: none;
  transition: color 0.18s;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { content: ""; }
.faq-question:hover { color: var(--red); }
.faq-icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
  background: var(--red-soft);
  color: var(--red);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.25s ease, background 0.18s, color 0.18s;
}
.faq-icon i, .faq-icon svg { width: 18px; height: 18px; }
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--red);
  color: #fff;
}
.faq-answer {
  padding: 0 20px 20px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}
.faq-answer p { margin: 0; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #0d0d0d;
  color: rgba(255,255,255,0.7);
  padding: var(--space-7) 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  padding-bottom: var(--space-6);
}
.footer-brand,
.footer-col { text-align: center; }
.footer-brand-desc { margin-left: auto; margin-right: auto; }
.footer-contact { align-items: center; }
.footer-socials { justify-content: center; }
@media (min-width: 600px) {
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-brand,
  .footer-col { text-align: left; }
  .footer-brand-desc { margin-left: 0; margin-right: 0; }
  .footer-contact { align-items: flex-start; }
  .footer-socials { justify-content: flex-start; }
}
@media (min-width: 1024px) {
  .footer-inner { grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: var(--space-6); }
  .footer-brand { padding-right: var(--space-6); }
}
.footer-brand-logo-wrap {
  display: inline-block;
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: var(--space-3);
}
.footer-brand-logo { height: 64px; width: auto; display: block; }
@media (min-width: 600px) { .footer-brand-logo { height: 48px; } }
.footer-brand-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 320px;
  margin-bottom: var(--space-3);
}
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.footer-contact-item a { color: inherit; transition: color 0.15s; }
.footer-contact-item a:hover { color: #fff; }
.footer-contact-item i, .footer-contact-item svg {
  width: 16px; height: 16px;
  color: var(--red);
  flex-shrink: 0;
}
/* social icons */
.footer-socials {
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-4);
}
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.75);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.footer-socials a:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.footer-socials i, .footer-socials svg {
  width: 17px; height: 17px;
  display: block;
  flex-shrink: 0;
}
.footer-col-title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--space-3);
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  padding: 5px 0;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--red); }
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.footer-socials a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-3) 0;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.footer-bottom-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  text-align: center;
  flex-direction: column;
}
@media (min-width: 600px) {
  .footer-bottom-inner {
    justify-content: space-between;
    text-align: left;
    flex-direction: row;
  }
}
.footer-bottom-links { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.footer-bottom-links a {
  color: rgba(255,255,255,0.7);
  transition: color 0.15s;
}
.footer-bottom-links a:hover { color: #fff; }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   UTILS
   ========================================================= */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* =========================================================
   ABOUT PAGE COMPONENTS
   ========================================================= */

/* Values section (dark, 3-col) */
.values-section {
  background: var(--gray-dark);
  color: #fff;
  padding: var(--space-7) 0;
}
@media (min-width: 900px) { .values-section { padding: var(--space-8) 0; } }
.values-head { text-align: center; margin-bottom: var(--space-6); }
.values-head .section-title { color: #fff; }
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1040px;
  margin: 0 auto;
}
@media (min-width: 700px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: var(--space-5) var(--space-4);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.value-card:hover {
  border-color: rgba(255,255,255,0.15);
  border-top-color: var(--red);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  transform: translateY(-2px);
}
.value-card-icon {
  width: 56px; height: 56px;
  background: rgba(197,9,26,0.18);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
}
.value-card-icon i, .value-card-icon svg { width: 24px; height: 24px; }
.value-card-title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}
.value-card-body {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* Founder section */
.founder-section { background: #fff; padding: var(--space-7) 0; }
@media (min-width: 900px) { .founder-section { padding: var(--space-8) 0; } }
.founder-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: start;
}
@media (min-width: 900px) {
  .founder-inner { grid-template-columns: 380px 1fr; gap: var(--space-7); }
}
.founder-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  order: -1;
}
@media (min-width: 900px) { .founder-photo { order: 0; } }
.founder-photo img { width: 100%; height: auto; display: block; }
.founder-copy { display: flex; flex-direction: column; justify-content: center; }
.founder-copy p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}
.founder-copy p:last-child { margin-bottom: 0; }

/* About stats (dark, 3-col big numbers) */
.about-stats-section {
  background: var(--gray-darker);
  border-top: 3px solid var(--red);
  padding: var(--space-7) 0;
  color: #fff;
}
@media (min-width: 900px) { .about-stats-section { padding: var(--space-8) 0; } }
.about-stats-head { text-align: center; margin-bottom: var(--space-6); }
.about-stats-head .section-title { color: #fff; }
.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 880px;
  margin: 0 auto;
}
@media (min-width: 600px) { .about-stats-grid { grid-template-columns: repeat(3, 1fr); } }
.about-stat {
  text-align: center;
  padding: var(--space-5) var(--space-4);
  position: relative;
}
@media (min-width: 600px) {
  .about-stat + .about-stat::before {
    content: "";
    position: absolute;
    left: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: rgba(255,255,255,0.12);
  }
}
.about-stat-num {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
}
.about-stat-label {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.page-hero--compact { padding: var(--space-6) 0; }
@media (min-width: 900px) { .page-hero--compact { padding: var(--space-7) 0; } }

.contact-section { background: var(--gray-soft); padding: var(--space-7) 0; }
@media (min-width: 900px) { .contact-section { padding: var(--space-8) 0; } }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: start;
}
@media (min-width: 960px) {
  .contact-inner { grid-template-columns: 320px 1fr; gap: var(--space-6); }
}

/* Info column */
.contact-info { display: flex; flex-direction: column; gap: var(--space-4); }

.contact-info-block {
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: var(--space-5);
}
.contact-info-block-title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: var(--space-3);
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-3);
}
.contact-detail:last-child { margin-bottom: 0; }
.contact-detail--top { align-items: flex-start; }
.contact-detail-icon {
  width: 34px; height: 34px;
  flex-shrink: 0;
  background: var(--red-soft);
  color: var(--red);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.contact-detail-icon i, .contact-detail-icon svg { width: 16px; height: 16px; }
.contact-detail a { color: inherit; transition: color 0.15s; }
.contact-detail a:hover { color: var(--red); }

.hours-list { display: flex; flex-direction: column; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--gray-border);
}
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 600; font-size: 14px; color: var(--text-main); }
.hours-time { font-size: 14px; color: var(--text-muted); }

/* Form card */
.contact-form-card {
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow);
}
@media (max-width: 559px) { .contact-form-card { padding: var(--space-5) var(--space-4); } }

.contact-form { display: flex; flex-direction: column; gap: var(--space-4); }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 560px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-field { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  color: var(--text-main);
  background: #fff;
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(197,9,26,0.1);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-light); }
.form-textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.form-label--required::after { content: " *"; color: var(--red); }
.form-input.is-error { border-color: var(--red); box-shadow: 0 0 0 3px rgba(197,9,26,0.1); }
.form-checkbox-grid.is-error .form-checkbox-label { border-color: #e8838c; }
.form-error-msg { font-size: 12px; color: var(--red); display: none; }
.form-error-msg.is-visible { display: block; }

/* Honeypot — hidden from users, still in DOM for bots to find */
.form-hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

/* Server error shown below submit button after a failed POST */
.form-server-error {
  margin-top: var(--space-3);
  padding: 12px 14px;
  border: 1px solid var(--red);
  background: var(--red-soft);
  color: var(--red);
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.5;
}

/* Submit button disabled state during in-flight request */
#contact-submit:disabled { opacity: 0.7; cursor: progress; }

.form-checkbox-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (min-width: 560px) { .form-checkbox-grid { grid-template-columns: 1fr 1fr; } }

.form-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 10px 14px;
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-sm);
  background: var(--gray-soft);
  transition: border-color 0.18s, background 0.18s, color 0.18s;
  user-select: none;
  line-height: 1.4;
}
.form-checkbox-label:hover {
  border-color: var(--red);
  background: var(--red-soft);
  color: var(--text-main);
}
.form-checkbox-label input[type="checkbox"] {
  width: 15px; height: 15px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--red);
}
.form-checkbox-label:has(input:checked) {
  border-color: var(--red);
  background: var(--red-soft);
  color: var(--text-main);
  font-weight: 600;
}

/* =========================================================
   VIDEOS PAGE
   ========================================================= */
.videos-section { background: var(--gray-soft); padding: var(--space-7) 0; }
@media (min-width: 900px) { .videos-section { padding: var(--space-8) 0; } }

.videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 700px) { .videos-grid { grid-template-columns: 1fr 1fr; } }

.video-card {
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.18);
}
.video-embed {
  aspect-ratio: 16 / 9;
  width: 100%;
}
.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* YouTube CTA band */
.youtube-cta-section {
  background: var(--gray-darker);
  padding: var(--space-7) 0;
  text-align: center;
}
@media (min-width: 900px) { .youtube-cta-section { padding: var(--space-8) 0; } }
.youtube-cta-inner {
  max-width: 680px;
  margin: 0 auto;
}
