/**
 * 99 Business Club — Homepage 3D light theme (body.page-home)
 * Plus Jakarta Sans headings · scroll reveal · glass cards · gallery wall
 */

:root {
  --h3-white: #ffffff;
  --h3-bg: #f8fafc;
  --h3-bg-soft: #fff5f5;
  --h3-ink: #0f172a;
  --h3-muted: #64748b;
  --h3-red: #e11d48;
  --h3-red-bright: #ff1212;
  --h3-red-soft: #ffe4e6;
  --h3-border: rgba(225, 29, 72, 0.12);
  --h3-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  --h3-shadow-lg: 0 28px 64px rgba(225, 29, 72, 0.12);
  --h3-radius: 20px;
  --h3-font: "Plus Jakarta Sans", "Poppins", system-ui, sans-serif;
  --reveal-delay: 0ms;
}

body.page-home {
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  background: var(--h3-bg) !important;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 18, 18, 0.06), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 20%, rgba(225, 29, 72, 0.04), transparent 50%),
    linear-gradient(180deg, var(--h3-white) 0%, var(--h3-bg) 50%, var(--h3-bg-soft) 100%) !important;
  color: var(--h3-ink) !important;
}

body.page-home h1,
body.page-home h2,
body.page-home h3,
body.page-home h4,
body.page-home h5,
body.page-home h6 {
  font-family: var(--h3-font);
}

body.page-home .premium-navbar {
  background: rgba(255, 255, 255, 0.94) !important;
  backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid var(--h3-border) !important;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.05) !important;
}

/* ── Scroll reveal (3D coming & going) ── */
body.page-home [data-reveal] {
  opacity: 0;
  filter: blur(6px);
  transform: perspective(1400px) translate3d(0, 60px, -120px) rotateX(14deg);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity;
}
body.page-home [data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: perspective(1400px) translate3d(0, 0, 0) rotateX(0) rotateY(0) scale(1);
}

/* Direction / style variants — initial (hidden) states */
body.page-home [data-reveal="left"]  { transform: perspective(1400px) translate3d(-90px, 0, -120px) rotateY(-22deg); }
body.page-home [data-reveal="right"] { transform: perspective(1400px) translate3d(90px, 0, -120px) rotateY(22deg); }
body.page-home [data-reveal="down"]  { transform: perspective(1400px) translate3d(0, -60px, -120px) rotateX(-14deg); }
body.page-home [data-reveal="scale"] { transform: perspective(1400px) translate3d(0, 30px, -160px) scale(0.82); }
body.page-home [data-reveal="flip"]  { transform: perspective(1400px) translate3d(0, 40px, -120px) rotateX(45deg); transform-origin: center bottom; }
body.page-home [data-reveal="zoom"]  { transform: perspective(1400px) scale(1.18); filter: blur(10px); }

/* "Going" — when an element scrolls back out it eases away in 3D */
body.page-home [data-reveal].is-leaving {
  opacity: 0;
  filter: blur(5px);
  transform: perspective(1400px) translate3d(0, -40px, -90px) rotateX(-10deg) scale(0.96);
  transition:
    opacity 0.6s ease,
    transform 0.7s cubic-bezier(0.7, 0, 0.84, 0),
    filter 0.6s ease;
}

/* ── Shared typography ── */
.home3-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--h3-red-soft);
  color: #9f1239;
  border: 1px solid var(--h3-border);
  margin-bottom: 1rem;
}
.home3-kicker--soft {
  background: rgba(255, 255, 255, 0.85);
}
.home3-section-title {
  font-size: clamp(1.65rem, 3.5vw + 0.5rem, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.22;
  color: var(--h3-ink);
  margin-bottom: 0.75rem;
}
.home3-section-sub {
  font-size: clamp(0.95rem, 1.2vw + 0.7rem, 1.08rem);
  line-height: 1.65;
  color: var(--h3-muted);
  max-width: 42rem;
}
.home3-section-head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.home3-section-head .home3-section-sub {
  margin-left: auto;
  margin-right: auto;
}
.home3-gradient-text {
  background: linear-gradient(135deg, #fb7185, var(--h3-red-bright), #be123c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent;
}
.home3-btn-pill {
  border-radius: 999px !important;
  font-weight: 700;
  padding-left: 1.35rem !important;
  padding-right: 1.35rem !important;
}
.home3-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.home3-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.55rem;
  font-size: clamp(0.92rem, 1vw + 0.75rem, 1rem);
  line-height: 1.55;
  color: var(--h3-muted);
}
.home3-checklist li i {
  color: var(--h3-red-bright);
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.home3-checklist--compact li {
  font-size: 0.92rem;
}
.home3-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--h3-red-bright);
  text-decoration: none;
  transition: gap 0.2s ease;
}
.home3-link-arrow:hover {
  gap: 0.55rem;
  color: #be123c;
}

.home3-section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  position: relative;
}

/* ── HERO ── */
.home3-hero {
  position: relative;
  min-height: clamp(32rem, 100svh, 54rem);
  display: flex;
  align-items: center;
  padding: clamp(5rem, 10vw, 7rem) 0 clamp(3rem, 6vw, 4rem);
  overflow: hidden;
}
.home3-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.home3-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}
.home3-hero__orb--1 {
  width: min(480px, 60vw);
  height: min(480px, 60vw);
  top: -10%;
  right: -5%;
  background: radial-gradient(circle, rgba(255, 18, 18, 0.18), transparent 70%);
}
.home3-hero__orb--2 {
  width: min(360px, 50vw);
  height: min(360px, 50vw);
  bottom: 5%;
  left: -8%;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.12), transparent 70%);
}
.home3-hero__grid {
  position: absolute;
  inset: -20%;
  background-image:
    linear-gradient(rgba(225, 29, 72, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(225, 29, 72, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  transform: perspective(900px) rotateX(72deg) translateY(-8%);
  opacity: 0.35;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 40%, #000 20%, transparent 75%);
}
.home3-hero__inner {
  position: relative;
  z-index: 1;
}
.home3-hero__title {
  font-size: clamp(2.1rem, 5.5vw + 0.75rem, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.home3-hero__lead {
  font-size: clamp(1.05rem, 1.5vw + 0.75rem, 1.2rem);
  line-height: 1.65;
  color: var(--h3-muted);
  margin-bottom: 1.25rem;
  max-width: 34rem;
}
.home3-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.home3-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: 0.82rem;
  color: var(--h3-muted);
}
.home3-hero__trust i {
  margin-right: 0.25rem;
}

/* Hero 3D photo stage */
.home3-hero-stage {
  position: relative;
  min-height: clamp(280px, 42vw, 420px);
  perspective: 1200px;
}
.home3-hero-photo {
  border-radius: var(--h3-radius);
  overflow: hidden;
  box-shadow: var(--h3-shadow-lg);
  border: 3px solid rgba(255, 255, 255, 0.9);
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.home3-hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.home3-hero-photo--main {
  width: 88%;
  margin-left: auto;
  transform: rotateY(-6deg) rotateX(4deg);
}
.home3-hero-photo--float {
  position: absolute;
  bottom: -8%;
  left: 0;
  width: 48%;
  transform: rotateY(8deg) rotateX(-3deg);
  z-index: 2;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.15);
}
.home3-photo-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.92);
  color: var(--h3-ink);
  backdrop-filter: blur(8px);
}
.home3-stat-float {
  position: absolute;
  padding: 0.65rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--h3-border);
  box-shadow: var(--h3-shadow);
  text-align: center;
  z-index: 3;
  transform-style: preserve-3d;
}
.home3-stat-float strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--h3-red-bright);
  line-height: 1.1;
}
.home3-stat-float span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--h3-muted);
  font-weight: 600;
}
.home3-stat-float--1 {
  top: 8%;
  left: -2%;
}
.home3-stat-float--2 {
  bottom: 18%;
  right: -2%;
}

.home3-scroll-hint {
  position: absolute;
  bottom: max(1.5rem, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: var(--h3-muted);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: h3-float 3s ease-in-out infinite;
}
.home3-scroll-hint__mouse {
  width: 22px;
  height: 34px;
  border: 2px solid var(--h3-border);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.home3-scroll-hint__mouse span {
  width: 3px;
  height: 8px;
  background: var(--h3-red-bright);
  border-radius: 2px;
  animation: h3-wheel 2s ease-in-out infinite;
}
@keyframes h3-float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
@keyframes h3-wheel {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0.2; transform: translateY(10px); }
}

/* ── STATS STRIP ── */
.home3-stats-strip {
  padding: 0 0 clamp(2rem, 4vw, 3rem);
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}
.home3-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 991.98px) {
  .home3-stats-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
  .home3-stats-row { grid-template-columns: 1fr; }
}
.home3-stat-pill {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  background: var(--h3-white);
  border: 1px solid var(--h3-border);
  box-shadow: var(--h3-shadow);
  transform-style: preserve-3d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.home3-stat-pill:hover {
  transform: translateY(-4px) translateZ(12px);
  box-shadow: var(--h3-shadow-lg);
}
.home3-stat-pill__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--h3-red-soft), #fff);
  color: var(--h3-red-bright);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.home3-stat-pill strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--h3-red-bright);
  line-height: 1.1;
}
.home3-stat-pill span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--h3-muted);
  font-weight: 600;
}

/* ── PLATFORM TRAILER GRID ── */
.home3-trailer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 991.98px) {
  .home3-trailer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
  .home3-trailer-grid { grid-template-columns: 1fr; }
}
.home3-trailer-card {
  border-radius: var(--h3-radius);
  overflow: hidden;
  background: var(--h3-white);
  border: 1px solid var(--h3-border);
  box-shadow: var(--h3-shadow);
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
.home3-trailer-card:hover {
  box-shadow: var(--h3-shadow-lg);
}
.home3-trailer-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.home3-trailer-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.home3-trailer-card:hover .home3-trailer-card__media img {
  transform: scale(1.06);
}
.home3-trailer-card__body {
  padding: 1.15rem 1.25rem 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.home3-trailer-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--h3-red-soft);
  color: var(--h3-red-bright);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.home3-trailer-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: var(--h3-ink);
}
.home3-trailer-card p {
  font-size: 0.88rem;
  line-height: 1.58;
  color: var(--h3-muted);
  margin-bottom: 0.85rem;
  flex: 1;
}

/* ── PILLARS ── */
.home3-pillar {
  height: 100%;
  padding: 1.75rem 1.5rem;
  border-radius: var(--h3-radius);
  background: var(--h3-white);
  border: 1px solid var(--h3-border);
  box-shadow: var(--h3-shadow);
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.home3-pillar:hover {
  transform: translateY(-6px) translateZ(16px);
  box-shadow: var(--h3-shadow-lg);
}
.home3-pillar__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--h3-red-soft), #fff);
  color: var(--h3-red-bright);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.home3-pillar h3 {
  font-size: 1.12rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.home3-pillar p {
  font-size: 0.92rem;
  line-height: 1.62;
  color: var(--h3-muted);
  margin: 0;
}

/* ── SPLIT FEATURES ── */
.home3-split--alt {
  background: linear-gradient(180deg, transparent, rgba(255, 245, 245, 0.6), transparent);
}
.home3-photo-stack {
  position: relative;
  min-height: 320px;
  perspective: 1000px;
}
.home3-photo-stack__item {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--h3-shadow-lg);
  border: 3px solid #fff;
  transition: transform 0.4s ease;
}
.home3-photo-stack__item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.home3-photo-stack__item--1 {
  width: 70%;
  top: 0;
  left: 0;
  transform: rotateY(-8deg) rotateX(5deg);
  z-index: 1;
}
.home3-photo-stack__item--2 {
  width: 55%;
  top: 15%;
  right: 0;
  transform: rotateY(6deg) rotateX(-4deg);
  z-index: 2;
}
.home3-photo-stack__item--3 {
  width: 45%;
  bottom: 0;
  left: 20%;
  transform: rotateY(-4deg);
  z-index: 3;
}
.home3-photo-frame {
  border-radius: var(--h3-radius);
  overflow: hidden;
  box-shadow: var(--h3-shadow-lg);
  border: 4px solid #fff;
  transform: rotateY(-4deg) rotateX(3deg);
  transform-style: preserve-3d;
}
.home3-photo-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.home3-mini-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.home3-mini-metrics div strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--h3-red-bright);
}
.home3-mini-metrics div span {
  font-size: 0.78rem;
  color: var(--h3-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

/* ── GALLERY WALL ── */
.home3-gallery-wall {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem 0 1rem;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.home3-gallery-wall::-webkit-scrollbar { display: none; }
.home3-gallery-track {
  display: flex;
  gap: 1rem;
  padding: 0 max(1rem, calc((100vw - 1140px) / 2));
  width: max-content;
}
.home3-gallery-tile {
  flex-shrink: 0;
  width: clamp(200px, 22vw, 280px);
  height: clamp(240px, 28vw, 340px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--h3-shadow);
  border: 3px solid #fff;
  transform: rotateY(calc(var(--tile-i, 0) * 1deg - 4deg));
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.home3-gallery-tile:hover {
  transform: rotateY(0) translateY(-8px) scale(1.03);
  box-shadow: var(--h3-shadow-lg);
  z-index: 2;
}
.home3-gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.home3-gallery-tile:hover img {
  transform: scale(1.08);
}

/* ── GLASS CARDS / METRICS ── */
.home3-glass-card {
  height: 100%;
  padding: 1.5rem 1.65rem;
  border-radius: var(--h3-radius);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--h3-border);
  box-shadow: var(--h3-shadow);
  backdrop-filter: blur(12px);
  transform-style: preserve-3d;
}
.home3-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: var(--h3-ink);
}
.home3-chart {
  margin-bottom: 1rem;
}
.home3-chart__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
  color: var(--h3-muted);
}
.home3-chart__row strong {
  color: var(--h3-ink);
}
.home3-chart__bar {
  height: 8px;
  border-radius: 999px;
  background: #fecdd3;
  overflow: hidden;
}
.home3-chart__fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--h3-red-bright), #fb7185);
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.home3-metric-box {
  text-align: center;
  padding: 1rem;
  border-radius: 14px;
  background: var(--h3-bg-soft);
  border: 1px solid var(--h3-border);
}
.home3-metric-box__val {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--h3-red-bright);
  line-height: 1.1;
}
.home3-metric-box__lbl {
  font-size: 0.75rem;
  color: var(--h3-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
}

/* ── BENEFIT CARDS ── */
.home3-benefit-card {
  height: 100%;
  padding: 1.35rem;
  border-radius: 16px;
  background: var(--h3-white);
  border: 1px solid var(--h3-border);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
  transform-style: preserve-3d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.home3-benefit-card:hover {
  transform: translateY(-5px) translateZ(10px);
  box-shadow: var(--h3-shadow-lg);
}
.home3-benefit-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--h3-red-soft);
  color: var(--h3-red-bright);
  margin-bottom: 0.75rem;
}
.home3-benefit-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}
.home3-benefit-card p {
  font-size: 0.86rem;
  line-height: 1.58;
  color: var(--h3-muted);
  flex: 1;
  margin-bottom: 0.75rem;
}

/* ── FAQ ── */
.home3-faq-shell {
  padding: clamp(1.5rem, 3vw, 2.25rem) !important;
}
.home3-accordion .accordion-item {
  background: var(--h3-white);
  border: 1px solid var(--h3-border);
  border-radius: 12px !important;
  margin-bottom: 0.6rem;
  overflow: hidden;
}
.home3-accordion .accordion-button {
  background: var(--h3-bg-soft);
  font-weight: 700;
  font-family: var(--h3-font);
  box-shadow: none !important;
}
.home3-accordion .accordion-button:not(.collapsed) {
  background: var(--h3-red-soft);
  color: #9f1239;
}
.home3-accordion .accordion-body {
  color: var(--h3-muted);
  line-height: 1.62;
}

/* ── FINAL CTA ── */
.home3-cta-panel {
  padding: clamp(2rem, 4vw, 2.75rem);
  border-radius: 24px;
  background: linear-gradient(135deg, #ff1212 0%, #e11d48 50%, #be123c 100%);
  box-shadow: 0 24px 56px rgba(225, 29, 72, 0.28);
  color: #fff;
  transform-style: preserve-3d;
}
.home3-cta-panel__title {
  font-size: clamp(1.45rem, 3vw + 0.5rem, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}
.home3-cta-panel__sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(0.95rem, 1vw + 0.75rem, 1.05rem);
  line-height: 1.6;
}

/* ── AD CARDS ── */
.home3-ad-card {
  position: relative;
  border-radius: var(--h3-radius);
  overflow: hidden;
  background: var(--h3-white);
  border: 1px solid var(--h3-border);
  box-shadow: var(--h3-shadow);
  display: flex;
  flex-direction: column;
}
.home3-ad-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  background: var(--h3-red-bright);
  color: #fff;
}
.home3-ad-card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--h3-bg-soft);
}
.home3-ad-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home3-ad-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--h3-muted);
  font-size: 2rem;
}
.home3-ad-card__body {
  padding: 1rem 1.1rem 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.home3-ad-card__body h3 {
  font-size: 0.98rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}
.home3-ad-meta {
  font-size: 0.82rem;
  color: var(--h3-muted);
  margin-bottom: 0.35rem;
}
.home3-ad-desc {
  font-size: 0.84rem;
  color: var(--h3-muted);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 0.65rem;
}

/* ── Floating CTAs ── */
body.page-home .floating-cta {
  box-shadow: 0 0 24px rgba(255, 18, 18, 0.35), 0 10px 28px rgba(15, 23, 42, 0.12);
  animation: h3-pulse 2.8s ease-in-out infinite;
}
@keyframes h3-pulse {
  0%, 100% { box-shadow: 0 0 24px rgba(255, 18, 18, 0.35), 0 10px 28px rgba(15, 23, 42, 0.12); }
  50% { box-shadow: 0 0 36px rgba(255, 18, 18, 0.45), 0 10px 28px rgba(15, 23, 42, 0.12); }
}

/* ── Responsive hero ── */
@media (max-width: 991.98px) {
  .home3-hero-photo--main {
    width: 100%;
    transform: none;
  }
  .home3-hero-photo--float {
    display: none;
  }
  .home3-stat-float--1 { left: 4%; top: 4%; }
  .home3-stat-float--2 { right: 4%; }
  .home3-photo-stack { min-height: 260px; }
  .home3-photo-stack__item--2,
  .home3-photo-stack__item--3 { display: none; }
  .home3-photo-stack__item--1 {
    position: relative;
    width: 100%;
    transform: none;
  }
  .home3-photo-frame { transform: none; }
}
@media (max-width: 575.98px) {
  .home3-hero__actions { flex-direction: column; }
  .home3-hero__actions .btn { width: 100%; justify-content: center; }
  .home3-stat-float { display: none; }
  .home3-scroll-hint { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  body.page-home [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
  body.page-home .home3-scroll-hint,
  body.page-home .floating-cta {
    animation: none !important;
  }
  .home3-chart__fill { width: var(--fill-fallback, 80%) !important; }
}
