:root {
  --blue: #2D80FF;
  --purple: #A944FF;
  --gradient: linear-gradient(90deg, var(--blue), var(--purple));
  --text: #0F172A;
  --text-light: #64748B;
  --bg: #FFFFFF;
  --bg-soft: #F8FAFC;
  --border: #E2E8F0;
}

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

body {
  font-family: 'Heebo', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HERO */
.hero {
  position: relative;
  padding: 72px 0 56px;
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  z-index: 0;
}

.hero-glow-1 {
  width: 320px;
  height: 320px;
  background: var(--blue);
  top: -100px;
  right: -80px;
}

.hero-glow-2 {
  width: 280px;
  height: 280px;
  background: var(--purple);
  bottom: -100px;
  left: -80px;
}

.hero-inner { position: relative; z-index: 1; }

.stat-badge {
  display: inline-block;
  background: rgba(45,128,255,0.08);
  border: 1px solid rgba(45,128,255,0.25);
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}

.hero-note {
  font-size: 1rem;
  color: var(--text-light);
}

.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.avatar-stack {
  display: flex;
}

.avatar-stack img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bg);
  margin-right: -12px;
  box-shadow: 0 2px 6px rgba(15,23,42,0.15);
}

.avatar-pop {
  opacity: 0;
  animation: avatarPop 0.5s ease forwards;
}

@keyframes avatarPop {
  from { opacity: 0; transform: scale(0.4); }
  to { opacity: 1; transform: scale(1); }
}

.avatar-stack img:first-child {
  margin-right: 0;
}

.proof-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
}

/* VIDEO */
.video-section { padding: 40px 0; }

.video-wrapper {
  max-width: 720px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(15,23,42,0.12);
}

.main-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #0F172A;
}

.main-video video {
  position: absolute;
  top: 0; right: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

/* SECTION TITLES */
.section-title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 28px;
}

/* FORM */
.form-section { padding: 48px 0; }

.form-subtitle {
  text-align: center;
  font-size: 1rem;
  color: var(--text-light);
  max-width: 480px;
  margin: -16px auto 28px;
}

.form-embed-wrapper {
  max-width: 480px;
  margin: 0 auto;
  padding: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(15,23,42,0.08);
  position: relative;
  overflow: hidden;
}

.form-embed-wrapper::before {
  content: "";
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 4px;
  background: var(--gradient);
}

.form-embed-wrapper iframe {
  width: 100%;
  height: 600px;
  display: block;
}

/* TESTIMONIALS */
.testimonials { padding: 48px 0; background: var(--bg-soft); }

.testimonials-title {
  font-size: 2.3rem;
  font-weight: 800;
  text-wrap: balance;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
}

.avatar-play {
  position: relative;
  display: inline-block;
  width: 64px;
  height: 64px;
  margin-bottom: 12px;
  border-radius: 50%;
  padding: 2px;
  background: var(--gradient);
  cursor: pointer;
}

.avatar-play:has(> .testimonial-avatar):not(:has(.play-badge)) {
  cursor: default;
  background: var(--border);
}

.testimonial-avatar {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bg);
}

.play-badge {
  position: absolute;
  bottom: -2px;
  left: -2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg);
  box-shadow: 0 2px 6px rgba(15,23,42,0.25);
}

.play-badge svg { width: 11px; height: 11px; }

.testimonial-text {
  font-size: 0.98rem;
  margin-bottom: 14px;
}

.testimonial-name {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

.testimonial-role {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* VIDEO LIGHTBOX */
.video-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 20px;
}

.video-lightbox-inner {
  position: relative;
  width: 100%;
  max-width: 720px;
}

.video-lightbox-close {
  position: absolute;
  top: -40px;
  left: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 6px;
}

.video-lightbox-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}

.video-lightbox-frame iframe {
  position: absolute;
  top: 0; right: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ABOUT */
.about { padding: 56px 0; }

.about-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-content { flex: 1; text-align: right; }
.about-content .section-title { text-align: right; }

.about-title {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  text-wrap: balance;
}

.about-text {
  font-size: 1.05rem;
  color: var(--text);
}

.about-media {
  width: 240px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.about-photo-frame {
  width: 100%;
  padding: 3px;
  border-radius: 20px;
  background: var(--gradient);
  box-shadow: 0 10px 30px rgba(15,23,42,0.15);
}

.about-team-photo {
  display: block;
  width: 100%;
  border-radius: 17px;
  object-fit: cover;
}

.about-video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15,23,42,0.12);
}

.about-video-wrapper iframe {
  position: absolute;
  top: 0; right: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* FOOTER */
.site-footer {
  padding: 28px 0;
  text-align: center;
  color: var(--text-light);
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up, .reveal, .avatar-pop {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .hero { padding: 56px 0 40px; }
  .hero-title { font-size: 1.85rem; }
  .hero-subtitle { font-size: 1.05rem; }
  .video-section { padding: 24px 0 12px; }
  .form-section#form-1 { padding-top: 12px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.35rem; }
  .about-inner { flex-direction: column; }
  .about-content { text-align: center; }
  .about-content .section-title { text-align: center; }
  .about-title { font-size: 1.85rem; }
  .testimonials-title { font-size: 1.85rem; }
  .about-media { width: 200px; }
}
