/* ============================================
   LIMON KAFE SİSTEMLERİ — MAIN STYLESHEET
   ============================================ */

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

:root {
  /* Lemon Color Palette */
  --lemon-400: #FFE234;
  --lemon-500: #FFD60A;
  --lemon-600: #E6C000;
  --lemon-glow: rgba(255, 214, 10, 0.4);
  --lemon-soft: rgba(255, 214, 10, 0.12);

  /* Light Palette */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F1F5F9;
  --bg-tertiary: #E2E8F0;
  
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;

  /* Neutrals */
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;

  /* Accents */
  --accent-teal: #14B8A6;
  --accent-coral: #F43F5E;
  --accent-purple: #8B5CF6;
  --accent-orange: #F59E0B;
  --accent-pink: #EC4899;
  --accent-green: #10B981;
  --whatsapp: #22C55E;
  --whatsapp-dark: #16A34A;

  /* Typography */
  --font-primary: 'Plus Jakarta Sans', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-max: 1280px;
  --container-pad: 0 2rem;

  /* Effects */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-lemon: 0 10px 15px -3px rgba(255, 214, 10, 0.4);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-pad);
}

section { padding: var(--section-padding); }

/* ===== TYPOGRAPHY ===== */
.text-gradient {
  background: linear-gradient(135deg, var(--lemon-500), #FF9500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-highlight {
  position: relative;
  color: var(--text-primary);
  background: linear-gradient(to bottom, transparent 60%, var(--lemon-400) 60%);
  padding: 0 4px;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lemon-500);
  background: var(--lemon-soft);
  border: 1px solid rgba(255, 214, 10, 0.2);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: linear-gradient(135deg, var(--lemon-500), var(--lemon-600));
  color: var(--text-primary);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FFE234, var(--lemon-500));
  box-shadow: var(--shadow-lemon-lg);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  border-color: var(--lemon-500);
  color: var(--lemon-500);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 12px 20px;
}

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

.btn-cta {
  background: var(--white);
  color: var(--dark-900);
  font-weight: 700;
}

.btn-cta:hover {
  background: var(--lemon-500);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lemon-lg);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition);
  background: var(--white);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid var(--gray-100);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  padding: 0.7rem 0;
  box-shadow: var(--shadow-lg);
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 1.6rem;
  filter: drop-shadow(0 0 10px rgba(255,214,10,0.6));
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
}

.logo-accent {
  color: var(--lemon-500);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--lemon-500);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { transform: scaleX(1); }

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--bg-primary);
  border-left: 1px solid var(--gray-100);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  gap: 1rem;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-xl);
}

.mobile-nav.open { right: 0; }

.mobile-nav-close {
  align-self: flex-end;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  color: var(--text-primary);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  margin-bottom: 0.5rem;
}

.mobile-nav-close:hover { background: rgba(255,255,255,0.1); }

.mobile-nav-link {
  color: var(--gray-300);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

.mobile-nav-link:hover { color: var(--lemon-500); }

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 160px 0 100px;
  background: 
    radial-gradient(circle at 0% 0%, rgba(255,214,10,0.15) 0%, transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(20,184,166,0.1) 0%, transparent 40%),
    var(--bg-secondary);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: var(--lemon-500);
  top: -200px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--accent-teal);
  bottom: -100px;
  left: -100px;
  animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: var(--accent-purple);
  top: 50%;
  left: 20%;
  animation: float 12s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,214,10,0.1);
  border: 1px solid rgba(255,214,10,0.25);
  color: var(--lemon-500);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

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

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  text-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 580px;
  font-weight: 500;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-primary);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--lemon-500);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gray-400);
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== HERO VISUAL ===== */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 560px;
}

.hero-img {
  width: 100%;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-xl);
  animation: hero-img-float 6s ease-in-out infinite;
}

@keyframes hero-img-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-primary);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  box-shadow: var(--shadow-lg);
}

.float-icon { font-size: 1.4rem; }

.float-title {
  display: block;
  font-size: 0.72rem;
  color: var(--gray-400);
  font-weight: 500;
}

.float-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-display);
}

.card-1 {
  top: 20%;
  left: -12%;
  animation: card-float 4s ease-in-out infinite;
}

.card-2 {
  top: 55%;
  right: -10%;
  animation: card-float 5s ease-in-out infinite 1s;
}

.card-3 {
  bottom: 10%;
  left: 0%;
  animation: card-float 4.5s ease-in-out infinite 0.5s;
}

@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-400);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gray-400), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

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

.trust-bar .container {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-label {
  font-size: 0.8rem;
  color: var(--gray-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

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

.trust-logo {
  font-size: 0.9rem;
  color: var(--gray-400);
  font-weight: 500;
  transition: var(--transition);
  cursor: default;
  white-space: nowrap;
}

.trust-logo:hover { color: var(--lemon-500); }

/* ===== SERVICES ===== */
.services {
  background: var(--bg-primary);
  overflow: hidden;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--lemon-500);
  box-shadow: var(--shadow-xl);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,214,10,0.3), transparent);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(255,214,10,0.15);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,214,10,0.08);
}

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

.service-card.featured {
  background: var(--white);
  border: 2px solid var(--lemon-500);
  box-shadow: var(--shadow-lg);
}

.featured-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--lemon-500);
  color: var(--dark-900);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(var(--icon-color), 0.1);
  background-color: color-mix(in srgb, var(--icon-color) 12%, transparent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: 1px solid color-mix(in srgb, var(--icon-color) 20%, transparent);
}

.service-icon { font-size: 1.5rem; }

.service-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.service-desc {
  font-size: 0.88rem;
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.service-features li {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.service-link {
  color: var(--lemon-500);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-link:hover { gap: 8px; }

/* ===== FEATURES ===== */
.features {
  position: relative;
  background: var(--bg-secondary);
  overflow: hidden;
}

.features-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(255,214,10,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.feature-item:hover {
  background: var(--bg-primary);
  box-shadow: var(--shadow-md);
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  background-color: color-mix(in srgb, var(--f-color) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--f-color) 20%, transparent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.feature-text h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

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

/* ===== PHONE MOCKUP ===== */
.feature-phone-mockup {
  position: relative;
  width: 260px;
  height: 500px;
  margin: 0 auto;
  background: #f1f5f9;
  border-radius: 36px;
  border: 8px solid #0f172a;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  animation: phone-float 5s ease-in-out infinite;
}

@keyframes phone-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-16px) rotate(-2deg); }
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  overflow: hidden;
}

.phone-ui { padding: 1rem; }

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

.phone-logo { font-size: 0.7rem; font-weight: 700; color: var(--lemon-600); }
.phone-time { font-size: 0.65rem; color: var(--text-muted); }

.phone-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.phone-stat-card {
  background: var(--bg-secondary);
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  padding: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.psc-label { font-size: 0.55rem; color: var(--text-muted); }
.psc-value { font-size: 0.85rem; font-weight: 700; color: var(--text-primary); font-family: var(--font-display); }
.psc-change { font-size: 0.55rem; color: var(--accent-green); }

.phone-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 60px;
  margin-bottom: 1rem;
  padding: 0 4px;
}

.chart-bar {
  flex: 1;
  background: rgba(255,214,10,0.2);
  border-radius: 3px 3px 0 0;
  transition: height 0.5s ease;
}

.chart-bar.active { background: var(--lemon-500); }

.phone-orders {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.phone-order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-secondary);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  padding: 0.5rem 0.6rem;
}

.poi-name { font-size: 0.65rem; color: var(--gray-300); }
.poi-count { font-size: 0.65rem; color: var(--lemon-500); font-weight: 600; }

.features-notification {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-primary);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 0.78rem;
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
  animation: notif-in 0.5s ease forwards;
}

.features-notification strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.75rem;
}

.features-notification span:last-child {
  display: block;
  color: var(--text-secondary);
  font-size: 0.68rem;
}

.notif-icon { font-size: 1.1rem; }

.notif-1 {
  top: -20px;
  right: -20px;
  animation: notif-float 4s ease-in-out infinite;
}

.notif-2 {
  bottom: 20px;
  right: -30px;
  animation: notif-float 5s ease-in-out infinite 1.5s;
}

@keyframes notif-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== DEMO SECTION ===== */
.demo-section {
  background: var(--bg-primary);
}

.demo-tabs {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.demo-tab {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: var(--bg-secondary);
  border: 1px solid var(--gray-200);
  color: var(--text-secondary);
  font-family: var(--font-primary);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.demo-tab:hover { border-color: var(--lemon-500); color: var(--text-primary); }

.demo-tab.active {
  background: var(--lemon-500);
  color: var(--text-primary);
  border-color: var(--lemon-500);
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.demo-panel {
  display: none;
  flex-direction: column;
  gap: 2rem;
  animation: demo-fade 0.4s ease;
}

.demo-panel.active { display: flex; }

@keyframes demo-fade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.demo-caption {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.demo-caption h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.demo-caption p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* DASHBOARD MOCKUP */
.demo-ui-mockup {
  background: var(--bg-primary);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.dashboard-mock {
  display: flex;
  min-height: 420px;
}

.mock-sidebar {
  width: 160px;
  background: var(--bg-secondary);
  border-right: 1px solid var(--gray-200);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-shrink: 0;
}

.mock-logo { font-size: 1.5rem; margin-bottom: 1rem; text-align: center; }

.mock-nav-item {
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--gray-400);
  cursor: default;
  transition: var(--transition);
}

.mock-nav-item.active {
  background: rgba(255,214,10,0.12);
  color: var(--lemon-500);
  font-weight: 600;
}

.mock-nav-item:hover { background: var(--bg-tertiary); color: var(--text-primary); }

.mock-main {
  flex: 1;
  padding: 1.5rem;
  overflow: hidden;
}

.mock-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.mock-page-title { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); }
.mock-date { font-size: 0.75rem; color: var(--text-muted); }

.mock-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.mock-kpi {
  background: var(--bg-secondary);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mkpi-label { font-size: 0.65rem; color: var(--gray-400); }

.mkpi-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.mkpi-badge {
  font-size: 0.6rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: var(--radius-full);
  width: fit-content;
}

.mkpi-badge.up { background: rgba(34,197,94,0.15); color: var(--accent-green); }
.mkpi-badge.neutral { background: rgba(255,255,255,0.08); color: var(--gray-300); }

.mock-chart-area {
  background: var(--bg-secondary);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1rem;
}

.mock-chart-title { font-size: 0.7rem; color: var(--gray-400); margin-bottom: 0.75rem; }

.mock-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px;
}

.mock-bar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(to top, rgba(255,214,10,0.6), rgba(255,214,10,0.2));
  border-radius: 3px 3px 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2px;
}

.mock-bar span { font-size: 0.5rem; color: var(--gray-400); }

.mock-orders-list { }
.mock-order-title { font-size: 0.7rem; color: var(--gray-400); margin-bottom: 0.5rem; }

.mock-order {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.72rem;
}

.mo-table { color: var(--lemon-500); font-weight: 600; width: 32px; }
.mo-item { flex: 1; color: var(--gray-300); }
.mo-price { color: var(--text-primary); font-weight: 600; }

.mo-status {
  font-size: 0.6rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.mo-status.done { background: rgba(34,197,94,0.15); color: var(--accent-green); }
.mo-status.prep { background: rgba(255,214,10,0.15); color: var(--lemon-500); }
.mo-status.new { background: rgba(239,68,68,0.15); color: #F87171; }

/* PHONE DEMOS */
.demo-phones-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1.5rem;
}

.demo-phone {
  width: 175px;
  height: 340px;
  background: var(--bg-primary);
  border-radius: 28px;
  border: 4px solid #0f172a;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  opacity: 0.7;
  transform: scale(0.93) translateY(10px);
}

.demo-phone.featured-phone {
  opacity: 1;
  transform: scale(1) translateY(0);
  border-color: #0f172a;
  box-shadow: var(--shadow-xl), 0 0 30px rgba(255,214,10,0.2);
  z-index: 1;
}

.demo-phone-screen {
  padding: 1rem 0.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dps-header {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--lemon-600);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gray-100);
}

.dps-qr-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  justify-content: center;
  gap: 0.75rem;
}

.dps-qr-box {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 8px;
  padding: 8px;
}

.qr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  width: 100%;
  height: 100%;
}

.qr-cell { border-radius: 2px; background: white; }
.qr-cell.dark { background: var(--dark-900); }

.dps-scan-text { font-size: 0.65rem; color: var(--gray-400); }

.dps-menu-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  padding: 0.5rem;
}

.dmi-emoji { font-size: 1rem; }
.dmi-info { flex: 1; }
.dmi-name { display: block; font-size: 0.65rem; color: var(--text-primary); font-weight: 500; }
.dmi-price { display: block; font-size: 0.6rem; color: var(--lemon-500); font-weight: 600; }

.dmi-add {
  width: 22px;
  height: 22px;
  background: var(--lemon-500);
  color: var(--dark-900);
  border: none;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dps-cart-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--lemon-500);
  color: var(--dark-900);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  margin-top: auto;
}

.dps-order-summary { display: flex; flex-direction: column; gap: 0.5rem; }

.dos-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: var(--gray-300);
}

.dos-divider { height: 1px; background: rgba(255,255,255,0.08); }

.dos-total {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-primary);
}

.dos-btn {
  background: var(--lemon-500);
  color: var(--dark-900);
  border: none;
  border-radius: 8px;
  padding: 0.6rem;
  font-size: 0.65rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 0.5rem;
  width: 100%;
}

/* ORDERS MOCK */
.orders-mock { padding: 1.5rem; }

.orders-grid-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.og-title { font-family: var(--font-display); font-size: 1rem; font-weight: 600; }
.og-time { font-size: 0.75rem; color: var(--gray-400); }

.tables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.table-card {
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: var(--transition);
  cursor: default;
}

.table-card:hover { transform: scale(1.03); }

.table-card.occupied {
  background: rgba(255,214,10,0.08);
  border: 1px solid rgba(255,214,10,0.2);
}

.table-card.empty {
  background: var(--bg-primary);
  border: 1px dashed var(--gray-300);
}

.table-card.new-order {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.3);
  animation: new-order-pulse 1.5s ease-in-out infinite;
}

@keyframes new-order-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(239,68,68,0); }
}

.tc-num { font-size: 1.5rem; font-weight: 800; font-family: var(--font-display); color: var(--text-primary); }
.tc-status { font-size: 0.72rem; color: var(--gray-400); }
.table-card.new-order .tc-status { color: #F87171; font-weight: 600; }
.tc-time { font-size: 0.65rem; color: var(--gray-400); }
.tc-amount { font-size: 0.85rem; font-weight: 700; color: var(--lemon-500); }

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--bg-secondary);
}

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--lemon-400);
  box-shadow: var(--shadow-lg);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,214,10,0.1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.testimonial-card.featured-tc {
  background: linear-gradient(135deg, rgba(255,214,10,0.05), rgba(255,150,0,0.03));
  border-color: rgba(255,214,10,0.12);
}

.tc-stars { font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }

.tc-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lemon-500), var(--accent-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--dark-900);
  flex-shrink: 0;
}

.tc-name { display: block; font-weight: 600; font-size: 0.9rem; color: var(--text-primary); }
.tc-role { display: block; font-size: 0.75rem; color: var(--gray-400); }

/* Results Banner */
.results-banner {
  background: linear-gradient(135deg, rgba(255,214,10,0.08), rgba(255,150,0,0.04));
  border: 1px solid rgba(255,214,10,0.15);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.rs-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--lemon-500);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.rs-label { font-size: 0.82rem; color: var(--gray-400); }

/* ===== WHY US ===== */
.why-us {
  background: var(--bg-primary);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--bg-secondary);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,214,10,0.15);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  filter: drop-shadow(0 0 12px rgba(255,214,10,0.3));
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.why-card p {
  font-size: 0.85rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ===== CTA ===== */
.cta-section {
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
  padding: 120px 0;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 90% at 50% 50%, rgba(255,214,10,0.08) 0%, transparent 60%);
}

.cta-shape-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(255,214,10,0.06);
  border-radius: 50%;
  top: -200px;
  left: -200px;
  filter: blur(80px);
}

.cta-shape-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(78,205,196,0.05);
  border-radius: 50%;
  bottom: -150px;
  right: -100px;
  filter: blur(60px);
}

.cta-container {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.cta-emoji {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 30px rgba(255,214,10,0.6));
  animation: cta-emoji-float 3s ease-in-out infinite;
}

@keyframes cta-emoji-float {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(5deg); }
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.cta-highlight {
  background: linear-gradient(135deg, var(--lemon-500), #FF9500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

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

.btn-whatsapp.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.cta-note {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===== CONTACT ===== */
.contact {
  background: var(--bg-primary);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-card {
  background: var(--bg-secondary);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
}

.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

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

.contact-item:last-of-type { border-bottom: none; }

.ci-icon { font-size: 1.3rem; margin-top: 2px; }
.ci-label { display: block; font-size: 0.72rem; color: var(--gray-400); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.08em; }
.ci-value { font-size: 0.9rem; font-weight: 500; color: var(--text-primary); text-decoration: none; transition: var(--transition); }
.ci-value:hover { color: var(--lemon-500); }

/* FORM */
.contact-form-wrap {
  background: var(--bg-secondary);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-primary);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  width: 100%;
}

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

.form-group select option {
  background: var(--bg-primary);
  color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--lemon-500);
  box-shadow: 0 0 0 3px var(--lemon-soft);
}

.form-group textarea { resize: vertical; }

.form-success {
  display: none;
  align-items: center;
  gap: 1rem;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: var(--radius-md);
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--accent-green);
}

.form-success span { font-size: 1.5rem; }

.form-success.visible {
  display: flex;
  animation: fade-in 0.5s ease;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--gray-200);
}

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

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  max-width: 280px;
}

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

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

.social-link {
  width: 38px;
  height: 38px;
  background: var(--bg-primary);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--lemon-soft);
  border-color: var(--lemon-500);
  transform: translateY(-2px);
}

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

.footer-col { display: flex; flex-direction: column; gap: 0.65rem; }

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.footer-col a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.footer-col a:hover { color: var(--lemon-500); }

.footer-bottom {
  border-top: 1px solid var(--gray-200);
  padding: 1.25rem 2rem;
}

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

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

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom-links a:hover { color: var(--lemon-500); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
  transition: var(--transition);
  animation: whatsapp-pulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  background: var(--whatsapp-dark);
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37,211,102,0.6);
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 8px 40px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
  pointer-events: none;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--bg-primary);
}

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

/* ===== AOS ANIMATIONS ===== */
[data-aos] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="zoom-in"] { transform: scale(0.9); }

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .mock-kpi-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; }
  .hero-image-wrapper { max-width: 480px; margin: 0 auto; }
  .hero-stats { justify-content: center; }
  .features-layout { grid-template-columns: 1fr; gap: 3rem; }
  .feature-phone-mockup { width: 220px; height: 420px; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-padding: 70px 0; }

  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 100px 0 60px; }
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .stat-divider { display: none; }
  .hero-actions { flex-direction: column; gap: 1rem; }
  .hero-actions .btn { width: 100%; text-align: center; justify-content: center; }

  .card-1 { left: -5%; }
  .card-2 { right: -5%; }

  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .results-banner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  .dashboard-mock { flex-direction: column; }
  .mock-sidebar { width: 100%; flex-direction: row; flex-wrap: wrap; gap: 0.25rem; padding: 1rem; }
  .mock-logo { display: none; }

  .demo-phones-row { gap: 0.75rem; }
  .demo-phone { width: 130px; height: 260px; }

  .demo-tabs { gap: 0.5rem; }
  .demo-tab { padding: 8px 16px; font-size: 0.8rem; flex: 1; min-width: 140px; text-align: center; }

  .tables-grid { grid-template-columns: repeat(3, 1fr); }

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

  .cta-actions { flex-direction: column; align-items: center; gap: 1rem; width: 100%; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom .container { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  :root { --container-pad: 0 1.25rem; }

  .hero-float-card { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .results-banner { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-template-columns: 1fr; }

  .demo-phones-row { flex-direction: column; align-items: center; }
  .demo-phone { width: 200px; height: 380px; transform: none !important; opacity: 1 !important; }
  .demo-phone:not(.featured-phone) { display: none; }
}

/* ===== CONTACT WHATSAPP CARD ===== */
.contact-whatsapp-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.whatsapp-card-content {
  max-width: 450px;
}

.wcc-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 10px 15px rgba(34, 197, 94, 0.2));
}

.whatsapp-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.whatsapp-card-content p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.wcc-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  text-align: left;
}

.wcc-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--text-primary);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .contact-whatsapp-card {
    padding: 2.5rem 1.5rem;
  }
  
  .whatsapp-card-content h3 {
    font-size: 1.5rem;
  }
}

