:root {
  /* ─── Deep Orange Palette ──────────────────────────────────────────────── */
  --primary: #ea580c;
  --primary-dark: #c2410c;
  --primary-light: #f97316;
  --primary-glow: rgba(234, 88, 12, 0.25);
  --primary-tint: #fff7ed;
  --primary-border: #fed7aa;
  
  /* ─── Royal & Electric Blue Palette ────────────────────────────────────── */
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-light: #0284c7;
  --blue-glow: rgba(37, 99, 235, 0.22);
  --blue-tint: #eff6ff;
  --blue-border: #bfdbfe;

  /* ─── Light Blue Background & Pure White Surfaces ───────────────────────── */
  --light-bg: #f0f7ff;
  --light-bg-subtle: #e8f2fe;
  --surface-white: #ffffff;
  --card-white: #ffffff;
  --card-white-hover: #ffffff;
  --card-border: #dbeafe;
  --card-border-hover: #93c5fd;
  --dark-border-highlight: #ea580c;

  /* ─── Typography: Dark Slate & Navy for High Contrast Readability ──────── */
  --text-dark: #0f172a;
  --text-heading: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-dim: #94a3b8;
  --text-light: #ffffff;

  /* ─── Accent Colors ────────────────────────────────────────────────────── */
  --accent-green: #059669;
  --accent-amber: #d97706;
  --accent-red: #dc2626;

  /* ─── Border Radii & Transitions ──────────────────────────────────────── */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 10px 28px -6px rgba(37, 99, 235, 0.08), 0 4px 12px -2px rgba(15, 23, 42, 0.05);
  --shadow-card-hover: 0 18px 36px -6px rgba(37, 99, 235, 0.14), 0 6px 16px -2px rgba(15, 23, 42, 0.08);
  --shadow-orange-glow: 0 6px 20px rgba(234, 88, 12, 0.35);
  --shadow-blue-glow: 0 6px 20px rgba(37, 99, 235, 0.30);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-body);
  background-color: var(--light-bg);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, .brand-font {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
  color: var(--text-heading);
}

/* ──────────────────────────────────────────────────────────────────────────
   BACKGROUND ATMOSPHERIC GLOWS (Soft Sky Blue & Warm Orange Ambient)
   ────────────────────────────────────────────────────────────────────────── */
.bg-glow-top {
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 1050px;
  height: 680px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, rgba(234, 88, 12, 0.08) 50%, transparent 70%);
  filter: blur(95px);
  pointer-events: none;
  z-index: 0;
}

.bg-glow-mid {
  position: absolute;
  top: 38%;
  right: -150px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.10) 0%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.bg-glow-right {
  position: absolute;
  top: 72%;
  left: -150px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.12) 0%, transparent 70%);
  filter: blur(105px);
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ──────────────────────────────────────────────────────────────────────────
   HEADER & NAVBAR (Frosted Light Blue / White Glass)
   ────────────────────────────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(240, 247, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--card-border);
  z-index: 100;
  padding: 14px 0;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.03);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #fff7ed, #eff6ff);
  border: 1.5px solid var(--primary-border);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 10px rgba(234, 88, 12, 0.2);
}

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

.logo-name {
  font-family: 'Outfit', sans-serif;
  font-size: 21px;
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.logo-badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--primary);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 22px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-body);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition-smooth);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Common Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
  border: none;
}

/* Deep Orange Primary Button */
.btn-web {
  background: linear-gradient(135deg, #ea580c, #c2410c);
  color: #ffffff;
  box-shadow: var(--shadow-orange-glow);
}

.btn-web:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #f97316, #ea580c);
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.5);
}

/* Royal Blue Windows Button */
.btn-windows {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  box-shadow: var(--shadow-blue-glow);
}

.btn-windows:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.5);
}

/* White Card Secondary Button */
.btn-secondary {
  background: #ffffff;
  color: var(--text-heading);
  border: 1px solid var(--card-border);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.btn-secondary:hover {
  background: #f8faff;
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  padding: 10px 14px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
}

/* ──────────────────────────────────────────────────────────────────────────
   HERO SECTION
   ────────────────────────────────────────────────────────────────────────── */
.hero {
  padding: 60px 0 40px;
  text-align: center;
  position: relative;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--primary-border);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(234, 88, 12, 0.12);
}

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

.pulse-dot.green {
  background-color: #059669;
  box-shadow: 0 0 10px #059669;
}

.pulse-dot.blue {
  background-color: var(--blue);
  box-shadow: 0 0 10px var(--blue);
}

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

.hero-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.16;
  color: var(--text-heading);
  max-width: 980px;
  margin: 0 auto 20px;
}

/* Gradient text: Deep Navy -> Royal Blue -> Deep Orange */
.gradient-text {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 45%, #ea580c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 820px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

/* Large Hero CTA Buttons */
.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.btn-web-lg, .btn-windows-lg, .btn-secondary-lg {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  text-align: left;
}

.btn-web-lg {
  background: linear-gradient(135deg, #ea580c, #c2410c);
  color: #ffffff;
  box-shadow: 0 6px 24px rgba(234, 88, 12, 0.4);
}

.btn-web-lg:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #f97316, #ea580c);
  box-shadow: 0 8px 30px rgba(234, 88, 12, 0.55);
}

.btn-windows-lg {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.4);
}

.btn-windows-lg:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.55);
}

.btn-secondary-lg {
  background: #ffffff;
  color: var(--text-heading);
  border: 1.5px solid var(--card-border);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.btn-secondary-lg:hover {
  background: #f8faff;
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}

.btn-icon {
  font-size: 26px;
}

.btn-content {
  display: flex;
  flex-direction: column;
}

.btn-label {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.btn-subtext {
  font-size: 11px;
  opacity: 0.9;
  font-weight: 400;
}

/* Hero Stats Grid (Pure White Cards with Light Blue Border) */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 980px;
  margin: 0 auto 50px;
}

.hero-stat-card {
  background: #ffffff;
  border: 1px solid var(--card-border);
  padding: 18px 14px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.hero-stat-card:hover {
  border-color: var(--primary-border);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.hero-stat-card:nth-child(2) .stat-number {
  color: var(--blue);
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

/* ──────────────────────────────────────────────────────────────────────────
   HERO INTERACTIVE PREVIEW WRAPPER (Pure White & Light Blue Container)
   ────────────────────────────────────────────────────────────────────────── */
.hero-preview-wrapper {
  max-width: 1160px;
  margin: 0 auto;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: 0 25px 60px -15px rgba(37, 99, 235, 0.12), 0 4px 20px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  text-align: left;
}

.preview-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: #f8faff;
  border-bottom: 1px solid var(--card-border);
  font-size: 12px;
}

.window-controls {
  display: flex;
  gap: 6px;
}

.ctrl {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.ctrl.red { background: #ef4444; }
.ctrl.yellow { background: #eab308; }
.ctrl.green { background: #22c55e; }

.preview-title-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-body);
  font-weight: 600;
}

.live-indicator {
  width: 7px;
  height: 7px;
  background: #059669;
  border-radius: 50%;
}

.preview-active-status {
  background: #dbeafe;
  color: #1e40af;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 11px;
}

.preview-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 20px;
  background: #f0f7ff;
}

.preview-module {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 18px;
  box-shadow: var(--shadow-card);
}

.module-badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.mess-module .module-badge {
  color: var(--primary);
}

.mock-table-strip {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.mock-pill {
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  font-weight: 600;
}
.mock-pill.active { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }
.mock-pill.billed { background: #fef3c7; color: #b45309; }
.mock-pill.empty { background: #f1f5f9; color: #64748b; }

.mock-order-body {
  background: #f8faff;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 14px;
  font-size: 12px;
}

.mock-line-item {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  color: var(--text-body);
}

.mock-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed var(--card-border);
  font-weight: 700;
  color: var(--text-heading);
}

.highlight-price {
  font-size: 15px;
  color: #059669;
}

.mock-action-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mock-btn-sm {
  font-size: 11px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  color: white;
}
.mock-btn-sm.green { background: #059669; }
.mock-btn-sm.blue { background: #2563eb; }
.mock-btn-sm.orange { background: #ea580c; }
.mock-btn-sm.purple { background: #7c3aed; }
.mock-btn-sm.wa { background: #16a34a; }

/* Mess Module Specific Mockup */
.mock-sub-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.badge-sub-id {
  font-size: 10px;
  background: #e2e8f0;
  color: #334155;
  padding: 2px 6px;
  border-radius: 4px;
  margin-right: 6px;
  font-weight: 700;
}

.mock-client-name {
  font-size: 13px;
  color: var(--text-heading);
}

.badge-active-plan {
  font-size: 11px;
  background: #fff7ed;
  color: #c2410c;
  border: 1px solid #fed7aa;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 700;
}

.mock-slot-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.slot-chip {
  background: #f8faff;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.slot-icon { font-size: 16px; margin-bottom: 2px; }
.slot-name { font-size: 11px; font-weight: 700; color: var(--text-heading); }
.slot-status { font-size: 9px; margin-top: 2px; }

.slot-chip.punched { border-color: #a7f3d0; background: #ecfdf5; }
.slot-chip.punched .slot-status { color: #059669; font-weight: 700; }

.slot-chip.active { border-color: #fed7aa; background: #fff7ed; }
.slot-chip.active .slot-status { color: #ea580c; font-weight: 700; }

.slot-chip.upcoming .slot-status { color: #64748b; }

.mock-mess-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.kpi-mini {
  background: #f8faff;
  padding: 6px;
  border-radius: 6px;
  text-align: center;
  border: 1px solid var(--card-border);
}

.kpi-lbl { font-size: 10px; color: #64748b; display: block; font-weight: 600; }
.kpi-val { font-size: 11px; font-weight: 800; }
.kpi-val.green { color: #059669; }
.kpi-val.amber { color: #b45309; }
.kpi-val.blue { color: #0284c7; }

/* ──────────────────────────────────────────────────────────────────────────
   SUITE SWITCHER PILL NAV
   ────────────────────────────────────────────────────────────────────────── */
.suite-switcher-section {
  padding: 20px 0 30px;
}

.suite-switcher-container {
  display: flex;
  justify-content: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid var(--card-border);
  padding: 8px;
  border-radius: var(--radius-md);
  max-width: 860px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}

.suite-switch-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 18px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: left;
}

.suite-switch-btn:hover {
  background: #f8faff;
  color: var(--text-heading);
}

.suite-switch-btn.active {
  background: #eff6ff;
  border-color: var(--blue-border);
  color: var(--text-heading);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.12);
}

.switch-icon {
  font-size: 22px;
}

.switch-text strong {
  display: block;
  font-size: 14px;
  color: var(--text-heading);
}

.switch-text span {
  font-size: 11px;
  color: var(--text-muted);
}

/* ──────────────────────────────────────────────────────────────────────────
   SECTION COMMON STYLES & FEATURE GRIDS (Pure White Cards on Light Blue)
   ────────────────────────────────────────────────────────────────────────── */
.feature-suite-section {
  padding: 70px 0;
  display: none;
}

.feature-suite-section.active-suite {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

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

.section-header {
  margin-bottom: 50px;
}

.section-header.text-center {
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: #fff7ed;
  border: 1px solid var(--primary-border);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.08);
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

.grid-features-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

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

.feature-card.highlight-card {
  border-color: var(--primary-border);
  background: linear-gradient(180deg, #fffaf5 0%, #ffffff 100%);
}

.feature-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

/* Orange & Blue Icon Wrappers on Light Background */
.feature-icon-wrapper.teal,
.feature-icon-wrapper.orange { 
  background: #fff7ed; 
  border: 1px solid #fed7aa; 
}
.feature-icon-wrapper.blue { 
  background: #eff6ff; 
  border: 1px solid #bfdbfe; 
}
.feature-icon-wrapper.purple { 
  background: #f5f3ff; 
  border: 1px solid #ddd6fe; 
}
.feature-icon-wrapper.green { 
  background: #ecfdf5; 
  border: 1px solid #a7f3d0; 
}
.feature-icon-wrapper.amber { 
  background: #fff7ed; 
  border: 1px solid #fed7aa; 
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 18px;
}

.feature-checklist {
  list-style: none;
  border-top: 1px solid var(--card-border);
  padding-top: 14px;
}

.feature-checklist li {
  font-size: 13px;
  color: var(--text-body);
  padding: 4px 0;
  position: relative;
  padding-left: 20px;
}

.feature-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 800;
}

/* ──────────────────────────────────────────────────────────────────────────
   UNIFIED SYNERGY SECTION
   ────────────────────────────────────────────────────────────────────────── */
.synergy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.synergy-card {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
}

.synergy-card:hover {
  border-color: var(--blue-border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.synergy-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.synergy-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 10px;
}

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

/* ──────────────────────────────────────────────────────────────────────────
   KITCHEN DISPLAY SYSTEM (KDS) SPOTLIGHT
   ────────────────────────────────────────────────────────────────────────── */
.kds-spotlight-section {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent 0%, #e6f0fc 50%, transparent 100%);
}

.kds-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.kds-highlights {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kds-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.5;
}

.kds-highlight-item strong {
  color: var(--text-heading);
}

.hl-icon {
  font-size: 20px;
  background: #eff6ff;
  border: 1.5px solid #bfdbfe;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Keep the KDS Terminal Dark for High-Tech Screen Contrast */
.kds-visual-mockup {
  background: #090e1c;
  border: 1px solid #1e293b;
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25), 0 0 30px rgba(234, 88, 12, 0.15);
}

.kds-screen-frame {
  background: #0f172a;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.kds-screen-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: #1e293b;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
}

.kds-timer {
  background: #ea580c;
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
}

.kds-ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 12px;
  background: #0b1120;
}

.kds-ticket {
  background: #1e293b;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 4px solid var(--blue-light);
  font-size: 11px;
}

.kds-ticket.urgent {
  border-top-color: #ef4444;
  background: rgba(239, 68, 68, 0.12);
}

.kds-ticket.mess-kds {
  border-top-color: #f97316;
  background: rgba(234, 88, 12, 0.12);
}

.ticket-head {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.ticket-time {
  font-size: 10px;
  color: #ef4444;
}

.ticket-body p {
  color: #cbd5e1;
  padding: 2px 0;
}

.kds-status-btn {
  margin-top: 10px;
  padding: 5px;
  border-radius: 4px;
  border: none;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  color: white;
}
.kds-status-btn.done { background: #059669; }
.kds-status-btn.preparing { background: #2563eb; }
.kds-status-btn.packed { background: #ea580c; }

/* ──────────────────────────────────────────────────────────────────────────
   OFFLINE-FIRST HYBRID ARCHITECTURE (White & Light Blue Card)
   ────────────────────────────────────────────────────────────────────────── */
.offline-section {
  padding: 70px 0;
}

.offline-container-card {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 50px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.offline-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 14px;
  border-radius: 999px;
  background: #eff6ff;
  border: 1px solid var(--blue-border);
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}

.offline-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 14px;
}

.offline-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.offline-flow-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.flow-box {
  background: #f8faff;
  border: 1px solid var(--card-border);
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 170px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.flow-box.active-local {
  border-color: var(--primary-border);
  background: #fff7ed;
  box-shadow: 0 4px 16px rgba(234, 88, 12, 0.15);
}

.flow-box.cloud-box {
  border-color: var(--blue-border);
  background: #eff6ff;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.12);
}

.flow-icon { font-size: 28px; margin-bottom: 6px; }
.flow-box strong { font-size: 15px; color: var(--text-heading); }
.flow-box span { font-size: 11px; color: var(--text-muted); }

.flow-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 20px;
  color: var(--primary);
  font-weight: 800;
}

.flow-arrow span {
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.offline-perks-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.perk-item {
  font-size: 14px;
  color: var(--text-body);
  font-weight: 600;
}

.perk-item span {
  color: var(--primary);
  font-weight: 800;
  margin-right: 6px;
}

/* ──────────────────────────────────────────────────────────────────────────
   CALCULATOR SECTION (White & Light Blue)
   ────────────────────────────────────────────────────────────────────────── */
.calculator-section {
  padding: 80px 0;
}

.calc-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-card);
}

.calc-input-group {
  margin-bottom: 28px;
}

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

.calc-label-row label {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-heading);
}

.calc-val-pill {
  background: #fff7ed;
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid var(--primary-border);
}

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

.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px rgba(234, 88, 12, 0.4);
  cursor: pointer;
}

.calc-results-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #f8faff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 28px;
}

.total-savings-badge {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--card-border);
}

.savings-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.savings-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--primary);
  margin: 6px 0;
}

.savings-subtext {
  font-size: 12px;
  color: var(--text-muted);
}

.breakdown-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-body);
}

.breakdown-item strong {
  color: var(--text-heading);
}

/* ──────────────────────────────────────────────────────────────────────────
   HARDWARE & PLATFORMS
   ────────────────────────────────────────────────────────────────────────── */
.hardware-section {
  padding: 70px 0;
}

.hardware-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hw-card {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
}

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

.hw-icon { font-size: 36px; margin-bottom: 14px; }

.hw-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 10px;
}

.hw-card p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 14px;
}

.hw-spec {
  display: inline-block;
  font-size: 11px;
  background: #eff6ff;
  border: 1px solid var(--blue-border);
  color: var(--blue-dark);
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 700;
}

/* ──────────────────────────────────────────────────────────────────────────
   COMPARISON TABLE
   ────────────────────────────────────────────────────────────────────────── */
.comparison-section {
  padding: 70px 0;
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-card);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  font-size: 14px;
  text-align: left;
}

.comparison-table th, .comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--card-border);
}

.comparison-table th {
  background: #f8faff;
  color: var(--text-heading);
  font-weight: 700;
}

.comparison-table .col-highlight {
  background: #eff6ff;
  border-left: 1.5px solid var(--blue-border);
  border-right: 1.5px solid var(--blue-border);
  font-weight: 700;
  color: var(--text-heading);
}

.comparison-table .check {
  color: #059669;
  font-weight: 800;
  margin-right: 6px;
}

.comparison-table .cross {
  color: #dc2626;
  font-weight: 800;
  margin-right: 6px;
}

.comparison-table .partial {
  color: #d97706;
  font-weight: 800;
  margin-right: 6px;
}

/* ──────────────────────────────────────────────────────────────────────────
   FAQ ACCORDION
   ────────────────────────────────────────────────────────────────────────── */
.faq-section {
  padding: 70px 0;
}

.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

.faq-item.open {
  border-color: var(--primary-border);
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.12);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  color: var(--text-heading);
  font-size: 15px;
}

.faq-toggle {
  font-size: 20px;
  color: var(--primary);
  transition: transform 0.2s;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ──────────────────────────────────────────────────────────────────────────
   FOOTER (Deep Navy Grounding with Crisp White Text)
   ────────────────────────────────────────────────────────────────────────── */
.footer {
  padding: 80px 0 30px;
  border-top: 1px solid var(--card-border);
  background: #080f24;
}

.footer-cta-banner {
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.25) 0%, rgba(37, 99, 235, 0.25) 100%);
  border: 1px solid rgba(234, 88, 12, 0.4);
  border-radius: var(--radius-lg);
  padding: 44px;
  text-align: center;
  margin-bottom: 60px;
}

.footer-cta-banner h2 {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.footer-cta-banner p {
  font-size: 16px;
  color: #cbd5e1;
  margin-bottom: 26px;
}

.footer-btn-group {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  text-decoration: none;
  color: #94a3b8;
  font-size: 13px;
  transition: var(--transition-smooth);
}

.footer-col ul a:hover {
  color: var(--primary-light);
}

.brand-sub {
  font-size: 13px;
  color: #94a3b8;
  margin: 10px 0 14px;
}

.footer-copy {
  font-size: 12px;
  color: #64748b;
}

.footer-domain {
  font-size: 11px;
  color: #64748b;
  margin-top: 6px;
}

.footer-domain code {
  color: var(--primary-light);
}

/* ──────────────────────────────────────────────────────────────────────────
   MODAL (Pure White Card with Crisp Dark Text & Deep Orange Buttons)
   ────────────────────────────────────────────────────────────────────────── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop.active {
  display: flex;
  animation: modalFadeIn 0.2s ease-out;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.modal-dialog {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  max-width: 480px;
  width: 100%;
  padding: 32px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 24px;
  cursor: pointer;
}

.modal-close-btn:hover { color: var(--text-heading); }

.modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.modal-icon { font-size: 32px; margin-bottom: 8px; }

.modal-header h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.modal-header p {
  font-size: 13px;
  color: var(--text-muted);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.form-group input, .form-group select {
  width: 100%;
  padding: 10px 14px;
  background: #f8faff;
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-sm);
  color: var(--text-heading);
  font-size: 14px;
  outline: none;
  transition: var(--transition-smooth);
}

.form-group input:focus, .form-group select:focus {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 10px rgba(234, 88, 12, 0.2);
}

.btn-primary-submit {
  background: linear-gradient(135deg, #ea580c, #c2410c);
  color: white;
  border: none;
  padding: 13px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(234, 88, 12, 0.35);
  transition: var(--transition-smooth);
}

.btn-primary-submit:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #f97316, #ea580c);
  box-shadow: 0 6px 22px rgba(234, 88, 12, 0.5);
}

/* ──────────────────────────────────────────────────────────────────────────
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ────────────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-title { font-size: 38px; }
  .grid-features-3col { grid-template-columns: repeat(2, 1fr); }
  .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .preview-split-grid { grid-template-columns: 1fr; }
  .kds-layout { grid-template-columns: 1fr; }
  .calc-card { grid-template-columns: 1fr; }
  .hardware-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-links-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-title { font-size: 30px; }
  .hero-subtitle { font-size: 15px; }
  .grid-features-3col { grid-template-columns: 1fr; }
  .synergy-grid { grid-template-columns: 1fr; }
  .hardware-grid { grid-template-columns: 1fr; }
  .suite-switcher-container { flex-direction: column; }
  .hero-cta-group { flex-direction: column; width: 100%; }
  .btn-web-lg, .btn-windows-lg, .btn-secondary-lg { width: 100%; }
  .footer-links-grid { grid-template-columns: 1fr; }
  .offline-flow-diagram { flex-direction: column; }
  .flow-arrow { transform: rotate(90deg); margin: 10px 0; }
}
