* {
  box-sizing: border-box;
}

:root {
  --blue: #0737f4;
  --red: #ff0b10;
  --charcoal: #48484b;
  --white: #ffffff;
  --black: #000000;
  --light: #f5f7ff;
  --light-blue: #eef3ff;
  --border: rgba(7, 55, 244, 0.12);
  --shadow: 0 18px 45px rgba(7, 55, 244, 0.10);
  --radius: 22px;
  --container: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  max-width: 860px;
  margin: 0 auto;
}

.center {
  text-align: center;
}

section {
  padding: 5rem 0;
}

.announcement {
  background: var(--black);
  color: var(--white);
  font-size: 0.95rem;
}

.announcement p {
  margin: 0;
  padding: 0.9rem 0;
  text-align: center;
}

.hero {
  background:
    radial-gradient(circle at top right, rgba(255, 11, 16, 0.10), transparent 28%),
    radial-gradient(circle at left top, rgba(7, 55, 244, 0.16), transparent 36%),
    linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
  padding-top: 5.5rem;
  padding-bottom: 4.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 2rem;
  align-items: center;
}

.hero-logo {
  display: block;
  max-width: 260px;
  width: 100%;
  height: auto;
  margin-bottom: 1.2rem;
  border-radius: 16px;
}

.eyebrow,
.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.hero h1,
.section-heading h2,
.problem h2,
.difference h2,
.cta-final h2,
.audience h2,
.inquiry-copy h2,
.demo-reel h2 {
  margin: 0 0 1rem;
  line-height: 1.08;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.hero-subtext,
.section-heading p,
.problem p,
.difference p,
.cta-final p,
.inquiry-copy p {
  font-size: 1.08rem;
  color: var(--charcoal);
}

.hero-points {
  display: grid;
  gap: 0.85rem;
  margin: 1.75rem 0;
}

.point {
  background: rgba(7, 55, 244, 0.05);
  border: 1px solid var(--border);
  padding: 0.95rem 1rem;
  border-radius: 14px;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.75rem 0 1rem;
}

.hero-starting {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  color: var(--charcoal);
}

.hero-starting strong {
  color: var(--red);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.96;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), #ff4b4f);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(255, 11, 16, 0.22);
}

.btn-secondary {
  background: var(--white);
  color: var(--blue);
  border: 1px solid rgba(7, 55, 244, 0.2);
}

.btn-light {
  background: var(--white);
  color: var(--blue);
  box-shadow: none;
}

.full {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1rem;
}

.trust-row span {
  font-size: 0.92rem;
  color: var(--charcoal);
  background: var(--white);
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.hero-offer-card,
.problem-card,
.sample-card,
.step,
.package-card,
.upsell-card,
.faq-item,
.demo-reel-card,
.inquiry-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-offer-card {
  border: 1px solid rgba(7, 55, 244, 0.14);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.hero-offer-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--blue), var(--red));
}

.hero-offer-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.hero-offer-label {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-offer-price {
  color: var(--red);
  font-weight: 800;
}

.hero-offer-card h2 {
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0 0 0.8rem;
}

.hero-offer-card ul,
.package-card ul {
  padding-left: 1.1rem;
  margin: 0 0 1.35rem;
}

.demo-reel {
  background: var(--light);
}

.demo-reel-card {
  border: 1px solid var(--border);
  padding: 1rem;
  max-width: 980px;
  margin: 2rem auto 0;
}

.demo-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #000;
}

.demo-video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.problem {
  background: var(--black);
  color: var(--white);
}

.problem h2,
.problem p {
  color: var(--white);
}

.problem-grid,
.sample-grid,
.steps,
.package-grid,
.upsell-grid,
.faq-grid {
  display: grid;
  gap: 1.4rem;
  margin-top: 2rem;
}

.problem-grid {
  grid-template-columns: repeat(3, 1fr);
}

.problem-card {
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.problem-card h3 {
  margin-top: 0;
  color: var(--white);
}

.problem-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
}

.section-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 1rem;
}

.sample-grid {
  grid-template-columns: repeat(4, 1fr);
}

.sample-card {
  padding: 1rem;
  border: 1px solid var(--border);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 177.77%;
  height: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #000;
  margin-bottom: 1rem;
}

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

.sample-card h3 {
  margin: 0 0 0.55rem;
}

.how-it-works {
  background: var(--white);
}

.steps {
  grid-template-columns: repeat(3, 1fr);
}

.step {
  padding: 1.75rem;
  border: 1px solid var(--border);
}

.step-number {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.package-grid {
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.package-card {
  padding: 1.7rem;
  border: 1px solid rgba(7, 55, 244, 0.14);
  display: flex;
  flex-direction: column;
}

.package-card.featured,
.package-card.best-value {
  border: 2px solid rgba(7, 55, 244, 0.22);
  transform: translateY(-6px);
}

.featured-label {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.package-card.best-value .featured-label {
  background: var(--red);
}

.package-card h3 {
  margin: 0.2rem 0 0.45rem;
}

.package-quantity {
  margin: 0;
  color: var(--charcoal);
  font-weight: 700;
}

.price {
  margin: 0.3rem 0 1rem;
  font-size: 2.45rem;
  line-height: 1;
  font-weight: 800;
  color: var(--red);
}

.package-card ul {
  flex: 1;
}

.pricing-reassurance {
  text-align: center;
  margin: 1.8rem auto 0;
  max-width: 720px;
  color: var(--charcoal);
  font-weight: 600;
}

.includes-box {
  margin-top: 2rem;
  background: linear-gradient(135deg, rgba(7, 55, 244, 0.06), rgba(255, 11, 16, 0.05));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.7rem;
}

.includes-box h3 {
  margin-top: 0;
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.includes-grid div {
  background: var(--white);
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(7, 55, 244, 0.10);
  font-weight: 600;
}

.upsells {
  background: var(--black);
  color: var(--white);
}

.upsells .section-heading h2,
.upsells .section-heading p {
  color: var(--white);
}

.upsell-grid {
  grid-template-columns: repeat(3, 1fr);
}

.upsell-card {
  padding: 1.7rem;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.upsell-card h3,
.upsell-card p {
  color: var(--white);
}

.upsell-lead {
  color: #ffd4d5 !important;
  font-weight: 700;
}

.audience {
  background: var(--light-blue);
}

.audience-grid,
.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: center;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.audience-list span {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-weight: 700;
}

.difference {
  text-align: center;
}

.inquiry-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
}

.inquiry-card {
  border: 1px solid var(--border);
  padding: 1.7rem;
}

.inquiry-benefits {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}

.inquiry-benefits li {
  background: rgba(7, 55, 244, 0.05);
  border: 1px solid var(--border);
  padding: 0.9rem 1rem;
  border-radius: 14px;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.inquiry-note {
  font-weight: 700;
  color: var(--blue);
  margin: 0;
}

.inquiry-form {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field label {
  font-weight: 700;
  font-size: 0.95rem;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(7, 55, 244, 0.18);
  border-radius: 14px;
  font: inherit;
  background: var(--white);
}

.field textarea {
  resize: vertical;
  min-height: 160px;
}

.faq {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
}

.faq-grid {
  grid-template-columns: repeat(2, 1fr);
}

.faq-item {
  padding: 1.45rem;
  border: 1px solid var(--border);
}

.faq-item h3 {
  margin-top: 0;
}

.cta-final {
  background: linear-gradient(135deg, rgba(7, 55, 244, 0.95), rgba(255, 11, 16, 0.92));
  color: var(--white);
}

.cta-final h2,
.cta-final p,
.cta-final .section-tag {
  color: var(--white);
}

.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.84);
  padding: 2rem 0;
}

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

.site-footer h3 {
  color: var(--white);
  margin-top: 0;
}

@media (max-width: 1100px) {
  .sample-grid,
  .package-grid,
  .problem-grid,
  .steps,
  .upsell-grid,
  .includes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid,
  .audience-grid,
  .inquiry-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  section {
    padding: 4rem 0;
  }

  .container {
    width: min(var(--container), calc(100% - 1.2rem));
  }

  .hero {
    padding-top: 4.5rem;
  }

  .hero h1,
  .section-heading h2,
  .problem h2,
  .difference h2,
  .cta-final h2,
  .audience h2,
  .inquiry-copy h2,
  .demo-reel h2 {
    font-size: 2rem;
  }

  .problem-grid,
  .sample-grid,
  .steps,
  .package-grid,
  .upsell-grid,
  .faq-grid,
  .includes-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .package-card.featured,
  .package-card.best-value {
    transform: none;
  }

  .hero-logo {
    max-width: 240px;
  }
}
