/* ═══════════════════════════════════════
   HOME PAGE — Hero
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  background: var(--bg-dark);
}
.slides { position: absolute; inset: 0; }
.slide  { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease-in-out; }
.slide.active { opacity: 1; }
.slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  filter: brightness(0.48) grayscale(18%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.62) 100%);
  z-index: 2;
}
.hero-content {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  text-align: center;
  padding: 0 1.5rem 5.5rem;
}
.hero-name {
  font-size: clamp(2.8rem, 8vw, 7rem);
  font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: #fff;
  line-height: 1; margin-bottom: 0.6rem;
}
.hero-sub {
  font-size: clamp(0.75rem, 1.6vw, 1rem);
  font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.9);
  margin-bottom: 0.6rem;
}
.hero-tagline {
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  font-weight: 400; color: rgba(255,255,255,0.65);
  max-width: 560px; margin: 0 auto 2rem;
  line-height: 1.65;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-bottom: 1.5rem; }
.hero-trust {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.slide-dots {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 4;
  display: flex; gap: 8px;
}
.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.35); border: none;
  cursor: pointer; padding: 0; transition: background 0.2s;
}
.dot.active { background: #fff; }
.hero-scroll {
  position: absolute; bottom: 1.8rem; right: 2.5rem;
  z-index: 4; display: flex; flex-direction: column;
  align-items: center; gap: 6px; cursor: pointer;
}
.hero-scroll span {
  font-size: 0.52rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
}
.hero-scroll::after {
  content: ''; display: block;
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:1; transform:scaleY(1); }
  50%      { opacity:0.4; transform:scaleY(0.7); }
}

/* ═══════════════════════════════════════
   WHAT I DO CARDS
   ═══════════════════════════════════════ */
.what-ido-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.what-ido-card {
  background: var(--form-bg);
  padding: 2.5rem 2rem;
  border-top: 3px solid var(--accent);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
}
.what-ido-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.wic-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.what-ido-card h3 {
  font-size: 1.05rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}
.what-ido-card p {
  font-size: 0.9rem; color: var(--text-muted);
  line-height: 1.75; flex: 1;
}
.wic-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
  transition: letter-spacing 0.2s;
}
.wic-link:hover { letter-spacing: 0.24em; }
.wid-cta { text-align: center; margin-top: 3rem; }

/* ═══════════════════════════════════════
   VIDEO GRID
   ═══════════════════════════════════════ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.video-card {
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark-alt);
  aspect-ratio: 16/10;
}
.video-card img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  filter: brightness(0.55) grayscale(20%);
  transition: filter 0.4s, transform 0.5s;
}
.video-card:hover img { filter: brightness(0.7) grayscale(0%); transform: scale(1.04); }
.video-card.native-video video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 2; pointer-events: none;
}
.play-circle {
  width: 52px; height: 52px;
  border: 1.5px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.video-card:hover .play-circle { background: #fff; border-color: #fff; }
.play-circle svg { width: 16px; height: 16px; fill: #fff; margin-left: 3px; transition: fill 0.2s; }
.video-card:hover .play-circle svg { fill: var(--bg-dark); }
.video-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  z-index: 2; pointer-events: none;
}
.vc-label {
  font-size: 0.55rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 0.2rem;
}
.vc-title { font-size: 0.85rem; font-weight: 600; color: #fff; }
.listen-more { text-align: center; margin-top: 2.5rem; }
.listen-more a {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #fff; border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 2px; transition: border-color 0.2s;
}
.listen-more a:hover { border-color: #fff; }

/* ═══════════════════════════════════════
   TRUSTED BY
   ═══════════════════════════════════════ */
.trusted-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
.trusted-item {
  background: var(--form-bg);
  border: 1px solid var(--border-light);
  padding: 1.25rem 1rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.03em;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.trusted-item:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.trusted-more { text-align: center; }

/* ═══════════════════════════════════════
   WHY CHOOSE ME
   ═══════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.why-checklist { display: flex; flex-direction: column; gap: 0; }
.why-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.92rem; color: rgba(255,255,255,0.85);
}
.why-check {
  color: var(--accent); font-weight: 700;
  font-size: 1rem; flex-shrink: 0; width: 20px;
}

/* ═══════════════════════════════════════
   BY THE NUMBERS
   ═══════════════════════════════════════ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(255,255,255,0.08);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-block {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
  margin-bottom: 0.6rem;
}
.stat-plus {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  vertical-align: super;
  line-height: 0;
}
.stat-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.stat-sub {
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
}

/* ═══════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════ */
.cta-band {
  background: var(--bg-dark);
  padding: 6rem 2rem;
  text-align: center;
}
.cta-band-label {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem;
}
.cta-band-heading {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: 0.06em;
  text-transform: uppercase; color: #fff;
  line-height: 1.05;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .what-ido-grid { grid-template-columns: repeat(2, 1fr); }
  .trusted-grid  { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 980px) {
  .video-grid   { grid-template-columns: 1fr 1fr; }
  .why-grid     { grid-template-columns: 1fr; gap: 3rem; }
  .trusted-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hero-name   { font-size: clamp(2.2rem, 12vw, 3.5rem); letter-spacing: 0.06em; }
  .hero-ctas   { flex-direction: column; align-items: center; }
  .cta-btn     { width: 100%; max-width: 260px; text-align: center; }
  .hero-scroll { display: none; }
  .what-ido-grid    { grid-template-columns: 1fr; }
  .video-grid       { grid-template-columns: 1fr; }
  .trusted-grid     { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid        { grid-template-columns: 1fr 1fr; }
}
