/* ============================================
   KIT DE AGENTES – LP STYLE
   Dark premium: preto + vermelho (#cb1e22)
   ============================================ */

:root {
  --bg-base: #050507;
  --bg-nav: rgba(9, 9, 11, 0.7);
  --bg-card: rgba(18, 18, 20, 0.4);
  --text-main: #ffffff;
  --text-muted: #a1a1aa;
  --text-dark: #52525b;
  --accent-brand: #cb1e22;
  --accent-green: #22c55e;
  --font-sans: 'Inter', sans-serif;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  background-color: #050507;
}

body {
  background: transparent;
  color: #fff;
  font-family: Inter, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll { overflow: hidden; }

a, button { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }

:focus-visible { outline: 3px solid #cb1e22; outline-offset: 2px; border-radius: 4px; }
:focus:not(:focus-visible) { outline: none; }

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 50% 0%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, black 20%, transparent 70%);
  z-index: -2;
  pointer-events: none;
}

/* ============================================
   AMBIENT GLOW
   ============================================ */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(203,30,34,0.18) 0%, transparent 60%);
  filter: blur(100px);
  pointer-events: none;
  z-index: -1;
}

.glow-top {
  top: -10vh;
  left: 50%;
  transform: translateX(-50%);
  width: 60vw;
  max-width: 800px;
  height: 60vh;
  opacity: .5;
  background: radial-gradient(circle, rgba(203,30,34,0.15) 0%, transparent 65%);
  animation: floatGlow 8s ease-in-out infinite;
}

.glow-top-right {
  top: 10vh;
  right: -10vw;
  width: 50vw;
  max-width: 600px;
  height: 70vh;
  opacity: .3;
  background: radial-gradient(circle, rgba(203,30,34,0.1) 0%, transparent 65%);
}

.glow-final {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 60vh;
  opacity: .3;
  background: radial-gradient(circle, rgba(203,30,34,0.12) 0%, transparent 65%);
}

@keyframes floatGlow {
  0%, 100% { transform: translate(-50%, 0) scale(1); }
  50% { transform: translate(-50%, -20px) scale(1.05); }
}

/* ============================================
   NAVBAR
   ============================================ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(5, 5, 7, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 clamp(1.5rem, 3vw, 3rem);
  z-index: 1000;
  transition: all .4s ease;
}

nav.scrolled {
  background: rgba(5, 5, 7, 0.92);
  border-bottom-color: rgba(255,255,255,0.06);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-logo {
  display: flex;
  align-items: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.nav-logo img { height: 34px; width: auto; display: block; }
.nav-logo span { display: none; }

.nav-links { display: flex; align-items: center; gap: 2rem; }

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: #71717a;
  text-decoration: none;
  transition: color .25s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #cb1e22;
  transition: width .3s ease;
}

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; gap: 12px; align-items: center; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  padding: 0 1.2rem;
  height: 36px;
  border-radius: 8px;
  text-decoration: none;
  transition: all .25s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-solid-brand {
  background: linear-gradient(180deg, #cb1e22 0%, #a0181b 100%);
  color: #fff;
  box-shadow: 0 0 20px rgba(203,30,34,0.3), 0 0 60px rgba(203,30,34,0.1);
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
}

.btn-solid-brand::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: translateX(-100%);
  transition: transform .6s;
}

.btn-solid-brand:hover {
  box-shadow: 0 0 30px rgba(203,30,34,0.5), 0 0 80px rgba(203,30,34,0.2);
  transform: translateY(-2px);
}

.btn-solid-brand:hover::after { transform: translateX(100%); }

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(203,30,34,0.3), 0 0 60px rgba(203,30,34,0.1); }
  50% { box-shadow: 0 0 30px rgba(203,30,34,0.5), 0 0 90px rgba(203,30,34,0.2); }
}

.btn-solid-brand.hero-cta-btn { animation: btnPulse 2.5s ease-in-out infinite; }

.btn-outline-offer {
  display: block;
  width: 100%;
  height: 48px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #a1a1aa;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  cursor: pointer;
  transition: all .25s ease;
  text-decoration: none;
}

.btn-outline-offer:hover {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 85svh;
  padding: 80px 1.5rem 2rem;
  z-index: 1;
  gap: clamp(1.2rem, 2.5vh, 2.5rem);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: #a1a1aa;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
}

.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  max-width: 900px;
  margin: 0 auto;
  letter-spacing: -0.03em;
  color: #fff;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  color: #a1a1aa;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.hero-subtitle strong { color: #fff; font-weight: 500; }

.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: #71717a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-item svg {
  width: 14px;
  height: 14px;
  stroke: #22c55e;
}

/* ============================================
   SECTIONS
   ============================================ */
.section-inner {
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 5vw, 3rem);
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.section-inner.alt-bg {
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.008), transparent);
}

.section-divider {
  width: min(80%, 120px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(203,30,34,0.2), transparent);
  margin: -1rem auto 0;
}

.text-center { text-align: center; }

.section-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  margin: 0 auto 1.5rem;
  max-width: 900px;
  letter-spacing: -0.03em;
}

.section-sub {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: #a1a1aa;
  margin: 0 auto 2rem;
  max-width: 660px;
  line-height: 1.65;
}

.label-pill {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: #cb1e22;
  background: rgba(203,30,34,0.12);
  padding: 0.35rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  text-transform: uppercase;
  border: 1px solid rgba(203,30,34,0.25);
}

.highlight-line {
  max-width: 900px;
  margin: 2rem auto 0;
  padding: 1.2rem 1.5rem;
  background: rgba(203,30,34,0.04);
  border: 1px solid rgba(203,30,34,0.12);
  border-radius: 12px;
  color: #fff;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  text-align: center;
}

/* ============================================
   GLASS CARD
   ============================================ */
.glass-card {
  background: rgba(18, 18, 20, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 16px 32px rgba(0,0,0,0.4);
  border-radius: 20px;
  transition: all .4s ease;
}

/* ============================================
   AGENTS GRID
   ============================================ */
.agents-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 3rem auto 0;
}

.agent-card {
  padding: 2.5rem 2rem;
}

.agent-badge {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  color: #cb1e22;
  background: rgba(203,30,34,0.1);
  border: 1px solid rgba(203,30,34,0.2);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.2rem;
}

.agent-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.agent-desc {
  color: #a1a1aa;
  font-size: 0.92rem;
  line-height: 1.75;
}

/* ============================================
   EXAMPLE CARD
   ============================================ */
.example-card {
  max-width: 800px;
  margin: 2rem auto 0;
  padding: 0;
  overflow: hidden;
}

.example-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.example-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: #cb1e22;
  background: rgba(203,30,34,0.1);
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.example-format {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: #52525b;
}

.example-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.example-slide {
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
}

.slide-label {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  color: #cb1e22;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.example-slide p {
  color: #a1a1aa;
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
  font-style: italic;
}

.example-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.example-footer p {
  color: #52525b;
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0;
}

/* ============================================
   FEATURES GRID
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 3rem auto 0;
}

.feature-card {
  padding: 2rem;
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(203,30,34,0.1);
  border: 1px solid rgba(203,30,34,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: #cb1e22;
  fill: none;
  stroke-width: 1.5;
}

.feature-header h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.88rem;
  color: #a1a1aa;
  line-height: 1.5;
}

.feature-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cb1e22;
  flex-shrink: 0;
  margin-top: 7px;
}

/* ============================================
   TOOL MOCKUP
   ============================================ */
.tool-mockup {
  max-width: 600px;
  margin: 3rem auto 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(18,18,20,0.6);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mockup-dots {
  display: flex;
  gap: 5px;
}

.mockup-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

.mockup-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: #52525b;
}

.mockup-body {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mockup-message {
  padding: 1rem;
  border-radius: 10px;
  font-size: 0.85rem;
  line-height: 1.6;
}

.mockup-message span {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  color: #52525b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}

.mockup-message p {
  margin: 0;
  color: #a1a1aa;
}

.mockup-message strong { color: #fff; }

.mockup-user {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.mockup-ai {
  background: rgba(203,30,34,0.04);
  border: 1px solid rgba(203,30,34,0.12);
}

/* ============================================
   COMPARE GRID
   ============================================ */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 3rem auto 0;
}

.compare-col {
  padding: 2.5rem 2rem;
  text-align: left;
}

.compare-col-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.8rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.compare-col-label::before {
  content: '';
  width: 24px;
  height: 1px;
}

.compare-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #a1a1aa;
}

.compare-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.compare-good {
  border-left: 3px solid rgba(34,197,94,0.2);
  background: rgba(34,197,94,0.02);
}

.compare-good .compare-col-label { color: #22c55e; }
.compare-good .compare-col-label::before { background: rgba(34,197,94,0.3); }
.compare-good .compare-item svg { stroke: #22c55e; }

.compare-bad {
  border-left: 3px solid rgba(203,30,34,0.2);
  background: rgba(203,30,34,0.02);
}

.compare-bad .compare-col-label { color: #cb1e22; }
.compare-bad .compare-col-label::before { background: rgba(203,30,34,0.3); }
.compare-bad .compare-item svg { stroke: #cb1e22; }

/* ============================================
   OFFER GRID
   ============================================ */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 2rem auto 0;
}

.offer-card {
  padding: 2rem;
  text-align: center;
  position: relative;
}

.offer-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 0.5rem;
}

.offer-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.offer-radio-active {
  border-color: #cb1e22;
  background: rgba(203,30,34,0.3);
  box-shadow: inset 0 0 0 4px rgba(203,30,34,0.2);
}

.offer-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.offer-tagline {
  color: #71717a;
  font-size: 0.82rem;
  margin-bottom: 1.2rem;
}

.offer-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.offer-prices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 0.3rem;
}

.offer-old-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  color: #52525b;
  text-decoration: line-through;
}

.offer-price-featured { color: #cb1e22; }

.offer-save {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: #22c55e;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.offer-featured {
  border: 2px solid rgba(203,30,34,0.4) !important;
  background: rgba(203,30,34,0.04) !important;
}

.offer-featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  color: #000;
  background: #cb1e22;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(203,30,34,0.4);
}

/* ============================================
   GUARANTEE
   ============================================ */
.guarantee-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 700px;
  margin: 3rem auto 0;
  padding: 2rem;
  border-color: rgba(34,197,94,0.2);
  background: rgba(34,197,94,0.02);
}

.guarantee-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(34,197,94,0.1);
  border: 2px solid rgba(34,197,94,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guarantee-icon svg {
  width: 32px;
  height: 32px;
  stroke: #22c55e;
  fill: none;
  stroke-width: 1.5;
}

.guarantee-content h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}

.guarantee-content p {
  color: #a1a1aa;
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  text-align: center;
  padding: clamp(4rem, 7vw, 6rem) 5vw clamp(5rem, 8vw, 8rem);
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 5rem;
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(203,30,34,0.02), transparent);
}

.final-cta h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff;
  margin: 0 auto 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 700px;
  line-height: 1.15;
}

.final-cta p {
  color: #a1a1aa;
  margin: 0 auto 1rem;
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  line-height: 1.7;
  max-width: 660px;
}

.pc-secure {
  font-size: 0.7rem;
  color: #52525b;
  line-height: 1.4;
}

.final-tag {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  color: #52525b;
  font-size: 0.7rem;
  margin-top: 2.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 5vw;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: #52525b;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 12px;
  color: #52525b;
  text-transform: none;
  letter-spacing: 0;
}

.footer-links a {
  color: #52525b;
  text-decoration: none;
  transition: color .25s ease;
}

.footer-links a:hover { color: #a1a1aa; }

/* ============================================
   HAMBURGER / MOBILE MENU
   ============================================ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  padding: 0;
  transition: all .3s;
  z-index: 1001;
  flex-shrink: 0;
}

.hamburger:hover { background: rgba(255,255,255,0.1); }

.hamburger span {
  display: block;
  width: 14px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  margin: 2.5px 0;
  transition: all .3s;
}

.hamburger.active span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-4.5px) rotate(-45deg); }

.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5,5,7,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
}

.nav-mobile-overlay.show { display: flex; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes revealUp {
  0% { opacity: 0; transform: translateY(48px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  0% { opacity: 0; transform: scale(0.94); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes zoomIn {
  0% { opacity: 0; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1); }
}

.reveal-up {
  opacity: 0;
  transform: translateY(48px);
  will-change: transform, opacity;
}

.reveal-up.visible {
  animation: revealUp .9s cubic-bezier(0.16,1,0.3,1) forwards;
}

.scale-in {
  opacity: 0;
  transform: scale(0.94);
  will-change: transform, opacity;
}

.scale-in.visible {
  animation: scaleIn .8s cubic-bezier(0.16,1,0.3,1) forwards;
}

.zoom-in {
  opacity: 0;
  transform: scale(0.85);
  transition: all .7s cubic-bezier(0.16,1,0.3,1);
  will-change: transform, opacity;
}

.zoom-in.visible {
  opacity: 1;
  transform: scale(1);
}

.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: all .8s cubic-bezier(0.16,1,0.3,1);
  will-change: transform, opacity;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-child {
  opacity: 0;
  transform: translateY(32px);
  transition: all .7s cubic-bezier(0.16,1,0.3,1);
  will-change: transform, opacity;
}

.stagger-child.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1023px) {
  .agents-grid,
  .features-grid,
  .compare-grid { grid-template-columns: 1fr; }

  .offer-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .guarantee-card {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  html { scroll-padding-top: 48px; }
  nav { height: 56px; padding: 0 1rem; }
  .nav-logo { font-size: 0.9rem; gap: 8px; }
  .nav-logo img { height: 28px !important; }
  .nav-links { display: none; }
  .nav-actions .btn { display: none; }
  .hamburger { display: flex; }

  .hero {
    min-height: 80svh;
    padding: 80px 1rem 1.5rem;
  }

  .hero-badge { font-size: 0.65rem; padding: 0.4rem 1rem; }
  .hero-title { font-size: clamp(1.5rem, 7vw, 2.2rem); }
  .hero-subtitle { font-size: 0.9rem; }
  .hero-cta-row { flex-direction: column; width: 100%; padding: 0 0.5rem; }
  .hero-cta-row .btn { width: 100%; max-width: 320px; }
  .trust-bar { flex-direction: column; gap: 0.8rem; }

  .section-inner { padding: 2.5rem 1rem; }
  .section-heading { font-size: clamp(1.4rem, 6vw, 1.8rem); }

  .agent-card,
  .feature-card,
  .offer-card { padding: 1.5rem; }

  .offer-card { padding-top: 2rem; }
  .offer-featured-badge { top: -10px; }

  .example-header { flex-direction: column; gap: 0.5rem; align-items: flex-start; }

  .mockup-body { padding: 1rem; }

  .compare-col { padding: 2rem 1.3rem; }

  .guarantee-card { padding: 1.5rem; }
  .guarantee-icon { width: 56px; height: 56px; }
  .guarantee-icon svg { width: 24px; height: 24px; }

  .final-cta { padding: 3rem 1rem; }
  .final-cta h2 { font-size: clamp(1.5rem, 5vw, 2rem); }

  footer {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
    font-size: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-up, .scale-in, .zoom-in, .fade-up, .stagger-child {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
