.cc-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-color: var(--primary);
  overflow: hidden;
}

/* ── Background ── */
.cc-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.cc-hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,194,168,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,194,168,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.cc-hero__bg-glow {
  position: absolute;
  top: -200px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,194,168,0.13) 0%, transparent 65%);
}
.cc-hero__bg-glow-2 {
  position: absolute;
  bottom: -150px; left: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,194,168,0.07) 0%, transparent 65%);
}
.cc-hero__bg-shape {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 48%;
  background: linear-gradient(135deg, rgba(0,194,168,0.06) 0%, transparent 60%);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
}

/* Floating dots */
.cc-hero__dots { position: absolute; inset: 0; pointer-events: none; }
.cc-hero__dot {
  position: absolute;
  border-radius: 50%;
  background: var(--secondary);
  opacity: 0.18;
  animation: ccDotFloat linear infinite;
}
.cc-hero__dot:nth-child(1) { width:6px;  height:6px;  top:18%; left:12%; animation-duration:9s;  animation-delay:0s; }
.cc-hero__dot:nth-child(2) { width:4px;  height:4px;  top:60%; left:8%;  animation-duration:12s; animation-delay:2s; }
.cc-hero__dot:nth-child(3) { width:8px;  height:8px;  top:35%; left:28%; animation-duration:14s; animation-delay:1s; }
.cc-hero__dot:nth-child(4) { width:5px;  height:5px;  top:75%; left:40%; animation-duration:11s; animation-delay:3s; }
.cc-hero__dot:nth-child(5) { width:3px;  height:3px;  top:22%; left:55%; animation-duration:8s;  animation-delay:.5s; }
@keyframes ccDotFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-18px); }
}

/* ── Layout ── */
.cc-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding: var(--space-xl) 0;
  width: 100%;
}

/* ── Left: Content ── */
.cc-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: var(--space-sm);
}
.cc-hero__eyebrow-line {
  display: block;
  width: 32px; height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}

.cc-hero__title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}
.cc-hero__title em {
  font-style: normal;
  color: var(--secondary);
  position: relative;
}
.cc-hero__title em::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--secondary), transparent);
  border-radius: 2px;
}

.cc-hero__desc {
  font-family: var(--font-secondary);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.8;
  color: rgba(255,255,255,0.68);
  max-width: 500px;
  margin-bottom: var(--space-md);
}

/* Channel pills */
.cc-hero__channels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--space-lg);
}
.cc-hero__channel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,194,168,0.1);
  border: 1px solid rgba(0,194,168,0.25);
  border-radius: 50px;
  padding: 6px 14px;
  font-family: var(--font-secondary);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--secondary);
  transition: background 0.2s, border-color 0.2s;
}
.cc-hero__channel:hover {
  background: rgba(0,194,168,0.18);
  border-color: rgba(0,194,168,0.5);
}
.cc-hero__channel svg { flex-shrink: 0; }

/* CTAs */
.cc-hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
  margin-bottom: var(--space-md);
}
.cc-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background .25s, transform .2s, box-shadow .25s, border-color .25s, color .25s;
}
.cc-hero__btn--primary {
  background: var(--secondary);
  color: var(--primary);
  border: 1.5px solid transparent;
  box-shadow: 0 4px 20px rgba(0,194,168,0.35);
}
.cc-hero__btn--primary:hover {
  background: #00d9bb;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,194,168,0.5);
}
.cc-hero__btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.cc-hero__btn--outline:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  background: rgba(0,194,168,0.06);
  transform: translateY(-2px);
}

/* Trust badges */
.cc-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cc-hero__trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(0,194,168,0.18);
  border-radius: 50px;
  padding: 5px 12px;
  font-family: var(--font-secondary);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.cc-hero__trust-badge svg { color: var(--secondary); flex-shrink: 0; }

/* ── Right: Media ── */
.cc-hero__visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.cc-hero__media-wrap {
  position: relative;
  width: 100%;
  max-width: 580px;
}

/* Floating pill */
.cc-hero__pill {
  position: absolute;
  top: -14px; left: 24px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  color: var(--primary);
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  white-space: nowrap;
}
.cc-hero__pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 3px rgba(0,194,168,0.25);
  animation: ccPulse 2s ease infinite;
}
@keyframes ccPulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(0,194,168,0.25); }
  50%      { box-shadow: 0 0 0 6px rgba(0,194,168,0.08); }
}

/* Image frame */
.cc-hero__img-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #0d2744;
  box-shadow: 0 32px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(0,194,168,0.12);
}

/* Thumbnail */
.cc-hero__thumbnail {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.5s ease, transform 0.6s ease;
}
.cc-hero__img-frame:hover .cc-hero__thumbnail { transform: scale(1.03); }

/* Overlay */
.cc-hero__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,31,58,0.45) 0%, rgba(11,31,58,0.15) 60%, transparent 100%);
  z-index: 1;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

/* ── Play button ── */
.cc-hero__play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: opacity 0.4s ease;
}

/* Pulsing rings */
.cc-hero__play-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(0,194,168,0.4);
  animation: ccRingPulse 2.4s ease-out infinite;
}
.cc-hero__play-ring--1 { width: 80px;  height: 80px;  animation-delay: 0s; }
.cc-hero__play-ring--2 { width: 108px; height: 108px; animation-delay: 0.6s; }
.cc-hero__play-ring--3 { width: 136px; height: 136px; animation-delay: 1.2s; border-color: rgba(0,194,168,0.2); }
@keyframes ccRingPulse {
  0%   { opacity: 1;   transform: scale(0.7); }
  80%  { opacity: 0;   transform: scale(1.1); }
  100% { opacity: 0;   transform: scale(1.1); }
}

/* Play icon circle */
.cc-hero__play-icon {
  position: relative;
  z-index: 2;
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: 0 8px 32px rgba(0,194,168,0.55);
  padding-left: 4px; /* optical centering for play triangle */
  transition: background 0.25s, box-shadow 0.25s, transform 0.2s;
}
.cc-hero__play-btn:hover .cc-hero__play-icon {
  background: #00d9bb;
  box-shadow: 0 12px 40px rgba(0,194,168,0.7);
  transform: scale(1.08);
}

/* Video layer (hidden by default) */
.cc-hero__video-layer {
  position: absolute;
  inset: 0;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.cc-hero__video-layer[aria-hidden="false"] {
  opacity: 1;
  pointer-events: all;
}
.cc-hero__video-layer iframe {
  width: 100%; height: 100%;
  border: 0;
  display: block;
}

/* Corner accents */
.cc-hero__corner {
  position: absolute;
  width: 56px; height: 56px;
  pointer-events: none;
  z-index: 3;
}
.cc-hero__corner--tl {
  top: -2px; left: -2px;
  border-top: 3px solid var(--secondary);
  border-left: 3px solid var(--secondary);
  border-radius: var(--radius-md) 0 0 0;
}
.cc-hero__corner--br {
  bottom: -2px; right: -2px;
  border-bottom: 3px solid var(--secondary);
  border-right: 3px solid var(--secondary);
  border-radius: 0 0 var(--radius-md) 0;
}

/* Floating badge */
.cc-hero__badge {
  position: absolute;
  bottom: -20px; left: -20px;
  z-index: 4;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.16);
  min-width: 200px;
}
.cc-hero__badge-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--primary), #1a3a5e);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  flex-shrink: 0;
}
.cc-hero__badge strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}
.cc-hero__badge span {
  font-family: var(--font-secondary);
  font-size: 0.7rem;
  color: var(--text-light);
  white-space: nowrap;
}

/* Scroll indicator */
.cc-hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.45;
  animation: ccScroll 2s ease-in-out infinite;
}
.cc-hero__scroll span {
  font-family: var(--font-secondary);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}
.cc-hero__scroll-line {
  width: 1.5px; height: 32px;
  background: linear-gradient(to bottom, var(--secondary), transparent);
  border-radius: 2px;
}
@keyframes ccScroll {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

@media (max-width: 1100px) {
  .cc-hero__inner { gap: var(--space-lg); }
}
@media (max-width: 900px) {
  .cc-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 80px 0 100px;
  }
  .cc-hero__desc       { margin-inline: auto; }
  .cc-hero__cta-group  { justify-content: center; }
  .cc-hero__channels   { justify-content: center; }
  .cc-hero__trust      { justify-content: center; }
  .cc-hero__visual     { justify-content: center; }
  .cc-hero__media-wrap { max-width: 520px; }
  .cc-hero__bg-shape   { display: none; }
}
@media (max-width: 640px) {
  .cc-hero { min-height: auto; }
  .cc-hero__title { font-size: 1.9rem; }
  .cc-hero__media-wrap { max-width: 100%; }
  .cc-hero__badge { left: 0; bottom: -16px; min-width: auto; }
  .cc-hero__play-ring--3 { display: none; }
}