/* menui - Modern Design System
   Inspired by leading SaaS platforms with superior UX
   Mobile-first responsive design with premium feel
   ========================================================= */

/* Accessibility - Screen reader only class */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Import Home Styles */
/* =========================
   CSS VARIABLES - Modern Design System
   ========================= */
:root {
  /* Brand Colors - menui official colors */
  --brand-primary: #f0a12c;
  --brand-primary-dark: #d88a1f;
  --brand-primary-light: #f5b857;
  --brand-secondary: #c97d19;
  --brand-accent: #faebcb;
  --brand-success: #2ED573;
  --brand-warning: #f0a12c;
  --brand-error: #FF3838;

  /* Modern Gradients - menui brand colors */
  --gradient-primary: linear-gradient(135deg, #f0a12c 0%, #f5b857 100%);
  --gradient-secondary: linear-gradient(135deg, #c97d19 0%, #f0a12c 100%);
  --gradient-hero: linear-gradient(135deg, #d88a1f 0%, #f0a12c 50%, #faebcb 100%);
  --gradient-card: linear-gradient(145deg, #ffffff 0%, #fdfbf7 100%);
  --gradient-glass: linear-gradient(145deg, rgba(240, 161, 44, 0.1) 0%, rgba(240, 161, 44, 0.05) 100%);
  --gradient-cta: linear-gradient(135deg, #f0a12c 0%, #d88a1f 100%);

  /* Modern Effects */
  --glass-effect: rgba(240, 161, 44, 0.1);
  --glass-border: rgba(240, 161, 44, 0.2);
  --backdrop-blur: blur(20px);
  --text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --glow-primary: 0 0 30px rgba(240, 161, 44, 0.3);
  --glow-secondary: 0 0 30px rgba(250, 235, 203, 0.4);

  /* Typography - unified Inter stack for lighter payload */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Modern Color Palette - Warm neutral tones */
  --white: #ffffff;
  --black: #000000;
  --gray-50: #fdfbf7;
  --gray-100: #faf5ed;
  --gray-200: #f0e5d8;
  --gray-300: #e0d1bd;
  --gray-400: #b8a792;
  --gray-500: #8a7a6b;
  --gray-600: #6b5e52;
  --gray-700: #4a3c2e;
  --gray-800: #2e231a;
  --gray-900: #1a120b;

  /* Surface Colors - Modern backgrounds */
  --surface-primary: #ffffff;
  --surface-secondary: #fdfbf7;
  --surface-tertiary: #faf5ed;
  --surface-card: #ffffff;
  --surface-elevated: #ffffff;

  /* Semantic Colors - Consistent with design systems */
  --success: #22c55e;
  --warning: #f0a12c;
  --error: #ef4444;
  --info: #3b82f6;

  /* Modern Shadows - Depth and elevation */
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  --shadow-2xl: 0 50px 100px -20px rgba(0, 0, 0, 0.25);

  /* Glass morphism shadows */
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  --glass-shadow-lg: 0 20px 40px 0 rgba(31, 38, 135, 0.25);

  /* Border Radius - Modern and consistent */
  --radius-xs: 0.125rem;
  --radius-sm: 0.25rem;
  --radius: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-3xl: 3rem;
  --radius-full: 9999px;

  /* Modern Spacing Scale */
  --space-px: 1px;
  --space-0: 0;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
  --space-40: 10rem;
  --space-48: 12rem;
  --space-56: 14rem;
  --space-64: 16rem;

  /* Transition and Animation */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Breakpoints for responsive design */
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
  --breakpoint-2xl: 1536px;
}
/* =========================
   BASE STYLES - Modern Reset and Typography
   ========================= */

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

html {
  scroll-behavior: smooth;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--surface-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1040;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  border-radius: 9999px;
  background: #25d366;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}

.whatsapp-float:hover,
.whatsapp-float:focus {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
}

.whatsapp-float i {
  font-size: 1.25rem;
}

.whatsapp-float__icon {
  width: 1.4rem;
  height: 1.4rem;
  flex: 0 0 auto;
}

@media (max-width: 640px) {
  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    padding: 0.7rem 0.85rem;
  }

  .whatsapp-float__label {
    display: none;
  }
}

.public-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Modern Container System */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-fluid {
  width: 100%;
  padding: 0 var(--space-6);
}

.container-sm {
  max-width: 640px;
}

.container-md {
  max-width: 768px;
}

.container-lg {
  max-width: 1024px;
}

.container-xl {
  max-width: 1280px;
}

/* Responsive Container */
@media (max-width: 640px) {
  .container,
  .container-fluid {
    padding: 0 var(--space-4);
  }
}

/* =========================
   MODERN NAVIGATION - Glass morphism design
   ========================= */
.public-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: var(--backdrop-blur);
  border-bottom: 1px solid var(--glass-border);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.public-navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--gray-200);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* Brand Logo */
.navbar-brand .brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--gray-900);
  font-weight: 800;
  font-size: 1.5rem;
  transition: var(--transition);
}

.navbar-brand .brand-link:hover {
  transform: scale(1.02);
}

.brand-logo {
  height: 40px;
  width: auto;
  margin-right: var(--space-3);
}

.brand-icon {
  font-size: 1.75rem;
  margin-right: var(--space-3);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-text {
  font-family: var(--font-display);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* Navigation Menu */
.navbar-menu {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.navbar-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--space-6);
}

.nav-link {
  text-decoration: none;
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.95rem;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--brand-primary);
  background: rgba(99, 102, 241, 0.1);
  transform: translateY(-1px);
}

.nav-link.active {
  color: var(--brand-primary);
  background: rgba(99, 102, 241, 0.1);
}

/* Navigation Actions */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

/* Mobile Navigation Toggle */
.navbar-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  border-radius: var(--radius);
  transition: var(--transition);
}

.navbar-toggle:hover {
  background: var(--gray-100);
}

.navbar-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  margin: 2px 0;
  transition: var(--transition);
  border-radius: var(--radius-full);
}

.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .navbar-container {
    padding: 0 var(--space-4);
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: var(--backdrop-blur);
    border-top: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
    padding: var(--space-6);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    flex-direction: column;
    gap: var(--space-6);
  }

  .navbar-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .navbar-nav {
    flex-direction: column;
    width: 100%;
    gap: var(--space-2);
  }

  .nav-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: var(--space-4);
    font-size: 1rem;
  }

  .navbar-actions {
    width: 100%;
    flex-direction: column;
    gap: var(--space-3);
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

/* =========================
   MODERN BUTTON SYSTEM
   ========================= */

/* Base Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.5;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
  outline: none;
  box-shadow: var(--shadow-sm);
}

.btn:focus {
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Primary Button */
.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--glow-primary);
}

/* Secondary Button */
.btn-secondary {
  background: var(--white);
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
}

.btn-secondary:hover:not(:disabled) {
  background: var(--brand-primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* Ghost Button */
.btn-ghost {
  background: transparent;
  color: var(--gray-700);
  border: 1px solid var(--gray-300);
}

.btn-ghost:hover:not(:disabled) {
  background: var(--gray-50);
  border-color: var(--gray-400);
  transform: translateY(-1px);
}

/* Button Sizes */
.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: 0.875rem;
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: 1.125rem;
  font-weight: 700;
}

/* CTA Buttons */
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-5) var(--space-8);
  background: var(--gradient-cta);
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl), var(--glow-primary);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-5) var(--space-8);
  background: var(--white);
  color: var(--brand-primary);
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  border: 2px solid var(--brand-primary);
  border-radius: var(--radius-xl);
  transition: all var(--transition);
}

.cta-secondary:hover {
  background: var(--brand-primary);
  color: var(--white);
  transform: translateY(-2px);
}

.nav-link:hover {
  color: var(--brand-primary);
  background: rgba(220, 38, 38, 0.1);
}

.nav-link::after {
  display: none;
}

.nav-link.active {
  color: var(--brand-primary);
  background: rgba(220, 38, 38, 0.1);
}

.nav-link.active::after {
  width: 80%;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  justify-content: flex-end;
  flex-direction: row;
  width: auto;
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  gap: 4px;
}

.navbar-toggle span {
  width: 25px;
  height: 3px;
  background: var(--gray-700);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

@media (max-width: 1024px) {
  .navbar-container {
    padding: 0 var(--space-md);
  }

  .navbar-nav {
    gap: var(--space-lg);
  }

  .navbar-menu {
    gap: var(--space-lg);
  }
}

@media (max-width: 768px) {
  .navbar-toggle {
    display: flex;
  }

  .navbar-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: var(--space-xl);
    gap: var(--space-xl);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    box-shadow: var(--shadow-xl);
  }

  .navbar-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .navbar-nav {
    flex-direction: column;
    width: 100%;
    gap: var(--space-md);
  }

  .nav-link {
    display: block;
    padding: var(--space-md);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
  }

  .navbar-actions {
    width: 100%;
    flex-direction: column;
    gap: var(--space-md);
  }
  .btn {
    width: 100%;
    text-align: center;
  }
}

/* =========================
   BUTTONS
   ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-xl);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  font-family: inherit;
  line-height: 1.2;
  min-height: 48px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--gradient-secondary);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: transparent;
  color: var(--gray-700);
  border: 2px solid var(--gray-300);
}

.btn-ghost:hover {
  background: var(--gray-100);
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

.btn-outline {
  background: transparent;
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
}

.btn-outline:hover {
  background: var(--brand-primary);
  color: white;
}

.btn-lg {
  padding: var(--space-lg) var(--space-2xl);
  font-size: 1.1rem;
  min-height: 56px;
}

.btn-sm {
  padding: var(--space-sm) var(--space-lg);
  font-size: 0.875rem;
  min-height: 40px;
}

/* =========================
   FLASH MESSAGES
   ========================= */
#flash_container {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  width: auto;
  pointer-events: none;
}

#flash_container .flash-alert {
  pointer-events: auto;
}

/* Flash Alert - Estilo padronizado (como kanban) */
.flash-alert {
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  min-width: 400px;
  max-width: 600px;
  margin: 0;
  animation: flash-slide-in 0.3s ease-out;
}

.flash-alert .bi {
  font-size: 1.25rem;
}

[data-bs-theme="dark"] #flash_container .flash-alert.alert-danger {
  background-color: rgba(var(--bs-danger-rgb), 0.8);
  color: #ffe5e8;
  border: 1px solid rgba(var(--bs-danger-rgb), 0.9);
}

.flash-alert .gap-3 {
  gap: 1rem !important;
}

.flash-alert .btn-close {
  margin-left: 0.5rem;
}

/* Animação de remoção */
.flash-alert.flash-message--removing {
  opacity: 0;
  transform: translateX(-50%) translateY(-10px);
}

@keyframes flash-slide-in {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@media (max-width: 576px) {
  .flash-alert {
    min-width: 300px;
    max-width: 90vw;
  }
}

/* Legacy flash styles */
.flash-success {
  background: var(--gradient-success);
}

.flash-error {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.flash-message .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  position: relative;
}

.flash-message i {
  font-size: 1.25rem;
}

.flash-close {
  position: absolute;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: var(--space-sm);
  border-radius: var(--radius);
  transition: var(--transition);
}

.flash-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* =========================
   MAIN CONTENT
   ===========

/* =========================
   FOOTER
   ========================= */
.public-footer {
  background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
  color: var(--gray-600);
  position: relative;
  overflow: hidden;
}

.public-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem 2rem;
}

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

/* Brand Section */
.footer-brand-section {
  max-width: 320px;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 1.25rem;
  transition: opacity 0.3s ease;
}

.footer-logo-link:hover {
  opacity: 0.8;
}

.footer-logo {
  height: 36px;
  width: auto;
  max-width: 160px;
}

.footer-title {
  color: var(--gray-800);
  font-weight: 600;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-description {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-start;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: white;
  color: var(--gray-600);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--gray-300);
  font-size: 1.1rem;
}

.social-link:hover {
  background: var(--brand-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-color: var(--brand-primary);
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a,
.footer-links span {
  color: var(--gray-600);
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.9rem;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--brand-primary) !important;
  transform: translateX(4px);
}

/* Contact Section */
.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact .contact-item i {
  color: var(--brand-primary);
  font-size: 1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.footer-contact .contact-item a {
  color: var(--gray-600);
  word-break: break-all;
}

.footer-contact .contact-item a:hover {
  color: var(--brand-primary) !important;
  transform: none;
}

.footer-contact .contact-item span {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 2rem;
  border-top: 2px solid rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--gray-600);
}

.footer-legal-info .company-name {
  font-weight: 600;
  color: var(--gray-700);
}

.footer-legal-info .separator {
  color: var(--gray-400);
}

.footer-legal-info .cnpj {
  color: var(--gray-500);
  font-size: 0.75rem;
}

.footer-copyright {
  color: var(--gray-500);
  font-size: 0.85rem;
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .footer-brand-section {
    grid-column: span 2;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 3rem 1.5rem 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    margin-bottom: 2rem;
  }

  .footer-brand-section {
    grid-column: span 1;
  }

  .footer-social {
    justify-content: center;
  }

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

  .footer-contact .contact-item {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding-top: 1.5rem;
  }

  .footer-legal-info {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 2.5rem 1rem 1.5rem;
  }

  .footer-content {
    gap: 1.75rem;
  }

  .footer-brand-title {
    font-size: 1.35rem;
  }

  .footer-legal-info {
    flex-direction: column;
    gap: 0.25rem;
  }

  .footer-legal-info .separator {
    display: none;
  }
}

/* =========================
   BACKGROUND ANIMATIONS
   ========================= */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.floating-shapes {
  position: relative;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  background: var(--gradient-primary);
  border-radius: 50%;
  opacity: 0.1;
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation-delay: 5s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  bottom: 30%;
  left: 20%;
  animation-delay: 10s;
}

.shape-4 {
  width: 100px;
  height: 100px;
  top: 40%;
  right: 40%;
  animation-delay: 15s;
}

.shape-5 {
  width: 140px;
  height: 140px;
  bottom: 20%;
  right: 30%;
  animation-delay: 8s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(120deg);
  }
  66% {
    transform: translateY(20px) rotate(240deg);
  }
}

@keyframes slideInDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* =========================
   UTILITIES
   ========================= */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }

.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }

.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }

.transition { transition: all var(--transition); }
.duration-300 { transition-duration: 300ms; }

.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:shadow-lg:hover { box-shadow: var(--shadow-lg); }

/* =========================
   RESPONSIVE HELPERS
   ========================= */
@media (max-width: 640px) {
  .sm\:hidden { display: none; }
  .sm\:block { display: block; }
  .sm\:flex { display: flex; }
  .sm\:text-center { text-align: center; }
}

@media (max-width: 768px) {
  .md\:hidden { display: none; }
  .md\:block { display: block; }
  .md\:flex { display: flex; }
  .md\:text-center { text-align: center; }
}

/* =========================
   AUTHENTICATION PAGES
   ========================= */

.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  background: beigen;
  position: relative;
  overflow: hidden;
}

.auth-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-2xl);
  padding: var(--space-3xl);
  box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 450px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.auth-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.auth-header h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-md);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.auth-header p {
  color: var(--gray-600);
  font-size: 1.1rem;
  line-height: 1.6;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-group label {
  font-weight: 600;
  color: var(--gray-700);
  font-size: 0.95rem;
}

.form-group input {
  padding: var(--space-md) var(--space-lg);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  transition: all var(--transition);
  background: white;
  font-family: inherit;
}

.form-group input:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
  transform: translateY(-1px);
}

.form-group input::placeholder {
  color: #9ca3af;
  opacity: 0.85;
}

.form-group select {
  padding: var(--space-md) var(--space-lg);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  transition: all var(--transition);
  background: white;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right var(--space-md) center;
  background-size: 20px;
  padding-right: calc(var(--space-lg) + 30px);
}

.form-group select:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
  transform: translateY(-1px);
}

.form-group select option {
  padding: var(--space-sm);
  font-size: 1rem;
}

.form-text {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: var(--space-xs);
  line-height: 1.4;
}

/* Plan selection special styling */
.form-group.plan-selection {
  background: linear-gradient(135deg, #f8faff 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
  position: relative;
}

.form-group.plan-selection::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-primary), #ef4444);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.form-group.plan-selection label {
  color: var(--brand-primary);
  font-weight: 700;
  font-size: 1rem;
}

.form-group.plan-selection select {
  border-color: #cbd5e1;
  font-weight: 500;
}

.form-group.plan-selection select:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.form-group.plan-selection .form-text {
  color: var(--gray-600);
  font-weight: 500;
}

.error-messages {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  border: 1px solid #f87171;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  color: #dc2626;
}

.error-messages h4 {
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: #991b1b;
}

.error-messages ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.error-messages li {
  padding: var(--space-xs) 0;
  position: relative;
  padding-left: var(--space-lg);
}

.error-messages li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #dc2626;
  font-weight: bold;
}

.form-actions {
  margin-top: var(--space-lg);
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: var(--space-lg) var(--space-xl);
  font-size: 1.1rem;
  font-weight: 700;
  min-height: 56px;
}

.auth-footer {
  margin-top: var(--space-2xl);
  text-align: center;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--gray-200);
}

.auth-footer p {
  color: var(--gray-600);
  margin: 0;
}

.auth-footer a {
  color: var(--brand-primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.auth-footer a:hover {
  color: var(--brand-primary-dark);
  text-decoration: underline;
}

/* Flash messages in auth pages */
.auth-container .flash-message {
  position: fixed;
  top: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  min-width: 300px;
  max-width: 500px;
}

/* Password toggle icon styles */
.password-toggle-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #6c757d;
  font-size: 1.2rem;
  line-height: 1;
  padding: 8px;
  cursor: pointer;
  transition: color 0.2s ease;
  z-index: 10;
}

.password-toggle-btn:hover {
  color: #495057;
}

.password-toggle-btn:focus {
  outline: none;
  box-shadow: none;
}

/* Ensure proper spacing for inputs with toggle icons */
.form-control.pe-5 {
  padding-right: 3rem !important;
}

.invitation-company-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 1.25rem;
  padding: 1.25rem;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.invitation-company-card__logo,
.invitation-company-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 1.1rem;
  flex-shrink: 0;
}

.invitation-company-card__logo {
  object-fit: contain;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.22);
  padding: 0.45rem;
}

.invitation-company-card__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.16), rgba(124, 58, 237, 0.16));
  border: 1px solid rgba(99, 102, 241, 0.16);
  color: #1e293b;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.invitation-company-card__eyebrow {
  display: inline-block;
  margin-bottom: 0.25rem;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.invitation-company-card__title {
  margin: 0 0 0.2rem;
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.25;
}

.invitation-company-card__meta {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.5;
  word-break: break-word;
}

.invitation-company-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
  .lg\:hidden { display: none; }
  .lg\:block { display: block; }
  .lg\:flex { display: flex; }
  .lg\:text-center { text-align: center; }
}

/* Responsive for auth pages */
@media (max-width: 768px) {
  .auth-container {
    padding: var(--space-md);
  }

  .auth-card {
    padding: var(--space-2xl);
  }

  .auth-header h1 {
    font-size: 1.75rem;
  }

  .form-group input {
    padding: var(--space-md);
  }

  .invitation-company-card {
    padding: 1rem;
  }

  .invitation-company-card__logo,
  .invitation-company-card__avatar {
    width: 56px;
    height: 56px;
    border-radius: 1rem;
  }

  .invitation-company-card__badge {
    display: none;
  }

  /* Improve touch targets for mobile */
  .password-toggle-btn {
    padding: 12px;
    font-size: 1.1rem;
    right: 8px;
  }
}
/* =========================
   FEATURES SECTION - Modern cards layout
   ========================= */

.features-section {
  padding: var(--space-24) 0;
  background: var(--surface-secondary);
  position: relative;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-16);
}

.feature-card {
  background: var(--surface-card);
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--brand-primary);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  backdrop-filter: var(--backdrop-blur);
}

.feature-icon i {
  font-size: 2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-4);
}

.feature-card p {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  color: var(--gray-700);
}

.feature-list li i {
  color: var(--brand-success);
  font-size: 1.25rem;
}

/* Modern pricing section */
.pricing-section {
  padding: var(--space-24) 0;
  background: var(--surface-primary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-16);
}

.pricing-card {
  background: var(--surface-card);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  position: relative;
  transition: all var(--transition);
}

.pricing-card.featured {
  border-color: var(--brand-primary);
  background: var(--gradient-glass);
  backdrop-filter: var(--backdrop-blur);
  transform: scale(1.05);
}


.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-2);
}

.plan-price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--brand-primary);
  margin-bottom: var(--space-2);
}

.plan-price small {
  font-size: 1rem;
  color: var(--gray-600);
  font-weight: 400;
}

/* =========================
   HOME PAGE PRICING CARDS
   ========================= */

/* Modern pricing cards for home page */
.pricing-display .plan-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--bs-body-color, #212529);
  margin-bottom: 0.5rem;
  line-height: 1;
}

[data-bs-theme="dark"] .pricing-display .plan-price {
  color: var(--bs-body-color, #ffffff);
}

/* Enhanced card styling for home page plans */
.card.border-0.shadow-sm {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
  transition: all 0.3s ease;
  border-radius: 16px !important;
  background: var(--bs-body-bg, #ffffff);
}

[data-bs-theme="dark"] .card.border-0.shadow-sm {
  background: var(--bs-dark, #212529) !important;
  border-color: var(--bs-border-color, #495057) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3) !important;
}

.card.border-0.shadow-sm:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15) !important;
  border-color: var(--bs-primary, #0d6efd) !important;
}

[data-bs-theme="dark"] .card.border-0.shadow-sm:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.4) !important;
  border-color: #6ea8fe !important;
}

/* Enhanced card headers */
.card-header.bg-brand-secondary,
.card-header.bg-brand-primary {
  border-radius: 14px 14px 0 0 !important;
  border: none !important;
  padding: 1.25rem !important;
  font-weight: 600;
}

.card-header.bg-brand-secondary {
  background: linear-gradient(135deg, var(--brand-secondary, #fd7e14) 0%, #e67e22 100%) !important;
}

.card-header.bg-brand-primary {
  background: linear-gradient(135deg, var(--brand-primary, #0d6efd) 0%, #0b5ed7 100%) !important;
}

/* Enhanced card body */
.card-body {
  background: var(--bs-body-bg, #ffffff);
  color: var(--bs-body-color, #212529);
}

[data-bs-theme="dark"] .card-body {
  background: var(--bs-dark, #212529);
  color: var(--bs-body-color, #ffffff);
}

/* Plan section containers */
.bg-light.rounded-start-4,
.bg-light.rounded-end-4 {
  background: var(--bs-secondary-bg, #f8f9fa) !important;
  border: 2px solid var(--bs-border-color, #e9ecef);
  transition: all 0.3s ease;
}

[data-bs-theme="dark"] .bg-light.rounded-start-4,
[data-bs-theme="dark"] .bg-light.rounded-end-4 {
  background: var(--bs-secondary-bg, #343a40) !important;
  border-color: var(--bs-border-color, #495057);
}

/* Plan section icons */
.plan-section-icon {
  width: 60px;
  height: 60px;
  background: var(--bs-body-bg, white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

[data-bs-theme="dark"] .plan-section-icon {
  background: var(--bs-dark, #212529);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Enhanced badges */
.badge.bg-warning.text-dark {
  background: linear-gradient(135deg, #ffc107 0%, #ffb347 100%) !important;
  color: #212529 !important;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
}

.badge.bg-success.text-white {
  background: linear-gradient(135deg, #198754 0%, #20c997 100%) !important;
  color: white !important;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
}

/* Enhanced check icons */
.check-icon-brand {
  color: var(--brand-primary, #0d6efd) !important;
}

/* Savings highlight */
.savings-highlight {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  border-radius: 12px;
  padding: 0.75rem;
  border: 1px solid #c3e6cb;
}

[data-bs-theme="dark"] .savings-highlight {
  background: linear-gradient(135deg, #0d4017 0%, #155724 100%);
  border-color: #155724;
}

/* Enhanced buttons */
.btn-brand-primary {
  background: linear-gradient(135deg, var(--brand-primary, #0d6efd) 0%, #0b5ed7 100%);
  border: none;
  color: white;
  font-weight: 600;
  border-radius: 12px;
  padding: 0.875rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-brand-primary:hover {
  background: linear-gradient(135deg, #0b5ed7 0%, #0a58ca 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
  color: white;
}

/* Feature lists styling */
.list-unstyled li {
  color: var(--bs-body-color, #212529);
  font-size: 0.95rem;
}

[data-bs-theme="dark"] .list-unstyled li {
  color: var(--bs-body-color, #ffffff);
}

.plan-description {
  color: var(--gray-600);
  margin-bottom: var(--space-6);
}

.plan-features {
  list-style: none;
  padding: 0;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  color: var(--gray-700);
}

.plan-features li i {
  color: var(--brand-success);
  font-size: 1.25rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }
}

/* =========================
   MODERN FOOTER
   ========================= */

.public-footer {
  background: var(--gray-100);
  color: var(--gray-600);
  padding: var(--space-20) 0 var(--space-8);
  position: relative;
  overflow: hidden;
}

.public-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-primary);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer-section h4 {
  color: var(--gray-800);
  font-weight: 700;
  margin-bottom: var(--space-6);
  font-size: 1.125rem;
}

.footer-brand-logo {
  height: 40px;
  width: auto;
  margin-bottom: var(--space-4);
}

.footer-description {
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.footer-social {
  display: flex;
  gap: var(--space-4);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--gray-400);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--brand-primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--space-3);
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: var(--space-8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-bottom p {
  color: var(--gray-500);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: var(--space-6);
}

.footer-legal a {
  color: var(--gray-500);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--gray-300);
}

/* Responsive footer */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* =========================
   UTILITY CLASSES
   ========================= */

/* Text utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--brand-primary); }
.text-secondary { color: var(--brand-secondary); }
.text-success { color: var(--success); }
.text-warning { color: var(--warning); }
.text-error { color: var(--error); }

.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }

.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

/* Spacing utilities */
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }
.mt-16 { margin-top: var(--space-16); }

.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }
.mb-16 { margin-bottom: var(--space-16); }

.p-4 { padding: var(--space-4); }
.p-6 { padding: var(--space-6); }
.p-8 { padding: var(--space-8); }

/* Display utilities */
.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }

.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

/* Border radius */
.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }
.rounded-full { border-radius: var(--radius-full); }

/* Background utilities */
.bg-primary { background: linear-gradient(135deg, #b20b11 0%, #950a0f 100%) !important; }
.bg-secondary { background: var(--brand-secondary); }
.bg-white { background: var(--white); }
.bg-gray-50 { background: var(--gray-50); }
.bg-gray-100 { background: var(--gray-100); }

/* Shadow utilities */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow { box-shadow: var(--shadow); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

/* =========================
   ANIMATIONS AND TRANSITIONS
   ========================= */

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ── City Pages ──────────────────────────────────────────────────────── */
.city-page-shell {
  position: relative;
}

/* Hero */
.city-page-hero {
  position: relative;
  padding: 7.5rem 0 2rem;
  overflow: hidden;
}

.city-page-hero--compact {
  padding: 6.5rem 0 1.75rem;
}

.city-page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.city-page-orb {
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(240, 161, 44, 0.18), rgba(250, 235, 203, 0.04));
  filter: blur(2px);
}

.city-page-orb-1 {
  width: 200px;
  height: 200px;
  top: 80px;
  left: -40px;
}

.city-page-orb-2 {
  width: 160px;
  height: 160px;
  top: 160px;
  right: 6%;
}

.city-page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-secondary);
}

.city-page-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.city-page-title--compact {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 0.8rem;
}

.city-page-lead {
  max-width: 860px;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin: 0;
}

.city-page-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.city-page-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(224, 209, 189, 0.75);
  color: var(--gray-700);
  font-size: 0.88rem;
  font-weight: 600;
}

.city-page-pill-primary {
  background: rgba(240, 161, 44, 0.14);
  color: #8b5d13;
}

/* Main content */
.city-page-main {
  padding: 1.5rem 0 4rem;
}

.city-page-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.82fr);
  gap: 1.5rem;
  align-items: start;
}

.city-page-section-label {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-secondary);
}

.city-page-section-header {
  margin-bottom: 1rem;
}

.city-page-section-header--tight {
  margin-bottom: 1.15rem;
}

.city-page-section-header h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  color: var(--gray-900);
  margin-bottom: 0.6rem;
}

.city-page-section-header p {
  max-width: 760px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Company cards */
.city-page-company-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 1.1rem 1.25rem;
  height: 100%;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.city-page-company-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.09);
  transform: translateY(-2px);
}

.city-page-aside {
  position: sticky;
  top: 6.75rem;
}

.city-page-merchant-card {
  background: linear-gradient(180deg, rgba(255, 252, 245, 0.98), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(224, 209, 189, 0.65);
  box-shadow: 0 12px 36px rgba(46, 35, 26, 0.08);
  border-radius: 22px;
  padding: 1.4rem;
}

.city-page-merchant-card h2 {
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  margin-bottom: 0.65rem;
}

.city-page-merchant-card > p {
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.city-page-merchant-features {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.city-page-merchant-feature {
  display: grid;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(224, 209, 189, 0.5);
}

.city-page-merchant-feature strong {
  font-size: 0.93rem;
  color: var(--gray-900);
}

.city-page-merchant-feature span {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.55;
}

.city-page-primary-btn-full {
  width: 100%;
}

.city-page-merchant-note {
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  color: var(--gray-500);
  text-align: center;
}

.city-page-company-logo-wrap {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
}

.city-page-company-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.city-page-company-initial {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  background: rgba(240, 161, 44, 0.15);
  color: #8b5d13;
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.city-page-company-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.city-page-company-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.city-page-company-category {
  font-size: 0.82rem;
  color: var(--brand-secondary);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.city-page-company-address {
  font-size: 0.82rem;
  color: var(--gray-600);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.city-page-menu-btn {
  display: inline-block;
  padding: 0.45rem 1rem;
  border-radius: 10px;
  background: var(--brand-primary);
  color: #1a0e00;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.15s;
  align-self: flex-start;
  margin-top: auto;
}

.city-page-menu-btn:hover {
  opacity: 0.88;
  color: #1a0e00;
}

/* Empty state */
.city-page-empty-state {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(224, 209, 189, 0.55);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.city-page-empty-state--left {
  max-width: none;
  margin: 0;
  text-align: left;
}

.city-page-empty-kicker {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-secondary);
}

.city-page-empty-state h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: var(--gray-900);
}

.city-page-empty-state p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Bottom CTA */
.city-page-bottom-cta {
  margin-top: 2rem;
}

.city-page-bottom-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(224, 209, 189, 0.55);
  box-shadow: 0 8px 32px rgba(46, 35, 26, 0.07);
  border-radius: 24px;
  padding: 1.75rem 2rem;
}

.city-page-bottom-card--compact {
  padding: 1.35rem 1.5rem;
}

.city-page-bottom-label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-secondary);
}

.city-page-bottom-card h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.city-page-bottom-card p {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.6;
}

.city-page-bottom-actions {
  flex-shrink: 0;
}

.city-page-primary-btn {
  border: none;
  box-shadow: 0 8px 20px rgba(240, 161, 44, 0.28);
}

@media (max-width: 991px) {
  .city-page-content-grid {
    grid-template-columns: 1fr;
  }

  .city-page-aside {
    position: static;
    top: auto;
  }

  .city-page-bottom-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .city-page-hero--compact {
    padding: 5.5rem 0 1.25rem;
  }

  .city-page-company-card {
    border-radius: 14px;
    padding: 0.9rem 1rem;
  }

  .city-page-merchant-card,
  .city-page-merchant-feature,
  .city-page-bottom-card,
  .city-page-empty-state {
    border-radius: 20px;
    padding: 1.25rem;
  }

  .city-page-bottom-card {
    padding: 1.25rem;
  }
}

/* ── Cities Listing Page (/cidades) ────────────────────────────────── */
.cities-page-hero {
  padding: 6.5rem 0 1.75rem;
}

.cities-page-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin-bottom: 0.8rem;
}

.cities-page-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.cities-page-body {
  padding-bottom: 4rem;
}

.cities-state-group {
  margin-bottom: 2.5rem;
}

.cities-state-heading {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f0f0f0;
}

.cities-state-uf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: rgba(240, 161, 44, 0.14);
  color: #8b5d13;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.6rem;
}

.cities-city-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e9ecef;
  text-decoration: none;
  transition: background 0.12s, border-color 0.12s, transform 0.12s;
}

.cities-city-card:hover {
  background: rgba(240, 161, 44, 0.07);
  border-color: rgba(240, 161, 44, 0.45);
  transform: translateY(-1px);
}

.cities-city-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cities-city-count {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: #8b5d13;
  background: rgba(240, 161, 44, 0.14);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}

.cities-empty {
  padding: 3rem 0;
  text-align: center;
  color: var(--gray-600);
}

@media (max-width: 767px) {
  .cities-page-hero {
    padding-top: 5.5rem;
  }

  .cities-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Scroll animations */
.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Auto-scroll highlight animation for better UX */
.auto-scroll-highlight {
  position: relative;
  animation: autoScrollHighlight 1.5s ease-out;
}

@keyframes autoScrollHighlight {
  0% {
    background-color: rgba(234, 29, 44, 0.1);
    transform: scale(1.02);
  }
  50% {
    background-color: rgba(234, 29, 44, 0.05);
  }
  100% {
    background-color: transparent;
    transform: scale(1);
  }
}

/* Mobile-specific improvements for smooth scrolling */
@media (max-width: 768px) {
  .modal-content,
  .product-modal-body,
  .modern-modal .product-modal-body {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }

  /* Ensure proper spacing between option groups on mobile */
  .option-group {
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }

  .option-group + .option-group {
    margin-top: 1.5rem;
  }

  /* Pizza visual container spacing */
  .pizza-visual-container {
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
  }

  .pizza-visual-container + .option-group {
    margin-top: 1.5rem;
  }
}

.animate-slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

.animate-slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

.animate-scale-in {
  animation: scaleIn 0.4s ease-out;
}

/* Hover effects */
.hover-lift:hover {
  transform: translateY(-4px);
  transition: var(--transition);
}

.hover-scale:hover {
  transform: scale(1.05);
  transition: var(--transition);
}

/* =========================
   FORM IMPROVEMENTS
   ========================= */

.form-modern {
  background: var(--surface-card);
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.form-group-modern {
  margin-bottom: var(--space-6);
}

.form-label-modern {
  display: block;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: var(--space-2);
  font-size: 0.875rem;
}

.form-input-modern {
  width: 100%;
  padding: var(--space-4);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
}

.form-input-modern:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-input-modern::placeholder {
  color: #9ca3af;
  opacity: 0.85;
}

/* =========================
   RESPONSIVE NAVIGATION IMPROVEMENTS
   ========================= */

@media (max-width: 768px) {
  .navbar-container {
    height: 70px;
  }

  .navbar-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 1.078);
    backdrop-filter: var(--backdrop-blur);
    padding: var(--space-8);
    transform: translateX(-100%);
    transition: var(--transition);
  }

  .navbar-menu.active {
    transform: translateX(0);
  }

  .navbar-nav {
    flex-direction: column;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
  }

  .nav-link {
    font-size: 1.125rem;
    padding: var(--space-4) var(--space-6);
  }
}

/* =========================
   ADDITIONAL MODERN COMPONENTS
   ========================= */

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Modern loading states */
.loading-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray-200);
  border-top: 2px solid var(--brand-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Modern toast notifications */
.toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-6);
  box-shadow: var(--shadow-xl);
  z-index: 1100;
  transition: var(--transition);
  text-align: center;
  min-width: 250px;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

.toast.success {
  border-left: 4px solid var(--success);
}

.toast.error {
  border-left: 4px solid var(--error);
}

/* Modern modal overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: var(--backdrop-blur);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
}

.modal-content {
  background: var(--white);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-2xl);
  animation: scaleIn 0.3s ease-out;
}

/* Improved accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles for better accessibility */
.focus-visible:focus {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .no-print {
    display: none !important;
  }

  .print-only {
    display: block !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --gray-100: #f0f0f0;
    --gray-200: #e0e0e0;
    --gray-300: #c0c0c0;
    --gray-400: #808080;
    --gray-500: #606060;
    --gray-600: #404040;
    --gray-700: #202020;
    --gray-800: #101010;
    --gray-900: #000000;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Dark mode support (future-ready) */
@media (prefers-color-scheme: dark) {
  .auto-dark {
    --surface-primary: var(--gray-900);
    --surface-secondary: var(--gray-800);
    --surface-card: var(--gray-800);
    color: var(--gray-100);
  }
}

/* =========================
   LEGAL PAGES STYLES
   ========================= */

/* Legal pages container */
.legal-page {
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  min-height: 100vh;
  padding-top: 60px; /* Compensar a navbar fixa */
}

/* Legal page header */
.legal-header {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  color: var(--white);
  padding: 3rem 0;
  margin-bottom: 2rem;
}

.legal-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.legal-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 0;
}

/* Legal content sections */
.legal-content {
  padding: 2rem 0;
}

.legal-section {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}

.legal-section h2 {
  color: var(--brand-primary);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--gray-100);
  padding-bottom: 0.5rem;
}

.legal-section h3 {
  color: var(--gray-700);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem 0;
}

.legal-section p {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.legal-section ul {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.legal-section li {
  margin-bottom: 0.5rem;
}

/* Legal page footer */
.legal-footer {
  background: var(--white);
  padding: 2rem 0;
  margin-top: 3rem;
  border-top: 1px solid var(--gray-200);
}

/* Breadcrumb styling for legal pages */
.legal-page .breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 1rem;
}

.legal-page .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
}

.legal-page .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive adjustments for legal pages */
@media (max-width: 768px) {
  .legal-title {
    font-size: 2rem;
  }

  .legal-section {
    padding: 1.5rem;
  }

  .legal-footer .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
}

/* =========================
   REGISTRATION FORM VALIDATION STYLES
   ========================= */

/* Auth container for registration page */
.auth-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  display: flex;
  align-items: center;
  padding: 20px 0;
}

/* Form validation styling improvements */
.form-control.is-invalid {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.form-control.is-valid {
  border-color: #198754 !important;
  box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25) !important;
}

.form-check-input.is-invalid {
  border-color: #dc3545 !important;
}

.invalid-feedback {
  display: none !important;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #dc3545;
}

.invalid-feedback.d-block,
.form-control.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-feedback,
.is-invalid + .invalid-feedback,
.show-error {
  display: block !important;
}

/* Plan selector styling for registration */
.plan-selector {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plan-radio {
  position: relative;
  display: block;
  padding: 24px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.plan-radio:hover {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.plan-radio.recommended {
  border-color: #059669;
  background: linear-gradient(145deg, #ffffff 0%, #f0fdf4 100%);
}

.plan-radio input[type="radio"] {
  position: absolute;
  top: 20px;
  right: 20px;
  margin: 0;
}

.plan-radio input[type="radio"]:checked + .plan-content,
.plan-radio:has(input[type="radio"]:checked) {
  border-color: #f0a12c;
  background: linear-gradient(145deg, #ffffff 0%, #fffbf0 100%);
  box-shadow: 0 12px 40px rgba(244, 173, 45, 0.2), 0 0 0 1px rgba(244, 173, 45, 0.3);
  transform: translateY(-3px);
}

.plan-content {
  margin-right: 40px;
}


.plan-name {
  font-size: 18px;
  font-weight: 600;
  color: #212529;
}

.recommended-badge {
  background: #198754;
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-price {
  margin-bottom: 6px;
}

.plan-price .price {
  font-size: 24px;
  font-weight: 700;
  color: #212529;
}

.plan-price .period {
  font-size: 14px;
  color: #6c757d;
  margin-left: 4px;
}

.plan-description {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.4;
}

/* Responsive adjustments for registration */
@media (max-width: 768px) {
  .plan-radio {
    padding: 16px;
  }

  .plan-content {
    margin-right: 35px;
  }

  .plan-radio input[type="radio"] {
    top: 16px;
    right: 16px;
  }

  .plan-name {
    font-size: 16px;
  }

  .plan-price .price {
    font-size: 20px;
  }
}

/* =========================
   PUBLIC LAYOUT STYLES
   ========================= */

/* Custom styles for improved navbar - NOTE: .navbar-modern styles take precedence */
.navbar:not(.navbar-modern) {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: translateY(-2px);
}

.navbar-brand .bg-gradient {
  box-shadow: 0 2px 8px rgba(13, 110, 253, 0.3);
  transition: all 0.3s ease;
}

.navbar-brand:hover .bg-gradient {
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.4);
  transform: scale(1.05);
}

.nav-link {
  color: #6c757d !important;
  transition: all 0.3s ease;
  border-radius: 8px;
  position: relative;
}

.nav-link:hover {
  color: #b20b11 !important;
  background-color: rgba(178, 11, 17, 0.1);
  transform: translateY(-1px);
}

.nav-link::after {
  display: none;
}

.btn-link {
  transition: all 0.3s ease;
  border-radius: 8px;
}

.btn-link:hover {
  background-color: rgba(13, 110, 253, 0.1);
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #b20b11 0%, #950a0f 100%);
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #950a0f 0%, #7a080c 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(178, 11, 17, 0.4) !important;
}


@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

@media (max-width: 991.98px) {
  .navbar-nav {
    margin-bottom: 1rem;
    text-align: center;
  }

  .flex-column {
    width: 100%;
  }

  .btn {
    margin-bottom: 0.5rem;
  }

  .nav-link::after {
    display: none;
  }
}

/* =========================
   BUTTON SIZE IMPROVEMENTS
   Melhorando a usabilidade dos botões pequenos
   ========================= */

/* Melhorando o tamanho dos botões pequenos para melhor usabilidade */
.btn-sm {
  padding: 0.75rem 1.25rem !important; /* 12px 20px */
  font-size: 0.9rem !important;
  min-height: 44px !important; /* Tamanho mínimo recomendado para touch */
  line-height: 1.4 !important;
  border-radius: 0.75rem !important;
}

/* Botões de ação em tabelas e listas - melhor para toque */
.btn-sm.btn-outline-primary,
.btn-sm.btn-outline-secondary,
.btn-sm.btn-outline-danger,
.btn-sm.btn-outline-warning,
.btn-sm.btn-outline-success {
  min-width: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
}

/* Botões com apenas ícones - tamanho quadrado para melhor touch target */
.btn-sm i:only-child {
  font-size: 1rem !important;
}

/* Botões pequenos com width 100% - mantém responsividade */
.btn-sm.w-100 {
  min-height: 48px !important;
  padding: 0.75rem 1rem !important;
}

/* Botões em dispositivos móveis - touch-friendly */
@media (max-width: 768px) {
  .btn-sm {
    padding: 0.75rem 1rem !important;
    min-height: 48px !important;
    font-size: 0.95rem !important;
  }

  /* Botões pequenos em mobile ficam um pouco maiores */
  .btn-sm.w-100 {
    min-height: 52px !important;
    font-size: 1rem !important;
  }

  /* Ações de tabela em mobile - mais espaçamento */
  .btn-sm.btn-outline-primary,
  .btn-sm.btn-outline-secondary,
  .btn-sm.btn-outline-danger,
  .btn-sm.btn-outline-warning,
  .btn-sm.btn-outline-success {
    min-width: 48px !important;
    min-height: 48px !important;
  }
}

/* Melhorias para botões circulares pequenos */
.btn-sm.rounded-circle {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

@media (max-width: 768px) {
  .btn-sm.rounded-circle {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
  }
}

/* Melhorias para dropdowns pequenos */
.btn-sm.dropdown-toggle {
  min-width: 48px !important;
  padding-right: 1.5rem !important;
}

/* Estados de hover melhorados para botões pequenos */
.btn-sm:hover {
  transform: translateY(-1px) !important;
  transition: all 0.2s ease !important;
}

.btn-sm:active {
  transform: translateY(0) !important;
}

/* Focus states melhorados para acessibilidade */
.btn-sm:focus,
.btn-sm:focus-visible {
  outline: 2px solid var(--bs-primary) !important;
  outline-offset: 2px !important;
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25) !important;
}

/* =========================
   HOME PAGE STYLES
   ========================= */

/* Home page specific styles */
.min-vh-75 {
  min-height: 75vh;
}

.card:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  transition: transform 0.2s ease;
}

.bg-purple {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

/* =========================
   BASIC PLAN LANDING PAGE
   ========================= */

.bg-gradient-primary {
  background: linear-gradient(135deg, #ae0b11 0%, #f5b857 100%);
  position: relative;
  overflow: hidden;
}

.bg-gradient-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, transparent 100%);
  pointer-events: none;
}

.modern-hero-section .container {
  position: relative;
  z-index: 2;
}

.modern-hero-section::after {
  content: "";
  position: absolute;
  top: -160px;
  right: -140px;
  width: 520px;
  height: 520px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.35) 0%, transparent 60%),
    radial-gradient(circle at bottom, rgba(255, 255, 255, 0.18) 0%, transparent 65%);
  opacity: 0.55;
  filter: blur(0px);
  pointer-events: none;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.hero-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.hero-title .text-warning {
  color: #fbbf24 !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
  font-weight: 300;
  line-height: 1.6;
  max-width: 90%;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-badge i {
  font-size: 1.1rem;
  color: #fbbf24;
}

.hero-cta-group .hero-cta-primary {
  background: linear-gradient(135deg, #facc15 0%, #f97316 100%);
  border: none;
  color: #1f2937;
  box-shadow: 0 14px 30px rgba(251, 191, 36, 0.32);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-cta-group .hero-cta-primary:hover,
.hero-cta-group .hero-cta-primary:focus {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(249, 115, 22, 0.4);
  color: #111827;
}

.hero-cta-group .hero-cta-secondary {
  border-color: rgba(255, 255, 255, 0.65) !important;
  color: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(6px);
}

.hero-cta-group .hero-cta-secondary:hover,
.hero-cta-group .hero-cta-secondary:focus {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.85) !important;
  color: #ffffff !important;
}

.text-white-90 {
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero-icon i {
  color: #fbbf24 !important;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
}

.hero-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-benefit-card {
  width: 100%;
  height: 100%;
  padding: 1.15rem 1.35rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hero-benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.25);
}

.hero-benefit-card p {
  color: rgba(255, 255, 255, 0.85) !important;
}

.hero-benefits .col {
  display: flex;
}

.hero-benefits .col > .hero-benefit-card {
  flex: 1;
}

#signup-form {
  scroll-margin-top: 120px;
}

@media (max-width: 575.98px) {
  .hero-subtitle {
    max-width: 100%;
  }

  .hero-cta-group {
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-benefit-card {
    padding: 1rem;
  }
}

.hero-icon i {
  color: #fbbf24 !important;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
}

.hero-benefits {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-cta-primary {
  background: linear-gradient(135deg, #f0a12c 0%, #f5b857 100%);
  border: none;
  box-shadow: 0 8px 32px rgba(244, 173, 45, 0.4);
  transition: all 0.3s ease;
}

.hero-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(244, 173, 45, 0.5);
  background: linear-gradient(135deg, #f5b857 0%, #f0a12c 100%);
}

.hero-cta-secondary {
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.hero-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0a12c, #f5b857);
  border: 2px solid rgba(255, 255, 255, 0.3);
  margin-left: -8px;
}

.hero-avatar:first-child {
  margin-left: 0;
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.75);
}

.text-white-90 {
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-social-proof {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsividade da hero section */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .hero-benefits {
    padding: 16px;
  }

  .hero-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
}

/* Signup Card Modernizado */
.signup-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.signup-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-warning), var(--brand-primary));
}

.signup-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.signup-benefits {
  background: #f8fafc;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #e2e8f0;
}

.signup-form-modern .form-control {
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #ffffff;
}

.signup-form-modern .form-control:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
  background: #ffffff;
}

.signup-cta {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.3);
  transition: all 0.3s ease;
  color: white;
}

.signup-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.4);
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  color: white;
}

.signup-footer a {
  color: #6366f1;
}

/* Seção Geral */

.signup-form-container {
  position: relative;
  z-index: 10;
}

.signup-form {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.signup-form h3 {
  font-size: 1.4rem;
}

.signup-form-inner .form-control {
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.signup-form-inner .form-control:focus {
  border-color: #b20b11;
  box-shadow: 0 0 0 0.2rem rgba(178, 11, 17, 0.15);
  transform: translateY(-1px);
}

.signup-form-inner .form-control:hover {
  border-color: #ced4da;
}

.signup-form-inner .form-label {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.benefit-card, .feature-card, .challenge-card, .business-type-card, .testimonial-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.benefit-card:hover, .feature-card:hover, .testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}

.step-card {
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-circle {
  box-shadow: 0 4px 15px rgba(178, 11, 17, 0.3);
}

.icon-circle {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.accordion-button:not(.collapsed) {
  background-color: #f8f9fa;
  color: #b20b11;
  box-shadow: none;
}

.accordion-button {
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  border: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-item {
  border-radius: 0.5rem !important;
  overflow: hidden;
}

.stats-row .display-6 {
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.feature-card .feature-content h5 {
  font-size: 1.1rem;
}

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

.final-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(255, 193, 7, 0.4);
}

/* Melhorias de espaçamento */
.py-5 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.display-5 {
  font-weight: 700;
  line-height: 1.2;
}

.lead {
  font-weight: 400;
  line-height: 1.6;
}

/* Responsividade aprimorada */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem !important;
  }

  .display-5 {
    font-size: 1.8rem !important;
  }

  .signup-form {
    margin-top: 2rem;
    padding: 2rem !important;
  }

  .signup-form h3 {
    font-size: 1.2rem;
  }

  .hero-benefits .col-md-6 {
    margin-bottom: 0.5rem;
  }

  .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .benefit-item {
    font-size: 0.9rem;
  }

  .step-card {
    margin-bottom: 2rem;
  }

  .feature-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem !important;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }

  .btn-lg {
    padding: 0.8rem 2rem !important;
    font-size: 1rem !important;
  }

  .signup-form {
    padding: 1.5rem !important;
  }

  .hero-benefits .benefit-item {
    justify-content: center;
    text-align: center;
  }

  .icon-circle {
    width: 60px !important;
    height: 60px !important;
  }

  .icon-circle i {
    font-size: 1.3rem !important;
  }
}

@media (max-width: 768px) {
  .display-4 {
    font-size: 2.5rem;
  }

  .lead {
    font-size: 1.1rem;
  }
}
p {
  font-size: 1.4rem;
}

/* =========================
   MODERN PRICING TOGGLE
   ========================= */

.billing-toggle {
  background: transparent !important;
  color: var(--gray-600) !important;
  transition: all 0.3s ease;
}

.billing-toggle.active {
  background: white !important;
  color: var(--gray-900) !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.billing-toggle:hover:not(.active) {
  color: var(--gray-800) !important;
}

/* =========================
   UNIFIED PLANS SECTION
   ========================= */

/* Visual separation between plan types using project colors */
.bg-light.rounded-start-4 {
  border-top-left-radius: 1.5rem !important;
  border-bottom-left-radius: 1.5rem !important;
  background-color: #f8f9fa !important;
}

.bg-light.rounded-end-4 {
  border-top-right-radius: 1.5rem !important;
  border-bottom-right-radius: 1.5rem !important;
  background-color: #f8f9fa !important;
}

.border-end.border-2 {
  border-right: 2px solid #e9ecef !important;
}

/* Enhanced card hover effects for unified layout */
#plans .card {
  transition: all 0.3s ease;
  border-radius: 0.75rem;
}

#plans .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* menui brand color buttons */
.btn[style*="#f0a12c"] {
  transition: all 0.3s ease;
}

.btn[style*="#f0a12c"]:hover {
  background-color: #d12a36 !important;
  border-color: #d12a36 !important;
  transform: translateY(-1px);
}

/* Badge positioning for "Mais escolhido" */
.position-absolute.top-0.start-50.translate-middle {
  z-index: 10;
}

/* Improved toggle styling with brand colors */
.billing-toggle {
  background: transparent !important;
  color: var(--gray-600) !important;
  transition: all 0.3s ease;
}

.billing-toggle.active {
  background: #f0a12c !important;
  color: white !important;
  box-shadow: 0 2px 8px rgba(240, 161, 44, 0.3);
}

.billing-toggle:hover:not(.active) {
  color: #f0a12c !important;
  background: rgba(240, 161, 44, 0.1) !important;
}

/* Remove animation from plan badges for better UX */
.card .badge {
  animation: none;
}

/* Plan Feature Icons */
.plan-feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  min-width: 48px;
  min-height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

/* =========================
   PLAN SELECTION & COMPARISON STYLES
   ========================= */

/* Estilos para seleção de planos no formulário */
.plan-option {
  position: relative;
}

.plan-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.plan-radio-card {
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #e9ecef !important;
  background-color: #f8f9fa;
  margin-bottom: 0 !important;
}

.plan-radio-card:hover {
  border-color: #0d6efd !important;
  background-color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.plan-radio-card.selected {
  border-color: #0d6efd !important;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(13, 110, 253, 0.2);
}

.plan-radio-card.selected .fw-bold {
  color: #0d6efd !important;
}

.plan-radio-card.selected strong {
  color: #0d6efd !important;
}

/* Links de detalhes dentro dos cards de planos */
.plan-radio-card .btn-link {
  font-size: 0.75rem !important;
  color: #6c757d !important;
  margin-top: 0.25rem;
  white-space: nowrap;
}

.plan-radio-card .btn-link:hover {
  color: #0d6efd !important;
  transform: none !important;
}

.plan-radio-card .btn-link:hover i {
  transform: scale(1.1);
  transition: transform 0.2s ease;
}

/* Evitar que o clique no link selecione o radio */
.plan-radio-card .btn-link {
  position: relative;
  z-index: 10;
}

/* Cursor pointer para labels */
.cursor-pointer {
  cursor: pointer;
}

/* Estilo compacto para seleção de planos no formulário */
.signup-form .plan-option {
  margin-bottom: 0.5rem;
}

.signup-form .plan-radio-card {
  padding: 0.75rem !important;
  border-radius: 0.5rem !important;
}

/* Efeito de destaque para planos */
.plan-card.highlight-plan {
  animation: pulse-highlight 2s ease-in-out;
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.3) !important;
}

@keyframes pulse-highlight {
  0%, 100% {
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.3);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(13, 110, 253, 0.2);
  }
}

/* Estilos para comparação de planos */
.plan-comparison-section .plan-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
}

.plan-comparison-section .plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 1.5rem 4rem rgba(0,0,0,.2) !important;
}

.plan-comparison-section .plan-card.bg-white:hover {
  border-color: #0d6efd;
}

.plan-badge {
  z-index: 10;
}

.plan-badge .badge {
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,.1);
}

/* Header do plano com layout vertical */
.plan-header {
  flex-shrink: 0;
}

.plan-header h3 {
  font-size: 1.5rem;
  line-height: 1.2;
}

.plan-header p {
  font-size: 1rem;
  line-height: 1.4;
}

/* Seção de preço totalmente vertical */
.plan-price-section {
  display: block !important;
  text-align: center;
}

.price-display {
  display: block !important;
  width: 100%;
  text-align: center;
  margin-bottom: 0.75rem;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  display: inline;
}

.price-amount {
  font-size: 3rem;
  font-weight: bold;
  color: #333;
  line-height: 1;
  display: inline;
  margin: 0 0.25rem;
}

.price-period {
  font-size: 1.2rem;
  color: #334155;
  display: inline;
}

.price-description {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  line-height: 1.3;
}

/* Para cards de planos com gradient */
.plan-card[style*="gradient"] .price-currency,
.plan-card[style*="gradient"] .price-amount {
  color: white !important;
}

.plan-card[style*="gradient"] .price-period {
  color: rgba(255,255,255,0.92) !important;
}

.plan-card[style*="gradient"] .price-description {
  color: rgba(255,255,255,0.8) !important;
}

.plan-features {
  flex-grow: 1;
}

.plan-footer {
  flex-shrink: 0;
  margin-top: auto;
}

.plan-features ul li {
  font-size: 0.95rem;
  line-height: 1.4;
}

.plan-features .bi {
  font-size: 1.1rem;
}

.comparison-summary {
  border: 1px solid #e9ecef;
}

.summary-item {
  padding: 1.5rem;
}

.fs-7 {
  font-size: 0.875rem !important;
}

/* Modern Toggle Styles */
.btn-check:checked + .btn {
  background-color: #000 !important;
  border-color: #000 !important;
  color: white !important;
}

.btn-check + .btn {
  background-color: transparent;
  border-color: transparent;
  color: #6b7280;
}

.btn-check + .btn:hover {
  background-color: #f3f4f6;
  color: #374151;
}

/* Estilos para botões de alternância de preços */
.billing-toggle {
  background-color: transparent !important;
  border-color: transparent !important;
  color: #6b7280 !important;
  transition: all 0.3s ease;
}

.billing-toggle:hover {
  background-color: #f3f4f6 !important;
  color: #374151 !important;
}

.billing-toggle.active {
  background-color: #000 !important;
  border-color: #000 !important;
  color: white !important;
}

/* Animação suave para alternância de preços */
.price-display, .yearly-pricing, .monthly-pricing, .yearly-price, .monthly-price {
  transition: all 0.3s ease;
}

/* Garantir que elementos ocultos não ocupem espaço */
.d-none {
  display: none !important;
}

/* Destaque da economia nos planos anuais */
.savings-highlight {
  animation: savings-pulse 2s ease-in-out infinite;
}

.savings-highlight .badge {
  box-shadow: 0 2px 8px rgba(46, 213, 115, 0.3);
}

@keyframes savings-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

/* Responsividade melhorada */
@media (max-width: 992px) {
  .plan-comparison-section .row.g-4 {
    gap: 2rem !important;
  }
}

@media (max-width: 768px) {
  .plan-comparison-section .plan-card {
    margin-bottom: 2rem;
  }

  .plan-badge {
    position: relative !important;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    margin-bottom: 1rem;
    text-align: center;
  }

  .plan-header {
    padding-top: 1.5rem !important;
  }

  .price-amount {
    font-size: 2.5rem !important;
  }

  .price-currency {
    font-size: 1.25rem !important;
  }
}

@media (max-width: 576px) {
  .plan-header h3 {
    font-size: 1.25rem !important;
  }

  .price-amount {
    font-size: 2rem !important;
  }

  .price-currency {
    font-size: 1rem !important;
  }

  .price-period {
    font-size: 1rem !important;
  }
}

/* =========================
   PRODUCT SHOWCASE STYLES
   ========================= */

/* Enhanced Product Showcase Styles */
.product-showcase {
  position: relative;
}

.product-showcase .mb-6 {
  margin-bottom: 4rem !important;
}

.product-showcase .mt-6 {
  margin-top: 4rem !important;
}

/* Floating Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Screenshot Container Enhancements */
.screenshot-container {
  padding: 2rem;
}

.screenshot-container .bg-white {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-container:hover .bg-white {
  transform: rotate(0deg) !important;
  box-shadow: 0 2rem 4rem rgba(0,0,0,0.15) !important;
}

/* Enhanced Feature Cards */
.text-content .bg-white {
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.text-content .bg-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1) !important;
  border-color: rgba(13, 110, 253, 0.2);
}

/* Gradient Text Effect */
.gradient-text {
  background: linear-gradient(135deg, #1a1d29 0%, #4a5568 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Enhanced Badges */
.showcase-header-badge .badge {
  transition: all 0.3s ease;
}

.showcase-header-badge .badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(13, 110, 253, 0.2);
}

/* Call to Action Section */
.product-showcase .bg-white.rounded-4 {
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.product-showcase .bg-white.rounded-4:hover {
  transform: translateY(-5px);
  box-shadow: 0 2rem 4rem rgba(0,0,0,0.1) !important;
}

/* Responsive Improvements */
@media (max-width: 768px) {
  .product-showcase .screenshot-container {
    padding: 1rem;
  }

  .product-showcase .animate-float {
    display: none;
  }

  .product-showcase .bg-white[style*="rotate"] {
    transform: none !important;
  }

  .product-showcase .mb-6 {
    margin-bottom: 3rem !important;
  }

  .product-showcase .mt-6 {
    margin-top: 3rem !important;
  }
}

@media (max-width: 576px) {
  .product-showcase .display-4 {
    font-size: 2rem !important;
  }

  .product-showcase .lead {
    font-size: 1.1rem !important;
  }

  .product-showcase .display-6 {
    font-size: 1.2rem !important;
  }
}

/* =========================
   ADDITIONAL UTILITY CLASSES
   ========================= */

/* Button Font Size */
.btn-font-lg {
  font-size: 1.1rem;
}

/* Blur Effect */
.blur-effect {
  width: 340px;
  height: 620px;
  filter: blur(20px);
}

/* Plan Header */
.essencial-header {
  background-color: var(--brand-primary);
  padding-top: 2rem !important;
}

/* Infinity Icon Brand Color */
.infinity-icon-brand {
  color: var(--brand-primary);
}

/* Success Circle Icon */
.success-circle-icon {
  background-color: #198754;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
  width: 60px;
  height: 60px;
}

/* Section Background */
.essencial-section-bg {
  background: linear-gradient(135deg, #f8f9ff 0%, #fff5f5 50%, #fef7f7 100%);
  position: relative;
  overflow: hidden;
}

/* Background Blur Effects */
.bg-blur-overlay {
  opacity: 0.05;
}

.bg-blur-red {
  top: 10%;
  left: 5%;
  width: 100px;
  height: 100px;
  background: #f0a12c;
  border-radius: 50%;
  filter: blur(40px);
}

.bg-blur-blue {
  top: 60%;
  right: 10%;
  width: 80px;
  height: 80px;
  background: #667eea;
  border-radius: 50%;
  filter: blur(30px);
}

.bg-blur-yellow {
  bottom: 20%;
  left: 15%;
  width: 60px;
  height: 60px;
  background: #ffc107;
  border-radius: 50%;
  filter: blur(25px);
}

/* Section Title */
.section-title {
  color: #1a1d29;
}

/* Badge Border */
.badge-border {
  border: 1px solid rgba(240, 161, 44, 0.2);
}

/* Gradient Text Gold */
.gradient-text-gold {
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Lead Text */
.lead-text {
  color: #4a5568;
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Small Feature Icon */
.small-feature-icon {
  background-color: rgba(255, 193, 7, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  width: 32px;
  height: 32px;
}

.small-feature-icon-success {
  background-color: rgba(25, 135, 84, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  width: 32px;
  height: 32px;
}

.small-feature-icon-info {
  background-color: rgba(13, 202, 240, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  width: 32px;
  height: 32px;
}

/* Floating Icons */
.floating-icon-56 {
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
}

.floating-icon-64 {
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  min-width: 64px;
  min-height: 64px;
}

.floating-icon-70 {
  background-color: rgba(220, 53, 69, 0.1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
}

/* Animation Delays */
.animate-delay-0 {
  animation-delay: 0s;
}

.animate-delay-1 {
  animation-delay: 1s;
}

.animate-delay-2 {
  animation-delay: 2s;
}

.animate-delay-05 {
  animation-delay: 0.5s;
}

.animate-delay-15 {
  animation-delay: 1.5s;
}

/* Card Rotations */
.rotate-left {
  transform: rotate(-2deg);
}

.rotate-right {
  transform: rotate(2deg);
}

/* Section Titles and Text */
.section-subtitle {
  color: #1a1d29;
}

.section-description {
  line-height: 1.7;
}

/* CTA Card */
.cta-card {
  border: 1px solid rgba(240, 161, 44, 0.1);
}

/* Hero Feature Icons */
.hero-feature-icon {
  background-color: white;
  border-radius: 50%;
  padding: 0.75rem;
  margin-right: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

/* Brand Colors */
.text-brand-primary {
  color: var(--brand-primary) !important;
}

.bg-brand-primary {
  background-color: var(--brand-primary) !important;
}

.bg-brand-secondary {
  background-color: var(--brand-secondary) !important;
}

.btn-brand-primary {
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
  color: white;
  font-weight: bold;
}

.btn-brand-primary:hover {
  background-color: var(--brand-primary-dark);
  border-color: var(--brand-primary-dark);
}

/* =========================
   DARK MODE ENHANCEMENTS
   ========================= */

/* Section titles in dark mode */
[data-bs-theme="dark"] .section-title,
[data-bs-theme="dark"] .section-subtitle {
  color: var(--bs-body-color, #ffffff);
}

[data-bs-theme="dark"] .lead-text {
  color: var(--bs-secondary, #adb5bd);
}

/* Hero feature icons in dark mode */
[data-bs-theme="dark"] .hero-feature-icon {
  background-color: var(--bs-dark, #212529);
  border: 1px solid var(--bs-border-color, #495057);
}

/* Small feature icons in dark mode */
[data-bs-theme="dark"] .small-feature-icon {
  background-color: rgba(255, 193, 7, 0.2);
}

[data-bs-theme="dark"] .small-feature-icon-success {
  background-color: rgba(25, 135, 84, 0.25);
}

[data-bs-theme="dark"] .small-feature-icon-info {
  background-color: rgba(13, 202, 240, 0.2);
}

/* Floating icons in dark mode */
[data-bs-theme="dark"] .floating-icon-56,
[data-bs-theme="dark"] .floating-icon-64 {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

[data-bs-theme="dark"] .floating-icon-70 {
  background-color: rgba(220, 53, 69, 0.2);
}

/* CTA card in dark mode */
[data-bs-theme="dark"] .cta-card {
  border-color: rgba(240, 161, 44, 0.3);
  background: var(--bs-dark, #212529);
}

/* Enhanced text colors for dark mode */
[data-bs-theme="dark"] .text-muted {
  color: var(--bs-secondary, #adb5bd) !important;
}

[data-bs-theme="dark"] .text-dark {
  color: var(--bs-body-color, #ffffff) !important;
}

/* Badge border in dark mode */
[data-bs-theme="dark"] .badge-border {
  border-color: rgba(240, 161, 44, 0.4);
}

/* ==========================================
   INLINE STYLES CLEANUP
   ========================================== */

/* Floating Animation Circles */
.floating-circle {
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
}
.floating-circle.delay-0 { animation-delay: 0s; }
.floating-circle.delay-1 { animation-delay: 1s; }
.floating-circle.delay-2 { animation-delay: 2s; }
.floating-circle.delay-half { animation-delay: 0.5s; }
.floating-circle.delay-1-half { animation-delay: 1.5s; }

/* Rotated Card Elements */
.rotated-card-left { transform: rotate(-2deg); }
.rotated-card-right { transform: rotate(2deg); }

/* Feature Section Headings */
.feature-heading {
  color: #1a1d29;
}

/* Feature Text */
.feature-text {
  line-height: 1.7;
}

/* Feature Icon Circles */
.feature-icon-circle {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  min-width: 48px;
  min-height: 48px;
}

/* Special Bordered Card */
.special-bordered-card {
  border: 1px solid rgba(240, 161, 44, 0.1);
}

/* Additional Inline Styles Cleanup */
.warning-circle-large {
  width: 64px;
  height: 64px;
  min-width: 64px;
  min-height: 64px;
}

.benefits-icon-circle {
  width: 70px;
  height: 70px;
}

.benefits-icon-large {
  font-size: 1.8rem;
}

.step-circle {
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
}

.purple-gradient-section {
  background: linear-gradient(135deg, var(--brand-primary) 0%, #c42c30 50%, var(--brand-warning) 100%);
}

.dark-title {
  color: #2d3748 !important;
}

.dark-lead {
  color: #4a5568 !important;
  font-size: 1.2rem;
}

.card-height-180 {
  height: 180px;
}

.ice-cream-gradient {
  background: linear-gradient(45deg, rgba(255,215,0,0.95), rgba(255,140,0,0.95));
}

.cafe-gradient {
  background: linear-gradient(45deg, rgba(74,144,226,0.95), rgba(50,130,246,0.95));
}

.emoji-large {
  font-size: 3rem;
}

/* Menu Type Gradients */
.pizza-gradient {
  background: linear-gradient(45deg, rgba(255,140,66,0.95), rgba(255,107,53,0.95));
}

.desserts-gradient {
  background: linear-gradient(45deg, rgba(233,30,99,0.95), rgba(194,24,91,0.95));
}

.barbecue-gradient {
  background: linear-gradient(45deg, rgba(220,38,38,0.95), rgba(185,28,28,0.95));
}

.acai-gradient {
  background: linear-gradient(45deg, rgba(139,92,246,0.95), rgba(124,58,237,0.95));
}

.healthy-gradient {
  background: linear-gradient(45deg, rgba(34,197,94,0.95), rgba(22,163,74,0.95));
}

.seafood-gradient {
  background: linear-gradient(45deg, rgba(14,165,233,0.95), rgba(2,132,199,0.95));
}

.bakery-gradient {
  background: linear-gradient(45deg, rgba(251,146,60,0.95), rgba(245,101,101,0.95));
}

/* Special Buttons */
.btn-purple-custom {
  background: #8B5CF6;
  border-color: #8B5CF6;
}

/* Custom Text Styles */
.custom-description {
  color: #2d3748 !important;
  font-weight: 500;
}

/* =========================
   MODERN PLANS SECTION
   ========================= */

/* Plan Cards */
.plan-card {
  background: var(--bs-body-bg, #ffffff);
  border: 2px solid var(--bs-border-color, #e9ecef);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

[data-bs-theme="dark"] .plan-card {
  background: var(--bs-dark, #212529);
  border-color: var(--bs-border-color, #495057);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--bs-primary, #0d6efd);
}

[data-bs-theme="dark"] .plan-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--bs-primary, #6ea8fe);
}

/* Featured Plan */
.plan-card.plan-featured {
  border-color: #ffc107;
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.25);
  background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
}

[data-bs-theme="dark"] .plan-card.plan-featured {
  border-color: #ffc107;
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
}

.plan-card.plan-featured:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(255, 193, 7, 0.3);
}

/* Coming Soon Plan */
.plan-card.plan-coming-soon {
  opacity: 0.7;
  border-style: dashed;
}

.plan-card.plan-coming-soon:hover {
  transform: translateY(-4px);
  opacity: 0.8;
}

/* Plan Badge */
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1.25rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

/* Plan Header */
.plan-header {
  text-align: center;
  margin-bottom: 2rem;
}

.plan-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bs-primary, #0d6efd), var(--bs-info, #0dcaf0));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
  box-shadow: 0 8px 16px rgba(13, 110, 253, 0.2);
}

[data-bs-theme="dark"] .plan-icon {
  background: linear-gradient(135deg, var(--bs-primary, #6ea8fe), var(--bs-info, #39d0e8));
  box-shadow: 0 8px 16px rgba(110, 168, 254, 0.3);
}

.plan-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bs-body-color, #212529);
  margin-bottom: 0.5rem;
}

.plan-subtitle {
  color: var(--bs-secondary, #6c757d);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Plan Pricing */
.plan-pricing {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--bs-border-color, #e9ecef);
}

[data-bs-theme="dark"] .plan-pricing {
  border-bottom-color: var(--bs-border-color, #495057);
}

.price-display {
  margin-bottom: 1rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--bs-body-color, #212529);
  line-height: 1;
}

.price-period {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--bs-secondary, #6c757d);
}

.price-note {
  color: var(--bs-secondary, #6c757d);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.savings-badge {
  margin-top: 0.5rem;
}

/* Plan Features */
.plan-features {
  flex-grow: 1;
  margin-bottom: 2rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.feature-list li:last-child {
  margin-bottom: 0;
}

.feature-list li i {
  color: var(--bs-success, #198754);
  font-size: 1.1rem;
  margin-right: 0.75rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.feature-list li.feature-limit i {
  color: var(--bs-warning, #fd7e14);
}

.feature-list li.feature-highlight i {
  color: var(--bs-info, #0dcaf0);
}

.feature-list li span {
  color: var(--bs-body-color, #212529);
}

/* Plan Action */
.plan-action {
  margin-top: auto;
}

.plan-action .btn {
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.plan-action .btn:hover {
  transform: translateY(-2px);
}

/* Billing Toggle */
.billing-toggle {
  background: transparent;
  color: var(--bs-body-color, #212529);
  transition: all 0.2s ease;
}

.billing-toggle.active {
  background: var(--bs-primary, #0d6efd);
  color: white;
  box-shadow: 0 2px 4px rgba(13, 110, 253, 0.2);
}

[data-bs-theme="dark"] .billing-toggle {
  color: var(--bs-body-color, #ffffff);
}

[data-bs-theme="dark"] .billing-toggle.active {
  background: var(--bs-primary, #6ea8fe);
}

.billing-toggle:not(.active):hover {
  background: rgba(var(--bs-primary-rgb, 13, 110, 253), 0.1);
}

/* Guarantee Section */
.guarantee-section {
  padding: 2rem;
  border-radius: 16px;
  background: var(--bs-secondary-bg, #f8f9fa);
  border: 1px solid var(--bs-border-color, #e9ecef);
}

[data-bs-theme="dark"] .guarantee-section {
  background: var(--bs-secondary-bg, #343a40);
  border-color: var(--bs-border-color, #495057);
}

/* Responsive Design */
@media (max-width: 768px) {
  .plan-card {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .plan-icon {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
  }

  .price-amount {
    font-size: 2.5rem;
  }

  .feature-list li {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .plan-card {
    padding: 1rem;
  }

  .plan-badge {
    font-size: 0.8rem;
    padding: 0.375rem 1rem;
  }

  .price-amount {
    font-size: 2rem;
  }

  .guarantee-section {
    padding: 1rem;
  }
}

/* Animation */
.plan-card {
  animation: fadeInUp 0.6s ease-out backwards;
}

.plan-card:nth-child(1) {
  animation-delay: 0.1s;
}

.plan-card:nth-child(2) {
  animation-delay: 0.2s;
}

.plan-card:nth-child(3) {
  animation-delay: 0.3s;
}

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

/* =========================
   MODERN TEMPLATE - CHECKOUT STYLES
   ========================= */

/* Modern checkout order totals */
.order-totals .total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 1rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}

.order-totals .total-line:last-child {
  border-bottom: none;
  border-top: 2px solid var(--brand-primary);
  margin-top: 8px;
  padding-top: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
}

.order-totals .total-line:last-child span:last-child {
  color: var(--brand-primary);
  font-weight: 800;
  font-size: 1.3rem;
}

/* Discount line styling for modern template */
.order-totals .discount-line .discount-value {
  color: var(--brand-success);
  font-weight: 600;
  font-size: 1.05rem;
}

/* Delivery line styling */
.order-totals .delivery-line span:last-child {
  color: var(--gray-700);
  font-weight: 600;
}

/* Subtotal line styling */
.order-totals .subtotal-line {
  color: var(--gray-500);
  font-size: 0.95rem;
}

.order-totals .subtotal-line span:last-child {
  font-weight: 600;
  color: var(--gray-700);
}


/* ========================================
   RESPONSIVE TYPOGRAPHY OPTIMIZATION
   ======================================== */

/* Medium screens (1200px-1600px) - Reduced sizes for better proportion */
@media (min-width: 1200px) and (max-width: 1600px) {
  .display-1 { font-size: 3.2rem !important; }
  .display-2 { font-size: 2.8rem !important; }
  .display-3 { font-size: 2.4rem !important; }
  .display-4 { font-size: 2rem !important; }
  .display-5 { font-size: 1.6rem !important; }
  .display-6 { font-size: 1.4rem !important; }

  h1 { font-size: 2rem !important; }
  h2 { font-size: 1.6rem !important; }
  h3 { font-size: 1.4rem !important; }
  h4 { font-size: 1.2rem !important; }
  h5 { font-size: 1rem !important; }
  h6 { font-size: 0.9rem !important; }

  .fs-1 { font-size: 2rem !important; }
  .fs-2 { font-size: 1.6rem !important; }
  .fs-3 { font-size: 1.4rem !important; }
  .fs-4 { font-size: 1.2rem !important; }
  .fs-5 { font-size: 1rem !important; }
  .fs-6 { font-size: 0.9rem !important; }

  .lead { font-size: 1.1rem !important; }

  /* Reduced spacing for medium screens */
  .py-1 { padding-top: 0.2rem !important; padding-bottom: 0.2rem !important; }
  .py-2 { padding-top: 0.4rem !important; padding-bottom: 0.4rem !important; }
  .py-3 { padding-top: 0.8rem !important; padding-bottom: 0.8rem !important; }
  .py-4 { padding-top: 1.2rem !important; padding-bottom: 1.2rem !important; }
  .py-5 { padding-top: 2.4rem !important; padding-bottom: 2.4rem !important; }

  .px-1 { padding-left: 0.2rem !important; padding-right: 0.2rem !important; }
  .px-2 { padding-left: 0.4rem !important; padding-right: 0.4rem !important; }
  .px-3 { padding-left: 0.8rem !important; padding-right: 0.8rem !important; }
  .px-4 { padding-left: 1.2rem !important; padding-right: 1.2rem !important; }
  .px-5 { padding-left: 2.4rem !important; padding-right: 2.4rem !important; }

  .p-1 { padding: 0.2rem !important; }
  .p-2 { padding: 0.4rem !important; }
  .p-3 { padding: 0.8rem !important; }
  .p-4 { padding: 1.2rem !important; }
  .p-5 { padding: 2.4rem !important; }

  .mb-1 { margin-bottom: 0.2rem !important; }
  .mb-2 { margin-bottom: 0.4rem !important; }
  .mb-3 { margin-bottom: 0.8rem !important; }
  .mb-4 { margin-bottom: 1.2rem !important; }
  .mb-5 { margin-bottom: 2.4rem !important; }

  .mt-1 { margin-top: 0.2rem !important; }
  .mt-2 { margin-top: 0.4rem !important; }
  .mt-3 { margin-top: 0.8rem !important; }
  .mt-4 { margin-top: 1.2rem !important; }
  .mt-5 { margin-top: 2.4rem !important; }

  /* Container max-width adjustment for medium screens */
  .container { max-width: 1140px !important; }

  /* Card spacing optimization */
  .card-body { padding: 1rem !important; }
  .card.p-4 { padding: 1rem !important; }
  .card.p-5 { padding: 1.5rem !important; }

  /* Hero section optimization for medium screens */
  .modern-hero-section {
    padding: 3rem 0 !important;
  }

  .hero-container {
    min-height: 70vh !important; /* Reduced from 100vh */
  }

  .hero-title {
    font-size: 2.4rem !important;
    line-height: 1.1 !important;
  }

  .hero-subtitle {
    font-size: 1.1rem !important;
  }

  .hero-icon {
    width: 40px !important;
    height: 40px !important;
    font-size: 1.2rem !important;
  }

  /* Module cards optimization */
  .modern-module-card {
    padding: 1rem !important;
  }

  .modern-module-icon {
    width: 40px !important;
    height: 40px !important;
  }

  /* Price summary optimization */
  .price-summary {
    padding: 1rem !important;
  }

  /* Button sizing */
  .btn-lg {
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem !important;
  }
}

/* Large screens (1600px+) - Slightly larger for big monitors */
@media (min-width: 1600px) {
  .display-1 { font-size: calc(4rem * 1.078) !important; }
  .display-2 { font-size: calc(3.5rem * 1.078) !important; }
  .display-3 { font-size: calc(3rem * 1.078) !important; }
  .display-4 { font-size: calc(2.5rem * 1.078) !important; }
  .display-5 { font-size: calc(2rem * 1.078) !important; }
  .display-6 { font-size: calc(1.75rem * 1.078) !important; }

  h1 { font-size: calc(2.5rem * 1.078) !important; }
  h2 { font-size: calc(2rem * 1.078) !important; }
  h3 { font-size: calc(1.75rem * 1.078) !important; }
  h4 { font-size: calc(1.5rem * 1.078) !important; }
  h5 { font-size: calc(1.25rem * 1.078) !important; }
  h6 { font-size: calc(1rem * 1.078) !important; }

  .fs-1 { font-size: calc(2.5rem * 1.078) !important; }
  .fs-2 { font-size: calc(2rem * 1.078) !important; }
  .fs-3 { font-size: calc(1.75rem * 1.078) !important; }
  .fs-4 { font-size: calc(1.5rem * 1.078) !important; }
  .fs-5 { font-size: calc(1.25rem * 1.078) !important; }
  .fs-6 { font-size: calc(1rem * 1.078) !important; }

  .lead { font-size: calc(1.25rem * 1.078) !important; }

  /* Reduce padding and margins by 20% then increase by 21% total */
  .py-1 { padding-top: calc(0.25rem * 1.078) !important; padding-bottom: calc(0.25rem * 1.078) !important; }
  .py-2 { padding-top: calc(0.5rem * 1.078) !important; padding-bottom: calc(0.5rem * 1.078) !important; }
  .py-3 { padding-top: calc(1rem * 1.078) !important; padding-bottom: calc(1rem * 1.078) !important; }
  .py-4 { padding-top: calc(1.5rem * 1.078) !important; padding-bottom: calc(1.5rem * 1.078) !important; }
  .py-5 { padding-top: calc(3rem * 1.078) !important; padding-bottom: calc(3rem * 1.078) !important; }

  .px-1 { padding-left: calc(0.25rem * 1.078) !important; padding-right: calc(0.25rem * 1.078) !important; }
  .px-2 { padding-left: calc(0.5rem * 1.078) !important; padding-right: calc(0.5rem * 1.078) !important; }
  .px-3 { padding-left: calc(1rem * 1.078) !important; padding-right: calc(1rem * 1.078) !important; }
  .px-4 { padding-left: calc(1.5rem * 1.078) !important; padding-right: calc(1.5rem * 1.078) !important; }
  .px-5 { padding-left: calc(3rem * 1.078) !important; padding-right: calc(3rem * 1.078) !important; }

  .p-1 { padding: calc(0.25rem * 1.078) !important; }
  .p-2 { padding: calc(0.5rem * 1.078) !important; }
  .p-3 { padding: calc(1rem * 1.078) !important; }
  .p-4 { padding: calc(1.5rem * 1.078) !important; }
  .p-5 { padding: calc(3rem * 1.078) !important; }

  .mb-1 { margin-bottom: calc(0.25rem * 1.078) !important; }
  .mb-2 { margin-bottom: calc(0.5rem * 1.078) !important; }
  .mb-3 { margin-bottom: calc(1rem * 1.078) !important; }
  .mb-4 { margin-bottom: calc(1.5rem * 1.078) !important; }
  .mb-5 { margin-bottom: calc(3rem * 1.078) !important; }

  .mt-1 { margin-top: calc(0.25rem * 1.078) !important; }
  .mt-2 { margin-top: calc(0.5rem * 1.078) !important; }
  .mt-3 { margin-top: calc(1rem * 1.078) !important; }
  .mt-4 { margin-top: calc(1.5rem * 1.078) !important; }
  .mt-5 { margin-top: calc(3rem * 1.078) !important; }

  .me-1 { margin-right: calc(0.25rem * 1.078) !important; }
  .me-2 { margin-right: calc(0.5rem * 1.078) !important; }
  .me-3 { margin-right: calc(1rem * 1.078) !important; }
  .me-4 { margin-right: calc(1.5rem * 1.078) !important; }
  .me-5 { margin-right: calc(3rem * 1.078) !important; }

  /* Reduce button sizes */
  .btn-lg {
    padding: calc(0.5rem * 1.078) calc(1rem * 1.078) !important;
    font-size: calc(1.25rem * 1.078) !important;
    border-radius: calc(0.375rem * 1.078) !important;
  }

  .btn {
    padding: calc(0.375rem * 1.078) calc(0.75rem * 1.078) !important;
    font-size: calc(1rem * 1.078) !important;
  }

  .btn-sm {
    padding: calc(0.25rem * 1.078) calc(0.5rem * 1.078) !important;
    font-size: calc(0.875rem * 1.078) !important;
  }

  /* Reduce form elements */
  .form-control {
    padding: calc(0.375rem * 1.078) calc(0.75rem * 1.078) !important;
    font-size: calc(1rem * 1.078) !important;
    line-height: calc(1.5 * 1.078) !important;
    border-radius: calc(0.375rem * 1.078) !important;
  }

  .form-control-lg {
    padding: calc(0.5rem * 1.078) calc(1rem * 1.078) !important;
    font-size: calc(1.25rem * 1.078) !important;
    border-radius: calc(0.5rem * 1.078) !important;
  }

  .rounded-4 {
    border-radius: calc(1rem * 1.078) !important;
  }

  .rounded-3 {
    border-radius: calc(0.75rem * 1.078) !important;
  }

  /* Reduce icons */
  .fs-1 i, .fs-2 i, .fs-3 i, .fs-4 i, .fs-5 i, .fs-6 i {
    font-size: inherit;
  }

  /* Reduce hero section specific elements */
  .min-vh-100 {
    min-height: auto !important;
  }

  /* Reduce feature icons */
  .hero-feature-icon {
    width: calc(48px * 1.078) !important;
    height: calc(48px * 1.078) !important;
  }

  /* Reduce spacing in gap utilities */
  .gap-1 { gap: calc(0.25rem * 1.078) !important; }
  .gap-2 { gap: calc(0.5rem * 1.078) !important; }
  .gap-3 { gap: calc(1rem * 1.078) !important; }
  .gap-4 { gap: calc(1.5rem * 1.078) !important; }
  .gap-5 { gap: calc(3rem * 1.078) !important; }

  /* Reduce container sizes */
  .container {
    max-width: calc(1320px * 1.078) !important;
  }

  .container-sm {
    max-width: calc(540px * 1.078) !important;
  }

  .container-md {
    max-width: calc(720px * 1.078) !important;
  }

  .container-lg {
    max-width: calc(960px * 1.078) !important;
  }

  .container-xl {
    max-width: calc(1140px * 1.078) !important;
  }

  .container-xxl {
    max-width: calc(1320px * 1.078) !important;
  }

  /* Reduce Bootstrap columns and grid */
  .col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6,
  .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
  .col-auto, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3,
  .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8,
  .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-auto,
  .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4,
  .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9,
  .col-md-10, .col-md-11, .col-md-12, .col-md-auto,
  .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4,
  .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9,
  .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-auto {
    padding-left: calc(0.75rem * 1.078) !important;
    padding-right: calc(0.75rem * 1.078) !important;
  }

  .row {
    margin-left: calc(-0.75rem * 1.078) !important;
    margin-right: calc(-0.75rem * 1.078) !important;
  }

  /* Reduce card dimensions */
  .card-body {
    padding: calc(1rem * 1.078) !important;
  }

  /* Reduce all widths and heights proportionally - EXCEPT for 100% backgrounds */
  .w-25 { width: calc(25% * 1.078) !important; }
  .w-50 { width: calc(50% * 1.078) !important; }
  .w-75 { width: calc(75% * 1.078) !important; }
  /* Keep w-100 at 100% for card backgrounds */

  .h-25 { height: calc(25% * 1.078) !important; }
  .h-50 { height: calc(50% * 1.078) !important; }
  .h-75 { height: calc(75% * 1.078) !important; }
  /* Keep h-100 at 100% for card backgrounds */

  /* Reduce viewport height utilities */
  .vh-25 { height: calc(25vh * 1.078) !important; }
  .vh-50 { height: calc(50vh * 1.078) !important; }
  .vh-75 { height: calc(75vh * 1.078) !important; }
  .vh-100 { height: calc(100vh * 1.078) !important; }

  /* Reduce specific layout elements */
  .hero-feature-icon {
    width: calc(48px * 1.078) !important;
    height: calc(48px * 1.078) !important;
  }

  .signup-form {
    padding: calc(2rem * 1.078) !important;
  }

  .card-height-180 {
    height: calc(180px * 1.078) !important;
  }

  /* Fix card background coverage */
  .card .position-absolute.w-100.h-100 {
    width: 100% !important;
    height: 100% !important;
  }

  /* Ensure gradients cover full card header */
  .ice-cream-gradient,
  .cafe-gradient,
  .pizza-gradient,
  .desserts-gradient,
  .barbecue-gradient,
  .acai-gradient,
  .healthy-gradient,
  .seafood-gradient,
  .bakery-gradient {
    width: 100% !important;
    height: 100% !important;
  }

  /* Reduce navbar height */
  .navbar {
    min-height: calc(56px * 1.078) !important;
  }

  /* Reduce line heights */
  .lh-1 { line-height: calc(1 * 1.078) !important; }
  .lh-sm { line-height: calc(1.25 * 1.078) !important; }
  .lh-base { line-height: calc(1.5 * 1.078) !important; }
  .lh-lg { line-height: calc(2 * 1.078) !important; }
}

/* =========================
   MODULE CARDS - HOME PAGE
   ========================= */

/* Module card container */
.module-card {
  border: 1px solid var(--gray-200) !important;
  border-radius: var(--radius-xl) !important;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background: var(--surface-card);
}

.module-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-primary) !important;
}

/* Module icon styling - Fixed red circles and improved contrast */
.module-icon {
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important; /* Force perfect circle */
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light)) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative;
  box-shadow: 0 4px 12px rgba(240, 161, 44, 0.25);
}

.module-icon i {
  color: white !important; /* White icon for better contrast */
  font-size: 1.5rem !important;
  font-weight: 600 !important;
}

/* Module card content */
.module-card h3 {
  color: var(--gray-900);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.module-card .text-muted {
  color: var(--gray-600) !important;
  line-height: 1.5;
}

/* Price styling */
.module-card .fw-semibold {
  color: var(--gray-900);
  font-size: 1.1rem;
}

/* Button styling */
.module-card .btn-outline-primary {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  font-weight: 500;
  transition: all 0.3s ease;
}

.module-card .btn-outline-primary:hover {
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
  color: white;
  transform: translateY(-1px);
}

/* Badge styling */
.module-card .badge.bg-secondary {
  background-color: var(--gray-100) !important;
  color: var(--gray-700) !important;
  font-weight: 500;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-md);
}

/* =========================
   RESPONSIVE MODULES SECTION
   ========================= */

@media (max-width: 991px) {
  .price-summary {
    position: static !important;
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .module-card {
    margin-bottom: 1.5rem;
  }

  .module-icon {
    width: 48px !important;
    height: 48px !important;
  }

  .module-icon i {
    font-size: 1.25rem !important;
  }

  .price-summary {
    padding: 1.5rem;
  }

  .total-price {
    font-size: 1.5rem;
  }

  .billing-cycle-toggle .btn {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
  }
}

/* =========================
   MODULE SELECTION - DYNAMIC PRICING
   ========================= */

/* Selected module state */
.module-card.selected {
  border-color: var(--brand-primary) !important;
  background: linear-gradient(145deg, #fff 0%, #fef7f7 100%);
  box-shadow: 0 8px 25px rgba(240, 161, 44, 0.15);
}

.module-card.selected .module-icon {
  background: linear-gradient(135deg, var(--brand-primary-dark), var(--brand-primary)) !important;
  box-shadow: 0 6px 16px rgba(240, 161, 44, 0.35);
}

/* Checkbox styling for modules */
.module-checkbox {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background-color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.module-checkbox:checked {
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
}

.module-checkbox:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 0.875rem;
  font-weight: bold;
}

/* Price summary section */
.price-summary {
  background: linear-gradient(145deg, var(--gray-50), white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: sticky;
  top: 2rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}

.price-summary h3 {
  color: var(--gray-900);
  font-weight: 700;
  margin-bottom: 1rem;
}

.total-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin: 0.5rem 0;
  line-height: 1.3;
}

.billing-cycle-toggle {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 0.25rem;
  margin-bottom: 1.5rem;
}

.billing-cycle-toggle .btn {
  border: none;
  border-radius: var(--radius-md);
  padding: 0.5rem 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.billing-cycle-toggle .btn.active {
  background-color: var(--brand-primary);
  color: white;
  box-shadow: 0 2px 8px rgba(240, 161, 44, 0.25);
}

/* ===================================================
   BOOTSTRAP OVERRIDES - BTN-PRIMARY
   =================================================== */

/* Override Bootstrap btn-primary to use brand colors */
.btn-primary {
  background-color: var(--brand-warning) !important;
  background-image: linear-gradient(135deg, var(--brand-warning) 0%, #d88a1f 100%) !important;
  border-color: var(--brand-warning) !important;
  color: var(--dark) !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 8px rgba(244, 173, 45, 0.25) !important;
}

.btn-primary:hover {
  background-color: #d88a1f !important;
  background-image: linear-gradient(135deg, #d88a1f 0%, #c97d19 100%) !important;
  border-color: #d88a1f !important;
  color: var(--dark) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 15px rgba(244, 173, 45, 0.4) !important;
}

.btn-primary:focus,
.btn-primary.focus {
  background-color: #d88a1f !important;
  border-color: #d88a1f !important;
  color: var(--dark) !important;
  box-shadow: 0 0 0 0.2rem rgba(244, 173, 45, 0.25) !important;
}

.btn-primary:active,
.btn-primary.active {
  background-color: #c97d19 !important;
  border-color: #c97d19 !important;
  color: var(--dark) !important;
}

.btn-primary:disabled,
.btn-primary.disabled {
  background-color: var(--brand-warning) !important;
  border-color: var(--brand-warning) !important;
  opacity: 0.6 !important;
}

/* Override Bootstrap btn-outline-primary to use brand colors */
.btn-outline-primary {
  color: var(--brand-warning) !important;
  border-color: var(--brand-warning) !important;
  background-color: transparent !important;
}

.btn-outline-primary:hover {
  color: var(--dark) !important;
  background-color: var(--brand-warning) !important;
  border-color: var(--brand-warning) !important;
}

.btn-outline-primary:focus,
.btn-outline-primary.focus {
  color: var(--dark) !important;
  background-color: var(--brand-warning) !important;
  border-color: var(--brand-warning) !important;
  box-shadow: 0 0 0 0.2rem rgba(244, 173, 45, 0.25) !important;
}

.btn-outline-primary:active,
.btn-outline-primary.active {
  color: var(--dark) !important;
  background-color: var(--brand-warning) !important;
  border-color: var(--brand-warning) !important;
}

/* Override Bootstrap btn-outline-warning for better visibility */
.btn-outline-warning {
  color: var(--brand-warning) !important;
  border-color: var(--brand-warning) !important;
  background-color: transparent !important;
  font-weight: 500 !important;
}

.btn-outline-warning:hover {
  color: var(--dark) !important;
  background-color: var(--brand-warning) !important;
  border-color: var(--brand-warning) !important;
}

.btn-outline-warning:focus,
.btn-outline-warning.focus {
  color: var(--dark) !important;
  background-color: var(--brand-warning) !important;
  border-color: var(--brand-warning) !important;
  box-shadow: 0 0 0 0.2rem rgba(244, 173, 45, 0.25) !important;
}

/* ===================================================
   MODERN MODULE CARDS
   =================================================== */

.modern-module-card {
  border: 2px solid transparent !important;
  transition: all 0.3s ease !important;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.modern-module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-warning), var(--brand-danger));
  opacity: 0;
  transition: all 0.3s ease;
}

.modern-module-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
  border-color: var(--brand-warning) !important;
}

.modern-module-card:hover::before {
  opacity: 1;
}

.modern-module-card.selected {
  border-color: var(--brand-warning) !important;
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.2) !important;
  transform: translateY(-5px);
}

.modern-module-card.selected::before {
  opacity: 1;
}

.modern-module-card .modern-module-icon {
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.modern-module-card:hover .modern-module-icon {
  transform: scale(1.1);
}

.module-checkbox {
  border-radius: 6px !important;
  border: 2px solid #dee2e6 !important;
  transition: all 0.3s ease !important;
}

.module-checkbox:checked {
  background-color: var(--brand-warning) !important;
  border-color: var(--brand-warning) !important;
}

.modern-module-card .btn-outline-secondary {
  border: 1.5px solid #e9ecef;
  color: #6c757d;
  font-weight: 500;
  transition: all 0.3s ease;
}

.modern-module-card .btn-outline-secondary:hover {
  background-color: var(--brand-warning);
  border-color: var(--brand-warning);
  color: white;
  transform: translateY(-1px);
}

/* ===================================================
   BUSINESS TYPE CARDS IMPROVEMENTS
   =================================================== */

.card.shadow-lg {
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
}

.card.shadow-lg:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15) !important;
}

.card.shadow-lg .btn {
  transition: all 0.3s ease;
}

.card.shadow-lg:hover .btn {
  transform: scale(1.05);
}

/* ===================================================
   MICRO-ANIMATIONS & ENHANCEMENTS
   =================================================== */

/* Hero CTA animations */
.hero-cta-primary {
  transition: all 0.3s ease !important;
  position: relative;
  overflow: hidden;
}

.hero-cta-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(244, 173, 45, 0.4) !important;
}

.hero-cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.hero-cta-primary:hover::before {
  left: 100%;
}

/* Hero icons improvements */
.hero-icon {
  transition: all 0.3s ease;
}

.hero-icon:hover {
  transform: scale(1.1) rotate(5deg);
}

/* Price summary enhancements */
.price-summary {
  transition: all 0.3s ease;
}

.price-summary:hover {
  transform: translateY(-2px);
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Form focus improvements */
.form-control:focus {
  border-color: var(--brand-warning) !important;
  box-shadow: 0 0 0 0.2rem rgba(244, 173, 45, 0.25) !important;
}

/* ===================================================
   HERO CONTAINER RESPONSIVE BEHAVIOR
   =================================================== */

/* Default behavior for mobile/tablet */
.hero-container {
  min-height: 50vh;
}

/* Medium screens optimization */
@media (min-width: 1200px) and (max-width: 1600px) {
  .hero-container {
    min-height: 70vh !important;
  }
}

/* Large screens */
@media (min-width: 1600px) {
  .hero-container {
    min-height: 90vh !important;
  }
}

/* =========================
   MODULE SHOWCASE - Module Pages
   ========================= */

.module-showcase {
  position: relative;
  padding: var(--space-16) 0 var(--space-20);
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
  overflow: hidden;
}

.module-showcase::before,
.module-showcase::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.module-showcase::before {
  top: -180px;
  left: -140px;
  background: rgba(240, 161, 44, 0.25);
}

.module-showcase::after {
  bottom: -200px;
  right: -160px;
  background: rgba(244, 173, 45, 0.25);
}

.module-showcase__wrapper {
  position: relative;
  z-index: 1;
}

.module-showcase__header {
  max-width: 720px;
  margin: 0 auto var(--space-12);
  text-align: center;
}

.module-showcase__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  background: rgba(240, 161, 44, 0.08);
  color: var(--brand-primary);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.module-showcase__title {
  margin: var(--space-4) 0 var(--space-3);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

.module-showcase__subtitle {
  margin: 0;
  font-size: 1.125rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.module-showcase__item {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  padding: var(--space-8);
  margin-bottom: var(--space-10);
  border-radius: var(--radius-3xl);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.module-showcase__item::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(135deg, rgba(240, 161, 44, 0.06), rgba(244, 173, 45, 0.06));
  transition: opacity var(--transition);
  z-index: -1;
}

.module-showcase__item:hover::after {
  opacity: 1;
}

.module-showcase__content {
  max-width: 520px;
}

.module-showcase__item-title {
  font-size: clamp(1.75rem, 2.8vw, 2.25rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-4);
}

.module-showcase__item-description {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin: 0;
}

.module-showcase__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}



.module-showcase__gradient {
  position: absolute;
  width: 60%;
  padding-top: 60%;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  z-index: -2;
}

.module-showcase__gradient--primary {
  background: rgba(240, 161, 44, 0.35);
  top: 10%;
  left: 5%;
}

.module-showcase__gradient--secondary {
  background: rgba(27, 86, 245, 0.35);
  bottom: 0;
  right: 5%;
}

.module-showcase__image-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 1.25rem;
  overflow: hidden;
}

.module-showcase__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  object-fit: contain;
  max-height: 620px;
  box-shadow: 0 18px 45px -30px rgba(15, 23, 42, 0.35);
  transition: opacity var(--transition);
}

.module-showcase__frame:hover .module-showcase__image {
  opacity: 0.96;
}

.module-showcase__zoom {
  position: absolute;
  bottom: var(--space-4);
  right: var(--space-4);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  color: #0f172a;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
}

.module-showcase__image-link:hover .module-showcase__zoom {
  opacity: 1;
  transform: translateY(0);
}

.module-showcase__zoom i {
  font-size: 1rem;
  color: #0f172a;
}

@media (min-width: 992px) {
  .module-showcase__item {
    flex-direction: row;
    align-items: center;
    padding: var(--space-10);
  }

  .module-showcase__item--reverse {
    flex-direction: row-reverse;
  }

  .module-showcase__content {
    padding-right: var(--space-8);
  }

  .module-showcase__item--reverse .module-showcase__content {
    padding-right: 0;
    padding-left: var(--space-8);
    text-align: right;
    margin-left: auto;
  }
}

@media (max-width: 991.98px) {
  .module-showcase {
    padding: var(--space-12) 0 var(--space-16);
  }

  .module-showcase__item {
    padding: var(--space-6);
  }

  .module-showcase__frame {
    width: min(92%, 420px);
    border-radius: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .module-showcase__item {
    padding: var(--space-5);
    border-radius: var(--radius-2xl);
  }

  .module-showcase__frame {
    width: 100%;
    border-radius: 1.25rem;
    padding: 1.25rem;
  }

  .module-showcase__zoom {
    display: none;
  }
}

/* =========================
   MODULE BENEFITS
   ========================= */

.module-benefits {
  position: relative;
  padding: var(--space-20) 0 var(--space-16);
  background: linear-gradient(180deg, #0f172a 0%, #111827 40%, #1f2937 100%);
  color: #ffffff;
  overflow: hidden;
}

.module-benefits::before,
.module-benefits::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.4;
  z-index: 0;
}

.module-benefits::before {
  top: -180px;
  left: -160px;
  background: rgba(240, 161, 44, 0.4);
}

.module-benefits::after {
  bottom: -220px;
  right: -200px;
  background: rgba(244, 173, 45, 0.4);
}

.module-benefits__wrapper {
  position: relative;
  z-index: 1;
}

.module-benefits__header {
  max-width: 780px;
  margin: 0 auto var(--space-12);
  text-align: center;
}

.module-benefits__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.module-benefits__title {
  margin: var(--space-4) 0 var(--space-3);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.module-benefits__subtitle {
  margin: 0;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.module-benefits__grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.module-benefits__item {
  position: relative;
  padding: var(--space-6);
  border-radius: var(--radius-2xl);
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 50px -20px rgba(15, 23, 42, 0.45);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}

.module-benefits__item:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 173, 45, 0.6);
}

.module-benefits__pulse {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(244, 173, 45, 0.45) 0%, rgba(244, 173, 45, 0) 70%);
  filter: blur(40px);
  opacity: 0;
  transition: opacity var(--transition);
}

.module-benefits__item:hover .module-benefits__pulse {
  opacity: 1;
}

.module-benefits__icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  color: #f0a12c;
  font-size: 1.5rem;
  margin-bottom: var(--space-4);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.module-benefits__text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

@media (max-width: 575.98px) {
  .module-benefits {
    padding: var(--space-16) 0 var(--space-12);
  }

  .module-benefits__item {
    padding: var(--space-5);
  }
}

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

.module-faq {
  padding: var(--space-18) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.module-faq__wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.module-faq__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.module-faq__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  background: rgba(79, 70, 229, 0.08);
  color: #4f46e5;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.module-faq__title {
  margin: var(--space-4) 0 var(--space-3);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

.module-faq__subtitle {
  margin: 0;
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.module-faq__accordion {
  border-radius: var(--radius-2xl);
  background: #ffffff;
  box-shadow: 0 25px 60px -30px rgba(15, 23, 42, 0.35);
  overflow: hidden;
}

.module-faq__item + .module-faq__item {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.module-faq__button {
  background: transparent;
  color: var(--gray-900);
  font-weight: 600;
  padding: var(--space-5) var(--space-6);
  box-shadow: none;
  border: none;
  transition: background var(--transition), color var(--transition);
}

.module-faq__button:focus {
  box-shadow: none;
}

.module-faq__button:not(.collapsed) {
  background: rgba(79, 70, 229, 0.08);
  color: #1e1b4b;
}

.module-faq__button::after {
  filter: brightness(0) saturate(100%) invert(18%) sepia(91%) saturate(2414%) hue-rotate(230deg) brightness(91%) contrast(92%);
}

.module-faq__button:not(.collapsed)::after {
  transform: rotate(-180deg);
}

.module-faq__button-text {
  flex: 1;
  font-size: 1.05rem;
}

.module-faq__answer {
  padding: 0 var(--space-6) var(--space-6);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-600);
}

@media (max-width: 575.98px) {
  .module-faq {
    padding: var(--space-14) 0;
  }

  .module-faq__button {
    padding: var(--space-4) var(--space-5);
  }

  .module-faq__answer {
    padding: 0 var(--space-5) var(--space-5);
  }
}

/* =========================
   MODULE CTA
   ========================= */

.module-cta {
  padding: var(--space-18) 0 var(--space-20);
  background: linear-gradient(135deg, #f0a12c 0%, #d88a1f 30%, #17153b 100%);
  position: relative;
  overflow: hidden;
}

.module-cta::before,
.module-cta::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  z-index: 0;
}

.module-cta::before {
  width: 420px;
  height: 420px;
  top: -160px;
  right: 10%;
  background: rgba(255, 255, 255, 0.25);
}

.module-cta::after {
  width: 360px;
  height: 360px;
  bottom: -180px;
  left: 5%;
  background: rgba(244, 173, 45, 0.45);
}

.module-cta__card {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: var(--space-12) var(--space-10);
  border-radius: var(--radius-3xl);
  background: rgba(11, 15, 43, 0.65);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  color: #ffffff;
  box-shadow: 0 40px 100px -40px rgba(8, 10, 35, 0.7);
}

.module-cta__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.module-cta__title {
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 800;
  margin-bottom: var(--space-4);
  letter-spacing: -0.025em;
}

.module-cta__subtitle {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 auto var(--space-8);
  max-width: 600px;
}

.module-cta__actions {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.module-cta__primary {
  box-shadow: 0 20px 45px rgba(244, 173, 45, 0.35) !important;
}

.module-cta__secondary {
  display: inline-flex;
  align-items: center;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition);
}

.module-cta__secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

@media (max-width: 767.98px) {
  .module-cta {
    padding: var(--space-14) 0 var(--space-16);
  }

  .module-cta__card {
    padding: var(--space-8) var(--space-6);
  }
}

/* Lightbox navigation removed (no arrows) */

/* Lightbox improvements - Centralized Modal */
.lightbox-modal {
  padding: 0 !important;
  background-color: rgba(0, 0, 0, 0.9) !important;
}

.lightbox-modal .modal-dialog {
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-modal .modal-content {
  background: transparent !important;
  border: none;
  border-radius: 0;
  box-shadow: none;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.lightbox-modal .modal-header {
  display: none;
}

.lightbox-modal .modal-body {
  padding: 0 !important;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.lightbox-modal .lightbox-img {
  display: block !important;
  max-width: 98vw !important;
  max-height: 95vh !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  margin: auto !important;
  min-width: 90vw !important;
}

/* Override any Bootstrap img-fluid constraints */
.lightbox-modal .img-fluid {
  max-width: 98vw !important;
  height: auto !important;
}

/* Ensure modal content doesn't constrain the image */
.lightbox-modal .modal-content,
.lightbox-modal .modal-body {
  overflow: visible !important;
}

/* Image wrapper to contain close button */
.lightbox-modal .lightbox-image-wrapper {
  display: inline-block;
  max-width: 98vw;
  max-height: 95vh;
}

/* Close button styling */
.lightbox-modal .lightbox-close-btn {
  top: 10px !important;
  right: 10px !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0.9 !important;
  transition: all 0.2s ease !important;
  background-color: rgba(220, 53, 69, 0.9) !important;
  border: 2px solid #fff !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
  z-index: 1060 !important;
}

.lightbox-modal .lightbox-close-btn:hover {
  opacity: 1 !important;
  background-color: #dc3545 !important;
  transform: scale(1.1) !important;
}

/* Legacy button styling (remove if not needed) */
.lightbox-modal .btn {
  border-radius: 50% !important;
  width: 45px !important;
  height: 45px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0.9 !important;
  transition: all 0.2s ease !important;
  background-color: rgba(220, 53, 69, 0.8) !important;
  border: 2px solid #fff !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

.lightbox-modal .btn:hover {
  opacity: 1 !important;
  background-color: #dc3545 !important;
  transform: scale(1.05) !important;
}

/* Use dynamic viewport units where supported */
@supports (width: 100dvw) {
  .lightbox-modal .modal-dialog {
    width: 100dvw;
    height: 100dvh;
  }

  .lightbox-modal .modal-content {
    width: 100dvw;
    height: 100dvh;
  }

  .lightbox-modal .lightbox-img {
    max-width: 98dvw !important;
    max-height: 95dvh !important;
    min-width: 90dvw !important;
  }
}

/* Overlay close button */
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  background: rgba(255,255,255,0.85);
  border-radius: 20px;
  padding: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.lightbox-close:hover { background: rgba(255,255,255,0.95); }


/* ==================== MODERN NAVBAR - Dark Header with Logo Contrast ==================== */
.navbar-modern {
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  border-bottom: 1px solid rgba(248, 244, 237, 0.9) !important;
  box-shadow: 0 10px 30px rgba(26, 18, 11, 0.06) !important;
  padding: 0.9rem 0;
  transition: all 0.3s ease;
}

.navbar-logo {
  height: 48px;
  width: auto;
  transition: transform 0.2s ease;
}

.navbar-logo:hover {
  transform: scale(1.05);
}

.navbar-modern .navbar-brand {
  font-weight: 800;
  font-size: 1.1rem;
  color: #1a120b;
  letter-spacing: -0.02em;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.navbar-modern .navbar-brand:hover {
  color: #d88a1f;
  opacity: 0.95;
  transform: translateY(-1px);
}

/* Modern Nav Links */
.nav-link-modern {
  color: var(--gray-700);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem !important;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.nav-link-modern:hover {
  color: #1a120b;
  background: rgba(240, 161, 44, 0.08);
}

/* Modern Ghost Button */
.btn-nav-ghost {
  color: var(--gray-800);
  background: #ffffff;
  border: 1px solid rgba(184, 167, 146, 0.4);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-nav-ghost:hover {
  color: #1a120b;
  background: rgba(250, 235, 203, 0.45);
  border-color: rgba(216, 138, 31, 0.6);
}

/* Modern Primary Button */
.btn-nav-primary {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
  border: none;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 1px 3px rgba(34, 197, 94, 0.2);
}

.btn-nav-primary:hover {
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.mobile-nav-actions {
  margin-left: auto;
}

.btn-mobile-login {
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 0.4rem 1.1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: #111827;
  background: #ffffff;
  box-shadow: 0 5px 18px rgba(15, 23, 42, 0.08);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.btn-mobile-login:hover {
  color: #0f172a;
  border-color: #d1d5db;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

/* Navbar toggler icon - for dark background */
.navbar-modern .navbar-toggler {
  color: #1a120b;
  border: 1px solid rgba(212, 212, 216, 0.8);
  padding: 0.35rem 0.6rem;
  border-radius: 0.375rem;
}

.navbar-modern .navbar-toggler:hover {
  background: rgba(248, 244, 237, 0.9);
}

.navbar-modern .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(240, 161, 44, 0.25);
}

.navbar-modern .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2826, 18, 11, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile responsiveness */
@media (max-width: 991px) {
  .navbar-logo {
    height: 40px;
  }
  
  .navbar-modern .navbar-collapse {
    background: #ffffff;
    border-radius: 0.75rem;
    margin-top: 1rem;
    padding: 1rem;
    box-shadow: 0 18px 40px rgba(26, 18, 11, 0.16);
    border: 1px solid rgba(240, 229, 216, 0.9);
  }

  .navbar-modern .nav-item {
    margin: 0.25rem 0;
  }

  .btn-nav-ghost,
  .btn-nav-primary {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
  }

  .btn-mobile-login {
    padding: 0.45rem 1.25rem;
  }
}

/* Compact form styling */
.signup-card {
  padding: 2rem !important;
  max-width: 420px !important;
}

@media (max-width: 1399px) {
  .signup-card {
    padding: 1.75rem !important;
  }
}

@media (max-width: 991px) {
  .signup-card {
    max-width: 100% !important;
    padding: 2rem !important;
  }
}

/* ==================== HOW IT WORKS SECTION ==================== */
.how-it-works-modern {
  position: relative;
  overflow: hidden;
}

.how-it-works-mockup {
  position: sticky;
  top: 100px;
}

/* Steps List - Novo layout */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.step-item:hover {
  border-color: #f0a12c;
  box-shadow: 0 8px 24px rgba(240, 161, 44, 0.1);
  transform: translateX(8px);
}

.step-number-large {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0a12c 0%, #d88a1f 100%);
  color: white;
  font-size: 2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(240, 161, 44, 0.3);
}

.step-content {
  flex: 1;
}

.step-content h3 {
  color: #111827;
  font-size: 1.5rem;
}

.step-content p {
  line-height: 1.7;
  color: #6b7280;
}

/* Old step card styles - mantidos para compatibilidade */
.step-card {
  padding: 2rem 1rem;
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-number-wrapper {
  position: relative;
  display: inline-block;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0a12c 0%, #d88a1f 100%);
  color: white;
  font-size: 1.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(240, 161, 44, 0.3);
}

.step-icon {
  animation: float 3s ease-in-out infinite;
}

.step-card h4 {
  color: #111827;
}

.step-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* Responsivo */
@media (max-width: 991px) {
  .how-it-works-mockup {
    position: relative;
    top: auto;
    margin-bottom: 2rem;
  }

  .step-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 1.5rem;
  }

  .step-item:hover {
    transform: translateY(-4px);
  }

  .steps-list {
    gap: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .how-it-works-modern {
    padding: 2rem 0 !important;
  }

  .how-it-works-modern .py-5 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .how-it-works-modern .display-4 {
    font-size: 1.75rem;
  }

  .how-it-works-modern .lead {
    font-size: 1rem;
  }

  .how-it-works-mockup {
    max-width: 200px;
    margin: 0 auto 1.5rem;
  }

  .how-it-works-image {
    max-width: 100% !important;
    height: auto !important;
  }

  .step-item {
    padding: 1rem;
    gap: 1rem;
  }

  .step-number-large {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .step-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem !important;
  }

  .step-content p {
    font-size: 0.9rem;
  }

  .steps-list {
    gap: 1rem;
  }
}

@media (max-width: 575.98px) {
  .step-item {
    padding: 0.875rem;
  }

  .step-number-large {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .step-content h4 {
    font-size: 1rem;
  }

  .step-content p {
    font-size: 0.85rem;
  }
}

/* ===== Inlined home.css (previously separate asset) ===== */
/* ========================================
   menui HOME - CSS MODERNO E FOCADO EM CONVERSÃO
   Design inspirado em: Stripe, Notion, Linear
   ======================================== */

/* ==================== HERO SECTION ==================== */
.hero-modern {
  position: relative;
  padding: 8rem 0 5rem;
  background: linear-gradient(135deg, #fffbf5 0%, #fef3e8 50%, #fef0e0 100%) !important;
  overflow: hidden;
  isolation: isolate;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(240, 161, 44, 0.08) 0%, transparent 55%),
    radial-gradient(circle at 85% 75%, rgba(249, 115, 22, 0.06) 0%, transparent 60%);
  filter: saturate(1.1);
}

.hero-background::after {
  content: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    radial-gradient(at 15% 25%, rgba(240, 161, 44, 0.03) 0px, transparent 55%),
    radial-gradient(at 80% 70%, rgba(249, 115, 22, 0.02) 0px, transparent 55%);
}

.hero-modern .container {
  position: relative;
  z-index: 2;
}

.hero-content-row {
  row-gap: 3rem;
  padding-top: 0;
  align-items: center;
}

.hero-text-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}


.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.045em;
  color: #1a120b;
  margin-bottom: 0.5rem;
  text-shadow: none;
}

.hero-title-line {
  display: block;
  margin-bottom: 0.15em;
}

.text-gradient-yellow {
  background: linear-gradient(135deg, #f97316 0%, #f0a12c 50%, #ea580c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: brightness(1);
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 38rem;
  color: #6b5e52 !important;
  font-weight: 400;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(34, 197, 94, 0.2);
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.12);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #16a34a;
}

.hero-pill-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.15);
  animation: pulse-green 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-green {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: #4a3c2e;
}

.hero-benefits-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.hero-metrics {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.hero-metric-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 20px 35px rgba(240, 161, 44, 0.15);
}

.hero-metric-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: #b91c1c;
}

.hero-metric-label {
  font-size: 0.95rem;
  color: #475569;
  font-weight: 500;
}

.hero-insight-card {
  margin-top: 1.5rem;
  background: rgba(15, 23, 42, 0.9);
  color: #f8fafc;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 25px 40px rgba(15, 23, 42, 0.35);
  max-width: 360px;
}

.hero-insight-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.2);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.hero-insight-value {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
}

.hero-insight-meta {
  color: #34d399;
  font-weight: 600;
}

.hero-form-column {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}


.hero-signup-form {
  width: 100%;
  max-width: 440px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow:
    0 30px 60px rgba(240, 161, 44, 0.2),
    0 15px 30px rgba(251, 146, 60, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
}

.hero-form-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(240, 161, 44, 0.12);
  color: #b91c1c;
  margin-bottom: 1rem;
}

.hero-form-subtitle {
  color: #475569;
  font-size: 1rem;
}

.hero-form-guarantee {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border-radius: 14px;
  padding: 0.85rem 1rem;
  background: #fff5f5;
  color: #b91c1c;
  font-weight: 600;
}

.hero-form-guarantee-icon {
  font-size: 1.25rem;
}

.hero-form-rating {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(148, 163, 184, 0.5);
}

.hero-form-stars {
  color: #fbbf24;
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.hero-signup-form h2 {
  color: #0f172a;
  font-weight: 700;
}

.form-control-lg {
  padding: 0.875rem 1.125rem;
  font-size: 1rem;
  border-radius: 12px;
  border: 2px solid #fed7d7;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fffaf7;
}

.form-control-lg:focus {
  border-color: #f0a12c;
  box-shadow: 0 0 0 4px rgba(240, 161, 44, 0.15);
  outline: none;
  background: #ffffff;
}

.btn-hero-cta {
  background: linear-gradient(135deg, #f0a12c 0%, #dc2626 100%);
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.0625rem;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 10px 20px -3px rgba(240, 161, 44, 0.35),
    0 4px 8px -2px rgba(240, 161, 44, 0.25);
  letter-spacing: -0.01em;
}

.btn-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 30px -5px rgba(240, 161, 44, 0.45),
    0 10px 15px -5px rgba(240, 161, 44, 0.3);
  color: #ffffff;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.hero-devices-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.hero-devices {
  width: min(100%, 960px);
  height: auto;
}

@media (min-width: 1200px) {
  .hero-modern {
    padding: 9rem 0 6rem;
  }
}

@media (max-width: 1199.98px) {
  .hero-form-column {
    justify-content: center;
  }
}

@media (max-width: 991.98px) {
  .hero-modern {
    padding: 7rem 0 4rem;
  }

  .hero-text-column {
    align-items: center;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(2.25rem, 7vw, 3.25rem);
  }

  .hero-subtitle {
    max-width: 34rem;
    font-size: 1.125rem;
  }

  .hero-form-column {
    order: 2;
    margin-top: 1rem;
  }

  .hero-devices-wrapper {
    order: 3;
    margin-top: 3rem;
  }

  .hero-signup-form {
    max-width: 500px;
  }
}

@media (max-width: 575.98px) {
  .hero-modern {
    padding: 6rem 0 3rem;
  }

  .hero-content-row {
    padding-top: 0;
    row-gap: 2.5rem;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.75rem);
    letter-spacing: -0.03em;
  }

  .hero-subtitle {
    font-size: 1.0625rem;
    line-height: 1.5;
  }

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

  .hero-signup-form {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }

  .form-control-lg {
    padding: 0.8rem 1rem;
    font-size: 1rem;
  }

  .btn-hero-cta {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }
}

/* Hero devices image responsive */
@media (max-width: 767.98px) {
  .hero-devices-wrapper {
    margin-top: 1.5rem;
    padding: 0 0.5rem;
  }

  .hero-devices {
    width: 100%;
    max-width: 320px;
    height: auto;
  }
}

@media (max-width: 575.98px) {
  .hero-devices-wrapper {
    margin-top: 1rem;
    padding: 0;
  }

  .hero-devices {
    max-width: 280px;
  }
}

/* ==================== LOGOS BAR ==================== */
.logos-section {
  background: white;
  padding: 3rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.client-logo {
  font-size: 1.125rem;
  font-weight: 600;
  color: #64748b;
  transition: color 0.3s ease;
}

.client-logo:hover {
  color: #f0a12c;
}

/* ==================== FEATURES SECTION ==================== */
.features-modern {
  padding: 6rem 0;
  background: #f8fafc;
  color: #1f2937;
}

.features-modern .container-fluid {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.features-modern p,
.features-modern .text-muted {
  color: #374151 !important;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #ffe1e3;
  color: #8d1116;
  border: 1px solid #d62839;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.feature-list li {
  padding: 0.75rem 0;
  font-size: 1.125rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-list li i {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.link-arrow {
  color: #8d1116;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
  margin-top: 1rem;
  text-decoration-thickness: 2px;
}

.link-arrow:hover {
  gap: 1rem;
  color: #65070c;
  text-decoration: underline;
}

/* Feature Screenshots - MELHORADO */
.feature-screenshot-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 3rem 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  min-height: 600px;
  max-height: 600px;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-screenshot-container img,
.feature-screenshot-container svg {
  max-width: 100%;
  max-height: 540px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.feature-screenshot-container img {
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.feature-screenshot-container:hover img,
.feature-screenshot-container:hover svg {
  transform: scale(1.03);
}

/* ==================== MOBILE RESPONSIVE - FEATURE SCREENSHOTS ==================== */
@media (max-width: 991.98px) {
  .features-modern {
    padding: 3rem 0;
  }

  .features-modern .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .feature-screenshot-container {
    min-height: 350px;
    max-height: 400px;
    height: auto;
    padding: 1.5rem 1rem;
    border-radius: 16px;
  }

  .feature-screenshot-container img,
  .feature-screenshot-container svg {
    max-height: 320px;
  }

  .features-modern .display-6 {
    font-size: 1.5rem;
  }

  .features-modern .fs-5 {
    font-size: 1rem !important;
  }

  .feature-list li {
    font-size: 0.95rem;
    padding: 0.5rem 0;
  }

  .features-modern .row.mb-6 {
    margin-bottom: 2rem !important;
  }

  .features-modern .py-5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
}

@media (max-width: 767.98px) {
  .features-modern {
    padding: 2rem 0;
  }

  .features-modern .display-4 {
    font-size: 1.75rem;
  }

  .features-modern .lead {
    font-size: 1rem;
  }

  .feature-screenshot-container {
    min-height: 250px;
    max-height: 300px;
    padding: 1rem;
    border-radius: 12px;
  }

  .feature-screenshot-container img,
  .feature-screenshot-container svg {
    max-height: 220px;
  }

  .feature-badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
  }

  .features-modern .display-6 {
    font-size: 1.25rem;
  }

  .feature-list {
    margin: 1rem 0;
  }

  .feature-list li {
    font-size: 0.875rem;
    padding: 0.35rem 0;
  }

  .feature-list li i {
    font-size: 1rem;
  }

  .link-arrow {
    font-size: 0.875rem;
  }
}

@media (max-width: 575.98px) {
  .feature-screenshot-container {
    min-height: 200px;
    max-height: 250px;
    padding: 0.75rem;
  }

  .feature-screenshot-container img,
  .feature-screenshot-container svg {
    max-height: 180px;
  }

  .feature-screenshot-container img {
    border-radius: 8px;
  }
}

/* Carousel Controls - MELHORADO */
.feature-carousel {
  position: relative;
  padding-bottom: 4rem;
}

.feature-carousel .carousel-inner {
  border-radius: 20px;
}

.feature-carousel .carousel-control-prev,
.feature-carousel .carousel-control-next {
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-carousel:hover .carousel-control-prev,
.feature-carousel:hover .carousel-control-next {
  opacity: 1;
}

.feature-carousel .carousel-control-prev {
  left: -30px;
}

.feature-carousel .carousel-control-next {
  right: -30px;
}

.feature-carousel .carousel-control-icon {
  background: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.feature-carousel .carousel-control-icon i {
  color: #f0a12c;
  font-size: 1.75rem;
  font-weight: bold;
}

.feature-carousel .carousel-control-icon:hover {
  background: #f0a12c;
  transform: scale(1.15);
  box-shadow: 0 12px 30px rgba(240, 161, 44, 0.4);
}

.feature-carousel .carousel-control-icon:hover i {
  color: white;
}

.feature-carousel .carousel-indicators {
  bottom: -3.5rem;
  margin-bottom: 0;
}

.feature-carousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #cbd5e0;
  border: none;
  opacity: 0.5;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.feature-carousel .carousel-indicators button.active {
  background-color: #f0a12c;
  opacity: 1;
  width: 35px;
  border-radius: 5px;
}

/* ==================== PRICING SECTION ==================== */
.pricing-modern {
  padding: 6rem 0;
  background: #f8fafc;
}

.pricing-modern .container {
  max-width: 1600px !important;
  width: 100% !important;
  padding-left: 30px;
  padding-right: 30px;
}

/* Pricing Controls Inline */
.pricing-controls-inline {
  background: white;
  border-radius: 16px;
  padding: 1.5rem 2rem;
  border: 2px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  max-width: 100%;
  margin: 0 auto;
}

/* Toggle Compact */
.pricing-toggle-compact {
  display: flex;
  gap: 0.5rem;
  background: #e2e8f0;
  padding: 0.375rem;
  border-radius: 50px;
}

.pricing-cycle-btn {
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  background: transparent;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  border: none;
  color: #1f2937;
}

.pricing-cycle-btn:hover {
  background: rgba(240, 161, 44, 0.12);
  color: #b7181f;
}

.pricing-cycle-btn input[type="radio"] {
  display: none;
}

.pricing-cycle-btn:has(input[type="radio"]:checked) {
  background: #b7181f;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(183, 24, 31, 0.35);
}

.pricing-cycle-btn .badge {
  background-color: #0f5132;
  color: #ffffff;
  border-radius: 999px;
  font-size: 0.75rem;
  padding: 0.125rem 0.5rem;
  font-weight: 700;
  border: 1px solid transparent;
}

.pricing-cycle-btn:has(input[type="radio"]:checked) .badge {
  background: #ffffff !important;
  color: #b7181f;
  border-color: rgba(183, 24, 31, 0.35);
}

.pricing-cycle-btn span,
.pricing-cycle-btn strong {
  color: inherit;
}

/* Total Inline */
.pricing-total-inline {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  justify-content: center;
}

.total-label-inline {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.total-value-inline {
  font-size: 1.75rem;
  font-weight: 800;
  color: #b7181f;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.period-inline {
  font-size: 0.875rem;
  font-weight: 400;
  color: #334155;
}

/* CTA Inline */
.pricing-cta-inline {
  flex-shrink: 0;
}

.btn-cta-inline {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  background: linear-gradient(135deg, #f0a12c 0%, #d88a1f 100%);
  border: none;
  color: white;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(240, 161, 44, 0.3);
}

.btn-cta-inline:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(240, 161, 44, 0.4);
  color: white;
}

/* Module Cards */
.module-card-new {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem;
  transition: all 0.3s ease;
  height: 100%;
  cursor: pointer;
  position: relative;
}

.module-card-new:hover {
  border-color: #f0a12c;
  box-shadow: 0 12px 24px rgba(240, 161, 44, 0.1);
  transform: translateY(-4px);
}

.module-card-new.selected {
  border-color: #f0a12c;
  background: rgba(240, 161, 44, 0.02);
  box-shadow: 0 8px 16px rgba(240, 161, 44, 0.15);
}

.module-card-new.required {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.02);
}

.module-select-indicator .badge.bg-success {
  background-color: #0f5132 !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.module-header {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.module-select-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.module-select-indicator input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #f0a12c;
}

.module-select-indicator input[type="checkbox"]:disabled {
  cursor: not-allowed;
}

.select-label {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
}

.module-price-new {
  margin: 1rem 0;
}

.price-value {
  font-size: 2rem;
  font-weight: 800;
  color: #1e293b;
}

.price-period {
  font-size: 0.875rem;
  color: #334155;
  font-weight: 500;
}

.price-free {
  font-size: 1.5rem;
  font-weight: 700;
  color: #10b981;
}

.feature-list-new {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}

.feature-list-new li {
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: #64748b;
}

/* Module Details Button */
.btn-module-details {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #f0a12c;
  background: rgba(240, 161, 44, 0.05);
  border: 1px solid rgba(240, 161, 44, 0.2);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}

.btn-module-details:hover {
  background: rgba(240, 161, 44, 0.1);
  border-color: #f0a12c;
  color: #d88a1f;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(240, 161, 44, 0.15);
}

/* ==================== MOBILE RESPONSIVE - PRICING SECTION ==================== */
@media (max-width: 991.98px) {
  .pricing-modern {
    padding: 3rem 0;
  }

  .pricing-modern .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .pricing-controls-inline {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
    text-align: center;
  }

  .pricing-total-inline {
    flex-direction: column;
    gap: 0.25rem;
  }

  .total-value-inline {
    font-size: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .pricing-modern .display-4 {
    font-size: 1.75rem;
  }

  .pricing-modern .lead {
    font-size: 1rem;
  }

  .pricing-toggle-compact {
    width: 100%;
    justify-content: center;
  }

  .pricing-cycle-btn {
    flex: 1;
    justify-content: center;
    padding: 0.5rem;
    font-size: 0.8rem;
  }

  .pricing-cta-inline {
    width: 100%;
  }

  .btn-cta-inline {
    width: 100%;
    padding: 0.875rem 1.5rem;
  }

  .module-card-new {
    padding: 0.875rem;
  }

  .price-value {
    font-size: 1.5rem;
  }

  .feature-list-new li {
    font-size: 0.8rem;
    padding: 0.35rem 0;
  }

  .btn-module-details {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 575.98px) {
  .pricing-toggle-compact {
    padding: 0.25rem;
  }

  .pricing-cycle-btn {
    padding: 0.4rem 0.5rem;
    font-size: 0.75rem;
  }

  .pricing-cycle-btn .badge {
    font-size: 0.65rem;
    padding: 0.1rem 0.35rem;
  }

  .total-value-inline {
    font-size: 1.25rem;
  }

  .total-label-inline {
    font-size: 0.75rem;
  }
}


/* ==================== DEMO SECTION ==================== */
.demo-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.demo-card-modern {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
}

.demo-card-modern:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
  border-color: #f0a12c;
}

.demo-header {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.demo-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.demo-header i {
  font-size: 4rem;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.demo-body {
  padding: 2rem 1.5rem;
}

.demo-body h5 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #1e293b;
}

.demo-body .btn {
  transition: all 0.3s ease;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
}

.demo-body .btn-outline-primary {
  border-color: #f0a12c;
  color: #f0a12c;
}

.demo-body .btn-outline-primary:hover {
  background: #f0a12c;
  border-color: #f0a12c;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(240, 161, 44, 0.3);
}

/* Demo Cards Compact - 6 por linha */
.demo-card-compact .demo-header {
  height: 100px;
}

.demo-card-compact .demo-header i {
  font-size: 2rem;
}

.demo-card-compact .demo-header h4 {
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}

.demo-card-compact .demo-body {
  padding: 1rem 0.75rem;
}

.demo-card-compact .demo-body h6 {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.demo-card-compact .demo-body p {
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.demo-card-compact .demo-body .btn-sm {
  font-size: 0.75rem;
  padding: 0.375rem 0.75rem;
}

/* Demo Section */
.demo-section .container {
  max-width: 1600px !important;
}

/* ==================== MOBILE RESPONSIVE - DEMO CARDS ==================== */
@media (max-width: 767.98px) {
  .demo-section {
    padding: 3rem 0;
  }

  .demo-section .display-4 {
    font-size: 1.75rem;
  }

  .demo-section .lead {
    font-size: 1rem;
  }

  .demo-card-modern {
    border-radius: 12px;
  }

  .demo-card-compact .demo-header {
    height: 60px;
    padding: 0.5rem;
  }

  .demo-card-compact .demo-header h4 {
    font-size: 0.65rem;
    letter-spacing: 0;
  }

  .demo-card-compact .demo-body {
    padding: 0.75rem 0.5rem;
  }

  .demo-card-compact .demo-body p {
    font-size: 0.65rem;
    margin-bottom: 0.35rem;
    line-height: 1.3;
  }

  .demo-card-compact .demo-body .btn-sm {
    font-size: 0.65rem;
    padding: 0.25rem 0.5rem;
  }

  .demo-card-modern:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 575.98px) {
  .demo-card-compact .demo-header {
    height: 50px;
  }

  .demo-card-compact .demo-header h4 {
    font-size: 0.6rem;
  }

  .demo-card-compact .demo-body {
    padding: 0.5rem;
  }

  .demo-card-compact .demo-body p {
    font-size: 0.6rem;
    margin-bottom: 0.25rem;
  }

  .demo-card-compact .demo-body .btn-sm {
    font-size: 0.6rem;
    padding: 0.2rem 0.4rem;
  }
}

/* FAQ Section */

/* ==================== TESTIMONIALS ==================== */
.testimonials-modern {
  padding: 6rem 0;
  background: white;
}

.testimonial-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.stars i {
  color: #f59e0b;
}

/* ==================== FAQ SECTION ==================== */
.faq-modern {
  padding: 6rem 0;
  background: #f8fafc;
}

.accordion-modern {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 12px !important;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: #f0a12c;
  box-shadow: 0 4px 12px rgba(240, 161, 44, 0.1);
}

.accordion-button {
  font-weight: 600;
  font-size: 1.125rem;
  padding: 1.25rem 1.5rem;
  background: white;
  color: #1e293b;
  border: none;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(240, 161, 44, 0.05);
  color: #f0a12c;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ea353d'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: scale(1.2);
}

.accordion-body {
  padding: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #475569;
  background: white;
}

/* ==================== MOBILE RESPONSIVE - FAQ SECTION ==================== */
@media (max-width: 767.98px) {
  .faq-modern {
    padding: 2.5rem 0;
  }

  .faq-modern .display-4 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem !important;
  }

  .accordion-button {
    font-size: 0.95rem;
    padding: 1rem;
  }

  .accordion-body {
    padding: 1rem;
    font-size: 0.9rem;
  }

  .accordion-item {
    border-radius: 10px !important;
    margin-bottom: 0.75rem;
  }
}

@media (max-width: 575.98px) {
  .accordion-button {
    font-size: 0.875rem;
    padding: 0.875rem;
  }

  .accordion-body {
    padding: 0.875rem;
    font-size: 0.85rem;
  }
}

/* ==================== CTA FINAL SECTION ==================== */
.cta-final {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1e293b;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cta-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(240, 161, 44, 0.92) 0%, rgba(30, 41, 59, 0.88) 100%);
  z-index: 1;
}

.cta-final .container {
  position: relative;
  z-index: 2;
}

/* ==================== MOBILE RESPONSIVE - CTA FINAL ==================== */
@media (max-width: 767.98px) {
  .cta-final {
    min-height: 400px;
  }

  .cta-final .py-6 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .cta-final h2 {
    font-size: 1.75rem !important;
  }

  .cta-final .lead {
    font-size: 1rem;
    margin-bottom: 1.5rem !important;
  }

  .cta-final .btn-lg {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 575.98px) {
  .cta-final {
    min-height: 350px;
  }

  .cta-final h2 {
    font-size: 1.5rem !important;
  }

  .cta-final .lead {
    font-size: 0.9rem;
  }

  .cta-final .btn-lg {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    width: 100%;
  }

  .cta-final .small {
    font-size: 0.75rem;
  }
}

.cta-final h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  font-weight: 800;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.signup-form-inline .form-control {
  padding: 1rem 1.5rem;
  border: 2px solid white;
  border-radius: 12px;
  font-size: 1.125rem;
  background: white;
  transition: all 0.3s ease;
}

.signup-form-inline .form-control:focus {
  border-color: #f0a12c;
  box-shadow: 0 0 0 4px rgba(244, 173, 45, 0.2);
  outline: none;
}

.signup-form-inline .btn-warning {
  background: linear-gradient(135deg, #f0a12c 0%, #f5b857 100%);
  border: none;
  color: #1e293b;
  font-weight: 800;
  padding: 1rem 3rem;
  border-radius: 12px;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(244, 173, 45, 0.4);
  white-space: nowrap;
}

.signup-form-inline .btn-warning:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(244, 173, 45, 0.6);
  color: #1e293b;
}

/* ==================== UTILITIES ==================== */
.bg-gray-50 {
  background-color: #f8fafc;
}

.bg-white {
  background-color: white;
}

.text-white-80 {
  color: rgba(255, 255, 255, 0.9) !important;
}

.fw-bold {
  font-weight: 700;
}

.fw-semibold {
  font-weight: 600;
}

.mb-6 {
  margin-bottom: 4rem;
}

.py-6 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.z-2 {
  z-index: 2;
}

.position-relative {
  position: relative;
}

/* Display helpers */
.display-2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
}

.display-3 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
}

.display-4 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
}

.display-6 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.lead {
  font-size: 1.125rem;
  line-height: 1.6;
}

/* Spacing */
.g-4 {
  gap: 1.5rem;
}

.g-5 {
  gap: 3rem;
}

/* Border radius */
.rounded-4 {
  border-radius: 1rem !important;
}

.rounded-3 {
  border-radius: 0.75rem !important;
}

/* Shadows */
.shadow-lg {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

/* ==================== RESPONSIVE ==================== */
@media (min-width: 992px) {
  .feature-screenshot-container {
    min-height: 550px;
    padding: 3.5rem 2.5rem;
  }

  .feature-screenshot-container img,
  .feature-screenshot-container svg {
    max-height: 750px;
  }
}

@media (max-width: 991px) {
  .features-modern .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .feature-screenshot-container {
    padding: 1.5rem;
    min-height: 350px;
    margin-bottom: 2rem;
  }

  .feature-screenshot-container img,
  .feature-screenshot-container svg {
    max-height: 450px;
  }

  .feature-carousel .carousel-indicators {
    bottom: -2.5rem;
  }

  .feature-carousel .carousel-control-prev {
    left: 5px;
  }

  .feature-carousel .carousel-control-next {
    right: 5px;
  }

  .features-modern,
  .pricing-modern,
  .demo-section,
  .testimonials-modern,
  .faq-modern {
    padding: 3rem 0;
  }

  .pricing-controls-inline {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .pricing-total-inline {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .total-value-inline {
    font-size: 1.5rem;
  }

  .btn-cta-inline {
    width: 100%;
  }

  .how-it-works-mockup {
    margin-bottom: 2rem;
  }

  /* Como Funciona - Mobile adjustments */
  .how-it-works-modern {
    padding: 3rem 0;
  }

  .steps-list {
    gap: 1.5rem;
  }

  .step-item {
    gap: 1rem;
  }

  .step-number-large {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .step-content h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .step-content p {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .how-it-works-mockup {
    max-width: 280px;
  }
}

@media (max-width: 767px) {
  .feature-screenshot-container {
    padding: 1rem;
    min-height: 280px;
  }

  .feature-screenshot-container img,
  .feature-screenshot-container svg {
    max-height: 350px;
  }

  .feature-carousel .carousel-control-icon {
    width: 45px;
    height: 45px;
  }

  .feature-carousel .carousel-control-icon i {
    font-size: 1.25rem;
  }

  .pricing-toggle-compact {
    width: 100%;
    justify-content: center;
  }

  .pricing-cycle-btn {
    flex: 1;
    justify-content: center;
  }

  .module-card-new {
    padding: 1.25rem;
  }

  .demo-header {
    height: 140px;
  }

  .demo-header i {
    font-size: 3rem;
  }

  .step-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .step-number-large {
    margin: 0 auto;
  }

  .step-content h3 {
    font-size: 1.25rem;
  }

  .step-content p {
    font-size: 1rem;
  }

  .cta-final h2 {
    font-size: 2rem;
  }

  .signup-form-inline .form-control,
  .signup-form-inline .btn-warning {
    width: 100%;
  }

  .signup-form-inline .btn-warning {
    padding: 1rem 2rem;
  }
}

/* ==================== COMO FUNCIONA / HOW IT WORKS ==================== */
.how-it-works-modern {
  padding: 4rem 0;
  background: white;
}

.how-it-works-modern .container {
  max-width: 1600px !important;
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.how-it-works-modern .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* Desktop: lado a lado */
@media (min-width: 992px) {
  .how-it-works-modern .row {
    flex-wrap: nowrap;
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }

  .how-it-works-modern .col-lg-5,
  .how-it-works-modern .col-lg-7 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
}

.how-it-works-mockup {
  position: relative;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}

.how-it-works-mockup img {
  max-width: 100% !important;
  height: auto;
  display: block;
  margin: 0;
}

.how-it-works-image {
  max-width: 85%;
  height: auto;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.step-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-number-large {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #f0a12c 0%, #d88a1f 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(240, 161, 44, 0.3);
  transition: all 0.3s ease;
}

.step-item:hover .step-number-large {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 35px rgba(240, 161, 44, 0.4);
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 1.125rem;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #64748b;
}

/* Step Card Alternative Style */
.step-card {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.step-card:hover {
  border-color: #f0a12c;
  box-shadow: 0 12px 24px rgba(240, 161, 44, 0.1);
  transform: translateY(-8px);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f0a12c 0%, #d88a1f 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 16px rgba(240, 161, 44, 0.3);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: rgba(240, 161, 44, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.step-icon i {
  font-size: 2rem;
  color: #f0a12c;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* ==================== SEGMENT PAGES DARK HERO ==================== */
.hero-segment-dark {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #1e293b 100%);
}

.hero-segment-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-segment-dark .container {
  position: relative;
  z-index: 2;
}

.hero-segment-dark h1 {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-segment-dark .text-gradient-yellow {
  background: linear-gradient(135deg, #fbbf24 0%, #fcd34d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

/* Hero específico para pizzarias com imagem de fundo */
.hero-segment-pizzaria {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Hero específico para hamburguerias com imagem de fundo */
.hero-segment-hamburgueria {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-segment-hamburgueria::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-segment-hamburgueria .hero-segment-overlay {
  z-index: 2;
}

.hero-segment-hamburgueria .container {
  position: relative;
  z-index: 3;
}

.hero-segment-hamburgueria h1 {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-segment-hamburgueria .text-gradient-yellow {
  background: linear-gradient(135deg, #fbbf24 0%, #fcd34d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

/* Hero específico para cafeterias com imagem de fundo */
.hero-segment-cafeteria {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-segment-cafeteria::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-segment-cafeteria .hero-segment-overlay {
  z-index: 2;
}

.hero-segment-cafeteria .container {
  position: relative;
  z-index: 3;
}

.hero-segment-cafeteria h1 {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.hero-segment-cafeteria .text-gradient-yellow {
  background: linear-gradient(135deg, #facc15 0%, #fde68a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

/* Hero específico para restaurantes com salão com imagem de fundo */
.hero-segment-restaurante {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-segment-restaurante::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-segment-restaurante .hero-segment-overlay {
  z-index: 2;
}

.hero-segment-restaurante .container {
  position: relative;
  z-index: 3;
}

.hero-segment-restaurante h1 {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-segment-restaurante .text-gradient-yellow {
  background: linear-gradient(135deg, #facc15 0%, #fde68a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

/* Hero específico para sorveterias/açaíterias com imagem de fundo */
.hero-segment-sorveteria {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-segment-sorveteria::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-segment-sorveteria .hero-segment-overlay {
  z-index: 2;
}

.hero-segment-sorveteria .container {
  position: relative;
  z-index: 3;
}

.hero-segment-sorveteria h1 {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.hero-segment-sorveteria .text-gradient-yellow {
  background: linear-gradient(135deg, #fde047 0%, #fef08a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

/* Hero específico para lanchonetes com imagem de fundo */
.hero-segment-lanchonete {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-segment-lanchonete::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.35) 0%, rgba(15, 23, 42, 0.85) 100%);
  z-index: 1;
}

.hero-segment-lanchonete .hero-segment-overlay {
  z-index: 2;
}

.hero-segment-lanchonete .container {
  position: relative;
  z-index: 3;
}

.hero-segment-lanchonete h1 {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.hero-segment-lanchonete .text-gradient-yellow {
  background: linear-gradient(135deg, #fbbf24 0%, #fde68a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

/* Hero específico para padarias com imagem de fundo */
.hero-segment-padaria {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-segment-padaria::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.35) 0%, rgba(15, 23, 42, 0.8) 100%);
  z-index: 1;
}

.hero-segment-padaria .hero-segment-overlay {
  z-index: 2;
}

.hero-segment-padaria .container {
  position: relative;
  z-index: 3;
}

.hero-segment-padaria h1 {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.hero-segment-padaria .text-gradient-yellow {
  background: linear-gradient(135deg, #fbbf24 0%, #fde68a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

/* Hero específico para restaurantes de sushi com imagem de fundo */
.hero-segment-sushi {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-segment-sushi::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.35) 0%, rgba(15, 23, 42, 0.85) 100%);
  z-index: 1;
}

.hero-segment-sushi .container {
  position: relative;
  z-index: 2;
}

.hero-segment-sushi h1 {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.hero-segment-sushi .text-gradient-yellow {
  background: linear-gradient(135deg, #fcd34d 0%, #fde68a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.hero-segment-pizzaria::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-segment-pizzaria .hero-segment-overlay {
  z-index: 2;
}

.hero-segment-pizzaria .container {
  position: relative;
  z-index: 3;
}

.hero-segment-pizzaria h1 {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-segment-pizzaria .text-gradient-yellow {
  background: linear-gradient(135deg, #fbbf24 0%, #fcd34d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

@media (max-width: 768px) {
  .hero-segment-dark {
    min-height: 50vh;
    padding: 3rem 0;
  }

  .hero-segment-dark h1 {
    font-size: 2rem;
  }

  .hero-segment-food-truck {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    padding: 4rem 0 5rem;
    background-size: cover;
    background-position: center bottom;
  }

  .hero-segment-food-truck .hero-segment-overlay {
    background: rgba(12, 19, 36, 0.6);
  }

  .hero-segment-food-truck .text-dark,
  .hero-segment-food-truck .text-dark * {
    color: #ffffff !important;
  }

  .hero-segment-food-truck .lead {
    color: rgba(255, 255, 255, 0.92) !important;
  }

  .hero-segment-food-truck .btn-outline-dark {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.8) !important;
  }

  .hero-segment-food-truck .btn-outline-dark:hover,
  .hero-segment-food-truck .btn-outline-dark:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
  }

  .hero-segment-hamburgueria,
  .hero-segment-cafeteria,
  .hero-segment-restaurante,
  .hero-segment-lanchonete,
  .hero-segment-padaria,
  .hero-segment-sorveteria,
  .hero-segment-sushi,
  .hero-segment-pizzaria {
    min-height: 70vh;
    padding: 4rem 0 5rem;
    background-position: 70% center;
  }

  .hero-segment-hamburgueria h1,
  .hero-segment-cafeteria h1,
  .hero-segment-restaurante h1,
  .hero-segment-lanchonete h1,
  .hero-segment-padaria h1,
  .hero-segment-sorveteria h1,
  .hero-segment-sushi h1,
  .hero-segment-pizzaria h1 {
    font-size: 2rem;
  }
}

/* ==================== PRICING BANNER FOR SEGMENTS ==================== */
.pricing-banner-segment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 1.75rem;
  background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
  border: 2px solid #fbbf24;
  border-radius: 16px;
  flex-wrap: wrap;
}

.pricing-banner-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.pricing-banner-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #f0a12c 0%, #d88a1f 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-banner-icon i {
  font-size: 1.5rem;
  color: white;
}

.pricing-banner-text h4 {
  font-size: 1rem;
  color: #1a120b;
}

.pricing-banner-text p {
  font-size: 0.9375rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .pricing-banner-segment {
    flex-direction: column;
    text-align: center;
  }
  
  .pricing-banner-content {
    flex-direction: column;
  }
  
  .pricing-banner-segment .btn {
    width: 100%;
  }
}

/* ==================== FEATURE CARDS MODERN ==================== */
.feature-card-modern {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #f0a12c 0%, #d88a1f 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #f0a12c;
}

.feature-card-modern:hover::before {
  transform: scaleX(1);
}

.feature-icon-modern {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #fef3f2 0%, #fee2e2 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.feature-card-modern:hover .feature-icon-modern {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, #f0a12c 0%, #d88a1f 100%);
}

.feature-icon-modern i {
  font-size: 2.5rem;
  color: #f0a12c;
  transition: all 0.3s ease;
}

.feature-card-modern:hover .feature-icon-modern i {
  color: white;
  transform: scale(1.1);
}

.feature-card-modern h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.feature-card-modern p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

.feature-card-modern .text-black {
  color: #0f172a !important;
}

.module-feature-card {
  text-align: left;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

.module-feature-card .feature-icon-modern {
  margin: 0 0 1rem 0;
  width: 56px;
  height: 56px;
}

.module-feature-card .badge {
  font-size: 0.6875rem;
  border-radius: 9999px;
  padding: 0.3rem 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.module-feature-card .module-price {
  min-height: 1.5rem;
}

.module-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.module-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
  line-height: 1.4;
}

.module-features-list li i {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.module-feature-card .price-value {
  font-size: 1.25rem;
}

.module-feature-card .price-free {
  font-size: 1.1rem;
}


@media (max-width: 991px) {
  .feature-card-modern {
    padding: 1.75rem 1.25rem;
  }

  .feature-icon-modern {
    width: 70px;
    height: 70px;
  }

  .feature-icon-modern i {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .feature-card-modern {
    padding: 1.5rem 1rem;
  }

  .feature-icon-modern {
    width: 64px;
    height: 64px;
  }

  .feature-icon-modern i {
    font-size: 1.75rem;
  }

  .feature-card-modern h3 {
    font-size: 1rem;
  }

  .feature-card-modern p {
    font-size: 0.875rem;
  }

  .module-feature-card {
    padding: 1.5rem 1.25rem;
  }

}

/* ==================== CTA CARD MODERN ==================== */
.cta-card-modern {
  background: linear-gradient(135deg, #fef3f2 0%, #fff7ed 100%);
  border: 2px solid #fed7aa;
  border-radius: 24px;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-card-modern::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(240, 161, 44, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-card-modern::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(244, 173, 45, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-card-modern h2,
.cta-card-modern p,
.cta-card-modern .btn {
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .cta-card-modern {
    padding: 2rem 1.5rem;
  }

  .cta-card-modern h2 {
    font-size: 1.75rem;
  }
}

/* ==================== GLOBAL MOBILE OPTIMIZATIONS ==================== */
/* Consolidação de estilos responsivos para experiência mobile perfeita */

@media (max-width: 767.98px) {
  /* Container and spacing improvements */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .py-6 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .mb-5 {
    margin-bottom: 2rem !important;
  }

  .mb-6 {
    margin-bottom: 2rem !important;
  }

  /* Typography adjustments for mobile */
  .display-3 {
    font-size: 2rem;
  }

  .display-4 {
    font-size: 1.75rem;
  }

  .display-5 {
    font-size: 1.5rem;
  }

  .display-6 {
    font-size: 1.25rem;
  }

  .lead {
    font-size: 1rem;
  }

  .fs-5 {
    font-size: 1rem !important;
  }

  /* Improved touch targets */
  .btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Better card spacing */
  .row.g-3 {
    --bs-gutter-x: 0.75rem;
    --bs-gutter-y: 0.75rem;
  }

  .row.g-4 {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
  }

  /* Hide certain elements on mobile for cleaner UI */
  .d-md-block {
    display: none !important;
  }

  /* Improve section headers alignment */
  .text-center.mx-auto {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 575.98px) {
  /* Extra small screens optimizations */
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .py-5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-6 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .display-3 {
    font-size: 1.75rem;
  }

  .display-4 {
    font-size: 1.5rem;
  }

  .display-5 {
    font-size: 1.25rem;
  }

  .display-6 {
    font-size: 1.125rem;
  }

  .lead {
    font-size: 0.95rem;
  }

  /* Reduce card border radius on smaller screens */
  .card,
  .module-card-new,
  .testimonial-card,
  .step-item {
    border-radius: 10px;
  }

  /* Better gutter on small screens */
  .row.g-3 {
    --bs-gutter-x: 0.5rem;
    --bs-gutter-y: 0.5rem;
  }
}

/* ==================== MOBILE UTILITIES ==================== */
/* Utility classes for mobile-specific styling */

.mobile-text-center {
  text-align: center !important;
}

.mobile-full-width {
  width: 100% !important;
}

@media (min-width: 768px) {
  .mobile-text-center {
    text-align: inherit !important;
  }

  .mobile-full-width {
    width: auto !important;
  }
}

/* ==================== TOUCH DEVICE OPTIMIZATIONS ==================== */
@media (hover: none) {
  /* Remove hover effects on touch devices for better UX */
  .demo-card-modern:hover,
  .step-item:hover,
  .module-card-new:hover,
  .feature-card-modern:hover,
  .testimonial-card:hover {
    transform: none;
  }

  /* Keep visual feedback for taps */
  .demo-card-modern:active,
  .step-item:active,
  .module-card-new:active {
    transform: scale(0.98);
  }
}
/* ========================================
   menui HOME - MODERN DARK PREMIUM
   Design ultra-moderno inspirado em Linear, Vercel, Stripe
   ======================================== */

/* ==================== HERO MODERN - WARM DARK (FOOD-FRIENDLY) ==================== */
/* Paleta baseada na logo menui: #ef9f2d (laranja) e #f7ebcd (creme) */
.hero-modern {
  position: relative;
  min-height: 100vh;
  padding: 7rem 0 5rem;
  background: #151210; /* Marrom escuro quente - como café */
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Animated Gradient Background */
.hero-modern-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
  animation: float 25s ease-in-out infinite;
}

/* Tons claros e suaves - laranja/pêssego/cream */
.gradient-orb-1 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%); /* Laranja claro/pêssego */
  top: -25%;
  right: -15%;
  animation-delay: 0s;
  opacity: 0.25;
}

.gradient-orb-2 {
  width: 450px;
  height: 450px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); /* Amarelo suave */
  bottom: -15%;
  left: -10%;
  animation-delay: -8s;
  opacity: 0.2;
}

.gradient-orb-3 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #fef3e8 0%, #fed7aa 100%); /* Cream/pêssego claro */
  top: 50%;
  left: 25%;
  opacity: 0.2;
  animation-delay: -16s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(240, 161, 44, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 161, 44, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, black 70%, transparent 100%);
}

.hero-modern-container {
  position: relative;
  z-index: 10;
}

.hero-modern-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

/* Left Column - Content */
.hero-modern-content {
  max-width: 620px;
}

.hero-modern-title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: #1a120b;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
}

.gradient-text {
  background: linear-gradient(135deg, #f97316 0%, #f0a12c 50%, #ea580c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-modern-subtitle {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #6b5e52;
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.hero-modern-subtitle strong {
  color: #1a120b;
  font-weight: 600;
}

/* ===== Pricing Block ===== */
.hero-pricing-block {
  margin-bottom: 1.75rem;
  max-width: 540px;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid #e8ddd0;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.hero-pricing-header {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}

.hero-pricing-badge {
  display: inline-block;
  width: fit-content;
  padding: 0.3rem 0.8rem;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 999px;
  color: #059669;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-pricing-trust {
  font-size: 0.8rem;
  color: #8a7d72;
  margin-top: 0.15rem;
}

.hero-pricing-tiers {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.hero-pricing-tier {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.1rem 0.75rem;
  border-radius: 14px;
  text-align: center;
}

.hero-pricing-tier--free {
  background: #ecfdf5;
  border: 1.5px solid #a7f3d0;
}

.hero-pricing-tier--paid {
  background: #fef9f3;
  border: 1.5px solid #f0e5d8;
}

.hero-pricing-tier-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #8a7d72;
  margin-bottom: 0.15rem;
}

.hero-pricing-tier-threshold {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a120b;
  margin-bottom: 0.5rem;
}

.hero-pricing-tier-price {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.hero-pricing-tier--free .hero-pricing-tier-price {
  color: #059669;
}

.hero-pricing-tier--paid .hero-pricing-tier-price {
  color: #1a120b;
}

.hero-pricing-tier-detail {
  font-size: 0.75rem;
  color: #8a7d72;
  font-weight: 500;
}

.hero-pricing-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.35rem;
  color: #c4b5a5;
  flex-shrink: 0;
}

/* ===== Feature Chips ===== */
.hero-features-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  background: rgba(26, 18, 11, 0.04);
  border: 1px solid rgba(26, 18, 11, 0.08);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #4a3f36;
  white-space: nowrap;
  transition: all 0.15s ease;
}

.hero-chip:hover {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.2);
  color: #059669;
}

.hero-chip svg {
  flex-shrink: 0;
  opacity: 0.6;
}

/* Social Proof */
.hero-modern-proof {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: #ffffff;
  border: 1px solid #f0e5d8;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.proof-avatars {
  display: flex;
  align-items: center;
}

.proof-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--avatar-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
  margin-left: -10px;
  border: 2px solid #fffbf5;
  transition: transform 0.2s ease;
}

.proof-avatar:first-child { margin-left: 0; }
.proof-avatar:hover { transform: translateY(-2px); z-index: 10; }

.proof-avatar-count {
  background: linear-gradient(135deg, #1a120b 0%, #2e231a 100%);
  font-size: 0.75rem;
  border: 2px solid #f0e5d8;
}

.proof-text {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.proof-stars {
  display: flex;
  gap: 2px;
}

.proof-text > span {
  font-size: 0.875rem;
  color: #6b5e52;
}

.proof-text > span strong {
  color: #1a120b;
}

/* Social Links in Hero Proof */
.proof-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  padding-left: 1rem;
  border-left: 1px solid #f0e5d8;
}

.proof-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(26, 18, 11, 0.04);
  border: 1px solid rgba(26, 18, 11, 0.08);
  color: #6b5e52;
  transition: all 0.15s ease;
}

.proof-social-link:hover {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.2);
  color: #059669;
}

.proof-social-link svg {
  flex-shrink: 0;
}

/* App Store Links */
.hero-app-stores {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
}

.hero-app-stores-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6b5e52;
}

.hero-app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.875rem;
  background: #1a120b;
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.15s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-app-store-btn:hover {
  background: #2e231a;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 18, 11, 0.2);
}

.hero-app-store-btn svg {
  flex-shrink: 0;
}

/* ========== TRUST BAR ========== */
.trust-bar {
  background: #ffffff;
  border-top: 1px solid #f0e5d8;
  border-bottom: 1px solid #f0e5d8;
  padding: 1rem 0;
}

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

.trust-bar-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-bar-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6b5e52;
  white-space: nowrap;
}

.trust-bar-buttons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-bar-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.4375rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.15s ease;
}

.trust-bar-btn--dark {
  background: #1a120b;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-bar-btn--dark:hover {
  background: #2e231a;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 18, 11, 0.15);
}

.trust-bar-btn svg {
  flex-shrink: 0;
}

.trust-bar-divider {
  width: 1px;
  height: 28px;
  background: #e5ddd4;
  flex-shrink: 0;
}

.trust-bar-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.625rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #4a3c2e;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.15s ease;
  background: rgba(26, 18, 11, 0.03);
  border: 1px solid rgba(26, 18, 11, 0.06);
}

.trust-bar-social-link:hover {
  background: rgba(26, 18, 11, 0.06);
  color: #1a120b;
  transform: translateY(-1px);
}

.trust-bar-social-link svg {
  flex-shrink: 0;
}

/* Feature Pills - now a semantic ul */
.hero-modern-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: #ffffff;
  border: 1px solid #f0e5d8;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4a3c2e;
  transition: all 0.2s ease;
}

.feature-pill:hover {
  background: #fef3e8;
  border-color: #f0a12c;
  color: #1a120b;
}

.feature-pill svg {
  color: #22c55e;
}

/* Right Column - Form */
.hero-modern-form-wrapper {
  display: flex;
  justify-content: center;
}

.hero-modern-form-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 2.5rem;
  background: #ffffff;
  border: 1px solid #f0e5d8;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.form-card-glow {
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #22c55e, transparent);
  border-radius: 100px;
}

.form-card-header-modern {
  text-align: center;
  margin-bottom: 2rem;
}

.form-card-header-modern .form-card-title,
.form-card-header-modern h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a120b;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.form-card-header-modern .form-card-subtitle,
.form-card-header-modern p {
  font-size: 0.9375rem;
  color: #6b5e52;
  margin: 0;
}

/* Modern Form Styles */
.hero-modern-form {
  display: flex;
  flex-direction: column;
}

.form-group-modern {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

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

.form-label-modern {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #4a3c2e;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input-modern {
  width: 100%;
  padding: 0.875rem 1rem;
  background: #fefbf7;
  border: 1px solid #e5dfd5;
  border-radius: 12px;
  font-size: 1rem;
  color: #1a120b;
  transition: all 0.2s ease;
}

.form-input-modern::placeholder {
  color: #9ca3af;
}

.form-input-modern:focus {
  outline: none;
  border-color: #22c55e;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.btn-submit-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 1.5rem;
  margin-top: 0.5rem;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%); /* Verde Sucesso */
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.35);
}

.btn-submit-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.4);
}

.btn-submit-modern:active {
  transform: translateY(0);
}

.signup-submit-button {
  position: relative;
}

.signup-submit-button:disabled,
.signup-submit-button.is-loading {
  cursor: wait;
  pointer-events: none;
}

.signup-submit-default-text,
.signup-submit-loading-text,
.signup-submit-spinner,
.signup-submit-icon {
  display: inline-flex;
  align-items: center;
}

.signup-submit-loading-text,
.signup-submit-spinner {
  display: none;
}

.signup-submit-button.is-loading .signup-submit-default-text,
.signup-submit-button.is-loading .signup-submit-icon {
  display: none;
}

.signup-submit-button.is-loading .signup-submit-loading-text,
.signup-submit-button.is-loading .signup-submit-spinner {
  display: inline-flex;
}

.signup-submit-spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: currentColor;
  border-radius: 999px;
  animation: signup-submit-spin 0.75s linear infinite;
  flex-shrink: 0;
}

@keyframes signup-submit-spin {
  to {
    transform: rotate(360deg);
  }
}

.form-footer-modern {
  text-align: center;
  font-size: 0.8125rem;
  color: #9ca3af;
  margin-top: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-modern-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-modern-content {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-modern-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-modern-proof {
    justify-content: center;
  }

  .trust-bar-inner {
    gap: 1.5rem;
  }
  
  .hero-modern-features {
    justify-content: center;
  }
  
  .hero-modern-form-card {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-modern {
    padding: 5rem 0 2.5rem;
    min-height: auto;
    align-items: flex-start;
  }
  
  .hero-modern .hero-modern-title {
    font-size: 2rem;
    line-height: 1.15;
    margin-bottom: 1rem;
  }

  .hero-modern .hero-modern-proof {
    display: none;
  }

  .trust-bar-inner {
    flex-direction: column;
    gap: 0.75rem;
  }

  .trust-bar-group {
    flex-direction: column;
    gap: 0.375rem;
  }

  .trust-bar-divider {
    width: 60px;
    height: 1px;
  }

  .trust-bar-social-link span {
    display: none;
  }
  
  .hero-modern .form-row-modern {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .hero-modern .hero-modern-form-card {
    padding: 1.25rem;
    border-radius: 16px;
    text-align: left;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  }
  
  .hero-modern .feature-pill {
    font-size: 0.75rem;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
  }

  .hero-modern .hero-modern-grid {
    gap: 0rem;
  }

  .hero-modern .hero-modern-content {
    align-items: center;
    text-align: center;
    padding-top: 0.75rem;
  }

  .hero-modern .hero-modern-subtitle {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.5;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.1rem;
  }

  .hero-modern .hero-pricing-block {
    padding: 1rem;
    border-radius: 16px;
    margin-bottom: 1.25rem;
    text-align: left;
  }

  .hero-modern .hero-pricing-header {
    margin-bottom: 1rem;
  }

  .hero-modern .hero-pricing-tier {
    padding: 0.85rem 0.5rem;
    border-radius: 10px;
  }

  .hero-modern .hero-pricing-tier-price {
    font-size: 1.3rem;
  }

  .hero-modern .hero-pricing-tier-threshold {
    font-size: 0.78rem;
  }

  .hero-modern .hero-features-chips {
    justify-content: center;
    margin-bottom: 1.25rem;
  }

  .hero-modern .hero-chip {
    font-size: 0.72rem;
    padding: 0.3rem 0.6rem;
  }
  
  .hero-modern .form-card-header-modern {
    text-align: left;
    margin-bottom: 1rem;
  }

  .hero-modern .form-card-header-modern .form-card-title {
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
  }

  .hero-modern .form-card-header-modern .form-card-subtitle {
    font-size: 0.875rem;
  }

  .hero-modern .hero-modern-features {
    display: none;
  }
  
  .hero-modern .form-label-modern {
    font-size: 0.7rem;
    text-transform: none;
    letter-spacing: 0.01em;
    margin-bottom: 0.25rem;
  }
  
  .hero-modern .form-input-modern {
    padding: 0.65rem 0.85rem;
    font-size: 1rem;
    border-radius: 8px;
  }
  
  .hero-modern .btn-submit-modern {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    border-radius: 8px;
    margin-top: 0.25rem;
  }
  
  .hero-modern .form-footer-modern {
    text-align: left;
    font-size: 0.7rem;
    margin-top: 0.75rem;
  }

  .hero-modern .form-group-modern {
    gap: 0.15rem;
  }
}

/* ==================== NAVBAR MODERN DARK ==================== */
.hero-modern ~ .features-clean,
.hero-modern ~ section {
  /* Sections after hero return to light */
}

/* =========================
   PARTNER REGISTRATION PAGE
   ========================= */

.partner-registration-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.75rem, 8vw, 6.5rem) 0 5rem;
  background:
    radial-gradient(circle at top left, rgba(240, 161, 44, 0.22), transparent 30%),
    linear-gradient(180deg, #fffdf9 0%, #fff7eb 100%);
}

.partner-registration-hero__background {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.partner-registration-hero__orb {
  position: absolute;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  filter: blur(22px);
  opacity: 0.55;
}

.partner-registration-hero__orb--primary {
  top: -7rem;
  left: -6rem;
  background: rgba(240, 161, 44, 0.22);
}

.partner-registration-hero__orb--secondary {
  right: -5rem;
  bottom: 2rem;
  background: rgba(46, 213, 115, 0.16);
}

.partner-registration-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 18, 11, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 18, 11, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 50%, transparent 92%);
}

.partner-registration-shell {
  position: relative;
  z-index: 1;
}

.partner-registration-back-btn {
  margin-bottom: 1.5rem;
}

.partner-registration-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 430px);
  gap: 3rem;
  align-items: start;
}

.partner-registration-copy {
  max-width: 680px;
}

.partner-registration-brand {
  margin-bottom: 1.4rem;
}

.partner-registration-brand__logo {
  display: block;
  width: auto;
  max-width: min(210px, 55vw);
  height: 52px;
  object-fit: contain;
}

.partner-registration-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  margin-bottom: 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(240, 161, 44, 0.14);
  background: rgba(255, 255, 255, 0.78);
  color: var(--brand-primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.partner-registration-title {
  margin: 0 0 1rem;
  color: #1a120b;
  font-size: clamp(2.35rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.partner-registration-subtitle {
  margin: 0 0 1.6rem;
  max-width: 620px;
  color: #6b5e52;
  font-size: 1.08rem;
  line-height: 1.75;
}

.partner-registration-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.partner-registration-proof__item,
.partner-registration-benefit-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #f0e5d8;
  border-radius: 1.25rem;
  box-shadow: 0 18px 40px rgba(26, 18, 11, 0.07);
}

.partner-registration-proof__item {
  padding: 1rem 1.1rem;
}

.partner-registration-proof__item strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #1a120b;
  font-size: 0.95rem;
}

.partner-registration-proof__item span {
  color: #6b5e52;
  font-size: 0.9rem;
  line-height: 1.5;
}

.partner-registration-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.partner-registration-benefit-card {
  padding: 1.35rem;
}

.partner-registration-benefit-card__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.partner-registration-benefit-card h2 {
  margin: 0 0 0.55rem;
  color: #1a120b;
  font-size: 1.02rem;
}

.partner-registration-benefit-card p {
  margin: 0;
  color: #6b5e52;
  font-size: 0.92rem;
  line-height: 1.6;
}

.partner-registration-support {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.partner-registration-support p {
  margin: 0;
  color: #4a3f36;
  font-weight: 600;
}

.partner-registration-support__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(240, 161, 44, 0.12);
  color: #9a5f10;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.partner-registration-support__link:hover {
  transform: translateY(-1px);
  background: rgba(240, 161, 44, 0.18);
  color: #7a4b0c;
}

.partner-registration-card {
  position: relative;
  padding: 2rem;
  border-radius: 1.75rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(253, 251, 247, 0.94) 100%);
  border: 1px solid #f0e5d8;
  box-shadow: 0 26px 60px rgba(26, 18, 11, 0.12);
  backdrop-filter: blur(10px);
}

.partner-registration-card__glow {
  position: absolute;
  top: -1px;
  left: 18%;
  right: 18%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #22c55e, transparent);
}

.partner-registration-card__header {
  margin-bottom: 1.4rem;
}

.partner-registration-card__eyebrow {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: #9a5f10;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.partner-registration-card__header h2 {
  margin: 0 0 0.55rem;
  color: #1a120b;
  font-size: 1.7rem;
  letter-spacing: -0.02em;
}

.partner-registration-card__header p,
.partner-registration-form__footer,
.partner-registration-form__hint {
  color: #8a7d72;
}

.partner-registration-card__header p {
  margin: 0;
  line-height: 1.6;
}

.partner-registration-errors {
  margin-bottom: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(185, 28, 28, 0.16);
  background: rgba(185, 28, 28, 0.06);
  color: #8b1e2d;
}

.partner-registration-errors strong {
  display: block;
  margin-bottom: 0.4rem;
}

.partner-registration-errors ul {
  margin: 0;
  padding-left: 1rem;
}

.partner-registration-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.partner-registration-form .field_with_errors {
  display: contents;
}

.partner-registration-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.partner-registration-label {
  color: #4a3c2e;
  font-size: 0.85rem;
  font-weight: 700;
}

.partner-registration-input {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.9rem 1rem;
  border-radius: 0.95rem;
  border: 1px solid #e5dfd5;
  background: #fff;
  color: #1a120b;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.partner-registration-input::placeholder {
  color: #9ca3af;
}

.partner-registration-input:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 4px rgba(240, 161, 44, 0.14);
}

.partner-registration-input.is-invalid {
  border-color: #dc3545;
}

.partner-registration-password-field {
  position: relative;
}

.partner-registration-input--with-toggle {
  padding-right: 3rem;
}

.partner-registration-password-toggle {
  position: absolute;
  top: 50%;
  right: 0.85rem;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #8a7d72;
  font-size: 1.1rem;
  padding: 0.25rem;
}

.partner-registration-form__hint,
.partner-registration-form__footer {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
}

.partner-registration-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  min-height: 3.4rem;
  margin-top: 0.25rem;
  border: 0;
  border-radius: 1rem;
  background: var(--gradient-primary);
  box-shadow: 0 16px 36px rgba(240, 161, 44, 0.28);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partner-registration-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(240, 161, 44, 0.32);
}

.partner-registration-submit:disabled,
.partner-registration-submit.is-loading {
  cursor: wait;
  pointer-events: none;
}

.partner-registration-submit .signup-submit-loading-text,
.partner-registration-submit .signup-submit-spinner {
  display: none;
}

.partner-registration-submit.is-loading .signup-submit-default-text {
  display: none;
}

.partner-registration-submit.is-loading .signup-submit-loading-text,
.partner-registration-submit.is-loading .signup-submit-spinner {
  display: inline-flex;
  align-items: center;
}

.partner-registration-submit .signup-submit-spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: currentColor;
  border-radius: 999px;
  animation: signup-submit-spin 0.75s linear infinite;
}

.partner-registration-login {
  margin-top: 1.35rem;
  padding-top: 1.25rem;
  border-top: 1px solid #f0e5d8;
  text-align: center;
}

.partner-registration-login p {
  margin: 0 0 0.6rem;
  color: #6b5e52;
}

.partner-registration-login__link {
  color: #9a5f10;
  font-weight: 700;
  text-decoration: none;
}

.partner-registration-login__link:hover {
  color: #7a4b0c;
  text-decoration: underline;
}

@media (max-width: 991px) {
  .partner-registration-grid {
    grid-template-columns: 1fr;
  }

  .partner-registration-copy {
    max-width: none;
  }

  .partner-registration-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .partner-registration-hero {
    padding: 5.75rem 0 3.5rem;
  }

  .partner-registration-grid {
    gap: 1.5rem;
  }

  .partner-registration-title {
    font-size: 2.2rem;
  }

  .partner-registration-subtitle {
    font-size: 1rem;
    line-height: 1.65;
  }

  .partner-registration-proof,
  .partner-registration-benefits {
    grid-template-columns: 1fr;
  }

  .partner-registration-card {
    padding: 1.35rem;
    border-radius: 1.3rem;
  }
}

/* ==================== CLIENT SHOWCASE ==================== */
.client-showcase {
  position: relative;
  z-index: 4;
  margin-top: 0;
  padding: 2rem 0 1.5rem;
}

.client-showcase-shell {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  background:
    radial-gradient(circle at top right, rgba(240, 161, 44, 0.16), transparent 34%),
    linear-gradient(180deg, #fffdf9 0%, #ffffff 100%);
  border: 1px solid #f0e5d8;
  border-radius: 28px;
  box-shadow: 0 22px 60px rgba(26, 18, 11, 0.08);
}

.client-showcase-header {
  max-width: 640px;
  margin-bottom: 1.5rem;
}

.client-showcase-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  margin-bottom: 0.9rem;
  background: rgba(240, 161, 44, 0.12);
  color: #c97d19;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.client-showcase-title {
  margin: 0 0 0.55rem;
  color: #1a120b;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.client-showcase-subtitle {
  margin: 0;
  color: #6b5e52;
  font-size: 1rem;
  line-height: 1.65;
}

.client-showcase-marquee {
  display: flex;
  gap: 1rem;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.client-showcase-marquee:hover .client-showcase-track,
.client-showcase-marquee:focus-within .client-showcase-track {
  animation-play-state: paused;
}

.client-showcase-track {
  display: flex;
  gap: 1rem;
  flex: 0 0 auto;
  min-width: max-content;
  animation: client-showcase-marquee 68s linear infinite;
}

.client-showcase-card {
  width: 240px;
  min-height: 122px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(240, 229, 216, 0.95);
  border-radius: 20px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(26, 18, 11, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.client-showcase-card:hover,
.client-showcase-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(240, 161, 44, 0.4);
  box-shadow: 0 16px 34px rgba(240, 161, 44, 0.16);
  text-decoration: none;
}

.client-showcase-card:focus-visible {
  outline: 3px solid rgba(34, 197, 94, 0.24);
  outline-offset: 3px;
}

.client-showcase-card-logo {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff7ed 0%, #fffbf5 100%);
  border: 1px solid #f5e7d2;
  border-radius: 18px;
  overflow: hidden;
}

.client-showcase-card-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-showcase-card-initial {
  color: #c97d19;
  font-size: 1.5rem;
  font-weight: 800;
}

.client-showcase-card-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.client-showcase-card-name {
  color: #1a120b;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.35;
}

.client-showcase-card-meta {
  color: #7a6a5e;
  font-size: 0.78rem;
  line-height: 1.4;
}

.client-showcase-card-separator {
  margin: 0 0.25rem;
}

.client-showcase-card-cta {
  grid-column: 2;
  color: #16a34a;
  font-size: 0.8rem;
  font-weight: 700;
}

@keyframes client-showcase-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 1rem));
  }
}

@media (max-width: 640px) {
  .client-showcase {
    margin-top: 0;
    padding: 1.5rem 0 1rem;
  }

  .client-showcase-shell {
    padding: 1.25rem;
    border-radius: 20px;
  }

  .client-showcase-header {
    margin-bottom: 1rem;
  }

  .client-showcase-title {
    font-size: 1.35rem;
  }

  .client-showcase-subtitle {
    font-size: 0.92rem;
  }

  .client-showcase-card {
    width: 216px;
    min-height: 112px;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 0.75rem;
    padding: 0.85rem;
    border-radius: 18px;
  }

  .client-showcase-card-logo {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .client-showcase-card-name {
    font-size: 0.88rem;
  }

  .client-showcase-card-meta,
  .client-showcase-card-cta {
    font-size: 0.74rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-showcase-marquee {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
    padding-bottom: 0.25rem;
  }

  .client-showcase-track {
    animation: none;
  }

  .client-showcase-track-clone {
    display: none;
  }
}

/* Hero-aware navbar - when on dark hero, use appropriate styling */
body.home-index .navbar-modern {
  background: rgba(255, 251, 245, 0.95) !important; /* Cream claro */
  border-bottom: 1px solid rgba(240, 161, 44, 0.12) !important;
  box-shadow: 0 4px 24px rgba(26, 18, 11, 0.06) !important;
  backdrop-filter: blur(12px) !important;
}

body.home-index .navbar-modern .navbar-brand {
  color: #1a120b;
}

body.home-index .nav-link-modern {
  color: #4a3c2e;
  font-weight: 500;
}

body.home-index .nav-link-modern:hover {
  color: #1a120b;
  background: rgba(240, 161, 44, 0.08);
}

body.home-index .btn-nav-ghost {
  color: #4a3c2e;
  background: #ffffff;
  border-color: rgba(240, 161, 44, 0.25);
  font-weight: 500;
}

body.home-index .btn-nav-ghost:hover {
  background: rgba(240, 161, 44, 0.08);
  border-color: rgba(240, 161, 44, 0.4);
  color: #1a120b;
}

body.home-index .navbar-modern .navbar-toggler {
  color: #1a120b;
  border-color: rgba(240, 161, 44, 0.25);
}

body.home-index .navbar-modern .navbar-toggler:hover {
  background: rgba(240, 161, 44, 0.08);
}

body.home-index .navbar-modern .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2826, 18, 11, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

body.home-index .btn-mobile-login {
  color: #1a120b;
  background: #ffffff;
  border-color: rgba(240, 161, 44, 0.3);
  font-weight: 600;
}

body.home-index .btn-mobile-login:hover {
  background: rgba(240, 161, 44, 0.08);
  color: #d88a1f;
  border-color: rgba(240, 161, 44, 0.5);
}

@media (max-width: 991px) {
  body.home-index .navbar-modern .navbar-collapse {
    background: rgba(255, 251, 245, 0.98);
    border: 1px solid rgba(240, 161, 44, 0.15);
    box-shadow: 0 4px 16px rgba(26, 18, 11, 0.08);
  }
}

/* ==================== SEGMENT PAGES - Dark Header ==================== */
/* All segment pages use segments#show controller action */
body.segments-show .navbar-modern {
  background: rgba(21, 18, 16, 0.85) !important;
  border-bottom: 1px solid rgba(239, 159, 45, 0.1) !important;
  box-shadow: none !important;
}

body.segments-show .navbar-modern .navbar-brand {
  color: #ffffff;
}

body.segments-show .nav-link-modern {
  color: rgba(247, 235, 205, 0.75);
}

body.segments-show .nav-link-modern:hover {
  color: #f7ebcd;
  background: rgba(239, 159, 45, 0.1);
}

body.segments-show .btn-nav-ghost {
  color: rgba(247, 235, 205, 0.9);
  background: transparent;
  border-color: rgba(239, 159, 45, 0.2);
}

body.segments-show .btn-nav-ghost:hover {
  background: rgba(239, 159, 45, 0.1);
  border-color: rgba(239, 159, 45, 0.35);
  color: #f7ebcd;
}

body.segments-show .navbar-modern .navbar-toggler {
  color: #f7ebcd;
  border-color: rgba(239, 159, 45, 0.2);
}

body.segments-show .navbar-modern .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28247, 235, 205, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

body.segments-show .btn-mobile-login {
  color: #1a120b;
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(239, 159, 45, 0.3);
  font-weight: 600;
}

body.segments-show .btn-mobile-login:hover {
  background: #ffffff;
  color: #f0a12c;
  border-color: rgba(239, 159, 45, 0.5);
}

@media (max-width: 991px) {
  body.segments-show .navbar-modern .navbar-collapse {
    background: rgba(21, 18, 16, 0.98);
    border: 1px solid rgba(239, 159, 45, 0.12);
  }
}

/* Keep old hero styles for backward compatibility */
.hero-v3 {
  position: relative;
  padding: 8rem 0 6rem;
  background: #fff;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-v3-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(240, 161, 44, 0.08) 0%, rgba(255, 255, 255, 0) 50%);
  z-index: 0;
}

.hero-v3-container {
  position: relative;
  z-index: 10;
}

.hero-v3-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Left Column */
.hero-v3-content {
  max-width: 600px;
}

.hero-v3-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #fff9f0;
  border: 1px solid #ffe0b2;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #d88a1f;
  margin-bottom: 1.5rem;
}

.hero-v3-badge svg {
  color: #f0a12c;
}

.hero-v3-title {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #1a120b;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.text-highlight-v3 {
  color: #f0a12c;
  position: relative;
  white-space: nowrap;
}

.text-highlight-v3::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 12px;
  background: rgba(240, 161, 44, 0.2);
  z-index: -1;
  transform: skewX(-10deg);
}

.hero-v3-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #5a4a3b;
  margin-bottom: 2.5rem;
}

.hero-v3-actions {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.btn-hero-v3-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.125rem 2.5rem;
  background: #1a120b;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  width: fit-content;
}

.btn-hero-v3-primary:hover {
  background: #f0a12c;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(240, 161, 44, 0.3);
  color: #fff;
}

/* Trust Section */
.hero-v3-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.trust-avatars-v3 {
  display: flex;
  align-items: center;
}

.avatar-v3 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  margin-left: -12px;
}

.avatar-v3:first-child { margin-left: 0; }

.avatar-v3-count {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1a120b;
  color: white;
  border: 3px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  margin-left: -12px;
}

.trust-text-v3 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stars-v3 {
  display: flex;
  gap: 2px;
}

.trust-text-v3 span {
  font-size: 0.875rem;
  font-weight: 600;
  color: #4a3c2e;
}

/* Features Grid */
.hero-v3-features {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.feature-item-v3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #4a3c2e;
}

/* Right Column: CSS Phone Mockup */
.hero-v3-visual {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.css-phone-mockup {
  width: 300px;
  height: 600px;
  background: #fff;
  border-radius: 40px;
  border: 8px solid #1a120b;
  position: relative;
  box-shadow: 
    0 50px 100px -20px rgba(0,0,0,0.2),
    0 30px 60px -30px rgba(0,0,0,0.3),
    inset 0 0 0 2px rgba(0,0,0,0.1);
  transform: rotateY(-10deg) rotateX(5deg);
  transition: transform 0.5s ease;
  overflow: hidden;
}

.css-phone-mockup:hover {
  transform: rotateY(0deg) rotateX(0deg);
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 25px;
  background: #1a120b;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  z-index: 20;
}

.phone-screen {
  height: 100%;
  background: #f8f9fa;
  padding: 40px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* App UI Elements */
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.app-menu-icon, .app-cart-icon {
  width: 32px;
  height: 32px;
  background: #e9ecef;
  border-radius: 8px;
}

.app-logo-placeholder {
  width: 100px;
  height: 24px;
  background: #e9ecef;
  border-radius: 4px;
}

.app-banner {
  height: 140px;
  background: linear-gradient(135deg, #f0a12c 0%, #d88a1f 100%);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: flex-end;
}

.banner-content {
  width: 100%;
}

.banner-title {
  width: 60%;
  height: 16px;
  background: rgba(255,255,255,0.3);
  border-radius: 4px;
  margin-bottom: 8px;
}

.banner-btn {
  width: 40%;
  height: 24px;
  background: white;
  border-radius: 100px;
}

.app-categories {
  display: flex;
  gap: 8px;
}

.cat-pill {
  width: 60px;
  height: 24px;
  background: #e9ecef;
  border-radius: 100px;
}

.cat-pill.active {
  background: #1a120b;
  width: 80px;
}

.app-products {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-card-skeleton {
  display: flex;
  gap: 12px;
  background: white;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.prod-img {
  width: 60px;
  height: 60px;
  background: #e9ecef;
  border-radius: 8px;
}

.prod-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.prod-title {
  width: 80%;
  height: 12px;
  background: #e9ecef;
  border-radius: 4px;
}

.prod-price {
  width: 40%;
  height: 12px;
  background: #e9ecef;
  border-radius: 4px;
}

/* Floating Notification */
.order-notification {
  position: absolute;
  bottom: 30px;
  left: -40px;
  background: white;
  padding: 12px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatNotification 4s infinite ease-in-out;
  z-index: 30;
  border: 1px solid #f0f0f0;
}

.notif-icon {
  width: 40px;
  height: 40px;
  background: #22c55e;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

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

.notif-text strong {
  font-size: 0.9rem;
  color: #1a120b;
}

.notif-text span {
  font-size: 0.8rem;
  color: #6b5e52;
}

@keyframes floatNotification {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Responsive V3 */
@media (max-width: 992px) {
  .hero-v3-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-v3-content {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-v3-actions {
    align-items: center;
  }
  
  .hero-v3-features {
    justify-content: center;
  }
  
  .css-phone-mockup {
    width: 280px;
    height: 560px;
  }
  
  .order-notification {
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
    width: max-content;
  }
  
  @keyframes floatNotification {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -10px); }
  }
}

/* ==================== LOGO CLOUD ==================== */
.logo-cloud-section {
  padding: 3rem 0;
  background: #ffffff;
  border-top: 1px solid #f0e5d8;
  border-bottom: 1px solid #f0e5d8;
}

.logo-cloud-text {
  text-align: center;
  font-size: 0.9375rem;
  color: #6b5e52;
  margin-bottom: 1.5rem;
}

.logo-cloud-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #4a3c2e;
  font-weight: 500;
}

.trust-badge i {
  font-size: 1.25rem;
  color: #f0a12c;
}

/* ==================== FEATURES SECTION ==================== */
.features-clean {
  padding: 6rem 0;
  background: #ffffff;
}

.section-header-clean {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section-eyebrow {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(240, 161, 44, 0.1);
  color: #c97d19;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-title-clean {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #1a120b;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle-clean {
  font-size: 1.125rem;
  color: #6b5e52;
  line-height: 1.6;
}

.features-grid-clean {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card-clean {
  padding: 2.25rem;
  background: linear-gradient(135deg, #ffffff 0%, #fdfbf7 100%);
  border: 1px solid #f0e5d8;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-card-clean::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(240, 161, 44, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card-clean:hover::before {
  opacity: 1;
}

.feature-card-clean:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
  border-color: rgba(240, 161, 44, 0.5);
  background: linear-gradient(135deg, #ffffff 0%, #fffbf5 100%);
}

.feature-icon-clean {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-clean:hover .feature-icon-clean {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.feature-icon-clean i {
  font-size: 1.75rem;
  color: #ffffff;
}

.feature-icon-clean svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.feature-card-clean h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: #1a120b;
  margin-bottom: 1rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.feature-card-clean:hover h3 {
  color: #f0a12c;
}

.feature-card-clean p {
  font-size: 0.9375rem;
  color: #6b5e52;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-list-clean li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: #4a3c2e;
  line-height: 1.5;
  transition: all 0.2s ease;
  padding-left: 0;
  margin-left: 0;
}

.feature-card-clean:hover .feature-list-clean li {
  color: #1a120b;
}

.feature-list-clean li i {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: inline-block;
}

/* Override the white icon from public_icons.css for check marks in feature cards */
.feature-list-clean li i.bi-check2::before {
  background-image: url('data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20width%3D%2716%27%20height%3D%2716%27%20fill%3D%27%2322c55e%27%20class%3D%27bi%20bi-check2%27%20viewBox%3D%270%200%2016%2016%27%3E%20%20%3Cpath%20d%3D%27M13.854%203.646a.5.5%200%200%201%200%20.708l-7%207a.5.5%200%200%201-.708%200l-3.5-3.5a.5.5%200%201%201%20.708-.708L6.5%2010.293l6.646-6.647a.5.5%200%200%201%20.708%200%27/%3E%3C/svg%3E');
}

/* ==================== WHATSAPP BOT HIGHLIGHT SECTION ==================== */
.whatsapp-bot-highlight {
  padding: 6rem 0;
  background:
    radial-gradient(circle at top left, rgba(37, 211, 102, 0.12) 0%, transparent 28%),
    radial-gradient(circle at bottom right, rgba(240, 161, 44, 0.18) 0%, transparent 32%),
    linear-gradient(180deg, #fffdf9 0%, #faf5ed 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid #f0e5d8;
  border-bottom: 1px solid #f0e5d8;
}

.whatsapp-bot-highlight::before {
  content: '';
  position: absolute;
  inset: auto auto -180px -140px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(26, 18, 11, 0.06) 0%, transparent 72%);
  border-radius: 50%;
  pointer-events: none;
}

.whatsapp-bot-highlight::after {
  content: '';
  position: absolute;
  inset: 56px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 161, 44, 0.35), transparent);
  pointer-events: none;
}

.whatsapp-bot-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.whatsapp-bot-content .section-eyebrow {
  color: #1f9d55;
}

.whatsapp-bot-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #1a120b;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.gradient-text-whatsapp {
  background: linear-gradient(135deg, #1f9d55 0%, #128c7e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.whatsapp-bot-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #6b5e52;
  margin-bottom: 2rem;
  max-width: 540px;
}

.whatsapp-bot-subtitle strong {
  color: #1a120b;
}

.whatsapp-bot-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.whatsapp-bot-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #eadccb;
  border-radius: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 14px 30px rgba(111, 83, 56, 0.08);
}

.whatsapp-bot-feature-item:hover {
  background: #ffffff;
  border-color: rgba(31, 157, 85, 0.24);
  transform: translateX(4px) translateY(-2px);
  box-shadow: 0 18px 40px rgba(111, 83, 56, 0.12);
}

.wbot-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1f9d55 0%, #128c7e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.wbot-icon .bi,
.wbot-phone-avatar .bi,
.whatsapp-bot-cta .bi {
  width: 1.1rem;
  height: 1.1rem;
}

.wbot-icon svg {
  flex-shrink: 0;
}

.wbot-icon .bi-robot::before,
.wbot-icon .bi-journal-text::before,
.wbot-icon .bi-headset::before,
.wbot-phone-avatar .bi-whatsapp::before,
.whatsapp-bot-cta .bi-whatsapp::before {
  background-size: 1em 1em;
  background-repeat: no-repeat;
  background-position: center;
}

.wbot-icon .bi-robot::before {
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" viewBox="0 0 16 16"%3E%3Cpath d="M6 1a2 2 0 0 1 4 0v1h1.5A1.5 1.5 0 0 1 13 3.5V6h.5A1.5 1.5 0 0 1 15 7.5v4A1.5 1.5 0 0 1 13.5 13H13v.5a1.5 1.5 0 0 1-1.5 1.5h-7A1.5 1.5 0 0 1 3 13.5V13h-.5A1.5 1.5 0 0 1 1 11.5v-4A1.5 1.5 0 0 1 2.5 6H3V3.5A1.5 1.5 0 0 1 4.5 2H6zm3 1a1 1 0 1 0-2 0v1h2zm-4.5 1a.5.5 0 0 0-.5.5V6h8V3.5a.5.5 0 0 0-.5-.5zm8 4h-9a.5.5 0 0 0-.5.5v4a.5.5 0 0 0 .5.5H4v1.5a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 .5-.5V12h.5a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 0-.5-.5"/%3E%3Cpath d="M6 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2m4 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2m-5.5 3a.5.5 0 0 1 .5-.5h6a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5"/%3E%3C/svg%3E');
}

.wbot-icon .bi-journal-text::before {
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" viewBox="0 0 16 16"%3E%3Cpath d="M5.5 2A1.5 1.5 0 0 0 4 3.5v9A1.5 1.5 0 0 0 5.5 14H13V2zM3 3.5A2.5 2.5 0 0 1 5.5 1H14v13H5.5A2.5 2.5 0 0 1 3 11.5z"/%3E%3Cpath d="M5 4.5A.5.5 0 0 1 5.5 4h6a.5.5 0 0 1 0 1h-6a.5.5 0 0 1-.5-.5m0 2A.5.5 0 0 1 5.5 6h6a.5.5 0 0 1 0 1h-6a.5.5 0 0 1-.5-.5m0 2A.5.5 0 0 1 5.5 8h4a.5.5 0 0 1 0 1h-4A.5.5 0 0 1 5 8.5m0 2A.5.5 0 0 1 5.5 10h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5"/%3E%3C/svg%3E');
}

.wbot-icon .bi-headset::before {
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" viewBox="0 0 16 16"%3E%3Cpath d="M8 1a5 5 0 0 0-5 5v1.07A2 2 0 0 0 2 9v2a2 2 0 0 0 2 2h1V8H4V6a4 4 0 1 1 8 0v2h-1v5h1a2 2 0 0 0 2-2V9a2 2 0 0 0-1-1.73V6a5 5 0 0 0-5-5"/%3E%3Cpath d="M6 12.5A1.5 1.5 0 0 1 7.5 11h1A1.5 1.5 0 0 1 10 12.5v.5A1.5 1.5 0 0 1 8.5 14h-1A1.5 1.5 0 0 1 6 13z"/%3E%3C/svg%3E');
}

.wbot-phone-avatar .bi-whatsapp::before,
.whatsapp-bot-cta .bi-whatsapp::before {
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" viewBox="0 0 16 16"%3E%3Cpath d="M13.601 2.326A7.85 7.85 0 0 0 8.011 0C3.599 0 .013 3.583.013 7.991c0 1.408.368 2.782 1.066 3.993L0 16l4.127-1.08a7.96 7.96 0 0 0 3.884 1.002h.003c4.411 0 7.997-3.583 7.997-7.991a7.93 7.93 0 0 0-2.41-5.605M8.014 14.57a6.6 6.6 0 0 1-3.35-.912l-.24-.142-2.45.64.654-2.388-.156-.245a6.56 6.56 0 0 1-1.013-3.53c0-3.632 2.961-6.588 6.6-6.588a6.56 6.56 0 0 1 4.675 1.94A6.54 6.54 0 0 1 14.6 7.99c-.002 3.633-2.963 6.588-6.586 6.588m3.613-4.925c-.198-.099-1.17-.578-1.352-.644-.18-.067-.312-.1-.444.1s-.51.644-.624.776c-.114.133-.23.149-.428.05-.198-.1-.837-.308-1.594-.982-.589-.525-.987-1.174-1.102-1.372-.114-.198-.012-.305.087-.403.09-.09.198-.231.297-.347.099-.116.132-.198.198-.33.067-.133.034-.248-.017-.347-.05-.1-.444-1.07-.608-1.463-.16-.385-.322-.332-.444-.338l-.378-.007a.73.73 0 0 0-.528.248c-.181.198-.691.677-.691 1.652s.708 1.918.807 2.05c.099.133 1.393 2.128 3.376 2.983.472.204.84.326 1.127.417.474.15.905.129 1.245.078.38-.057 1.17-.479 1.336-.942.165-.463.165-.859.115-.942-.05-.083-.182-.133-.38-.232"/%3E%3C/svg%3E');
}

.wbot-feat-name {
  font-size: 1rem;
  font-weight: 600;
  color: #1a120b;
  margin-bottom: 0.25rem;
}

.wbot-feat-desc {
  font-size: 0.875rem;
  color: #6b5e52;
  line-height: 1.5;
  margin: 0;
}

.whatsapp-bot-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #1f9d55 0%, #128c7e 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 12px 30px rgba(18, 140, 126, 0.22);
}

.whatsapp-bot-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(18, 140, 126, 0.28);
  color: #ffffff;
}

/* WhatsApp Phone Mockup */
.whatsapp-bot-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.wbot-phone-mockup {
  width: clamp(238px, 19vw, 278px);
  aspect-ratio: 9 / 19.5;
  background: #ffffff;
  border-radius: 34px;
  overflow: hidden;
  border: 8px solid #1a120b;
  box-shadow:
    0 32px 70px rgba(61, 41, 19, 0.22),
    0 18px 28px rgba(61, 41, 19, 0.12);
  transform: perspective(1000px) rotateY(-7deg) rotateX(3deg);
  transition: transform 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  font-size: 14px !important;
}

.wbot-phone-mockup:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.wbot-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px 3px;
  background: #075e54;
  color: #ffffff;
  font-size: 14px !important;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.wbot-status-icons {
  display: flex;
  align-items: center;
  gap: 2px;
}

.wbot-signal,
.wbot-wifi,
.wbot-battery {
  display: inline-block;
  position: relative;
}

.wbot-signal {
  width: 9px;
  height: 6px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.45) 20%, rgba(255, 255, 255, 0.7) 20% 40%, rgba(255, 255, 255, 0.9) 40% 60%, #fff 60%);
  clip-path: polygon(0 100%, 0 80%, 25% 80%, 25% 55%, 50% 55%, 50% 30%, 75% 30%, 75% 0, 100% 0, 100% 100%);
}

.wbot-wifi {
  width: 8px;
  height: 6px;
}

.wbot-wifi::before,
.wbot-wifi::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  margin: auto;
  border: 1.4px solid transparent;
  border-top-color: #ffffff;
  border-radius: 50%;
}

.wbot-wifi::before {
  width: 8px;
  height: 8px;
}

.wbot-wifi::after {
  width: 5px;
  height: 5px;
}

.wbot-battery {
  width: 12px;
  height: 6px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 2px;
}

.wbot-battery::before {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  width: 8px;
  height: 3px;
  background: #ffffff;
  border-radius: 1px;
}

.wbot-battery::after {
  content: '';
  position: absolute;
  top: 1px;
  right: -2px;
  width: 1px;
  height: 3px;
  background: #ffffff;
  border-radius: 0 1px 1px 0;
}

.wbot-phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 42%;
  height: 18px;
  background: #1a120b;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  z-index: 2;
}

.wbot-phone-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px 6px;
  background: #075e54;
  color: #ffffff;
}

.wbot-contact-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d7c0a6 0%, #ad7f5c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff8f0;
  font-size: 20px;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.wbot-phone-meta {
  min-width: 0;
}

.wbot-header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
}

.wbot-phone-name {
  font-size: 18px !important;
  font-weight: 600;
  margin: 0;
  line-height: 1.1;
}

.wbot-phone-status {
  font-size: 12px !important;
  opacity: 0.78;
  margin: 0;
}

.wbot-header-action {
  display: inline-flex;
  width: 11px;
  height: 11px;
  position: relative;
  opacity: 0.95;
}

.wbot-header-action--video::before {
  content: '';
  position: absolute;
  inset: 2px 3px 2px 1px;
  border: 1.4px solid #ffffff;
  border-radius: 2px;
}

.wbot-header-action--video::after {
  content: '';
  position: absolute;
  top: 3px;
  right: 0;
  width: 3px;
  height: 4px;
  background: #ffffff;
  clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 85%);
}

.wbot-header-action--phone::before {
  content: '';
  position: absolute;
  inset: 2px;
  border: 1.4px solid #ffffff;
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 6px 6px 3px 6px;
  transform: rotate(42deg);
}

.wbot-header-action--menu::before {
  content: '\22EE';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 10px;
  line-height: 1;
}

.wbot-chat-area {
  flex: 1;
  padding: 8px;
  background:
    linear-gradient(rgba(239, 234, 226, 0.94), rgba(239, 234, 226, 0.94)),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.75), transparent 42%),
    linear-gradient(135deg, #f5efe7 0%, #ece5dd 100%);
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-height: 0;
  overflow: hidden;
}

.wbot-chat-date {
  align-self: center;
  padding: 2px 6px;
  background: rgba(255, 248, 213, 0.95);
  color: #76674f;
  border-radius: 4px;
  font-size: 12px !important;
  font-weight: 600;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.wbot-msg {
  max-width: 88%;
  padding: 4px 6px 3px;
  border-radius: 6px;
  font-size: 14px !important;
  line-height: 1.3;
  position: relative;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}

.wbot-msg p {
  margin: 0 0 1px;
  color: #303030;
  font-size: 14px !important;
  line-height: 1.3;
}

.wbot-msg .wbot-msg-spacer {
  display: block;
  height: 6px;
}

.wbot-msg-received {
  align-self: flex-start;
  background: #ffffff;
  border-top-left-radius: 0;
}

.wbot-msg-sent {
  align-self: flex-end;
  background: #dcf8c6;
  border-top-right-radius: 0;
}

.wbot-msg-link {
  color: #0b72c9;
  font-size: 14px !important;
  line-height: 1.3;
  font-weight: 600;
  word-break: break-all;
}

.wbot-msg-time {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  font-size: 12px !important;
  color: #999;
  margin-top: 2px;
}

.wbot-msg-time .wbot-check {
  flex-shrink: 0;
  width: 14px;
  height: auto;
}

.wbot-compose-bar {
  display: flex;
  align-items: center;
  margin-top: auto;
  gap: 4px;
  padding-top: 2px;
}

.wbot-compose-field {
  flex: 1;
  min-height: 18px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  padding: 2px 6px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.wbot-compose-placeholder {
  color: #829097;
  font-size: 14px !important;
}

.wbot-compose-icon {
  display: inline-flex;
  width: 10px;
  height: 10px;
  position: relative;
  flex: 0 0 auto;
}

.wbot-compose-icon--plus {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.wbot-compose-icon--plus::before,
.wbot-compose-icon--plus::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  background: #75858c;
  border-radius: 999px;
}

.wbot-compose-icon--plus::before {
  width: 7px;
  height: 1px;
}

.wbot-compose-icon--plus::after {
  width: 1px;
  height: 7px;
}

.wbot-compose-send {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #00a884;
  position: relative;
  box-shadow: 0 8px 18px rgba(0, 168, 132, 0.22);
}

.wbot-compose-send::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 7px;
  height: 7px;
  background: #ffffff;
  clip-path: polygon(0 48%, 100% 0, 68% 52%, 100% 100%);
}

/* Responsive */
@media (max-width: 1024px) {
  .whatsapp-bot-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .whatsapp-bot-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .whatsapp-bot-cta {
    margin: 0 auto;
  }

  .whatsapp-bot-features {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .whatsapp-bot-highlight {
    padding: 3rem 0;
  }

  .whatsapp-bot-title {
    font-size: 1.75rem;
  }

  .whatsapp-bot-feature-item {
    padding: 0.75rem 1rem;
    text-align: left;
  }

  .wbot-phone-mockup {
    width: min(100%, 260px);
    max-width: 100%;
    transform: none;
  }

  .whatsapp-bot-cta {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.5rem;
  }
}

/* ==================== APP HOME: WHATSAPP BOT CALLOUT ==================== */
.app-home-bot-callout {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: linear-gradient(135deg, #0d1117 0%, #1a2e1f 100%);
  border-radius: 16px;
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.app-home-bot-emoji {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.app-home-bot-callout .app-home-stitle {
  color: #ffffff;
}

.app-home-bot-desc {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.app-home-bot-desc strong {
  color: #e2e8f0;
}

.app-home-bot-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.app-home-bot-feat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(37, 211, 102, 0.08);
  border-radius: 10px;
  font-size: 0.8rem;
  color: #e2e8f0;
}

.app-home-bot-feat span:first-child {
  font-size: 1rem;
}

/* ==================== SCREENSHOT SECTION ==================== */
.screenshot-section {
  padding: 4rem 0 6rem;
  background: linear-gradient(180deg, #ffffff 0%, #faf5ed 100%);
}

.screenshot-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 40px 80px -20px rgba(0, 0, 0, 0.2);
}

.screenshot-image {
  width: 100%;
  height: auto;
  display: block;
}

/* ==================== HOW IT WORKS ==================== */
.how-it-works-clean {
  padding: 6rem 0;
  background: #ffffff;
}

.steps-clean {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.step-clean {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 2rem;
}

.step-number-clean {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #f0a12c 0%, #d88a1f 100%);
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 20px rgba(240, 161, 44, 0.3);
}

.step-content-clean h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a120b;
  margin-bottom: 0.75rem;
}

.step-content-clean p {
  font-size: 0.9375rem;
  color: #6b5e52;
  line-height: 1.5;
}

.step-connector {
  position: absolute;
  top: 32px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #f0a12c, #e0d1bd);
  z-index: -1;
}

.step-clean:last-child .step-connector {
  display: none;
}

/* ==================== PRICING ==================== */
.pricing-clean {
  padding: 6rem 0;
  background: #faf5ed;
}

.pricing-cards-clean {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card-clean {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
  border: 2px solid #f0e5d8;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card-clean:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card-highlighted {
  background: linear-gradient(135deg, #1a120b 0%, #2e231a 100%);
  border-color: transparent;
}

.pricing-card-highlighted .pricing-header-clean h3,
.pricing-card-highlighted .pricing-price-clean,
.pricing-card-highlighted .pricing-description,
.pricing-card-highlighted .pricing-features-clean li {
  color: #ffffff;
}

.pricing-card-highlighted .pricing-features-clean li i {
  color: #f0a12c;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1rem;
  background: linear-gradient(135deg, #f0a12c 0%, #d88a1f 100%);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-header-clean h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a120b;
  margin-bottom: 0.5rem;
}

.pricing-price-clean {
  display: flex;
  align-items: baseline;
  gap: 0.125rem;
  margin-bottom: 0.5rem;
}

.price-currency {
  font-size: 1.25rem;
  font-weight: 600;
  color: #6b5e52;
}

.pricing-card-highlighted .price-currency {
  color: #b8a792;
}

.pricing-card-highlighted .price-value {
  color: #ffffff;
}

.pricing-card-highlighted .price-cents {
  color: #ffffff;
}

.price-value {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: #1a120b;
}

.price-cents {
  font-size: 1.5rem;
  font-weight: 700;
}

.price-period {
  font-size: 1rem;
  color: #8a7a6b;
  margin-left: 0.25rem;
}

.pricing-card-highlighted .price-period {
  color: #b8a792;
}

.pricing-description {
  font-size: 0.875rem;
  color: #8a7a6b;
  margin-bottom: 1.5rem;
}

.pricing-features-clean {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.pricing-features-clean li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: #4a3c2e;
}

.pricing-features-clean li i {
  color: #15803d;
  display: inline-block;
  flex-shrink: 0;
  font-size: 1.25rem;
  line-height: 1;
}

.btn-pricing-clean {
  display: block;
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-pricing-primary {
  background: linear-gradient(135deg, #f0a12c 0%, #d88a1f 100%);
  color: #ffffff;
}

.btn-pricing-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(240, 161, 44, 0.4);
  color: #ffffff;
}

/* New High-Conversion Green Button */
.btn-pricing-green {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.btn-pricing-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
  color: #ffffff;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.btn-pricing-secondary {
  background: #f0a12c;
  color: #1a120b;
}

.btn-pricing-secondary:hover {
  background: #d88a1f;
  color: #ffffff;
}

.pricing-note {
  text-align: center;
  font-size: 0.8125rem;
  color: #b8a792;
  margin-top: 1rem;
}

.pricing-addon-note {
  max-width: 780px;
  margin: 1.5rem auto 0;
  padding: 1rem 1.25rem;
  text-align: center;
  font-size: 0.975rem;
  line-height: 1.6;
  color: #4a3c2e;
  background: linear-gradient(180deg, #fff9ef 0%, #fdf2dc 100%);
  border: 1px solid #f0d7a8;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(26, 18, 11, 0.06);
}

.pricing-addon-note strong {
  color: #1a120b;
}

.pricing-trust {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b5e52;
}

.trust-item i {
  color: #22c55e;
  font-size: 1.25rem;
}

.trust-item i::before {
  filter: brightness(0) saturate(100%) invert(52%) sepia(87%) saturate(449%) hue-rotate(93deg) brightness(95%) contrast(88%);
}

/* ==================== EXAMPLES ==================== */
.examples-clean {
  padding: 6rem 0;
  background: #ffffff;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.example-card {
  background: #fdfbf7;
  border: 1px solid #f0e5d8;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.example-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: #f0a12c;
}

.example-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.example-card h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1a120b;
  margin-bottom: 0.5rem;
}

.example-link {
  font-size: 0.8125rem;
  color: #f0a12c;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.example-card:hover .example-link {
  color: #d88a1f;
}

/* ==================== FAQ ==================== */
.faq-clean {
  padding: 6rem 0;
  background: #faf5ed;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item-clean {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #f0e5d8;
}

.faq-item-clean h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: #1a120b;
  margin-bottom: 0.75rem;
}

.faq-item-clean h3 i {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: inline-block;
}

/* Override the white icon from public_icons.css for question marks in FAQ */
.faq-item-clean h3 i.bi-question-circle::before {
  background-image: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%23f0a12c%22%20class%3D%22bi%20bi-question-circle%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cpath%20d%3D%22M8%2015A7%207%200%201%201%208%201a7%207%200%200%201%200%2014m0%201A8%208%200%201%200%208%200a8%208%200%200%200%200%2016%22/%3E%3Cpath%20d%3D%22M5.255%205.786a.237.237%200%200%200%20.241.247h.825c.138%200%20.248-.113.266-.25.09-.656.54-1.134%201.342-1.134.686%200%201.314.343%201.314%201.168%200%20.635-.374.927-.965%201.371-.673.489-1.206%201.06-1.168%201.987l.003.217a.25.25%200%200%200%20.25.246h.811a.25.25%200%200%200%20.25-.25v-.105c0-.718.273-.927%201.01-1.486.609-.463%201.244-.977%201.244-2.056%200-1.511-1.276-2.241-2.673-2.241-1.267%200-2.655.59-2.75%202.286m1.557%205.763c0%20.533.425.927%201.01.927.609%200%201.028-.394%201.028-.927%200-.552-.42-.94-1.029-.94-.584%200-1.009.388-1.009.94%22/%3E%3C/svg%3E');
}

.faq-item-clean p {
  font-size: 0.9375rem;
  color: #6b5e52;
  line-height: 1.6;
  margin: 0;
}

/* ==================== FINAL CTA ==================== */
.cta-clean {
  padding: 6rem 0;
  background: linear-gradient(135deg, #1a120b 0%, #2e231a 100%);
}

.cta-content-clean {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content-clean h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-content-clean p {
  font-size: 1.125rem;
  color: #b8a792;
  margin-bottom: 2rem;
}

.btn-cta-clean {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.125rem 2.5rem;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.4);
}

.btn-cta-clean:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.5);
  color: #ffffff;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.cta-note {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: #8a7a6b;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .hero-clean-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-clean-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-clean-stats {
    justify-content: center;
  }

  .hero-clean-actions {
    justify-content: center;
  }

  .hero-clean-form-wrapper {
    justify-content: center;
  }

  .hero-clean-form-card {
    max-width: 100%;
  }

  .features-grid-clean {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .examples-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-clean {
    flex-direction: column;
    gap: 2rem;
  }

  .step-connector {
    display: none;
  }

  .step-clean {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .hero-clean {
    padding: 4rem 0 3rem;
    min-height: auto;
  }

  .hero-clean-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-stat-divider {
    display: none;
  }

  .hero-stat {
    align-items: center;
  }

  .features-grid-clean {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .feature-card-clean {
    padding: 1.5rem;
  }
  
  .feature-icon-clean {
    width: 56px;
    height: 56px;
    border-radius: 14px;
  }
  
  .feature-icon-clean i {
    font-size: 1.5rem;
  }
  
  .feature-card-clean h3 {
    font-size: 1.25rem;
  }

  .pricing-cards-clean {
    grid-template-columns: 1fr;
  }

  .examples-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .logo-cloud-badges {
    gap: 1rem;
  }

  .trust-badge span {
    display: none;
  }

  .trust-badge i {
    font-size: 1.5rem;
  }

  .pricing-trust {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-clean-form-card {
    padding: 1.5rem;
  }

  .examples-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .example-card {
    padding: 1rem;
  }

  .example-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .btn-primary-hero,
  .btn-secondary-hero {
    width: 100%;
    justify-content: center;
  }
}

/* ==================== HERO VALUE PROPS ==================== */
.hero-value-props {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.value-prop-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, rgba(240, 161, 44, 0.08) 0%, rgba(250, 235, 203, 0.15) 100%);
  border-radius: 12px;
  border: 1px solid rgba(240, 161, 44, 0.15);
  transition: all 0.2s ease;
}

.value-prop-item:hover {
  background: linear-gradient(135deg, rgba(240, 161, 44, 0.12) 0%, rgba(250, 235, 203, 0.2) 100%);
  transform: translateX(4px);
}

.value-prop-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0a12c 0%, #d88a1f 100%);
  border-radius: 12px;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.value-prop-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.value-prop-text strong {
  font-size: 1rem;
  font-weight: 700;
  color: #1a120b;
}

.value-prop-text span {
  font-size: 0.875rem;
  color: #6b5e52;
}

.hero-trust-text {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: #6b5e52;
}

.hero-trust-text i {
  color: #22c55e;
  margin-right: 0.375rem;
}

.hero-trust-text i::before {
  filter: brightness(0) saturate(100%) invert(58%) sepia(65%) saturate(531%) hue-rotate(90deg) brightness(96%) contrast(90%);
}

.hero-clean-subtitle-large {
  font-size: 1.25rem !important;
  line-height: 1.7 !important;
}

/* ==================== COMPARISON SECTION ==================== */
.comparison-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #fdfbf7 0%, #ffffff 100%);
}

.comparison-header {
  text-align: center;
  margin-bottom: 3rem;
}

.comparison-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #1a120b;
  margin-bottom: 0.75rem;
}

.comparison-header p {
  font-size: 1.125rem;
  color: #6b5e52;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.comparison-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
}

.comparison-competitor {
  opacity: 0.85;
}

.comparison-menui {
  border-color: #f0a12c;
  box-shadow: 0 10px 40px rgba(240, 161, 44, 0.15);
}

.comparison-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.comparison-logo {
  font-size: 1.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #1a120b;
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.9375rem;
}

.comparison-list li:last-child {
  border-bottom: none;
}

.comparison-list li.negative i {
  color: #ef4444;
  flex-shrink: 0;
  margin-top: 2px;
}

.comparison-list li.positive i {
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 2px;
}

.comparison-price {
  background: #f9fafb;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
}

.comparison-price .price-example {
  display: block;
  font-size: 0.875rem;
  color: #6b5e52;
  margin-bottom: 0.25rem;
}

.comparison-price .price-lost {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: #ef4444;
}

.comparison-price-positive {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.05) 100%);
}

.comparison-price .price-kept {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: #22c55e;
}

.comparison-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(240, 161, 44, 0.08) 0%, rgba(250, 235, 203, 0.15) 100%);
  border-radius: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-cta p {
  font-size: 1.125rem;
  color: #1a120b;
  margin-bottom: 1.5rem;
}

/* ==================== PRICING EXPLANATION ==================== */
.pricing-explanation {
  max-width: 600px;
  margin: 3rem auto 0;
}

.explanation-card {
  background: linear-gradient(135deg, #fdfbf7 0%, #faf5ed 100%);
  border: 2px solid #faebcb;
  border-radius: 20px;
  padding: 2rem;
}

.explanation-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a120b;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.explanation-card h4 i {
  color: #f0a12c;
}

.explanation-steps {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.explanation-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: white;
  border-radius: 12px;
  border: 2px solid #e5e7eb;
  transition: border-color 0.2s ease;
}

.explanation-step-free {
  border-left: 4px solid #22c55e;
}

.explanation-step-paid {
  border-left: 4px solid #f0a12c;
}

.step-month {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #e5e7eb;
}

.step-month-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #4a3c2e;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.step-text {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.step-description {
  color: #6b5e52;
  font-size: 0.9375rem;
}

.step-description strong {
  color: #1a120b;
  font-weight: 600;
}

.step-result {
  font-weight: 700;
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.8125rem;
  white-space: nowrap;
}

.step-free {
  background: #dcfce7;
  color: #16a34a;
}

.step-paid {
  background: #fef3c7;
  color: #d97706;
}

/* ==================== CTA SECTION IMPROVEMENTS ==================== */
.cta-eyebrow {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.85);
}

.cta-guarantees {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
  list-style: none;
  padding: 0;
}

.cta-guarantees li,
.cta-guarantees span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-guarantees i {
  color: #4ade80;
}

/* ==================== RESPONSIVE ADJUSTMENTS ==================== */
@media (max-width: 768px) {
  .hero-value-props {
    gap: 0.75rem;
  }
  
  .value-prop-item {
    padding: 0.875rem 1rem;
  }
  
  .value-prop-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .hero-trust-text {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
  
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .comparison-badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.875rem;
  }
  
  .explanation-step {
    flex-direction: row;
    text-align: left;
    padding: 0.875rem 1rem;
    gap: 0.75rem;
  }
  
  .step-month {
    width: 40px;
    height: 40px;
  }
  
  .step-month-name {
    font-size: 0.75rem;
  }
  
  .step-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.375rem;
  }
  
  .step-description {
    font-size: 0.875rem;
  }
  
  .step-result {
    font-size: 0.75rem;
    padding: 0.25rem 0.625rem;
  }
  
  .cta-guarantees {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .pricing-trust {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .value-prop-text strong {
    font-size: 0.9375rem;
  }
  
  .value-prop-text span {
    font-size: 0.8125rem;
  }
  
  .comparison-card {
    padding: 1.5rem;
  }
  
  .comparison-logo {
    font-size: 1.25rem;
  }
  
  .comparison-list li {
    font-size: 0.875rem;
    padding: 0.625rem 0;
  }
}

/* Signup Modal */
.signup-modal {
  border: none;
  border-radius: 24px;
  padding: 0;
  background: transparent;
  max-width: 480px;
  width: 90%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.signup-modal::backdrop {
  background: rgba(26, 18, 11, 0.6);
  backdrop-filter: blur(4px);
}

.modal-content {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 24px;
  position: relative;
}

.btn-close-modal {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #6b5e52;
  cursor: pointer;
  z-index: 10;
}

/* ======================================
   NATIVE APP - Shared Components
   ====================================== */

.app-back-btn-native {
  position: fixed;
  top: env(safe-area-inset-top, 0px);
  left: 0;
  z-index: 1050;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  padding: 14px 16px;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--primary);
  text-decoration: none;
  background: transparent;
  border: none;
  -webkit-tap-highlight-color: transparent;
}

.app-back-btn-native:hover,
.app-back-btn-native:active {
  color: var(--primary);
  text-decoration: none;
  opacity: 0.7;
}

.app-back-btn-native svg {
  flex-shrink: 0;
  margin-right: -2px;
}

/* ======================================
   APP HOME - Native App Public Screen
   Only for logged-out users via Hotwire Native
   ====================================== */

.app-home {
  max-width: 480px;
  margin: 0 auto;
  font-family: var(--font-primary);
  background: var(--gray-50);
  min-height: 100vh;
}

/* Hero with gradient — Menui orange */
.app-home-hero {
  background: linear-gradient(160deg, #f0a12c 0%, #d88a1f 60%, #c97d19 100%);
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
  border-radius: 0 0 28px 28px;
  position: relative;
  overflow: hidden;
}

.app-home-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.app-home-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.app-home-logo {
  height: 44px;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1);
  position: relative;
  z-index: 1;
}

.app-home-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 0.5rem;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.app-home-heading strong {
  color: #fff;
  font-weight: 800;
}

.app-home-subheading {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 1.5rem;
  line-height: 1.45;
  position: relative;
  z-index: 1;
}

.app-home-btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #fff;
  color: #d88a1f;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.9rem 2rem;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.12s ease;
  position: relative;
  z-index: 1;
}

.app-home-btn-hero:active {
  transform: scale(0.97);
  color: #d88a1f;
  text-decoration: none;
}

.app-home-btn-hero:hover {
  color: #d88a1f;
  text-decoration: none;
}

.app-home-hero-enter {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.7rem 1.5rem;
  margin-top: 0.65rem;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  transition: background 0.12s ease;
  position: relative;
  z-index: 1;
}

.app-home-hero-enter:hover,
.app-home-hero-enter:active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
}

/* Highlights strip */
.app-home-highlights {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1rem 1rem;
  gap: 0.75rem;
  position: relative;
  z-index: 2;
}

.app-home-hl {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--white);
  padding: 0.45rem 0.7rem;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gray-700);
  box-shadow: var(--shadow-sm);
  white-space: normal;
  text-align: center;
}

.app-home-hl-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hl-green  { background: #22c55e; }
.hl-blue   { background: #3b82f6; }
.hl-purple { background: #8b5cf6; }

/* Free model callout — Menui revenue threshold (pricing visual) */
.app-home-free-callout {
  background: var(--white);
  border-radius: 16px;
  padding: 1.25rem 1.15rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e8ddd0;
}

.app-home-free-header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.app-home-free-badge {
  display: inline-block;
  width: fit-content;
  padding: 0.25rem 0.65rem;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 999px;
  color: #059669;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.app-home-free-trust {
  font-size: 0.72rem;
  color: var(--gray-500);
  margin-top: 0.1rem;
}

.app-home-free-tiers {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.app-home-free-tier {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.9rem 0.5rem;
  border-radius: 12px;
  text-align: center;
}

.app-home-free-tier--free {
  background: #ecfdf5;
  border: 1.5px solid #a7f3d0;
}

.app-home-free-tier--paid {
  background: #fef9f3;
  border: 1.5px solid #f0e5d8;
}

.app-home-free-tier-label {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-500);
  margin-bottom: 0.1rem;
}

.app-home-free-tier-threshold {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.4rem;
}

.app-home-free-tier-price {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.15rem;
}

.app-home-free-tier--free .app-home-free-tier-price {
  color: #059669;
}

.app-home-free-tier--paid .app-home-free-tier-price {
  color: var(--gray-900);
}

.app-home-free-tier-detail {
  font-size: 0.68rem;
  color: var(--gray-500);
  font-weight: 500;
}

.app-home-free-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.25rem;
  color: #c4b5a5;
  flex-shrink: 0;
}

/* Sections */
.app-home-section {
  margin-bottom: 1.5rem;
  padding: 0 1.25rem;
}

.app-home-stitle {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-800);
  margin: 0 0 0.75rem;
  padding-top: 0.5rem;
}

/* Buttons */
.app-home-btn {
  display: block;
  text-align: center;
  padding: 0.85rem 1.5rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.app-home-btn:active { transform: scale(0.98); }

.app-home-btn-sm {
  padding: 0.7rem 1.25rem;
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

.app-home-btn-primary {
  background: var(--gradient-cta);
  color: #fff;
  border: none;
  box-shadow: var(--shadow-sm);
}

.app-home-btn-primary:hover,
.app-home-btn-primary:active {
  color: #fff;
  text-decoration: none;
  box-shadow: var(--shadow-md);
}

/* Features list */
.app-home-features {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}

.app-home-feat {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--gray-100);
}

.app-home-feat:last-child { border-bottom: none; }

.app-home-feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.feat-brand  { background: rgba(240, 161, 44, 0.1); }
.feat-green  { background: rgba(37, 211, 102, 0.1); }
.feat-blue   { background: rgba(59, 130, 246, 0.1); }
.feat-purple { background: rgba(139, 92, 246, 0.1); }
.feat-orange { background: rgba(245, 158, 11, 0.1); }
.feat-teal   { background: rgba(20, 184, 166, 0.1); }

.app-home-feat-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-800);
  margin: 0;
  line-height: 1.3;
}

.app-home-feat-desc {
  font-size: 0.76rem;
  color: var(--gray-500);
  margin: 0.1rem 0 0;
  line-height: 1.4;
}

/* Differentials — vibrant compact cards */
.app-home-diffs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

.app-home-diff {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
}

.app-home-diff-emoji {
  font-size: 1.1rem;
  line-height: 1;
}

.diff-gradient-1 { background: linear-gradient(135deg, #f0a12c, #f5b857); }
.diff-gradient-2 { background: linear-gradient(135deg, #3b82f6, #60a5fa); }
.diff-gradient-3 { background: linear-gradient(135deg, #14b8a6, #2dd4bf); }
.diff-gradient-4 { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }

/* Pricing card */
.app-home-price {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-xs);
  position: relative;
  overflow: hidden;
}

.app-home-price-badge {
  display: inline-block;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  margin: 0 0 0.75rem;
}

.app-home-price-free {
  font-size: 3rem;
  font-weight: 900;
  color: #22c55e;
  margin: 0;
  line-height: 1.1;
}

.app-home-price-free-sub {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin: 0.15rem 0 0;
  font-weight: 500;
}

.app-home-price-divider {
  width: 40px;
  height: 2px;
  background: var(--gray-200);
  margin: 0.85rem auto;
  border-radius: 1px;
}

.app-home-price-from {
  font-size: 0.78rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.1rem;
}

.app-home-price-val {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin: 0;
  line-height: 1.2;
}

.app-home-price-mo {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-400);
}

.app-home-price-note {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin: 0.35rem 0 0;
}

/* Testimonials */
.app-home-reviews {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.app-home-review {
  background: var(--white);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-xs);
}

.app-home-review-stars {
  color: #f59e0b;
  font-size: 0.8rem;
  margin-bottom: 0.35rem;
  letter-spacing: 0.05em;
}

.app-home-review-text {
  font-size: 0.82rem;
  color: var(--gray-700);
  margin: 0 0 0.3rem;
  line-height: 1.45;
  font-style: italic;
}

.app-home-review-author {
  font-size: 0.7rem;
  color: var(--gray-400);
  font-weight: 600;
  margin: 0;
}

/* Final CTA */
.app-home-final {
  text-align: center;
  padding-bottom: 2rem;
}

.app-home-final-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin: 0 0 0.75rem;
}

.app-home-final-login {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin: 0.75rem 0 0;
}

.app-home-final-login a {
  color: var(--brand-primary);
  font-weight: 600;
  text-decoration: none;
}

/* Inline signup form */
.app-home-form-card {
  background: var(--white);
  border-radius: 18px;
  padding: 1.75rem 1.25rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.app-home-form-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin: 0 0 0.25rem;
}

.app-home-form-sub {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin: 0 0 1.25rem;
}

.app-home-form {
  text-align: left;
}

.app-home-field {
  margin-bottom: 0.85rem;
  flex: 1;
}

.app-home-field-row {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.app-home-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-600);
  margin-bottom: 0.3rem;
}

.app-home-input {
  display: block;
  width: 100%;
  padding: 0.7rem 0.85rem;
  font-size: 0.88rem;
  color: var(--gray-800);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  transition: border-color 0.15s ease;
  box-sizing: border-box;
}

.app-home-input:focus {
  outline: none;
  border-color: var(--brand-primary);
  background: var(--white);
}

.app-home-input::placeholder {
  color: var(--gray-400);
}

.app-home-form-footer {
  text-align: center;
  font-size: 0.72rem;
  color: var(--gray-400);
  margin: 0.75rem 0 0;
}

/* =========================
   MENUI LOGIN PAGE
   ========================= */

.menui-login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background: linear-gradient(160deg, #fffaf3 0%, #fff4e6 40%, #fef0db 100%);
  position: relative;
}

.menui-login-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 24px rgba(240, 161, 44, 0.10), 0 1.5px 6px rgba(0,0,0,0.04);
  border: 1px solid rgba(240, 161, 44, 0.12);
}

.menui-login-header {
  text-align: center;
  margin-bottom: 2rem;
}

.menui-login-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0a12c, #d88a1f);
  color: #fff;
  margin-bottom: 1rem;
}

.menui-login-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2e231a;
  margin-bottom: 0.35rem;
}

.menui-login-header p {
  color: #6b5e52;
  font-size: 0.95rem;
  margin: 0;
}

.menui-login-form {
  display: flex;
  flex-direction: column;
}

.menui-login-field {
  margin-bottom: 1.25rem;
}

.menui-login-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: #2e231a;
  margin-bottom: 0.4rem;
}

.menui-login-input {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 2px solid #e8ddd0;
  border-radius: 0.75rem;
  background: #fffdf9;
  color: #2e231a;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.menui-login-input:focus {
  outline: none;
  border-color: #f0a12c;
  box-shadow: 0 0 0 3px rgba(240, 161, 44, 0.15);
}

.menui-login-input::placeholder {
  color: #b0a090;
}

.menui-password-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #6b5e52;
  cursor: pointer;
  padding: 0.25rem;
  font-size: 1.1rem;
}

.menui-login-forgot-link {
  color: #d88a1f;
  font-size: 0.875rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.menui-login-forgot-link:hover {
  color: #f0a12c;
  text-decoration: underline;
}

.menui-login-btn {
  display: block;
  width: 100%;
  padding: 0.85rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #16a34a, #15803d);
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.25);
}

.menui-login-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(22, 163, 74, 0.3);
  background: linear-gradient(135deg, #15803d, #166534);
}

.menui-login-btn:active {
  transform: translateY(0);
}

.menui-login-divider {
  position: relative;
  text-align: center;
  margin-bottom: 1.5rem;
}

.menui-login-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e8ddd0;
}

.menui-login-divider span {
  position: relative;
  background: #fff;
  padding: 0 1rem;
  color: #b0a090;
  font-size: 0.85rem;
}

.menui-login-signup-text {
  color: #6b5e52;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.menui-login-signup-btn {
  display: block;
  width: 100%;
  padding: 0.8rem;
  font-size: 1rem;
  font-weight: 600;
  color: #d88a1f;
  background: transparent;
  border: 2px solid #f0a12c;
  border-radius: 0.75rem;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.menui-login-signup-btn:hover {
  background: #fef3e8;
  color: #c97d19;
  transform: translateY(-1px);
}

/* Mobile adjustments for login */
@media (max-width: 576px) {
  .menui-login-container {
    padding: 1rem 0.75rem;
  }

  .menui-login-card {
    padding: 2rem 1.5rem;
    border-radius: 1rem;
  }

  .menui-login-header h1 {
    font-size: 1.3rem;
  }
}

/* Public social links visibility */
.header-social-links {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.25rem;
}

.header-social-link {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid rgba(26, 18, 11, 0.18);
  color: #ffffff;
  background: #4a3c2e;
  transition: all 0.2s ease;
}

.header-social-link:hover {
  transform: translateY(-1px);
}

.header-social-link.instagram:hover {
  border-color: #f9a8d4;
  background: #be185d;
  color: #ffffff;
}

.header-social-link.whatsapp:hover {
  border-color: #86efac;
  background: #15803d;
  color: #ffffff;
}

.public-footer .social-link {
  background: #4a3c2e;
  border: 1px solid #4a3c2e;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(26, 18, 11, 0.16);
}

.public-footer .social-link:hover {
  background: #f0a12c;
  border-color: #f0a12c;
  color: #ffffff;
}

@media (max-width: 991px) {
  .header-social-links {
    justify-content: flex-start;
    margin: 0.35rem 0;
  }
}

/* Ensure content is not hidden behind fixed navbar on help center pages */
.help_center-index,
.help_center-show {
  padding-top: 100px;
}

/* ===== Help Center Layout ===== */
.help-center-index,
.help-center-show {
  min-height: 60vh;
}

.help-center-index .container {
  max-width: 1140px;
}

.help-center-search-group {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.08) !important;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.help-center-search-group:focus-within {
  border-color: rgba(255, 126, 29, 0.42) !important;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1) !important;
}

.help-center-search-input {
  min-width: 0;
  background: transparent;
  font-size: 1.08rem;
}

.help-center-search-input::placeholder {
  color: #9ca3af;
}

.help-center-search-input:focus {
  box-shadow: none;
}

.help-center-search-button {
  border-radius: 0.95rem;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  font-weight: 700;
  flex-shrink: 0;
}

/* Help Center — compact neutral search bar (article detail page) */
.help-center-search-bar {
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
  padding: 0.85rem 0;
}

.help-center-search-bar-inner {
  display: flex;
  align-items: center;
}

.help-center-search-bar .help-center-search-group {
  background: #fff;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
}

.help-center-search-bar .help-center-search-button {
  border-radius: 0 0.75rem 0.75rem 0;
}

.help-article-header {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.help-article-breadcrumbs {
  font-size: 0.95rem;
}

.help-breadcrumb-link {
  color: var(--bs-primary);
  font-weight: 600;
  text-decoration: none;
}

.help-breadcrumb-link:hover {
  text-decoration: underline;
}

.help-article-summary {
  max-width: 50rem;
  font-size: clamp(1.12rem, 1.45vw, 1.3rem);
  line-height: 1.7;
  color: #4b5563 !important;
}

.help-article-back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  color: #4b5563;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.help-article-back-link:hover {
  border-color: rgba(255, 126, 29, 0.34);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.help-article-content {
  background: transparent;
}

.help-article-body {
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: clamp(1.05rem, 1.18vw, 1.16rem);
  line-height: 1.82;
  color: #1f2937;
}

.help-article-toc {
  margin: 0 0 1.6rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0.85rem;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.95) 0%, #ffffff 100%);
}

.help-article-toc-title {
  margin-bottom: 0.55rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.help-article-toc-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.help-article-toc-item {
  line-height: 1.35;
}

.help-article-toc-item.is-subitem {
  margin-left: 0.7rem;
}

.help-article-toc-link {
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
}

.help-article-toc-link:hover {
  color: var(--bs-primary);
  text-decoration: underline;
}

.help-related-section {
  position: relative;
}

/* Help Center — article list (index) */
.help-center-index .container {
  max-width: 1440px;
}

.help-article-list {
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.help-article-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0.75rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 0.5rem;
  transition: background 0.15s ease;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.help-article-row:hover {
  background: rgba(15, 23, 42, 0.03);
}

.help-article-row-body {
  flex: 1 1 auto;
  min-width: 0;
}

.help-article-row-title {
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.help-article-row-title a,
.help-article-row-title a:link,
.help-article-row-title a:visited {
  color: #111827;
}

.help-article-row:hover .help-article-row-title a {
  color: var(--bs-primary);
}

.help-article-row-summary {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 64ch;
}

.help-article-row-arrow {
  flex-shrink: 0;
  font-size: 1.25rem;
  color: rgba(15, 23, 42, 0.2);
  transition: color 0.15s ease, transform 0.15s ease;
}

.help-article-row:hover .help-article-row-arrow {
  color: var(--bs-primary);
  transform: translateX(3px);
}

/* Help Center — related article row (show page) */
.help-related-item {
  background: #fff;
  transition: background 0.15s ease;
}

.help-related-item:hover {
  background: var(--bs-light);
}

.help-related-link {
  color: inherit;
}

@media (max-width: 991.98px) {
  .help-center-index .container {
    max-width: 100%;
  }

  .help-article-row {
    padding: 1.1rem 0.5rem;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .help-article-row-title {
    font-size: 1.25rem;
  }

  .help-article-row-arrow {
    font-size: 1rem;
  }

  .help-center-search-button {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .help-article-back-link {
    width: 100%;
  }
}

/* Help Center — article body typography */
.help-article-body h2 { font-size: clamp(1.55rem, 2vw, 1.82rem); font-weight: 800; line-height: 1.25; margin-top: 2.9rem; margin-bottom: .95rem; letter-spacing: -0.02em; scroll-margin-top: 7rem; }
.help-article-body h3 { font-size: clamp(1.24rem, 1.5vw, 1.4rem); font-weight: 750; line-height: 1.35; margin-top: 2.1rem; margin-bottom: .7rem; scroll-margin-top: 7rem; }
.help-article-body p { font-size: 1em; line-height: 1.82; margin-bottom: 1.25rem; }
.help-article-body ul, .help-article-body ol { padding-left: 1.65rem; margin-bottom: 1.35rem; }
.help-article-body li { font-size: 1em; line-height: 1.78; margin-bottom: .5rem; }
.help-article-body figure { margin: 2rem 0; }
.help-article-media-grid { display: grid; gap: 1rem; margin: 2rem 0; }
.help-article-media-grid--two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; }
.help-article-media-grid--three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: start; }
.help-article-media-grid figure { margin: 0; }
.help-article-body figure img { border-radius: .75rem; max-width: 100%; box-shadow: 0 2px 16px rgba(0,0,0,.08); }
.help-article-body figcaption { font-size: .95rem; line-height: 1.6; color: var(--bs-secondary); margin-top: .75rem; text-align: center; }

@media (max-width: 767.98px) {
  .help-article-summary {
    font-size: 1.05rem;
  }

  .help-article-body {
    font-size: 1rem;
    line-height: 1.75;
  }

  .help-article-toc {
    padding: 0.85rem 0.9rem;
  }

  .help-article-toc-link {
    font-size: 0.93rem;
  }

  .help-article-body h2 {
    margin-top: 2.4rem;
  }

  .help-article-media-grid--two-up {
    grid-template-columns: 1fr;
  }

  .help-article-media-grid--three-up {
    grid-template-columns: 1fr;
  }
}

/* ===== Article Lightbox ===== */
.article-lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 1055;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: article-lightbox-fade-in 0.2s ease;
}

@keyframes article-lightbox-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.article-lightbox-body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 98vw;
  max-height: 96vh;
  overflow: hidden;
}

.article-lightbox-img {
  display: block;
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  cursor: zoom-in;
  transition: transform 0.15s ease;
  user-select: none;
}

.article-lightbox-caption {
  color: rgba(255,255,255,.7);
  font-size: .82rem;
  margin-top: .75rem;
  text-align: center;
  max-width: 80vw;
}

.article-lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: rgba(220, 53, 69, 0.85);
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1056;
  transition: background 0.15s ease, transform 0.15s ease;
  line-height: 1;
}

.article-lightbox-close:hover {
  background: rgba(185, 28, 28, 0.95);
  transform: scale(1.1);
}

.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  padding: 0.5rem;
}

.cookie-consent-banner__card {
  max-width: 680px;
  margin: 0 auto;
  background: rgba(26, 18, 11, 0.96);
  color: #fdfbf7;
  border-radius: 16px;
  padding: 0.75rem 0.9rem;
  box-shadow: 0 18px 42px rgba(26, 18, 11, 0.22);
  border: 1px solid rgba(250, 235, 203, 0.18);
}

.cookie-consent-banner--public .cookie-consent-banner__card {
  max-width: 640px;
}

.cookie-consent-banner__main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
}

.cookie-consent-banner__copy {
  display: grid;
  gap: 0.2rem;
}

.cookie-consent-banner__eyebrow {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f5b857;
}

.cookie-consent-banner__title {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.2;
  color: #ffffff;
}

.cookie-consent-banner__text {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(250, 245, 237, 0.9);
  line-height: 1.35;
}

.cookie-consent-banner__text a {
  color: #ffffff;
  text-decoration: underline;
}

.cookie-consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0;
  justify-content: flex-end;
}

.cookie-consent-banner__inline-form,
.cookie-consent-banner__preferences-form {
  margin: 0;
}

.cookie-consent-banner__button {
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.86rem;
  padding: 0.6rem 0.9rem;
  cursor: pointer;
  line-height: 1.2;
}

.cookie-consent-banner__button--primary {
  background: linear-gradient(135deg, #f0a12c 0%, #d88a1f 100%);
  color: #ffffff;
}

.cookie-consent-banner__button--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(250, 235, 203, 0.18);
}

.cookie-consent-banner__details {
  margin-top: 0.55rem;
  border-top: 1px solid rgba(250, 235, 203, 0.18);
  padding-top: 0.55rem;
}

.cookie-consent-banner__summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.86rem;
  color: #ffffff;
}

.cookie-consent-banner__preferences-form {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.55rem;
}

.cookie-consent-banner__option {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.6rem 0.75rem;
  border-radius: 12px;
  background: rgba(250, 235, 203, 0.08);
}

.cookie-consent-banner__option strong,
.cookie-consent-banner__option small {
  display: block;
}

.cookie-consent-banner__option small {
  margin-top: 0.15rem;
  font-size: 0.8rem;
  color: rgba(250, 245, 237, 0.82);
}

.cookie-consent-banner__option input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
}

.cookie-consent-banner__option--locked {
  border: 1px solid rgba(245, 184, 87, 0.28);
}

.cookie-consent-banner__badge {
  white-space: nowrap;
  font-weight: 700;
  color: #f5b857;
}

@media (max-width: 767px) {
  .cookie-consent-banner {
    padding: 0.4rem;
  }

  .cookie-consent-banner__card {
    padding: 0.7rem;
    border-radius: 12px;
  }

  .cookie-consent-banner__main {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .cookie-consent-banner__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cookie-consent-banner__button {
    width: 100%;
  }

  .cookie-consent-banner__option {
    flex-direction: column;
  }
}
