/* ============================================
   PULSE Homepage v3 — Gold & Black
   ============================================ */

/* HERO */
.hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--p-black);
}

/* Background Video */
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.hero__video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 15, 0.72);
  z-index: 1;
}
/* Subtle vignette for extra depth */
.hero__video-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(10, 10, 15, 0.5) 100%);
  pointer-events: none;
}
/* Bottom fade so hero bleeds into next section */
.hero__video-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--p-black));
  z-index: 2;
  pointer-events: none;
}

.hero__bg-shapes { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -55%); width: 900px; height: 900px; pointer-events: none; z-index: 2; }
.hero__ring { position: absolute; top: 50%; left: 50%; border-radius: 50%; border: 1px solid; transform: translate(-50%, -50%); animation: heroRingPulse 6s ease-in-out infinite; }
.hero__ring--1 { width: 300px; height: 300px; border-color: rgba(212,168,67,0.15); animation-delay: 0s; }
.hero__ring--2 { width: 520px; height: 520px; border-color: rgba(212,168,67,0.08); animation-delay: 1s; }
.hero__ring--3 { width: 740px; height: 740px; border-color: rgba(212,168,67,0.04); animation-delay: 2s; }

@keyframes heroRingPulse {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%,-50%) scale(1.08); opacity: 0.4; }
}

.hero .container { position: relative; z-index: 3; }
.hero__content { text-align: center; max-width: 800px; margin: 0 auto; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px;
  font-family: var(--p-font-display); font-size: 12px; font-weight: 700;
  color: var(--p-gold);
  margin-bottom: 28px;
  border-radius: var(--p-r-full);
  text-transform: uppercase; letter-spacing: 0.1em;
  animation: fadeInDown 0.8s var(--p-ease) both;
  background: var(--p-gold-soft);
  border: 1px solid var(--p-border-gold);
}
.hero__badge svg { flex-shrink: 0; color: var(--p-gold); }

.hero__title {
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s var(--p-ease) 0.1s both;
}

.hero__subtitle {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--p-text-2);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 36px;
  animation: fadeInUp 0.8s var(--p-ease) 0.2s both;
}

.hero__actions {
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s var(--p-ease) 0.3s both;
}

/* Stats */
.hero__stats {
  display: inline-flex; align-items: center; gap: 0;
  padding: 20px 40px;
  border-radius: var(--p-r-2xl);
  animation: fadeInUp 0.8s var(--p-ease) 0.4s both;
  background: var(--p-glass-bg);
  border: 1px solid var(--p-glass-border);
}
.hero__stat { display: flex; flex-direction: column; align-items: center; padding: 0 32px; }
.hero__stat-value { font-family: var(--p-font-display); font-size: 26px; font-weight: 800; color: var(--p-gold-bright); letter-spacing: -0.02em; }
.hero__stat-label { font-size: 13px; color: var(--p-text-3); margin-top: 2px; }
.hero__stat-divider { width: 1px; height: 36px; background: var(--p-border); }

/* Browser Mockup */
.hero__preview { max-width: 860px; margin: 64px auto 0; }
.hero__browser { padding: 0; overflow: hidden; border-radius: var(--p-r-xl); background: var(--p-glass-bg); }
.hero__browser-bar { display: flex; align-items: center; gap: 12px; padding: 14px 20px; background: rgba(255,255,255,0.02); border-bottom: 1px solid var(--p-border); }
.hero__browser-dots { display: flex; gap: 6px; }
.hero__browser-dots span { width: 10px; height: 10px; border-radius: 50%; display: block; }
.hero__browser-dots span:nth-child(1) { background: #FF5F57; }
.hero__browser-dots span:nth-child(2) { background: #FFBD2E; }
.hero__browser-dots span:nth-child(3) { background: #27C93F; }
.hero__browser-url { flex: 1; text-align: center; font-size: 13px; color: var(--p-text-3); background: rgba(255,255,255,0.03); padding: 6px 16px; border-radius: var(--p-r-full); }
.hero__browser-content { padding: 24px; min-height: 260px; }
.hero__browser-mockup { padding: 16px; }
.hero__mockup-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.hero__mockup-logo { font-family: var(--p-font-display); font-size: 16px; font-weight: 700; color: var(--p-gold); opacity: 0.5; }
.hero__mockup-dots { display: flex; gap: 8px; }
.hero__mockup-dots span { width: 28px; height: 6px; background: var(--p-border); border-radius: 3px; display: block; }
.hero__mockup-hero { text-align: center; padding: 24px 0 32px; }
.hero__mockup-text { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 20px; }
.hero__mockup-line { height: 8px; border-radius: 4px; background: rgba(255,255,255,0.05); }
.hero__mockup-line--lg { width: 60%; height: 12px; background: rgba(212,168,67,0.15); }
.hero__mockup-line--md { width: 45%; }
.hero__mockup-line--sm { width: 30%; }
.hero__mockup-btn { width: 100px; height: 28px; background: var(--p-gold-bright); opacity: 0.35; border-radius: var(--p-r-full); margin: 0 auto; }
.hero__mockup-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 24px; }
.hero__mockup-card { height: 64px; background: rgba(255,255,255,0.025); border: 1px solid var(--p-border); border-radius: var(--p-r); }


/* TRUST BAR */
.trust-bar { padding: 40px 0 60px; text-align: center; background: var(--p-black); border-bottom: 1px solid var(--p-border); }
.trust-bar__label { font-size: 12px; font-weight: 600; color: var(--p-text-3); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 24px; }
.trust-bar__logos { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-bar__logo { font-family: var(--p-font-display); font-size: 16px; font-weight: 700; color: var(--p-text); opacity: 0.25; letter-spacing: -0.01em; transition: opacity 0.3s var(--p-ease); }
.trust-bar__logo:hover { opacity: 0.5; }


/* VALUE PROPOSITION — slightly lighter dark */
.value-prop { padding: var(--p-section-pad) 0; background: var(--p-black-2); }
.value-prop__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.value-prop__text p { font-size: 17px; color: var(--p-text-2); margin-bottom: 16px; line-height: 1.75; }
.value-prop__emphasis { color: var(--p-text) !important; font-weight: 600; }
.value-prop__text .btn { margin-top: 12px; }
.value-prop__cards { display: flex; flex-direction: column; gap: 14px; }
.value-prop__card {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 22px 26px;
  border-radius: var(--p-r-lg);
  background: var(--p-glass-bg);
  border: 1px solid var(--p-glass-border);
  transition: all 0.3s var(--p-ease);
}
.value-prop__card:hover { background: var(--p-glass-bg-hover); border-color: var(--p-glass-border-hover); transform: translateY(-2px); }
.value-prop__card-icon {
  width: 44px; height: 44px; min-width: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--p-gold-soft);
  border-radius: var(--p-r);
  color: var(--p-gold);
}
.value-prop__card h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; color: var(--p-text); }
.value-prop__card p { font-size: 14px; color: var(--p-text-2); line-height: 1.6; margin: 0; }


/* FEATURES */
.features { padding: var(--p-section-pad) 0; background: var(--p-black-3); }
.features__header { margin-bottom: 56px; }
.features__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.features__card { padding: 36px 30px; border-radius: var(--p-r-xl); }
.features__card-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--p-gold-soft);
  border-radius: var(--p-r-lg);
  color: var(--p-gold);
  margin-bottom: 20px;
}
.features__card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--p-text); }
.features__card p { font-size: 15px; color: var(--p-text-2); line-height: 1.65; margin: 0; }


/* PRICING */
.pricing { padding: var(--p-section-pad) 0; background: var(--p-black); }
.pricing__header { margin-bottom: 56px; }
.pricing__guarantee { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--p-gold); margin-top: 16px; }

/* 4-col grid */
.pricing__grid--4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: start; }

.pricing__card {
  padding: 32px 24px 24px;
  border-radius: var(--p-r-xl);
  display: flex;
  flex-direction: column;
  text-align: left;
  position: relative;
  overflow: visible;
}
.pricing__card--popular {
  border-color: var(--p-gold) !important;
  box-shadow: 0 0 0 1px var(--p-gold), var(--p-shadow-lg);
  z-index: 2;
}

.pricing__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--p-gold-bright);
  color: var(--p-gold-text);
  font-family: var(--p-font-display);
  font-size: 11px;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: var(--p-r-full);
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-transform: uppercase;
}

/* Icon circle */
.pricing__icon-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--p-gold-soft);
  border: 1px solid var(--p-border-gold);
  border-radius: var(--p-r-lg);
  color: var(--p-gold);
  margin-bottom: 20px;
}
.pricing__card--popular .pricing__icon-wrap {
  background: var(--p-gold-bright);
  border-color: var(--p-gold-bright);
  color: var(--p-gold-text);
}

.pricing__name {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--p-text);
}
.pricing__tagline {
  font-size: 14px;
  color: var(--p-text-3);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Features in card */
.pricing__features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pricing__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--p-text-2);
  line-height: 1.5;
}
.pricing__features li svg { color: var(--p-gold); flex-shrink: 0; margin-top: 2px; }

/* Price block — setup badge + price side by side */
.pricing__price-block {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--p-border);
  margin-bottom: 16px;
}

.pricing__setup-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  min-width: 68px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  border: 2px solid rgba(16, 185, 129, 0.3);
  flex-shrink: 0;
}
.pricing__setup-time {
  font-family: var(--p-font-display);
  font-size: 14px;
  font-weight: 800;
  color: #10B981;
  line-height: 1;
}
.pricing__setup-label {
  font-family: var(--p-font-display);
  font-size: 8px;
  font-weight: 700;
  color: #10B981;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

/* Price stack */
.pricing__price-stack {
  display: flex;
  flex-direction: column;
}
.pricing__orig-price {
  font-family: var(--p-font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--p-text-3);
  text-decoration: line-through;
  line-height: 1;
}
.pricing__sale-price {
  font-family: var(--p-font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--p-gold-bright);
  line-height: 1;
  letter-spacing: -0.02em;
}
.pricing__price-note {
  font-size: 13px;
  color: var(--p-text-3);
  margin-top: 2px;
}

/* Custom price (MVP tier) */
.pricing__custom-price {
  display: flex;
  flex-direction: column;
}
.pricing__custom-text {
  font-family: var(--p-font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--p-gold-bright);
  line-height: 1;
  letter-spacing: -0.02em;
}
.pricing__custom-note {
  font-size: 14px;
  color: var(--p-text-3);
  font-style: italic;
  margin-top: 2px;
}

/* Dual CTA buttons */
.pricing__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pricing__actions .btn { font-size: 13px; padding: 12px 20px; }


/* HOW IT WORKS */
.steps { padding: var(--p-section-pad) 0; background: var(--p-black-2); }
.steps__header { margin-bottom: 56px; }
.steps__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.steps__item {
  padding: 40px 32px; text-align: center; border-radius: var(--p-r-xl);
  background: var(--p-glass-bg); border: 1px solid var(--p-glass-border);
  transition: all 0.3s var(--p-ease);
}
.steps__item:hover { background: var(--p-glass-bg-hover); border-color: var(--p-glass-border-hover); transform: translateY(-2px); }
.steps__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  background: var(--p-gold-bright);
  color: var(--p-gold-text);
  font-family: var(--p-font-display); font-size: 22px; font-weight: 800;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px var(--p-gold-glow);
}
.steps__item h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--p-text); }
.steps__item p { font-size: 15px; color: var(--p-text-2); line-height: 1.65; margin: 0; }


/* TESTIMONIALS */
.testimonials { padding: var(--p-section-pad) 0; background: var(--p-black-3); }
.testimonials__header { margin-bottom: 56px; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.testimonials__card { padding: 36px 30px; border-radius: var(--p-r-xl); display: flex; flex-direction: column; border-left: none; margin: 0; }
.testimonials__stars { display: flex; gap: 2px; margin-bottom: 18px; }
.testimonials__stars svg { color: var(--p-gold-bright); fill: var(--p-gold-bright); }
.testimonials__quote { font-size: 15px; line-height: 1.75; color: var(--p-text-2); font-style: italic; flex: 1; margin: 0 0 24px; }
.testimonials__author { display: flex; align-items: center; gap: 12px; }
.testimonials__avatar {
  width: 42px; height: 42px; min-width: 42px;
  border-radius: 50%;
  background: var(--p-gold-soft);
  color: var(--p-gold);
  font-family: var(--p-font-display); font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.testimonials__name { font-family: var(--p-font-display); font-size: 14px; font-weight: 700; color: var(--p-text); font-style: normal; display: block; }
.testimonials__role { font-size: 13px; color: var(--p-text-3); display: block; margin-top: 1px; }


/* FINAL CTA */
.final-cta { padding: 0 0 var(--p-section-pad); background: var(--p-black); }
.final-cta__inner {
  text-align: center;
  padding: 80px 48px;
  border-radius: var(--p-r-2xl);
  background: var(--p-black-3);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--p-glass-border);
}
.final-cta__inner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 500px 300px at 20% 40%, rgba(212,168,67,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 400px 400px at 80% 60%, rgba(184,146,46,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta__inner > * { position: relative; z-index: 1; }
.final-cta__title { font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: var(--p-text); margin-bottom: 14px; letter-spacing: -0.03em; }
.final-cta__subtitle { font-size: clamp(16px, 2vw, 18px); color: var(--p-text-2); max-width: 560px; margin: 0 auto 32px; line-height: 1.65; }
.final-cta__actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.final-cta__note { font-size: 13px; color: var(--p-text-3); margin: 0; }


/* THE PROBLEM */
.problem { padding: var(--p-section-pad) 0; background: var(--p-black); }
.problem__header { margin-bottom: 48px; }
.problem__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-bottom: 32px; }
.problem__card { padding: 32px 24px; text-align: center; }
.problem__emoji { font-size: 40px; display: block; margin-bottom: 16px; }
.problem__card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--p-text); }
.problem__card p { font-size: 14px; color: var(--p-text-2); line-height: 1.6; }
.problem__truth {
  max-width: 700px;
  margin: 0 auto;
  padding: 28px 36px;
  text-align: center;
  border-left: 3px solid var(--p-gold);
}
.problem__truth h3 { font-size: 16px; font-weight: 800; color: var(--p-gold); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.problem__truth p { font-size: 15px; color: var(--p-text-2); line-height: 1.6; margin: 0; }

/* THE SOLUTION */
.solution { padding: var(--p-section-pad) 0; }
.solution__header { margin-bottom: 48px; }
.solution__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.solution__card { padding: 32px 24px; text-align: center; }
.solution__emoji { font-size: 40px; display: block; margin-bottom: 16px; }
.solution__card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--p-text); }
.solution__card p { font-size: 14px; color: var(--p-text-2); line-height: 1.6; }

/* COMPARE TABLE */
.compare { padding: var(--p-section-pad) 0; background: var(--p-black); }
.compare__header { margin-bottom: 48px; }
.compare__table-wrap { overflow-x: auto; padding: 0; border-radius: var(--p-r-xl); }
.compare__table { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare__table thead { position: sticky; top: 0; z-index: 2; }
.compare__table th {
  padding: 20px 16px;
  text-align: center;
  vertical-align: bottom;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--p-border);
}
.compare__feature-col { text-align: left !important; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--p-text-3); min-width: 200px; }
.compare__tier-col { min-width: 110px; }
.compare__tier-col--popular { background: rgba(212,168,67,0.06) !important; }
.compare__tier-emoji { display: block; color: var(--p-gold); margin-bottom: 6px; }
.compare__tier-name { display: block; font-family: var(--p-font-display); font-size: 15px; font-weight: 700; color: var(--p-text); }
.compare__tier-price { display: block; font-family: var(--p-font-display); font-size: 13px; font-weight: 600; color: var(--p-gold); margin-top: 2px; }
.compare__popular-tag {
  display: inline-block;
  background: var(--p-gold-bright);
  color: var(--p-gold-text);
  font-size: 9px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--p-r-full);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.compare__section-row td {
  padding: 14px 16px 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--p-text);
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--p-border);
}
.compare__table tbody tr:not(.compare__section-row) td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.compare__feature-name { color: var(--p-text-2); text-align: left; }
.compare__cell { text-align: center; color: var(--p-text-2); }
.compare__cell--popular { background: rgba(212,168,67,0.04); }
.compare__cell strong { color: var(--p-gold); font-weight: 700; }

/* IS THIS FOR YOU */
.fit { padding: var(--p-section-pad) 0; }
.fit__header { margin-bottom: 48px; }
.fit__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.fit__col { padding: 36px 32px; }
.fit__col h3 { font-size: 20px; font-weight: 700; margin-bottom: 20px; }
.fit__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.fit__col li { font-size: 15px; line-height: 1.5; display: flex; align-items: flex-start; gap: 10px; }
.fit__col--yes h3 { color: #10B981; }
.fit__col--yes li::before { content: '✓'; color: #10B981; font-weight: 700; flex-shrink: 0; }
.fit__col--yes li { color: var(--p-text-2); }
.fit__col--no h3 { color: #EF4444; }
.fit__col--no li::before { content: '✗'; color: #EF4444; font-weight: 700; flex-shrink: 0; }
.fit__col--no li { color: var(--p-text-3); }

/* FAQ */
.faq { padding: var(--p-section-pad) 0; background: var(--p-black); }
.faq__header { margin-bottom: 48px; }
.faq__list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item { padding: 0; border-radius: var(--p-r-lg) !important; overflow: hidden; }
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--p-text);
  list-style: none;
  transition: color 0.2s ease;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question:hover { color: var(--p-gold); }
.faq__toggle { font-size: 20px; color: var(--p-gold); transition: transform 0.2s ease; }
details[open] .faq__toggle { transform: rotate(45deg); }
.faq__answer { padding: 0 24px 20px; }
.faq__answer p { font-size: 15px; color: var(--p-text-2); line-height: 1.7; margin: 0; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .features__grid, .steps__grid, .testimonials__grid { grid-template-columns: repeat(2,1fr); }
  .pricing__grid--4 { grid-template-columns: repeat(2,1fr); }
  .problem__grid, .solution__grid { grid-template-columns: repeat(2,1fr); }
  .value-prop__grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .hero { padding: 100px 0 48px; min-height: auto; }
  .hero__bg-shapes { display: none; }
  .hero__stats { flex-direction: column; gap: 16px; padding: 24px 32px; }
  .hero__stat { padding: 0; }
  .hero__stat-divider { width: 60px; height: 1px; }
  .hero__preview { margin-top: 40px; }
  .trust-bar__logos { gap: 28px; flex-wrap: wrap; justify-content: center; }
  .trust-bar__logo { font-size: 13px; }
  .features__grid, .pricing__grid--4, .steps__grid, .testimonials__grid { grid-template-columns: 1fr; }
  .problem__grid, .solution__grid { grid-template-columns: 1fr; }
  .fit__grid { grid-template-columns: 1fr; }
  .compare__table-wrap { margin: 0 -16px; border-radius: 0; }
  .final-cta__inner { padding: 56px 28px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; }
  .final-cta__actions { flex-direction: column; width: 100%; }
  .final-cta__actions .btn { width: 100%; }
}
