*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-dark: #030306;
  --bg-card: rgba(12, 12, 18, 0.6);
  --bg-card-solid: #0c0c12;
  --bg-card-hover: rgba(18, 18, 28, 0.7);
  --accent: #00AFF0;
  --accent-light: #5BCEFA;
  --accent-pink: #FF6B9D;
  --accent-blue: #5BCEFA;
  --accent-glow: rgba(0, 175, 240, 0.4);
  --accent-glow-subtle: rgba(0, 175, 240, 0.12);
  --text: #fafafa;
  --text-muted: #8b95a9;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(0, 175, 240, 0.3);
  --success: #10b981;
  --error: #ef4444;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', -apple-system, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ===== ANIMATED ORBS ===== */

.orbs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.orb-1 {
  width: 700px;
  height: 700px;
  background: rgba(0, 175, 240, 0.15);
  top: -25%;
  right: -15%;
  animation: float1 22s ease-in-out infinite;
}

.orb-2 {
  width: 550px;
  height: 550px;
  background: rgba(255, 107, 157, 0.12);
  bottom: -20%;
  left: -10%;
  animation: float2 28s ease-in-out infinite;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: rgba(91, 206, 250, 0.1);
  top: 40%;
  left: 50%;
  animation: float3 20s ease-in-out infinite;
}

.orb-4 {
  width: 300px;
  height: 300px;
  background: rgba(0, 175, 240, 0.08);
  top: 60%;
  right: 10%;
  animation: float4 25s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-80px, 60px) scale(1.1); }
  66% { transform: translate(40px, -40px) scale(0.95); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, -80px) scale(1.05); }
  66% { transform: translate(-50px, 30px) scale(1.1); }
}

@keyframes float3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-100px, 60px) scale(1.15); }
}

@keyframes float4 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(60px, -80px); }
}

/* ===== NOISE OVERLAY ===== */

.noise {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ===== TOAST ===== */

.toast {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(-120%);
  z-index: 200;
  padding: 1rem 1.75rem;
  border-radius: 14px;
  font-size: 0.9375rem;
  font-weight: 500;
  opacity: 0;
  transition: all 0.5s var(--ease-out-expo);
  pointer-events: none;
  max-width: 90vw;
  text-align: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.toast.toast-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast.toast-success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #6ee7b7;
}

.toast.toast-error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

/* ===== HEADER ===== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: all 0.5s var(--ease-out-expo);
}

.header.scrolled {
  background: rgba(3, 3, 6, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  padding: 1rem 2rem;
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: opacity 0.3s ease;
}

.logo:hover { opacity: 0.8; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-pink) 100%);
  color: white;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s var(--ease-out-expo);
  box-shadow: 0 4px 20px rgba(0, 175, 240, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 30px rgba(0, 175, 240, 0.5);
}

.nav-cta svg {
  transition: transform 0.3s var(--ease-out-expo);
}

.nav-cta:hover svg {
  transform: translateX(4px);
}

/* ===== HERO ===== */

.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 2rem 5rem;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 900px;
  height: 500px;
  top: 35%;
  left: 25%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(0, 175, 240, 0.15) 0%, rgba(255, 107, 157, 0.08) 40%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: rgba(0, 175, 240, 0.1);
  border: 1px solid rgba(0, 175, 240, 0.25);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent-light);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px var(--accent);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px var(--accent); }
  50% { opacity: 0.5; transform: scale(1.3); box-shadow: 0 0 16px var(--accent); }
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3.25rem, 7.5vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1.75rem;
}

.hero .highlight {
  background: linear-gradient(
    90deg,
    #5BCEFA,
    #FFFFFF,
    #F5A9B8,
    #5BCEFA
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  to { background-position: 200% center; }
}

.hero-lead {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 580px;
  line-height: 1.7;
}

.hero-cta-note {
  margin-top: 0.85rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  opacity: 0.8;
}

/* ===== BUTTONS ===== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
}

.btn:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-pink) 100%);
  color: white;
  box-shadow: 0 4px 24px rgba(0, 175, 240, 0.35);
}

.btn-glow {
  position: relative;
  overflow: visible;
}

.btn-glow::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-pink), var(--accent-blue), var(--accent));
  background-size: 300% 300%;
  z-index: -1;
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.4s ease;
  animation: gradientShift 4s ease infinite;
}

.btn-glow:hover::before {
  opacity: 0.6;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 175, 240, 0.45);
}

.btn-primary:active {
  transform: translateY(-1px) scale(1);
}

.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-spinner {
  display: none;
  animation: spin 0.8s linear infinite;
}

.btn.is-loading .btn-text,
.btn.is-loading .btn-arrow { display: none; }
.btn.is-loading .btn-spinner { display: block; }

@keyframes spin { to { transform: rotate(360deg); } }

/* ===== MARQUEE ===== */

.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  white-space: nowrap;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  mask-image: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  animation: marquee 35s linear infinite;
}

.marquee-item {
  font-family: 'Syne', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: -0.01em;
}

.marquee-dot {
  color: var(--accent);
  font-size: 0.625rem;
  opacity: 0.6;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ===== STATS ===== */

.stats {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem;
}

.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.stat {
  padding: 2.5rem 1.5rem;
  text-align: center;
  background: var(--bg-card);
  transition: background 0.3s ease;
}

.stat:hover {
  background: var(--bg-card-hover);
}

.stat-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ===== SECTION LABEL ===== */

.section-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* ===== GLOW CARD SYSTEM ===== */

.glow-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s var(--ease-out-expo);
}

.glow-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 175, 240, 0.06);
  transform: translateY(-6px);
}

.glow-effect {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 175, 240, 0.12) 0%, rgba(255, 107, 157, 0.06) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.glow-card:hover .glow-effect {
  opacity: 1;
}

.card-content {
  position: relative;
  z-index: 1;
}

/* ===== BENEFITS ===== */

.benefits {
  position: relative;
  z-index: 2;
  padding: 7rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.benefits-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 3.5rem;
  max-width: 600px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 1.5rem;
}

.benefit-card {
  padding: 0;
}

.benefit-card .card-content {
  padding: 2rem;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: rgba(0, 175, 240, 0.1);
  border: 1px solid rgba(0, 175, 240, 0.15);
  border-radius: 14px;
  color: var(--accent-light);
  transition: all 0.3s ease;
}

.glow-card:hover .benefit-icon {
  background: rgba(0, 175, 240, 0.15);
  border-color: rgba(0, 175, 240, 0.3);
  box-shadow: 0 0 20px rgba(0, 175, 240, 0.15);
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
}

.benefit-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.benefit-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== HOW IT WORKS ===== */

.how {
  position: relative;
  z-index: 2;
  padding: 7rem 2rem;
  border-top: 1px solid var(--border);
}

.how .section-label,
.how .how-title,
.how .how-steps {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.how-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 3.5rem;
  max-width: 500px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
}

.how-step-wrap {
  position: relative;
  padding-top: 22px;
}

.how-step {
  padding: 0;
  height: 100%;
}

.how-step .card-content {
  padding: 2rem;
  padding-top: 1.75rem;
}

.how-num {
  position: absolute;
  top: 0;
  left: 2rem;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-pink) 100%);
  border-radius: 13px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: white;
  box-shadow: 0 6px 20px rgba(0, 175, 240, 0.35);
  z-index: 2;
}

.how-step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.how-step p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== ABOUT ===== */

.about {
  position: relative;
  z-index: 2;
  padding: 7rem 2rem;
  border-top: 1px solid var(--border);
}

.about-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.about-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.about-text p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-text p:last-child {
  margin-bottom: 0;
  color: var(--accent-light);
  font-weight: 500;
}

.about-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.about-avatar-ring {
  padding: 3px;
  border-radius: 23px;
  background: conic-gradient(from 0deg, var(--accent), var(--accent-pink), var(--accent-blue), var(--accent));
  background-size: 100% 100%;
  animation: ringRotate 6s linear infinite;
}

@keyframes ringRotate {
  to { filter: hue-rotate(360deg); }
}

.about-avatar {
  width: 110px;
  height: 110px;
  border-radius: 25px;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-pink) 100%);
  color: white;
}

.about-photo-stack {
  position: relative;
  width: 280px;
  height: 340px;
}

.about-photo-ring {
  padding: 3px;
  border-radius: 20px;
  background: conic-gradient(from 0deg, var(--accent), var(--accent-pink), var(--accent-blue), var(--accent));
  position: relative;
  z-index: 2;
  animation: ringRotate 6s linear infinite;
  box-shadow: 0 8px 40px rgba(0, 175, 240, 0.25);
}

.about-photo {
  width: 274px;
  height: 320px;
  border-radius: 17px;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.about-photo-secondary {
  position: absolute;
  bottom: -20px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--border);
  z-index: 3;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.about-photo-secondary:hover {
  transform: scale(1.05) rotate(-2deg);
}

.about-photo-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-meta { text-align: center; }

.about-meta-name {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
}

.about-meta-role {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ===== TESTIMONIALS ===== */

.testimonials {
  position: relative;
  z-index: 2;
  padding: 7rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 3.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  padding: 0;
}

.testimonial-card .card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-quote-mark {
  font-family: 'Syne', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4;
  margin-bottom: -0.5rem;
  display: block;
}

.testimonial-quote {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.5rem;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-pink) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}

.testimonial-name {
  display: block;
  font-weight: 600;
  font-style: normal;
  font-size: 0.9375rem;
}

.testimonial-detail {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ===== WHO ===== */

.who {
  position: relative;
  z-index: 2;
  padding: 7rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.who-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.who-lead {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ===== FAQ ===== */

.faq {
  position: relative;
  z-index: 2;
  padding: 7rem 2rem;
  border-top: 1px solid var(--border);
}

.faq .section-label,
.faq .faq-title,
.faq .faq-list {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.faq-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 3rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.faq-item[open] {
  border-color: rgba(0, 175, 240, 0.2);
  box-shadow: 0 4px 24px rgba(0, 175, 240, 0.06);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  cursor: pointer;
  font-size: 1.0625rem;
  font-weight: 500;
  list-style: none;
  transition: color 0.3s ease;
  user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; content: ''; }

.faq-question:hover { color: var(--accent-light); }

.faq-question:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: -2px;
  border-radius: 16px;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s var(--ease-out-expo), color 0.3s ease;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer { padding: 0 1.5rem 1.5rem; }

.faq-answer p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ===== CTA / APPLY FORM ===== */

.cta {
  position: relative;
  z-index: 2;
  padding: 7rem 2rem;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 800px;
  height: 400px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(0, 175, 240, 0.1) 0%, rgba(255, 107, 157, 0.05) 40%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.cta-content {
  max-width: 520px;
  margin: 0 auto;
  position: relative;
}

.cta h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.cta > .cta-content > p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}

.cta-spots {
  font-size: 0.875rem;
  color: var(--accent-light);
  font-weight: 500;
  margin-bottom: 2.25rem;
}

.apply-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { position: relative; }

.apply-form input,
.apply-form textarea {
  width: 100%;
  padding: 1.1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.35s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.apply-form input::placeholder,
.apply-form textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.apply-form input:focus,
.apply-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 175, 240, 0.12), 0 0 24px rgba(0, 175, 240, 0.08);
}

.apply-form input.input-error,
.apply-form textarea.input-error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.apply-form textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  margin-top: 0.5rem;
  width: 100%;
}

.form-privacy {
  font-size: 0.8125rem;
  color: var(--text-muted);
  opacity: 0.6;
  text-align: center;
  margin-top: 0.25rem;
}

/* ===== FOOTER ===== */

.footer {
  position: relative;
  z-index: 2;
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer p { font-size: 0.875rem; color: var(--text-muted); }

.footer-links { display: flex; gap: 1.5rem; }

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--accent-light); }

/* ===== ANIMATIONS ===== */

.animate-in {
  opacity: 0;
  transform: translateY(32px) scale(0.98);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.animate-in[data-delay="0"] { transition-delay: 0ms; }
.animate-in[data-delay="50"] { transition-delay: 50ms; }
.animate-in[data-delay="100"] { transition-delay: 100ms; }
.animate-in[data-delay="150"] { transition-delay: 150ms; }
.animate-in[data-delay="200"] { transition-delay: 200ms; }
.animate-in[data-delay="250"] { transition-delay: 250ms; }
.animate-in[data-delay="300"] { transition-delay: 300ms; }
.animate-in[data-delay="400"] { transition-delay: 400ms; }
.animate-in[data-delay="500"] { transition-delay: 500ms; }

/* ===== FOCUS ===== */

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 2px;
}

/* ===== PHOTO STRIP ===== */

.photo-strip {
  padding: 2rem 0;
  overflow: hidden;
}

.photo-strip-inner {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
}

.photo-strip-item {
  flex: 0 0 200px;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--border);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.photo-strip-item:nth-child(2) {
  transform: translateY(20px);
}

.photo-strip-item:hover {
  transform: scale(1.04) rotate(-1deg);
  border-color: rgba(0, 175, 240, 0.5);
  box-shadow: 0 8px 40px rgba(0, 175, 240, 0.2);
}

.photo-strip-item:nth-child(2):hover {
  transform: translateY(20px) scale(1.04) rotate(1deg);
}

.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== GRADIENT DIVIDERS ===== */

.stats,
.benefits,
.how,
.about,
.proof,
.testimonials,
.who,
.faq {
  border-top: 1px solid transparent;
  background-clip: padding-box;
  position: relative;
}

.stats::before,
.benefits::before,
.proof::before,
.testimonials::before,
.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(80%, 600px);
  height: 1px;
  background: linear-gradient(90deg, transparent, #5BCEFA, #FFFFFF, #F5A9B8, transparent);
  opacity: 0.4;
}

/* ===== SECTION LABEL FLAIR ===== */

.section-label {
  position: relative;
  padding-left: 1.5rem;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent), 0 0 24px rgba(0, 175, 240, 0.3);
  animation: labelPulse 2s ease-in-out infinite;
}

@keyframes labelPulse {
  0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
  50% { opacity: 0.6; transform: translateY(-50%) scale(0.8); }
}

/* ===== ARTICLE PAGES ===== */

.article-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
}

.article-header {
  margin-bottom: 3rem;
}

.article-back {
  display: inline-block;
  color: var(--accent-light);
  font-size: 0.875rem;
  text-decoration: none;
  margin-bottom: 2rem;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.article-back:hover {
  opacity: 1;
}

.article-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.article-subtitle {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  opacity: 0.7;
}

.article-body h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.article-body h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--accent-light);
}

.article-body p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.article-body ul,
.article-body ol {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.article-body li {
  margin-bottom: 0.5rem;
}

.article-body a {
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.article-body a:hover {
  color: var(--accent-pink);
}

.article-body strong {
  color: var(--text);
  font-weight: 600;
}

/* ===== PROOF / RESULTS ===== */

.proof {
  padding: 6rem 2rem;
  text-align: center;
}

.proof-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.proof-lead {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 480px;
  margin: 0 auto 3rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.proof-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  margin: 0;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.proof-card:hover {
  border-color: rgba(0, 175, 240, 0.4);
  box-shadow: 0 0 30px rgba(0, 175, 240, 0.1);
}

.proof-card .card-content {
  position: relative;
  z-index: 1;
}

.proof-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px 12px 0 0;
}

.proof-card figcaption {
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

/* ===== REDUCED MOTION ===== */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .animate-in { opacity: 1; transform: none; }
  .orb { animation: none; }
  .marquee-track { animation: none; }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
  .how-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .about-visual { order: -1; }

  .stats-inner { grid-template-columns: 1fr; }

  .photo-strip-item:nth-child(3) { display: none; }
  .photo-strip-inner { gap: 1rem; }
}

@media (max-width: 640px) {
  .header { padding: 0.85rem 1rem; }
  .header.scrolled { padding: 0.75rem 1rem; }

  .logo { font-size: 1.1rem; }

  .nav-cta {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    border-radius: 8px;
  }

  .hero {
    padding: 5rem 1.25rem 3.5rem;
    min-height: auto;
  }

  .hero-title { font-size: 2.25rem; }
  .hero-lead { font-size: 1rem; margin-bottom: 2rem; }
  .hero-badge { font-size: 0.8125rem; padding: 0.4rem 0.9rem; margin-bottom: 1.5rem; }

  .btn { padding: 0.9rem 1.5rem; font-size: 1rem; border-radius: 12px; }

  .benefits,
  .how,
  .about,
  .proof,
  .testimonials,
  .who,
  .faq,
  .cta {
    padding: 4rem 1.25rem;
  }

  .benefits-title,
  .how-title,
  .testimonials-title,
  .faq-title,
  .who-title,
  .proof-title {
    margin-bottom: 2.5rem;
  }

  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .stat { padding: 1.75rem 1.25rem; }
  .stat-num { font-size: 1.75rem; }
  .stat-label { font-size: 0.8125rem; }

  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  /* About photo stack — fit mobile without overflow */
  .about-photo-stack {
    width: 200px;
    height: 260px;
    margin: 0 auto;
  }
  .about-photo-ring { border-radius: 16px; }
  .about-photo {
    width: 194px;
    height: 240px;
    border-radius: 13px;
  }
  .about-photo-secondary {
    width: 90px;
    height: 90px;
    right: -10px;
    bottom: -10px;
    border-radius: 12px;
  }

  .about-avatar { width: 90px; height: 90px; font-size: 2.25rem; }

  /* Proof grid — single column */
  .proof-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 1rem;
  }

  .proof-card figcaption {
    padding: 0.75rem 1rem;
    font-size: 0.8125rem;
  }

  /* Photo strip — flexible sizing */
  .photo-strip { padding: 1.5rem 0; }
  .photo-strip-inner {
    gap: 0.75rem;
    padding: 0 1.25rem;
  }
  .photo-strip-item {
    flex: 1 1 0;
    min-width: 0;
    height: 180px;
    border-radius: 12px;
  }
  .photo-strip-item:nth-child(2) { transform: translateY(12px); }
  .photo-strip-item:nth-child(3) { display: none; }

  /* FAQ — more compact */
  .faq-question {
    padding: 1.1rem 1.25rem;
    font-size: 0.9375rem;
  }
  .faq-answer { padding: 0 1.25rem 1.25rem; }
  .faq-answer p { font-size: 0.875rem; }

  /* Form — tighter */
  .apply-form input,
  .apply-form textarea {
    padding: 0.95rem 1rem;
    font-size: 1rem;
    border-radius: 12px;
  }

  /* Marquee */
  .marquee { padding: 1.25rem 0; }
  .marquee-item { font-size: 0.875rem; }
  .marquee-track { gap: 2rem; }

  /* Toast */
  .toast {
    left: 1rem;
    right: 1rem;
    transform: translateX(0) translateY(-120%);
    font-size: 0.875rem;
    padding: 0.85rem 1.25rem;
  }
  .toast.toast-visible {
    transform: translateX(0) translateY(0);
  }

  /* How it works — compact number badges */
  .how-step .card-content { padding: 1.5rem; padding-top: 1.5rem; }
  .how-num { width: 36px; height: 36px; font-size: 1rem; left: 1.5rem; }

  /* Benefit cards — compact */
  .benefit-card .card-content { padding: 1.5rem; }

  /* Testimonial cards — compact */
  .testimonial-card .card-content { padding: 1.5rem; }
  .testimonial-quote { font-size: 0.9375rem; }
  .testimonial-quote-mark { font-size: 3rem; }

  /* Section labels */
  .section-label { font-size: 0.75rem; padding-left: 1.25rem; }
  .section-label::before { width: 6px; height: 6px; }

  /* CTA section */
  .cta h2 { font-size: 1.75rem; }
  .cta-spots { font-size: 0.8125rem; }

  /* Gradient dividers — wider on mobile */
  .stats::before,
  .benefits::before,
  .proof::before,
  .testimonials::before,
  .cta::before {
    width: 90%;
  }
}

@media (max-width: 380px) {
  .hero-title { font-size: 1.9rem; }
  .hero-lead { font-size: 0.9375rem; }
  .nav-cta span { font-size: 0.75rem; }

  .about-photo-stack { width: 180px; height: 230px; }
  .about-photo { width: 174px; height: 210px; }
  .about-photo-secondary { width: 80px; height: 80px; }

  .photo-strip-item { height: 150px; }
  .stat-num { font-size: 1.5rem; }

  .hero-proof { gap: 0.75rem; padding: 1rem 0.75rem; }
  .hero-proof-num { font-size: 1.1rem; }
  .hero-proof-label { font-size: 0.6875rem; }
}

/* ===== HERO PROOF BADGES ===== */

.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding: 1.25rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  text-align: center;
}

.hero-proof-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-proof-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.8;
}

.hero-proof-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .hero-proof {
    gap: 1rem;
    padding: 1rem 1.25rem;
  }
  .hero-proof-num { font-size: 1.25rem; }
  .hero-proof-label { font-size: 0.6875rem; }
  .hero-proof-divider { height: 28px; }
}

/* ===== PROBLEM SECTION ===== */

.problem {
  position: relative;
  z-index: 2;
  padding: 7rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.problem-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 3.5rem;
  max-width: 600px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.problem-card {
  padding: 0;
}

.problem-card .card-content {
  padding: 2rem;
}

.problem-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: 12px;
  color: #f87171;
  transition: all 0.3s ease;
}

.problem-icon svg {
  width: 22px;
  height: 22px;
}

.problem-card:hover .problem-icon {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.25);
  box-shadow: 0 0 16px rgba(239, 68, 68, 0.1);
}

.problem-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.problem-kicker {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--accent-light);
  max-width: 600px;
}

.problem::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(80%, 600px);
  height: 1px;
  background: linear-gradient(90deg, transparent, #5BCEFA, #FFFFFF, #F5A9B8, transparent);
  opacity: 0.4;
}

@media (max-width: 640px) {
  .problem { padding: 4rem 1.25rem; }
  .problem-title { margin-bottom: 2.5rem; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card .card-content { padding: 1.5rem; }
  .problem-kicker { font-size: 1rem; }
}

/* ===== QUALIFICATION SECTION ===== */

.qualify {
  position: relative;
  z-index: 2;
  padding: 7rem 2rem;
  border-top: 1px solid var(--border);
}

.qualify .section-label,
.qualify .qualify-title,
.qualify .qualify-lead,
.qualify .qualify-grid {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.qualify-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.qualify-lead {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 600px;
}

.qualify-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.qualify-col {
  padding: 0;
}

.qualify-col .card-content {
  padding: 2rem;
}

.qualify-col h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.qualify-yes h3 { color: #6ee7b7; }
.qualify-no h3 { color: #fca5a5; }

.qualify-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.qualify-col li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding-left: 1.75rem;
  position: relative;
}

.qualify-yes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 16px;
  height: 16px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}

.qualify-no li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 16px;
  height: 16px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23ef4444' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E");
  background-size: 9px;
  background-position: center;
  background-repeat: no-repeat;
}

.qualify::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(80%, 600px);
  height: 1px;
  background: linear-gradient(90deg, transparent, #5BCEFA, #FFFFFF, #F5A9B8, transparent);
  opacity: 0.4;
}

@media (max-width: 900px) {
  .qualify-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .qualify { padding: 4rem 1.25rem; }
  .qualify-title { margin-bottom: 0.75rem; }
  .qualify-lead { margin-bottom: 2.5rem; }
  .qualify-col .card-content { padding: 1.5rem; }
}

/* ===== FORM TRUST BADGES ===== */

.form-trust {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.form-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  opacity: 0.7;
}

.form-trust-item svg {
  color: var(--accent);
  opacity: 0.8;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .form-trust {
    gap: 0.75rem 1.25rem;
  }
  .form-trust-item { font-size: 0.75rem; }
}

/* ===== CTA SPOTS ICON ===== */

.cta-spots {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.cta-spots-icon {
  flex-shrink: 0;
  opacity: 0.8;
}

/* ===== STICKY MOBILE CTA ===== */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 0.75rem 1rem;
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
  background: rgba(3, 3, 6, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out-expo);
  display: none;
}

.sticky-cta.sticky-cta-active {
  transform: translateY(0);
}

.sticky-cta.sticky-cta-hidden {
  transform: translateY(100%);
}

.sticky-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1.5rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-pink) 100%);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 175, 240, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sticky-cta-btn:active {
  transform: scale(0.98);
}

@media (max-width: 768px) {
  .sticky-cta { display: block; }
}

/* ===== EXIT INTENT POPUP ===== */

.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.exit-popup.exit-popup-visible {
  opacity: 1;
  visibility: visible;
}

.exit-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.exit-popup-content {
  position: relative;
  max-width: 420px;
  width: 100%;
  padding: 2.5rem;
  background: var(--bg-card-solid);
  border: 1px solid var(--border-hover);
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(0, 175, 240, 0.1);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.5s var(--ease-out-expo);
}

.exit-popup-visible .exit-popup-content {
  transform: scale(1) translateY(0);
}

.exit-popup-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.75rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  transition: color 0.2s ease;
}

.exit-popup-close:hover { color: var(--text); }

.exit-popup h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.exit-popup p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.exit-popup-cta {
  margin-bottom: 1rem;
}

.exit-popup-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  opacity: 0.6;
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .exit-popup-content { padding: 2rem 1.5rem; }
  .exit-popup h3 { font-size: 1.35rem; }
}

/* ===== BEFORE & AFTER ===== */

.proof-ba {
  margin-top: 3rem;
  text-align: center;
}

.proof-ba-heading {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.proof-ba-sub {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.proof-ba-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  max-width: 750px;
  margin: 0 auto;
}

.proof-ba-card {
  padding: 0;
  text-align: center;
}

.proof-ba-card .card-content {
  padding: 1.5rem;
}

.proof-ba-label {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.proof-ba-before .proof-ba-label {
  color: #fca5a5;
}

.proof-ba-after .proof-ba-label {
  color: #6ee7b7;
}

.proof-ba-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 180px;
  border: 2px dashed var(--border);
  border-radius: 14px;
  padding: 2rem 1rem;
  color: var(--text-muted);
  opacity: 0.5;
  transition: opacity 0.3s ease, border-color 0.3s ease;
}

.proof-ba-card:hover .proof-ba-placeholder {
  opacity: 0.7;
  border-color: rgba(0, 175, 240, 0.2);
}

.proof-ba-placeholder span {
  font-size: 0.8125rem;
}

.proof-ba-placeholder img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.proof-ba-stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1rem;
}

.proof-ba-stat {
  text-align: center;
}

.proof-ba-stat-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.proof-ba-before .proof-ba-stat-num {
  color: #fca5a5;
}

.proof-ba-after .proof-ba-stat-num {
  background: linear-gradient(135deg, #6ee7b7 0%, #5BCEFA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.proof-ba-stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.proof-ba-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.proof-ba-pill {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
}

.proof-ba-pill-bad {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #fca5a5;
}

.proof-ba-pill-good {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #6ee7b7;
}

.proof-ba-credit {
  font-size: 0.875rem;
  color: var(--text-muted);
  opacity: 0.6;
  margin-top: 1.25rem;
  font-style: italic;
}

.proof-ba-arrow {
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
}

@media (max-width: 640px) {
  .proof-ba-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .proof-ba-arrow {
    transform: rotate(90deg);
  }
  .proof-ba-placeholder {
    min-height: 140px;
  }
}

/* ===== TWO PATHS SECTION ===== */

.paths {
  position: relative;
  z-index: 2;
  padding: 7rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.paths-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 3.5rem;
  max-width: 500px;
}

.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.paths-card {
  padding: 0;
}

.paths-card .card-content {
  padding: 2.25rem;
}

.paths-badge {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

.paths-badge-existing {
  background: rgba(0, 175, 240, 0.12);
  border: 1px solid rgba(0, 175, 240, 0.25);
  color: var(--accent-light);
}

.paths-badge-new {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #6ee7b7;
}

.paths-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.paths-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.paths-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.paths-list li {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.5;
  padding-left: 1.6rem;
  position: relative;
  opacity: 0.9;
}

.paths-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(0, 175, 240, 0.3);
}

.paths-cta {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--accent-light);
  max-width: 600px;
}

.paths::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(80%, 600px);
  height: 1px;
  background: linear-gradient(90deg, transparent, #5BCEFA, #FFFFFF, #F5A9B8, transparent);
  opacity: 0.4;
}

@media (max-width: 900px) {
  .paths-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .paths { padding: 4rem 1.25rem; }
  .paths-title { margin-bottom: 2.5rem; }
  .paths-card .card-content { padding: 1.75rem; }
  .paths-card h3 { font-size: 1.2rem; }
  .paths-cta { font-size: 1rem; }
}


/* ===== TRANS PRIDE STRIPE ===== */

.pride-stripe {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #5BCEFA 0%, #5BCEFA 20%, #F5A9B8 20%, #F5A9B8 40%, #FFFFFF 40%, #FFFFFF 60%, #F5A9B8 60%, #F5A9B8 80%, #5BCEFA 80%, #5BCEFA 100%);
  z-index: 300;
  pointer-events: none;
}

.header {
  top: 3px;
}

/* ===== BOLDER TYPOGRAPHY ===== */

.hero-title {
  font-size: clamp(3.5rem, 8vw, 6rem);
}

.hero-lead {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.75);
}

.btn-primary {
  font-size: 1.125rem;
  padding: 1.1rem 2.25rem;
  letter-spacing: 0.01em;
}

.nav-cta {
  font-size: 1rem;
  padding: 0.65rem 1.4rem;
}

@media (max-width: 640px) {
  .hero-title { font-size: 2.5rem; }
  .header { top: 3px; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 2.1rem; }
}

/* ===== PROGRAMMATIC SEO PAGES ===== */

.prog-trust-bar {
  background: rgba(0, 175, 240, 0.04);
  border-top: 1px solid rgba(0, 175, 240, 0.12);
  border-bottom: 1px solid rgba(0, 175, 240, 0.12);
  padding: 1.25rem 1.5rem;
}

.prog-trust-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  justify-content: center;
}

.prog-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.prog-trust-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

.prog-hero {
  position: relative;
  z-index: 1;
  padding: 9rem 1.5rem 5rem;
  text-align: center;
}

.prog-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.prog-hero .hero-title {
  margin-bottom: 1.25rem;
}

.prog-hero .hero-lead {
  margin-bottom: 2.5rem;
}

.prog-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.prog-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.prog-hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.875rem 2.25rem;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.2s var(--ease-out-expo), box-shadow 0.2s var(--ease-out-expo);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 175, 240, 0.4);
}

.prog-cta-note {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* SECTIONS */

.prog-section {
  position: relative;
  z-index: 1;
  padding: 5rem 1.5rem;
}

.prog-section-alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.prog-section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.prog-section .section-label {
  margin-bottom: 2.5rem;
  display: block;
}

/* WHY POINTS */

.prog-points {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.prog-point {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  align-items: start;
}

.prog-point-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.7;
  padding-top: 0.2rem;
}

.prog-point-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.prog-point-body p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* SERVICES GRID */

.prog-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.prog-service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: border-color 0.2s;
}

.prog-service-card:hover {
  border-color: var(--border-hover);
}

.prog-service-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.prog-service-card h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.prog-service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.prog-model-note {
  font-size: 0.9375rem;
  color: var(--text-muted);
  padding: 1.25rem 1.5rem;
  background: rgba(0, 175, 240, 0.06);
  border: 1px solid rgba(0, 175, 240, 0.15);
  border-radius: 12px;
  line-height: 1.6;
}

.prog-model-note strong {
  color: var(--text);
}

/* TESTIMONIALS */

.prog-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.prog-testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
}

.prog-testimonial-text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 1rem;
  font-style: italic;
}

.prog-testimonial-credit {
  font-size: 0.8125rem;
  color: var(--accent);
  font-weight: 500;
}

/* FINAL CTA */

.prog-cta-section {
  background: linear-gradient(135deg, rgba(0,175,240,0.05) 0%, rgba(255,107,157,0.04) 100%);
  border-top: 1px solid var(--border);
}

.prog-cta-inner {
  text-align: center;
}

.prog-cta-heading {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.prog-cta-body {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* RELATED LINKS */

.prog-related {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.prog-related-link {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.prog-related-link:hover {
  border-color: var(--border-hover);
  color: var(--text);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .prog-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .prog-testimonials {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .prog-hero {
    padding: 7rem 1.25rem 3.5rem;
  }
  .prog-stats {
    gap: 1.25rem;
  }
  .prog-services-grid {
    grid-template-columns: 1fr;
  }
  .prog-point {
    grid-template-columns: 2.5rem 1fr;
    gap: 1rem;
  }
  .prog-cta-heading {
    font-size: 1.6rem;
  }
  .prog-section {
    padding: 3.5rem 1.25rem;
  }
}

