/* ============================================
   YEP! Landing Page — styles.css
   Cores da marca: #DD3915 (vermelho), #5C5DA3 (roxo)
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yep-red: #DD3915;
  --yep-red-dark: #B82E10;
  --yep-red-light: #FF5733;
  --yep-purple: #5C5DA3;
  --yep-purple-dark: #4A4B87;
  --yep-purple-light: #7879BD;
  --yep-deep: #1E1F3B;
  --yep-deep-light: #2A2B4A;
  --black: #1A1A1A;
  --gray-900: #2D2D2D;
  --gray-700: #555;
  --gray-500: #888;
  --gray-300: #C4C4C4;
  --gray-100: #F0F0F0;
  --gray-50: #F7F7F7;
  --white: #FFFFFF;
  --green: #22C55E;
  --yellow: #EAB308;
  --red-metric: #EF4444;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
  --shadow-xl: 0 16px 48px rgba(0,0,0,.16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --max-w: 1200px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* --- Utilities --- */
.text-red { color: var(--yep-red); }
.text-purple { color: var(--yep-purple); }
.bg-gray { background: var(--gray-50); }
.section-pad { padding: 100px 0; }

/* --- Scroll Progress Bar --- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yep-red), var(--yep-purple));
  z-index: 1001;
  transform-origin: left;
  transform: scaleX(0);
  transition: none;
}

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* --- Animated Counter --- */
@keyframes count-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.counter-animated {
  animation: count-pulse .3s ease;
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.05);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo img { height: 40px; width: auto; }

.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--yep-red); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  background: var(--yep-red);
  color: var(--white) !important;
  font-weight: 600;
  font-size: .825rem;
  border-radius: 100px;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--yep-red-dark); transform: translateY(-1px); }

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
  }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(170deg, var(--white) 0%, var(--gray-50) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(221,57,21,.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: hero-orb-float 8s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(92,93,163,.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: hero-orb-float 10s ease-in-out infinite reverse;
}
@keyframes hero-orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(.97); }
}

.hero-badge {
  display: inline-flex;
  align-items: center; gap: 8px;
  padding: 8px 16px;
  background: rgba(221,57,21,.08);
  color: var(--yep-red);
  font-size: .8rem; font-weight: 600;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: .02em;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--yep-red);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--black);
  max-width: 780px;
  margin-bottom: 20px;
}
.hero h1 .highlight {
  background: linear-gradient(90deg, var(--yep-red), var(--yep-red-light), var(--yep-purple), var(--yep-red));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease-in-out infinite;
  position: relative;
}
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--gray-700);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--black);
}
.hero-stat span {
  font-size: .8rem;
  color: var(--gray-500);
  margin-top: 2px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn-primary {
  display: inline-flex;
  align-items: center; gap: 8px;
  padding: 16px 32px;
  background: var(--yep-red);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 100px;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(221,57,21,.3);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transform: skewX(-20deg);
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0% { left: -60%; }
  100% { left: 160%; }
}
.btn-primary:hover {
  background: var(--yep-red-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(221,57,21,.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center; gap: 8px;
  padding: 16px 32px;
  background: var(--white);
  color: var(--black);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 100px;
  border: 2px solid var(--gray-100);
  transition: all var(--transition);
}
.btn-secondary:hover {
  border-color: var(--gray-300);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.hero-trust {
  display: flex;
  gap: 20px;
  font-size: .8rem;
  color: var(--gray-500);
}
.hero-trust span { display: flex; align-items: center; gap: 6px; }
.hero-trust svg { width: 16px; height: 16px; fill: var(--green); }

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-visual {
  position: relative;
}
.hero-visual img {
  border-radius: var(--radius-lg);
  background: transparent;
}
.hero-floating-card {
  position: absolute;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  font-size: .85rem;
  border: 1px solid rgba(255,255,255,.6);
  transition: transform .3s ease;
}
.hero-floating-card.top-left {
  top: -16px; left: -16px;
  animation: float-card 6s ease-in-out infinite;
}
.hero-floating-card.bottom-right {
  bottom: -16px; right: -16px;
  animation: float-card 6s ease-in-out infinite 1.5s;
}
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-floating-card .card-label {
  font-size: .7rem;
  color: var(--gray-500);
  margin-bottom: 4px;
}
.hero-floating-card .card-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
}
.hero-floating-card .card-value.green { color: var(--green); }
.hero-floating-card .card-value.red { color: var(--yep-red); }

@media (max-width: 900px) {
  .hero-layout { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: clamp(1.8rem, 6vw, 2.8rem); }
  .hero-stats { gap: 20px; }
  .hero-stat strong { font-size: 1.3rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { width: 100%; justify-content: center; }
  .hero-floating-card { padding: 10px 14px; }
  .hero-floating-card .card-value { font-size: 1.1rem; }
  .hero-floating-card .card-label { font-size: .65rem; }
}
@media (max-width: 480px) {
  .hero-trust { flex-direction: column; gap: 8px; }
  .hero-floating-card.top-left { top: -8px; left: -4px; }
  .hero-floating-card.bottom-right { bottom: -8px; right: -4px; }
}

/* ============================================
   LOGOS TICKER
   ============================================ */
.logos-section {
  padding: 40px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  overflow: hidden;
}
.logos-label {
  text-align: center;
  font-size: .8rem;
  color: var(--gray-500);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.logos-track {
  display: flex;
  gap: 48px;
  animation: scroll-logos 30s linear infinite;
  width: max-content;
}
.logos-track img {
  height: 36px;
  width: auto;
  opacity: .5;
  filter: grayscale(1);
  transition: opacity var(--transition), filter var(--transition);
}
.logos-track img:hover {
  opacity: 1;
  filter: grayscale(0);
}
@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logos-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 32px;
}
.logos-stats .stat {
  text-align: center;
}
.logos-stats .stat strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  display: block;
}
.logos-stats .stat span {
  font-size: .8rem;
  color: var(--gray-500);
}

@media (max-width: 480px) {
  .logos-stats { gap: 24px; flex-wrap: wrap; }
  .logos-stats .stat strong { font-size: 1.2rem; }
  .logos-track img { height: 28px; }
}

/* ============================================
   CALCULATOR
   ============================================ */
.calc-section {
  padding: 100px 0;
  background: var(--gray-50);
}
.calc-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}
.calc-section .section-eyebrow {
  display: inline-flex;
  align-items: center; gap: 6px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--yep-purple);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-700);
  max-width: 560px;
  margin: 0 auto;
}

.calc-container {
  max-width: 960px;
  margin: 0 auto;
}

.calc-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.calc-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.calc-input-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-700);
}
.calc-input-group input {
  padding: 14px 18px;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--black);
  transition: border-color var(--transition);
  background: var(--white);
}
.calc-input-group input:focus {
  outline: none;
  border-color: var(--yep-purple);
}
.calc-input-group input::placeholder {
  color: var(--gray-300);
  font-weight: 400;
}

.calc-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.calc-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 2px solid var(--gray-100);
  transition: border-color var(--transition);
}
.calc-card.market {
  position: relative;
}
.calc-card.yep {
  border-color: transparent;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, var(--yep-red), var(--yep-purple), var(--yep-red)) border-box;
  background-size: 100% 100%, 200% 200%;
  animation: gradient-border 4s ease infinite;
  box-shadow: 0 8px 32px rgba(221,57,21,.15);
}
@keyframes gradient-border {
  0%, 100% { background-position: 0 0, 0% 50%; }
  50% { background-position: 0 0, 100% 50%; }
}
.calc-card .card-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.calc-card.market .card-tag {
  background: var(--gray-100);
  color: var(--gray-700);
}
.calc-card.yep .card-tag {
  background: rgba(221,57,21,.1);
  color: var(--yep-red);
}
.calc-card .card-metric-label {
  font-size: .75rem;
  color: var(--gray-500);
  margin-bottom: 4px;
}
.calc-card .card-metric-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.calc-card .card-big-label {
  font-size: .75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 4px;
}
.calc-card .card-big-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
}
.calc-card.yep .card-big-value { color: var(--yep-red); }

.calc-difference {
  background: linear-gradient(135deg, var(--yep-red), var(--yep-red-light), var(--yep-purple));
  background-size: 200% 200%;
  animation: gradient-shift 5s ease-in-out infinite;
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.calc-difference::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,.12) 0%, transparent 60%);
  pointer-events: none;
}
.calc-difference .diff-label {
  font-size: .85rem;
  opacity: .85;
  margin-bottom: 8px;
}
.calc-difference .diff-monthly {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 4px;
}
.calc-difference .diff-period {
  font-size: .9rem;
  opacity: .7;
}
.calc-difference .diff-annual {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.25);
}

.calc-cta {
  text-align: center;
  margin-top: 40px;
}
.calc-note {
  text-align: center;
  font-size: .8rem;
  color: var(--gray-500);
  margin-top: 16px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 640px) {
  .calc-inputs { grid-template-columns: 1fr; }
  .calc-results { grid-template-columns: 1fr; }
}

/* ============================================
   WHY SECTION (Arquitetura)
   ============================================ */
.why-section { padding: 100px 0; }
.why-header {
  text-align: center;
  margin-bottom: 56px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: transform .4s ease, box-shadow .4s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.why-card:hover {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: 0 20px 40px rgba(0,0,0,.1);
}
.why-card-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center; justify-content: center;
  background: rgba(221,57,21,.08);
}
.why-card-icon svg {
  width: 28px; height: 28px;
  stroke: var(--yep-red);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.why-card p {
  font-size: .85rem;
  color: var(--gray-700);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FACTORY — "Direto da fábrica"
   ============================================ */
.factory-section {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--yep-deep) 0%, var(--yep-deep-light) 100%);
  color: var(--white);
}
.factory-header { text-align: center; margin-bottom: 56px; }
.factory-header .section-title { color: var(--white); }
.factory-header .section-subtitle { color: var(--gray-300); }

.factory-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}
.factory-col {
  border-radius: var(--radius-lg);
  padding: 36px;
}
.factory-col.traditional {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
}
.factory-col.yep-way {
  background: rgba(221,57,21,.1);
  border: 1px solid rgba(221,57,21,.25);
}
.factory-col-tag {
  display: inline-block;
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.factory-col.traditional .factory-col-tag {
  background: rgba(255,255,255,.1);
  color: var(--gray-300);
}
.factory-col.yep-way .factory-col-tag {
  background: rgba(221,57,21,.2);
  color: var(--yep-red-light);
}

.factory-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.factory-step:last-child { border-bottom: none; }
.factory-step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center; justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.factory-col.traditional .factory-step-num {
  background: rgba(255,255,255,.08);
  color: var(--gray-500);
}
.factory-col.yep-way .factory-step-num {
  background: rgba(221,57,21,.2);
  color: var(--yep-red-light);
}
.factory-step-text {
  font-size: .9rem;
  color: var(--gray-300);
  line-height: 1.5;
}
.factory-col.yep-way .factory-step-text { color: var(--white); }

.factory-time {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}
.factory-col.traditional .factory-time { color: var(--gray-500); }
.factory-col.yep-way .factory-time { color: var(--green); }

.factory-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 56px auto 0;
}
.factory-benefit {
  text-align: center;
  padding: 24px 16px;
}
.factory-benefit h4 {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  color: var(--yep-red-light);
  margin-bottom: 6px;
}
.factory-benefit p {
  font-size: .8rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.factory-quote {
  text-align: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.factory-quote p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gray-300);
}
.factory-quote strong { color: var(--white); }

@media (max-width: 768px) {
  .factory-compare { grid-template-columns: 1fr; }
  .factory-benefits { grid-template-columns: 1fr 1fr; }
  .factory-section { padding: 60px 0; }
  .factory-col { padding: 24px; }
  .factory-quote p { font-size: 1rem; }
}
@media (max-width: 480px) {
  .factory-benefits { grid-template-columns: 1fr; }
  .factory-step-text { font-size: .8rem; }
}

/* ============================================
   PERSONALIZATION
   ============================================ */
.personal-section { padding: 100px 0; }
.personal-header { text-align: center; margin-bottom: 56px; }

.personal-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 56px;
}
.personal-card {
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
  display: flex;
  flex-direction: column;
}
.personal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0,0,0,.12);
  border-color: rgba(221,57,21,.2);
}
.personal-card-top {
  padding: 24px 24px 16px;
  flex: 1;
}
.personal-card-segment {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--yep-purple);
  margin-bottom: 4px;
}
.personal-card-company {
  font-size: .8rem;
  color: var(--gray-500);
  margin-bottom: 12px;
}
.personal-card-feature {
  display: inline-block;
  font-size: .65rem; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: rgba(221,57,21,.08);
  color: var(--yep-red);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.personal-card-desc {
  font-size: .85rem;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 16px;
}
.personal-card-result {
  font-size: .8rem;
  font-weight: 700;
  color: var(--green);
  padding: 12px 24px;
  background: rgba(34,197,94,.05);
  border-top: 1px solid var(--gray-100);
  margin-top: auto;
}

/* --- "E a sua?" CTA card --- */
.personal-card-cta {
  background: linear-gradient(160deg, var(--yep-deep) 0%, var(--yep-deep-light) 100%);
  border-color: var(--yep-purple-dark);
  text-align: center;
}
.personal-card-cta .personal-card-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.personal-cta-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(221,57,21,.15);
  color: var(--yep-red-light);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.personal-card-cta .personal-card-feature {
  background: rgba(221,57,21,.2);
  color: var(--yep-red-light);
  font-size: .75rem;
}
.personal-card-cta .personal-card-desc {
  color: var(--gray-300);
}
.personal-card-cta .personal-card-desc strong {
  color: var(--white);
  font-size: .95rem;
}
.personal-card-result-cta {
  display: block;
  background: rgba(221,57,21,.12);
  color: var(--yep-red-light);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.08);
  transition: background .3s ease;
}
.personal-card-result-cta:hover {
  background: rgba(221,57,21,.2);
}

/* cost comparison below personalization */
.personal-cost {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}
.personal-cost h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 32px;
}
.personal-cost-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}
.personal-cost-old {
  text-align: center;
}
.personal-cost-old .cost-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.personal-cost-old .cost-item {
  font-size: .85rem;
  color: var(--gray-700);
  padding: 8px 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
}
.personal-cost-vs {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--gray-300);
}
.personal-cost-yep {
  text-align: center;
}
.personal-cost-yep .cost-included {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--yep-red);
  margin-bottom: 8px;
}
.personal-cost-yep .cost-sub {
  font-size: .85rem;
  color: var(--gray-700);
}

@media (max-width: 640px) {
  .personal-cost-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ============================================
   COSTS COMPARISON
   ============================================ */
.costs-section {
  padding: 100px 0;
  background: var(--gray-50);
}
.costs-header { text-align: center; margin-bottom: 56px; }

.costs-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(221,57,21,.08);
  color: var(--yep-red);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  padding: 12px 28px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.costs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto 48px;
}

.costs-card {
  border-radius: var(--radius-lg);
  padding: 36px;
}
.costs-card.traditional {
  background: var(--white);
  border: 2px solid var(--gray-100);
}
.costs-card.yep-all {
  background: var(--white);
  border: 2px solid var(--yep-red);
  position: relative;
  box-shadow: 0 8px 32px rgba(221,57,21,.12);
}
.costs-card .costs-card-tag {
  display: inline-block;
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.costs-card.traditional .costs-card-tag {
  background: var(--gray-100);
  color: var(--gray-700);
}
.costs-card.yep-all .costs-card-tag {
  background: rgba(221,57,21,.08);
  color: var(--yep-red);
}

.costs-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: .9rem;
}
.costs-row:last-child { border-bottom: none; }
.costs-row .row-label { color: var(--gray-700); }
.costs-row .row-value { font-weight: 600; }
.costs-row.total {
  padding-top: 20px;
  margin-top: 8px;
  border-top: 2px solid var(--gray-100);
  border-bottom: none;
  font-weight: 700;
  font-size: 1rem;
}

.costs-card.yep-all .costs-row .row-value.green { color: var(--green); }

.costs-bottom {
  display: flex;
  justify-content: center;
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
}
.costs-bottom-item {
  text-align: center;
}
.costs-bottom-item h4 {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  color: var(--yep-red);
  margin-bottom: 4px;
}
.costs-bottom-item p {
  font-size: .8rem;
  color: var(--gray-700);
}
.costs-note {
  text-align: center;
  font-size: .75rem;
  color: var(--gray-500);
  margin-top: 24px;
}

@media (max-width: 768px) {
  .costs-grid { grid-template-columns: 1fr; }
  .costs-bottom { flex-direction: column; gap: 20px; align-items: center; }
  .costs-row { flex-direction: column; gap: 4px; }
  .costs-row .row-value { text-align: left; }
  .costs-card { padding: 24px; }
}

/* ============================================
   WORK MODEL — Direto. Rápido. Exclusivo.
   ============================================ */
.work-section { padding: 80px 0; }
.work-header { text-align: center; margin-bottom: 48px; }

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.work-card {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 32px;
}
.work-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.work-compare-row {
  margin-bottom: 16px;
}
.work-compare-row .compare-label {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-500);
  margin-bottom: 4px;
}
.work-compare-row .compare-value {
  font-size: .9rem;
  font-weight: 600;
}
.work-compare-row .compare-value.old { color: var(--gray-500); }
.work-compare-row .compare-value.new { color: var(--yep-red); }

@media (max-width: 768px) {
  .work-grid { grid-template-columns: 1fr; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: 100px 0;
  background: var(--gray-50);
}
.testimonials-header { text-align: center; margin-bottom: 48px; }

/* --- Video Testimonial Highlight --- */
.testimonial-video-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1060px;
  margin: 0 auto 48px;
  background: linear-gradient(160deg, var(--yep-deep) 0%, var(--yep-deep-light) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  align-items: center;
}

.tv-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 14;
  max-height: 520px;
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
}
.tv-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: var(--white);
}
.tv-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: background .3s ease;
}
.tv-play-btn:hover {
  background: rgba(0,0,0,.05);
}
.tv-play-btn svg {
  width: 64px; height: 64px;
  fill: var(--yep-deep);
  opacity: .7;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.1));
  transition: transform .3s ease, opacity .3s ease;
}
.tv-play-btn:hover svg {
  transform: scale(1.1);
  opacity: 1;
}
.tv-poster {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--white);
  z-index: 2;
  transition: opacity .4s ease;
}
.tv-poster img {
  height: 48px;
  width: auto;
  opacity: .35;
}
.tv-poster-play {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--yep-red);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(221,57,21,.35);
  transition: transform .3s ease, box-shadow .3s ease;
}
.tv-poster-play svg {
  width: 28px; height: 28px;
  fill: var(--white);
  margin-left: 4px;
}
.tv-poster:hover .tv-poster-play {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(221,57,21,.45);
}
.tv-poster-label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.tv-video-wrap.playing .tv-poster {
  opacity: 0;
  pointer-events: none;
}
.tv-video-wrap.playing .tv-play-btn {
  opacity: 0;
  pointer-events: none;
}

.tv-info {
  padding: 48px 48px 48px 0;
  color: var(--white);
}
.tv-badge {
  display: inline-flex;
  align-items: center; gap: 6px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(221,57,21,.2);
  color: var(--yep-red-light);
  margin-bottom: 20px;
}
.tv-info h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.tv-quote {
  font-size: 1.05rem;
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.tv-stats {
  display: flex;
  gap: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.tv-stat strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  display: block;
  color: var(--white);
}
.tv-stat span {
  font-size: .8rem;
  color: var(--gray-500);
}

@media (max-width: 768px) {
  .testimonial-video-highlight {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .tv-video-wrap {
    max-height: 400px;
  }
  .tv-info {
    padding: 28px 24px;
  }
  .tv-info h3 { font-size: 1.4rem; }
  .tv-video-wrap { max-height: 440px; }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1060px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-100);
  transition: transform .4s ease, box-shadow .4s ease;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.1);
}
.testimonial-card .t-screenshot {
  width: 100%;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  border: 1px solid var(--gray-100);
}
.testimonial-card .t-quote {
  font-size: .9rem;
  color: var(--gray-700);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.testimonial-card .t-author {
  font-weight: 700;
  font-size: .85rem;
}
.testimonial-card .t-company {
  font-size: .8rem;
  color: var(--gray-500);
}

.testimonials-stats {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-100);
}
.testimonials-stats .stat strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  display: block;
  color: var(--yep-red);
}
.testimonials-stats .stat span {
  font-size: .8rem;
  color: var(--gray-500);
}

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-stats { gap: 32px; flex-wrap: wrap; justify-content: center; }
}

/* ============================================
   FORM / CTA
   ============================================ */
.form-section {
  padding: 100px 0;
  background: var(--white);
}
.form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1060px;
  margin: 0 auto;
  align-items: start;
}

.form-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.form-info .form-desc {
  font-size: 1rem;
  color: var(--gray-700);
  margin-bottom: 32px;
  line-height: 1.7;
}

.form-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-feature {
  display: flex;
  gap: 16px;
}
.form-feature-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(221,57,21,.06);
  display: flex;
  align-items: center; justify-content: center;
}
.form-feature-icon svg {
  width: 20px; height: 20px;
  stroke: var(--yep-red);
  fill: none;
  stroke-width: 2;
}
.form-feature h4 {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.form-feature p {
  font-size: .8rem;
  color: var(--gray-700);
  line-height: 1.5;
}

.form-stats-mini {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
}
.form-stats-mini .stat strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  display: block;
  color: var(--yep-purple);
}
.form-stats-mini .stat span {
  font-size: .75rem;
  color: var(--gray-500);
}

.form-card {
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
}
.form-card .form-card-sub {
  text-align: center;
  font-size: .85rem;
  color: var(--gray-500);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-group label .required {
  color: var(--yep-red);
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--yep-purple);
}
.form-group input::placeholder { color: var(--gray-300); }

.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--yep-red), var(--yep-red-dark));
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}
.form-submit::after {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transform: skewX(-20deg);
  animation: shimmer 3s ease-in-out infinite 1.5s;
}
.form-submit:hover {
  background: linear-gradient(135deg, var(--yep-red-dark), var(--yep-red));
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(221,57,21,.4);
}

.form-privacy {
  text-align: center;
  font-size: .75rem;
  color: var(--gray-500);
  margin-top: 16px;
}

@media (max-width: 900px) {
  .form-layout { grid-template-columns: 1fr; }
  .form-stats-mini { justify-content: center; }
  .form-card { padding: 28px 20px; }
}

/* ============================================
   FAQ
   ============================================ */
.faq-section { padding: 100px 0; background: var(--gray-50); }
.faq-header { text-align: center; margin-bottom: 48px; }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--gray-100);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--black);
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--yep-red); }
.faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  position: relative;
  transition: transform var(--transition);
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--black);
  border-radius: 2px;
  transition: transform var(--transition);
}
.faq-icon::before {
  width: 14px; height: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 2px; height: 14px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-answer-inner {
  padding: 0 0 20px;
  font-size: .9rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.faq-contact {
  text-align: center;
  margin-top: 48px;
  font-size: .9rem;
  color: var(--gray-700);
}
.faq-contact a {
  color: var(--yep-red);
  font-weight: 600;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--yep-deep) 0%, var(--yep-deep-light) 100%);
  color: var(--white);
  text-align: center;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.final-cta .sub {
  font-size: 1.05rem;
  color: var(--gray-300);
  max-width: 480px;
  margin: 0 auto 36px;
}
.final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.final-trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: .8rem;
  color: var(--gray-500);
  margin-bottom: 48px;
}
.final-stats {
  display: flex;
  justify-content: center;
  gap: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.final-stats .stat strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  display: block;
  color: var(--yep-red);
}
.final-stats .stat span {
  font-size: .75rem;
  color: var(--gray-500);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: #25D366;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 100px;
  transition: all var(--transition);
}
.btn-whatsapp:hover {
  background: #1EBE5A;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  padding: 48px 0 32px;
  background: var(--yep-deep);
  color: var(--gray-500);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand img { height: 32px; width: auto; filter: brightness(10); }
.footer-brand p {
  font-size: .8rem;
  margin-top: 8px;
  max-width: 360px;
  line-height: 1.5;
}
.footer-links {
  display: flex;
  gap: 24px;
  font-size: .85rem;
}
.footer-links a { transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-copy {
  width: 100%;
  text-align: center;
  font-size: .75rem;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
}

@media (max-width: 640px) {
  .footer-inner { flex-direction: column; text-align: center; align-items: center; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-brand img { margin: 0 auto; }
  .footer-links { justify-content: center; }
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  padding: 12px 16px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--gray-100);
  box-shadow: 0 -4px 16px rgba(0,0,0,.08);
  transform: translateY(100%);
  transition: transform .4s ease;
}
.mobile-sticky-cta.visible {
  transform: translateY(0);
}
.mobile-sticky-cta a {
  display: block;
  text-align: center;
  padding: 14px;
  background: var(--yep-red);
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px rgba(221,57,21,.3);
}

@media (max-width: 768px) {
  .mobile-sticky-cta { display: block; }
  .site-footer { padding-bottom: 80px; }
}

/* ============================================
   CURSOR GLOW (desktop only)
   ============================================ */
@media (hover: hover) {
  .cursor-glow {
    position: fixed;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(221,57,21,.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity .3s ease;
    opacity: 0;
  }
  .cursor-glow.active { opacity: 1; }
}

/* ============================================
   ENHANCED FOCUS STATES (a11y)
   ============================================ */
:focus-visible {
  outline: 2px solid var(--yep-purple);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================================
   SMOOTH SECTION TRANSITIONS
   ============================================ */
.why-section,
.factory-section,
.personal-section,
.costs-section,
.testimonials-section,
.form-section,
.faq-section {
  position: relative;
}

/* Animated underline for section titles */
.section-title .text-red {
  position: relative;
}
.section-title .text-red::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--yep-red), var(--yep-purple));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s ease;
}
.reveal.visible .section-title .text-red::after,
.section-title .text-red:hover::after {
  transform: scaleX(1);
}

/* ============================================
   GLOBAL MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .why-section,
  .personal-section,
  .costs-section,
  .testimonials-section,
  .form-section,
  .faq-section,
  .calc-section { padding: 60px 0; }

  .section-title { font-size: clamp(1.4rem, 5vw, 2rem); }
  .section-subtitle { font-size: .9rem; }

  .personal-carousel { grid-template-columns: 1fr; }
  .personal-cost { padding: 24px; }
  .personal-cost-grid { grid-template-columns: 1fr; gap: 16px; }

  .testimonials-stats { gap: 24px; }
  .testimonials-stats .stat strong { font-size: 1.5rem; }

  .final-cta { padding: 60px 0; }
  .final-stats { gap: 32px; flex-wrap: wrap; justify-content: center; }
  .final-trust { flex-wrap: wrap; justify-content: center; }
}
