/* ─── Google Fonts ───────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;600;700;800;900&display=swap');

/* ─── Design Tokens ──────────────────────────────────────────────────────────── */
:root {
  --bg:           #080c09;
  --surface:      #101510;
  --surface2:     #141d14;
  --border:       rgba(37,211,102,0.12);
  --border-light: rgba(255,255,255,0.06);
  --green:        #25D366;
  --green-d:      #1aab52;
  --green-glow:   rgba(37,211,102,0.18);
  --green-dim:    rgba(37,211,102,0.08);
  --white:        #f5f5f5;
  --muted:        #8a9688;
  --text-dim:     #c2d0be;
  --error:        #ff4d4d;
  --radius:       16px;
  --radius-lg:    24px;
  --radius-pill:  999px;
  --shadow-green: 0 8px 40px rgba(37,211,102,0.2);
  --shadow-card:  0 4px 32px rgba(0,0,0,0.5);
  --nav-h:        68px;
  --section-pad:  100px;
}

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

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

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Utility ────────────────────────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-tag {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-dim);
  font-size: 17px;
  line-height: 1.65;
  max-width: 560px;
}

/* Glass card */
.glass {
  background: rgba(20, 29, 20, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

/* ─── Scroll Reveal ──────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Buttons ────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: #000;
  box-shadow: 0 4px 24px var(--green-glow);
}

.btn-primary:hover {
  background: #32e87a;
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(37,211,102,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border-light);
}

.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

/* ─── NAV ────────────────────────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  background: rgba(8,12,9,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-right: 48px;
}

.nav-logo span { color: var(--green); }

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 2px 12px var(--green-glow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

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

.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(8,12,9,0.98);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px 28px;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
  backdrop-filter: blur(20px);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dim);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

/* ─── HERO ───────────────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

/* Animated gradient background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(37,211,102,0.12) 0%, transparent 65%),
              radial-gradient(ellipse 50% 50% at 90% 60%, rgba(37,211,102,0.06) 0%, transparent 60%),
              var(--bg);
}

/* Grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,211,102,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,211,102,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.6) 0%, transparent 75%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}



.hero-h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}

.hero-h1 .highlight {
  background: linear-gradient(135deg, var(--green), #a8ffcb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}



.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px var(--border);
  animation: floatCard 5s ease-in-out infinite;
}

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

.hero-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37,211,102,0.15) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,100% { opacity: 0.7; transform: translate(-50%,-50%) scale(1); }
  50%      { opacity: 1;   transform: translate(-50%,-50%) scale(1.12); }
}

/* ─── HOW IT WORKS ───────────────────────────────────────────────────────────── */
#how-it-works {
  padding: var(--section-pad) 0;
  position: relative;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}

/* Connecting line */
.steps-grid::after {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(16.66% + 12px);
  right: calc(16.66% + 12px);
  height: 2px;
  background: linear-gradient(90deg, var(--green), rgba(37,211,102,0.2));
  z-index: 0;
}

.step-card {
  padding: 32px 28px;
  position: relative;
  z-index: 1;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-green);
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #000;
  margin: 0 auto 24px;
  box-shadow: 0 4px 20px var(--green-glow);
  position: relative;
  z-index: 1;
}

.step-icon-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(37,211,102,0.08), transparent 65%);
  border-radius: inherit;
}

.step-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.65;
}

/* ─── REQUIREMENTS ───────────────────────────────────────────────────────────── */
#requirements {
  padding: var(--section-pad) 0;
  position: relative;
}

.req-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 56px;
}

.req-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease;
}

.req-card:hover {
  transform: translateY(-5px);
  border-color: var(--green);
}

.req-icon {
  width: 48px;
  height: 48px;
  background: var(--green-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--green);
}

.req-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.req-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ─── FEATURES ───────────────────────────────────────────────────────────────── */
#features {
  padding: var(--section-pad) 0;
  position: relative;
}

.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.features-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 0 0 1px var(--border);
  position: relative;
}

.features-image img {
  width: 100%;
  height: auto;
  display: block;
}

.features-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--bg) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-item {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--surface2);
  border: 1px solid var(--border);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.feature-item:hover {
  border-color: var(--green);
  box-shadow: 0 4px 24px var(--green-dim);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 26px;
  margin-bottom: 10px;
  display: block;
}

.feature-item h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
}

.feature-item p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── WHY WHATSAPP ───────────────────────────────────────────────────────────── */
#why {
  padding: var(--section-pad) 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.why-card {
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-green);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--green);
  border-radius: 2px 0 0 2px;
}

.why-card-num {
  font-family: 'Outfit', sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: var(--green-dim);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -2px;
}

.why-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ─── CUSTOM SOLUTIONS ─────────────────────────────────────────────────────── */
#custom-solutions {
  padding: var(--section-pad) 0;
  position: relative;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.solution-card {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  border: 1px solid var(--border);
  text-align: left;
}

.solution-card:hover {
  transform: translateY(-8px);
  border-color: var(--green);
  box-shadow: 0 12px 48px rgba(37,211,102,0.15);
}

.solution-icon {
  width: 56px;
  height: 56px;
  background: var(--green-dim);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--green);
  box-shadow: 0 4px 20px var(--green-glow);
}

.solution-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.solution-card p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.6;
}

.solution-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--surface2);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--border);
}

/* ─── PRICING ────────────────────────────────────────────────────────────────── */
#pricing {
  padding: var(--section-pad) 0;
}

.pricing-card {
  max-width: 700px;
  margin: 60px auto 0;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.pricing-glow {
  position: absolute;
  width: 500px;
  height: 300px;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(37,211,102,0.1), transparent 70%);
  pointer-events: none;
}

.pricing-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.pricing-card p {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto 36px;
}

.pricing-perks {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-dim);
}

.perk-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── FAQ ────────────────────────────────────────────────────────────────────── */
#faq {
  padding: var(--section-pad) 0;
}

.faq-list {
  max-width: 760px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s;
}

.faq-item.open { border-color: var(--green); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}

.faq-q span:first-child {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--green);
  transition: transform 0.3s, background 0.2s;
  background: var(--green-dim);
}

.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--green); color: #000; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
}

.faq-item.open .faq-a { max-height: 400px; }

.faq-a-inner {
  padding: 0 24px 22px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

/* ─── CONTACT ────────────────────────────────────────────────────────────────── */
#contact {
  padding: var(--section-pad) 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 60px;
}



.contact-cta {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-dim);
  transition: border-color 0.2s;
}

.contact-detail:hover { border-color: var(--green); }

/* ─── VIDEO SHOWCASE ───────────────────────────────────────────────────────── */
.video-container {
  border: 1px solid var(--border);
  box-shadow: var(--shadow-green);
}

.contact-detail .icon { font-size: 20px; flex-shrink: 0; }

.wa-btn-big {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px;
  background: var(--green);
  color: #000;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 8px 32px var(--green-glow);
  margin-top: 24px;
  font-family: 'Outfit', sans-serif;
}

.wa-btn-big:hover {
  background: #32e87a;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.4);
}

/* Contact Form */
.contact-form-card {
  padding: 36px 32px;
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: #3a4a3a; }

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(37,211,102,0.12);
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  color: var(--green);
  font-weight: 600;
  font-size: 15px;
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.footer-logo span { color: var(--green); }

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;
}

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

.footer-social {
  display: flex;
  gap: 14px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: border-color 0.2s, transform 0.2s;
}

.social-btn:hover { border-color: var(--green); transform: translateY(-2px); }

.footer-bottom {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* ─── Section bg alternation ─────────────────────────────────────────────────── */
.section-alt {
  background: linear-gradient(180deg, transparent 0%, rgba(37,211,102,0.025) 50%, transparent 100%);
  position: relative;
}

/* ─── WhatsApp float button ──────────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 24px var(--green-glow);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}

.wa-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 36px rgba(37,211,102,0.45);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  :root { --section-pad: 72px; }

  .hero-inner        { grid-template-columns: 1fr; text-align: center; }
  .hero-sub          { max-width: 100%; }
  .hero-buttons      { justify-content: center; }
  .hero-stats        { justify-content: center; }
  .hero-visual       { order: -1; }
  .hero-image-wrap   { max-width: 420px; margin: 0 auto; }

  .steps-grid        { grid-template-columns: 1fr; }
  .steps-grid::after { display: none; }

  .features-layout   { grid-template-columns: 1fr; }
  .features-image    { display: none; }

  .why-grid          { grid-template-columns: 1fr; }

  .contact-layout    { grid-template-columns: 1fr; }
  .footer-inner      { flex-direction: column; align-items: flex-start; }

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

@media (max-width: 600px) {
  :root { --section-pad: 56px; }

  .hero-stats        { flex-wrap: wrap; gap: 20px; }
  .pricing-card      { padding: 36px 24px; }
  .contact-form-card { padding: 24px 20px; }
  .hero-stats        { flex-wrap: wrap; gap: 20px; }
}

/* ─── KITCHEN DASHBOARD SHOWCASE ─────────────────────────────────────────────── */
#dashboard-showcase {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.showcase-header {
  text-align: center;
  margin-bottom: 60px;
}

.glass-light {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.3);
  overflow: hidden;
  color: #000;
}

.dash-browser-bar {
  background: #f1f1f1;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #ddd;
}

.dash-dots { display: flex; gap: 6px; }
.dash-dots span { width: 10px; height: 10px; border-radius: 50%; background: #ccc; }
.dash-dots span:nth-child(1) { background: #ff5f56; }
.dash-dots span:nth-child(2) { background: #ffbd2e; }
.dash-dots span:nth-child(3) { background: #27c93f; }

.dash-search {
  flex: 1;
  background: white;
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 11px;
  color: #999;
  border: 1px solid #eee;
}

.dash-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 500px;
  background: #f9fafb;
}

.kanban-col {
  padding: 24px 16px;
  border-right: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kanban-col:last-child { border-right: none; }

.col-head {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: #666;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.col-dot { width: 8px; height: 8px; border-radius: 50%; }
.col-count { margin-left: auto; background: #eee; padding: 2px 8px; border-radius: 10px; font-size: 10px; color: #333; }

.kanban-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  border: 1px solid #eee;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.kanban-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }

.card-meta { display: flex; justify-content: space-between; margin-bottom: 12px; }
.order-id { font-weight: 800; font-size: 15px; color: #000; }
.order-type { font-size: 11px; text-transform: uppercase; color: #888; letter-spacing: 0.5px; font-weight: 700; }

.card-items { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.item-bubble {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #222;
}
.item-bubble small { display: block; font-weight: 400; color: #666; font-size: 12px; padding-left: 4px; border-left: 2px solid #eee; margin-top: 2px; }

.spec-list { display: flex; gap: 4px; flex-wrap: wrap; margin-top: 4px; }
.spec-bubble {
  background: rgba(0,0,0,0.04);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  color: #555;
  font-weight: 500;
}

.card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid #f5f5f5; }
.timer { font-size: 11px; color: #999; }
.price { font-weight: 700; font-size: 13px; color: #000; }

.btn-dash {
  background: #000;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

/* Status Pulsing */
.pulse-incoming {
  border-left: 4px solid var(--green);
  animation: pulseCardIncoming 2s infinite;
}

@keyframes pulseCardIncoming {
  0%, 100% { border-left-color: var(--green); box-shadow: 0 4px 12px rgba(0,0,0,0.04); }
  50% { border-left-color: #32e87a; box-shadow: 0 0 15px rgba(37,211,102,0.2); }
}

.status-incoming-pulse {
  background: var(--green);
  box-shadow: 0 0 0px var(--green);
  animation: dotPulse 1.5s infinite;
}

@keyframes dotPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
  70% { box-shadow: 0 0 0 6px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Uber Integration */
.uber-badge {
  background: #000;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.uber-status-pulse {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 12px;
  animation: uberPulse 2s infinite;
}

@keyframes uberPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.status-text { font-size: 12px; color: #666; }

/* Progress Bar */
.progress-wrap { height: 6px; background: #eee; border-radius: 3px; margin: 4px 0 16px; overflow: hidden; }
.progress-bar { height: 100%; background: #f59e0b; border-radius: 3px; }

/* Showcase Features (Bottom) */
.showcase-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.sh-feat h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--white);
}

.sh-feat p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .dash-main { grid-template-columns: 1fr; }
  .kanban-col { border-right: none; border-bottom: 1px solid #eee; }
  .showcase-features { grid-template-columns: 1fr; gap: 30px; }
}


/* ─── LIVE DEMO SECTION ──────────────────────────────────────────────────────── */
#live-demo .demo-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

#live-demo .split-view {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

#live-demo .whatsapp-panel,
#live-demo .kitchen-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: 600px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

/* WhatsApp Side */
#live-demo .wa-header {
  background: linear-gradient(135deg, #075e54 0%, #128c7e 100%);
  color: white;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 2px solid var(--green);
}

#live-demo .wa-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  color: #000;
}

#live-demo .wa-info h3 { font-size: 16px; font-weight: 600; margin: 0; }
#live-demo .wa-info p { font-size: 12px; opacity: 0.8; margin: 0; }

#live-demo .wa-chat {
  background: #e5ddd5;
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#live-demo .message {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.4;
  color: #000;
  position: relative;
  animation: slideIn 0.3s ease-out;
}

#live-demo .message-left {
  background: white;
  align-self: flex-start;
  border-top-left-radius: 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

#live-demo .message-right {
  background: #dcf8c6;
  align-self: flex-end;
  border-top-right-radius: 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

#live-demo .catalog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 10px 0;
}

#live-demo .catalog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

#live-demo .catalog-card:hover { transform: scale(1.02); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
#live-demo .catalog-img { width: 100%; height: 110px; object-fit: cover; }
#live-demo .catalog-info { padding: 10px; }
#live-demo .catalog-title { font-weight: 600; font-size: 13px; color: #333; }
#live-demo .catalog-price { color: #075e54; font-weight: 700; font-size: 14px; }

/* Kitchen Panel */
#live-demo .kitchen-panel { background: #0a0e0a; }
#live-demo .kitchen-header {
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}

#live-demo .kitchen-header h2 {
  color: var(--green);
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
}

#live-demo .kitchen-stats { display: flex; gap: 24px; }
#live-demo .stat { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; }
#live-demo .stat span { display: block; color: var(--white); font-size: 20px; font-weight: 800; font-family: 'Outfit'; margin-bottom: 2px; }

#live-demo .kitchen-body { padding: 20px; overflow-y: auto; flex: 1; }
#live-demo .order-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
  animation: slideInRight 0.4s ease-out;
}

#live-demo .order-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
#live-demo .order-number { font-weight: 700; color: var(--white); }
#live-demo .order-time { font-size: 11px; color: var(--muted); }
#live-demo .order-items { font-size: 14px; color: var(--text-dim); margin-bottom: 12px; }
#live-demo .order-details { display: flex; gap: 16px; font-size: 12px; color: var(--muted); margin-bottom: 16px; }

#live-demo .status-badge {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
#live-demo .status-new        { background: rgba(59,130,246,0.2); color: #60a5fa; }
#live-demo .status-preparing  { background: rgba(245,158,11,0.2); color: #fbbf24; }
#live-demo .status-ready      { background: rgba(37,211,102,0.2); color: var(--green); }
#live-demo .status-out        { background: rgba(139,92,246,0.2); color: #a78bfa; }

#live-demo .order-actions { display: flex; gap: 10px; }

/* Control Panel */
#live-demo .control-panel {
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 16px 24px;
  border-radius: 16px;
}

#live-demo .control-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
#live-demo .control-btn {
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  color: var(--white);
}

#live-demo .control-btn:hover { background: var(--green-dim); border-color: var(--green); color: var(--green); }
#live-demo .control-btn-success { background: var(--green); color: #000; border: none; }
#live-demo .control-btn-success:hover { background: #32e87a; color: #000; transform: translateY(-2px); }

/* Hints & Animations */
#live-demo .hint-tooltip {
  position: absolute;
  background: var(--green);
  color: #000;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 800;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  pointer-events: none;
  animation: hintPulse 2s ease-in-out infinite;
  white-space: nowrap;
}

#live-demo .btn-glow { animation: pulseGlowBtn 2s ease-in-out infinite; }
@keyframes pulseGlowBtn {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 0 15px 5px rgba(37,211,102,0.2); }
}

@keyframes hintPulse { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes slideIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: translateX(0); } }

#live-demo .empty-state { text-align: center; padding: 60px 0; color: var(--muted); }
#live-demo .empty-state-icon { font-size: 40px; margin-bottom: 12px; opacity: 0.2; }

/* Responsive Demo */
@media (max-width: 1000px) {
  #live-demo .split-view { grid-template-columns: 1fr; gap: 20px; }
  #live-demo .whatsapp-panel, #live-demo .kitchen-panel { height: 500px; }
}

@media (max-width: 600px) {
  #live-demo .whatsapp-panel, #live-demo .kitchen-panel { height: 450px; }
  #live-demo .catalog-grid { grid-template-columns: 1fr; }
  #live-demo .control-btn { flex: 1 1 calc(50% - 6px); }
}
