/* ==========================================================
   5 PASSOS — Landing Page (mobile-first)
   ========================================================== */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

:root {
  /* surfaces */
  --bg:        #060807;
  --bg-2:      #0a0d0b;
  --surface:   #10141200;
  --card:      #11161300;
  --card-2:    #0e1311;
  --border:    #1d2521;
  --border-2:  #2a342e;

  /* text */
  --text:      #f0f3ee;
  --text-2:    #adb3aa;
  --text-3:    #6e766e;

  /* brand */
  --green:     #00e08a;
  --green-2:   #00b86f;
  --green-3:   #06351f;
  --green-glow: rgba(0, 224, 138, 0.28);

  /* accent */
  --gold:      #f5c14b;
  --gold-2:    #a37410;
  --red:       #ef4d4d;
  --red-glow:  rgba(239, 77, 77, 0.18);

  /* type */
  --display: 'Bricolage Grotesque', system-ui, sans-serif;
  --body:    'Manrope', system-ui, sans-serif;

  /* layout */
  --col:       100%;
  --col-max:   460px;
  --pad:       20px;
  --radius:    18px;
  --radius-sm: 12px;
}

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 88px; /* sticky cta room */
}

/* film grain + radial atmosphere */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(900px 600px at 50% -200px, rgba(0,224,138,0.10), transparent 70%),
    radial-gradient(700px 500px at 50% 60%, rgba(0,224,138,0.04), transparent 70%);
  pointer-events: none;
  z-index: -1;
}


img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
em { font-style: normal; }

/* ==========================================================
   Layout
   ========================================================== */
.wrap {
  width: 100%;
  max-width: var(--col-max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

section { padding: 56px 0; position: relative; }
section + section { padding-top: 40px; }

/* ==========================================================
   Type & utilities
   ========================================================== */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text);
  text-wrap: balance;
}

h1 { font-size: clamp(38px, 10.5vw, 52px); font-weight: 800; }
h2 { font-size: clamp(30px, 8.5vw, 42px); }
h3 { font-size: 20px; }

.lede {
  font-size: 17px;
  color: var(--text-2);
  margin-top: 16px;
  text-wrap: pretty;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  padding: 7px 12px;
  background: rgba(0, 224, 138, 0.08);
  border: 1px solid rgba(0, 224, 138, 0.25);
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}
.eyebrow.danger {
  color: var(--red);
  background: rgba(239, 77, 77, 0.08);
  border-color: rgba(239, 77, 77, 0.3);
}
.eyebrow.danger::before { background: var(--red); box-shadow: 0 0 8px var(--red); }
.eyebrow.gold {
  color: var(--gold);
  background: rgba(245, 193, 75, 0.08);
  border-color: rgba(245, 193, 75, 0.3);
}
.eyebrow.gold::before { background: var(--gold); box-shadow: 0 0 8px var(--gold); }

.hl { color: var(--green); }
.muted { color: var(--text-2); }

/* ==========================================================
   Buttons
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 20px;
  font-family: var(--body);
  font-weight: 800;
  font-size: 15.5px;
  letter-spacing: 0.01em;
  border-radius: 12px;
  transition: transform .15s ease, box-shadow .25s ease, filter .2s ease;
  white-space: normal;
  text-align: center;
  line-height: 1.2;
  text-wrap: balance;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: linear-gradient(180deg, #00f598 0%, #00b86f 100%);
  color: #042316;
  box-shadow:
    0 0 0 1px rgba(0,255,150,0.4) inset,
    0 12px 28px -8px rgba(0, 224, 138, 0.55),
    0 2px 0 rgba(0, 80, 50, 0.4) inset;
  text-shadow: 0 1px 0 rgba(255,255,255,0.18);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: shine 3.5s ease-in-out infinite;
}
@keyframes shine {
  0%, 60% { transform: translateX(-120%); }
  70%, 100% { transform: translateX(120%); }
}

.btn-secondary {
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--border-2);
}

/* ==========================================================
   Announce bar
   ========================================================== */
.announce {
  background: linear-gradient(90deg, #1a1108 0%, #2a1f0a 50%, #1a1108 100%);
  border-bottom: 1px solid rgba(245, 193, 75, 0.25);
  color: var(--gold);
  font-size: 12.5px;
  font-weight: 700;
  text-align: center;
  padding: 11px var(--pad);
  letter-spacing: 0.05em;
}
.announce strong { color: #fff5d6; }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  padding-top: 36px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(70% 50% at 50% 0%, rgba(0, 224, 138, 0.14), transparent 70%),
    radial-gradient(50% 40% at 50% 100%, rgba(239, 77, 77, 0.08), transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin-top: 4px;
}

/* HERO VIDEO */
.hero-video {
  position: relative;
  margin-top: 28px;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(0, 224, 138, 0.2);
  box-shadow:
    0 25px 50px -15px rgba(0, 0, 0, 0.65),
    0 0 60px -10px rgba(0, 224, 138, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hv-sound {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  color: #fff;
  cursor: pointer;
  transition: background .2s, transform .15s;
  padding: 0;
}
.hv-sound:hover { background: rgba(0, 0, 0, 0.75); }
.hv-sound:active { transform: scale(0.94); }
.hv-pulse {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239, 77, 77, 0.18);
  border: 1px solid rgba(239, 77, 77, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ff8585;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 5px 10px;
  border-radius: 999px;
}
.hv-pulse svg {
  width: 8px;
  height: 8px;
  color: var(--red);
  animation: pulseDot 1.6s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* AUTHOR MINI STRIP (small byline in hero) */
.author-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 10px 18px 10px 10px;
  background:
    linear-gradient(180deg, rgba(0,224,138,0.06), rgba(0,224,138,0.01));
  border: 1px solid rgba(0, 224, 138, 0.25);
  border-radius: 999px;
  width: fit-content;
  max-width: 100%;
}
.author-mini .am-photo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background:
    radial-gradient(circle at 50% 30%, #1a201d, #050807);
  border: 1px solid rgba(0,224,138,0.3);
}
.author-mini .am-photo image-slot,
.author-mini .am-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 25%;
}
.author-mini .am-name {
  font-weight: 800;
  font-size: 14px;
  line-height: 1.1;
  font-family: var(--display);
  letter-spacing: -0.01em;
}
.author-mini .am-role {
  font-size: 11.5px;
  color: var(--text-2);
  margin-top: 3px;
  line-height: 1.3;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 22px;
}
.hero-stats > div {
  text-align: center;
  padding: 16px 4px;
  background: linear-gradient(180deg, rgba(0,224,138,0.06), rgba(0,224,138,0.01));
  border: 1px solid rgba(0, 224, 138, 0.25);
  border-radius: 14px;
}
.hero-stats strong {
  display: block;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-stats span {
  display: block;
  font-size: 11px;
  color: var(--text-2);
  margin-top: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

/* shared chat bubble (used in DEFERIDO phone too) */
.bubble {
  margin-top: 10px;
  font-size: 10.5px;
  padding: 8px 10px;
  border-radius: 12px;
  max-width: 80%;
  line-height: 1.35;
}
.bubble.ai {
  background: rgba(0, 224, 138, 0.12);
  border: 1px solid rgba(0, 224, 138, 0.3);
  border-bottom-left-radius: 4px;
  color: #d9fbe8;
}
.bubble.user {
  background: #1a201d;
  border: 1px solid var(--border);
  margin-left: auto;
  border-bottom-right-radius: 4px;
  color: var(--text);
}

/* Price card */
.price-card {
  background: linear-gradient(180deg, rgba(0,224,138,0.05), rgba(0,224,138,0.01));
  border: 1px solid rgba(0, 224, 138, 0.28);
  border-radius: var(--radius);
  padding: 22px 20px 20px;
  margin-top: 8px;
  box-shadow: 0 20px 40px -20px rgba(0, 224, 138, 0.25);
  position: relative;
}
.price-card .pc-tag {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #2b1d00;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card .from {
  font-size: 13px;
  color: var(--text-2);
  text-align: center;
}
.price-card .from s { color: var(--text-3); }
.price-card .now {
  font-family: var(--display);
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--green);
  text-align: center;
  margin-top: 4px;
  text-shadow: 0 0 30px rgba(0, 224, 138, 0.35);
}
.price-card .now small {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.price-card .install {
  text-align: center;
  font-size: 13px;
  color: var(--text-2);
  margin-top: 4px;
}
.price-card .install b { color: var(--text); }
.price-card .btn { margin-top: 18px; }
.price-card .trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 14px;
  margin-top: 16px;
  font-size: 11.5px;
  color: var(--text-2);
}
.price-card .trust-row span { display: inline-flex; align-items: center; gap: 4px; }
.price-card .trust-row svg { width: 14px; height: 14px; color: var(--green); }

/* ==========================================================
   PROBLEM
   ========================================================== */
.problem {
  text-align: center;
  padding-top: 0;
}
.problem h2 em {
  background: linear-gradient(180deg, transparent 65%, rgba(239,77,77,0.45) 65%);
  color: #ff8585;
  padding: 0 4px;
}

/* Full-bleed photographic hero image for the problem section */
.problem-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-bottom: 36px;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #050807;
}
.problem-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.problem-hero-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,9,11,0.7) 0%, transparent 30%, transparent 60%, rgba(6,9,11,0.95) 100%),
    radial-gradient(ellipse at 50% 100%, transparent 30%, rgba(6,9,11,0.4) 80%);
  pointer-events: none;
}

.reasons {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.reasons li {
  display: flex;
  gap: 14px;
  padding: 16px 16px;
  background: var(--card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.reasons .ico {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(239, 77, 77, 0.12);
  border: 1px solid rgba(239, 77, 77, 0.3);
  display: grid; place-items: center;
  color: var(--red);
  font-weight: 800;
  font-size: 18px;
}
.reasons h4 { font-family: var(--body); font-size: 15px; font-weight: 700; line-height: 1.3; }
.reasons p { font-size: 13.5px; color: var(--text-2); margin-top: 4px; line-height: 1.45; }

.problem-cost {
  margin-top: 28px;
  padding: 16px;
  border-left: 3px solid var(--red);
  background: rgba(239, 77, 77, 0.06);
  border-radius: 0 8px 8px 0;
  text-align: left;
  font-size: 14.5px;
  color: var(--text);
}
.problem-cost b { color: #ffb1b1; }

/* ==========================================================
   5 STEPS METHOD
   ========================================================== */
.method h2 em {
  color: var(--green);
  position: relative;
}
.method-intro { text-align: center; }
.method-intro .lede { max-width: 480px; margin-left: auto; margin-right: auto; }

/* Full-bleed photographic hero image for the 5-passos section */
.method-hero {
  position: relative;
  width: 100vw;
  margin: 36px 0;
  margin-left: calc(50% - 50vw);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #050807;
}
.method-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.method-hero-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,9,11,0.9) 0%, transparent 18%, transparent 82%, rgba(6,9,11,0.9) 100%);
  pointer-events: none;
}

.steps {
  list-style: none;
  margin-top: 32px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  left: 26px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: linear-gradient(180deg, var(--green-2), transparent);
  opacity: 0.35;
}
.step {
  position: relative;
  padding-left: 70px;
  margin-bottom: 26px;
}
.step:last-child { margin-bottom: 0; }
.step-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0e2419, #061309);
  border: 1px solid rgba(0, 224, 138, 0.35);
  display: grid; place-items: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  color: var(--green);
  box-shadow: 0 8px 20px -8px rgba(0,224,138,0.35);
}
.step h3 {
  font-size: 18px;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.step p {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.5;
}

/* ==========================================================
   DIFFERENTIALS
   ========================================================== */
.diffs h2 em { color: var(--green); }
.diffs-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.diff {
  padding: 18px 14px;
  background: var(--card-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: center;
}
.diff .d-ico {
  width: 38px; height: 38px;
  margin: 0 auto 10px;
  border-radius: 10px;
  background: rgba(0, 224, 138, 0.1);
  border: 1px solid rgba(0, 224, 138, 0.3);
  display: grid; place-items: center;
  color: var(--green);
}
.diff h4 { font-family: var(--body); font-size: 13.5px; font-weight: 700; line-height: 1.25; }
.diff p { font-size: 12px; color: var(--text-2); margin-top: 6px; line-height: 1.4; }

/* ==========================================================
   DEFERIDO AI
   ========================================================== */
.ai-section {
  text-align: center;
  padding-top: 0;
}
.ai-section h2 em {
  background: linear-gradient(180deg, transparent 65%, rgba(0,224,138,0.45) 65%);
  color: var(--green);
  padding: 0 4px;
}

/* Full-bleed cinematic hero with overlay text */
.ai-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-bottom: 36px;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #050807;
}
.ai-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ai-hero-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,9,11,0.6) 0%, transparent 25%, transparent 55%, rgba(6,9,11,0.98) 100%);
  pointer-events: none;
}
.ai-hero-text {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px var(--pad) 28px;
  text-align: center;
  z-index: 2;
}
.ai-hero-text h2 {
  margin-top: 10px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.8);
}
.ai-section .badge-exclusive {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #f5c14b, #c98a13);
  color: #2b1d00;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: 0 0 30px rgba(245, 193, 75, 0.4);
}

.ai-phone {
  margin: 28px auto 0;
  width: 240px;
  height: 460px;
  border-radius: 38px;
  background: #050807;
  border: 9px solid #1a201d;
  box-shadow:
    0 40px 60px -20px rgba(0,0,0,0.8),
    0 0 80px rgba(0,224,138,0.2),
    0 0 0 1px rgba(0,224,138,0.15);
  padding: 14px 12px;
  position: relative;
  overflow: hidden;
  text-align: left;
}
.ai-phone::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 22px;
  background: #0d100e;
  border-radius: 999px;
}
.ai-phone .ap-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
  color: var(--text-2);
  font-weight: 700;
  margin-top: 4px;
  padding: 0 12px;
}
.ai-phone .ap-header {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 8px;
  border-bottom: 1px solid var(--border);
}
.ap-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 14px;
  color: #042316;
  position: relative;
}
.ap-avatar::after {
  content: '';
  position: absolute;
  bottom: -2px; right: -2px;
  width: 12px; height: 12px;
  background: #00ff95;
  border: 2px solid #050807;
  border-radius: 50%;
}
.ap-name { font-weight: 800; font-size: 13px; line-height: 1; }
.ap-status { font-size: 10px; color: var(--green); margin-top: 2px; display: flex; align-items: center; gap: 4px; }
.ap-status::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
}
.ap-chat {
  padding: 14px 4px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ap-chat .bubble {
  font-size: 11px;
  padding: 10px 12px;
  max-width: 88%;
}
.ap-chat .bubble.ai {
  background: rgba(0, 224, 138, 0.13);
  border: 1px solid rgba(0,224,138,0.28);
  border-bottom-left-radius: 4px;
  color: #d9fbe8;
}
.ap-chat .bubble.user {
  background: #1a201d;
  border: 1px solid var(--border);
  margin-left: auto;
  border-bottom-right-radius: 4px;
  color: var(--text);
}
.ap-typing {
  display: inline-flex;
  gap: 3px;
  align-items: center;
  background: rgba(0,224,138,0.13);
  border: 1px solid rgba(0,224,138,0.28);
  border-radius: 12px;
  border-bottom-left-radius: 4px;
  padding: 10px 14px;
  width: fit-content;
}
.ap-typing span {
  width: 5px; height: 5px;
  background: var(--green);
  border-radius: 50%;
  animation: typing 1.2s infinite ease-in-out;
}
.ap-typing span:nth-child(2) { animation-delay: 0.15s; }
.ap-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-2px); }
}

.ai-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.ai-feature {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: var(--card-2);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.ai-feature .af-ico {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(0, 224, 138, 0.1);
  border: 1px solid rgba(0, 224, 138, 0.3);
  display: grid; place-items: center;
  color: var(--green);
}
.ai-feature h4 { font-family: var(--body); font-size: 14px; font-weight: 700; }
.ai-feature p { font-size: 12.5px; color: var(--text-2); margin-top: 3px; line-height: 1.45; }

.ai-exclusive-note {
  margin-top: 22px;
  padding: 14px;
  background: rgba(245, 193, 75, 0.07);
  border: 1px solid rgba(245, 193, 75, 0.25);
  border-radius: 12px;
  font-size: 13.5px;
  text-align: center;
  color: var(--gold);
  font-weight: 600;
}

/* ==========================================================
   WHATS INSIDE
   ========================================================== */
.inside h2 em { color: var(--green); }
.inside-list {
  margin-top: 26px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.inside-list li {
  display: flex;
  gap: 12px;
  padding: 14px 14px;
  background: var(--card-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.4;
}
.inside-list .ck {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 8px;
  background: rgba(0, 224, 138, 0.15);
  border: 1px solid rgba(0, 224, 138, 0.35);
  display: grid; place-items: center;
  color: var(--green);
  margin-top: 1px;
}
.inside-list b { color: var(--text); font-weight: 700; }

/* ==========================================================
   AUTHOR
   ========================================================== */
.author-section {
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(0,224,138,0.08), transparent 70%),
    var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.author-section h2 em {
  display: block;
  color: var(--green);
  font-size: 0.62em;
  letter-spacing: 0.02em;
  margin-top: 6px;
}

.author-photo {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 3 / 4;
  margin: 28px auto 0;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 50% 30%, #1a201d, #050807);
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.7),
    0 0 60px -10px rgba(245, 193, 75, 0.18);
}
.author-photo img,
.author-photo image-slot {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.author-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.65));
  pointer-events: none;
}
.author-photo .ap-badge {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: #042316;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
}

.author-bio {
  margin-top: 22px;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
  text-wrap: pretty;
}
.author-bio b { color: var(--text); }
.author-bio .hl-num { color: var(--green); font-weight: 800; }

.author-creds {
  margin-top: 22px;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.author-creds li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13.5px;
  line-height: 1.35;
}
.author-creds .ico {
  flex-shrink: 0;
  width: 18px; height: 18px;
  color: var(--green);
  margin-top: 1px;
}

.author-media {
  margin-top: 22px;
  padding: 16px;
  background: rgba(0, 224, 138, 0.04);
  border: 1px solid rgba(0, 224, 138, 0.2);
  border-radius: 12px;
}
.author-media .am-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--text-2);
  text-transform: uppercase;
  text-align: center;
}
.author-media .am-logos {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  align-items: center;
}
.author-media .am-logos > div {
  text-align: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.01em;
  color: var(--text);
  padding: 10px 4px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.author-media .am-logos small {
  display: block;
  font-family: var(--body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-3);
  text-transform: uppercase;
  margin-top: 2px;
}

/* ==========================================================
   BONUSES
   ========================================================== */
.bonuses { padding-top: 56px; }
.bonuses h2 em { color: var(--gold); }
.bonuses-lede {
  margin-top: 14px;
  text-align: center;
  font-size: 15px;
  color: var(--text-2);
  text-wrap: pretty;
}

.bonus-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bonus {
  position: relative;
  padding: 22px 18px 20px;
  background: linear-gradient(180deg, rgba(245,193,75,0.05), rgba(245,193,75,0.01));
  border: 1px solid rgba(245, 193, 75, 0.25);
  border-radius: 16px;
}
.bonus .b-tag {
  position: absolute;
  top: -10px;
  left: 16px;
  background: var(--gold);
  color: #2b1d00;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 2;
}
.bonus .b-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(245, 193, 75, 0.12);
  border: 1px solid rgba(245, 193, 75, 0.3);
  display: grid; place-items: center;
  color: var(--gold);
}
.bonus h4 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 14px;
}
.bonus p {
  font-size: 13.5px;
  color: var(--text-2);
  margin-top: 6px;
  line-height: 1.45;
}
.bonus .b-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-top: 14px;
}
.bonus .b-price s { color: var(--text-3); font-size: 14px; white-space: nowrap; }
.bonus .b-price b {
  color: var(--green);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.bonus-total {
  margin-top: 18px;
  padding: 18px;
  background: var(--card-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: center;
}
.bonus-total .bt-label { font-size: 13px; color: var(--text-2); }
.bonus-total .bt-amount {
  font-family: var(--display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.025em;
  margin-top: 2px;
}
.bonus-total .bt-amount s { color: var(--text-3); }
.bonus-total .bt-grats {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  color: var(--green);
  letter-spacing: 0.04em;
  text-shadow: 0 0 30px rgba(0,224,138,0.4);
}

/* ==========================================================
   FINAL OFFER
   ========================================================== */
.offer {
  background:
    radial-gradient(80% 50% at 50% 0%, rgba(0,224,138,0.1), transparent 70%),
    var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.offer-card {
  margin-top: 26px;
  background: linear-gradient(180deg, rgba(0,224,138,0.04), rgba(0,0,0,0.2));
  border: 1px solid rgba(0, 224, 138, 0.3);
  border-radius: 20px;
  padding: 26px 22px;
  position: relative;
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.5),
    0 0 60px rgba(0,224,138,0.12);
}
.offer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0,224,138,0.6), transparent 50%, rgba(245,193,75,0.4));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.stack-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stack-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
}
.stack-list li:last-child { border-bottom: none; }
.stack-list .si-name { display: flex; align-items: center; gap: 8px; }
.stack-list .si-name .ck {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(0,224,138,0.15);
  border: 1px solid rgba(0,224,138,0.4);
  display: grid; place-items: center;
  color: var(--green);
}
.stack-list .si-val { color: var(--text-2); font-weight: 600; font-size: 13.5px; white-space: nowrap; }
.stack-list .si-total {
  font-size: 15px;
  font-weight: 800;
  padding-top: 14px;
  margin-top: 6px;
  border-top: 1px solid var(--border);
}
.stack-list .si-total .si-val { color: var(--text); }
.stack-list .si-total s { color: var(--text-3); }

.offer-price {
  margin-top: 20px;
  text-align: center;
  padding: 18px;
  background: rgba(0, 224, 138, 0.06);
  border-radius: 14px;
  border: 1px dashed rgba(0,224,138,0.35);
}
.offer-price .op-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.offer-price .op-from {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 4px;
}
.offer-price .op-from s { font-weight: 600; }
.offer-price .op-now {
  font-family: var(--display);
  font-weight: 800;
  font-size: 64px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--green);
  margin-top: 8px;
  text-shadow: 0 0 30px rgba(0,224,138,0.4);
}
.offer-price .op-now small {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.offer-price .op-install {
  font-size: 13.5px;
  color: var(--text-2);
  margin-top: 6px;
}
.offer-price .op-install b { color: var(--text); }
.offer-price .op-save {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--gold);
  background: rgba(245,193,75,0.1);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(245,193,75,0.3);
}

.offer-card .btn { margin-top: 18px; padding: 20px; font-size: 16.5px; }

.pay-row {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.pay-row .pay-label {
  font-size: 11px;
  color: var(--text-3);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pay-method {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-2);
  padding: 6px 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.urgency-note {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(245, 193, 75, 0.08);
  border: 1px solid rgba(245, 193, 75, 0.25);
  border-radius: 10px;
  font-size: 12.5px;
  color: var(--gold);
  font-weight: 600;
  text-align: center;
}

/* ==========================================================
   GUARANTEE
   ========================================================== */
.guarantee {
  text-align: center;
  padding: 48px 0;
}
.guarantee-badge {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  position: relative;
}
.guarantee-badge svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 0 20px rgba(0,224,138,0.35));
}
.guarantee h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  margin-top: 16px;
}
.guarantee p {
  margin-top: 10px;
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.5;
  text-wrap: pretty;
}

/* ==========================================================
   FAQ
   ========================================================== */
.faq h2 em { color: var(--green); }
.faq-list {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--card-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 14.5px;
  line-height: 1.35;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(0,224,138,0.12);
  border: 1px solid rgba(0,224,138,0.3);
  color: var(--green);
  display: grid; place-items: center;
  font-size: 18px;
  font-weight: 700;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer {
  padding: 0 18px 18px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
  text-wrap: pretty;
}

/* ==========================================================
   FINAL CTA
   ========================================================== */
.final-cta {
  text-align: center;
  padding: 56px 0 80px;
}
.final-cta h2 {
  font-size: clamp(26px, 7vw, 34px);
}
.final-cta h2 em { color: var(--green); }
.final-cta p {
  margin-top: 12px;
  font-size: 15px;
  color: var(--text-2);
  text-wrap: pretty;
}
.final-cta .btn { margin-top: 22px; }

/* ==========================================================
   FOOTER
   ========================================================== */
footer {
  padding: 28px var(--pad) 32px;
  text-align: center;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.6;
}
footer .fc { max-width: var(--col-max); margin: 0 auto; }
footer .legal { margin-top: 8px; font-size: 11px; }
footer a { color: var(--text-2); text-decoration: underline; }

/* ==========================================================
   STICKY MOBILE CTA
   ========================================================== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  z-index: 100;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(8, 11, 9, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  transform: translateY(110%);
  transition: transform .35s cubic-bezier(.2,.8,.25,1);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .sc-wrap {
  max-width: var(--col-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sticky-cta .sc-price {
  flex: 0 0 auto;
  text-align: left;
}
.sticky-cta .sc-price .sc-from {
  font-size: 10.5px;
  color: var(--text-3);
  line-height: 1;
}
.sticky-cta .sc-price .sc-from s { color: var(--text-3); }
.sticky-cta .sc-price .sc-now {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
  color: var(--green);
  letter-spacing: -0.02em;
  margin-top: 3px;
}
.sticky-cta .btn {
  padding: 14px 18px;
  font-size: 14px;
  flex: 1;
}

/* ==========================================================
   Animations & decorations
   ========================================================== */
.scroll-fade {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.25,1);
}
.scroll-fade.in {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================
   Desktop / tablet refinements
   ========================================================== */
@media (min-width: 540px) {
  :root { --col-max: 520px; --pad: 28px; }
  h1 { font-size: 46px; }
  h2 { font-size: 38px; }
  .hero-visual { height: 360px; }
  .hv-book { width: 210px; height: 280px; left: 4%; }
  .hv-phone { width: 200px; height: 340px; right: 4%; }
}

@media (min-width: 760px) {
  :root { --col-max: 560px; }
  .diffs-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .author-creds { grid-template-columns: 1fr 1fr; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
