/* ==========================================================================
   ELITTE+ CONTABILIDADE - DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

:root {
  /* Brand Color Palette */
  --bg-main: #060d19;
  --bg-surface: #0a1526;
  --bg-card: #0f1e38;
  --bg-card-hover: #152747;
  --bg-card-glass: rgba(15, 30, 56, 0.7);
  --bg-card-glass-border: rgba(212, 175, 55, 0.2);

  /* Gold Accents & Highlights */
  --gold-300: #ffdf73;
  --gold-400: #f5c518;
  --gold-500: #d4af37;
  --gold-600: #b89025;
  --gold-glow: rgba(212, 175, 55, 0.25);
  --gold-gradient: linear-gradient(135deg, #ffdf73 0%, #d4af37 50%, #f5a623 100%);
  --gold-gradient-hover: linear-gradient(135deg, #ffffff 0%, #ffdf73 50%, #d4af37 100%);

  /* Neutrals & Text */
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold-subtle: rgba(212, 175, 55, 0.25);

  /* Success & Badges */
  --green-emerald: #10b981;
  --green-glow: #22c55e;
  --green-bg: rgba(16, 185, 129, 0.12);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows & Elevations */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.25);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Global Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.25;
}

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

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

.text-gold {
  color: var(--gold-400) !important;
}

.text-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-green {
  color: var(--green-emerald);
}

.text-green-glow {
  color: #25d366;
}

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

.w-full {
  width: 100%;
}

/* Section Common Layout */
.section-padding {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold-subtle);
  color: var(--gold-300);
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.75rem 1.6rem;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition-normal);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-large {
  padding: 0.95rem 2rem;
  font-size: 1.05rem;
  border-radius: 12px;
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #08101e;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-primary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-gold-subtle);
  color: var(--text-primary);
  backdrop-filter: blur(8px);
}

.btn-primary:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-400);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
}

.btn-outline:hover {
  border-color: var(--gold-400);
  color: var(--gold-300);
  background: rgba(212, 175, 55, 0.06);
  transform: translateY(-2px);
}

/* ==========================================================================
   TOPBAR
   ========================================================================== */
.topbar {
  background-color: #040913;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.82rem;
  padding: 0.5rem 0;
  color: var(--text-secondary);
  position: relative;
  z-index: 101;
}

.topbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar-info a:hover {
  color: var(--gold-300);
}

.divider {
  color: var(--border-subtle);
}

.topbar-badge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 500;
  color: var(--gold-300);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--green-glow);
  box-shadow: 0 0 8px var(--green-glow);
  display: inline-block;
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(6, 13, 25, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(6, 13, 25, 0.96);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border-bottom-color: var(--border-gold-subtle);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.logo-mark {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(10, 21, 38, 0.8) 100%);
  border: 1px solid var(--border-gold-subtle);
  border-radius: 10px;
  padding: 4px;
}

.logo-mark svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.brand-plus {
  color: var(--gold-400);
  font-weight: 900;
  font-size: 1.55rem;
}

.brand-sub {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--gold-300);
  line-height: 1;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.8rem;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.3rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition-normal);
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-cta-box {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-subtle);
  padding: 0.6rem;
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 5rem 0 6rem 0;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(15, 33, 64, 0.6) 0%, rgba(6, 13, 25, 1) 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.hero-glow-1 {
  width: 450px;
  height: 450px;
  background: rgba(212, 175, 55, 0.12);
  top: 10%;
  left: -5%;
}

.hero-glow-2 {
  width: 500px;
  height: 500px;
  background: rgba(30, 70, 140, 0.2);
  top: 20%;
  right: -5%;
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold-subtle);
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.4rem 1.1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.4rem;
}

.hero-desc {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2.2rem;
  max-width: 620px;
}

.hero-desc strong {
  color: var(--text-primary);
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-300);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  max-width: 130px;
}

.stat-separator {
  width: 1px;
  height: 40px;
  background-color: var(--border-subtle);
}

/* Hero Visual Card */
.hero-visual {
  position: relative;
}

.hero-card-main {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), var(--shadow-gold);
  position: relative;
  overflow: visible;
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding: 0 0.25rem;
}

.card-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red { background: #ef4444; }
.dot-yellow { background: #eab308; }
.dot-green { background: #22c55e; }

.card-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-300);
}

.hero-banner-preview {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(6, 13, 25, 0.8) 100%);
  pointer-events: none;
}

.quick-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.highlight-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  font-size: 0.78rem;
  color: var(--text-primary);
  font-weight: 500;
}

.floating-cta-badge {
  position: absolute;
  bottom: -22px;
  right: -15px;
  background: var(--bg-surface);
  border: 1px solid var(--gold-400);
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: var(--shadow-lg), 0 0 20px rgba(212, 175, 55, 0.2);
  z-index: 2;
}

.pulse-ring {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.3);
  animation: pulse-ring 2s infinite ease-out;
  pointer-events: none;
  z-index: -1;
}

@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

.floating-cta-badge i {
  font-size: 1.35rem;
}

.floating-cta-badge small {
  display: block;
  font-size: 0.7rem;
  color: var(--text-secondary);
}

.floating-cta-badge strong {
  color: var(--text-primary);
  font-size: 0.95rem;
}

/* ==========================================================================
   TRUST BAR
   ========================================================================== */
.trust-bar {
  background: #081223;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.75rem 0;
}

.trust-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.trust-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.trust-item p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */
.services-section {
  background-color: var(--bg-main);
  position: relative;
}

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

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 2.2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold-subtle);
  background: var(--bg-card);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.1);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card.featured {
  border-color: rgba(212, 175, 55, 0.4);
  background: linear-gradient(180deg, #0e1d3b 0%, #0a1526 100%);
}

.badge-featured {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--gold-gradient);
  color: #060d19;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.service-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-400);
  margin-bottom: 1.5rem;
  transition: var(--transition-normal);
}

.service-card:hover .service-icon-wrap {
  background: var(--gold-gradient);
  color: #060d19;
  transform: scale(1.05);
}

.service-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.service-desc {
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.service-features li {
  font-size: 0.88rem;
  color: #cbd5e1;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  line-height: 1.4;
}

.service-features li i {
  margin-top: 3px;
  font-size: 0.8rem;
}

.service-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-300);
  transition: var(--transition-fast);
}

.service-cta i {
  transition: var(--transition-fast);
}

.service-card:hover .service-cta {
  color: #ffffff;
}

.service-card:hover .service-cta i {
  transform: translateX(5px);
  color: var(--gold-400);
}

/* ==========================================================================
   INTERACTIVE SIMULATOR SECTION
   ========================================================================== */
.simulator-section {
  background: linear-gradient(180deg, #060d19 0%, #091427 100%);
  position: relative;
}

.simulator-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: center;
}

.simulator-intro p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.simulator-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sim-ben-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.sim-ben-item i {
  font-size: 1.1rem;
}

/* Simulator Card */
.simulator-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold-subtle);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), var(--shadow-gold);
  overflow: hidden;
}

.sim-header {
  background: rgba(212, 175, 55, 0.08);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.25rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sim-header h3 {
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sim-badge {
  font-size: 0.75rem;
  background: var(--green-bg);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--green-emerald);
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
  font-weight: 600;
}

.sim-body {
  padding: 1.8rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.sim-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 0.6rem;
}

.sim-select-wrap {
  position: relative;
}

.sim-select {
  width: 100%;
  background: #081120;
  border: 1px solid var(--border-subtle);
  color: #f8fafc;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  font-size: 0.92rem;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition-fast);
  cursor: pointer;
}

.sim-select:focus {
  border-color: var(--gold-400);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.revenue-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.revenue-display {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold-300);
}

.sim-range {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  background: #152238;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
}

.sim-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold-gradient);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
  border: 2px solid #060d19;
  transition: transform 0.1s ease;
}

.sim-range::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.range-markers {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* Custom Checkbox */
.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: #cbd5e1;
  cursor: pointer;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  width: 20px;
  height: 20px;
  background-color: #081120;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.custom-checkbox input:checked ~ .checkmark {
  background-color: var(--gold-500);
  border-color: var(--gold-400);
}

.checkmark::after {
  content: "✔";
  color: #060d19;
  font-size: 0.75rem;
  font-weight: 900;
  display: none;
}

.custom-checkbox input:checked ~ .checkmark::after {
  display: block;
}

/* Simulator Output Box */
.sim-results {
  background: #081120;
  border: 1px solid var(--border-gold-subtle);
  border-radius: 14px;
  padding: 1.4rem;
  margin-top: 1.5rem;
}

.primary-result {
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 1rem;
}

.result-title {
  font-size: 0.78rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.result-regime {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
}

.result-tagline {
  font-size: 0.82rem;
  color: var(--gold-300);
}

.result-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.metric-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 0.75rem 0.5rem;
  text-align: center;
}

.metric-box.highlight-economy {
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.05);
}

.metric-lbl {
  display: block;
  font-size: 0.7rem;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.metric-val {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
}

.sim-note {
  font-size: 0.73rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.btn-sim-send {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
}

/* ==========================================================================
   SEGMENTS SECTION
   ========================================================================== */
.segments-section {
  background-color: var(--bg-surface);
}

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

.segment-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 1.8rem;
  transition: var(--transition-normal);
}

.segment-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold-subtle);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.segment-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--gold-400);
  margin-bottom: 1.25rem;
}

.segment-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.segment-card p {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ==========================================================================
   STEPS SECTION
   ========================================================================== */
.steps-section {
  background-color: var(--bg-main);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
  position: relative;
}

.step-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2.2rem 1.8rem;
  position: relative;
  text-align: center;
  transition: var(--transition-normal);
}

.step-card:hover {
  border-color: var(--border-gold-subtle);
  transform: translateY(-4px);
}

.step-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #060d19;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.step-icon {
  font-size: 2rem;
  margin: 1rem 0 1.25rem 0;
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.step-card p {
  font-size: 0.9rem;
  line-height: 1.55;
}

.steps-cta-center {
  display: flex;
  justify-content: center;
}

/* ==========================================================================
   WHY US / DIFFERENTIALS
   ========================================================================== */
.why-us-section {
  background: linear-gradient(180deg, #091427 0%, #060d19 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

.why-desc {
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

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

.diff-item {
  display: flex;
  gap: 1.2rem;
}

.diff-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--gold-400);
}

.diff-item h4 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.diff-item p {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Why Us Side Cards */
.why-card-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.quote-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold-subtle);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}

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

.quote-avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--border-gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.quote-header h4 {
  font-size: 1.05rem;
  margin-bottom: 0.1rem;
}

.quote-header small {
  color: var(--gold-300);
}

.quote-body {
  font-style: italic;
  font-size: 0.95rem;
  color: #e2e8f0;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.quote-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.stars {
  color: var(--gold-400);
  font-size: 0.85rem;
  display: flex;
  gap: 2px;
}

.rating-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-300);
}

.contact-pill-card {
  background: #0d1a33;
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.pill-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.pill-head i {
  font-size: 1.75rem;
}

.pill-head strong {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.pill-head span {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */
.about-section {
  background-color: var(--bg-surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-image-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-gold-subtle);
  box-shadow: var(--shadow-lg);
}

.about-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-badge-exp {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(6, 13, 25, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold-subtle);
  padding: 1rem 1.25rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.exp-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-400);
}

.exp-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
}

.about-content p {
  font-size: 1.02rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.about-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.val-item {
  display: flex;
  gap: 0.85rem;
}

.val-item i {
  font-size: 1.3rem;
  margin-top: 3px;
}

.val-item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: #ffffff;
}

.val-item p {
  font-size: 0.85rem;
  line-height: 1.45;
  margin-bottom: 0;
}

.sig-social {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--text-primary);
  font-weight: 500;
}

.social-link:hover {
  border-color: var(--gold-400);
  color: var(--gold-300);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  background-color: var(--bg-main);
}

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

.testi-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
}

.testi-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold-subtle);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.testi-stars {
  color: var(--gold-400);
  font-size: 0.85rem;
  display: flex;
  gap: 3px;
  margin-bottom: 1.2rem;
}

.testi-text {
  font-size: 0.95rem;
  color: #e2e8f0;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.75rem;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #060d19;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-user strong {
  display: block;
  font-size: 0.95rem;
  color: #ffffff;
}

.testi-user small {
  color: var(--text-secondary);
  font-size: 0.8rem;
}

/* ==========================================================================
   FAQ ACCORDION SECTION
   ========================================================================== */
.faq-section {
  background-color: var(--bg-surface);
}

.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item.active {
  border-color: var(--border-gold-subtle);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.3rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  outline: none;
}

.faq-question i {
  color: var(--gold-400);
  font-size: 0.9rem;
  transition: transform var(--transition-normal);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.6rem;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding-bottom: 1.3rem;
  transition: max-height 0.4s ease-in-out;
}

.faq-answer p {
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ==========================================================================
   CONTACT & LEAD GENERATOR SECTION
   ========================================================================== */
.contact-section {
  background: linear-gradient(180deg, #060d19 0%, #0a1526 100%);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
}

.contact-intro {
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.contact-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-method-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: var(--transition-normal);
}

.contact-method-card:hover {
  transform: translateX(4px);
  border-color: var(--border-gold-subtle);
}

.cm-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.cm-content strong {
  display: block;
  font-size: 0.95rem;
  color: #ffffff;
}

.cm-content span {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-300);
}

.cm-content small {
  display: block;
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 0.15rem;
}

/* Contact Form Card */
.contact-form-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold-subtle);
  border-radius: 20px;
  padding: 2.2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), var(--shadow-gold);
}

.cf-header {
  margin-bottom: 1.8rem;
}

.cf-header h3 {
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}

.cf-header p {
  font-size: 0.88rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.lead-form .form-group {
  margin-bottom: 1.2rem;
}

.lead-form label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 0.5rem;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  background: #081120;
  border: 1px solid var(--border-subtle);
  color: #f8fafc;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  font-size: 0.92rem;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition-fast);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--gold-400);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.lead-form textarea {
  resize: vertical;
}

.form-security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* ==========================================================================
   BANNER CTA SECTION
   ========================================================================== */
.banner-cta-section {
  padding: 2rem 0;
  background-color: var(--bg-main);
}

.banner-cta-box {
  background: radial-gradient(circle at 10% 20%, #152747 0%, #0c182e 100%);
  border: 1px solid var(--border-gold-subtle);
  border-radius: 20px;
  padding: 3rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  box-shadow: var(--shadow-lg), 0 0 30px rgba(212, 175, 55, 0.15);
}

.banner-cta-text h2 {
  font-size: 1.85rem;
  margin-bottom: 0.6rem;
}

.banner-cta-text p {
  font-size: 1.05rem;
  max-width: 600px;
}

.banner-cta-btn-wrap {
  flex-shrink: 0;
}

/* ==========================================================================
   SITE FOOTER
   ========================================================================== */
.site-footer {
  background-color: #03070f;
  border-top: 1px solid var(--border-subtle);
  padding: 4.5rem 0 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
}

.footer-logo {
  margin-bottom: 1.25rem;
}

.footer-about {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 0.85rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.footer-socials a:hover {
  background: var(--gold-gradient);
  color: #060d19;
  border-color: var(--gold-400);
}

.footer-title {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--gold-300);
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.footer-contact-list li i {
  margin-top: 4px;
}

.footer-contact-list a:hover {
  color: var(--gold-300);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 1.5rem 0;
  background-color: #02050b;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.floating-whatsapp-wrap {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.whatsapp-tooltip {
  background: #0b172a;
  border: 1px solid var(--gold-400);
  padding: 0.6rem 1rem;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition-normal);
}

.floating-whatsapp-wrap:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.tooltip-title {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-300);
}

.tooltip-text {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.btn-floating-wa {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.85rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  position: relative;
  transition: transform var(--transition-fast);
}

.btn-floating-wa:hover {
  transform: scale(1.1) rotate(5deg);
}

.wa-ripple {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: wa-pulse 2s infinite ease-out;
  pointer-events: none;
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ==========================================================================
   ANIMATIONS & RESPONSIVE BREAKPOINTS
   ========================================================================== */
.animate-fade {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Media Queries */
@media (max-width: 1080px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .hero-visual {
    max-width: 580px;
    margin: 0 auto;
  }
  .simulator-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .banner-cta-box {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 860px) {
  .trust-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .topbar {
    display: none; /* Simplify mobile view */
  }

  .site-header {
    height: 70px;
  }
  .nav-container {
    height: 70px;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 13, 25, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem 1.5rem;
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    z-index: 99;
    overflow-y: auto;
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    width: 100%;
  }

  .nav-link {
    font-size: 1.2rem;
  }

  .mobile-cta-box {
    display: block;
    width: 100%;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
  }

  .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .mobile-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-section {
    padding: 3.5rem 0 4rem 0;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .stat-separator {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .result-metrics-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .whatsapp-tooltip {
    display: none;
  }
}
