/* ============================================================
   RESTORE GROUP FL INC — Home Page Styles
   Design: White-first, clean, modern with dynamic animations
   ============================================================ */

/* ── HERO SLIDER ── */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  background: var(--black);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 0;
}
.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.slide.active .slide-img {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(25, 27, 29, 0.85) 0%,
    rgba(25, 27, 29, 0.55) 50%,
    rgba(203, 25, 32, 0.15) 100%
  );
  z-index: 1;
}

/* Red accent stripe */
.slide-stripe {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--red);
  z-index: 2;
}

/* Slide content */
.slide-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
}

.slide-inner {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(203, 25, 32, 0.15);
  border: 1px solid rgba(203, 25, 32, 0.4);
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ff6b70;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.3s, transform 0.7s ease 0.3s;
}
.slide.active .slide-badge {
  opacity: 1;
  transform: translateY(0);
}

.slide-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
  max-width: 700px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
}
.slide.active .slide-title {
  opacity: 1;
  transform: translateY(0);
}
.slide-title .accent { color: var(--red); }

.slide-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.7s, transform 0.8s ease 0.7s;
}
.slide.active .slide-desc {
  opacity: 1;
  transform: translateY(0);
}

.slide-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.9s, transform 0.8s ease 0.9s;
}
.slide.active .slide-actions {
  opacity: 1;
  transform: translateY(0);
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.slider-dot.active {
  background: var(--red);
  transform: scale(1.4);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}
.slider-arrow:hover {
  background: var(--red);
  border-color: var(--red);
}
.slider-arrow-prev { left: 2rem; }
.slider-arrow-next { right: 2rem; }

/* Progress bar */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--red);
  width: 0%;
  z-index: 10;
  transition: width 0.1s linear;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  opacity: 0.7;
}
.hero-scroll-hint span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollAnim 2s ease infinite;
}
@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--light-gray);
  padding: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  position: relative;
  z-index: 2;
}
.trust-bar-inner {
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.trust-bar-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 28px;
  border-right: 1px solid var(--light-gray);
  transition: background 0.3s ease;
}
.trust-bar-item:last-child { border-right: none; }
.trust-bar-item:hover { background: #fafafa; }
.trust-bar-item i {
  font-size: 1.6rem;
  color: var(--red);
  flex-shrink: 0;
}
.trust-bar-item-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.03em;
}
.trust-bar-item-text span {
  font-size: 0.78rem;
  color: var(--mid-gray);
}

/* ── ABOUT SECTION (White BG) ── */
.about-section {
  background: #fff;
  padding: 110px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
}
.img-stack {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.about-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.img-stack:hover .about-img-main { transform: scale(1.03); }

.about-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 4px solid var(--red);
}
.about-img-badge img { height: 40px; width: auto; }
.about-img-badge span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-img-secondary {
  width: 55%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  margin-top: 2rem;
  margin-left: auto;
  border: 4px solid #fff;
  transition: transform 0.6s ease;
}
.about-img-secondary:hover { transform: translateY(-6px); }

.about-text { padding-left: 1rem; }
.about-lead {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.about-features {
  margin: 1.5rem 0;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--black);
  padding: 8px 0;
  border-bottom: 1px solid var(--light-gray);
}
.about-features li:last-child { border-bottom: none; }
.about-features li i { color: var(--red); font-size: 1rem; }
.about-cta-group {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* ── STATS SECTION ── */
.stats-section {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 4rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--red);
  transition: width 0.5s ease;
}
.stat-item:hover::after { width: 60px; }
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.75rem;
  display: block;
}

/* ── SERVICES SECTION ── */
.services-section {
  background: #f8f9fa;
  padding: 110px 0;
}
.section-header {
  margin-bottom: 60px;
}
.section-header h2 {
  color: var(--black);
}
.section-desc {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  position: relative;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
}
.service-card-img-wrap {
  height: 220px;
  overflow: hidden;
}
.service-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img-wrap img { transform: scale(1.07); }

.service-card-body {
  padding: 1.75rem;
}
.card-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(203, 25, 32, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.3s ease;
}
.service-card:hover .card-icon-wrap {
  background: var(--red);
}
.card-icon-wrap i {
  font-size: 1.2rem;
  color: var(--red);
  transition: color 0.3s ease;
}
.service-card:hover .card-icon-wrap i { color: var(--white); }

.service-card-body h3 {
  font-size: 1.15rem;
  color: var(--black);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}
.service-card:hover .service-card-body h3 { color: var(--red); }
.service-card-body p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.7;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 1rem;
  transition: gap 0.3s ease;
}
.service-card:hover .service-card-link { gap: 10px; }

/* ── VIDEO SECTION ── */
.video-section {
  background: #fff;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.video-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(to right, var(--red), var(--red-light));
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.video-text { padding-right: 1rem; }
.video-text h2 { color: var(--black); margin-bottom: 1rem; }
.video-text p { color: var(--gray); line-height: 1.8; margin-bottom: 1.5rem; }

.video-highlights {
  list-style: none;
  margin-bottom: 2rem;
}
.video-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
  border-bottom: 1px solid var(--light-gray);
}
.video-highlights li:last-child { border-bottom: none; }
.video-highlights li i { color: var(--red); }

.video-embed-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
}

.video-placeholder {
  background: linear-gradient(135deg, #1a1c1f 0%, #2d3538 100%);
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 16px;
}
.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M40 40c0-11.046-8.954-20-20-20S0 28.954 0 40s8.954 20 20 20 20-8.954 20-20zm20 0c0-11.046-8.954-20-20-20S20 28.954 20 40s8.954 20 20 20 20-8.954 20-20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.play-btn-circle {
  width: 88px;
  height: 88px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 0 0 0 rgba(203, 25, 32, 0.4);
  animation: pulse-play 2.5s infinite;
}
.play-btn-circle:hover {
  background: var(--red-light);
  transform: scale(1.1);
}
.play-btn-circle i {
  font-size: 2rem;
  color: white;
  margin-left: 6px;
}
@keyframes pulse-play {
  0% { box-shadow: 0 0 0 0 rgba(203, 25, 32, 0.5); }
  70% { box-shadow: 0 0 0 28px rgba(203, 25, 32, 0); }
  100% { box-shadow: 0 0 0 0 rgba(203, 25, 32, 0); }
}

.video-placeholder-text {
  text-align: center;
}
.video-placeholder-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.video-placeholder-text span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* When YouTube is embedded */
.video-iframe-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 16px;
  overflow: hidden;
}
.video-iframe-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ══════════════════════════════════════════════════════
   CORPORATE VIDEO SECTION — AFTER HERO (PROMINENT)
   ══════════════════════════════════════════════════════ */

.video-section--hero {
  background: #0a0c0e;
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Remove the old white-bg override for this variant */
.video-section--hero.video-section {
  background: #0a0c0e;
}

/* Subtle diagonal texture */
.video-section--hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.012) 40px,
      rgba(255,255,255,0.012) 41px
    );
  pointer-events: none;
}

/* Red top stripe */
.vs-top-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--red) 0%, #ff4d54 50%, var(--red) 100%);
  z-index: 2;
}

/* ── Header ── */
.vs-header {
  margin-bottom: 52px;
  position: relative;
  z-index: 2;
}
.vs-header .section-label {
  color: var(--red);
}
.vs-header h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  margin-bottom: 1rem;
}
.vs-subtitle {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto;
}

/* ── Player wrap ── */
.vs-player-wrap {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto 52px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.07),
    0 40px 120px rgba(0,0,0,0.7),
    0 0 80px rgba(203,25,32,0.18);
}

/* ── Thumbnail area ── */
.vs-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  overflow: hidden;
  display: block;
  background: #000;
}
.vs-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(.25,.46,.45,.94), filter 0.4s ease;
  filter: brightness(0.82) saturate(1.1);
}
.vs-thumbnail:hover .vs-thumb-img {
  transform: scale(1.03);
  filter: brightness(0.72) saturate(1.15);
}

/* Dark cinematic overlay */
.vs-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.78) 0%,
    rgba(0,0,0,0.18) 45%,
    rgba(0,0,0,0.08) 100%
  );
  pointer-events: none;
}

/* Decorative corner marks */
.vs-corner {
  position: absolute;
  width: 28px; height: 28px;
  border-color: rgba(203,25,32,0.8);
  border-style: solid;
  pointer-events: none;
  z-index: 3;
}
.vs-corner--tl { top: 16px; left: 16px; border-width: 2px 0 0 2px; border-radius: 3px 0 0 0; }
.vs-corner--tr { top: 16px; right: 16px; border-width: 2px 2px 0 0; border-radius: 0 3px 0 0; }
.vs-corner--bl { bottom: 68px; left: 16px; border-width: 0 0 2px 2px; border-radius: 0 0 0 3px; }
.vs-corner--br { bottom: 68px; right: 16px; border-width: 0 2px 2px 0; border-radius: 0 0 3px 0; }

/* ── Custom play button ── */
.vs-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 20px));
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.vs-play-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  animation: vs-ring-pulse 2.4s ease-out infinite;
}
.vs-play-ring--outer {
  width: 140px; height: 140px;
  animation-delay: 0s;
}
.vs-play-ring--inner {
  width: 100px; height: 100px;
  animation-delay: 0.6s;
}
@keyframes vs-ring-pulse {
  0%   { transform: scale(0.85); opacity: 0.7; }
  70%  { transform: scale(1.15); opacity: 0;   }
  100% { transform: scale(0.85); opacity: 0;   }
}
.vs-play-icon {
  font-size: 2.4rem;
  color: #fff;
  background: var(--red);
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  box-shadow: 0 8px 32px rgba(203,25,32,0.6), 0 0 0 4px rgba(255,255,255,0.12);
  transition: transform 0.3s ease, background 0.3s ease;
  position: relative;
  z-index: 5;
}
.vs-thumbnail:hover .vs-play-icon {
  transform: scale(1.12);
  background: #e82028;
}

/* ── Bottom title bar ── */
.vs-title-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 22px;
  background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(20,20,20,0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 4;
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.vs-title-bar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.vs-logo-icon {
  width: 36px; height: 36px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
  padding: 2px;
}
.vs-title-text {
  display: block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
.vs-title-sub {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1px;
}
.vs-duration {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 6px;
}
.vs-duration i { color: var(--red); }

/* ── iframe (shown after click) ── */
.vs-iframe-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.vs-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── Stats row ── */
.vs-stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 760px;
  margin: 0 auto 48px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 32px;
  backdrop-filter: blur(10px);
}
.vs-stat {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 0 20px;
}
.vs-stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.vs-stat-num sup {
  font-size: 1.2rem;
  color: var(--red);
}
.vs-stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.vs-stat-div {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ── CTA row ── */
.vs-cta {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.vs-cta .btn-outline {
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
}
.vs-cta .btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .video-section--hero { padding: 60px 0 56px; }
  .vs-header { margin-bottom: 36px; }
  .vs-stats { padding: 20px 16px; gap: 0; }
  .vs-stat { min-width: 90px; padding: 0 10px; }
  .vs-stat-num { font-size: 1.8rem; }
  .vs-play-icon { width: 62px; height: 62px; font-size: 1.8rem; }
  .vs-corner--bl, .vs-corner--br { bottom: 76px; }
  .vs-cta { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .vs-stats { border-radius: 12px; }
  .vs-stat-div { display: none; }
  .vs-stat { flex-basis: 50%; }
  .vs-title-bar { padding: 10px 14px; }
}

/* ── WHY RESTORE (White BG) ── */
.why-section {
  background: #fff;
  padding: 110px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-text h2 { color: var(--black); }
.process-steps {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--light-gray);
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.process-step.visible {
  opacity: 1;
  transform: translateX(0);
}
.process-step:last-child { border-bottom: none; }
.step-number {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.step-content h4 { color: var(--black); margin-bottom: 0.3rem; }
.step-content p { font-size: 0.875rem; line-height: 1.7; }

/* Why Feature Cards */
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.why-feature-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.why-feature-card:hover {
  background: #fff;
  border-color: rgba(203, 25, 32, 0.2);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.why-feature-card > i {
  font-size: 1.8rem;
  color: var(--red);
}
.why-feature-card h4 {
  font-size: 1rem;
  color: var(--black);
  margin-bottom: 0.3rem;
}
.why-feature-card p {
  font-size: 0.83rem;
  line-height: 1.6;
}

/* ── FEATURED PROJECT ── */
.featured-project {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.fp-bg {
  position: absolute;
  inset: 0;
}
.fp-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(25,27,29,0.95) 30%,
    rgba(25,27,29,0.6) 70%,
    rgba(203,25,32,0.2) 100%
  );
}
.fp-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}
.fp-inner { max-width: 600px; }
.fp-inner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin: 1rem 0;
  line-height: 1.2;
}
.fp-inner p { color: rgba(255,255,255,0.75); margin-bottom: 2rem; }
.fp-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
.fp-stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.fp-stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: #f8f9fa;
  padding: 110px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  position: relative;
  border-top: 4px solid var(--red);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.quote-mark {
  font-size: 4rem;
  line-height: 0.8;
  color: var(--red);
  opacity: 0.15;
  font-family: Georgia, serif;
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}
.testimonial-stars i { color: #f4a100; font-size: 0.9rem; }
.testimonial-text {
  font-size: 0.925rem;
  color: var(--gray);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--light-gray);
  padding-top: 1rem;
}
.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; color: var(--black); font-size: 0.9rem; }
.author-title { font-size: 0.78rem; color: var(--mid-gray); }

/* ── CTA SECTION ── */
.cta-section {
  background: var(--red);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.06' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 1.25rem;
}
.cta-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-white {
  background: var(--white);
  color: var(--red);
  font-family: var(--font-head);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* ── BLOG PREVIEW ── */
.blog-section {
  background: #fff;
  padding: 110px 0;
}
.section-header-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 1rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.13);
}
.blog-thumb {
  height: 220px;
  overflow: hidden;
}
.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-body { padding: 1.5rem; }
.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--mid-gray);
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.blog-body h4 {
  color: var(--black);
  font-size: 1.05rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}
.blog-card:hover .blog-body h4 { color: var(--red); }
.blog-body p { font-size: 0.875rem; color: var(--gray); line-height: 1.7; }
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 1rem;
  transition: gap 0.3s ease;
}
.read-more:hover { gap: 10px; }

/* ── Floating CTA Bar ── */
.cta-bar {
  background: var(--black);
  padding: 18px 0;
  position: sticky;
  bottom: 0;
  z-index: 100;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.cta-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-bar p {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
}
.cta-bar p strong { color: var(--red); }

/* ── Animated Number Counter ── */
@keyframes countUp {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── FADE IN UP Animation ── */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-grid, .why-grid, .video-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-img-badge {
    right: 0;
  }
  .about-text { padding-left: 0; }
  .video-text { padding-right: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-inner { flex-wrap: wrap; }
  .trust-bar-item { min-width: 50%; }
  .why-features { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero-slider { min-height: 100svh; }
  .slide-title { font-size: clamp(2rem, 7vw, 3rem); }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .fp-stats { gap: 1.5rem; }
  .slider-arrow { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .trust-bar-item { min-width: 100%; }
  .section-header-flex { flex-direction: column; align-items: flex-start; }
  .hero-scroll-hint { display: none; }
}
@media (max-width: 480px) {
  .about-section,
  .services-section,
  .video-section,
  .why-section,
  .testimonials-section,
  .blog-section { padding: 70px 0; }
  .stats-grid { grid-template-columns: 1fr; }
}
