/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  background: #0F082B;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ========== GRAIN TEXTURE OVERLAY ========== */
.grain {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ========== AMBIENT GLOWS ========== */
.ambient {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.ambient-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(76,187,207,0.12) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.ambient-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(226,22,118,0.1) 0%, transparent 70%);
  bottom: 30%; left: -150px;
}
.ambient-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(28,15,82,0.6) 0%, transparent 70%);
  top: 50%; right: 10%;
}

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  background: rgba(15, 8, 43, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.3s;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}
.nav-brand img { height: 42px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
}
.nav-links > li {
  position: relative;
}
.nav-links a,
.nav-drop-toggle {
  color: #A09AB6;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  transition: color 0.3s;
  letter-spacing: -0.01em;
  font-family: 'Manrope', sans-serif;
}
.nav-links a:hover,
.nav-drop-toggle:hover {
  color: #fff;
}
.nav-drop-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0;
}
.nav-drop-caret {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.7;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-dropdown.open .nav-drop-caret,
.nav-dropdown:hover .nav-drop-caret,
.nav-dropdown:focus-within .nav-drop-caret {
  transform: rotate(-135deg) translateY(-1px);
  opacity: 1;
}
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
}
.nav-drop-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 180px;
  list-style: none;
  padding: 0.45rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(15,8,43,0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 20;
}
.nav-dropdown.open .nav-drop-menu,
.nav-dropdown:hover .nav-drop-menu,
.nav-dropdown:focus-within .nav-drop-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-drop-menu a {
  display: block;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  font-size: 0.78rem;
  color: #B9B5C9;
}
.nav-drop-menu a:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
}
.nav-cta {
  background: #E21676;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background 0.3s, transform 0.2s !important;
}
.nav-cta:hover {
  background: #C80237 !important;
  transform: translateY(-1px);
}
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 2rem 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(28,15,82,0.8) 0%, rgba(15,8,43,0.95) 50%, #0F082B 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, #0F082B, transparent);
}
.hero-glow-teal {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76,187,207,0.15) 0%, transparent 60%);
  top: -100px; right: -200px;
  filter: blur(80px);
  animation: float-slow 12s ease-in-out infinite;
}
.hero-glow-magenta {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226,22,118,0.12) 0%, transparent 60%);
  bottom: -100px; left: -100px;
  filter: blur(80px);
  animation: float-slow 15s ease-in-out infinite reverse;
}
@keyframes float-slow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(226,22,118,0.12);
  border: 1px solid rgba(226,22,118,0.25);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #E21676;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: #E21676;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 0%, #C8EAF0 40%, #4CBBCF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.15rem;
  color: #A09AB6;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #E21676, #C80237);
  color: #fff;
  padding: 16px 36px;
  border-radius: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(226,22,118,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(226,22,118,0.4);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  padding: 16px 36px;
  border-radius: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}

/* ========== HERO VIDEO PREVIEW ========== */
.hero-preview {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
.hero-video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
}
.hero-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-preview-img {
  width: 100%;
  display: block;
}
.hero-preview-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1C0F52 0%, #0F082B 40%, #1C0F52 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-preview-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(76,187,207,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(226,22,118,0.06) 0%, transparent 60%);
}
.hero-preview-lines {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255,255,255,0.5) 3px, rgba(255,255,255,0.5) 4px);
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(226,22,118,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 60px rgba(226,22,118,0.4);
}
.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 80px rgba(226,22,118,0.5);
}
.play-btn::before {
  content: '';
  width: 0; height: 0;
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}
.play-btn::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(226,22,118,0.3);
  animation: play-ring 2s ease-out infinite;
}
@keyframes play-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
.hero-preview-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(15,8,43,0.9);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.hero-preview-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #E21676;
  animation: pulse-dot 2s ease-in-out infinite;
}
.hero-preview-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: #B9B5C9;
  flex: 1;
}
.hero-preview-duration {
  font-size: 0.75rem;
  color: #776F97;
  font-weight: 500;
}

/* ========== SECTION SHARED ========== */
section {
  position: relative;
  z-index: 1;
}
.section-pad {
  padding: 100px 2rem;
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-label {
  display: inline-block;
  font-size: clamp(1.45rem, 2.2vw, 1.7rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #4CBBCF;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: #A09AB6;
  line-height: 1.7;
  font-weight: 400;
}
.section-subtitle-tight {
  margin-top: 0.8rem;
}

/* ========== CONTENT TILES ========== */
.tiles-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tile {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s, border-color 0.4s;
  cursor: pointer;
}
.tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border-color: rgba(255,255,255,0.12);
}
.tile-thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.tile-thumb-bg {
  position: absolute;
  inset: 0;
}
.tile-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tile:nth-child(1) .tile-thumb-bg {
  background: linear-gradient(135deg, #1C0F52 0%, #3F4C96 50%, #4CBBCF 100%);
}
.tile:nth-child(2) .tile-thumb-bg {
  background: linear-gradient(135deg, #7C0C41 0%, #E21676 50%, #FCE8F1 100%);
}
.tile:nth-child(3) .tile-thumb-bg {
  background: linear-gradient(135deg, #352965 0%, #50467A 50%, #5CB9B3 100%);
}
.tile:nth-child(4) .tile-thumb-bg {
  background: linear-gradient(135deg, #0F082B 0%, #1C0F52 50%, #00C6D7 100%);
}
.tile:nth-child(5) .tile-thumb-bg {
  background: linear-gradient(135deg, #3F4C96 0%, #6570AB 50%, #C8EAF0 100%);
}
.tile:nth-child(6) .tile-thumb-bg {
  background: linear-gradient(135deg, #422166 0%, #E21676 50%, #4CBBCF 100%);
}
.tile-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,8,43,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.tile:hover .tile-thumb-overlay {
  opacity: 1;
}
.tile-play {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(226,22,118,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(226,22,118,0.4);
  transform: scale(0.8);
  transition: transform 0.3s;
}
.tile:hover .tile-play {
  transform: scale(1);
}
.tile-play::before {
  content: '';
  width: 0; height: 0;
  border-style: solid;
  border-width: 9px 0 9px 16px;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
}
.tile-type {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
  background: rgba(15,8,43,0.7);
  backdrop-filter: blur(8px);
  color: #4CBBCF;
}
.tile-duration {
  position: absolute;
  bottom: 12px; right: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(0,0,0,0.6);
  color: #B9B5C9;
}
.tile-body {
  padding: 1.25rem;
}
.tile-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.tile-desc {
  font-size: 0.82rem;
  color: #847DA2;
  line-height: 1.5;
  font-weight: 400;
}

/* ========== QUICK HELP ROW ========== */
.quick-help-section {
  background: rgba(255,255,255,0.015);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.quick-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.quick-visual-inner {
  aspect-ratio: 4/3;
  background: url('/marketing/quick-help-bg.png') center center / cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  position: relative;
}
.quick-visual-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,8,43,0.35);
}
.quick-item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 320px;
  padding: 14px 18px;
  background: rgba(15,8,43,0.75);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s;
}
.quick-item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(76,187,207,0.3);
}
.quick-item-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(76,187,207,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.quick-item-icon::before {
  content: '';
  width: 0; height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #4CBBCF;
  margin-left: 2px;
}
.quick-item-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: #C8EAF0;
}
.quick-item-time {
  font-size: 0.7rem;
  color: #776F97;
  font-weight: 500;
  margin-left: auto;
}
.quick-info h3 {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.quick-info h3 span { color: #4CBBCF; }
.quick-info p {
  color: #A09AB6;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.quick-info ul {
  list-style: none;
  margin-bottom: 2rem;
}
.quick-info ul li {
  font-size: 0.88rem;
  color: #B9B5C9;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.quick-info ul li::before {
  content: '';
  width: 5px; height: 5px;
  background: #4CBBCF;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ========== ABOUT KATHY ========== */
.about-section {
  max-width: 900px;
  margin: 0 auto;
}
.about-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
}
.about-avatar {
  width: 180px; height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1C0F52, #3F4C96);
  border: 3px solid rgba(76,187,207,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  font-weight: 800;
  color: #4CBBCF;
  position: relative;
  overflow: hidden;
}
.about-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-avatar::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(76,187,207,0.1);
}
.about-text h3 {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.about-text .about-role {
  font-size: 0.85rem;
  color: #4CBBCF;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.about-text p {
  color: #A09AB6;
  line-height: 1.75;
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
}
.about-text blockquote {
  font-size: 1.1rem;
  color: #B9B5C9;
  line-height: 1.8;
  font-weight: 300;
  font-style: italic;
  border-left: 3px solid rgba(226,22,118,0.4);
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.about-text .about-exp {
  font-size: 0.85rem;
  color: #776F97;
  font-weight: 500;
  margin-top: 0.6rem;
}

/* ========== FEATURES ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-card {
  padding: 2rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.4s;
}
.feature-card:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}
.feature-icon-1 { background: rgba(76,187,207,0.12); color: #4CBBCF; }
.feature-icon-2 { background: rgba(226,22,118,0.12); color: #E21676; }
.feature-icon-3 { background: rgba(92,185,179,0.12); color: #5CB9B3; }
.feature-icon-4 { background: rgba(101,112,171,0.12); color: #6570AB; }
.feature-icon-5 { background: rgba(0,198,215,0.12); color: #00C6D7; }
.feature-icon-6 { background: rgba(226,22,118,0.12); color: #E21676; }
.feature-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 0.85rem;
  color: #847DA2;
  line-height: 1.6;
  font-weight: 400;
}

/* ========== LIVE SESSIONS ========== */
.live-section {
  background: linear-gradient(180deg, rgba(28,15,82,0.3) 0%, rgba(15,8,43,0) 100%);
}
.live-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.live-visual {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.live-visual-inner {
  aspect-ratio: 4/3;
  background: linear-gradient(150deg, #1C0F52, #352965);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.live-visual-inner::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226,22,118,0.12), transparent);
  filter: blur(60px);
}
.live-badge {
  position: absolute;
  top: 16px; left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(226,22,118,0.9);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.live-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
.live-participants {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}
.live-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 3px solid #1C0F52;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: -12px;
}
.live-avatar:first-child { margin-left: 0; }
.live-avatar:nth-child(1) { background: linear-gradient(135deg, #4CBBCF, #3F4C96); }
.live-avatar:nth-child(2) { background: linear-gradient(135deg, #E21676, #7C0C41); }
.live-avatar:nth-child(3) { background: linear-gradient(135deg, #5CB9B3, #352965); }
.live-avatar:nth-child(4) { background: rgba(255,255,255,0.1); color: #A09AB6; }
.live-info h3 {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.live-info h3 span { color: #E21676; }
.live-info p {
  color: #A09AB6;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.live-features {
  list-style: none;
  margin-bottom: 2rem;
}
.live-features li {
  font-size: 0.88rem;
  color: #B9B5C9;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.live-features li::before {
  content: '';
  width: 5px; height: 5px;
  background: #E21676;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
  background: rgba(255,255,255,0.015);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.logo-carousel {
  max-width: 1100px;
  margin: 0 auto 2.25rem;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.logo-track {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: max-content;
  animation: logo-scroll 26s linear infinite;
}
.logo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.02);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  color: #C8EAF0;
}
@keyframes logo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.testimonial-carousel {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}
.testimonial-cards {
  position: relative;
  min-height: 240px;
}
.testimonial-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
  padding: 2rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(15,8,43,0.6);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.testimonial-card.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.testimonial-card p {
  color: #C8EAF0;
  font-size: 1.06rem;
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 1.4rem;
}
.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.testimonial-meta strong {
  font-size: 0.88rem;
  letter-spacing: 0.01em;
}
.testimonial-meta span {
  font-size: 0.8rem;
  color: #4CBBCF;
}
.testimonial-nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
}
.testimonial-nav:hover {
  background: rgba(76,187,207,0.16);
  border-color: rgba(76,187,207,0.5);
  transform: translateY(-1px);
}
.testimonial-dots {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.22);
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.testimonial-dot.active {
  background: #4CBBCF;
  transform: scale(1.1);
}

/* ========== BUSINESS ========== */
.business-section {
  background: linear-gradient(180deg, rgba(28,15,82,0.22) 0%, rgba(15,8,43,0) 100%);
}
.business-copy {
  max-width: 920px;
  margin: 0 auto 2.2rem;
}
.business-copy p {
  color: #A09AB6;
  font-size: 0.96rem;
  line-height: 1.75;
  margin-bottom: 0.9rem;
}
.business-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 1000px;
}

/* ========== PRICING ========== */
.pricing-section {
  position: relative;
}
.pricing-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76,187,207,0.06), transparent 60%);
  filter: blur(100px);
  pointer-events: none;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}
.pricing-card {
  position: relative;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.12);
}
.pricing-card.featured {
  background: rgba(255,255,255,0.05);
  border-color: rgba(226,22,118,0.3);
  box-shadow: 0 0 80px rgba(226,22,118,0.08);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #E21676, #C80237);
  padding: 5px 18px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.pricing-name {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4CBBCF;
  margin-bottom: 1rem;
}
.pricing-price {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 0.25rem;
}
.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: #776F97;
}
.pricing-note {
  font-size: 0.8rem;
  color: #776F97;
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.pricing-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 1.5rem;
}
.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}
.pricing-features li {
  font-size: 0.85rem;
  color: #B9B5C9;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(76,187,207,0.1);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%234CBBCF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.pricing-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}
.pricing-btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
}
.pricing-btn-outline:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.2);
}
.pricing-btn-filled {
  background: linear-gradient(135deg, #E21676, #C80237);
  border: none;
  color: #fff;
  box-shadow: 0 4px 20px rgba(226,22,118,0.3);
}
.pricing-btn-filled:hover {
  box-shadow: 0 8px 30px rgba(226,22,118,0.4);
  transform: translateY(-1px);
}

/* ========== FAQ ========== */
.faq-section {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s;
  letter-spacing: -0.01em;
}
.faq-question:hover { color: #4CBBCF; }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
}
.faq-icon::before {
  content: '+';
  font-size: 1.1rem;
  font-weight: 300;
  color: #4CBBCF;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: rgba(76,187,207,0.12);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), padding 0.3s;
}
.faq-answer-inner {
  padding-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #A09AB6;
  line-height: 1.7;
}

/* ========== FINAL CTA ========== */
.cta-section {
  text-align: center;
  position: relative;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226,22,118,0.08), transparent 60%);
  filter: blur(100px);
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.cta-content h2 span {
  background: linear-gradient(135deg, #E21676, #4CBBCF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-content p {
  font-size: 1.05rem;
  color: #A09AB6;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* ========== VIDEO LIGHTBOX ========== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,8,43,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.lightbox-content {
  position: relative;
  width: 90vw;
  max-width: 960px;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.lightbox.active .lightbox-content {
  transform: scale(1) translateY(0);
}
.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  font-family: 'Manrope', sans-serif;
}
.lightbox-close:hover {
  background: rgba(226,22,118,0.5);
}
.lightbox-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.lightbox-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ========== FOOTER ========== */
.footer {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand img { height: 36px; width: auto; opacity: 0.5; }
.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.footer-links a {
  color: #776F97;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 0.3s;
}
.footer-links a:hover { color: #B9B5C9; }
.footer-copy {
  font-size: 0.78rem;
  color: #50467A;
  font-weight: 400;
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 1024px) {
  .tiles-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .business-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card:last-child { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; }
  .testimonial-carousel { max-width: 760px; }
  .nav-links { gap: 0.9rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: rgba(15,8,43,0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    gap: 1rem;
  }
  .nav-links.open > li {
    width: 100%;
  }
  .nav-links.open > li > a {
    display: block;
    padding: 0.2rem 0;
    font-size: 0.92rem;
  }
  .nav-drop-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.2rem 0;
    font-size: 0.92rem;
  }
  .nav-dropdown::after {
    display: none;
  }
  .nav-drop-menu {
    position: static;
    display: none;
    opacity: 1;
    pointer-events: all;
    transform: none;
    min-width: 0;
    margin-top: 0.45rem;
    border-radius: 10px;
    box-shadow: none;
    background: rgba(255,255,255,0.03);
  }
  .nav-dropdown.open .nav-drop-menu {
    display: flex;
  }
  .hero { padding: 100px 1.5rem 60px; min-height: auto; }
  .hero h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .section-pad { padding: 60px 1.5rem; }
  .tiles-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .business-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card:last-child { max-width: none; }
  .quick-grid, .live-grid, .about-grid { grid-template-columns: 1fr; }
  .about-grid { text-align: center; justify-items: center; }
  .testimonial-carousel { grid-template-columns: 1fr; }
  .testimonial-nav { display: none; }
  .testimonial-cards { min-height: 300px; }
  .testimonial-card { padding: 1.5rem; }
  .testimonial-card p { font-size: 0.96rem; }
  .logo-chip { min-width: 124px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
