/* =============================================
   RESET & TOKENS
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:     #FAF8F4;
  --cream-dim: #F0EDE8;
  --ink:       #1a1a2e;
  --terracotta:#C9943A;
  --terracotta-dark: #A87A2E;
  --sage:      #2A4373;
  --sage-dark: #0F1F3D;
  --white:     #FFFFFF;
  --gray:      #6b7280;
  --line:      #E4DACA;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'Space Mono', monospace;

  --max-w: 1080px;
  --radius: 4px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 1rem;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }
:focus-visible { outline: 3px solid var(--terracotta); outline-offset: 2px; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.08; color: var(--sage-dark); }

h1 {
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  font-weight: 900;
  color: var(--sage-dark);
  letter-spacing: -0.01em;
}

.hero-em {
  font-style: italic;
  font-weight: 500;
  color: var(--terracotta);
}

h2 {
  font-size: clamp(1.7rem, 3.8vw, 2.6rem);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.center-h2 { text-align: center; }

h3 { font-size: 1.05rem; font-weight: 600; font-family: var(--font-body); }

p { color: var(--gray); }

.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.7rem;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
  margin-bottom: 1.4rem;
}

.eyebrow-light { color: var(--terracotta); }

/* =============================================
   TOPBAR
   ============================================= */
.topbar {
  background: var(--sage-dark);
  color: var(--cream);
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 0.6rem 1rem;
  letter-spacing: 0.02em;
}

#countdown { color: var(--terracotta); font-weight: 700; }

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 1rem 2.4rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  border: none;
  min-height: 48px;
  line-height: 1.2;
}

.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-1px); }

.btn-light { background: var(--cream); color: var(--sage-dark); }
.btn-light:hover { background: var(--white); }

/* =============================================
   HERO
   ============================================= */
.hero {
  background: var(--cream);
  padding: 4rem 1.5rem 4.5rem;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero h1 { margin-bottom: 1.3rem; }

.hero-sub {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 1.8rem;
  max-width: 420px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  margin-bottom: 1.6rem;
}

.price-old {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--gray);
  text-decoration: line-through;
  opacity: 0.7;
}

.price-new {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--sage-dark);
}

.price-new small { font-family: var(--font-mono); font-size: 1rem; font-weight: 400; }

.price-row-center { justify-content: center; }

.hero-note {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 0.9rem;
}

/* ---- SIGNATURE: phone chat ---- */
.hero-chat { display: flex; justify-content: center; }

.phone-frame {
  width: 290px;
  background: var(--sage-dark);
  border-radius: 32px;
  padding: 14px 10px;
  box-shadow: 0 30px 60px -20px rgba(26,46,34,0.45);
  position: relative;
}

.phone-notch {
  width: 80px;
  height: 18px;
  background: var(--sage-dark);
  border-radius: 0 0 12px 12px;
  margin: -14px auto 8px;
  position: relative;
  z-index: 2;
}

.chat-thread {
  background: var(--white);
  border-radius: 20px;
  padding: 1.2rem 0.9rem 1.4rem;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.chat-date {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gray);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bubble {
  max-width: 80%;
  padding: 0.6rem 0.9rem;
  border-radius: 16px;
  font-size: 0.85rem;
  line-height: 1.35;
}

.bubble-parent {
  align-self: flex-start;
  background: var(--cream-dim);
  color: var(--ink);
  border-bottom-left-radius: 4px;
}

.bubble-teen {
  align-self: flex-end;
  background: var(--sage);
  color: var(--white);
  border-bottom-right-radius: 4px;
}

.typing-quote {
  font-style: italic;
  background: var(--terracotta);
}

.chat-divider {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--gray);
  margin-top: 0.6rem;
  opacity: 0.8;
}

/* =============================================
   PAIN
   ============================================= */
.pain {
  background: var(--white);
  padding: 5rem 1.5rem;
  text-align: center;
}

.pain h2 { margin-bottom: 2.5rem; }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.4rem;
  margin-bottom: 2.8rem;
}

.pain-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  text-align: left;
  border-top: 3px solid var(--terracotta);
}

.pain-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--sage-dark);
  margin-bottom: 0.7rem;
}

.pain-body { font-size: 0.93rem; }

.pain-resolution {
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto;
}

.pain-resolution strong { color: var(--sage-dark); }

/* =============================================
   LEARN — editorial list, not card grid
   ============================================= */
.learn {
  background: var(--cream);
  padding: 5rem 1.5rem;
}

.learn h2 { margin-bottom: 3rem; max-width: 600px; }

.learn-list {
  display: flex;
  flex-direction: column;
}

.learn-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  padding: 1.8rem 0;
  border-top: 1px solid var(--line);
}

.learn-list .learn-row:last-child { border-bottom: 1px solid var(--line); }

.learn-row h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--sage-dark);
}

.learn-row p { font-size: 0.95rem; }

/* =============================================
   TRANSFORM (antes/después)
   ============================================= */
.transform {
  background: var(--white);
  padding: 4.5rem 1.5rem;
}

.transform h2 { margin-bottom: 2.6rem; }

.transform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  max-width: 880px;
  margin: 0 auto;
}

.transform-card {
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  background: var(--cream);
}

.transform-before { border-top: 3px solid var(--gray); }
.transform-after  { border-top: 3px solid var(--terracotta); background: var(--cream-dim); }

.transform-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 1.1rem;
  color: var(--sage-dark);
}

.transform-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }

.transform-card li {
  display: flex;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--ink);
  align-items: flex-start;
}

.transform-before li span { color: var(--gray); font-weight: 700; flex-shrink: 0; }
.transform-after li span  { color: var(--terracotta); font-weight: 700; flex-shrink: 0; }

/* =============================================
   PRODUCT VISUAL
   ============================================= */
.product-visual {
  background: var(--sage-dark);
  padding: 5rem 1.5rem;
}

.product-visual-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.product-details .section-label { color: #E8C77A; }
.product-details h2 { color: var(--white); margin-bottom: 1.8rem; }

.product-main {
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  border-left: 3px solid var(--terracotta);
  margin-bottom: 1.4rem;
}

.product-main strong {
  display: block;
  color: var(--white);
  font-size: 1.05rem;
  margin: 0.4rem 0 0.35rem;
}

.product-main p { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin: 0; }

.tag-main {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.18rem 0.55rem;
  border-radius: 3px;
  background: var(--terracotta);
  color: var(--white);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.bonus-card {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 1rem 1rem 1.1rem;
  border-top: 2px solid rgba(255,255,255,0.15);
}

.bonus-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #E8C77A;
  margin-bottom: 0.5rem;
}

.bonus-card strong {
  display: block;
  color: var(--white);
  font-size: 0.88rem;
  margin-bottom: 0.3rem;
}

.bonus-card p { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin: 0; line-height: 1.4; }

.product-img-wrap img {
  width: 100%;
  filter: drop-shadow(0 25px 50px rgba(0,0,0,0.4));
}

/* =============================================
   PREVIEW
   ============================================= */
.preview { background: var(--white); padding: 4.5rem 0 5rem; }

.preview h2 { margin-bottom: 0.6rem; }

.preview-sub {
  text-align: center;
  max-width: 460px;
  margin: 0 auto 2.2rem;
  font-size: 0.95rem;
}

.preview-scroll {
  display: flex;
  gap: 0.8rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 0.8rem 1rem;
  scrollbar-width: thin;
}

.preview-scroll::-webkit-scrollbar { height: 6px; }
.preview-scroll::-webkit-scrollbar-thumb { background: var(--line); border-radius: 10px; }

.preview-card {
  flex: 0 0 auto;
  width: 92%;
  max-width: 420px;
  scroll-snap-align: center;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.preview-card img { width: 100%; display: block; }

.preview-hint {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 0.6rem;
}

@media (min-width: 768px) {
  .preview-scroll { justify-content: center; overflow-x: visible; flex-wrap: wrap; padding: 0 1.5rem; }
  .preview-card { width: 240px; }
  .preview-hint { display: none; }
}

/* =============================================
   FOR WHO
   ============================================= */
.forwho { background: var(--cream); padding: 5rem 1.5rem; }
.forwho h2 { margin-bottom: 2.5rem; }

.forwho-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  max-width: 800px;
  margin: 0 auto;
}

.forwho-yes, .forwho-no {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
}

.forwho-yes { border-top: 3px solid var(--sage); }
.forwho-no  { border-top: 3px solid var(--terracotta); }

.forwho-yes h3 { color: var(--sage-dark); margin-bottom: 1rem; }
.forwho-no h3  { color: var(--terracotta-dark); margin-bottom: 1rem; }

.forwho-yes ul, .forwho-no ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.forwho-yes li, .forwho-no li { font-size: 0.94rem; color: var(--ink); }

/* =============================================
   CTA MID
   ============================================= */
.cta-mid { background: var(--white); padding: 5rem 1.5rem; text-align: center; }
.cta-mid-inner { max-width: 600px; margin: 0 auto; }
.cta-mid h2 { margin-bottom: 0.8rem; }
.cta-mid p  { margin-bottom: 1.6rem; font-size: 1.05rem; }
.cta-note   { font-family: var(--font-mono); font-size: 0.78rem; color: var(--gray); margin-top: 0.9rem; }

/* =============================================
   GUARANTEE
   ============================================= */
.guarantee { background: var(--cream); padding: 3rem 1.5rem; }

.guarantee-inner {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--line);
}

.guarantee-mark {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  background: var(--sage);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.1;
}

.guarantee h3 { color: var(--sage-dark); margin-bottom: 0.4rem; }
.guarantee p  { font-size: 0.93rem; }

/* =============================================
   FAQ
   ============================================= */
.faq { background: var(--white); padding: 5rem 1.5rem; }
.faq h2 { margin-bottom: 2.5rem; }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child { border-bottom: 1px solid var(--line); }

summary {
  padding: 1.3rem 0.3rem;
  font-weight: 600;
  color: var(--sage-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.98rem;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 1.3rem;
  color: var(--terracotta);
  font-weight: 400;
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 1rem;
}

details[open] summary::after { transform: rotate(45deg); }

details p { padding: 0 0.3rem 1.3rem; font-size: 0.93rem; max-width: 600px; }

/* =============================================
   CTA FINAL
   ============================================= */
.cta-final {
  background: var(--sage-dark);
  padding: 6rem 1.5rem;
  text-align: center;
}

.cta-final-inner { max-width: 640px; margin: 0 auto; }
.cta-final .eyebrow { margin-bottom: 1rem; }
.cta-final h2 { color: var(--white); margin-bottom: 2rem; }

.cta-note-light {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.9rem;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--sage-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 2rem 1.5rem;
  text-align: center;
}

.footer p { font-family: var(--font-mono); font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-bottom: 0.4rem; }
.footer a { color: rgba(255,255,255,0.55); text-decoration: underline; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-copy { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .price-row { justify-content: center; }

  .product-visual-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .product-img-wrap { order: -1; }

  .forwho-grid { grid-template-columns: 1fr; }

  .learn-row { grid-template-columns: 1fr; gap: 0.5rem; }

  .transform-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .topbar { font-size: 0.7rem; padding: 0.55rem 0.8rem; }

  .hero { padding: 3rem 1.2rem 3.2rem; }
  .phone-frame { width: 250px; }
  .chat-thread { min-height: 320px; }

  .btn-primary { font-size: 1rem; padding: 0.9rem 1.8rem; width: 100%; text-align: center; }

  .pain-grid { grid-template-columns: 1fr; }

  .bonus-grid { grid-template-columns: 1fr; }

  .pain, .learn, .product-visual, .forwho, .cta-mid, .faq, .cta-final, .preview {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }

  .guarantee-inner { flex-direction: column; text-align: center; }
}

/* =============================================
   STATUS PAGES (gracias / pendiente)
   ============================================= */
.status-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  padding: 3rem 1.2rem;
}

.status-card {
  max-width: 480px;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.6rem 2.2rem;
  text-align: center;
}

.status-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.4rem;
}

.status-icon-success { background: rgba(42,67,115,0.1); color: var(--sage); }
.status-icon-pending  { background: rgba(201,148,58,0.15); color: var(--terracotta-dark); }

.status-card .eyebrow { justify-content: center; display: flex; }

.status-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--sage-dark);
  margin-bottom: 0.9rem;
}

.status-text {
  font-size: 0.96rem;
  color: var(--gray);
  margin-bottom: 1.6rem;
  line-height: 1.6;
}

.status-box {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  text-align: left;
  margin-bottom: 1.8rem;
}

.status-box strong {
  display: block;
  color: var(--sage-dark);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.status-box p {
  font-size: 0.86rem;
  margin: 0;
}

.status-footer {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 1.2rem;
}

.status-page .btn-primary { width: 100%; text-align: center; }
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}

/* =============================================
   HOTMART WIDGET OVERRIDE
   ============================================= */
.hotmart__button-checkout,
a.hotmart-fb.hotmart__button-checkout {
  background: var(--terracotta) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: var(--radius) !important;
  font-family: var(--font-body) !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  padding: 1rem 2.4rem !important;
  min-height: 48px !important;
  cursor: pointer !important;
  transition: background 0.15s !important;
  text-align: center !important;
  display: inline-block !important;
  line-height: 1.2 !important;
}
.hotmart__button-checkout:hover,
a.hotmart-fb.hotmart__button-checkout:hover {
  background: var(--terracotta-dark) !important;
  transform: translateY(-1px) !important;
}
.btn-light.hotmart__button-checkout,
a.hotmart-fb.hotmart__button-checkout.btn-light {
  background: var(--cream) !important;
  color: var(--sage-dark) !important;
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.2rem 1.5rem;
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.8rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.trust-item svg { flex-shrink: 0; color: var(--sage); }
.trust-hotmart-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.trust-hotmart-logo {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--sage-dark);
  font-family: var(--font-body);
  background: #ff6b35;
  color: white;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
}

/* =============================================
   RESEÑAS
   ============================================= */
.reviews { background: var(--cream); padding: 5rem 1.5rem; }
.reviews h2 { margin-bottom: 0.5rem; text-align: center; }
.reviews-sub {
  text-align: center;
  font-size: 0.93rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-top: 3px solid var(--terracotta);
}
.review-stars { color: var(--terracotta); font-size: 1rem; margin-bottom: 0.7rem; }
.review-text {
  font-size: 0.93rem;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 1rem;
  font-style: italic;
}
.review-author {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gray);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* =============================================
   GARANTÍA EXTENDIDA
   ============================================= */
.guarantee-extended {
  background: var(--sage-dark);
  padding: 3.5rem 1.5rem;
}
.guarantee-extended-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 2.2rem;
  border: 1px solid rgba(255,255,255,0.12);
}
.guarantee-shield {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: var(--terracotta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.guarantee-extended h3 { color: var(--white); margin-bottom: 0.5rem; font-size: 1.1rem; }
.guarantee-extended p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.6; }
.guarantee-extended strong { color: var(--terracotta); }

@media (max-width: 480px) {
  .guarantee-extended-inner { flex-direction: column; align-items: center; text-align: center; }
  .reviews-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 1rem; }
}