:root {
  --purple: #7430c4;
  --purple-light: #9254de;
  --purple-dark: #5b21a5;
  --green: #2fcf67;
  --ink: #071126;
  --text: #25364f;
  --muted: #5c6d87;
  --line: #dfe5ee;
  --page-bg: #f1eadf;
  --section-bg: #fff7ed;
  --soft: #f8f7fb;
  --soft-purple: #efe6fb;
  --white: #ffffff;
  --black: #08090b;
  --brand-header: #2a125f;
  --brand-header-line: #55209b;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(245, 158, 11, 0.18), transparent 30%),
    radial-gradient(circle at 86% 34%, rgba(116, 48, 196, 0.12), transparent 28%),
    linear-gradient(180deg, #f5efe4 0%, #eadfce 48%, #f7f1e8 100%),
    var(--page-bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.promo-bar {
  align-items: center;
  background: var(--purple-light);
  color: var(--white);
  display: flex;
  font-size: 15px;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  min-height: 42px;
  padding: 8px 18px;
}

.promo-bar a {
  color: var(--white);
  text-decoration: underline;
}

.main-header {
  align-items: center;
  background: var(--brand-header);
  border-bottom: 1px solid var(--brand-header-line);
  display: flex;
  gap: 32px;
  min-height: 96px;
  justify-content: center;
  padding: 0 32px;
  position: sticky;
  top: 0;
  z-index: 30;
}

.logo {
  align-items: center;
  color: var(--white);
  display: inline-flex;
  font-weight: 900;
  gap: 5px;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo {
  height: 62px;
  object-fit: contain;
  width: auto;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: 28px;
}

.main-nav a {
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.header-actions {
  display: flex;
  gap: 10px;
  margin-left: 18px;
}

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 7px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  text-decoration: none;
}

.btn.purple {
  background: var(--purple);
  color: var(--white);
}

.btn.light {
  background: var(--white);
  border-color: #d9dfe8;
  color: var(--ink);
}

.btn.outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.btn.large {
  min-height: 62px;
  min-width: 214px;
  font-size: 20px;
}

.btn.block {
  width: 100%;
}

.hero-landing {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.82)),
    url("assets/cinema-hero.png") center / cover no-repeat;
  color: var(--white);
  display: grid;
  min-height: 745px;
  padding: 74px 18px 62px;
  position: relative;
  text-align: center;
}

.hero-content {
  margin: 0 auto;
  max-width: 1180px;
  position: relative;
  z-index: 1;
}

.offer-pill {
  align-items: center;
  background: rgba(95, 67, 13, 0.72);
  border: 2px solid rgba(201, 158, 22, 0.55);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.42);
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 34px;
  min-height: 62px;
  padding: 14px 42px;
  font-size: 17px;
  font-weight: 900;
}

.gift::before {
  content: "*";
  color: #facc15;
  margin-right: 10px;
}

.hero-landing h1 {
  color: var(--white);
  font-size: clamp(48px, 6vw, 74px);
  line-height: 1.22;
  margin: 0 auto 24px;
  max-width: 1220px;
}

.hero-landing h1 span {
  color: var(--purple-light);
  display: block;
}

.hero-landing p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 22px;
  font-weight: 500;
  margin: 0 auto;
  max-width: 680px;
}

.hero-buttons,
.inline-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.hero-buttons {
  margin-top: 40px;
}

.narrow {
  margin: 0 auto;
  max-width: 1060px;
  width: calc(100% - 36px);
}

.text-intro {
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid rgba(214, 188, 148, 0.44);
  border-radius: 0 0 24px 24px;
  padding: 40px 0 90px;
}

.text-intro h2 {
  font-size: 26px;
  line-height: 1.2;
  margin: 0 0 4px;
}

.text-intro p,
.text-intro li {
  font-size: 17px;
}

.text-intro p {
  margin: 0;
}

.section {
  margin: 0 auto;
  max-width: 1220px;
  padding: 52px 18px;
}

.center {
  text-align: center;
}

.section-pill {
  background: var(--soft-purple);
  border: 1px solid #d7c4fb;
  border-radius: 999px;
  color: var(--purple-dark);
  display: inline-flex;
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 16px;
  padding: 7px 15px;
}

.section-pill.left {
  margin-left: 0;
}

.section h2 {
  color: var(--ink);
  font-size: clamp(38px, 4vw, 50px);
  line-height: 1.16;
  margin: 0 auto 18px;
  max-width: 980px;
}

.section-lead {
  color: var(--muted);
  font-size: 19px;
  margin: 0 auto 30px;
  max-width: 860px;
}

.intent-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 28px auto 20px;
  max-width: 1120px;
}

.intent-grid article,
.feature-card,
.price-plan,
.proof-grid article,
.accordion details,
.contact-card,
.contact-form,
.steps article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.intent-grid article {
  padding: 18px;
  text-align: left;
}

.intent-grid h3,
.feature-card h3,
.proof-grid h3 {
  font-size: 19px;
  margin: 0 0 6px;
}

.intent-grid p,
.feature-card p,
.proof-grid p {
  color: var(--text);
  font-size: 18px;
  margin: 0;
}

.intent-grid a {
  display: inline-block;
  font-weight: 900;
  margin-top: 4px;
  text-decoration: none;
}

.seo-note {
  background: #f6f0fb;
  border: 1px solid #d8b8f2;
  border-radius: var(--radius);
  font-size: 18px;
  margin: 20px auto 90px;
  max-width: 1120px;
  padding: 18px;
  text-align: left;
}

.feature-grid,
.content-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 38px;
}

.feature-list {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 24px auto 0;
  max-width: 1120px;
}

.feature-list article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  padding: 24px;
}

.feature-list h3 {
  font-size: 20px;
  margin: 0 0 8px;
}

.feature-list p {
  color: var(--text);
  font-size: 17px;
  margin: 0;
}

.feature-card {
  min-height: 250px;
  padding: 32px;
  text-align: left;
}

.feature-card.featured {
  border-color: #d5c1fb;
  box-shadow: 0 28px 65px rgba(85, 39, 145, 0.12);
}

.icon-box {
  align-items: center;
  background: var(--soft-purple);
  border: 1px solid #d5c1fb;
  border-radius: 10px;
  color: var(--purple);
  display: inline-flex;
  font-weight: 900;
  height: 64px;
  justify-content: center;
  margin-bottom: 24px;
  min-width: 64px;
  padding: 0 10px;
}

.table-wrap {
  border-radius: var(--radius);
  margin: 28px auto 0;
  max-width: 1120px;
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  min-width: 820px;
  text-align: left;
  width: 100%;
}

th {
  background: #f0eaf4;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

th:first-child {
  border-top-left-radius: var(--radius);
}

th:last-child {
  border-top-right-radius: var(--radius);
}

td,
th {
  border-bottom: 1px solid var(--line);
  padding: 18px 16px;
  vertical-align: top;
}

td {
  font-size: 17px;
}

.price-grid {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 72px auto 38px;
  max-width: 1280px;
}

.price-plan {
  display: flex;
  flex-direction: column;
  min-height: 510px;
  padding: 38px 40px;
  position: relative;
  text-align: center;
}

.price-plan h3 {
  font-size: 15px;
  letter-spacing: 0.7px;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.price-plan .price {
  color: var(--purple);
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  margin: 0 0 16px;
}

.price-plan .price span {
  font-size: 24px;
  margin-right: 4px;
}

.price-plan .price sup {
  font-size: 35px;
}

.price-plan > p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 24px;
}

.price-plan ul {
  border-top: 1px solid var(--line);
  color: var(--text);
  flex: 1;
  font-size: 18px;
  line-height: 1.55;
  list-style: none;
  margin: 0 0 28px;
  padding: 24px 0 0;
  text-align: left;
}

.price-plan li {
  margin-bottom: 16px;
  padding-left: 32px;
  position: relative;
}

.price-plan li::before {
  border: 2px solid currentColor;
  border-radius: 50%;
  color: var(--purple);
  content: "";
  height: 15px;
  left: 0;
  position: absolute;
  top: 7px;
  width: 15px;
}

.price-plan.hot {
  background: linear-gradient(180deg, #7430c4, #8946d5);
  border-color: var(--purple-dark);
  color: var(--white);
  transform: translateY(-12px);
}

.price-plan.hot h3,
.price-plan.hot .price,
.price-plan.hot p,
.price-plan.hot ul,
.price-plan.hot li::before {
  color: var(--white);
}

.popular-badge {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  justify-content: center;
  margin: 0 auto 18px;
  padding: 7px 14px;
  text-transform: uppercase;
}

.product-split {
  align-items: center;
  display: grid;
  gap: 30px;
  grid-template-columns: 0.95fr 1.05fr;
}

.product-split h2 {
  font-size: clamp(48px, 5vw, 64px);
  margin-left: 0;
  text-align: left;
}

.big-copy {
  color: var(--text);
  font-size: 24px;
  margin: 0;
  text-align: left;
}

.product-split img {
  justify-self: center;
  max-height: 330px;
  object-fit: contain;
}

.stats-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 28px 40px;
  text-align: center;
}

.stats-card strong {
  color: var(--purple);
  display: block;
  font-size: 48px;
  line-height: 1;
}

.stats-card span {
  color: var(--text);
  font-size: 14px;
  text-transform: uppercase;
}

.cta-line {
  margin-top: 60px;
}

.cta-line p {
  font-size: 20px;
}

.proof-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 26px auto 22px;
  max-width: 1120px;
  text-align: left;
}

.proof-grid article {
  padding: 18px;
}

.seo-keyword-zone {
  padding-top: 24px;
}

.seo-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 34px auto 0;
  max-width: 1120px;
  text-align: left;
}

.seo-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  padding: 22px;
}

.seo-grid h3 {
  font-size: 20px;
  margin: 0 0 10px;
}

.seo-grid p {
  color: var(--text);
  font-size: 17px;
}

.seo-grid a {
  color: var(--purple-dark);
  font-weight: 900;
  text-decoration: none;
}

.faq-zone {
  background: linear-gradient(180deg, rgba(255, 247, 237, 0.96), rgba(245, 235, 220, 0.96));
  max-width: none;
}

.accordion {
  display: grid;
  gap: 14px;
  margin: 60px auto 0;
  max-width: 810px;
}

.accordion details {
  text-align: left;
}

summary {
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  list-style: none;
  padding: 22px;
  position: relative;
}

summary::after {
  color: var(--purple);
  content: "v";
  font-size: 22px;
  position: absolute;
  right: 24px;
  top: 17px;
}

details p {
  color: var(--muted);
  margin: 0;
  padding: 0 22px 22px;
}

.help-box {
  margin: 26px auto 0;
  max-width: 810px;
  text-align: left;
}

.help-box h3 {
  margin-bottom: 0;
}

.final-cta {
  align-items: center;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  color: var(--white);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 36px 44px;
}

.final-cta h2 {
  font-size: 34px;
  line-height: 1.1;
  margin: 0 0 18px;
}

.final-cta p {
  font-size: 18px;
  font-weight: 800;
  margin: 0;
}

.footer-dark {
  background: var(--brand-header);
  color: var(--white);
  padding: 76px 18px 24px;
}

.footer-inner {
  display: grid;
  gap: 56px;
  grid-template-columns: 1.5fr repeat(4, 0.8fr);
  margin: 0 auto;
  max-width: 1030px;
}

.footer-brand p {
  color: #d9dee8;
  font-size: 14px;
  margin: 26px 0 120px;
  max-width: 300px;
}

.footer-col,
.footer-brand {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-col h3,
.support-block h3 {
  border-bottom: 1px solid #3b3b3b;
  display: inline-block;
  font-size: 17px;
  margin: 0 0 4px;
  padding-bottom: 8px;
}

.footer-col a {
  color: #e5edf7;
  font-size: 14px;
  text-decoration: none;
}

.support-block ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid #2b2b2b;
  color: #cbd5e1;
  display: flex;
  justify-content: space-between;
  margin: 56px auto 0;
  max-width: 1030px;
  padding-top: 30px;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom div span {
  border: 1px solid #30343d;
  border-radius: 999px;
  padding: 8px 14px;
}

.whatsapp {
  align-items: center;
  background: var(--green);
  border: 9px solid rgba(47, 207, 103, 0.18);
  border-radius: 999px;
  bottom: 28px;
  box-shadow: 0 12px 30px rgba(47, 207, 103, 0.45);
  color: #fff;
  display: flex;
  height: 66px;
  justify-content: center;
  position: fixed;
  right: 28px;
  text-decoration: none;
  width: 66px;
  z-index: 40;
}

.whatsapp svg {
  display: block;
  fill: currentColor;
  height: 34px;
  width: 34px;
}

.topbar {
  align-items: center;
  background: var(--purple-light);
  color: var(--white);
  display: flex;
  font-size: 15px;
  font-weight: 800;
  justify-content: center;
  min-height: 42px;
  padding: 8px 18px;
  text-align: center;
}

.site-header {
  align-items: center;
  background: var(--brand-header);
  border-bottom: 1px solid var(--brand-header-line);
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  min-height: 96px;
  padding: 16px 32px;
  position: sticky;
  top: 0;
  z-index: 30;
}

.brand {
  align-items: center;
  color: var(--white);
  display: inline-flex;
  font-size: 18px;
  font-weight: 900;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
}

.brand .brand-logo {
  height: 62px;
  max-width: 250px;
}

.site-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.site-nav a {
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  color: #c4a7ff;
}

.nav-cta,
.button {
  align-items: center;
  background: var(--purple);
  border: 1px solid transparent;
  border-radius: 7px;
  color: var(--white);
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  text-decoration: none;
}

.button.secondary {
  background: var(--white);
  border-color: #d9dfe8;
  color: var(--purple-dark);
}

.eyebrow {
  color: var(--purple-dark);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.price-card .price {
  color: var(--purple);
  font-size: 34px;
  font-weight: 900;
}

.site-footer {
  align-items: center;
  background: var(--brand-header);
  color: var(--white);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-top: 56px;
  padding: 34px clamp(18px, 5vw, 72px);
}

.site-footer p {
  color: #cbd5e1;
  margin: 4px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a {
  color: #e5edf7;
  font-weight: 800;
  text-decoration: none;
}

.page-title,
.not-found {
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid rgba(214, 188, 148, 0.44);
  border-radius: 0 0 24px 24px;
  margin: 0 auto;
  max-width: 1120px;
  padding: 72px 18px 26px;
}

.page-title h1,
.not-found h1 {
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.08;
  margin: 0 0 16px;
}

.lead {
  color: var(--muted);
  font-size: 20px;
  max-width: 760px;
}

.pricing,
.device-grid,
.contact-layout,
.steps {
  display: grid;
  gap: 20px;
  margin: 0 auto;
  max-width: 1120px;
}

.pricing,
.device-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card,
.contact-card,
.contact-form,
.steps article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.price-card.highlighted {
  border-color: var(--purple);
}

.badge {
  background: var(--soft-purple);
  border-radius: 999px;
  color: var(--purple-dark);
  display: inline-block;
  font-weight: 900;
  padding: 6px 12px;
}

.device-grid span {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
  padding: 20px;
  text-align: center;
}

.contact-layout {
  grid-template-columns: 0.8fr 1.2fr;
}

.contact-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  font-weight: 900;
  gap: 6px;
}

input,
select,
textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  padding: 12px;
  width: 100%;
}

.not-found {
  min-height: 60vh;
  text-align: center;
}

.error-code {
  color: var(--purple);
  font-size: 94px;
  font-weight: 900;
  margin: 0;
}

@media (max-width: 1100px) {
  .main-header {
    align-items: flex-start;
    height: auto;
    justify-content: flex-start;
    padding: 18px;
  }

  .site-header {
    align-items: flex-start;
    justify-content: flex-start;
    padding: 18px;
  }

  .main-header,
  .site-header,
  .main-nav,
  .site-nav,
  .header-actions {
    flex-wrap: wrap;
  }

  .intent-grid,
  .seo-grid,
  .feature-grid,
  .feature-list,
  .content-grid,
  .price-grid,
  .proof-grid,
  .footer-inner,
  .product-split,
  .pricing,
  .device-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .price-plan.hot {
    transform: none;
  }

  .stats-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .final-cta,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-brand p {
    margin-bottom: 24px;
  }
}

@media (max-width: 680px) {
  .promo-bar {
    flex-direction: column;
    gap: 2px;
  }

  .main-nav {
    gap: 12px;
  }

  .brand-logo,
  .brand .brand-logo {
    height: 46px;
    max-width: 210px;
  }

  .hero-landing {
    min-height: 650px;
    padding-top: 48px;
  }

  .offer-pill {
    border-radius: 18px;
    padding: 14px 18px;
  }

  .hero-landing h1 {
    font-size: 40px;
  }

  .hero-landing p {
    font-size: 18px;
  }

  .btn.large {
    width: 100%;
  }

  .section h2 {
    font-size: 34px;
  }

  .price-plan {
    padding: 30px 22px;
  }

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

  .whatsapp {
    bottom: 18px;
    right: 18px;
  }
}
