
:root {
  --bg: #08111f;
  --bg-soft: #0f1c32;
  --card: rgba(255, 255, 255, 0.08);
  --card-strong: rgba(255, 255, 255, 0.12);
  --text: #f3f7ff;
  --muted: #b9c6dd;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #ff8a3d;
  --accent-2: #c2410c;
  --accent-dark: #da6a20;
  --surface: #f6f8fc;
  --surface-text: #172336;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #08111f 0%, #0b1630 20%, #eef3fb 20%, #eef3fb 100%);
  color: var(--surface-text);
}

a {
  text-decoration: none;
}

.section-space {
  padding: 92px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(8, 17, 31, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
}

.nav-links {
  gap: 28px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

.nav-links a:hover,
.brand:hover {
  color: #fff;
}

.btn-header {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #101010;
  font-weight: 800;
  border-radius: 999px;
  padding: 12px 20px;
  box-shadow: 0 10px 30px rgba(255, 138, 61, 0.22);
}

.btn-header:hover {
  background: linear-gradient(135deg, #ff9f5e, #ffd97d);
  color: #101010;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 82px 0 100px;
  color: var(--text);
}

.hero-bg {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.9;
}

.hero-bg-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 138, 61, 0.4), rgba(255, 138, 61, 0));
  top: -120px;
  left: -100px;
}

.hero-bg-2 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255, 209, 102, 0.23), rgba(255, 209, 102, 0));
  right: -120px;
  top: -40px;
}

.eyebrow,
.section-kicker,
.mini-label,
.tiny-label {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow,
.section-kicker,
.tiny-label {
  color: var(--accent-2);
}

.hero-section h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 900;
  max-width: 11ch;
}

.hero-copy {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 62ch;
  margin-bottom: 28px;
}

.hero-actions {
  margin-bottom: 32px;
}

.btn-hero-primary,
.btn-card-cta,
.btn-pricing,
.btn-final-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #111;
  font-weight: 800;
  border-radius: 999px;
  padding: 15px 26px;
  border: 0;
  box-shadow: 0 16px 34px rgba(255, 138, 61, 0.2);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn-hero-primary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.btn-hero-primary:hover,
.btn-card-cta:hover,
.btn-pricing:hover,
.btn-final-primary:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #111;
  box-shadow: 0 16px 34px rgba(255, 138, 61, 0.2);
  transform: translateY(-1px);
}

.btn-hero-secondary,
.btn-final-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
  border-radius: 999px;
  padding: 15px 26px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn-hero-secondary:hover,
.btn-final-secondary:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #111;
  box-shadow: 0 16px 34px rgba(255, 138, 61, 0.2);
  transform: translateY(-1px);
}

.trust-pill {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  text-align: center;
  color: rgba(237, 243, 255, 0.82);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.08));
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow);
}

.deal-tag {
  position: absolute;
  right: 24px;
  top: 20px;
  background: #fff;
  color: #111;
  font-weight: 800;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.8rem;
}

.hero-card .mini-label,
.pricing-card .mini-label {
  color: #d8e3f7;
  margin-bottom: 12px;
}

.hero-card h2 {
  font-size: 2rem;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.card-copy,
.small-print {
  color: var(--muted);
  margin-top: 16px;
}

.price-line,
.price-stack {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 24px 0 18px;
}

.price,
.big-price {
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: #fff;
}

.price-note,
.big-price-note {
  color: #d3def2;
  font-weight: 700;
}

.feature-list,
.pricing-points {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.feature-list li,
.pricing-points li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  color: #edf3ff;
}

.feature-list li::before,
.pricing-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.section-intro {
  max-width: 760px;
  margin-bottom: 20px;
}

.section-intro h2,
.pricing-wrap h2,
.final-cta-box h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
  font-weight: 900;
  margin: 14px 0 14px;
  color: #0d1b2d;
}

.section-intro p,
.pricing-copy,
.final-cta-box p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #52637e;
}

.left-intro {
  margin-bottom: 0;
}

.problem-section,
.audience-section,
.faq-section {
  background: var(--surface);
}

.included-section,
.process-section {
  background: linear-gradient(180deg, #eef3fb 0%, #f8fbff 100%);
}

.pricing-section {
  background: linear-gradient(180deg, #111f36 0%, #0d172b 100%);
  color: var(--text);
}

.issue-card,
.included-card,
.audience-card,
.step-card {
  height: 100%;
  background: #fff;
  border: 1px solid rgba(13, 27, 45, 0.08);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: 0 14px 40px rgba(21, 35, 57, 0.06);
}

.issue-card h3,
.included-card h3,
.audience-card h3,
.step-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  color: #12223a;
}

.issue-card p,
.included-card p,
.audience-card p,
.step-card p {
  margin-bottom: 0;
  color: #566884;
  line-height: 1.7;
}

.audience-shell {
  background: linear-gradient(135deg, #ffffff, #f4f8ff);
  border: 1px solid rgba(13, 27, 45, 0.08);
  border-radius: calc(var(--radius-lg) + 2px);
  padding: 22px;
  box-shadow: 0 18px 46px rgba(21, 35, 57, 0.08);
}

.featured-audience {
  background: linear-gradient(180deg, #152848, #10203a);
  color: #fff;
  transform: translateY(-10px);
}

.featured-audience h3,
.featured-audience p {
  color: #fff;
}

.step-card {
  position: relative;
  overflow: hidden;
}

.step-number {
  font-size: 3rem;
  font-weight: 800;
  color: #c2410c; /* strong, rich orange */
  line-height: 1;
  margin-bottom: 10px;
}

.pricing-wrap {
  padding: 18px 0;
}

.pricing-section .section-kicker,
.pricing-section h2,
.pricing-section .pricing-copy,
.pricing-section .pricing-points li,
.pricing-footnote {
  color: #fff;
}

.pricing-section .pricing-copy,
.pricing-footnote,
.site-footer p {
  color: rgba(255, 255, 255, 0.76);
}

.pricing-card {
  max-width: 470px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow);
}

.faq-shell {
  max-width: 900px;
}

.accordion-item {
  background: #fff;
  border: 1px solid rgba(13, 27, 45, 0.08);
  border-radius: 18px !important;
  overflow: hidden;
  margin-bottom: 16px;
}

.accordion-button {
  font-weight: 800;
  color: #13233b;
  background: #fff;
  padding: 22px 24px;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: #13233b;
  background: #fff7ef;
}

.accordion-body {
  color: #566884;
  line-height: 1.75;
  padding: 0 24px 22px;
}

.final-cta-section {
  padding: 0 0 95px;
  background: linear-gradient(180deg, #eef3fb 0%, #eef3fb 100%);
}

.final-cta-box {
  background: linear-gradient(135deg, #112240, #183158);
  color: #fff;
  padding: 56px 28px;
  border-radius: calc(var(--radius-lg) + 4px);
  box-shadow: var(--shadow);
}

.final-cta-box h2,
.final-cta-box p {
  color: #fff;
}

.final-cta-box p {
  max-width: 680px;
  margin: 0 auto 28px;
  opacity: 0.9;
}

.site-footer {
  padding: 26px 0 34px;
  background: #091321;
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 60px;
  }

  .hero-card {
    padding: 28px;
  }

  .featured-audience {
    transform: none;
  }
}

@media (max-width: 767.98px) {
  .section-space {
    padding: 74px 0;
  }

  .site-header {
    padding: 12px 0;
  }

  .header-shell {
    gap: 12px;
  }

  .brand {
    font-size: 1rem;
  }

  .btn-header {
    padding: 10px 14px;
    font-size: 0.95rem;
  }

  .hero-section h1 {
    max-width: 12ch;
  }

  .hero-copy,
  .section-intro p,
  .pricing-copy,
  .final-cta-box p {
    font-size: 1rem;
  }

  .hero-card,
  .pricing-card,
  .final-cta-box,
  .issue-card,
  .included-card,
  .audience-card,
  .step-card {
    padding: 24px;
  }

  .price,
  .big-price {
    font-size: 3.2rem;
  }
}

.included-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

.included-img-wrap {
  width: 100%;
  height: 140px;          /* controls image height */
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 12px;
}

.included-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* THIS is the magic */
  display: block;
}

.section-bridge {
  background: linear-gradient(90deg, #0f172a, #1e293b);
  color: #fff;
  padding: 40px 20px;
}

.section-bridge h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-bridge p {
  color: #cbd5e1;
  margin-bottom: 10px;
}

/* FAQ spacing fix */
.accordion-body {
  padding: 18px 20px 20px 20px; /* more breathing room */
  line-height: 1.6;
}

/* add space between question and answer */
.accordion-button {
  padding: 18px 20px;
}

/* optional: soften the open state */
.accordion-item {
  border-radius: 12px;
  overflow: hidden;
}

/* space between each FAQ card */
.accordion-item + .accordion-item {
  margin-top: 12px;
}

.accordion-body {
  font-size: 15px;
  color: #5f6b7a;
}

.accordion-button {
  font-weight: 600;
}

