@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Sora:wght@500;600;700;800;900&display=swap');

/* ===== VARIABLES & DESIGN SYSTEM ===== */
:root {
  --font-heading: 'Sora', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Light Theme Palette - iFood Style */
  --bg-obsidian: #ffffff; /* Page Background */
  --bg-slate-dark: #f8fafc; /* Alternating Section Background */
  --bg-card: #ffffff; /* Card Background */
  --bg-card-hover: #ffffff;
  
  --primary-emerald: #ea1d2c; /* iFood Red */
  --primary-emerald-glow: rgba(234, 29, 44, 0.06);
  --primary-emerald-hover: #c81624; /* Darker Red for Hover */
  
  --accent-lime: #10b981; /* Success Green (WhatsApp) */
  --accent-blue: #0284c7; /* Light Blue */
  --accent-blue-glow: rgba(2, 132, 199, 0.06);
  
  --warning-rose: #ef4444;
  --warning-rose-glow: rgba(239, 68, 68, 0.05);
  --warning-rose-hover: rgba(239, 68, 68, 0.12);
  
  --text-white: #0f172a; /* Slate-900 for Headings */
  --text-light: #334155; /* Slate-700 for Body Text */
  --text-muted: #64748b; /* Slate-500 */
  --text-muted-dark: #94a3b8; /* Slate-400 */
  
  --border-glow: #e2e8f0; /* Thin border for cards */
  --border-active: rgba(234, 29, 44, 0.25);
  --border-red-active: rgba(239, 68, 68, 0.25);
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-spring: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== RESET & BASE STYLES ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-obsidian);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(234, 29, 44, 0.015) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(2, 132, 199, 0.015) 0%, transparent 45%);
  background-attachment: fixed;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}

/* ===== UTILITIES & WRAPPERS ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--md {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-emerald { color: var(--primary-emerald); }
.text-lime { color: var(--accent-lime); }
.text-rose { color: var(--warning-rose); }

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--primary-emerald);
  z-index: 1000;
  width: 0%;
  transition: width 0.1s linear;
}

/* ===== AMBIENT BACKGROUND GLOWS ===== */
.bg-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.4;
}

.bg-glow--top-right {
  top: -100px;
  right: -50px;
  background: radial-gradient(circle, var(--primary-emerald-glow) 0%, transparent 70%);
}

.bg-glow--mid-left {
  top: 35%;
  left: -100px;
  background: radial-gradient(circle, var(--accent-blue-glow) 0%, transparent 70%);
}

.bg-glow--bottom-right {
  bottom: 10%;
  right: -100px;
  background: radial-gradient(circle, var(--primary-emerald-glow) 0%, transparent 70%);
}

/* ===== SCROLL REVEAL EFFECT CLASSES ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active, .reveal-left.active, .reveal-right.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* ===== HEADINGS & TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-white);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.25rem;
  line-height: 1.25;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.3;
}

p {
  color: var(--text-light);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--primary-emerald);
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.85rem;
  border-radius: 99px;
  background: rgba(234, 29, 44, 0.05);
  border: 1px solid rgba(234, 29, 44, 0.1);
}

/* ===== ROUNDED LIGHT CARDS ===== */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: 16px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(234, 29, 44, 0.12), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-active);
  box-shadow: 0 15px 35px rgba(234, 29, 44, 0.06);
}

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes float-sushi {
  0%, 100% { transform: translateY(0px) rotate(2deg); }
  50% { transform: translateY(-12px) rotate(-1deg); }
}

@keyframes float-pizza {
  0%, 100% { transform: translateY(-8px) rotate(-3deg); }
  50% { transform: translateY(6px) rotate(1deg); }
}

@keyframes float-pasta {
  0%, 100% { transform: translateY(4px) rotate(1deg); }
  50% { transform: translateY(-8px) rotate(-2deg); }
}

@keyframes pulse-soft {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

@keyframes ping-slow {
  0% { transform: scale(1); opacity: 0.8; }
  70% { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ===== STICKY NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
}

.navbar--scrolled {
  padding: 0.6rem 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.03);
}

.navbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.navbar__logo {
  display: flex;
  flex-direction: column;
}

.navbar__logo-main {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.navbar__logo-main span {
  color: var(--primary-emerald);
}

.navbar__logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.15rem;
}

.navbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary-emerald), var(--primary-emerald-hover));
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.65rem 1.25rem;
  border-radius: 99px;
  box-shadow: 0 4px 15px rgba(234, 29, 44, 0.2);
}

.navbar__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(234, 29, 44, 0.35);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  padding: 160px 0 100px 0;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(234, 29, 44, 0.04) 0%, transparent 65%);
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  background: rgba(234, 29, 44, 0.04);
  border: 1px solid rgba(234, 29, 44, 0.1);
  padding: 0.5rem 1.25rem;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 2.5rem;
  gap: 0.6rem;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary-emerald);
  position: relative;
}

.hero__badge-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--primary-emerald);
  animation: ping-slow 2s infinite ease-out;
}

.hero__h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  max-width: 900px;
  margin-bottom: 1.5rem;
}

.hero__h1 span.accent {
  background: linear-gradient(120deg, var(--primary-emerald) 30%, #ea580c 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
}

.hero__sub {
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 680px;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.hero__sub strong {
  color: var(--text-white);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.hero__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--primary-emerald), var(--primary-emerald-hover));
  color: #ffffff;
  font-weight: 700;
  padding: 1.1rem 2.2rem;
  border-radius: 99px;
  box-shadow: 0 8px 25px rgba(234, 29, 44, 0.25);
  font-size: 1.05rem;
}

.hero__cta-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(234, 29, 44, 0.4);
}

.hero__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--text-light);
  font-weight: 600;
  padding: 1.1rem 2.2rem;
  border-radius: 99px;
  font-size: 1.05rem;
}

.hero__cta-secondary:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero__proof span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__proof span .check {
  color: var(--primary-emerald);
  font-weight: 900;
  background: rgba(234, 29, 44, 0.06);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* Floating Food Grid inside Hero */
.hero__grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  margin-bottom: 4rem;
  width: 100%;
  max-width: 800px;
}

.hero__grid-item {
  flex: 1;
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: var(--transition-smooth);
  background: #ffffff;
}

.hero__grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
  z-index: 1;
}

.hero__grid-label {
  position: absolute;
  bottom: 1rem;
  left: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: #ffffff;
  font-size: 1.1rem;
  z-index: 2;
  letter-spacing: -0.01em;
}

.hero__grid-item:nth-child(1) {
  animation: float-sushi 7s ease-in-out infinite;
}
.hero__grid-item:nth-child(2) {
  animation: float-pizza 8s ease-in-out infinite;
}
.hero__grid-item:nth-child(3) {
  animation: float-pasta 7.5s ease-in-out infinite;
}

.hero__grid-item:hover {
  transform: scale(1.05) translateY(-8px);
  border-color: var(--primary-emerald);
  box-shadow: 0 20px 40px rgba(234, 29, 44, 0.1);
}

.hero__grid-item:hover img {
  transform: scale(1.1);
}

/* ===== PAIN POINTS SECTION ===== */
.pain {
  padding: 100px 0;
  position: relative;
  background-color: var(--bg-slate-dark);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.pain__title {
  margin-bottom: 3.5rem;
  font-size: 2.5rem;
}

.pain__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.pain__card {
  padding: 2.25rem;
  display: flex;
  gap: 1.25rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.02);
}

.pain__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(234, 29, 44, 0.15), transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.pain__card svg {
  flex-shrink: 0;
  color: var(--warning-rose);
  padding: 0.65rem;
  background: var(--warning-rose-glow);
  border-radius: 12px;
  box-sizing: content-box;
}

.pain__card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.pain__card-body {
  font-size: 0.95rem;
  color: var(--text-light);
}

.pain__card:hover {
  transform: translateY(-4px);
  border-color: var(--border-red-active);
  box-shadow: 0 15px 35px rgba(234, 29, 44, 0.05);
}

.pain__quote {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-white);
  font-style: italic;
  max-width: 650px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.5;
}

/* Green Action Button */
.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--primary-emerald), var(--primary-emerald-hover));
  color: #ffffff;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 99px;
  box-shadow: 0 6px 20px rgba(234, 29, 44, 0.2);
  font-size: 1rem;
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(234, 29, 44, 0.35);
}

/* ===== EMOTIONAL BRIDGE SECTION ===== */
.bridge {
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.bridge__inner {
  max-width: 750px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.bridge__h2 {
  font-size: 2.75rem;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.bridge__text {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.bridge__highlight {
  color: var(--text-white);
  font-weight: 600;
}

.green-divider {
  width: 60px;
  height: 4px;
  background: var(--primary-emerald);
  margin: 0 auto;
  border-radius: 99px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  padding: 100px 0;
  background: var(--bg-slate-dark);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.testimonials__title {
  margin-bottom: 4rem;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}

.stars svg {
  fill: #eab308;
  color: #eab308;
}

.testimonial-card__quote {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid #f1f5f9;
  padding-top: 1.25rem;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e2e8f0;
  transition: var(--transition-smooth);
}

.testimonial-card:hover .testimonial-card__avatar {
  border-color: var(--primary-emerald);
}

.testimonial-card__name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
}

.testimonial-card__city {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== METHOD SECTION ===== */
.method {
  padding: 120px 0;
  position: relative;
}

.method__h2 {
  margin-bottom: 1rem;
}

.method__sub {
  font-size: 1.1rem;
  margin-bottom: 5rem;
}

.method__steps {
  position: relative;
  padding-left: 2.5rem;
}

.method__steps::before {
  content: '';
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 14px;
  width: 2px;
  background: rgba(0, 0, 0, 0.06);
}

.method__timeline-progress {
  position: absolute;
  top: 15px;
  left: 14px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-emerald), var(--primary-emerald-hover));
  height: 0%;
  transition: height 0.1s linear;
  box-shadow: 0 0 10px rgba(234, 29, 44, 0.2);
}

.method__step {
  position: relative;
  margin-bottom: 4.5rem;
}

.method__step:last-child {
  margin-bottom: 0;
}

.method__indicator {
  position: absolute;
  left: -2.5rem;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.method__icon-wrap {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: var(--transition-smooth);
  color: var(--text-muted);
}

.method__icon-wrap svg {
  width: 14px;
  height: 14px;
  transition: var(--transition-smooth);
}

.method__content {
  padding-left: 1rem;
  transition: var(--transition-smooth);
}

.method__num {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-muted);
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.1rem 0.5rem;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 4px;
}

.method__step-title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  transition: var(--transition-smooth);
}

.method__step-body {
  font-size: 1rem;
  color: var(--text-muted);
}

/* Active timeline state classes */
.method__step.active .method__icon-wrap {
  border-color: var(--primary-emerald);
  background: var(--primary-emerald);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(234, 29, 44, 0.3);
}

.method__step.active .method__step-title {
  color: var(--primary-emerald);
}

.method__step.active .method__num {
  color: var(--primary-emerald);
  background: rgba(234, 29, 44, 0.08);
}

/* ===== RESULTS (DASHBOARD) PROOF ===== */
.dashboard {
  padding: 100px 0;
  background-color: var(--bg-slate-dark);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.dashboard__title {
  margin-bottom: 4.5rem;
}

.dashboard__card {
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.05);
}

.dashboard__header {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: #fafafa;
}

.dashboard__header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dashboard__header-left svg {
  color: var(--primary-emerald);
  background: rgba(234, 29, 44, 0.05);
  padding: 0.65rem;
  border-radius: 12px;
  box-sizing: content-box;
}

.dashboard__header-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.dashboard__header-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  margin-top: 0.15rem;
}

.dashboard__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-emerald);
  padding: 0.35rem 0.75rem;
  border-radius: 99px;
  background: rgba(234, 29, 44, 0.05);
}

.dashboard__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #ffffff;
}

.dashboard__metric {
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: var(--transition-smooth);
}

.dashboard__metric:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20%;
  bottom: 20%;
  right: 0;
  width: 1px;
  background: rgba(0, 0, 0, 0.05);
}

.dashboard__metric:hover {
  background: rgba(0, 0, 0, 0.01);
}

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

.dashboard__metric-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard__metric-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.dashboard__metric-value {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}

.dashboard__metric-detail {
  font-size: 0.95rem;
  color: var(--text-white);
  font-weight: 500;
}

.dashboard__footnote {
  padding: 1.25rem 2rem;
  background: #fafafa;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
}

.dashboard__footnote p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== TRANSPARENCY SECTION ===== */
.transparency {
  padding: 120px 0;
  position: relative;
}

.transparency__title {
  font-size: 2.5rem;
  margin-bottom: 5rem;
}

.transparency__accent {
  color: var(--primary-emerald);
  display: inline-block;
}

.transparency__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.transparency__block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.transparency__block-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.transparency__block-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.transparency__block-title {
  font-size: 1.5rem;
}

.transparency__block-body {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 1.05rem;
}

/* WhatsApp Simulator UI */
.wa-mockup {
  border-radius: 16px;
  background: #0b141a;
  border: 1px solid rgba(255, 255, 255, 0.04);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  margin-top: 1rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.wa-mockup__header {
  background: #1f2c34;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.wa-mockup__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.wa-mockup__name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #e9edef;
  line-height: 1.2;
}

.wa-mockup__status {
  font-size: 0.75rem;
  color: #8696a0;
}

.wa-mockup__body {
  padding: 1.5rem;
  background-image: radial-gradient(#152026 1px, transparent 1px);
  background-size: 15px 15px;
  background-color: #0b141a;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.wa-bubble {
  background: #005c4b;
  color: #e9edef;
  border-radius: 0 10px 10px 10px;
  padding: 1rem 1.25rem;
  max-width: 85%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  font-size: 0.95rem;
  line-height: 1.45;
  position: relative;
}

.wa-bubble__title {
  font-weight: 700;
  color: #e9edef;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 0.4rem;
}

.wa-row {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 0.4rem;
}

.wa-row span:first-child {
  color: #aebac1;
}

.wa-row span:last-child {
  font-weight: 600;
}

.wa-roi {
  margin-top: 0.75rem;
  font-weight: 700;
  color: #25d366;
  border-top: 1px dashed rgba(255,255,255,0.1);
  padding-top: 0.5rem;
}

.wa-time {
  align-self: flex-end;
  font-size: 0.7rem;
  color: #8696a0;
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.wa-time svg {
  fill: #53bdeb;
}

/* Dashboard Simulator UI - Light Theme */
.db-mockup {
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  margin-top: 1rem;
}

.db-mockup__bar {
  background: #f1f5f9;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.db-dots {
  display: flex;
  gap: 0.35rem;
}

.db-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.db-url {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: #ffffff;
  padding: 0.2rem 1rem;
  border-radius: 99px;
  border: 1px solid rgba(0,0,0,0.06);
  font-family: monospace;
}

.db-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1.5rem;
  background: #f8fafc;
}

.db-tile {
  padding: 1.25rem;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.db-tile:hover {
  background: #ffffff;
  border-color: rgba(2, 132, 199, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.db-tile.active {
  border-color: var(--primary-emerald);
  background: #fff5f5;
  box-shadow: inset 0 0 10px rgba(234, 29, 44, 0.02);
}

.db-tile__label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.db-tile__value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.db-bar {
  height: 5px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 99px;
  overflow: hidden;
}

.db-bar-fill {
  height: 100%;
  border-radius: 99px;
  width: 0%;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.db-tile:nth-child(1) .db-bar-fill { background: var(--primary-emerald); }
.db-tile:nth-child(2) .db-bar-fill { background: var(--accent-blue); }
.db-tile:nth-child(3) .db-bar-fill { background: #f59e0b; }
.db-tile:nth-child(4) .db-bar-fill { background: var(--accent-lime); }

/* Interactive graph simulation inside dashboard */
.db-chart-sim {
  padding: 0 1.5rem 1.5rem 1.5rem;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
}

.db-chart-title {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.db-chart-canvas {
  height: 80px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.5rem;
  padding-bottom: 2px;
}

.db-chart-bar {
  flex: 1;
  background: linear-gradient(to top, rgba(234, 29, 44, 0.1), rgba(234, 29, 44, 0.4));
  border-radius: 4px 4px 0 0;
  height: 0%;
  transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.db-chart-bar:hover {
  background: linear-gradient(to top, rgba(234, 29, 44, 0.3), var(--primary-emerald));
}

/* ===== DIFFERENTIALS SECTION ===== */
.differentials {
  padding: 100px 0;
  background: var(--bg-slate-dark);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.differentials__title {
  margin-bottom: 4rem;
}

.differentials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4.5rem;
}

.diff-card {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.diff-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(234, 29, 44, 0.05);
  border: 1px solid rgba(234, 29, 44, 0.1);
  color: var(--primary-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.diff-card:hover .diff-card__icon {
  background: var(--primary-emerald);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(234, 29, 44, 0.25);
}

.diff-card__title {
  font-size: 1.35rem;
}

.diff-card__body {
  color: var(--text-light);
  font-size: 0.95rem;
}

.differentials__quote {
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--text-light);
  font-weight: 500;
  font-style: italic;
  max-width: 680px;
  margin: 0 auto 3rem auto;
  border-left: 3px solid var(--primary-emerald);
  padding-left: 1.5rem;
  text-align: left;
}

/* ===== FAQ ACCORDION ===== */
.faq {
  padding: 120px 0;
}

.faq__title {
  margin-bottom: 1rem;
}

.faq__sub {
  font-size: 1.1rem;
  margin-bottom: 4.5rem;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 4.5rem;
}

.faq__item {
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
}

.faq__item:hover {
  border-color: rgba(0, 0, 0, 0.12);
  background: var(--bg-card-hover);
}

.faq__item.open {
  border-color: var(--border-active);
  background: var(--bg-card-hover);
  box-shadow: 0 8px 25px rgba(234, 29, 44, 0.03);
}

.faq__btn {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

.faq__question {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
  padding-right: 1.5rem;
}

.faq__chevron {
  color: var(--text-muted);
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.faq__item.open .faq__chevron {
  transform: rotate(180deg);
  color: var(--primary-emerald);
}

.faq__answer-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq__item.open .faq__answer-wrapper {
  grid-template-rows: 1fr;
}

.faq__answer-content {
  overflow: hidden;
}

.faq__answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq__note {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* ===== FINAL CALL TO ACTION ===== */
.final-cta {
  position: relative;
  padding: 140px 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.final-cta__glow {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(234, 29, 44, 0.04) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
}

.final-cta__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.final-cta__h2 {
  font-size: 3.25rem;
  line-height: 1.15;
  margin-bottom: 2rem;
}

.final-cta__accent {
  background: linear-gradient(120deg, var(--primary-emerald) 30%, #ea580c 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.final-cta__body {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 3.5rem;
}

.final-cta__body strong {
  color: var(--text-white);
}

.final-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.final-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--primary-emerald), var(--primary-emerald-hover));
  color: #ffffff;
  font-weight: 700;
  padding: 1.25rem 2.5rem;
  border-radius: 99px;
  box-shadow: 0 10px 30px rgba(234, 29, 44, 0.25);
  font-size: 1.1rem;
}

.final-cta__btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(234, 29, 44, 0.4);
}

.final-cta__trust {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.final-cta__trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.final-cta__trust .check {
  color: var(--primary-emerald);
  font-weight: 700;
}

/* ===== PREMIUM DARK SLATE FOOTER ===== */
.footer {
  padding: 80px 0 40px 0;
  background: #090e1a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}

.footer__brand-name span {
  color: var(--primary-emerald);
}

.footer__brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #94a3b8;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer__brand-tagline {
  font-size: 0.95rem;
  max-width: 320px;
}

.footer__section-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.footer__contacts, .footer__services {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  list-style: none;
}

.footer__contact {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #cbd5e1;
}

.footer__contact svg {
  color: #64748b;
}

.footer__contact:hover {
  color: var(--primary-emerald);
}

.footer__service {
  font-size: 0.9rem;
  color: #cbd5e1;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  font-size: 0.8rem;
  color: #64748b;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 800;
  background: #25d366;
  border-radius: 99px;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition-spring);
}

.wa-float:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
  background: #20ba5a;
}

/* Pulsing effect for floating button */
.wa-pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 99px;
  border: 1px solid #25d366;
  animation: ping-slow 2.5s infinite ease-out;
  pointer-events: none;
  z-index: -1;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .transparency__grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .differentials__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .container, .container--sm, .container--md {
    padding: 0 1rem;
  }
  
  h2 { font-size: 1.85rem; }
  h3 { font-size: 1.35rem; }
  
  .hero { padding: 120px 0 60px 0; }
  .hero__h1 { font-size: 2.25rem; }
  .hero__sub { font-size: 1rem; }
  .hero__grid { gap: 1rem; margin-bottom: 2rem; }
  
  .pain { padding: 60px 0; }
  .pain__title { margin-bottom: 2rem; }
  .pain__grid { grid-template-columns: 1fr; }
  
  .bridge { padding: 80px 0; }
  .bridge__h2 { font-size: 2rem; }
  .bridge__text { font-size: 1.1rem; }
  
  .testimonials { padding: 60px 0; }
  .testimonials__grid { grid-template-columns: 1fr; }
  
  .method { padding: 80px 0; }
  
  .dashboard { padding: 60px 0; }
  .dashboard__title { margin-bottom: 2.5rem; }
  .dashboard__metrics { grid-template-columns: 1fr; }
  .dashboard__metric { padding: 2rem 1.5rem; }
  .dashboard__metric:not(:last-child)::after {
    bottom: 0;
    right: 20%;
    left: 20%;
    width: auto;
    height: 1px;
  }
  
  .db-grid { grid-template-columns: 1fr; }
  
  .transparency { padding: 80px 0; }
  .transparency__title { margin-bottom: 3rem; font-size: 1.85rem; }
  
  .differentials { padding: 60px 0; }
  .differentials__title { margin-bottom: 2.5rem; }
  .differentials__quote { font-size: 1.25rem; }
  
  .faq { padding: 80px 0; }
  
  .final-cta { padding: 80px 0; }
  .final-cta__h2 { font-size: 2.25rem; }
  .final-cta__body { font-size: 1rem; }
  
  .footer { padding: 60px 0 30px 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
  
  .wa-float {
    bottom: 1.5rem;
    right: 1.5rem;
    padding: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    justify-content: center;
  }
  .wa-float span {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero__grid {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .hero__grid-item {
    width: 100%;
    max-width: 290px;
  }
}

@media (max-width: 480px) {

  .navbar__cta {
    padding: 0.5rem 0.85rem;
    font-size: 0.78rem;
    gap: 0.35rem;
  }
  .navbar__cta svg {
    width: 12px;
    height: 12px;
  }
}
