:root {
  --bg: #f7f2ff;
  --panel: #ffffff;
  --soft: #f3ecff;
  --text: #2b2233;
  --muted: #6b5b7a;
  --primary: #6a3fa0;
  --accent: #f5d24c;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.center {
  text-align: center;
}
.max-650 {
  max-width: 650px;
  margin: 0 auto;
}
.mt-24 {
  margin-top: 24px;
}

.top-banner {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.top-banner__text {
  margin: 0;
  padding: 14px 0;
  text-align: center;
  font-weight: 700;
  color: var(--primary);
  font-size: 20px;
}

.hero {
  padding: 34px 0 24px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: start;
}
.hero-copy {
  background: rgba(255, 255, 255, 0.55);
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-copy h1 {
  margin: 0 0 10px;
  font-size: 44px;
  line-height: 1.1;
  color: var(--primary);
}
.hero-sub {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
}
.hero-note {
  margin-top: 12px;
  color: var(--muted);
}

.hero-card {
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.video-box {
  padding: 14px;
  background: #ffffff;
}
.video-placeholder {
  border-radius: 18px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(135deg, #2a1639, #120818);
  color: #fff;
  text-align: center;
}
.video-placeholder p {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
}
.video-placeholder small {
  opacity: 0.8;
}

.video-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  border-radius: 12px;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  display: block;
}

.cta-strip {
  padding: 16px;
  background: var(--soft);
  text-align: center;
}
.cta-strip p {
  margin: 0 0 10px;
  color: var(--text);
}

.section {
  padding: 44px 0;
}
.section-soft {
  background: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: center;
}
.section h2 {
  margin: 0 0 10px;
  font-size: 32px;
  color: var(--primary);
}
.section p {
  color: var(--muted);
}

.image-card {
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px;
  max-width: 420px;
  margin-left: auto;
}

.img-placeholder {
  border-radius: 18px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #f6f0ff;
  color: var(--muted);
  text-align: center;
  border: 1px dashed rgba(0, 0, 0, 0.15);
}

.compare-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.compare-card {
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.compare-card h3 {
  margin: 0 0 10px;
  color: var(--primary);
}
.compare-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.compare-card.twin h3 {
  color: #b04a7a;
}

.test-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.test-card {
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  text-align: center;
}
.avatar {
  width: 70px;
  height: 70px;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  display: block;
  margin: 0 auto 10px;
  background: #eee;
}

.test-card h4 {
  margin: 0 0 8px;
  color: var(--text);
}
.test-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  padding: 13px 22px;
  transition:
    transform 0.08s ease,
    opacity 0.08s ease;
}
.btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-accent {
  background: var(--accent);
  color: #1d1b16;
}
.btn-big {
  padding: 16px 28px;
  font-size: 18px;
}

.footer {
  padding: 26px 0;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.footer-links {
  display: flex;
  gap: 14px;
}
.footer a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}
.footer a:hover {
  color: var(--primary);
}

/* Mobile */
@media (max-width: 900px) {
  .hero-grid,
  .two-col {
    grid-template-columns: 1fr;
  }
  .test-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-copy h1 {
    font-size: 36px;
  }
}
@media (max-width: 520px) {
  .test-grid {
    grid-template-columns: 1fr;
  }
}

/* HERO VIDEO FIX — FORCE HORIZONTAL */
.hero-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
  background: #000;
  display: block;
}

.image-card img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  border-radius: 18px;
  display: block;
}

.testimonial-note {
  font-size: 13px;
  color: #6b5b7a;
  text-align: center;
  margin: 6px auto 18px;
  max-width: 650px;
}

.footer-disclaimer {
  font-size: 12px;
  color: #6b5b7a;
  line-height: 1.6;
  margin-top: 20px;
  max-width: 900px;
}

.footer-center {
  text-align: center;
}

.footer-tagline {
  font-size: 13px;
  color: #6b5b7a;
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #6b5b7a;
  text-decoration: none;
  font-size: 14px;
}

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

.footer-disclaimer {
  font-size: 12px;
  color: #6b5b7a;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}

.simple-header {
  padding: 20px 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.site-logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}
