:root {
  --bg: #f3eeea;
  --bg-soft: #f7f2ee;
  --ink: #2e2558;
  --ink-soft: #4f4774;
  --primary: #463075;
  --line: #ddd2c9;
  --brand: #4e2d86;
  --brand-dark: #3f236f;
  --card: #f8f5f3;
  --white: #fff;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--bg-soft);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 76vh;
  background: var(--bg);
}

.hero-media {
  background:
    linear-gradient(to left, rgba(243, 238, 234, 1) 0%, rgba(243, 238, 234, .68) 26%, rgba(243, 238, 234, .2) 52%, rgba(243, 238, 234, 0) 74%),
    linear-gradient(0deg, rgba(0,0,0,.08), rgba(0,0,0,.08)),
    url("img_index/hero.jpg") center/cover no-repeat,
    radial-gradient(circle at 75% 18%, rgba(255,255,255,.75), transparent 35%),
    linear-gradient(130deg, #d4b7a4, #bea4aa 50%, #9b95b1);
  position: relative;
  overflow: hidden;
}

.hero-media::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  left: -150px;
  bottom: -220px;
}

.hero-copy {
  padding: 54px 54px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.eyebrow {
  font-size: 16px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  width: fit-content;
  padding-bottom: 8px;
}

h1 {
  margin: 0;
  font-size: clamp(28px, 4.1vw, 52px);
  line-height: 1.05;
  font-weight: 500;
}

.lead {
  margin: 0;
  font-size: clamp(18px, 1.7vw, 26px);
  line-height: 1.22;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.sub-link {
  width: fit-content;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 19px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.trial-note {
  margin: 4px 0 0;
  font-size: 18px;
  line-height: 1.35;
  color: var(--ink-soft);
  font-weight: 700;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 8px;
  border: 2px solid var(--brand);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: .2s ease;
  min-width: 250px;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(180deg, #593395, var(--brand-dark));
  box-shadow: 0 8px 20px rgba(59, 35, 98, .2);
}

.btn-primary:hover { filter: brightness(1.06); }

.btn-outline {
  color: var(--brand);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(78, 45, 134, .07);
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 58px 22px;
  text-align: center;
}

.section h2 {
  margin: 0 0 18px;
  font-size: clamp(26px, 3.1vw, 40px);
  font-weight: 500;
}

.section p {
  margin: 0 auto;
  max-width: 860px;
  font-size: clamp(17px, 1.5vw, 24px);
  line-height: 1.45;
  color: var(--ink-soft);
}

.cards {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 16px;
}

.card {
  background: var(--card);
  border: 1px solid #eee4db;
  border-radius: 10px;
  padding: 24px 20px;
  text-align: left;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 30px;
  font-weight: 500;
}

.card-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  display: inline-block;
  color: #6e57a7;
}

.card-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.card p {
  margin: 0;
  font-size: 19px;
  line-height: 1.32;
  max-width: none;
}

.mockup {
  margin-top: 36px;
  background: #efe8f7;
  color: var(--ink);
  border: 1px solid #dfd2ee;
  border-radius: 16px;
  padding: 28px 22px;
  text-align: left;
}

.mockup h3 {
  margin: 0;
  font-size: clamp(22px, 2.1vw, 30px);
}

.faq-block h3:not(:first-child) {
  margin-top: 44px;
}

.faq-block p {
  margin-top: 12px;
  margin-bottom: 0;
  line-height: 1.55;
}

.faq-block ul {
  margin-top: 12px;
  margin-bottom: 0;
}

.faq-block h3 {
  position: relative;
  padding-left: 18px;
}

.faq-block h3::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 700;
}

.faq-block p + h3,
.faq-block ul + h3 {
  margin-top: 54px;
}

.check-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  font-size: clamp(19px, 1.7vw, 26px);
  line-height: 1.42;
  color: var(--ink-soft);
}

.check-list li + li {
  margin-top: 8px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--primary);
  font-weight: 700;
}

.cta-strip {
  margin-top: 26px;
  background: radial-gradient(circle at 20% 15%, #5e3ca0 0, #2f1b64 55%, #2b195d 100%);
  color: #fff;
  text-align: center;
  padding: 64px 20px 72px;
}

.cta-strip h3 {
  margin: 0 0 24px;
  font-size: clamp(26px, 2.8vw, 44px);
  font-weight: 500;
}

.cta-strip p {
  margin: 0 0 24px;
  font-size: clamp(17px, 1.5vw, 23px);
  color: rgba(255, 255, 255, 0.92);
}

.cta-strip small {
  display: block;
  margin-top: 18px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-strip .btn {
  border-color: #efe3d5;
  background: #efe3d5;
  color: #2f1b64;
  min-width: 320px;
}

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero-media { min-height: 290px; }
  .cards { grid-template-columns: 1fr; }
  .btn { min-width: 100%; }
  .cta-strip .btn { min-width: 100%; }
}
