html {
  font-size: 62.5%; /* 1rem = 10px */
}

:root {
  --primary: #0b5ed7;
  --primary-dark: #084298;
  --secondary: #6f42c1;
  --accent: #ff6b00;
  --accent-dark: #e65c00;
  --success: #28a745;
  --danger: #dc3545;
  --text: #0a2540;
  --text-soft: #5f6c7b;
  --bg: #f8f9fc;
  --white: #ffffff;
  --border: rgba(10, 37, 64, 0.08);
  --shadow-sm: 0 10px 25px rgba(10, 37, 64, 0.06);
  --shadow-md: 0 20px 45px rgba(10, 37, 64, 0.1);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --header-height: 78px;
  --section-space: 96px;
  --section-space-sm: 72px;
}


/* =========================
   BASE / RESET
========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom, #ffffff, var(--bg));
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 92px;
      font-size: 1.6rem;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font: inherit;
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: var(--section-space) 0;
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.section-alt {
  background: linear-gradient(to bottom, #ffffff, var(--bg));
}

.highlight {
  color: var(--primary);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(11, 94, 215, 0.1);
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}

.section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 14px;
}

.section-header p {
  /* font-size: clamp(15px, 2vw, 18px); */
  font-size: 1.6rem;
  color: var(--text-soft);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.25s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  box-shadow: 0 12px 22px rgba(11, 94, 215, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(11, 94, 215, 0.25);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border-color: rgba(11, 94, 215, 0.2);
}

.btn-secondary:hover {
  background: rgba(11, 94, 215, 0.05);
}

.btn-large {
  min-width: 260px;
}

/* =========================
   HEADER / NAVIGATION
========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: 0.25s ease;
}

.site-header.scrolled {
  border-color: var(--border);
  box-shadow: 0 8px 26px rgba(10, 37, 64, 0.06);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: flex-end;
  text-transform: capitalize;
}

.desktop-nav a,
.mobile-nav a {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 500;
  transition: 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--primary);
}

.header-cta {
  white-space: nowrap;
  background: linear-gradient(135deg, var(--primary),  var(--primary-dark));
  color: var(--white);
  padding: 11px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  /* box-shadow: 0 10px 20px rgba(255, 107, 0, 0.18); */
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: 0.25s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
}

.mobile-menu.open {
  display: block;
}

.mobile-nav {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 2px;
  padding: 10px 0 14px;
}

.mobile-nav a {
  padding: 12px 0;
  border-bottom: 1px solid rgba(10, 37, 64, 0.06);
}

/* =========================
   HERO SECTION
========================== */
.hero {
  padding-top: calc(var(--section-space) + 18px);
  background: linear-gradient(135deg, #eef4ff, #ffffff 60%);
  text-align: center;
}

.hero .badge {
  margin-bottom: 18px;
}

.hero h1 {
   font-size: clamp(3rem, 2.5vw, 5.4rem);
  line-height: 1.16;
  font-weight: 800;
  margin-bottom: 20px;
}

.cursor {
  display: inline-block;
  margin-left: 5px;
  color: var(--primary);
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-features span,
.contact-points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  font-size: 14px;
  font-weight: 500;
}

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

/* =========================
   LAPTOP MOCKUP
========================== */
.laptop-container {
  display: flex;
  justify-content: center;
  perspective: 1800px;
}

.laptop {
  width: min(100%, 930px);
  transform-style: preserve-3d;
  transition: transform 0.2s ease;
}

.laptop-frame {
  position: relative;
  background: #111;
  padding: 12px;
  border-radius: 18px;
  box-shadow: 0 40px 80px rgba(11, 94, 215, 0.14);
}

.laptop-screen {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 16 / 10;
}

.laptop-screen video,
.laptop-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.laptop-screen video {
  object-fit: contain;
}

.laptop-base {
  width: 100%;
  height: 18px;
  margin: -4px auto 0;
  border-radius: 0 0 20px 20px;
  background: linear-gradient(to right, #d7d7d7, #f6f6f6, #d7d7d7);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}
.laptop-container {
  overflow: hidden;
}

.laptop {
  max-width: 100%;
}

/* =========================
   CHALLENGES / SOLUTION
========================== */
.problem-solution {
  background: var(--bg);
}

.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.problems h3,
.solution h3 {
  font-weight: 700;
  margin-bottom: 18px;
}

.problems h3 {
  color: var(--danger);
}

.problem-card,
.solution,
.feature-card,
.step-card,
.comparison-card,
.bonus-card,
.contact-card,
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.problem-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  margin-bottom: 14px;
  border-left: 5px solid var(--danger);
  transition: 0.25s ease;
}

.problem-card:hover,
.feature-card:hover,
.step-card:hover,
.comparison-card:hover,
.bonus-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.problem-card p {
  color: #444;
  font-size: 15px;
}

.solution {
  padding: 34px;
  border-top: 5px solid var(--primary);
}

.solution h3 {
  color: var(--success);
}

.solution h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.solution p,
.feature-card p,
.step-card p,
.bonus-content p,
.contact-copy p,
.faq-item p,
.card p,
.comparison-card ul li,
.vb-subtitle,
.roi-header p,
.vb-item span {
  color: var(--text-soft);
  font-size: 1.5rem;
}


.solution-list {
  list-style: none;
  margin-top: 18px;
}

.solution-list li {
  margin-bottom: 10px;
}

.highlight-text {
  margin-top: 18px;
  font-weight: 600;
  color: var(--primary);
}

/* =========================
   WEBSITE SHOWCASE
========================== */
.parallax-wrapper {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
  gap: 40px;
  align-items: start;
}

.laptop-sticky {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.cards {
  display: grid;
  gap: 22px;
}

.card {
  background: var(--white);
  border-left: 5px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: 0.25s ease;
}

.card.active {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.card h3 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 12px;
}

.card ul {
  list-style: none;
}

.card ul li {
  font-size: 14px;
  margin-bottom: 8px;
}

.mobile-slider {
  display: none;
  margin-top: 26px;
}

.slider-container {
  overflow: hidden;
}

.slider {
  display: flex;
  transition: transform 0.4s ease;
}

.slide {
  min-width: 100%;
  padding: 4px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cfd7e6;
  cursor: pointer;
  transition: 0.25s ease;
}

.dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* =========================
   EDITABLE FEATURES
========================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 28px;
  border-top: 4px solid var(--primary);
  transition: 0.3s ease;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 94, 215, 0.1);
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.reveal-card,
.animate-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal-card.show,
.animate-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   STEPS / HOW IT WORKS
========================== */
.steps-section {
  background: linear-gradient(to bottom, #ffffff, #f8f9fc);
}

.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.flow-line {
  position: absolute;
  left: 10%;
  top: 38%;
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
  background-size: 200% 100%;
  animation: flowAnimation 4s linear infinite;
  z-index: 0;
}

@keyframes flowAnimation {
  0% { background-position: 200% 0; }
  100% { background-position: 0 0; }
}

.step-card {
  position: relative;
  z-index: 1;
  padding: 28px;
  text-align: center;
  transition: 0.25s ease;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
}

.step-image {
  position: relative;
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.step-image img {
  border-radius: 12px;
}

.play-btn {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.18);
}

.step-card h3 {
  font-size: 20px;
  color: var(--primary);
  margin: 16px 0 10px;
}

/* =========================
   COMPARISON / WHY CHOOSE US
========================== */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.comparison-card {
  padding: 28px;
  transition: 0.25s ease;
}

.comparison-card img {
  height: 250px;
  object-fit: contain;
  margin-bottom: 18px;
}

.comparison-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.comparison-card ul {
  list-style: none;
}

.comparison-card ul li {
  margin-bottom: 10px;
}

.comparison-card.challenges {
  border-top: 5px solid var(--danger);
}

.comparison-card.challenges h3 {
  color: var(--danger);
}

.comparison-card.solutions {
  border-top: 5px solid var(--primary);
}

.comparison-card.solutions h3 {
  color: var(--primary);
}

/* =========================
   OFFER / BONUS CARDS
========================== */
.offer-list {
  display: grid;
  gap: 24px;
}

.bonus-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  align-items: center;
  gap: 24px;
  padding: 24px;
  border-left: 5px solid var(--primary);
  overflow: hidden;
  transition: 0.3s ease;
}

.bonus-image {
  border-radius: 12px;
  overflow: hidden;
}

.bonus-image img {
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.bonus-card:hover .bonus-image img {
  transform: scale(1.05);
}

.ribbon {
  position: absolute;
  top: 18px;
  left: -12px;
  width: 128px;
  height: 128px;
  overflow: hidden;
  z-index: 2;
}

.ribbon span {
  position: absolute;
  width: 190px;
  top: 34px;
  left: -48px;
  padding: 8px 0;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  background: linear-gradient(135deg, #ff4d4d, #d90429);
  transform: rotate(-45deg);
}

.bonus-number {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

.bonus-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.price-tag {
  margin-top: 10px;
  font-weight: 600;
  color: var(--success);
}

.price-tag span {
  color: var(--danger);
  text-decoration: line-through;
  margin-right: 8px;
}

/* =========================
   VALUE BREAKDOWN / ROI
========================== */
.pricing-shell {
  /* background: linear-gradient(to bottom, var(--bg), #ffffff); */
}

.vb-container,
.roi-container {
  /* max-width: 1080px; */
  margin: 0 auto;
}

.vb-card,
.roi-box,
.roi-explanation {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.vb-card {
  padding: 34px;
  margin-bottom: 34px;
}

.vb-title,
.roi-header h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
}

.vb-subtitle,
.roi-header p {
  margin-top: 10px;
}

.vb-list {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.vb-item,
.vb-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.vb-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: 0.3s;
}

.vb-item:hover {
  transform: translateX(6px);
  color: var(--primary);
}

.vb-item strong {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--danger);
}
.vb-item strong,
.vb-total strong {
  white-space: nowrap;
}

.vb-divider {
  height: 1px;
  background: rgba(10, 37, 64, 0.12);
  margin: 24px 0;
}

.vb-total {
  font-size: 20px;
  font-weight: 700;
}
.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 1.6rem;
}

/* CTA inside pricing */
.vb-cta {
  margin-top: 16px;
  width: 100%;
  font-size: 1.6rem;
}

/* Offer glow */
.vb-offer {
  position: relative;
  overflow: hidden;
}

.vb-offer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.2), transparent);
}

.vb-offer {
  margin-top: 24px;
  text-align: center;
  padding: 28px;
  border-radius: 16px;
  background: var(--success);
  color: var(--white);
}

.vb-offer span {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.vb-offer h3 {
  font-size: 42px;
  margin: 8px 0;
}

.vb-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.vb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 600;
}

.vb-btn-primary {
  background: var(--accent);
  color: var(--white);
}

.vb-btn-secondary {
  background: #eef4ff;
  color: var(--primary);
}

/* ================= ROI SECTION ================= */

.roi-section {
  padding: 100px 20px;
  background: #f8f9fc;
  border-radius: 20px;
}

/* GRID */
.roi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

/* CARD */
.roi-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.roi-card h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.roi-card ul {
  list-style: none;
  padding: 0;
}

.roi-card ul li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

/* COLORS */
.roi-card.negative {
  border-top: 4px solid #dc3545;
}

.roi-card.positive {
  border-top: 4px solid #0B5ED7;
}

/* TOTAL */
.roi-total {
  margin-top: 15px;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
}

.roi-total.red {
  background: #ffe5e5;
  color: #dc3545;
}

.roi-total.green {
  background: #e7f5ec;
  color: #28a745;
}

/* CALC BOX */
.roi-calc {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  text-align: center;
  border: 2px solid #0B5ED7;
}

.roi-calc h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.roi-calc h3 span {
  color: #0B5ED7;
}

.roi-box-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.roi-box {
  border: 2px dashed #ccc;
  padding: 20px 30px;
  border-radius: 10px;
  min-width: 160px;
}

.roi-box span {
  display: block;
  font-size: 14px;
  /* color: #777; */
}

.roi-box strong {
  font-size: 20px;
  color: #0B5ED7;
}

.roi-box.highlight {
  background: linear-gradient(135deg, #0B5ED7, #6F42C1);
  color: #fff;
  border: none;
}

.roi-box.highlight strong {
  color: #fff;
}

.roi-math {
  font-size: 22px;
  font-weight: bold;
}

.roi-note {
  margin-top: 20px;
  font-size: 15px;
  color: #28a745;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .roi-grid {
    grid-template-columns: 1fr;
  }

  .roi-box-wrapper {
    flex-direction: column;
  }
}

/* =========================
   FAQ SECTION
========================== */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 0 22px;
  border: 1px solid rgba(10, 37, 64, 0.06);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-size: 17px;
  font-weight: 600;
  position: relative;
  padding-right: 32px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--primary);
}

.faq-item[open] summary::after {
  content: '–';
}

.faq-item p {
  padding-bottom: 20px;
}

/* =========================
   CONTACT SECTION
========================== */
.contact-card {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: 24px;
  padding: 34px;
  align-items: center;
}

.contact-copy h2 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
  margin: 16px 0 12px;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.contact-actions {
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(11, 94, 215, 0.08), rgba(111, 66, 193, 0.08));
  text-align: center;
}

.contact-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-soft);
}

/* =========================
   MODAL
========================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.75);
  padding: 20px;
}

.modal.open {
  display: flex;
}

.modal-content {
  width: min(900px, 100%);
  border-radius: 18px;
  overflow: hidden;
  background: #000;
}

.modal video {
  width: 100%;
}

.close {
  position: absolute;
  top: 18px;
  right: 24px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 40px;
  cursor: pointer;
}

/* =========================
   FIXED BOTTOM CTA
========================== */
.bottom-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 980;
  padding: 10px 0 14px;
  background: linear-gradient(to top, rgba(248, 249, 252, 0.98), rgba(248, 249, 252, 0.92));
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(10, 37, 64, 0.08);
}

.bottom-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.bottom-cta-inner p {
  font-size: 15px;
  font-weight: 600;
}

/* =========================
   RESPONSIVE
========================== */
@media (max-width: 1200px) {
  .desktop-nav {
    gap: 14px;
  }

  .desktop-nav a {
    font-size: 13px;
  }
}

@media (max-width: 1024px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .ps-grid,
  .parallax-wrapper,
  .comparison-grid,
  .contact-card,
  .bonus-card,
  .roi-comparison-grid {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .steps-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .laptop-sticky {
    position: relative;
    top: auto;
  }

  .bonus-card {
    text-align: center;
  }

  .bonus-image {
    max-width: 420px;
    margin: 0 auto;
  }

  .contact-actions {
    padding: 24px;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 72px;
    --section-space: 76px;
    --section-space-sm: 60px;
  }

  body {
    padding-bottom: 102px;
  }

  .container {
    width: min(100% - 24px, 1200px);
  }

  .hero {
    padding-top: calc(var(--section-space) + 10px);
  }

  .hero-actions,
  .vb-buttons,
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .vb-btn,
  .header-cta,
  .bottom-cta-btn {
    width: 100%;
    font-size: 1.4rem;
  }

  .hero-features span,
  .contact-points span {
    width: 100%;
  }

  .features-grid,
  .steps-wrapper {
    grid-template-columns: 1fr;
  }

  .flow-line {
    display: none;
  }

  .cards {
    display: none;
  }

  .mobile-slider {
    display: block;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .solution,
  .feature-card,
  .step-card,
  .comparison-card,
  .vb-card,
  .roi-box,
  .roi-explanation,
  .contact-card,
  .contact-actions,
  .bonus-card {
    padding: 22px;
  }

  .card {
    padding: 22px;
  }

  .vb-item,
  .vb-total,
  .bottom-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .vb-offer h3 {
    font-size: 34px;
  }

  .roi-calculation-wrapper {
    gap: 10px;
  }

  .roi-calc-box {
    min-width: 100%;
  }

  .roi-symbol {
    width: 100%;
    text-align: center;
  }

  .bottom-cta-inner {
    gap: 10px;
  }

  .bottom-cta-inner p {
    font-size: 14px;
  }
}

@media (max-width: 479px) {
  .brand {
    font-size: 16px;
  }

  .hero h1 {
    font-size: 20px;
    line-height: 30px;
  }

  .section-header h2,
  .contact-copy h2,
  .vb-title,
  .roi-header h2 {
           font-size: 20px;
        line-height: 30px;
  }
  /* .vb-item {
    gap: 2px;
    border-bottom: 1px solid var(--text);
  } */

  .card h3,
  .bonus-content h3,
  .comparison-card h3,
  .solution h4 {
    font-size: 20px;
  }
}
