/* =========================================
   VILLA DE LEYVA ONLINE — CSS
   Design System: Premium, Minimal, Bold
   ========================================= */

/* ---- Custom Properties ---- */
:root {
  /* Brand Colors */
  --primary:        #E8762B;
  --primary-dark:   #C4521A;
  --primary-light:  #FDF3EA;
  --primary-50:     #FEF9F4;
  --primary-100:    #FDF3EA;
  --primary-200:    #FAE0C6;
  --primary-500:    #E8762B;
  --primary-600:    #C4521A;
  --primary-700:    #9E3E12;

  /* Neutral */
  --white:          #FFFFFF;
  --gray-50:        #FAFAFA;
  --gray-100:       #F5F5F5;
  --gray-200:       #E5E7EB;
  --gray-300:       #D1D5DB;
  --gray-400:       #9CA3AF;
  --gray-500:       #6B7280;
  --gray-600:       #4B5563;
  --gray-700:       #374151;
  --gray-800:       #1F2937;
  --gray-900:       #111827;
  --dark:           #0F0F1A;

  /* Semantic */
  --text-primary:   #1A1A1A;
  --text-secondary: #6B7280;
  --text-muted:     #9CA3AF;
  --bg-body:        #FFFFFF;
  --bg-alt:         #FAFAFA;
  --border:         #E5E7EB;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Borders */
  --radius-sm:  0.375rem;
  --radius-md:  0.75rem;
  --radius-lg:  1rem;
  --radius-xl:  1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 12px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg:   0 10px 30px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl:   0 20px 50px rgba(0,0,0,0.12), 0 8px 20px rgba(0,0,0,0.08);
  --shadow-glow: 0 0 0 3px rgba(232, 118, 43, 0.2);

  /* Transitions */
  --transition: all 0.25s ease;
  --transition-slow: all 0.4s ease;

  /* Section padding */
  --section-py: 6rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* 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-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

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

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ---- Utility ---- */
.hidden { display: none !important; }
.w-full { width: 100%; }
.text-white { color: var(--white) !important; }
.text-white-70 { color: rgba(255,255,255,0.75) !important; }
.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, #F5A623 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-light {
  background: linear-gradient(135deg, #FFD5A8 0%, #FBBF5E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1;
  white-space: nowrap;
}

.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-xl { padding: 1.125rem 2.25rem; font-size: 1.0625rem; }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(232, 118, 43, 0.35);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
}
.btn-ghost:hover { color: var(--primary); }

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

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

.btn-outline-white {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.7);
}

.btn-outline-white-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.125rem 2.25rem;
  border-radius: var(--radius-full);
  font-size: 1.0625rem;
  font-weight: 600;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.btn-outline-white-lg:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.65);
}

.btn-white {
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--gray-50);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ========================================
   SECTION PATTERNS
   ======================================== */
.section {
  padding: var(--section-py) 0;
}
.section-light {
  background: var(--gray-50);
}
.section-dark {
  background: var(--dark);
}
.section-alt {
  background: var(--primary-50);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}
.section-header-light { color: var(--white); }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 1rem;
  background: var(--primary-100);
  color: var(--primary-dark);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.section-badge-light {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.section-title-sm {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(0,0,0,0.06);
}

.nav-header.scrolled .nav-link { color: var(--text-primary); }
.nav-header.scrolled .logo-name { color: var(--text-primary); }
.nav-header.scrolled .logo-tag { color: var(--primary); }
.nav-header.scrolled .nav-toggle span { background: var(--text-primary); }
.nav-header.scrolled .btn-ghost { color: var(--text-primary); }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-mark { display: flex; align-items: center; }

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

.logo-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: color 0.3s;
}

.logo-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--primary-200);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}

.nav-link {
  padding: 0.5rem 0.875rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  border-radius: var(--radius-full);
  transition: var(--transition);
  letter-spacing: -0.01em;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-cta-ghost {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  color: rgba(255, 255, 255, 0.85);
}
.nav-cta-ghost:hover { color: var(--white); }

.nav-cta {
  font-size: 0.875rem;
  padding: 0.5625rem 1.25rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
}

.mobile-menu.open {
  display: block;
  animation: slideDown 0.2s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-link {
  display: block;
  padding: 0.875rem 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  border-bottom: 1px solid var(--gray-100);
  letter-spacing: -0.01em;
}

.mobile-link:hover { color: var(--primary); }

.mobile-actions {
  margin-top: 1.25rem;
}

.whatsapp-icon {
  display: flex;
  align-items: center;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      #1a0e05 0%,
      #2d1810 25%,
      #3d2212 50%,
      #1a2535 75%,
      #0d1a26 100%
    );
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(232,118,43,0.25) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(200,80,20,0.15) 0%, transparent 50%),
              radial-gradient(ellipse at 60% 80%, rgba(20,60,100,0.2) 0%, transparent 50%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
}

/* Decorative arches simulating colonial architecture */
.hero-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  overflow: hidden;
  opacity: 0.06;
}

.hero-arch {
  position: absolute;
  bottom: 0;
  border: 3px solid var(--white);
  border-radius: 50% 50% 0 0;
}

.hero-arch-1 { width: 280px; height: 200px; left: 5%; }
.hero-arch-2 { width: 320px; height: 230px; left: 22%; }
.hero-arch-3 { width: 260px; height: 190px; right: 8%; }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 8rem 1.5rem 5rem;
  max-width: 880px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

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

.hero-stat strong {
  display: block;
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero-stat span {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.25rem;
  display: block;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(8px); opacity: 0.3; }
}

/* ========================================
   TRUST BAR
   ======================================== */
.trust-bar {
  padding: 2rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.trust-label {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

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

.trust-logo-item {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: color 0.2s;
}

.trust-logo-item:hover { color: var(--primary); }

/* ========================================
   CARDS GRID
   ======================================== */
.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* ========================================
   PROBLEM SECTION
   ======================================== */
.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: var(--transition-slow);
}

.problem-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--primary-200);
}

.problem-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-100);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.problem-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.problem-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.problem-stat {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.problem-stat strong {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.04em;
  line-height: 1;
}

.problem-stat span {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.problem-cta {
  text-align: center;
  background: var(--primary-50);
  border: 1px solid var(--primary-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.problem-cta p {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

/* ========================================
   SOLUTION SECTION
   ======================================== */
.solution-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.solution-visual {
  position: relative;
}

.platform-mockup {
  position: relative;
}

.mockup-browser {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}

.mockup-bar {
  background: var(--gray-100);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--border);
}

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

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
}

.mockup-dots span:nth-child(1) { background: #FF5F57; }
.mockup-dots span:nth-child(2) { background: #FFBD2E; }
.mockup-dots span:nth-child(3) { background: #28C940; }

.mockup-url {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
  flex: 1;
  text-align: center;
}

.mockup-screen {
  padding: 1.5rem;
  min-height: 320px;
  background: var(--gray-50);
}

.mockup-map-area {
  background: linear-gradient(135deg, #D4E8D0 0%, #B8D4BE 100%);
  border-radius: var(--radius-lg);
  height: 180px;
  position: relative;
  margin-bottom: 1rem;
  overflow: hidden;
}

.mockup-map-area::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.3'%3E%3Crect x='0' y='18' width='40' height='1'/%3E%3Crect x='18' y='0' width='1' height='40'/%3E%3C/g%3E%3C/svg%3E");
}

.map-pin {
  position: absolute;
  z-index: 2;
  cursor: pointer;
}

.map-pin-1 { top: 30%; left: 25%; }
.map-pin-2 { top: 50%; left: 55%; }
.map-pin-3 { top: 20%; right: 20%; }

.pin-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  margin-bottom: 4px;
}

.map-pin:hover .pin-tooltip { opacity: 1; }

.mockup-cards {
  display: flex;
  gap: 0.75rem;
}

.mockup-card {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.mc-img {
  height: 60px;
}

.mc-info {
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mc-name {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-primary);
}

.mc-stars {
  font-size: 0.625rem;
  color: #F59E0B;
}

/* Floating notifications */
.float-notification {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 0.625rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}

.float-n1 { bottom: -1.5rem; left: -1.5rem; }
.float-n2 { top: -1rem; right: -1.5rem; }

/* Solution Features */
.solution-features {}

.solution-heading {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.feature-list {
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.125rem 0;
  border-bottom: 1px solid var(--border);
}

.feature-item:last-child { border-bottom: none; }

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item > div:last-child strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.2rem;
}

.feature-item > div:last-child p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.coming-soon-tags {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
}

.badge-soon {
  background: var(--gray-100);
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
}

/* ========================================
   BENEFITS SECTION (Dark)
   ======================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
  transition: var(--transition-slow);
}

.benefit-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(232,118,43,0.4);
  transform: translateY(-4px);
}

.benefit-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  letter-spacing: -0.05em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.benefit-icon {
  width: 52px;
  height: 52px;
  background: rgba(232,118,43,0.15);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.benefit-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.benefit-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* ========================================
   TWO COLUMN LAYOUT (Tourists)
   ======================================== */
.two-col-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.check-list {
  margin-bottom: 2rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
  border-bottom: 1px solid var(--gray-100);
}

.check-list li:last-child { border-bottom: none; }

/* Tourist Experience Mockup */
.tourist-experience {
  position: relative;
  padding: 2rem 1rem;
}

.te-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
}

.te-card-main {}

.te-header { margin-bottom: 1.5rem; }

.te-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--primary-100);
  color: var(--primary-dark);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.te-route {}

.route-step {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
}

.route-dot {
  width: 12px;
  height: 12px;
  border: 2px solid var(--gray-300);
  border-radius: 50%;
  flex-shrink: 0;
}

.route-dot-active {
  background: var(--primary);
  border-color: var(--primary);
}

.route-line {
  width: 2px;
  height: 24px;
  background: var(--gray-200);
  margin-left: 5px;
}

.te-card-small {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: absolute;
  padding: 1rem 1.25rem;
  min-width: 160px;
}

.te-card-small strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.te-card-small span {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.te-card-top { top: 0; right: -1rem; }
.te-card-bottom { bottom: 0; right: -1rem; }

.te-stars { font-size: 1rem; color: #F59E0B; margin-bottom: 0.25rem; }

/* ========================================
   STEPS / HOW IT WORKS
   ======================================== */
.steps-container {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 3rem;
}

.step {
  flex: 1;
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
}

.step-content {}

.step-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-100);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin: 0 auto 1rem;
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.step p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.step-connector {
  padding-top: 1rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: var(--primary);
  opacity: 0.6;
}

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

.steps-note {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ========================================
   USE CASES TABS
   ======================================== */
.use-cases-tabs {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.tabs-nav {
  display: flex;
  border-bottom: 1px solid var(--border);
  background: var(--gray-50);
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs-nav::-webkit-scrollbar { display: none; }

.tab-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.125rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: -0.01em;
}

.tab-btn:hover { color: var(--text-primary); }

.tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background: var(--white);
}

.tabs-content {}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.tab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 400px;
}

.tab-info {
  padding: 3rem;
}

.tab-info h3 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.tab-info > p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.tab-features {
  margin-bottom: 2rem;
}

.tab-features li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.tab-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.tab-features li:last-child { border-bottom: none; }

.tab-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  background: var(--gray-50);
  border-left: 1px solid var(--border);
}

.tab-mockup {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  width: 100%;
  max-width: 300px;
  box-shadow: var(--shadow-md);
}

.tmockup-header { margin-bottom: 1.25rem; }

.tmockup-rating {
  font-size: 0.875rem;
  color: #F59E0B;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.tmockup-rating span {
  color: var(--text-secondary);
  font-size: 0.8125rem;
}

.tmockup-header h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}

.tmockup-header p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.tmockup-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 1.25rem;
}

.tmockup-amenities span {
  padding: 0.25rem 0.625rem;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.tmockup-price {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.tmockup-price strong {
  color: var(--primary);
  font-size: 1.125rem;
  font-weight: 800;
}

.tmockup-cta {
  display: block;
  text-align: center;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-full);
  padding: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.tmockup-cta:hover { background: var(--primary-dark); }

/* ========================================
   PRICING
   ======================================== */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  margin-bottom: 3rem;
}

.toggle-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toggle-discount {
  background: #DCFCE7;
  color: #16A34A;
  padding: 0.125rem 0.5rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.toggle-switch {
  width: 52px;
  height: 28px;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  position: relative;
  transition: background 0.25s;
  cursor: pointer;
  flex-shrink: 0;
}

.toggle-switch.active { background: var(--primary); }

.toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.25s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.toggle-switch.active .toggle-thumb { transform: translateX(24px); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 2rem;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
  transition: var(--transition-slow);
}

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

.pricing-card-featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary), var(--shadow-lg);
}

.pricing-badge-popular {
  position: absolute;
  top: -0.875rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-header {
  margin-bottom: 1.5rem;
}

.plan-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.plan-icon-free { background: var(--gray-100); color: var(--gray-500); }
.plan-icon-premium { background: var(--primary-100); color: var(--primary); }
.plan-icon-pro { background: var(--primary-200); color: var(--primary-dark); }

.plan-name {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.375rem;
}

.plan-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.plan-price {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.price-amount {
  display: block;
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.price-period {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.plan-saving {
  margin-top: 0.75rem;
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: #DCFCE7;
  color: #16A34A;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
}

.plan-features {
  margin-bottom: 1.75rem;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--text-primary);
}

.plan-features li svg { flex-shrink: 0; margin-top: 1px; }
.feature-no { color: var(--text-muted) !important; }

.pricing-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
  background: linear-gradient(135deg, var(--dark) 0%, #1a2535 50%, #0d1620 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(232,118,43,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 30%, rgba(200,80,20,0.08) 0%, transparent 50%);
}

.stats-section .section-header { position: relative; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
  position: relative;
}

.stat-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(8px);
  transition: var(--transition-slow);
}

.stat-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(232,118,43,0.3);
  transform: translateY(-4px);
}

.stat-value {
  display: inline;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-plus {
  display: inline;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.04em;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.75rem;
  line-height: 1.4;
}

.stats-quote {
  text-align: center;
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.stats-quote blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.0625rem, 2vw, 1.3125rem);
  color: rgba(255,255,255,0.9);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.stats-quote blockquote::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary);
  line-height: 0.5;
  vertical-align: -1.5rem;
  margin-right: 0.25rem;
}

.stats-quote cite {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  font-style: normal;
}

/* ========================================
   FAQ
   ======================================== */
.faq-container {
  max-width: 740px;
  margin: 0 auto 3rem;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.375rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
  letter-spacing: -0.01em;
}

.faq-question:hover { color: var(--primary); }

.faq-question[aria-expanded="true"] {
  color: var(--primary);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
}

.faq-answer.open {
  max-height: 300px;
}

.faq-answer p {
  padding-bottom: 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

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

.faq-contact p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* ========================================
   CTA FINAL
   ======================================== */
.cta-final {
  position: relative;
  padding: 7rem 0;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    #1a0e05 0%,
    #2d1810 30%,
    #1a2535 70%,
    #0d1620 100%
  );
}

.cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(232,118,43,0.3) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(180,60,10,0.15) 0%, transparent 45%);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(232,118,43,0.25);
  color: #FFB87A;
  border: 1px solid rgba(232,118,43,0.4);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.cta-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.cta-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.cta-note {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}

/* ========================================
   CONTACT
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-channels {
  margin-bottom: 2rem;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.125rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  margin-bottom: 0.75rem;
  text-decoration: none;
}

.contact-channel:hover {
  background: var(--primary-50);
}

.contact-channel-location { cursor: default; }
.contact-channel-location:hover { background: none; }

.channel-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel-whatsapp { background: #DCFCE7; color: #16A34A; }
.channel-email { background: #EEF2FF; color: #4F46E5; }
.channel-location { background: var(--primary-100); color: var(--primary); }

.contact-channel strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.125rem;
}

.contact-channel span {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 44px;
  height: 44px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary-100);
  color: var(--primary);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact-form {}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group:last-child { margin-bottom: 0; }

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group label span {
  color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  color: var(--text-primary);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
  margin-top: 0.25rem;
}

.form-privacy input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--primary);
}

.form-privacy label {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.form-privacy a {
  color: var(--primary);
  text-decoration: underline;
}

.form-success,
.form-error {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-success { background: #F0FDF4; color: #16A34A; border: 1px solid #BBF7D0; }
.form-error { background: #FEF2F2; color: #DC2626; border: 1px solid #FECACA; }

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--dark);
}

.footer-top {
  padding: 4rem 0;
}

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

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
}

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

.footer-social {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-social:hover {
  background: rgba(232,118,43,0.2);
  color: var(--primary);
}

.footer-links-group h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

.footer-links-group ul { display: flex; flex-direction: column; gap: 0.625rem; }

.footer-links-group a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  letter-spacing: -0.01em;
}

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

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

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

.footer-logo .logo-name { color: var(--white); }
.footer-logo .logo-tag { color: var(--primary-200); }

/* ========================================
   WHATSAPP FLOAT
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37,211,102,0.5);
}

.whatsapp-tooltip {
  position: absolute;
  right: 110%;
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ========================================
   ANIMATIONS
   ======================================== */
.animate-fade-up,
.animate-slide-up,
.animate-fade-left,
.animate-fade-right,
.animate-scale {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-up { transform: translateY(30px); }
.animate-slide-up { transform: translateY(40px); }
.animate-fade-left { transform: translateX(-30px); }
.animate-fade-right { transform: translateX(30px); }
.animate-scale { transform: scale(0.92); }

.animate-fade-up.in-view,
.animate-slide-up.in-view,
.animate-fade-left.in-view,
.animate-fade-right.in-view,
.animate-scale.in-view {
  opacity: 1;
  transform: none;
}

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

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

.animate-float { animation: floating 3s ease-in-out infinite; }
.animate-float.delay-200 { animation-delay: 0.5s; }

/* ========================================
   RESPONSIVE — TABLET (max 1024px)
   ======================================== */
@media (max-width: 1024px) {
  :root { --section-py: 4.5rem; }

  .solution-showcase { grid-template-columns: 1fr; gap: 3rem; }
  .float-n1 { display: none; }
  .float-n2 { top: -0.75rem; right: -0.75rem; }

  .two-col-section { grid-template-columns: 1fr; gap: 3rem; }
  .te-card-top, .te-card-bottom { display: none; }

  .cards-grid-3 { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }

  .steps-container {
    flex-direction: column;
    align-items: center;
  }
  .step { max-width: 300px; }
  .step-connector { transform: rotate(90deg); }

  .tab-grid { grid-template-columns: 1fr; }
  .tab-visual { display: none; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

/* ========================================
   RESPONSIVE — MOBILE (max 768px)
   ======================================== */
@media (max-width: 768px) {
  :root { --section-py: 3.5rem; }

  /* Nav */
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero-content { padding: 7rem 1.5rem 4rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }
  .hero-stat-divider { display: none; }
  .hero-stats { gap: 1.5rem; }

  /* Cards */
  .cards-grid-3 { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  /* CTA */
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn,
  .cta-actions .btn-outline-white-lg { text-align: center; }

  /* Problem CTA */
  .problem-cta { flex-direction: column; text-align: center; }

  /* Solution */
  .platform-mockup { max-width: 100%; }

  /* Pricing */
  .pricing-grid { max-width: 100%; }

  /* Steps */
  .steps-container { align-items: stretch; }
  .step { max-width: 100%; }

  /* Float */
  .whatsapp-float { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.25rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 1.5rem; }
  .tab-info { padding: 1.75rem; }
  .tabs-nav { gap: 0; }
  .tab-btn { padding: 1rem; font-size: 0.8125rem; }
  .tab-btn span { display: none; }
}
