/* ============================================
   COLUNA BLINDADA - Design System & Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ── Design Tokens ── */
:root {
  --primary: #10C233;
  --primary-hover: #0ea82c;
  --primary-glow: rgba(16, 194, 51, 0.35);
  --secondary: #FBF2BF;
  --bg-dark: #191919;
  --bg-dark-alt: #111111;
  --bg-light: #F0F0F0;
  --bg-card: #1e1e1e;
  --text-light: #FFFFFF;
  --text-dark: #333333;
  --text-muted: #aaaaaa;
  --btn-text: #000000;
  --danger: #E21B1B;
  --success: #32BA7C;

  --font-base: "Sora", "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --fs-body: 16px;
  --fs-h1: 42px;
  --fs-h2: 37px;
  --fs-h2-sm: 22px;
  --fs-h3: 20px;
  --fs-btn: 19px;
  --fw-normal: 400;
  --fw-semi: 600;
  --fw-bold: 700;
  --fw-xbold: 800;
  --lh-body: 1.6;
  --lh-h2: 1.2;

  --container: 1140px;
  --radius: 5px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --padding-btn: 20px 40px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-base);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text-dark);
  background-color: var(--bg-dark);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Section Base ── */
.section {
  padding: 80px 0;
}

.section--dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.section--darker {
  background-color: var(--bg-dark-alt);
  color: var(--text-light);
}

.section--light {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

/* ── CTA Button ── */
.cta-btn {
  display: inline-block;
  background-color: var(--primary);
  color: var(--btn-text);
  font-family: var(--font-base);
  font-size: var(--fs-btn);
  font-weight: var(--fw-xbold);
  padding: var(--padding-btn);
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.cta-btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--primary-glow);
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn--pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 var(--primary-glow); }
  70% { box-shadow: 0 0 0 15px rgba(16, 194, 51, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 194, 51, 0); }
}

/* ── Typography ── */
.title-highlight {
  color: var(--secondary);
}

.title-primary {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  line-height: var(--lh-h2);
  margin-bottom: 20px;
}

.title-secondary {
  font-size: var(--fs-h2-sm);
  font-weight: var(--fw-normal);
  line-height: 1.3;
  letter-spacing: -0.4px;
  margin-bottom: 16px;
}

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

/* ── HERO SECTION ── */
.hero {
  background-color: var(--bg-dark);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.3;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero__content {
  flex: 1;
  z-index: 1;
}

.hero__badge {
  display: inline-block;
  background: rgba(16, 194, 51, 0.15);
  color: var(--primary);
  font-size: 13px;
  font-weight: var(--fw-semi);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(16, 194, 51, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero__title {
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  line-height: 1.15;
  color: var(--text-light);
  margin-bottom: 16px;
}

.hero__title span {
  color: var(--secondary);
}

.hero__subtitle {
  font-size: var(--fs-h2-sm);
  font-weight: var(--fw-normal);
  line-height: 1.4;
  color: var(--text-light);
  margin-bottom: 12px;
  opacity: 0.9;
}

.hero__desc {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 15px;
}

.hero__price-note {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 12px;
}

.hero__price-note strong {
  color: var(--text-light);
}

.hero__image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.hero__image img {
  max-width: 100%;
  border-radius: var(--radius-lg);
  animation: floatY 4s ease-in-out infinite;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ── PAIN POINTS SECTION ── */
.pain-points {
  padding: 70px 0;
}

.pain-points__intro {
  font-size: var(--fs-h2-sm);
  font-weight: var(--fw-semi);
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 40px;
}

.pain-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 50px;
}

.pain-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  flex: 1;
  max-width: 300px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.pain-card__icon {
  width: 50px;
  height: 50px;
  background: var(--danger);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.pain-card__icon svg {
  width: 22px;
  height: 22px;
  fill: white;
}

.pain-card__text {
  font-size: 15px;
  font-weight: var(--fw-semi);
  color: var(--text-dark);
  line-height: 1.4;
}

.pain-points__solution {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.pain-points__solution p {
  font-size: 17px;
  margin-bottom: 16px;
  line-height: 1.7;
}

.pain-points__solution p strong {
  color: var(--primary);
}

/* ── FOR WHO SECTION ── */
.for-who {
  padding: 70px 0;
}

.for-who .container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.for-who__image {
  flex: 0 0 400px;
}

.for-who__image img {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.for-who__content {
  flex: 1;
}

.for-who__label {
  color: var(--text-muted);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.for-who__title {
  font-size: 28px;
  font-weight: var(--fw-bold);
  color: var(--text-light);
  margin-bottom: 24px;
}

.condition-list {
  margin-bottom: 24px;
}

.condition-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 17px;
  color: var(--text-light);
}

.condition-list li .check-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  fill: var(--primary);
}

.for-who__desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

.for-who__desc strong {
  color: var(--text-light);
}

/* ── PRODUCT SECTION ── */
.product {
  padding: 80px 0;
}

.product .container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.product__image {
  flex: 0 0 380px;
}

.product__image img {
  border-radius: var(--radius-lg);
  animation: floatY 5s ease-in-out infinite;
}

.product__content {
  flex: 1;
}

.product__label {
  display: inline-block;
  background: var(--primary);
  color: var(--btn-text);
  font-size: 12px;
  font-weight: var(--fw-xbold);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product__title {
  font-size: 28px;
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.product__desc {
  font-size: 16px;
  color: #555;
  margin-bottom: 16px;
  line-height: 1.7;
}

.product__highlight {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.7;
  padding: 16px;
  background: rgba(16, 194, 51, 0.08);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.product__highlight strong {
  color: var(--primary);
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 194, 51, 0.08);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
}

.feature-pill svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
  flex-shrink: 0;
}

/* ── WHY NOT SECTION ── */
.why-not {
  padding: 70px 0;
}

.why-not__title {
  font-size: 28px;
  font-weight: var(--fw-bold);
  color: var(--secondary);
  text-align: center;
  margin-bottom: 40px;
}

.reason-list {
  max-width: 700px;
  margin: 0 auto;
}

.reason-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.reason-number {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--text-light);
  color: var(--bg-dark);
  font-weight: var(--fw-xbold);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}

.reason-text {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.6;
  padding-top: 8px;
}

/* ── IDENTIFY SECTION ── */
.identify {
  padding: 70px 0;
}

.identify__title {
  font-size: 28px;
  font-weight: var(--fw-bold);
  color: var(--secondary);
  text-align: center;
  margin-bottom: 40px;
}

.identify-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto 40px;
}

.identify-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.05);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.identify-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.identify-card__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.identify-card__icon svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.identify-card__text {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.4;
}

.identify__conclusion {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
  opacity: 0.9;
}

.identify__conclusion strong {
  color: var(--secondary);
}

/* ── WHAT YOU GET SECTION ── */
.what-you-get {
  padding: 80px 0;
}

.what-you-get__title {
  font-size: 28px;
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 50px;
}

.benefits-list {
  max-width: 700px;
  margin: 0 auto 40px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.benefit-item:last-child {
  border-bottom: none;
}

.benefit-item svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
  flex-shrink: 0;
}

.benefit-item span {
  font-size: 17px;
  color: var(--text-dark);
}

/* ── BONUS SECTION ── */
.bonus {
  padding: 70px 0;
}

.bonus__card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 50px;
  display: flex;
  gap: 40px;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.06);
}

.bonus__image {
  flex: 0 0 250px;
}

.bonus__image img {
  border-radius: var(--radius-lg);
}

.bonus__content {
  flex: 1;
}

.bonus__badges {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
}

.bonus__badge {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: var(--fw-xbold);
  color: white;
  text-transform: uppercase;
}

.bonus__badge--red {
  background: var(--danger);
  border-radius: var(--radius) 0 0 var(--radius);
}

.bonus__badge--green {
  background: var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.bonus__desc {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
  opacity: 0.9;
}

.bonus__desc strong {
  color: var(--primary);
}

.bonus-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  color: var(--text-light);
  font-size: 15px;
}

.bonus-list li svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── OFFER SECTION ── */
.offer {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.offer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0a1a0e 0%, #0d2614 50%, #0a1a0e 100%);
  z-index: 0;
}

.offer .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 50px;
}

.offer__content {
  flex: 1;
  text-align: center;
}

.offer__label {
  color: var(--text-light);
  font-size: 18px;
  margin-bottom: 8px;
  opacity: 0.9;
}

.offer__label strong {
  color: var(--secondary);
}

.offer__price-box {
  margin: 30px 0;
}

.offer__old-price {
  font-size: 20px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.offer__price {
  font-size: 72px;
  font-weight: var(--fw-xbold);
  color: var(--text-light);
  line-height: 1;
}

.offer__price .currency {
  font-size: 40px;
  vertical-align: super;
}

.offer__price .cents {
  font-size: 40px;
}

.offer__installment {
  color: var(--text-muted);
  font-size: 16px;
  margin-top: 8px;
}

.offer__installment strong {
  color: var(--text-light);
}

.offer__urgency {
  display: inline-block;
  background: rgba(251, 242, 191, 0.1);
  border: 1px solid rgba(251, 242, 191, 0.3);
  color: var(--secondary);
  font-size: 14px;
  font-weight: var(--fw-semi);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

.offer__access {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 12px;
}

.offer__access strong {
  color: var(--primary);
}

.offer__image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.offer__image img {
  max-width: 400px;
  border-radius: var(--radius-lg);
}

/* ── PAYMENT METHODS ── */
.payment-methods {
  padding: 30px 0;
  background: var(--bg-dark);
}

.payment-methods .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.payment-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
}

.payment-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--text-muted);
}

/* ── TRUST BADGES ── */
.trust-badges {
  padding: 50px 0;
}

.trust-badges .container {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.trust-badge__icon {
  width: 50px;
  height: 50px;
  fill: var(--primary);
}

.trust-badge__text {
  color: var(--text-light);
  font-size: 14px;
  font-weight: var(--fw-semi);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 70px 0;
}

.how-it-works__title {
  font-size: 24px;
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 50px;
}

.steps {
  display: flex;
  gap: 30px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
}

.step__number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--btn-text);
  font-size: 24px;
  font-weight: var(--fw-xbold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 16px;
}

.step__text {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.5;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 80px 0;
}

.testimonials__title {
  font-size: 28px;
  font-weight: var(--fw-bold);
  color: var(--text-light);
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(16, 194, 51, 0.3);
  background: rgba(255,255,255,0.08);
}

.testimonial-card__stars {
  color: #FFD700;
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-card__text {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
  opacity: 0.9;
}

.testimonial-card__author {
  color: var(--primary);
  font-size: 13px;
  font-weight: var(--fw-semi);
}

/* ── PERSUASION SECTION ── */
.persuasion {
  padding: 70px 0;
}

.persuasion .container {
  max-width: 700px;
}

.persuasion__label {
  font-size: 18px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 8px;
  font-style: italic;
}

.persuasion__text {
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.persuasion__text strong {
  color: var(--secondary);
}

.persuasion__highlight {
  background: rgba(16, 194, 51, 0.1);
  border-left: 4px solid var(--primary);
  padding: 24px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: 30px 0;
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── FAQ SECTION ── */
.faq {
  padding: 80px 0;
}

.faq__title {
  font-size: 28px;
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 50px;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-base);
  font-size: 17px;
  font-weight: var(--fw-semi);
  color: var(--text-dark);
  text-align: left;
  transition: var(--transition);
}

.faq-item__question:hover {
  color: var(--primary);
}

.faq-item__question .arrow {
  transition: transform 0.3s;
  font-size: 20px;
  color: var(--primary);
}

.faq-item.active .faq-item__question .arrow {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-item__answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-item__answer p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}

/* ── GUARANTEE SECTION ── */
.guarantee {
  padding: 60px 0;
}

.guarantee__card {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 2px solid rgba(16, 194, 51, 0.3);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
}

.guarantee__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  fill: var(--primary);
}

.guarantee__title {
  font-size: 22px;
  font-weight: var(--fw-bold);
  color: var(--text-light);
  margin-bottom: 16px;
}

.guarantee__text {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

/* ── FOOTER ── */
.footer {
  padding: 40px 0;
  background: #0a0a0a;
  text-align: center;
}

.footer__text {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.footer__text a {
  color: var(--primary);
}

/* ── SCROLL ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 968px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__image {
    order: -1;
    max-width: 350px;
  }

  .for-who .container {
    flex-direction: column;
  }

  .for-who__image {
    flex: 0 0 auto;
    max-width: 350px;
    margin: 0 auto;
  }

  .product .container {
    flex-direction: column;
  }

  .product__image {
    flex: 0 0 auto;
    max-width: 300px;
    margin: 0 auto;
  }

  .offer .container {
    flex-direction: column;
  }

  .offer__image {
    order: 1;
  }

  .identify-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .pain-cards {
    flex-direction: column;
    align-items: center;
  }

  .pain-card {
    max-width: 100%;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step {
    max-width: 300px;
  }

  .bonus__card {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .bonus__image {
    flex: 0 0 auto;
    max-width: 200px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 50px 0;
  }

  .hero__title {
    font-size: 26px;
  }

  .hero__subtitle {
    font-size: 18px;
  }

  .cta-btn {
    font-size: 16px;
    padding: 16px 32px;
    width: 100%;
  }

  .offer__price {
    font-size: 56px;
  }

  .offer__price .currency,
  .offer__price .cents {
    font-size: 30px;
  }

  .title-primary {
    font-size: 28px;
  }

  .trust-badges .container {
    gap: 30px;
  }

  .feature-pills {
    justify-content: center;
  }
}
