/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + var(--topbar-height) + var(--space-xl)) var(--space-lg) var(--space-2xl);
  background: var(--dark-teal);
  overflow: hidden;
}

/* Animated gradient mesh — more dramatic */
.hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(26,79,118,0.6) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 80% 30%, rgba(84,182,191,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 60% 80%, rgba(246,156,82,0.06) 0%, transparent 50%),
    radial-gradient(ellipse 30% 40% at 10% 90%, rgba(246,156,82,0.04) 0%, transparent 50%);
  animation: meshShift 14s ease-in-out infinite alternate;
}
@keyframes meshShift {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.02) translate(-0.3%, 0.5%); }
  100% { opacity: 0.8; transform: scale(1.05) translate(-1%, 1%); }
}

/* Dot grid pattern */
.hero__grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 30%, transparent 70%);
}

.hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__content { flex: 1.3; }

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(246,156,82,0.08);
  border: 1px solid rgba(246,156,82,0.2);
  color: var(--orange);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: var(--space-lg);
  letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(246,156,82,0.15); }
  50% { box-shadow: 0 0 0 8px rgba(246,156,82,0); }
}
.hero__badge i { font-size: 14px; }

.hero__title {
  font-size: clamp(52px, 7.5vw, 100px);
  color: var(--white);
  line-height: 0.92;
  margin-bottom: var(--space-lg);
  letter-spacing: 4px;
}
.hero__title span {
  color: var(--orange);
  display: block;
  text-shadow: 0 0 80px rgba(246,156,82,0.3);
  position: relative;
}

.hero__sub {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-xl);
  line-height: 1.8;
  max-width: 500px;
}

.hero__actions { display: flex; gap: var(--space-md); flex-wrap: wrap; margin-bottom: var(--space-xl); }

/* Social proof row */
.hero__proof {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__proof-avatars {
  display: flex;
}
.hero__proof-avatars span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--dark-teal);
  margin-left: -8px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  transition: transform 0.2s var(--ease);
}
.hero__proof-avatars span:first-child { margin-left: 0; }
.hero__proof-avatars span:nth-child(2) { background: linear-gradient(135deg, var(--orange), var(--peach)); }
.hero__proof-avatars span:nth-child(3) { background: linear-gradient(135deg, var(--blue), var(--teal)); }
.hero__proof-avatars span:nth-child(4) { background: linear-gradient(135deg, var(--peach), var(--orange)); }
.hero__proof-avatars span:nth-child(5) { background: linear-gradient(135deg, var(--teal-dark), var(--blue)); }
.hero__proof:hover .hero__proof-avatars span { transform: translateY(-2px); }
.hero__proof p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}
.hero__proof p strong { color: var(--orange); }

/* Hero image + floating badges */
.hero__visual {
  flex-shrink: 0;
  position: relative;
}
.hero__visual img {
  width: 420px;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.06);
  transition: transform 0.6s var(--ease-out);
}
.hero__visual:hover img { transform: scale(1.02); }

/* Depth border behind image */
.hero__visual::before {
  content: "";
  position: absolute;
  inset: 10px -10px -10px 10px;
  border: 2px solid rgba(246,156,82,0.15);
  border-radius: var(--radius-xl);
  z-index: -1;
  transition: all 0.4s var(--ease);
}
.hero__visual:hover::before { inset: 14px -14px -14px 14px; border-color: rgba(246,156,82,0.25); }

.hero__float {
  position: absolute;
  background: rgba(13,33,35,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  animation: floatBadge 4s ease-in-out infinite alternate;
  transition: transform 0.3s var(--ease);
}
.hero__float:hover { transform: translateY(-4px) scale(1.02); }
.hero__float--1 { bottom: 120px; left: -40px; animation-delay: 0s; }
.hero__float--2 { top: 40px; right: -30px; animation-delay: -2s; }
.hero__float--3 { bottom: 20px; right: -20px; animation-delay: -1s; }
@keyframes floatBadge {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}
.hero__float-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--orange), var(--peach));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(246,156,82,0.3);
}
.hero__float-num {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1;
}
.hero__float-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ========================================
   STATS BAR
   ======================================== */
.stats-bar {
  background: var(--white);
  padding: var(--space-xl) 0;
  position: relative;
  border-bottom: 1px solid var(--gray-200);
}
/* Subtle gradient overlay */
.stats-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(246,156,82,0.02) 0%, transparent 30%, transparent 70%, rgba(84,182,191,0.02) 100%);
  pointer-events: none;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  text-align: center;
}
.stats-bar__item {
  padding: var(--space-lg) 0;
  position: relative;
  transition: transform 0.3s var(--ease);
}
.stats-bar__item:hover { transform: scale(1.03); }
.stats-bar__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50%;
  background: linear-gradient(180deg, transparent, var(--gray-200), transparent);
}
.stats-bar__num {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px);
  color: var(--dark-teal);
  letter-spacing: 2px;
  line-height: 1;
}
.stats-bar__plus {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  color: var(--orange);
  letter-spacing: 1px;
}
.stats-bar__label {
  display: block;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
}

/* ========================================
   QUOTE FORM SECTION
   ======================================== */
.section-quote {
  background: var(--cream);
  padding: var(--space-3xl) 0;
}
.section-quote__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.section-quote__text h2 {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--dark-teal);
  margin-bottom: var(--space-lg);
  letter-spacing: 2px;
}
.section-quote__text p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: var(--space-md);
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.process {
  padding: var(--space-3xl) 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
/* Subtle decorative pattern */
.process::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(246,156,82,0.03) 0%, transparent 50%);
  pointer-events: none;
}
.process__title {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--dark-teal);
  margin-bottom: var(--space-2xl);
  letter-spacing: 3px;
}
.process__grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 1;
}
.process__step {
  flex: 1;
  max-width: 320px;
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  position: relative;
}
.process__num {
  font-family: var(--font-display);
  font-size: 80px;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: var(--space-sm);
  color: rgba(246,156,82,0.12);
  transition: color 0.3s var(--ease);
}
.process__step:hover .process__num { color: rgba(246,156,82,0.2); }
.process__icon {
  width: 76px;
  height: 76px;
  background: var(--dark-teal);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 28px;
  margin: 0 auto var(--space-lg);
  transition: all 0.4s var(--ease);
  box-shadow: 0 8px 30px rgba(13,33,35,0.15);
  position: relative;
}
/* Glowing ring on hover */
.process__icon::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 26px;
  border: 2px solid transparent;
  transition: border-color 0.4s var(--ease);
}
.process__step:hover .process__icon {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 16px 48px rgba(13,33,35,0.2), 0 0 0 1px rgba(246,156,82,0.1);
}
.process__step:hover .process__icon::after { border-color: rgba(246,156,82,0.2); }
.process__step h3 {
  font-size: 24px;
  color: var(--dark-teal);
  margin-bottom: var(--space-md);
  letter-spacing: 1.5px;
}
.process__step p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
}
.process__connector {
  display: flex;
  align-items: center;
  padding-top: 100px;
  color: var(--gray-300);
  font-size: 20px;
  position: relative;
}
/* Animated dashes for connector */
.process__connector::before {
  content: "";
  width: 40px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gray-300) 0, var(--gray-300) 6px, transparent 6px, transparent 12px);
  animation: connectorDash 1.5s linear infinite;
}
@keyframes connectorDash {
  from { background-position: 0 0; }
  to { background-position: 24px 0; }
}

/* ========================================
   SPLIT SECTIONS
   ======================================== */
.split { padding: var(--space-3xl) 0; position: relative; }
.split--white { background: var(--white); }
.split--cream { background: var(--cream); }
.split--light { background: var(--gray-100); }
.split--dark {
  background: var(--dark-teal);
  overflow: hidden;
}
/* Decorative dot pattern in dark splits */
.split--dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 50% 80% at 70% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 50% 80% at 70% 50%, black 0%, transparent 70%);
  pointer-events: none;
}
.split__angle-top {
  position: absolute;
  top: -2px;
  left: -5%;
  width: 110%;
  height: 50px;
  background: var(--cream);
  border-radius: 0 0 50% 50%;
  z-index: 2;
}
.split__angle-bottom {
  position: absolute;
  bottom: -2px;
  left: -5%;
  width: 110%;
  height: 50px;
  background: var(--cream);
  border-radius: 50% 50% 0 0;
  z-index: 2;
}
.split__inner { display: flex; align-items: center; gap: var(--space-2xl); position: relative; z-index: 3; }
.split__inner--reverse { flex-direction: row-reverse; }
.split__text { flex: 1; }
.split--dark .split__text h2 { color: var(--white); }
.split--dark .split__text p { color: rgba(255,255,255,0.65); }
.split--dark .section-label { color: var(--peach); }
.split__text h2 { font-size: clamp(32px, 4vw, 52px); color: var(--dark-teal); margin-bottom: var(--space-lg); letter-spacing: 2px; line-height: 1.05; }
.split__text p { font-size: 16px; color: var(--gray-600); line-height: 1.85; margin-bottom: var(--space-lg); }
.split__image { flex: 1; position: relative; }
.split__image img {
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  width: 100%;
  position: relative;
  z-index: 1;
  transition: transform 0.6s var(--ease-out);
}
.split__image:hover img { transform: scale(1.02); }

/* Decorative frame behind image */
.split__image::before {
  content: "";
  position: absolute;
  top: 16px; left: 16px; right: -16px; bottom: -16px;
  border: 2px solid var(--orange);
  border-radius: var(--radius-lg);
  opacity: 0.2;
  z-index: 0;
  transition: all 0.4s var(--ease);
}
.split__image:hover::before { top: 20px; left: 20px; right: -20px; bottom: -20px; opacity: 0.3; }

/* Orange corner accent */
.split__image::after {
  content: "";
  position: absolute;
  bottom: -8px; right: -8px;
  width: 60px; height: 60px;
  background: var(--orange);
  border-radius: var(--radius-sm);
  opacity: 0.15;
  z-index: 0;
  transition: all 0.4s var(--ease);
}
.split__image:hover::after { width: 72px; height: 72px; opacity: 0.2; }
.split--dark .split__image::before { opacity: 0.3; border-color: var(--teal); }
.split--dark .split__image::after { background: var(--teal); opacity: 0.1; }

/* ========================================
   FEATURES
   ======================================== */
.features {
  padding: var(--space-3xl) 0;
  background: var(--dark-teal);
  position: relative;
  overflow: hidden;
}
.features__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background:
    radial-gradient(circle at 30% 40%, rgba(246,156,82,0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(84,182,191,0.04) 0%, transparent 50%);
  pointer-events: none;
  animation: featureGlowPulse 8s ease-in-out infinite alternate;
}
@keyframes featureGlowPulse {
  0% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.1); }
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}
.features__card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
/* Gradient border glow on hover */
.features__card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--peach), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
/* Glass reflection */
.features__card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.02) 0%, transparent 50%);
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
  opacity: 0;
}
.features__card:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(246,156,82,0.05);
  border-color: rgba(246,156,82,0.12);
}
.features__card:hover::before { opacity: 1; }
.features__card:hover::after { opacity: 1; }
.features__icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--orange), var(--peach));
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 24px; color: var(--white);
  box-shadow: 0 8px 24px rgba(246,156,82,0.3);
  transition: all 0.4s var(--ease-bounce);
  position: relative;
}
/* Icon ring */
.features__icon::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 21px;
  border: 1px solid rgba(246,156,82,0.2);
  transition: all 0.3s var(--ease);
}
.features__card:hover .features__icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 36px rgba(246,156,82,0.4);
}
.features__card:hover .features__icon::after { inset: -6px; border-color: rgba(246,156,82,0.3); border-radius: 24px; }
.features__card h3 { font-family: var(--font-display); font-size: 22px; color: var(--white); margin-bottom: var(--space-md); letter-spacing: 1.5px; }
.features__card p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.75; }
.features__list { list-style: none; padding: 0; text-align: left; }
.features__list li {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  padding: 8px 0 8px 24px;
  position: relative;
  line-height: 1.5;
  transition: color 0.2s var(--ease);
}
.features__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 10px;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
  transition: width 0.3s var(--ease);
}
.features__card:hover .features__list li { color: rgba(255,255,255,0.65); }
.features__card:hover .features__list li::before { width: 14px; }

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--dark-teal) 0%, #0a2e32 40%, #0c3438 60%, var(--dark-teal) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 40%, rgba(246,156,82,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 70% 60%, rgba(26,79,118,0.3) 0%, transparent 50%);
  animation: ctaGlowPulse 6s ease-in-out infinite alternate;
}
@keyframes ctaGlowPulse {
  0% { opacity: 1; }
  100% { opacity: 0.7; }
}
.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
  pointer-events: none;
}
.cta-banner__inner { position: relative; z-index: 1; }
.cta-banner__title {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--white);
  margin-bottom: var(--space-lg);
  letter-spacing: 3px;
}
.cta-banner__title span,
.cta-banner__title strong { color: var(--orange); }
.cta-banner__text {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  max-width: 640px;
  margin: 0 auto var(--space-xl);
  line-height: 1.75;
}
.cta-banner__actions { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; }
.cta-banner .btn--outline { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.8); }
.cta-banner .btn--outline:hover { border-color: var(--orange); color: var(--orange); background: rgba(246,156,82,0.08); }

/* ========================================
   MISSION / ABOUT BLOCKS
   ======================================== */
.mission-block {
  padding: var(--space-3xl) 0;
  background: var(--dark-teal);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mission-block::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 30%, rgba(26,79,118,0.5) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 70%, rgba(84,182,191,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 30% 30% at 50% 50%, rgba(246,156,82,0.04) 0%, transparent 50%);
}
/* Decorative border ring */
.mission-block::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: 50%;
  pointer-events: none;
  animation: ringPulse 8s ease-in-out infinite;
}
@keyframes ringPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.5; }
}
.mission-block__inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.mission-block h2 { font-size: clamp(36px, 5vw, 56px); color: var(--white); margin-bottom: var(--space-lg); letter-spacing: 3px; }
.mission-block p { font-size: 18px; color: rgba(255,255,255,0.65); line-height: 1.85; margin-bottom: var(--space-lg); }

.about-block {
  padding: var(--space-3xl) 0;
  background: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-block::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(246,156,82,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.about-block::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(84,182,191,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.about-block__inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.about-block h2 { font-size: clamp(36px, 5vw, 56px); color: var(--dark-teal); margin-bottom: var(--space-lg); letter-spacing: 3px; }
.about-block p { font-size: 18px; color: var(--gray-600); line-height: 1.85; }

/* About stats row */
.about-block__stats {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  margin: var(--space-xl) 0 var(--space-lg);
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.about-block__stat {
  text-align: center;
  transition: transform 0.3s var(--ease);
}
.about-block__stat:hover { transform: scale(1.05); }
.about-block__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--orange);
  letter-spacing: 2px;
  line-height: 1;
}
.about-block__stat-label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 8px;
  display: block;
}

/* Mission pillars */
.mission-block__pillars {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  margin: var(--space-lg) 0;
}
.mission-block__pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  transition: transform 0.3s var(--ease);
}
.mission-block__pillar:hover { transform: translateY(-4px); }
.mission-block__pillar i {
  font-size: 28px;
  color: var(--orange);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(246,156,82,0.08);
  border-radius: 50%;
  border: 1px solid rgba(246,156,82,0.15);
  transition: all 0.3s var(--ease);
}
.mission-block__pillar:hover i {
  background: rgba(246,156,82,0.15);
  border-color: rgba(246,156,82,0.3);
  box-shadow: 0 0 24px rgba(246,156,82,0.15);
}
.mission-block__pillar span {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================================
   SERVICE CARDS
   ======================================== */
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s var(--ease);
  border: 1px solid var(--gray-200);
  position: relative;
}
/* Gradient top accent */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--peach), var(--teal));
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  z-index: 2;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: rgba(246,156,82,0.15); }
.service-card:hover::before { opacity: 1; }
.service-card__image { height: 220px; overflow: hidden; position: relative; }
.service-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.service-card:hover .service-card__image img { transform: scale(1.08); }
/* Overlay gradient on image */
.service-card__image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
  pointer-events: none;
}
.service-card__body { padding: var(--space-lg); }
.service-card__body h3 { font-size: 26px; color: var(--dark-teal); margin-bottom: var(--space-md); transition: color 0.3s var(--ease); }
.service-card:hover .service-card__body h3 { color: var(--orange); }
.service-card__body p { font-size: 15px; color: var(--gray-600); line-height: 1.75; }

.video-embed { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); margin: var(--space-xl) 0; border: 1px solid var(--gray-200); }
.video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
  .hero__inner { flex-direction: column; text-align: center; }
  .hero__sub { margin: 0 auto var(--space-xl); }
  .hero__actions { justify-content: center; }
  .hero__proof { justify-content: center; }
  .hero__visual img { width: 320px; height: 380px; }
  .hero__visual::before { display: none; }
  .hero__float--1 { left: -10px; bottom: 100px; }
  .hero__float--2 { right: -10px; top: 20px; }
  .hero__float--3 { display: none; }

  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__item:nth-child(2)::after { display: none; }

  .section-quote__layout { grid-template-columns: 1fr; gap: var(--space-xl); }

  .process__grid { flex-direction: column; align-items: center; }
  .process__connector { display: none; }

  .split__inner, .split__inner--reverse { flex-direction: column; }
  .split__image::before, .split__image::after { display: none; }
  .split__angle-top, .split__angle-bottom { height: 30px; }

  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .service-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 600px) {
  .hero { min-height: auto; padding-top: calc(var(--header-height) + var(--topbar-height) + var(--space-lg)); }
  .hero__visual img { width: 260px; height: 300px; }
  .hero__float { display: none; }
  .hero__badge { font-size: 11px; padding: 8px 14px; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__item::after { display: none; }
  .features__grid { grid-template-columns: 1fr; }
}
