/* ============================================
   PersonalFit Landing Page — Design Tokens
   ============================================ */

:root {
  /* Brand */
  --orange: #FF4D2E;
  --orange-600: #E63A1F;
  --orange-400: #FF6B47;
  --orange-50:  #FFF1ED;
  --orange-100: #FFE0D5;

  /* Neutrals */
  --black: #0A0A0A;
  --ink:   #16110F;
  --slate-900: #1A1614;
  --slate-700: #3A3431;
  --slate-500: #6B635E;
  --slate-300: #BDB4AE;
  --slate-200: #E2DAD3;
  --slate-100: #EFE9E3;
  --cream:   #FAF6F2;
  --white:   #FFFFFF;

  /* Semantic */
  --bg: var(--white);
  --bg-warm: var(--cream);
  --bg-dark: var(--black);
  --fg: var(--ink);
  --fg-mute: var(--slate-500);
  --accent: var(--orange);

  /* Type */
  --font-display: "Archivo", system-ui, sans-serif;
  --font-narrow:  "Archivo Narrow", "Archivo", sans-serif;
  --font-body:    "Manrope", system-ui, sans-serif;

  /* Layout */
  --container: 1240px;
  --container-tight: 1080px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Density default */
  --section-y: 120px;
  --gap: 24px;
}

[data-density="dense"] {
  --section-y: 88px;
  --gap: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }

button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ============================================
   Typography
   ============================================ */

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
}

.display {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.92;
  text-wrap: balance;
}

h1.display { font-size: clamp(40px, 6.8vw, 96px); }
h2.display { font-size: clamp(34px, 4.6vw, 64px); }
h3.display { font-size: clamp(24px, 2.4vw, 36px); }

.lead {
  font-size: clamp(17px, 1.3vw, 21px);
  color: var(--slate-700);
  text-wrap: pretty;
  line-height: 1.55;
  max-width: 60ch;
}

.italic-accent {
  font-style: italic;
  font-weight: 800;
  color: var(--orange);
}

/* ============================================
   Layout primitives
   ============================================ */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 32px;
}
.container.tight { max-width: var(--container-tight); }

section {
  padding-block: var(--section-y);
  position: relative;
}

section.dark {
  background: var(--bg-dark);
  color: var(--cream);
}
section.dark .lead { color: rgba(255,255,255,0.7); }

section.warm {
  background: var(--bg-warm);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.005em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  position: relative;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 24px -8px rgba(255,77,46,0.55), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-primary:hover {
  background: var(--orange-600);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -10px rgba(255,77,46,0.7);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--slate-200);
}
.btn-ghost:hover { border-color: var(--ink); }

.btn-dark {
  background: var(--ink);
  color: var(--white);
}
.btn-dark:hover { background: #000; }

.btn-jumbo {
  padding: 24px 40px;
  font-size: 19px;
}

.btn-arrow {
  width: 22px; height: 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
  display: inline-flex; align-items: center; justify-content: center;
}

.cta-meta {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--slate-500);
  margin-top: 14px;
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap;
}
.cta-meta .dot {
  width: 4px; height: 4px; border-radius: 999px; background: var(--slate-300);
}

/* ============================================
   Nav
   ============================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 18px;
}
.nav-links {
  display: flex; gap: 32px;
  font-weight: 600; font-size: 14px;
  color: var(--slate-700);
}
.nav-links a:hover { color: var(--orange); }
.nav-cta { display: flex; gap: 12px; align-items: center; }

.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.logo-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--orange);
  color: var(--white);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 19px;
  letter-spacing: -0.05em;
  box-shadow: 0 4px 12px -4px rgba(255,77,46,0.55);
}

@media (max-width: 800px) {
  .nav-links { display: none; }
}

/* ============================================
   Hero
   ============================================ */

.hero {
  padding-top: 80px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
}

.hero-headline {
  font-size: clamp(46px, 6.6vw, 96px);
}
.hero-headline em {
  font-style: normal;
  background: linear-gradient(180deg, var(--orange) 0%, var(--orange-600) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}
.hero-headline em::after {
  content: "";
  position: absolute;
  inset: auto -4px -8px -4px;
  height: 6px;
  background: var(--orange);
  opacity: 0.18;
  border-radius: 4px;
}

.hero-sub {
  margin-top: 28px;
  font-size: clamp(17px, 1.35vw, 21px);
  color: var(--slate-700);
  max-width: 56ch;
  line-height: 1.55;
}

.hero-cta-row {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-trust {
  display: flex; gap: 28px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--slate-200);
  flex-wrap: wrap;
}
.hero-trust .item {
  display: flex; flex-direction: column;
}
.hero-trust .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.hero-trust .label {
  font-size: 12px;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  height: 720px;
}
@media (max-width: 980px) {
  .hero-visual { height: 560px; }
}

.hero-bg-blob {
  position: absolute;
  inset: -10% -20% 0 -10%;
  background:
    radial-gradient(circle at 70% 40%, rgba(255,77,46,0.18), transparent 55%),
    radial-gradient(circle at 30% 70%, rgba(255,107,71,0.15), transparent 60%);
  z-index: 0;
}

.hero-orange-card {
  position: absolute;
  right: 0;
  top: 40px;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 1/1.1;
  background: var(--orange);
  border-radius: 36px;
  z-index: 1;
  overflow: hidden;
}
.hero-orange-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.15), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0,0,0,0.12), transparent 50%);
}

.hero-orange-card .label {
  position: absolute;
  top: 32px; left: 32px;
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
}
.hero-orange-card .label .pulse {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--white);
  box-shadow: 0 0 0 0 rgba(255,255,255,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  70% { box-shadow: 0 0 0 12px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.hero-orange-card .corner-stat {
  position: absolute;
  bottom: 32px; left: 32px;
  color: var(--white);
}
.hero-orange-card .corner-stat .big {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 80px;
  letter-spacing: -0.05em;
  line-height: 0.9;
}
.hero-orange-card .corner-stat .small {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  max-width: 200px;
  margin-top: 8px;
}

.hero-phone-wrap {
  position: absolute;
  z-index: 3;
}
.hero-phone-wrap.left {
  left: -8%;
  top: 60px;
  transform: rotate(-8deg);
}
.hero-phone-wrap.right {
  right: -2%;
  bottom: 0;
  transform: rotate(6deg);
}

.float-badge {
  position: absolute;
  z-index: 5;
  background: var(--white);
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: 0 16px 40px -16px rgba(0,0,0,0.25);
  display: flex; align-items: center; gap: 12px;
}
.float-badge.b1 {
  top: 18%;
  right: -2%;
  animation: float 5s ease-in-out infinite;
}
.float-badge.b2 {
  bottom: 14%;
  left: -4%;
  animation: float 6s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.badge-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.badge-icon.orange { background: var(--orange-50); color: var(--orange); }
.badge-icon.black { background: var(--ink); color: var(--white); }

.float-badge .text { display: flex; flex-direction: column; }
.float-badge .big { font-family: var(--font-display); font-weight: 900; font-size: 18px; color: var(--ink); letter-spacing: -0.02em; }
.float-badge .small { font-size: 11px; color: var(--slate-500); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }

/* ============================================
   Marquee strip (between sections)
   ============================================ */

.marquee {
  background: var(--ink);
  color: var(--cream);
  padding-block: 24px;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: scroll-left 35s linear infinite;
  align-items: center;
}
.marquee-item {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(30px, 4vw, 56px);
  letter-spacing: -0.04em;
  display: flex; align-items: center; gap: 56px;
  color: var(--cream);
  white-space: nowrap;
}
.marquee-item .dot {
  width: 14px; height: 14px;
  background: var(--orange);
  border-radius: 999px;
  display: inline-block;
}
.marquee-item.outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--cream);
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   Problem section
   ============================================ */

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 56px;
}
@media (max-width: 900px) {
  .problem-grid { grid-template-columns: 1fr; }
}

.problem-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.25s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.problem-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -24px rgba(255,77,46,0.25);
}
.problem-card .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  color: var(--slate-300);
  letter-spacing: 0.1em;
}
.problem-card .label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.problem-card .desc {
  color: var(--slate-500);
  font-size: 14px;
  line-height: 1.5;
}
.problem-card.checked {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.problem-card.checked .label { color: var(--white); }
.problem-card.checked .desc { color: rgba(255,255,255,0.6); }
.problem-card.checked .num { color: var(--orange); }
.problem-card .check {
  position: absolute;
  top: 22px; right: 22px;
  width: 28px; height: 28px;
  border-radius: 999px;
  border: 1.5px solid var(--slate-200);
  transition: all 0.2s ease;
  display: grid; place-items: center;
}
.problem-card.checked .check {
  background: var(--orange);
  border-color: var(--orange);
}

.problem-result {
  margin-top: 40px;
  padding: 28px 36px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.problem-result .text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: -0.02em;
  max-width: 700px;
  line-height: 1.2;
}

/* ============================================
   Solution / Benefits
   ============================================ */

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 64px;
}
@media (max-width: 900px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.benefit {
  grid-column: span 4;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
}
.benefit:hover { border-color: var(--ink); }
.benefit.feature {
  grid-column: span 6;
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.benefit.feature .title { color: var(--white); }
.benefit.feature .desc { color: rgba(255,255,255,0.7); }
.benefit.accent {
  grid-column: span 6;
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.benefit.accent .title, .benefit.accent .desc { color: var(--white); }
.benefit.accent .desc { color: rgba(255,255,255,0.92); }

.benefit .icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--orange-50);
  color: var(--orange);
  display: grid; place-items: center;
  margin-bottom: 4px;
}
.benefit.feature .icon { background: rgba(255,77,46,0.18); color: var(--orange); }
.benefit.accent .icon { background: rgba(255,255,255,0.18); color: var(--white); }

.benefit .title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.benefit .desc {
  color: var(--slate-700);
  font-size: 14.5px;
  line-height: 1.55;
  margin-top: auto;
}

@media (max-width: 900px) {
  .benefit, .benefit.feature, .benefit.accent { grid-column: span 12; }
}

/* ============================================
   Feature spotlight (alternating)
   ============================================ */

.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-block: 80px;
}
.spotlight.reverse > *:first-child { order: 2; }
@media (max-width: 900px) {
  .spotlight { grid-template-columns: 1fr; gap: 40px; }
  .spotlight.reverse > *:first-child { order: 0; }
}
.spotlight .copy h3 {
  margin-top: 18px;
}
.spotlight .copy p {
  margin-top: 20px;
  color: var(--slate-700);
  font-size: 17px;
  line-height: 1.6;
  max-width: 50ch;
}
.spotlight .copy .meta {
  margin-top: 28px;
  display: flex; gap: 28px;
}
.spotlight .copy .meta .item .v {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
  letter-spacing: -0.04em;
  color: var(--orange);
}
.spotlight .copy .meta .item .l {
  font-size: 12px;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-top: 2px;
}

.spotlight-visual {
  position: relative;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--orange-50), var(--cream));
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid; place-items: center;
}
.spotlight-visual.dark {
  background: var(--ink);
}
.spotlight-visual img {
  position: relative;
  z-index: 2;
  max-width: 80%;
  max-height: 90%;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.2));
}

/* ============================================
   Calculator (R$ 1.66/day)
   ============================================ */

.calc-section {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .calc-section { grid-template-columns: 1fr; padding: 32px; }
}

.calc-display {
  text-align: center;
  padding: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
}
.calc-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(64px, 9vw, 120px);
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: var(--orange);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}
.calc-num .currency { font-size: 0.4em; color: rgba(255,255,255,0.6); font-weight: 700; }
.calc-num .decimal { font-size: 0.4em; color: rgba(255,255,255,0.6); }
.calc-num .period { font-size: 0.22em; color: rgba(255,255,255,0.6); font-weight: 600; letter-spacing: 0; margin-left: 4px; }

.calc-comparison {
  margin-top: 24px;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
}
.calc-controls .row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  margin-bottom: 10px;
  align-items: center;
}
.calc-controls .row .label {
  font-weight: 600; font-size: 14.5px;
  color: rgba(255,255,255,0.85);
}
.calc-controls .row .val {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--white);
}
.calc-controls .row.highlight {
  background: rgba(255,77,46,0.12);
  border-color: rgba(255,77,46,0.4);
}
.calc-controls .row.highlight .val { color: var(--orange); }
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  outline: none;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  background: var(--orange);
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(255,77,46,0.2);
}
.calc-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  background: var(--orange);
  border-radius: 999px;
  cursor: pointer;
  border: 0;
}
.calc-input-row {
  display: flex; flex-direction: column; gap: 8px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  margin-bottom: 10px;
}
.calc-input-row .top {
  display: flex; justify-content: space-between; align-items: center;
}

/* ============================================
   Testimonials
   ============================================ */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }

.testimonial {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.testimonial .quote-mark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 80px;
  color: var(--orange);
  line-height: 0.6;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}
.testimonial .quote {
  font-size: 17px;
  line-height: 1.55;
  color: var(--slate-900);
  flex: 1;
  text-wrap: pretty;
}
.testimonial .stat {
  margin-block: 24px;
  padding: 14px 18px;
  background: var(--orange-50);
  border-radius: var(--radius);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.testimonial .stat .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  color: var(--orange);
  letter-spacing: -0.04em;
  line-height: 1;
}
.testimonial .stat .desc {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-700);
}
.testimonial .author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--slate-100);
}
.testimonial .avatar {
  width: 48px; height: 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange-100), var(--orange-50));
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--orange);
  letter-spacing: -0.04em;
  flex-shrink: 0;
}
.testimonial .name {
  font-weight: 800;
  color: var(--ink);
  font-size: 15px;
}
.testimonial .loc {
  font-size: 13px;
  color: var(--slate-500);
}
.demo-tag {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 10px;
  font-weight: 700;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 8px;
  background: var(--slate-100);
  border-radius: 999px;
}

/* ============================================
   Offer stack
   ============================================ */

.offer {
  background: var(--ink);
  border-radius: var(--radius-xl);
  padding: 56px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
@media (max-width: 900px) {
  .offer { grid-template-columns: 1fr; padding: 32px; gap: 32px; }
}

.offer-stack {
  display: flex; flex-direction: column;
}
.offer-stack .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 16px;
  border-bottom: 1px dashed rgba(255,255,255,0.12);
  gap: 16px;
}
.offer-stack .item .lbl {
  display: flex; align-items: center; gap: 14px;
  font-size: 15.5px;
}
.offer-stack .item .lbl .tick {
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--orange);
  display: grid; place-items: center;
  color: var(--white);
  flex-shrink: 0;
}
.offer-stack .item .val {
  font-family: var(--font-display);
  font-weight: 800;
  color: rgba(255,255,255,0.7);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.offer-stack .item.bonus .val { color: var(--orange-400); }
.offer-stack .total {
  margin-top: 8px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.offer-stack .total .lbl {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
}
.offer-stack .total .val {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  color: rgba(255,255,255,0.5);
  text-decoration: line-through;
  letter-spacing: -0.03em;
}

.offer-pricing {
  background: linear-gradient(160deg, var(--orange), var(--orange-600));
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
}
.offer-pricing::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(255,255,255,0.15), transparent 50%);
  pointer-events: none;
}
.offer-pricing .tag {
  display: inline-flex; align-self: flex-start;
  background: rgba(0,0,0,0.2);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.offer-pricing .label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.offer-pricing .price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 8vw, 88px);
  letter-spacing: -0.05em;
  line-height: 0.9;
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--white);
}
.offer-pricing .price .c { font-size: 0.45em; font-weight: 700; opacity: 0.85; }
.offer-pricing .price .d { font-size: 0.45em; font-weight: 700; opacity: 0.85; }
.offer-pricing .price .p { font-size: 0.22em; font-weight: 700; opacity: 0.85; margin-left: 4px; letter-spacing: 0; }
.offer-pricing .sub {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
}
.offer-pricing .btn {
  margin-top: 8px;
}
.offer-pricing .meta {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
}

/* ============================================
   Objections
   ============================================ */

.objection {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  border-left: 4px solid var(--orange);
}
.objection + .objection { margin-top: 18px; }
.objection .q {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}
.objection .a {
  color: var(--slate-700);
  font-size: 16px;
  line-height: 1.6;
}

/* ============================================
   Guarantee
   ============================================ */

.guarantee {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 64px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 800px) {
  .guarantee { grid-template-columns: 1fr; padding: 40px; gap: 32px; text-align: center; justify-items: center; }
}

.guarantee-seal {
  width: 200px; height: 200px;
  border-radius: 999px;
  background: var(--orange);
  display: grid; place-items: center;
  text-align: center;
  color: var(--white);
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 0 0 8px rgba(255,77,46,0.15), 0 0 0 20px rgba(255,77,46,0.05);
}
.guarantee-seal .top {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 72px;
  letter-spacing: -0.05em;
  line-height: 0.9;
}
.guarantee-seal .bot {
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* ============================================
   FAQ
   ============================================ */

.faq-list {
  margin-top: 48px;
}
.faq-item {
  border-bottom: 1px solid var(--slate-200);
  padding: 24px 0;
  cursor: pointer;
}
.faq-item .q-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.faq-item .q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.3;
  flex: 1;
}
.faq-item .toggle {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--cream);
  display: grid; place-items: center;
  color: var(--ink);
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.faq-item[data-open="true"] .toggle {
  background: var(--orange);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-item .a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  color: var(--slate-700);
  font-size: 16px;
  line-height: 1.6;
  padding-right: 60px;
}
.faq-item[data-open="true"] .a {
  max-height: 300px;
  padding-top: 16px;
  opacity: 1;
}

/* ============================================
   Final CTA
   ============================================ */

.final-cta {
  background: var(--orange);
  color: var(--white);
  padding-block: 140px;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.15), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(0,0,0,0.1), transparent 50%);
}
.final-cta .inner {
  position: relative;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 8vw, 120px);
  letter-spacing: -0.05em;
  line-height: 0.9;
  text-wrap: balance;
  max-width: 16ch;
}
.final-cta h2 em {
  font-style: normal;
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}
.final-cta .sub {
  font-size: 19px;
  max-width: 60ch;
  color: rgba(255,255,255,0.92);
}

/* ============================================
   PS section
   ============================================ */

.ps {
  background: var(--cream);
  padding-block: 80px;
}
.ps .inner {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.65;
  color: var(--slate-700);
}
.ps .inner p::first-letter {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--orange);
  font-size: 1.6em;
  margin-right: 2px;
}
.ps .inner p + p { margin-top: 18px; }

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding-block: 64px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer h5 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer ul a:hover { color: var(--orange); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap; gap: 12px;
}
.footer .logo { color: var(--white); }

/* ============================================
   Sticky CTA bar
   ============================================ */

.sticky-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 80px);
  z-index: 70;
  background: var(--ink);
  color: var(--white);
  padding: 12px 12px 12px 24px;
  border-radius: 999px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: 0 20px 50px -10px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  max-width: calc(100vw - 32px);
}
.sticky-cta.show {
  transform: translate(-50%, 0);
  opacity: 1;
}
.sticky-cta .text {
  font-weight: 700;
  font-size: 14px;
}
.sticky-cta .text .price {
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -0.02em;
}
.sticky-cta .btn {
  padding: 12px 22px;
  font-size: 13px;
}
@media (max-width: 600px) {
  .sticky-cta { left: 16px; right: 16px; transform: translateY(80px); }
  .sticky-cta.show { transform: translateY(0); }
  .sticky-cta .text { display: none; }
}

/* ============================================
   Reveal animation
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .hero-orange-card .pulse, .float-badge { animation: none; }
}
