:root {
  --page: #f7f9f5;
  --surface: #f7f9f5;
  --surface-2: #eef5eb;
  --dark: #111513;
  --dark-2: #080b0a;
  --text: #101411;
  --muted: #59635d;
  --line: #dfe7df;
  --green: #1769e0;
  --lime: #76b7ff;
  --white: #fff;
  --radius: 14px;
  --shadow: 0 24px 70px rgba(16, 58, 50, .12);
}

body.theme-dark {
  --page: #080b09;
  --surface: #080b09;
  --surface-2: #101612;
  --dark: #eaffef;
  --dark-2: #07100e;
  --text: #f4fff8;
  --muted: rgba(244,255,248,.78);
  --line: rgba(255,255,255,.16);
  --shadow: 0 24px 70px rgba(0,0,0,.34);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--page);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  position: relative;
  overflow-x: hidden;
  -webkit-user-select: none;
  user-select: none;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
input, textarea {
  -webkit-user-select: text;
  user-select: text;
}

.site-shell {
  width: 100%;
  margin: 0;
  background: var(--surface);
  overflow: hidden;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 6vw, 96px);
  border-bottom: 1px solid rgba(16, 58, 50, .08);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
}
.brand-mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: inline-grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  font-size: 13px;
}
.nav nav { display: flex; gap: 30px; font-size: 13px; color: var(--muted); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.theme-toggle {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 14px;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  font-weight: 800;
  font-size: 13px;
}
body.theme-dark .theme-toggle {
  background: rgba(255,255,255,.08);
  color: var(--text);
}
.nav-cta {
  background: var(--green);
  color: #fff;
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 800;
}

.section { padding: 96px 96px; }
.section {
  padding-left: clamp(22px, 7vw, 120px);
  padding-right: clamp(22px, 7vw, 120px);
}
.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  background:
    linear-gradient(rgba(16,58,50,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,58,50,.045) 1px, transparent 1px);
  background-size: 72px 72px;
}
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  border-radius: 999px;
  color: var(--green);
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.pill.small { font-size: 11px; padding: 7px 11px; }
body:not(.theme-dark) .pill {
  background: #fff;
}
h1, h2 {
  max-width: 880px;
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.05em;
}
h1 { font-size: clamp(48px, 8vw, 82px); margin: 28px 0 22px; }
h2 { font-size: clamp(34px, 5vw, 58px); }
.hero-sub {
  max-width: 690px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}
.hero-sub strong { color: var(--text); }
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}
.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 0 24px;
  font-weight: 900;
  font-size: 14px;
  transition: transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); }
.primary {
  background: linear-gradient(135deg, #1769e0, #0b4fb3);
  color: #fff;
  box-shadow: 0 14px 34px rgba(23, 105, 224, .28);
}
.secondary { background: #fff; color: #102014; border: 1px solid var(--line); }
body.theme-dark .secondary { background: rgba(255,255,255,.1); color: #f4fff8; border-color: rgba(255,255,255,.2); }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 34px;
  margin-top: 88px;
  color: var(--muted);
  font-size: 13px;
}
.trust-row strong { color: var(--green); }
.floating-person {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 6px solid #f1f4f0;
  color: var(--green);
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 10px 28px rgba(16,58,50,.14);
  animation: floatBadge 4.8s ease-in-out infinite;
}
.floating-person::after {
  content: '';
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(23,105,224,.24);
  border-radius: inherit;
  animation: pulseRing 2.4s ease-in-out infinite;
}
.p1 { left: 110px; top: 150px; animation-delay: 0s; }
.p2 { right: 116px; top: 142px; animation-delay: -.8s; }
.p3 { left: 185px; bottom: 185px; animation-delay: -1.4s; }
.p4 { right: 150px; bottom: 205px; animation-delay: -2s; }

@keyframes floatBadge {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(4deg); }
}

@keyframes pulseRing {
  0%, 100% { opacity: .25; transform: scale(.92); }
  50% { opacity: .85; transform: scale(1.08); }
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  padding: 30px clamp(22px, 7vw, 120px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.split-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.copy, .chart-card, .feature-card, .pix-card, details {
  background: #fff;
  color: #101411;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
body.theme-dark .copy,
body.theme-dark .chart-card,
body.theme-dark .feature-card,
body.theme-dark .pix-card,
body.theme-dark details,
body.theme-dark .stats,
body.theme-dark .pill {
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-color: var(--line);
}
body.theme-dark .feature-card p,
body.theme-dark .copy p,
body.theme-dark details p,
body.theme-dark .section-head p,
body.theme-dark .offer-copy p,
body.theme-dark .pix-card label,
body.theme-dark .price span,
body.theme-dark .price small {
  color: var(--muted);
}
body.theme-dark .feature-card h3 { color: var(--text); }
body.theme-dark .feature-card span { color: var(--lime); }
body.theme-dark .copy h2,
body.theme-dark .offer-copy h2,
body.theme-dark .section-head h2,
body.theme-dark .testimonial h2,
body.theme-dark details summary {
  color: var(--text);
}
body.theme-dark .pix-card textarea {
  background: rgba(255,255,255,.08);
  color: var(--text);
}
body.theme-dark .copy-button {
  background: #fff;
  color: #10221d;
}
body.theme-dark .floating-person {
  background: rgba(255,255,255,.08);
  color: var(--lime);
  border-color: rgba(255,255,255,.14);
}
.copy { padding: 52px; }
.kicker {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 16px;
}
.copy p, .section-head p, .testimonial p, .offer-copy p, .cta-band p, details p {
  color: var(--muted);
  line-height: 1.75;
}
.copy p,
.feature-card p,
details p,
.pix-card ul,
.price span,
.price small,
.pix-card label {
  color: #4d5b54;
}
.copy h2 { margin-bottom: 18px; }
.small-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--green);
  font-weight: 900;
}
.chart-card { padding: 42px; display: grid; align-content: space-between; }
.chart-head { display: flex; justify-content: space-between; color: var(--muted); font-weight: 800; }
.dots { display: flex; gap: 8px; }
.dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.bars { height: 260px; display: flex; align-items: end; gap: 18px; }
.bars b {
  flex: 1;
  border-radius: 10px 10px 0 0;
  background: #d5ddd6;
}
.bars b.active { background: var(--green); }
.bars b {
  animation: barPulse 3s ease-in-out infinite;
}
.bars b:nth-child(2) { animation-delay: -.4s; }
.bars b:nth-child(3) { animation-delay: -.8s; }
.bars b:nth-child(4) { animation-delay: -1.2s; }
.bars b:nth-child(5) { animation-delay: -1.6s; }
.bars b:nth-child(6) { animation-delay: -2s; }
.bars b:nth-child(7) { animation-delay: -2.4s; }

@keyframes barPulse {
  0%, 100% { opacity: .72; transform: scaleY(.94); }
  50% { opacity: 1; transform: scaleY(1); }
}

.section-head {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 18px;
  margin-bottom: 64px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  min-height: 250px;
  padding: 34px;
  transition: transform .25s, box-shadow .25s;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(23,105,224,.35);
  box-shadow: 0 18px 40px rgba(16,58,50,.1);
}

.feature-card span,
.integration-row span {
  transition: transform .25s ease;
}

.feature-card:hover span,
.integration-row span:hover {
  transform: translateY(-2px);
}
.feature-card span { color: var(--green); font-weight: 900; }
.feature-card h3 { margin: 48px 0 12px; font-size: 22px; }
.feature-card p { color: var(--muted); line-height: 1.65; }

body:not(.theme-dark) .feature-card p,
body:not(.theme-dark) .copy p,
body:not(.theme-dark) details p,
body:not(.theme-dark) .pix-card ul,
body:not(.theme-dark) .price span,
body:not(.theme-dark) .price small,
body:not(.theme-dark) .pix-card label {
  color: #3f4a44;
}

body.theme-dark .feature-card p,
body.theme-dark .copy p,
body.theme-dark details p,
body.theme-dark .section-head p,
body.theme-dark .testimonial p,
body.theme-dark .offer-copy p,
body.theme-dark .pix-card ul,
body.theme-dark .pix-card label,
body.theme-dark .price span,
body.theme-dark .price small {
  color: rgba(244,255,248,.82);
}

.dark-panel {
  margin: 0 clamp(22px, 7vw, 120px);
  padding: 92px;
  border-radius: 16px;
  background: #103a32;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.dark-panel .pill { background: rgba(255,255,255,.08); color: var(--lime); border-color: rgba(255,255,255,.12); }
.dark-panel h2 { margin: 24px auto 16px; }
.dark-panel p { max-width: 620px; margin: 0 auto; color: rgba(255,255,255,.86); line-height: 1.75; }
.integration-row {
  display: flex;
  gap: 18px;
  margin-top: 64px;
  justify-content: center;
  flex-wrap: wrap;
}
.integration-row span {
  background: #fff;
  color: #102014;
  border-radius: 12px;
  padding: 18px 22px;
  font-weight: 800;
  font-size: 13px;
}

.testimonial { text-align: center; display: grid; justify-items: center; }
.quote-mark { color: var(--green); font-size: 56px; line-height: .8; font-weight: 900; }
.testimonial h2 { max-width: 880px; font-size: clamp(28px, 4vw, 48px); line-height: 1.15; }
.testimonial p { max-width: 640px; margin-top: 20px; }

.stats {
  margin: 0 clamp(22px, 7vw, 120px) 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 14px;
  background: #fff;
  color: #101411;
  border: 1px solid var(--line);
  padding: 52px;
  text-align: center;
}
.stats strong { display: block; color: var(--green); font-size: 42px; letter-spacing: -.04em; }
.stats span { color: #3f4a44; font-size: 13px; }
body.theme-dark .stats span { color: rgba(244,255,248,.82); }

.offer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  background: var(--surface-2);
}
.offer-copy {
  position: static;
  max-width: 600px;
  width: 100%;
  text-align: center;
}
.offer-copy h2 { margin-bottom: 14px; }

.offer-author {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  max-width: 560px;
  width: 100%;
  text-align: left;
}
.offer-author__photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
  border: 3px solid var(--line);
}
.offer-author__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.offer-author__name {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.offer-author__name strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
}
.offer-author__role {
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
}
.offer-author__info p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}
.offer-author__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}
.offer-author__tags span {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 3px 10px;
}
.pix-card {
  padding: 34px;
  text-align: center;
}
.checkout-card {
  overflow: hidden;
}
.price span, .price small { display: block; color: var(--muted); }
.price strong {
  display: block;
  color: var(--green);
  font-size: clamp(54px, 8vw, 82px);
  letter-spacing: -.06em;
  line-height: 1;
  margin: 6px 0;
}
.checkout-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 28px 0 24px;
}
.checkout-steps span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #425048;
  background: #f4f7f3;
  font-size: 12px;
  font-weight: 900;
}
.checkout-steps span.is-active,
.checkout-steps span.is-done {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
body.theme-dark .checkout-steps span {
  background: rgba(255,255,255,.08);
  color: rgba(244,255,248,.82);
}
body.theme-dark .checkout-steps span.is-active,
body.theme-dark .checkout-steps span.is-done {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.lead-form {
  display: grid;
  gap: 12px;
  margin-top: 8px;
  text-align: left;
}
.lead-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 14px;
  color: #101411;
  background: #f4f7f3;
  outline: 0;
}
.lead-form input:focus,
.pix-card textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(23, 105, 224, .16);
}
body.theme-dark .lead-form input {
  background: rgba(255,255,255,.08);
  color: var(--text);
  border-color: rgba(255,255,255,.18);
}
.form-note {
  color: #3f4a44;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}
body.theme-dark .form-note {
  color: rgba(244,255,248,.78);
}
.payment-area {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.payment-area[hidden] {
  display: none;
}
.payment-area.is-visible {
  animation: paymentReveal .45s ease both;
}
.qr {
  width: min(320px, 100%);
  border-radius: 16px;
  border: 1px solid var(--line);
  margin: 28px auto;
  display: block;
}
.pix-card label {
  display: block;
  text-align: left;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 8px;
}
.pix-card textarea {
  width: 100%;
  min-height: 94px;
  resize: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  color: var(--text);
  background: #f4f7f3;
  font-size: 13px;
  line-height: 1.5;
}
body.theme-dark .pix-card textarea {
  border-color: rgba(255,255,255,.18);
}
.copy-button, .whatsapp-button {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 12px;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 900;
}
.copy-button { background: var(--dark); color: #fff; }
body.theme-dark .copy-button {
  background: #fff;
  color: #102014;
}
.whatsapp-button {
  background: linear-gradient(135deg, #1769e0, #0b4fb3);
  color: #fff;
}
.pix-card ul {
  display: grid;
  gap: 10px;
  list-style: none;
  text-align: left;
  margin-top: 22px;
  color: var(--muted);
}
.pix-card li::before { content: 'OK'; color: var(--green); font-weight: 900; margin-right: 8px; font-size: 11px; }

@keyframes paymentReveal {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.faq-list { display: grid; gap: 12px; }
details { padding: 22px 24px; }
summary { cursor: pointer; font-weight: 900; }
details p { margin-top: 12px; }

/* ── Author Bio ── */
.author-bio { background: var(--surface-2); }

.bio-intro {
  max-width: 540px;
  margin-bottom: 28px;
}

.bio-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 6px;
}

.bio-intro h3 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--text);
}

.bio-intro p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
}

.bio-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ══ iPhone 13 Pro Mockup ══ */
.phone-mockup { display: flex; flex-direction: column; align-items: center; gap: 10px; text-decoration: none; }

.phone-frame {
  position: relative;
  width: 180px;
  border-radius: 36px;
  background: #1c1c1e;
  border: 6px solid #2c2c2e;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08), inset 0 0 0 1px rgba(255,255,255,.05), 0 24px 60px rgba(0,0,0,.35);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s cubic-bezier(.16,1,.3,1);
}
.phone-mockup:hover .phone-frame { transform: translateY(-8px) rotate(-1.5deg); box-shadow: 0 40px 80px rgba(0,0,0,.3); }
.phone-mockup--tt:hover .phone-frame { transform: translateY(-8px) rotate(1.5deg); }

.phone-notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 72px; height: 22px; background: #1c1c1e; border-radius: 0 0 18px 18px; z-index: 10; }
.phone-vol-up, .phone-vol-dn, .phone-pwr { position: absolute; background: #2c2c2e; border-radius: 2px; }
.phone-vol-up { left: -8px; top: 68px; width: 4px; height: 24px; }
.phone-vol-dn { left: -8px; top: 98px; width: 4px; height: 24px; }
.phone-pwr    { right: -8px; top: 80px; width: 4px; height: 36px; }

.phone-screen { width: 100%; min-height: 380px; overflow: hidden; padding-top: 26px; display: flex; flex-direction: column; }
.phone-screen--light { background: #fff; color: #1a1a1a; }
.phone-screen--dark  { background: #000; color: #fff; }

.phone-sb { display: flex; justify-content: space-between; align-items: center; padding: 2px 14px 6px; font-size: 8px; font-weight: 700; color: #1a1a1a; }
.phone-sb--dark { color: #fff; }
.phone-sb-icons { display: flex; align-items: center; gap: 4px; }

.phone-home-bar { width: 100%; display: flex; justify-content: center; padding: 8px 0 6px; }
.phone-home-bar::after { content: ''; display: block; width: 80px; height: 4px; border-radius: 100px; }
.phone-home-bar--light::after { background: #1a1a1a; }
.phone-home-bar--dark::after  { background: rgba(255,255,255,.6); }

.phone-label { font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }

.phone-ig-header { display: flex; justify-content: space-between; align-items: center; padding: 4px 12px 8px; border-bottom: 1px solid #efefef; }
.phone-ig-profile { display: flex; align-items: center; gap: 10px; padding: 10px 12px 6px; }
.phone-ig-avatar-ring { width: 52px; height: 52px; border-radius: 50%; padding: 2px; background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); flex-shrink: 0; }
.phone-ig-avatar-ring img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; object-position: top center; border: 2px solid #fff; display: block; }
.phone-ig-meta { display: flex; gap: 2px; flex: 1; justify-content: space-around; }
.phone-ig-stat { display: flex; flex-direction: column; align-items: center; gap: 1px; }
.phone-ig-stat strong { font-size: 10px; font-weight: 800; color: #1a1a1a; }
.phone-ig-stat span   { font-size: 7px; color: #666; }
.phone-ig-info { padding: 2px 12px 8px; display: flex; flex-direction: column; gap: 2px; }
.phone-ig-name { font-size: 9px; font-weight: 800; color: #1a1a1a; }
.phone-ig-bio  { font-size: 8px; color: #333; line-height: 1.5; }
.phone-ig-link { font-size: 8px; color: #00376b; font-weight: 600; }
.phone-ig-actions { display: flex; gap: 5px; padding: 0 12px 8px; }
.phone-ig-btn { flex: 1; text-align: center; font-size: 8px; font-weight: 700; padding: 4px; border-radius: 6px; background: #efefef; color: #1a1a1a; display: block; }
.phone-ig-btn--follow { background: #0095f6; color: #fff; }
.phone-ig-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin-top: auto; }
.phone-ig-thumb { aspect-ratio: 1; }

.phone-tt-header { display: flex; justify-content: center; align-items: center; gap: 6px; padding: 4px 12px 8px; font-size: 10px; font-weight: 700; color: #fff; }
.phone-tt-profile { display: flex; flex-direction: column; align-items: center; padding: 6px 12px 8px; text-align: center; gap: 4px; }
.phone-tt-avatar-ring { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(45deg,#ff0050,#00f2ea); padding: 2px; margin-bottom: 2px; }
.phone-tt-avatar-ring img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; object-position: top center; border: 2px solid #000; display: block; }
.phone-tt-handle { font-size: 9px; font-weight: 800; color: #fff; }
.phone-tt-stats { display: flex; gap: 12px; }
.phone-tt-stat { display: flex; flex-direction: column; align-items: center; gap: 1px; }
.phone-tt-stat strong { font-size: 10px; font-weight: 800; color: #fff; }
.phone-tt-stat span   { font-size: 7px; color: rgba(255,255,255,.6); }
.phone-tt-bio  { font-size: 8px; color: rgba(255,255,255,.8); line-height: 1.4; }
.phone-tt-link { font-size: 8px; color: #ff0050; font-weight: 600; }
.phone-tt-actions { display: flex; gap: 6px; align-items: center; margin-top: 2px; }
.phone-tt-follow { font-size: 9px; font-weight: 700; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); color: #fff; padding: 4px 14px; border-radius: 4px; }
.phone-tt-msg { width: 26px; height: 26px; border: 1px solid rgba(255,255,255,.2); border-radius: 4px; display: grid; place-items: center; color: #fff; }
.phone-tt-tabs { display: flex; border-top: 1px solid rgba(255,255,255,.1); margin-top: 4px; }
.phone-tt-tab { flex: 1; text-align: center; font-size: 8px; font-weight: 700; padding: 6px 0; color: rgba(255,255,255,.4); }
.phone-tt-tab.active { color: #fff; border-bottom: 1.5px solid #fff; }
.phone-tt-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; }
.phone-tt-thumb { aspect-ratio: 9/16; display: grid; place-items: center; }

/* ── Social Dashboard ── */
.social-dashboard {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
  margin-top: 40px;
}

.social-data-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.social-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.social-metric {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-decoration: none;
  color: inherit;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.social-metric:hover {
  transform: translateY(-5px);
  border-color: rgba(23,105,224,.3);
  box-shadow: 0 14px 36px rgba(16,58,50,.11);
}

.social-metric-top {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px;
}

.social-icon { flex-shrink: 0; }

.social-metric-num {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--text);
  line-height: 1;
}

.social-metric-label {
  font-size: 10px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.sparkline {
  width: 100%;
  height: 28px;
  margin-top: 10px;
}

.social-metric-change {
  font-size: 11px;
  font-weight: 700;
  color: #16a34a;
  margin-top: 3px;
}

.social-metric-change--tt { color: #ff0050; }

.social-likes-bar {
  height: 4px;
  background: rgba(255,0,80,.14);
  border-radius: 100px;
  margin-top: 14px;
  overflow: hidden;
}

.social-likes-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ff0050, #ff6688);
  border-radius: 100px;
  transition: width 1.8s cubic-bezier(.16,1,.3,1);
}

.social-likes-fill.animated { width: 88%; }

.social-chart-card {
  display: block;
  padding: 24px 24px 14px;
}

.social-chart-legend {
  display: flex;
  gap: 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
}

.social-chart-legend span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.legend-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.social-chart-wrap {
  margin-top: 14px;
  overflow: hidden;
}

.growth-svg {
  width: 100%;
  height: 140px;
  display: block;
}

.growth-line {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
}

.growth-line.animated { stroke-dashoffset: 0; }

.chart-area { transition: opacity .8s ease .8s; }

.chart-dot { transition: opacity .25s; }

.chart-x-labels {
  display: flex;
  justify-content: space-between;
  padding: 8px 0 0;
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.social-phones-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding-top: 10px;
  overflow: hidden;
  width: 100%;
  min-width: 0;
}

.phones-3d-scene {
  position: relative;
  width: 340px;
  max-width: 100%;
  height: 480px;
}

.phone-3d {
  position: absolute;
  display: block;
  text-decoration: none;
  transition: transform .5s cubic-bezier(.16,1,.3,1), filter .5s;
}

.phone-img {
  display: block;
  width: 200px;
  max-width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.phone-3d--ig {
  top: 0;
  left: 0;
  z-index: 1;
  transform: perspective(800px) rotateY(-22deg) rotate(-6deg);
  filter: brightness(0.68) saturate(0.82);
}

.phone-3d--tt {
  top: 44px;
  right: 0;
  z-index: 2;
  transform: perspective(800px) rotateY(22deg) rotate(6deg);
}

.phones-3d-scene:hover .phone-3d--ig {
  transform: perspective(800px) rotateY(-28deg) rotate(-8deg) scale(0.95);
  filter: brightness(0.52) saturate(0.72);
}

.phones-3d-scene:hover .phone-3d--tt {
  transform: perspective(800px) rotateY(28deg) rotate(8deg);
}

.phones-cta-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.phone-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}

.phone-cta-btn:hover { transform: translateY(-2px); }

.phone-cta-btn--ig {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  box-shadow: 0 8px 22px rgba(220,39,67,.26);
}

.phone-cta-btn--tt {
  background: #010101;
  color: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,.2);
}

body.theme-dark .social-metric {
  background: rgba(255,255,255,.06);
  border-color: var(--line);
}

body.theme-dark .social-metric-num { color: var(--text); }
body.theme-dark .social-metric-top,
body.theme-dark .social-metric-label { color: rgba(244,255,248,.6); }

body.theme-dark .social-chart-card {
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-color: var(--line);
}

/* ── end Social Dashboard ── */

.cta-band {
  margin-top: 0;
  padding: 64px 96px;
  background: linear-gradient(135deg, #0a2e68, #0b4fb3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta-band h2 { font-size: clamp(30px, 4vw, 48px); color: #fff; text-shadow: 0 1px 0 rgba(0,0,0,.18); }
.cta-band p { color: rgba(255,255,255,.9); margin-top: 10px; }
.cta-band .primary { background: #fff; color: #0b4fb3; box-shadow: 0 14px 34px rgba(255,255,255,.18); flex-shrink: 0; }

footer {
  background: var(--dark-2);
  color: rgba(255,255,255,.78);
  padding: 58px clamp(22px, 7vw, 120px);
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
footer .brand { color: #fff; }

.sticky-buy {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 50;
  transform: translateX(-50%);
  width: min(560px, calc(100% - 28px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 8px 8px 18px;
  box-shadow: 0 18px 50px rgba(16,58,50,.18);
  backdrop-filter: blur(12px);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 86px;
  z-index: 51;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 45px rgba(37, 211, 102, .26);
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(37, 211, 102, .34);
}
.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}
body.theme-dark .sticky-buy {
  background: rgba(16, 24, 21, .94);
  border-color: rgba(255,255,255,.16);
}
.sticky-buy span { color: var(--muted); font-size: 13px; font-weight: 800; }
body.theme-dark .sticky-buy span { color: rgba(244,255,248,.84); }
.sticky-buy a {
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  padding: 12px 18px;
  font-weight: 900;
  font-size: 13px;
}

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s ease, transform .75s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }

@media (max-width: 900px) {
  .site-shell { width: 100%; margin: 0; }
  .nav { padding: 0 20px; }
  .nav nav { display: none; }
  .section { padding: 70px 22px; }
  .hero { min-height: auto; padding: 86px 20px 70px; }
  .floating-person { display: none; }
  .hero-actions { flex-direction: column; width: 100%; max-width: 420px; }
  .btn { width: 100%; }
  .trust-row { margin-top: 50px; gap: 14px; }
  .logo-strip { grid-template-columns: repeat(2, 1fr); padding: 24px 20px; }
  .split-card, .features-grid, .stats { grid-template-columns: 1fr; }
  .offer-author { flex-direction: column; align-items: center; text-align: center; gap: 14px; }
  .offer-author__name { align-items: center; }
  .offer-author__tags { justify-content: center; }
  .social-dashboard { grid-template-columns: 1fr; }
  .social-metrics-row { grid-template-columns: repeat(2, 1fr); }
  .social-metric--likes { grid-column: span 2; }
  .phones-3d-scene { width: 280px; height: 400px; margin: 0 auto; }
  .phone-img { width: 160px; }
  .phone-3d--ig { transform: perspective(600px) rotateY(-18deg) rotate(-4deg); }
  .phone-3d--tt { top: 36px; transform: perspective(600px) rotateY(18deg) rotate(4deg); }
  .copy { padding: 28px; }
  .chart-card { padding: 28px; }
  .dark-panel { margin: 0 20px; padding: 54px 22px; }
  .stats { margin: 0 20px 20px; padding: 34px; gap: 28px; }
  .offer-copy { max-width: 100%; }
  .cta-band { padding: 48px 22px; flex-direction: column; align-items: flex-start; }
  footer { padding: 48px 22px 90px; flex-direction: column; }
}

@media (max-width: 540px) {
  h1 { font-size: 44px; }
  h2 { font-size: 34px; }
  .nav-cta { display: none; }
  .theme-toggle { min-height: 36px; padding: 0 12px; font-size: 12px; }
  .whatsapp-float {
    right: 14px;
    bottom: 78px;
    width: 52px;
    height: 52px;
  }
  .sticky-buy span { display: none; }
  .sticky-buy a { width: 100%; text-align: center; }
}
