/* ===== PIXEL IA — PAGE-SPECIFIC STYLES ===== */

/* --- Brand color overrides (accent orange, community theme) --- */
.hero { padding: 6rem 2rem 5rem; }
.hero::before {
  background: radial-gradient(ellipse at 60% 40%, rgba(254,80,0,0.04) 0%, transparent 60%);
}
.hero-badge {
  background: rgba(254,80,0,0.1); border: 1px solid rgba(254,80,0,0.25);
  color: var(--accent-light);
}
.hero h1 { font-size: clamp(2.2rem, 4.5vw, 3rem); }
.hero-sub { max-width: 720px; font-size: clamp(1.1rem, 2vw, 1.25rem); }
.hero-sub p + p { margin-top: 0.8rem; }
.hero-checks {
  list-style: none; padding: 0; margin: 0.6rem auto;
  display: flex; flex-direction: column; gap: 0.35rem;
  text-align: left; max-width: 400px;
}
.hero-checks li::before {
  content: "✓"; color: var(--accent); font-weight: 700; margin-right: 0.6rem;
}
.hero-sub strong { color: var(--white); font-weight: 700; }
.hero-sub .highlight { color: var(--accent); font-weight: 700; }
.hero-hook {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin-top: 1rem !important;
}
.hero-cta-group { margin-bottom: 2rem; }
.section-subtitle { max-width: 750px; }
.faq-section { background: var(--gray-50); }
.faq-item:hover { border-color: var(--accent); }
.faq-question .arrow { color: var(--accent); }
.final-cta::before {
  background: radial-gradient(ellipse at 50% 50%, rgba(254,80,0,0.06) 0%, transparent 60%);
}
.footer { border-top: 1px solid rgba(254,80,0,0.1); }
.timeline::before {
  background: linear-gradient(180deg, var(--accent), var(--brand));
}
.timeline-item:hover .timeline-content {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(254,80,0,0.08);
}

/* --- Logo --- */
.logo { display: flex; gap: 0.5rem; align-items: center; }
.logo svg {
  height: 28px;
  width: auto;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.01em;
  line-height: 1;
}

/* ===== VSL (VTurb SmartPlayer) ===== */
.vsl-container {
  max-width: 900px;
  margin: 2rem auto 0;
  position: relative;
  z-index: 2;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}
.vsl-horizontal { display: block; }
.vsl-vertical { display: none; }

/* ===== GAP SECTION (pain points) ===== */
.gap-content {
  max-width: 750px;
}
.gap-content p {
  font-size: var(--text-card);
  color: var(--gray-700);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.gap-content p:last-child { margin-bottom: 0; }
.gap-content strong {
  color: var(--gray-900); font-weight: 700;
}
.gap-content em {
  color: var(--accent); font-style: normal; font-weight: 600;
}
.gap-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.gap-cards--two {
  grid-template-columns: repeat(2, 1fr);
}
.gap-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border-top: 3px solid var(--gray-300);
  transition: all 0.45s var(--easing);
}
.gap-card:hover {
  border-top-color: var(--accent);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}
.gap-card-icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  display: block;
}
.gap-card h3 {
  font-size: var(--text-base); font-weight: 700;
  color: var(--gray-900); margin-bottom: 0.5rem;
}
.gap-card p {
  font-size: var(--text-body); color: var(--gray-600); line-height: 1.65;
}

/* ===== TRANSITION SECTION (next step) ===== */
.transition-section {
  background: linear-gradient(170deg, var(--dark) 0%, var(--dark2) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.transition-section::before {
  content: '';
  position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(ellipse at 50% 50%, rgba(254,80,0,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.transition-inner {
  max-width: 700px; margin: 0 auto;
  position: relative; z-index: 2;
}
.transition-section h2 {
  font-size: var(--text-h2);
  font-weight: 800; color: var(--white);
  line-height: 1.2; margin-bottom: 1.2rem;
}
.transition-section h2 .highlight,
.section-title .highlight {
  background: linear-gradient(135deg, var(--accent), #ff8a3d, var(--accent));
  background-size: 300% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerGradient 6s ease-in-out infinite;
}
.transition-section p {
  font-size: var(--text-card);
  color: var(--text-muted); line-height: 1.7;
  margin-bottom: 0.8rem;
}
.transition-pills {
  display: flex; justify-content: center; gap: 1rem;
  margin-top: 2rem; flex-wrap: wrap;
}
.transition-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: rgba(254,80,0,0.1);
  border: 1px solid rgba(254,80,0,0.25);
  border-radius: var(--radius-full);
  font-size: var(--text-list); font-weight: 600;
  color: var(--accent-light);
}

/* ===== PILLAR GRID (5 cards: 3 top + 2 bottom) ===== */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pillar-grid--five {
  grid-template-columns: repeat(6, 1fr);
}
.pillar-grid--five .pillar-card:nth-child(1) { grid-column: 1 / 3; }
.pillar-grid--five .pillar-card:nth-child(2) { grid-column: 3 / 5; }
.pillar-grid--five .pillar-card:nth-child(3) { grid-column: 5 / 7; }
.pillar-grid--five .pillar-card:nth-child(4) { grid-column: 1 / 5; }
.pillar-grid--five .pillar-card:nth-child(5) { grid-column: 5 / 7; }

.pillar-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.45s var(--easing);
}
.pillar-card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(254,80,0,0.1);
  transform: translateY(-6px);
}
.pillar-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.pillar-card h3 {
  font-size: var(--text-base); font-weight: 700;
  color: var(--gray-900); margin-bottom: 0.5rem;
}
.pillar-card p {
  font-size: var(--text-body); color: var(--gray-600); line-height: 1.65;
}
.pillar-card p + p { margin-top: 0.5rem; }
.pillar-card p strong { color: var(--gray-900); }

/* ===== "O QUE VOCÊ RECEBE" — Sub-sections ===== */
.recv-block {
  padding: 2.5rem 0;
  border-top: 1px solid var(--gray-300);
}
.recv-block:first-of-type {
  padding-top: 0;
  border-top: none;
}

/* Header with number */
.recv-header {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}
.recv-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  opacity: 0.2;
  flex-shrink: 0;
  font-family: 'DM Sans', sans-serif;
}
.recv-header h3 {
  font-size: var(--text-h3);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.4rem;
}
.recv-header p {
  font-size: var(--text-body);
  color: var(--gray-600);
  line-height: 1.65;
}
.recv-header p strong { color: var(--accent); }

/* Community features (3-col grid) */
.recv-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.recv-feature {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  text-align: center;
  transition: all 0.35s var(--easing);
}
.recv-feature:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}
.recv-feature-icon {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
  display: block;
}
.recv-feature strong {
  display: block;
  font-size: var(--text-body);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.3rem;
}
.recv-feature p {
  font-size: var(--text-list);
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
}

/* Events (2-col grid, balanced) */
.recv-events {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.recv-events--three {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .recv-events--three { grid-template-columns: 1fr; }
}
.recv-event-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: all 0.35s var(--easing);
}
.recv-event-card:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}
.recv-event-day {
  font-size: var(--text-list);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.recv-event-card h4 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.4rem;
}
.recv-event-card > p {
  font-size: var(--text-body);
  color: var(--gray-600);
  line-height: 1.6;
}
.recv-format-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}
.recv-format-pills--2x2 {
  display: flex;
  flex-wrap: wrap;
}
.recv-format-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.7rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: var(--text-list);
  font-weight: 600;
  color: var(--gray-700);
  white-space: nowrap;
}

/* Format details (4-col row below events) */
.recv-formats-detail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.recv-format-detail {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  text-align: center;
  transition: all 0.35s var(--easing);
}
.recv-format-detail:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}
.recv-format-detail-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}
.recv-format-detail strong {
  display: block;
  font-size: var(--text-body);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.3rem;
}
.recv-format-detail p {
  font-size: var(--text-list);
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
}

/* Newsletter (2-col grid) */
.recv-newsletters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.recv-newsletter-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: all 0.35s var(--easing);
}
.recv-newsletter-card:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}
.recv-newsletter-badge {
  display: inline-block;
  font-size: var(--text-micro);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(254,80,0,0.1);
  color: var(--accent);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.8rem;
}
.recv-newsletter-card h4 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.4rem;
}
.recv-newsletter-card p {
  font-size: var(--text-body);
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* Newsletter sub-blocks */
.recv-newsletter-subs {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 0.8rem;
}
.recv-newsletter-sub {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
}
.recv-newsletter-sub strong {
  display: block;
  font-size: var(--text-list);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.2rem;
}
.recv-newsletter-sub p {
  font-size: var(--text-list);
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
}

/* ===== TRAIL TIMELINE ===== */
.trail-section .timeline-item { margin-bottom: 1.5rem; }
.trail-section .timeline-content { padding: 1.2rem 1.5rem; }
.trail-section .timeline-content h4 {
  font-size: var(--text-base); margin-bottom: 0.3rem;
}
.trail-section .timeline-content p {
  font-size: var(--text-body);
}
.trail-badge {
  display: inline-block;
  font-size: var(--text-micro); font-weight: 700;
  padding: 0.2rem 0.6rem; border-radius: var(--radius-full);
  letter-spacing: 0.5px; text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.trail-badge--completed {
  background: rgba(16,185,129,0.12); color: var(--green-600);
}
.trail-badge--current {
  background: rgba(254,80,0,0.12); color: var(--accent);
  animation: pulseBadge 2s ease-in-out infinite;
}
.trail-badge--upcoming {
  background: rgba(16,28,126,0.1); color: var(--brand);
}
@keyframes pulseBadge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(254,80,0,0.3); }
  50% { box-shadow: 0 0 0 6px rgba(254,80,0,0); }
}
.timeline-dot--completed {
  background: var(--green-500) !important;
  box-shadow: 0 0 0 6px rgba(16,185,129,0.15) !important;
}

/* ===== WEEK CADENCE ===== */
.week-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.week-grid--five {
  grid-template-columns: repeat(6, 1fr);
}
.week-grid--five .week-card:nth-child(1) { grid-column: 1 / 3; }
.week-grid--five .week-card:nth-child(2) { grid-column: 3 / 5; }
.week-grid--five .week-card:nth-child(3) { grid-column: 5 / 7; }
.week-grid--five .week-card:nth-child(4) { grid-column: 1 / 4; }
.week-grid--five .week-card:nth-child(5) { grid-column: 4 / 7; }
.week-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s var(--easing);
}
.week-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.week-card-day {
  font-size: var(--text-label); font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--accent); margin-bottom: 0.5rem;
}
.week-card-icon {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
  display: block;
}
.week-card h4 {
  font-size: var(--text-body); font-weight: 700;
  color: var(--gray-900); margin-bottom: 0.3rem;
}
.week-card p {
  font-size: var(--text-list); color: var(--gray-600); line-height: 1.5;
}

/* ===== TRANSFORM TABLE OVERRIDES ===== */
.transform-table thead th:first-child { background: #FEF2F2; color: var(--red-600); }
.transform-table thead th:last-child { background: #ECFDF5; color: var(--green-600); }

/* ===== TRANSFORM CARDS (antes/depois) ===== */
.transform-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
.transform-card {
  border-radius: var(--radius-md);
  padding: 2rem 1.8rem;
  background: var(--white);
}
.transform-card--before {
  border: 1px solid rgba(239, 68, 68, 0.22);
  box-shadow: 0 6px 24px rgba(239, 68, 68, 0.05);
}
.transform-card--after {
  background: linear-gradient(135deg, rgba(254, 80, 0, 0.06), rgba(254, 80, 0, 0.02));
  border: 1px solid rgba(254, 80, 0, 0.32);
  box-shadow: 0 6px 24px rgba(254, 80, 0, 0.08);
}
.transform-card-header {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.transform-card--before .transform-card-header {
  color: #EF4444;
  border-bottom: 2px solid rgba(239, 68, 68, 0.22);
}
.transform-card--after .transform-card-header {
  color: var(--accent);
  border-bottom: 2px solid rgba(254, 80, 0, 0.32);
}
.transform-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.transform-card-list li {
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 0.5rem 0;
  padding-left: 1.6rem;
  position: relative;
}
.transform-card--before .transform-card-list li {
  color: var(--gray-500);
}
.transform-card--before .transform-card-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gray-400);
  font-weight: 700;
}
.transform-card--after .transform-card-list li {
  color: var(--gray-800, #2b2b2b);
}
.transform-card--after .transform-card-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
@media (max-width: 900px) {
  .transform-cards { grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2rem; }
  .transform-card { padding: 1.5rem 1.3rem; }
  .transform-card-header { font-size: 0.95rem; }
  .transform-card-list li { font-size: 0.9rem; }
}

/* ===== OFFER CARD ===== */
.offer-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(254,80,0,0.2);
  border-radius: var(--radius-xl);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  position: relative;
  padding: 2.8rem 2.5rem 2rem;
  box-shadow: 0 0 60px rgba(254,80,0,0.12);
}
.price-badge {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--accent) 0%, #ff6a1a 100%);
  color: var(--white);
  font-size: var(--text-small); font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: 0.5rem 1.4rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(254,80,0,0.3);
}
.offer-price {
  text-align: center;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.offer-price .pricing-old {
  font-size: var(--text-body);
  color: var(--gray-400);
  text-decoration: line-through;
  margin-bottom: 0.2rem;
}
.offer-price .pricing-reference {
  font-size: var(--text-list);
  color: var(--gray-500);
  margin-bottom: 1.2rem;
}
.offer-price .pricing-reference s {
  text-decoration: line-through;
}
.offer-price .pricing-current {
  font-family: 'DM Sans', sans-serif;
  font-size: 4.5rem; font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
  position: relative;
  display: inline-block;
}
.offer-price .pricing-current .pricing-freq {
  position: absolute;
  right: 100%;
  bottom: 0.15em;
  margin-right: 0.4rem;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.offer-price .pricing-current .currency {
  font-size: inherit;
  margin-right: 0.1rem;
}
.offer-price .pricing-period {
  font-size: var(--text-body);
  color: var(--gray-400);
}
.offer-price .pricing-renewal {
  font-size: var(--text-list);
  color: var(--gray-400);
  margin-top: 0.4rem;
}
.stack-offer { text-align: left; }
.stack-offer--primary {
  margin-bottom: 0.5rem;
}
.stack-offer--secondary {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(254,80,0,0.25);
  position: relative;
}
.stack-offer--secondary::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.stack-offer-title {
  font-size: var(--text-small); font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 1rem;
  text-align: center;
}
.stack-offer--primary .stack-offer-title {
  color: var(--accent);
  font-size: 0.85rem;
}
.stack-offer--secondary .stack-offer-title {
  color: var(--accent);
  font-size: var(--text-small);
}
.stack-offer-item {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stack-offer-item:last-child { border-bottom: none; }
.stack-offer-check {
  flex-shrink: 0;
  font-size: var(--text-body);
  font-weight: 700;
}
.stack-offer-item span {
  font-size: var(--text-list);
  line-height: 1.4;
}
.stack-offer--primary .stack-offer-item span {
  color: rgba(255,255,255,0.9);
}
.stack-offer--primary .stack-offer-item .stack-offer-check {
  color: var(--accent);
}
.stack-offer--secondary .stack-offer-item span {
  color: rgba(255,255,255,0.92);
}
.stack-offer--secondary .stack-offer-item .stack-offer-check {
  color: var(--accent);
}
.stack-offer-info {
  flex-shrink: 0;
  margin-left: auto;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1;
}
.stack-offer-info:hover {
  color: var(--accent);
}

/* ===== STACK OFFER VALUES (Hormozi-style) ===== */
.stack-offer-label {
  flex: 1;
  font-size: var(--text-list);
  line-height: 1.4;
  color: rgba(255,255,255,0.9);
}
.stack-offer-value {
  flex-shrink: 0;
  margin-left: auto;
  font-size: var(--text-list);
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  text-align: right;
}
.stack-offer-item span.stack-offer-value--incalc,
.stack-offer-item span.stack-offer-value--bonus {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.5px;
  font-size: 0.78rem;
  text-transform: uppercase;
}
.stack-offer-item--highlight {
  background: rgba(254,80,0,0.06);
  margin: 0.4rem -0.6rem 0;
  padding-left: 0.6rem;
  padding-right: 0.6rem;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid rgba(254,80,0,0.2);
}
.stack-offer-item--highlight .stack-offer-label {
  color: var(--white);
  font-weight: 600;
}
.stack-offer-item--highlight .stack-offer-check {
  color: var(--accent);
}
.stack-offer-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid rgba(254,80,0,0.3);
}
.stack-offer-total-label {
  font-size: var(--text-body);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stack-offer-total-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  font-family: 'DM Sans', sans-serif;
}

/* ===== PRICING ANCHOR (sequence of crossed-out prices) ===== */
.pricing-anchor {
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}
.pricing-anchor-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: var(--text-list);
  color: rgba(255,255,255,0.55);
  padding: 0.25rem 0;
  border-bottom: 1px dashed rgba(255,255,255,0.06);
}
.pricing-anchor-row:last-child {
  border-bottom: none;
}
.pricing-anchor-row > span:first-child {
  flex: 1;
  text-align: left;
}
.pricing-anchor-row s {
  flex-shrink: 0;
  text-decoration: line-through;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  white-space: nowrap;
}

/* ===== TOP TEAM ACCESS BAR (pre-lancamento + lancamento-alunos) ===== */
/* ===== TEAM ACCESS HIGHLIGHT BLOCK (dentro de "O que voce recebe") ===== */
.team-access-highlight {
  max-width: 1000px;
  margin: 0 auto 3rem;
  padding: 1.6rem 2rem;
  background: linear-gradient(135deg, rgba(254,80,0,0.08) 0%, rgba(254,80,0,0.04) 100%);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 1.4rem;
  position: relative;
  box-shadow: 0 4px 16px rgba(254,80,0,0.1);
}
.team-access-highlight::before {
  content: "BÔNUS DE PRÉ-LANÇAMENTO";
  position: absolute;
  top: -11px;
  left: 24px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
}
.team-access-highlight-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  line-height: 1;
}
.team-access-highlight-content {
  flex: 1;
}
.team-access-highlight-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gray-900);
  margin: 0 0 0.3rem;
  line-height: 1.3;
}
.team-access-highlight-desc {
  font-size: 0.95rem;
  color: var(--gray-700);
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .team-access-highlight {
    padding: 1.4rem 1.2rem 1.2rem;
    gap: 1rem;
    flex-direction: column;
    text-align: center;
    margin-bottom: 2rem;
  }
  .team-access-highlight-icon {
    font-size: 2rem;
  }
  .team-access-highlight-title {
    font-size: 1.05rem;
  }
  .team-access-highlight-desc {
    font-size: 0.9rem;
  }
}

/* ===== PAIN POINT CARDS (shared across captura, pre-lancamento, lancamento-alunos) ===== */
.pain-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  max-width: 760px;
}
.pain-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.1rem 1.2rem;
  background: rgba(254,80,0,0.06);
  border: 1px solid rgba(254,80,0,0.15);
  border-radius: var(--radius-sm);
}
.pain-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  line-height: 1.4;
}
.pain-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.5;
  font-weight: 500;
}
.pain-card .pain-content {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}
.pain-card .pain-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--accent);
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .pain-cards {
    grid-template-columns: 1fr;
  }
  .pain-card .pain-label {
    font-size: 0.64rem;
  }
}

/* ===== WORK LEVELS LIST (Operacional / Tático / Estratégico) ===== */
.work-levels {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1.6rem;
  max-width: 680px;
}
.work-levels li {
  padding: 0.7rem 0 0.7rem 1.4rem;
  position: relative;
  font-size: var(--text-card);
  color: var(--gray-700);
  line-height: 1.6;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.work-levels li:last-child {
  border-bottom: none;
}
.work-levels li::before {
  content: "";
  position: absolute;
  left: 0.3rem;
  top: 1.25rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.work-levels li strong {
  color: var(--gray-900);
  font-weight: 700;
  margin-right: 0.3rem;
}
@media (max-width: 600px) {
  .work-levels li {
    font-size: 1rem;
    padding: 0.6rem 0 0.6rem 1.2rem;
  }
  .work-levels li::before {
    top: 1.1rem;
  }
}
.pain-resolve-box {
  max-width: 760px;
  margin-top: 2.5rem;
  padding: 2rem 2rem 1.5rem;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  text-align: center;
}
.pain-resolve-box .transition-pills {
  margin-top: 1.2rem;
  gap: 0.5rem;
}
.pain-answer {
  font-size: var(--text-card);
  text-align: center;
  margin: 0;
}
.pain-hook {
  font-size: 1.05rem;
  text-align: center;
  color: var(--gray-700);
  margin: 0.6rem 0 0;
  line-height: 1.5;
}
.pain-hook strong {
  color: var(--gray-900);
}
@media (max-width: 600px) {
  .pain-resolve-box {
    padding: 1.5rem 1rem 1.2rem;
  }
  .pain-resolve-box .transition-pills {
    gap: 0.4rem;
  }
  .pain-resolve-box .transition-pill {
    font-size: 0.72rem;
    padding: 0.4rem 0.7rem;
    gap: 0.3rem;
  }
  .pain-hook {
    font-size: 0.95rem;
  }
}
/* Transition pills on light background */
.pills-light .transition-pill {
  background: rgba(254,80,0,0.08);
  border-color: rgba(254,80,0,0.2);
  color: var(--dark);
}

/* ===== GUARANTEE SECTION (prominent) ===== */
.guarantee-section {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1.8rem;
  padding: 1.2rem 1.4rem;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: var(--radius-md);
  text-align: left;
}
.guarantee-shield {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}
.guarantee-text strong {
  display: block;
  font-size: var(--text-body); font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.guarantee-text p {
  font-size: var(--text-list);
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  margin: 0;
}

/* ===== UPGRADE UPSELL BOX ===== */
.stack-offer--upgrade {
  background: rgba(254,80,0,0.04);
  border: 2px dashed rgba(254,80,0,0.3);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.5rem;
  text-align: center;
  margin-top: 1rem;
}
.stack-offer-upgrade-title {
  font-size: var(--text-body);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.stack-offer-upgrade-content {
  font-size: var(--text-body);
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}
.stack-offer-upgrade-content strong {
  color: var(--white);
  font-weight: 700;
}
.stack-offer-upgrade-note {
  display: block;
  font-size: var(--text-list);
  color: rgba(255,255,255,0.5);
  margin-top: 0.3rem;
}

/* ===== STICKY OFFER BAR ===== */
.sticky-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 150;
  background: rgba(10, 14, 42, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(254,80,0,0.15);
  padding: 0 2rem;
  transform: translateY(-100%);
  transition: transform 0.4s var(--easing);
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 56px; gap: 1.5rem;
}
.sticky-bar-info {
  display: flex; align-items: center; gap: 1.2rem;
  font-size: var(--text-body);
  color: rgba(255,255,255,0.9);
}
.sticky-bar-info .sticky-label {
  font-weight: 700; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.5px;
  font-size: var(--text-list);
  white-space: nowrap;
}
.sticky-bar-info .sticky-divider {
  width: 1px; height: 22px;
  background: rgba(255,255,255,0.2);
}
.sticky-bar-info .sticky-highlight {
  font-weight: 700; color: var(--white);
}
.sticky-bar-cta {
  background: var(--accent); color: var(--white);
  padding: 0.6rem 1.5rem; border-radius: var(--radius-sm);
  text-decoration: none; font-weight: 700;
  font-size: var(--text-body); white-space: nowrap;
  transition: all 0.3s;
}
.sticky-bar-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(254,80,0,0.4);
}
.sticky-bar-info .sticky-mobile { display: none; }

/* ===== PAGE-SPECIFIC ANIMATIONS ===== */
@keyframes pulseLot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(254,80,0,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(254,80,0,0); }
}
.final-cta .sub { font-size: var(--text-card); }

/* --- Founders / Quem somos --- */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 960px;
  margin: 2.5rem auto 0;
}
.founder-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.founder-avatar-wrap {
  width: 120px; height: 120px;
  min-width: 120px; min-height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 0.5rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  background: var(--white);
}
.founder-avatar {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.founder-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}
.founder-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.founder-bio {
  font-size: 0.95rem;
  color: var(--gray-600, #555);
  line-height: 1.6;
  max-width: 280px;
  margin: 0.25rem auto 0;
}

/* ===== RESPONSIVE: TABLET (768px) ===== */
@media (max-width: 768px) {
  .hero { padding: 5rem 1.2rem 3.5rem; }
  section { padding: 3.5rem 1.2rem; }
  .section-inner { max-width: 100%; }
  .hero-badge { font-size: 0.9rem; padding: 0.5rem 1.2rem; margin-top: 0; margin-bottom: 1.5rem; }
  .hero h1 { font-size: clamp(2rem, 7vw, 2.8rem); margin-bottom: 1.2rem; }
  .hero-sub { font-size: 1rem; line-height: 1.7; margin-bottom: 2rem; }
  .hero-cta-group { margin-bottom: 2rem; }
  .btn-primary { padding: 0.9rem 2rem; font-size: 0.95rem; }
  .btn-sub { font-size: 0.78rem; }
  .section-tag { font-size: 0.7rem; padding: 0.35rem 0.85rem; letter-spacing: 1.5px; }
  .section-title { font-size: clamp(1.5rem, 5vw, 2rem); margin-bottom: 1rem; }
  .section-subtitle { font-size: 1rem; margin-bottom: 2rem; }

  /* VSL mobile */
  .vsl-horizontal { display: none; }
  .vsl-vertical { display: block; }
  .vsl-container { max-width: 400px; margin: 1.5rem auto 0; }

  .gap-cards { grid-template-columns: 1fr; gap: 1rem; }
  .gap-cards--two { grid-template-columns: 1fr; }
  .gap-content p { font-size: 1rem; line-height: 1.75; }

  .recv-header { gap: 0.8rem; }
  .recv-number { font-size: 2.2rem; }
  .recv-features { grid-template-columns: repeat(3, 1fr); }
  .recv-events { grid-template-columns: 1fr; }
  .recv-formats-detail { grid-template-columns: 1fr 1fr; }
  .recv-newsletters { grid-template-columns: 1fr; }

  .week-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .week-grid--five { grid-template-columns: 1fr 1fr; }
  .week-grid--five .week-card { grid-column: auto; }
  .transition-pills { gap: 0.6rem; }
  .transition-pill { font-size: 0.78rem; padding: 0.5rem 1rem; }

  .timeline::before { left: 19px; }
  .timeline-dot { width: 40px; height: 40px; font-size: 0.7rem; }
  .timeline-item { gap: 1rem; margin-bottom: 1rem; }
  .timeline-content { padding: 1rem 1.2rem; }
  .timeline-content h4 { font-size: 0.95rem; }
  .timeline-content p { font-size: 0.82rem; }

  .transform-table { font-size: 0.82rem; }
  .transform-table thead th { padding: 0.8rem; font-size: 0.75rem; }
  .transform-table tbody td { padding: 0.7rem 0.8rem; font-size: 0.85rem; }

  .mid-cta { padding: 3rem 1.2rem; }
  .mid-cta h2 { font-size: clamp(1.3rem, 4vw, 1.6rem); }
  .mid-cta p { font-size: 0.9rem; margin-bottom: 1.5rem; }
  .btn-white { padding: 0.85rem 2rem; font-size: 0.9rem; }

  .faq-question { padding: 1rem 1.2rem; font-size: 0.92rem; }
  .faq-answer { font-size: 0.85rem; padding: 0 1.2rem; }
  .faq-item.open .faq-answer { padding: 0 1.2rem 1rem; }

  .final-cta { padding: 4rem 1.2rem; }
  .final-cta h2 { font-size: clamp(1.5rem, 5vw, 2.2rem); }
  .final-cta .sub { font-size: 0.95rem; margin-bottom: 2rem; }
  .offer-card { max-width: 100%; padding: 2.5rem 1.5rem 1.5rem; }
  .offer-price .pricing-current { font-size: 3.5rem; }
  .price-badge { font-size: 0.65rem; padding: 0.45rem 1.2rem; }
  .stack-offer-item span { font-size: 0.82rem; }
  .stack-offer-label { font-size: 0.82rem; }
  .stack-offer-value { font-size: 0.78rem; }
  .stack-offer-value--incalc { font-size: 0.66rem; }
  .stack-offer-value--bonus { font-size: 0.66rem; }
  .stack-offer-total-label { font-size: 0.85rem; }
  .stack-offer-total-value { font-size: 1.25rem; }
  .pricing-anchor-row { font-size: 0.78rem; flex-wrap: wrap; gap: 0.3rem; }
  .final-cta .btn-primary { font-size: 1rem; padding: 1rem 2rem; }

  .guarantee-section {
    padding: 1rem;
    gap: 0.8rem;
  }
  .guarantee-shield { font-size: 1.6rem; }
  .guarantee-text strong { font-size: 0.85rem; }
  .guarantee-text p { font-size: 0.78rem; }

  .sticky-bar { padding: 0 1rem; }
  .sticky-bar-inner { gap: 0.8rem; }
  .sticky-bar-info .sticky-desktop { display: none; }
  .sticky-bar-info .sticky-label { display: none; }
  .sticky-bar-info .sticky-divider { display: none; }
  .sticky-bar-info .sticky-divider-mobile { display: block; }
  .sticky-bar-info .sticky-mobile { display: inline; line-height: 1.3; font-size: 0.75rem; text-align: center; }
  .sticky-bar-info { gap: 0.8rem; font-size: 0.75rem; }
  .sticky-bar-cta { padding: 0.5rem 1rem; font-size: 0.75rem; white-space: nowrap; }

  .navbar { padding: 0 1rem; }
  .navbar-inner { height: 52px; }
  .logo { gap: 0.4rem; }
  .logo svg { height: 22px; }
  .logo-text { font-size: 22px; }

  .founders-grid { grid-template-columns: 1fr; gap: 2rem; max-width: 400px; }
  .founder-bio { max-width: 100%; }
}

/* ===== RESPONSIVE: MOBILE (480px) ===== */
@media (max-width: 480px) {
  .hero { padding: 4.5rem 1rem 3rem; }
  .hero-badge { font-size: 0.85rem; padding: 0.45rem 1rem; }
  .hero h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  section { padding: 3rem 1rem; }

  .recv-features { grid-template-columns: 1fr; }

  .week-grid,
  .week-grid--five { grid-template-columns: 1fr; }
  .week-grid--five .week-card,
  .week-grid--five .week-card:nth-child(1),
  .week-grid--five .week-card:nth-child(2),
  .week-grid--five .week-card:nth-child(3),
  .week-grid--five .week-card:nth-child(4),
  .week-grid--five .week-card:nth-child(5) { grid-column: auto; }

  .vsl-container { max-width: 100%; margin: 1.2rem auto 0; border-radius: 8px; }

  .offer-price .pricing-current { font-size: 3rem; }
}

/* ========================================================== */
/* ===== SOCIAL PROOF — BLOCO A (validação rápida) ===== */
/* ========================================================== */
.social-proof-quick {
  padding: 6rem 2rem;
  background: var(--gray-50);
  position: relative;
}
.social-proof-quick .section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.social-proof-quick .section-title {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 0.8rem;
  text-align: left;
  max-width: 820px;
}
.social-proof-quick .section-title .highlight {
  background: linear-gradient(135deg, var(--accent), #ff8a3d, var(--accent));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.social-proof-quick .section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-700);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
  line-height: 1.5;
}
.social-proof-grid {
  display: grid;
  gap: 1.8rem;
  max-width: 1180px;
  margin: 0 auto;
}
.social-proof-grid--three {
  grid-template-columns: repeat(3, 1fr);
}
.social-proof-grid--wall {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1280px;
}
.social-proof-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: transform 0.35s var(--easing), box-shadow 0.35s var(--easing), border-color 0.35s var(--easing);
}
.social-proof-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(254, 80, 0, 0.10);
  border-color: rgba(254, 80, 0, 0.35);
}
.social-proof-card-image {
  width: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--gray-200);
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-proof-card-image img {
  width: 100%;
  height: auto;
  display: block;
  flex-shrink: 0;
}
.social-proof-card-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(254, 80, 0, 0.08);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
}
.social-proof-card-quote {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--dark);
  margin: 0;
  font-weight: 400;
}
.social-proof-card-quote strong {
  font-weight: 700;
  color: var(--dark);
}
.social-proof-card-author {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  font-style: normal;
}
.social-proof-disclaimer {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: var(--gray-700);
  font-style: italic;
}
/* --- Bloco B variant: wall of love (white bg, pre-OFERTA) --- */
.social-proof-wall {
  padding: 6rem 2rem 7rem;
  background: var(--white);
  position: relative;
}
.social-proof-wall .section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  text-align: center;
  width: 100%;
}
.social-proof-wall .section-title {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 0.8rem;
  text-align: center;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.social-proof-wall .section-title .highlight {
  background: linear-gradient(135deg, var(--accent), #ff8a3d, var(--accent));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.social-proof-wall .section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-700);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.5;
}
.social-proof-wall .social-proof-card {
  background: var(--gray-50);
  border-color: var(--gray-200);
}

@media (max-width: 900px) {
  .social-proof-grid--three,
  .social-proof-grid--wall {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .social-proof-quick,
  .social-proof-wall {
    padding: 4rem 1.2rem;
  }
}
@media (min-width: 900px) and (max-width: 1100px) {
  .social-proof-grid--wall {
    grid-template-columns: repeat(2, 1fr);
    max-width: 760px;
  }
}

/* ========================================================== */
/* ===== RISK REVERSAL — GARANTIA INCONDICIONAL (full-width) === */
/* ========================================================== */
.risk-reversal {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #1a1d22 0%, #0f1115 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.risk-reversal::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(254, 80, 0, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.risk-reversal::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(254, 80, 0, 0.4) 50%, transparent 100%);
}
.risk-reversal-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.risk-reversal-badge {
  width: 96px;
  height: 96px;
  margin: 0 auto 1.6rem;
  color: var(--accent);
  filter: drop-shadow(0 6px 24px rgba(254, 80, 0, 0.45));
}
.risk-reversal-badge svg {
  width: 100%;
  height: 100%;
}
.risk-reversal-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(254, 80, 0, 0.12);
  padding: 0.45rem 1.1rem;
  border-radius: 30px;
  border: 1px solid rgba(254, 80, 0, 0.3);
  margin-bottom: 1.4rem;
}
.risk-reversal-title {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin: 0 auto 1.8rem;
  max-width: 680px;
}
.risk-reversal-highlight {
  background: linear-gradient(135deg, var(--accent), #ff8a3d, var(--accent));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.risk-reversal-lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  margin: 0 auto 1.4rem;
  max-width: 580px;
}
.risk-reversal-lead em {
  color: var(--accent);
  font-style: italic;
  font-weight: 600;
}
.risk-reversal-body {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  margin: 0 auto 1.6rem;
  max-width: 580px;
}
.risk-reversal-body strong {
  color: var(--white);
  font-weight: 700;
}
.risk-reversal-list {
  list-style: none;
  padding: 1.6rem 1.8rem;
  margin: 0 auto 1.8rem;
  max-width: 580px;
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(254, 80, 0, 0.18);
  border-radius: var(--radius-md);
}
.risk-reversal-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
  padding: 0.45rem 0;
}
.risk-reversal-check {
  color: var(--accent);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.risk-reversal-promise {
  font-size: 1.08rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 auto 1rem;
  max-width: 600px;
}
.risk-reversal-promise strong {
  color: var(--white);
  font-weight: 700;
}
.risk-reversal-promise--strong {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 0.6rem;
  margin-bottom: 2.2rem;
}
.risk-reversal-signature {
  margin-top: 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(254, 80, 0, 0.22);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.risk-reversal-signature-label {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.risk-reversal-signature-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .risk-reversal {
    padding: 4rem 1.2rem;
  }
  .risk-reversal-badge {
    width: 72px;
    height: 72px;
    margin-bottom: 1.2rem;
  }
  .risk-reversal-list {
    padding: 1.2rem 1.2rem;
  }
  .risk-reversal-list li {
    font-size: 0.94rem;
  }
  .risk-reversal-promise--strong {
    font-size: 1.08rem;
  }
}
