/* ==========================================================================
   SERVICIOS CORRIENTES - MASTER STYLESHEET
   Design System: Modern Dark Mode, Electric Emerald & Cyan Accents, Glassmorphism
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-dark: #070a12;
  --bg-surface: #0e1424;
  --bg-card: rgba(20, 29, 48, 0.7);
  --bg-card-hover: rgba(30, 43, 70, 0.85);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(16, 185, 129, 0.45);

  --accent-emerald: #10b981;
  --accent-emerald-light: #34d399;
  --accent-emerald-glow: rgba(16, 185, 129, 0.22);
  --accent-cyan: #06b6d4;
  --accent-cyan-light: #38bdf8;
  --accent-amber: #f59e0b;

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Shadows & Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 35px var(--accent-emerald-glow);

  --transition-fast: 0.15s ease;
  --transition-smooth: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
}

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

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

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

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

/* Badges & Eyebrows */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-emerald-light);
  border: 1px solid rgba(16, 185, 129, 0.25);
  margin-bottom: 1.25rem;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-emerald);
  box-shadow: 0 0 10px var(--accent-emerald);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-emerald) 0%, #059669 100%);
  color: #ffffff;
  box-shadow: 0 4px 18px var(--accent-emerald-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
  filter: brightness(1.08);
}

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #062312;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background: #2fe073;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: #000000;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.84rem;
  height: 38px;
}

/* ==========================================================================
   NAVIGATION BAR (REFINED & NO WRAPPING)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 10, 18, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.75rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

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

.logo-img {
  height: 40px;
  width: auto;
  max-width: 175px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.45)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
  transition: var(--transition-smooth);
}

.logo-img:hover {
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.65)) drop-shadow(0 4px 12px rgba(16, 185, 129, 0.35));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  position: relative;
  padding: 0.25rem 0;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-emerald);
  border-radius: 2px;
}

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

/* Language Switcher Pill */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 3px;
  gap: 2px;
  transition: var(--transition-smooth);
}

.lang-switcher:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.lang-opt {
  padding: 4px 9px;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--text-muted);
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
  user-select: none;
  border: none;
  background: transparent;
  cursor: pointer;
  line-height: 1;
}

.lang-opt.active {
  background: var(--accent-emerald);
  color: #062312;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.35);
}

.lang-opt:not(.active):hover {
  color: #ffffff;
}

.mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  font-size: 1.4rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 4.5rem 0 4rem;
  overflow: hidden;
}

.hero-glow-1 {
  position: absolute;
  top: -150px;
  left: 20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.14) 0%, rgba(7, 10, 18, 0) 70%);
  pointer-events: none;
  filter: blur(50px);
}

.hero-glow-2 {
  position: absolute;
  top: 100px;
  right: -100px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, rgba(7, 10, 18, 0) 70%);
  pointer-events: none;
  filter: blur(60px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-title {
  font-size: 3.1rem;
  line-height: 1.15;
  margin-bottom: 1.3rem;
  letter-spacing: -0.03em;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 30%, var(--accent-emerald-light) 80%, var(--accent-cyan-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.12rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 2.2rem;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.8rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border-subtle);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.trust-item svg {
  color: var(--accent-emerald);
  flex-shrink: 0;
}

/* Phone Mockup in Hero */
.hero-mockup-wrapper {
  position: relative;
}

.phone-mockup {
  background: #111827;
  border: 4px solid #374151;
  border-radius: 36px;
  padding: 0.9rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), var(--shadow-glow);
  position: relative;
  max-width: 350px;
  margin: 0 auto;
}

.phone-screen {
  background: #0b1120;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  padding: 1rem;
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border-subtle);
}

.mockup-store-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.mockup-avatar-img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--accent-emerald);
}

.mockup-name {
  font-size: 0.84rem;
  font-weight: 700;
}

.mockup-status {
  font-size: 0.68rem;
  color: var(--accent-emerald);
  display: flex;
  align-items: center;
  gap: 4px;
}

.status-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-emerald);
}

.mockup-item-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  margin-bottom: 0.85rem;
}

.mockup-photo {
  width: 100%;
  height: 125px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  display: block;
  margin-bottom: 0.6rem;
}

.mockup-item-title {
  font-size: 0.82rem;
  font-weight: 700;
}

.mockup-item-subtitle {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.mockup-chat-preview {
  background: #064e3b;
  border-radius: var(--radius-md);
  padding: 0.75rem;
  font-size: 0.78rem;
  color: #d1fae5;
  border-left: 3px solid var(--accent-emerald);
}

.mockup-chat-title {
  font-weight: 700;
  display: block;
  margin-bottom: 0.2rem;
  color: #ffffff;
  font-size: 0.75rem;
}

.mockup-float-badge {
  position: absolute;
  bottom: -15px;
  right: -10px;
  background: var(--bg-surface);
  border: 1px solid var(--accent-emerald);
  padding: 0.7rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  animation: floatAnim 4s ease-in-out infinite;
}

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

.badge-icon {
  font-size: 1.3rem;
}

.badge-text-title {
  font-size: 0.78rem;
  font-weight: 700;
}

.badge-text-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SECTIONS GENERAL
   ========================================================================== */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-alt {
  background-color: #0a0e1a;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-title {
  font-size: 2.3rem;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}

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

/* Steps Pipeline */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  transition: var(--transition-smooth);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-focus);
  box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.5), var(--shadow-glow);
}

.step-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
}

.step-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.3rem;
}

.step-title {
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
}

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

.step-pill {
  margin-top: auto;
  padding-top: 1.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-emerald-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ==========================================================================
   DEMO SHOWCASE (WITH REAL STOCK PHOTOS)
   ========================================================================== */
.showcase-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: var(--transition-smooth);
}

.tab-btn:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.2);
}

.tab-btn.active {
  background: rgba(16, 185, 129, 0.15);
  border-color: var(--accent-emerald);
  color: #ffffff;
  box-shadow: 0 4px 20px var(--accent-emerald-glow);
}

.demo-display-panel {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.demo-category-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-cyan-light);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.demo-name {
  font-size: 1.9rem;
  margin-bottom: 0.8rem;
}

.demo-summary {
  color: var(--text-secondary);
  font-size: 0.98rem;
  margin-bottom: 1.8rem;
}

.demo-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.demo-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.92rem;
}

.demo-feature-list li svg {
  color: var(--accent-emerald);
  flex-shrink: 0;
  margin-top: 3px;
}

.demo-preview-card {
  background: #050811;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  position: relative;
}

.browser-bar {
  background: #101626;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

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

.browser-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #374151;
}

.browser-dot.red { background: #ef4444; }
.browser-dot.yellow { background: #f59e0b; }
.browser-dot.green { background: #10b981; }

.browser-address {
  background: #070a12;
  border-radius: 6px;
  padding: 0.2rem 0.65rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  flex-grow: 1;
  font-family: monospace;
}

.demo-card-body {
  padding: 1.25rem;
}

.demo-visual-thumb-img {
  width: 100%;
  height: 190px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  display: block;
  margin-bottom: 1rem;
}

.preview-mini-msg {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  font-size: 0.8rem;
  color: #a7f3d0;
  line-height: 1.5;
}

/* ==========================================================================
   FOUNDER / ABOUT SECTION (DAMIAN BENDER)
   ========================================================================== */
.founder-section {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, #070a12 0%, #0c1220 50%, #070a12 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.founder-card {
  background: var(--bg-surface);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-glow), var(--shadow-md);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: center;
}

.founder-photo-wrapper {
  position: relative;
  text-align: center;
}

.founder-photo {
  width: 100%;
  max-width: 320px;
  height: 380px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(16, 185, 129, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.founder-badge-direct {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #0a1120;
  border: 1px solid var(--accent-emerald);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-emerald-light);
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.founder-info h3 {
  font-size: 2.1rem;
  margin-bottom: 0.25rem;
}

.founder-role {
  color: var(--accent-cyan-light);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: block;
}

.founder-bio {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.founder-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.founder-points li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-primary);
}

.founder-points li svg {
  color: var(--accent-emerald);
  flex-shrink: 0;
}

/* ==========================================================================
   TIME & ROI CALCULATOR
   ========================================================================== */
.calculator-container {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(11, 16, 28, 0.95));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

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

.calc-input-group {
  margin-bottom: 2rem;
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.calc-label {
  font-weight: 600;
  font-size: 0.92rem;
}

.calc-value-display {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-emerald-light);
  font-family: var(--font-heading);
}

.calc-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #1e293b;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-emerald);
  box-shadow: 0 0 10px var(--accent-emerald-glow);
  cursor: pointer;
  transition: var(--transition-fast);
}

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

/* Results Box */
.calc-results-box {
  background: rgba(7, 10, 18, 0.85);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-glow);
}

.results-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.result-number {
  font-family: var(--font-heading);
  font-size: 3.3rem;
  font-weight: 800;
  color: var(--accent-emerald-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.result-unit {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.result-breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

.breakdown-item-value {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.breakdown-item-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   COMPARISON TABLE
   ========================================================================== */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.compare-table th, .compare-table td {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.94rem;
}

.compare-table th {
  background: rgba(255, 255, 255, 0.02);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-secondary);
}

.compare-table th.highlight-col {
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-emerald-light);
  font-size: 1.02rem;
  border-top: 3px solid var(--accent-emerald);
}

.compare-table td.highlight-col {
  background: rgba(16, 185, 129, 0.04);
  font-weight: 600;
  color: #ffffff;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.text-bad { color: #f87171; }
.text-good { color: var(--accent-emerald-light); }

/* ==========================================================================
   PRICING & PACKAGES
   ========================================================================== */
.pricing-card-wrap {
  max-width: 680px;
  margin: 0 auto;
}

.pricing-card {
  background: linear-gradient(160deg, #111a2e 0%, #0c1322 100%);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-glow), var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.pricing-badge-popular {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--accent-emerald);
  color: #062816;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
}

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

.pricing-title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 1.25rem 0;
}

.price-currency {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-emerald-light);
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

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

.pricing-payment-scheme {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.2rem;
  font-size: 0.88rem;
  color: #a7f3d0;
  margin-bottom: 2rem;
}

.pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.pricing-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.96rem;
}

.pricing-features-list li svg {
  color: var(--accent-emerald);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: rgba(16, 185, 129, 0.35);
}

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

.faq-icon {
  font-size: 1.25rem;
  color: var(--accent-emerald-light);
  transition: transform var(--transition-smooth);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding-bottom: 1.5rem;
}

/* ==========================================================================
   CALL TO ACTION & FOOTER
   ========================================================================== */
.final-cta {
  text-align: center;
  padding: 5rem 0;
  background: radial-gradient(circle at center, rgba(16, 185, 129, 0.12) 0%, rgba(7, 10, 18, 0) 70%);
}

.final-cta-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.final-cta-sub {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.site-footer {
  background: #04070d;
  border-top: 1px solid var(--border-subtle);
  padding: 3rem 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

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

/* Floating WhatsApp Quick Contact */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: #082413;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  transition: var(--transition-smooth);
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
  color: #000000;
}

/* ==========================================================================
   RESPONSIVE DESIGN (REFINED BREAKPOINTS)
   ========================================================================== */
@media (max-width: 1080px) {
  .nav-menu {
    gap: 1rem;
  }
  .nav-link {
    font-size: 0.82rem;
  }
  .btn-sm {
    padding: 0.45rem 0.85rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 992px) {
  .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .trust-row {
    justify-content: center;
  }

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

  .demo-display-panel {
    grid-template-columns: 1fr;
  }

  .founder-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founder-photo {
    max-width: 260px;
    height: 320px;
  }

  .founder-points {
    align-items: center;
  }

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

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.1rem;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .floating-whatsapp span {
    display: none;
  }

  .floating-whatsapp {
    padding: 0.85rem;
    border-radius: 50%;
  }
}

@media (max-width: 520px) {
  .nav-actions .btn-secondary {
    display: none;
  }
}

