/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
:root {
  --navy: #0F082B;
  --navy-2: #1C0F52;
  --magenta: #E21676;
  --teal: #4CBBCF;
  --text-muted: #A09AB6;
  --container: 1200px;
  --section-pad: clamp(64px, 8vw, 96px);
  --gutter: 2rem;
}
body {
  font-family: 'Manrope', sans-serif;
  background: var(--navy);
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; }
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ========== 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 var(--gutter);
  background: rgba(15, 8, 43, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.nav.scrolled {
  background: rgba(15, 8, 43, 0.96);
  border-bottom-color: rgba(255,255,255,0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}
.nav-brand img { height: 59px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links > li {
  position: relative;
}
.nav-links a,
.nav-drop-toggle {
  display: inline-flex;
  align-items: center;
  color: #D9D6E6;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 9px 13px;
  border-radius: 9px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: -0.01em;
  font-family: 'Manrope', sans-serif;
  line-height: 1.2;
}
.nav-links a:hover,
.nav-drop-toggle:hover,
.nav-dropdown.open .nav-drop-toggle,
.nav-dropdown:hover .nav-drop-toggle {
  color: #fff;
  background: rgba(255,255,255,0.07);
}
.nav-links a.active,
.nav-links a.is-current,
.nav-dropdown.has-active .nav-drop-toggle,
.nav-dropdown.is-current .nav-drop-toggle {
  color: var(--teal);
}
.nav-links a.active:hover {
  color: var(--teal);
}
.nav-drop-toggle {
  background: none;
  border: none;
  cursor: pointer;
  gap: 0.5rem;
}
.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% + 6px);
  left: 0;
  min-width: 200px;
  list-style: none;
  padding: 0.45rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(20,12,55,0.98);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  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.6rem 0.75rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #C9C5D8;
}
.nav-drop-menu a:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
}
.nav-sep {
  width: 1px;
  height: 24px;
  margin: 0 0.75rem 0 0.9rem;
  background: rgba(255,255,255,0.14);
}
.nav-login {
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.03);
  padding: 10px 18px !important;
  border-radius: 10px !important;
  color: #fff !important;
  font-weight: 700 !important;
}
.nav-login:hover {
  border-color: rgba(76,187,207,0.6);
  background: rgba(76,187,207,0.08) !important;
}
.nav-auth + .nav-auth { margin-left: 0.35rem; }
.nav-cta {
  margin-left: 0;
  background: var(--magenta);
  color: #fff !important;
  padding: 11px 22px !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 18px rgba(226,22,118,0.3);
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s !important;
}
.nav-cta:hover {
  background: #C80237 !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(226,22,118,0.4);
}
.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;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 148px var(--gutter) 72px;
}
.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: 160px;
  background: linear-gradient(to top, var(--navy), 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: 7px 16px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--magenta);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.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.05;
  margin-bottom: 1.25rem;
  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.1rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto 2rem;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.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: 820px;
  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);
  cursor: pointer;
}
.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: var(--section-pad) var(--gutter);
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.75rem;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(76,187,207,0.1);
  border: 1px solid rgba(76,187,207,0.28);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.1rem;
  line-height: 1.2;
}
.section-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px rgba(76,187,207,0.8);
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 0.9rem;
}
.section-subtitle {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.65;
  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: 3.5rem;
  max-width: var(--container);
  margin: 0 auto;
  align-items: center;
}
.quick-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.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: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.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: 1.75rem;
}
.quick-info ul li {
  font-size: 0.9rem;
  color: #B9B5C9;
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.quick-info ul li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.55em;
}

/* ========== ABOUT KATHY ========== */
.about-section {
  max-width: 880px;
  margin: 0 auto;
}
.about-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: center;
}
.about-avatar {
  width: 220px; height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1C0F52, #3F4C96);
  border: 3px solid rgba(76,187,207,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.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: var(--text-muted);
  line-height: 1.7;
  font-size: 0.96rem;
  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 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-align: left;
  font-size: 0.8rem;
  color: #C8EAF0;
  font-weight: 600;
  margin-top: 0.5rem;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid rgba(76,187,207,0.25);
  background: rgba(76,187,207,0.08);
}
.about-text .about-exp::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

/* ========== FEATURES ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: var(--container);
  margin: 0 auto;
}
.feature-card {
  padding: 1.75rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  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.88rem;
  color: #9E97B8;
  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: 3.5rem;
  max-width: var(--container);
  margin: 0 auto;
  align-items: center;
}
.live-visual {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.live-visual-inner {
  aspect-ratio: 4/3;
  background: linear-gradient(150deg, #1C0F52, #352965);
  position: relative;
  overflow: hidden;
}
.live-visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}
.live-visual-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(15,8,43,0.05) 30%, rgba(15,8,43,0.85) 100%);
}
.live-badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(226,22,118,0.92);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 6px 20px rgba(226,22,118,0.35);
}
.live-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
.live-bar {
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(15,8,43,0.72);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.live-bar > div:first-child { min-width: 0; }
.live-bar-title {
  font-size: 0.86rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}
.live-bar-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.live-participants {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.live-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid #1C0F52;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.66rem;
  font-weight: 700;
  margin-left: -10px;
}
.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: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.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: 1.75rem;
}
.live-features li {
  font-size: 0.9rem;
  color: #B9B5C9;
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.live-features li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--magenta);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.55em;
}

/* ========== 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 2rem;
  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: 200px;
}
.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 2.25rem;
  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.25rem;
  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: 1000px;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2.5rem;
}
.business-copy p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.7;
  margin: 0;
}
.business-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 1000px;
}

/* ========== PRICING ========== */
.pricing-section {
  position: relative;
  overflow: hidden; /* keep the decorative glow from widening the page on small screens */
}
.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: stretch;
}
.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  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 {
  display: flex;
  align-items: baseline;
  gap: 2px;
  height: 3.2rem;
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.pricing-price-text {
  font-size: 2.2rem;
  align-self: center;
}
.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;
  flex: 1;
}
.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: 760px;
  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;
  gap: 1rem;
  width: 100%;
  padding: 1.35rem 0;
  background: none;
  border: none;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s;
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.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.35rem;
  padding-right: 3rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========== FINAL CTA ========== */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.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: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
}
.cta-content .hero-actions {
  margin-bottom: 0;
}

/* ========== NEWSLETTER PAGE ========== */
.page-newsletter {
  position: relative;
  z-index: 1;
}
.newsletter-section {
  padding-top: 164px;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
}
.newsletter-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4.5rem;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  align-items: center;
}
.page-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.16;
  padding-bottom: 0.08em;
  margin-bottom: 1.1rem;
  background: linear-gradient(135deg, #fff 0%, #C8EAF0 45%, #4CBBCF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-lead {
  font-size: 1.12rem;
  color: #C9C5D8;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.page-copy {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.newsletter-points {
  list-style: none;
  margin-bottom: 1.5rem;
}
.newsletter-points li {
  font-size: 0.92rem;
  color: #C9C5D8;
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}
.newsletter-points li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 0.15em;
  border-radius: 50%;
  background: rgba(76,187,207,0.12) 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") no-repeat center;
}
.newsletter-note {
  font-size: 0.82rem;
  color: #776F97;
}
.newsletter-card {
  position: relative;
  padding: 2.25rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(76,187,207,0.22);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35), 0 0 80px rgba(76,187,207,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.newsletter-card h2 {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.newsletter-card > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* MailerLite embed, restyled to the brand */
.newsletter-card .ml-form-embedContainer { width: 100%; }
.newsletter-card .ml-form-embedWrapper { width: 100%; max-width: none; }
.newsletter-card .ml-form-embedBody { padding: 0; }
.newsletter-card .ml-block-form { margin: 0; width: 100%; }
.newsletter-card .ml-form-fieldRow { margin: 0 0 0.85rem; }
.newsletter-card .ml-form-fieldRow input[type="email"] {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 15px 18px;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.newsletter-card .ml-form-fieldRow input[type="email"]::placeholder { color: #776F97; }
.newsletter-card .ml-form-fieldRow input[type="email"]:focus {
  border-color: rgba(76,187,207,0.7);
  background: rgba(76,187,207,0.06);
  box-shadow: 0 0 0 4px rgba(76,187,207,0.15);
}
.newsletter-card .ml-error input[type="email"] {
  border-color: rgba(226,22,118,0.8);
  box-shadow: 0 0 0 4px rgba(226,22,118,0.15);
}
.newsletter-card .ml-form-embedSubmit { margin: 0; }
.newsletter-card .ml-form-embedSubmit button.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(135deg, #E21676, #C80237);
  color: #fff;
  padding: 16px 28px;
  border-radius: 12px;
  border: none;
  font-family: 'Manrope', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(226,22,118,0.3);
  transition: transform 0.2s, box-shadow 0.3s;
}
.newsletter-card .ml-form-embedSubmit button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(226,22,118,0.4);
}
.newsletter-card .ml-form-embedSubmit button.loading {
  display: none;
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 12px;
  background: rgba(226,22,118,0.6);
}
.ml-form-embedSubmitLoad {
  display: inline-block;
  width: 20px;
  height: 20px;
}
.ml-form-embedSubmitLoad::after {
  content: '';
  display: block;
  width: 11px;
  height: 11px;
  margin: 1px;
  border-radius: 50%;
  border: 4px solid #fff;
  border-color: #fff #fff #fff transparent;
  animation: ml-form-embedSubmitLoad 1.2s linear infinite;
}
@keyframes ml-form-embedSubmitLoad {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.newsletter-card.is-success > p { display: none; }
.newsletter-card .ml-form-successContent {
  text-align: left;
  padding: 1.15rem 1.25rem;
  border-radius: 14px;
  background: rgba(62,207,142,0.1);
  border: 1px solid rgba(62,207,142,0.4);
  box-shadow: 0 0 40px rgba(62,207,142,0.08);
}
.newsletter-card .ml-form-successContent h4 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
  color: #3ECF8E;
}
.newsletter-card .ml-form-successContent h4::before {
  content: '';
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #3ECF8E url("data:image/svg+xml,%3Csvg width='13' height='11' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%230F082B' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  box-shadow: 0 0 16px rgba(62,207,142,0.5);
}
.newsletter-card .ml-form-successContent p {
  font-size: 0.95rem;
  color: #C9EBDC;
  line-height: 1.6;
  margin: 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ========== GENERIC PAGE HERO (About, Coaching) ========== */
.page-hero {
  position: relative;
  z-index: 1;
  padding: 164px var(--gutter) var(--section-pad);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4.5rem;
  max-width: 1140px;
  margin: 0 auto;
  align-items: center;
}
.page-actions { justify-content: flex-start; margin-bottom: 0; }
.cred-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.cred-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  font-size: 0.8rem;
  font-weight: 600;
  color: #C9C5D8;
}
.cred-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
}
.about-photo,
.page-hero-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 32px 80px rgba(0,0,0,0.45);
  background: var(--navy-2);
}
.about-photo { aspect-ratio: 4/5; }
.page-hero-frame { aspect-ratio: 4/3.4; }
.about-photo-img,
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}
.about-photo::after,
.page-hero-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,8,43,0) 45%, rgba(15,8,43,0.9) 100%);
}
.about-quote,
.page-hero-caption {
  position: absolute;
  left: 20px; right: 20px; bottom: 20px;
  z-index: 2;
  margin: 0;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(15,8,43,0.72);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.about-quote p,
.page-hero-caption p {
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.5;
  font-weight: 600;
  margin: 0 0 6px;
}
.about-quote cite,
.page-hero-caption span {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--teal);
  font-weight: 600;
}

.about-hero { padding-bottom: 40px; }
.about-hero .cred-list { margin-bottom: 0; }
.paths-section { padding-top: 64px; }

/* ========== TWO PATHS (My Platform / My Coaching) ========== */
.paths-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);
}
.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.path-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s, border-color 0.4s;
}
.path-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  border-color: rgba(76,187,207,0.4);
}
.path-card-coaching:hover { border-color: rgba(226,22,118,0.45); }
.path-media {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--navy-2);
}
.path-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.path-card:hover .path-media img { transform: scale(1.04); }
.path-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,8,43,0) 55%, rgba(15,8,43,0.75) 100%);
}
.path-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.75rem 1.75rem 1.9rem;
}
.path-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}
.path-card-coaching .path-kicker { color: var(--magenta); }
.path-body h3 {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.path-body > p {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}
.path-points {
  list-style: none;
  margin-bottom: 1.5rem;
  flex: 1;
}
.path-points li {
  font-size: 0.88rem;
  color: #C9C5D8;
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.path-points li::before {
  content: '';
  flex-shrink: 0;
  width: 5px; height: 5px;
  margin-top: 0.55em;
  border-radius: 50%;
  background: var(--teal);
}
.path-card-coaching .path-points li::before { background: var(--magenta); }
.path-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  transition: gap 0.2s, color 0.2s;
}
.path-link svg { transition: transform 0.2s; }
.path-card:hover .path-link { color: var(--teal); }
.path-card-coaching:hover .path-link { color: var(--magenta); }
.path-card:hover .path-link svg { transform: translateX(3px); }

/* ========== QUOTE GRID ========== */
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}
.quote-grid-3 { grid-template-columns: repeat(3, 1fr); max-width: 1100px; }
.quote-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  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);
}
.quote-card p {
  color: #C8EAF0;
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex: 1;
}

/* ========== COACHING: SERVICES ========== */
.service-rows {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
.service-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  padding: 2.25rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  scroll-margin-top: 96px;
}
.service-row-flip .service-row-copy { order: 2; }
.service-row-stack { grid-template-columns: 1fr; gap: 1.75rem; }
.service-row-stack .service-row-copy { max-width: 760px; }
.service-row h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 0.9rem;
}
.service-row-copy > p {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.9rem;
}
.service-row-copy .btn-sm { margin-top: 0.6rem; }
.btn-sm { padding: 12px 22px; font-size: 0.9rem; }
.service-row-panel {
  padding: 1.5rem 1.6rem;
  border-radius: 16px;
  background: rgba(15,8,43,0.55);
  border: 1px solid rgba(255,255,255,0.08);
}
.service-row-panel h4 {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.6rem;
}
.service-panel-note {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.86rem;
  color: #C9C5D8;
  line-height: 1.5;
}
.service-num {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 0.9rem;
}
.service-questions {
  list-style: none;
  margin: 0;
}
.service-questions li {
  font-size: 0.86rem;
  color: #C9C5D8;
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.service-questions li::before {
  content: '';
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin-top: 0.1em;
  border-radius: 50%;
  background: rgba(226,22,118,0.15) 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='%23E21676' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
}
.service-link {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
}
.service-link:hover { color: #fff; }

/* ========== COACHING: TOPICS ========== */
.topics-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);
}
.topics-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  max-width: 1000px;
  margin: 0 auto;
}
.topic-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.92rem;
  font-weight: 600;
  color: #E4E1EE;
  line-height: 1.35;
}
.topic-chip::before {
  content: '';
  flex-shrink: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--magenta));
}

/* ========== COACHING: WORKSHOP FORMATS ========== */
.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.format-card {
  padding: 1.75rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
}
.format-duration {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(76,187,207,0.12);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.format-card h4 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.9rem;
}
.format-card ul { list-style: none; }
.format-card li {
  font-size: 0.86rem;
  color: #C9C5D8;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  line-height: 1.45;
}
.format-card li:last-child { border-bottom: none; }
.format-note {
  margin-top: 0.9rem;
  font-size: 0.8rem;
  color: #776F97;
}

/* ========== COACHING: RESULTS ========== */
.results-section {
  background: linear-gradient(180deg, rgba(28,15,82,0.3) 0%, rgba(15,8,43,0) 100%);
}
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  max-width: var(--container);
  margin: 0 auto;
  align-items: center;
}
.results-copy .section-title { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.results-copy p {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.9rem;
}
.results-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.result-tile {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 1.35rem 1.25rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}
.result-tile strong {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}
.result-tile span {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ========== COACHING: CONTACT ========== */
.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 760px;
  margin: 2.75rem auto 0;
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 1.15rem 1.25rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  text-align: left;
  transition: border-color 0.3s, background 0.3s;
  min-width: 0;
}
.contact-card:hover { border-color: rgba(76,187,207,0.45); background: rgba(76,187,207,0.06); }
.contact-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}
.contact-value {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  overflow-wrap: break-word;
}

/* ========== AUTH PAGES (log in, register, passwords) ========== */
.auth-body { min-height: 100vh; }
.auth-page {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 100vh;
}
.auth-brand {
  position: relative;
  overflow: hidden;
  background: var(--navy-2);
}
.auth-brand-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.auth-brand::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,8,43,0.55) 0%, rgba(15,8,43,0.25) 40%, rgba(15,8,43,0.92) 100%);
}
.auth-brand-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  padding: 2.25rem 2.5rem;
}
.auth-brand-logo { display: inline-flex; width: fit-content; }
.auth-brand-card {
  max-width: 440px;
  padding: 1.6rem 1.75rem;
  border-radius: 18px;
  background: rgba(15,8,43,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.auth-brand-card .section-label { margin-bottom: 0.9rem; }
.auth-brand-quote {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.55;
  margin-bottom: 1rem;
}
.auth-brand-points { list-style: none; }
.auth-brand-points li {
  font-size: 0.86rem;
  color: #C9C5D8;
  padding: 4px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.auth-brand-points li::before {
  content: '';
  flex-shrink: 0;
  width: 5px; height: 5px;
  margin-top: 0.55em;
  border-radius: 50%;
  background: var(--teal);
}
.auth-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem var(--gutter);
}
.auth-mobile-logo { display: none; margin-bottom: 1.75rem; }
.auth-card {
  width: 100%;
  max-width: 520px;
  padding: 2.5rem 2.5rem 2.25rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.auth-card .section-label { margin-bottom: 0.9rem; }
.auth-title {
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 0.6rem;
}
.auth-lead {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.6rem;
}
.auth-form { display: flex; flex-direction: column; gap: 1rem; }
.auth-field { display: flex; flex-direction: column; gap: 0.45rem; }
.auth-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.auth-label-row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.auth-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #D9D6E6;
  letter-spacing: 0.01em;
}
.auth-link-small {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
}
.auth-link-small:hover { color: #fff; }
.auth-input {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 14px 16px;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.auth-input::placeholder { color: #776F97; }
.auth-input:focus {
  border-color: rgba(76,187,207,0.7);
  background: rgba(76,187,207,0.06);
  box-shadow: 0 0 0 4px rgba(76,187,207,0.15);
}
.auth-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: #C9C5D8;
  line-height: 1.5;
  cursor: pointer;
}
.auth-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 2px;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.auth-check input[type="checkbox"]:checked {
  border-color: var(--teal);
  background: var(--teal) url("data:image/svg+xml,%3Csvg width='11' height='9' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%230F082B' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
}
.auth-check a { color: #fff; font-weight: 600; }
.auth-turnstile { display: flex; justify-content: center; min-height: 65px; }
.auth-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.35rem;
  font-size: 1rem;
  padding: 16px 28px;
}
.auth-switch {
  margin-top: 1.4rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.auth-switch + .auth-switch { margin-top: 0.4rem; }
.auth-switch a { color: #fff; font-weight: 700; text-decoration: none; }
.auth-switch a:hover { color: var(--teal); }
.auth-alert {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.auth-alert strong { display: block; margin-bottom: 0.25rem; }
.auth-alert ul { margin: 0; padding-left: 1.1rem; }
.auth-alert-error {
  background: rgba(226,22,118,0.12);
  border: 1px solid rgba(226,22,118,0.4);
  color: #FCE8F1;
}
.auth-alert-success {
  background: rgba(62,207,142,0.1);
  border: 1px solid rgba(62,207,142,0.4);
  color: #C9EBDC;
}
.auth-footnote {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: #776F97;
}
.auth-footnote a { color: #A09AB6; text-decoration: none; }
.auth-footnote a:hover { color: #fff; }

/* ========== 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.05);
  padding: 2.5rem var(--gutter) 2rem;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand img { height: 36px; width: auto; opacity: 0.5; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  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 {
  flex-basis: 100%;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.78rem;
  color: #776F97;
  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; width: 100%; margin: 0 auto; }
  .testimonial-carousel { max-width: 760px; }
  .nav-links { gap: 1rem; }
  .quick-grid, .live-grid { gap: 2.5rem; }
  .newsletter-grid { gap: 3rem; }
  .page-hero-grid { gap: 3rem; }
  .auth-page { grid-template-columns: 0.8fr 1.2fr; }
  .service-row { gap: 2rem; padding: 1.75rem; }
  .topics-grid { grid-template-columns: repeat(2, 1fr); }
  .formats-grid { grid-template-columns: 1fr; }
  .quote-grid-3 { grid-template-columns: 1fr; max-width: 720px; }
}

@media (max-width: 768px) {
  :root { --gutter: 1.25rem; }
  .nav { padding: 0 var(--gutter); }
  .nav-inner { height: 68px; }
  .nav-brand img { height: 50px; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: rgba(15,8,43,0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 1.25rem var(--gutter) 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    gap: 0.9rem 0.6rem;
  }
  .nav-links.open > li {
    width: 100%;
  }
  .nav-links.open > li > a {
    display: block;
    padding: 0.55rem 0.25rem;
    font-size: 1rem;
    border-radius: 0;
  }
  .nav-links.open > li > a:hover { background: none; }
  .nav-links.open .nav-sep {
    width: 100%;
    height: 1px;
    margin: 0.5rem 0 0.25rem;
  }
  .nav-links.open .nav-auth { width: calc(50% - 0.3rem); }
  .nav-links.open .nav-auth + .nav-auth { margin-left: 0; }
  .nav-links.open .nav-login {
    display: block;
    text-align: center;
    padding: 12px 18px !important;
  }
  .nav-links.open .nav-cta {
    text-align: center;
    padding: 12px 22px !important;
    margin: 0.35rem 0 0;
  }
  .nav-drop-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.55rem 0.25rem;
    font-size: 1rem;
    border-radius: 0;
  }
  .nav-drop-toggle:hover,
  .nav-dropdown.open .nav-drop-toggle { background: none; }
  .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: 104px var(--gutter) 48px; }
  .hero h1 { font-size: 2.35rem; }
  .hero p { font-size: 1rem; margin-bottom: 1.75rem; }
  .hero-actions { flex-direction: column; align-items: center; gap: 0.6rem; margin-bottom: 2.25rem; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { width: 100%; max-width: 320px; justify-content: center; }
  .section-pad { padding: 56px var(--gutter); }
  .section-header { margin-bottom: 2rem; }
  .tiles-grid { grid-template-columns: 1fr; gap: 1rem; }
  .features-grid { grid-template-columns: 1fr; gap: 1rem; }
  .business-grid { grid-template-columns: 1fr; }
  .business-copy { grid-template-columns: 1fr; gap: 0.9rem; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card { padding: 2rem 1.5rem; }
  .pricing-card:last-child { max-width: none; }
  .quick-grid, .live-grid, .about-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .quick-info h3, .live-info h3 { font-size: 1.6rem; }
  .about-grid { text-align: center; justify-items: center; }
  .about-avatar { width: 160px; height: 160px; }
  .testimonial-carousel { grid-template-columns: 1fr; }
  .testimonial-nav { display: none; }
  .testimonial-cards { min-height: 0; }
  .testimonial-card { padding: 1.5rem; }
  .testimonial-card p { font-size: 0.96rem; }
  .logo-chip { min-width: 124px; }
  .faq-question { padding: 1.1rem 0; font-size: 0.98rem; }
  .faq-answer-inner { padding-right: 0; }
  .live-bar { left: 12px; right: 12px; bottom: 12px; padding: 10px 12px; }
  .live-bar-sub { display: none; }
  .auth-page { grid-template-columns: 1fr; }
  .auth-brand { display: none; }
  .auth-panel { padding: 2.25rem var(--gutter) 2.5rem; justify-content: flex-start; }
  .auth-mobile-logo { display: inline-flex; }
  .auth-card { padding: 1.75rem 1.4rem; }
  .auth-field-row { grid-template-columns: 1fr; }
  .page-hero { padding-top: 112px; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .page-actions { flex-direction: row; }
  .page-actions .btn-primary, .page-actions .btn-secondary { width: auto; }
  .about-photo { aspect-ratio: 4/4.4; }
  .paths-grid { grid-template-columns: 1fr; }
  .path-body { padding: 1.4rem 1.25rem 1.5rem; }
  .path-body h3 { font-size: 1.45rem; }
  .quote-grid { grid-template-columns: 1fr; }
  .topics-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.5rem 1.25rem; }
  .service-row-flip .service-row-copy { order: 0; }
  .results-grid { grid-template-columns: 1fr; gap: 2rem; }
  .results-tiles { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .contact-grid { grid-template-columns: 1fr; margin-top: 2rem; }
  .newsletter-section { padding-top: 112px; min-height: 0; display: block; }
  .newsletter-grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .newsletter-card { padding: 1.75rem 1.5rem; }
  .footer { padding: 2rem var(--gutter) 1.5rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-glow-teal, .hero-glow-magenta, .play-btn::after,
  .hero-tag::before, .live-badge::before, .hero-preview-dot,
  .logo-track { animation: none; }
  .tile, .feature-card, .pricing-card, .btn-primary, .nav-cta { transition: none; }
}

/* ===== Contact page ===== */
.contact-hero-copy {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.contact-hero-actions {
  justify-content: center;
  margin-bottom: 0;
}
.contact-details-section { padding-top: 0; }
.contact-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 960px;
  margin-top: 0;
}
.contact-card-static { cursor: default; }
.contact-address {
  font-style: normal;
  line-height: 1.55;
}
.contact-map {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: var(--navy-2);
  box-shadow: 0 32px 80px rgba(0,0,0,0.45);
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.contact-map-actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

/* Keep the nav on one line now that Contact has been added. */
@media (min-width: 769px) and (max-width: 1024px) {
  .nav-links { gap: 0.35rem; }
  .nav-links a,
  .nav-drop-toggle { padding: 9px 10px; }
}

@media (max-width: 768px) {
  .contact-grid-3 { grid-template-columns: 1fr; }
  .contact-map { aspect-ratio: 4 / 3; border-radius: 16px; }
}
/* Tablet band (above the 768px hamburger breakpoint): keep the nav on one line. */
@media (min-width: 769px) and (max-width: 900px) {
  .nav-brand img { height: 46px; }
  .nav-links { gap: 0.1rem; }
  .nav-links a,
  .nav-drop-toggle { padding: 9px 7px; font-size: 0.82rem; }
  .nav-drop-toggle { gap: 0.32rem; }
  .nav-sep { margin: 0 0.45rem; }
  .nav-login,
  .nav-cta { padding: 9px 13px !important; }
}
/* ===== /Contact page ===== */

/* ===== Consultation lightbox ===== */
body.consult-open { overflow: hidden; }

.consult-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  padding: clamp(16px, 5vh, 56px) var(--gutter);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.consult-overlay.is-open {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.consult-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 4, 22, 0.74);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: consultFade 0.25s ease both;
}
.consult-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 540px;
  margin: auto;
  padding: 2.25rem 2.25rem 2rem;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(28,15,82,0.96), rgba(15,8,43,0.98));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 90px rgba(0,0,0,0.55);
  animation: consultRise 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes consultFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes consultRise {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.consult-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #D9D6E6;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.consult-close:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}

.consult-panel { display: block; }
.consult-panel[hidden] { display: none; }
.consult-panel .section-label { margin-bottom: 0.85rem; }
.consult-title {
  font-size: clamp(1.5rem, 3.2vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.14;
  margin-bottom: 0.55rem;
  padding-right: 2.25rem;
}
.consult-title:focus-visible { outline: none; }
.consult-lead {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.consult-alert {
  display: none;
  margin-bottom: 1.1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: rgba(226,22,118,0.12);
  border: 1px solid rgba(226,22,118,0.4);
  color: #FFD9E9;
  font-size: 0.86rem;
  line-height: 1.5;
}
.consult-alert.is-visible { display: block; }

.consult-form { display: flex; flex-direction: column; gap: 1rem; }
.consult-field { display: flex; flex-direction: column; gap: 0.4rem; }
.consult-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #D9D6E6;
  letter-spacing: 0.01em;
}
.consult-req { color: var(--magenta); }
.consult-optional {
  font-weight: 500;
  color: var(--text-muted);
}
.consult-input {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 13px 15px;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.consult-input::placeholder { color: #776F97; }
.consult-input:focus {
  border-color: rgba(76,187,207,0.65);
  box-shadow: 0 0 0 3px rgba(76,187,207,0.18);
  background: rgba(255,255,255,0.07);
}
.consult-input.has-error {
  border-color: rgba(226,22,118,0.7);
  box-shadow: 0 0 0 3px rgba(226,22,118,0.14);
}
.consult-textarea {
  min-height: 118px;
  resize: vertical;
}
.consult-field-error {
  display: none;
  font-size: 0.78rem;
  font-weight: 600;
  color: #FF8FBE;
  line-height: 1.4;
}
.consult-field-error.is-visible { display: block; }

.consult-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.consult-submit {
  justify-content: center;
  width: 100%;
  margin-top: 0.35rem;
}
.consult-submit:disabled,
.consult-submit.is-sending {
  opacity: 0.7;
  cursor: progress;
  transform: none;
}
.consult-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

.consult-success { text-align: center; }
.consult-success .consult-title { padding-right: 0; }
.consult-success-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1.1rem;
  border-radius: 50%;
  background: rgba(76,187,207,0.12);
  border: 1px solid rgba(76,187,207,0.45);
  color: var(--teal);
}
.consult-success .consult-lead { margin-bottom: 1.6rem; }

@media (max-width: 560px) {
  .consult-overlay { padding: 12px; }
  .consult-dialog { padding: 1.75rem 1.35rem 1.5rem; border-radius: 18px; }
  .consult-close { top: 10px; right: 10px; }
  .consult-title { font-size: 1.4rem; }
  .consult-textarea { min-height: 104px; }
}

@media (prefers-reduced-motion: reduce) {
  .consult-backdrop, .consult-dialog { animation: none; }
}
/* ===== /Consultation lightbox ===== */

/* ===== About hero spacing ===== */
.about-hero { padding-top: 124px; }
@media (max-width: 768px) {
  .about-hero { padding-top: 104px; }
}
/* ===== /About hero spacing ===== */
