:root {
  --primary: #2D8B55;
  --primary-dark: #1a5e38;
  --primary-light: #e8f5ee;
  --dark-bg: #1a1a2e;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --red-600: #dc2626;
  --orange-500: #f97316;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --slide-transition: 0.5s ease;
  --design-w: 1280px;
  --design-h: 720px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 100%; height: 100%; overflow: hidden; font-family: var(--font); -webkit-font-smoothing: antialiased; background: var(--dark-bg); }
.deck { width: 100%; height: 100%; position: relative; overflow: hidden; transition: background-color 0.4s ease; }
.slide { position: absolute; top: 0; left: 0; width: var(--design-w); height: var(--design-h); display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 60px 80px; opacity: 0; transform-origin: top left; transition: opacity var(--slide-transition); pointer-events: none; overflow: hidden; }
.slide.active { opacity: 1; pointer-events: all; }
.slide-content { max-width: 1200px; width: 100%; display: flex; flex-direction: column; align-items: center; }
.slide-title { font-size: 48px; font-weight: 800; margin-bottom: 12px; letter-spacing: -1px; line-height: 1.1; }
.slide-subtitle { font-size: 22px; font-weight: 400; color: var(--gray-500); margin-bottom: 40px; text-align: center; max-width: 800px; }
.slide.dark { background: var(--dark-bg); color: var(--white); }
.slide.dark .slide-subtitle { color: rgba(255,255,255,0.6); }
.slide.light-green { background: var(--primary-light); }
.slide.white { background: var(--white); color: var(--gray-900); --gray-400: #6b7280; }
.nav-arrow { position: fixed; top: 50%; transform: translateY(-50%); width: 50px; height: 80px; background: rgba(0,0,0,0.05); border: none; cursor: pointer; z-index: 100; display: flex; align-items: center; justify-content: center; border-radius: 8px; transition: background 0.2s; font-size: 24px; color: var(--gray-400); }
.nav-arrow:hover { background: rgba(0,0,0,0.1); color: var(--gray-700); }
.nav-arrow.left { left: 16px; } .nav-arrow.right { right: 16px; }
.slide-dots { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 100; }
.slide-dots .dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(0,0,0,0.15); cursor: pointer; transition: all 0.3s; border: none; }
.slide-dots .dot.active { background: var(--primary); width: 24px; border-radius: 4px; }
.slide-counter { position: fixed; bottom: 24px; right: 32px; font-size: 14px; font-weight: 500; color: var(--gray-400); z-index: 100; font-variant-numeric: tabular-nums; }

/* Cover */
.cover-logo img { height: 120px; width: auto; }
.cover-title { font-size: 64px; font-weight: 800; color: var(--white); letter-spacing: -2px; margin-top: 24px; }
.cover-tagline { font-size: 26px; font-weight: 300; color: rgba(255,255,255,0.6); margin-top: 12px; }
.cover-sub { font-size: 16px; color: rgba(255,255,255,0.35); margin-top: 20px; }
.cover-year { position: absolute; bottom: 40px; font-size: 16px; color: rgba(255,255,255,0.3); font-weight: 500; }

/* Compare cols */
.compare-cols { display: grid; grid-template-columns: 1fr 60px 1fr; gap: 0; width: 100%; max-width: 900px; align-items: stretch; margin-bottom: 32px; }
.compare-card { border-radius: 16px; padding: 32px 28px; text-align: center; }
.compare-card.bad { background: #fef2f2; border: 2px solid #fecaca; }
.compare-card.good { background: var(--primary-light); border: 2px solid #86efac; }
.compare-vs { display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; color: var(--gray-400); }
.compare-card .big-num { font-size: 52px; font-weight: 900; line-height: 1; margin-bottom: 6px; }
.compare-card.bad .big-num { color: var(--red-600); }
.compare-card.good .big-num { color: var(--primary); }
.compare-card .label { font-size: 15px; color: var(--gray-600); margin-bottom: 4px; }
.compare-card .sublabel { font-size: 13px; color: var(--gray-600); }
.callout-box { background: var(--primary-light); border-left: 4px solid var(--primary); border-radius: 8px; padding: 18px 24px; width: 100%; font-size: 17px; color: var(--gray-700); line-height: 1.5; max-width: 900px; }
.callout-box strong { color: var(--primary-dark); }

/* Payslip */
.payslip-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; width: 100%; max-width: 900px; margin-bottom: 24px; }
.payslip-card { border-radius: 16px; padding: 24px 20px; }
.payslip-card.bad { background: #fef2f2; border: 2px solid #fecaca; }
.payslip-card.good { background: var(--primary-light); border: 2px solid #86efac; }
.payslip-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 14px; }
.payslip-card.bad h3 { color: var(--red-600); }
.payslip-card.good h3 { color: var(--primary-dark); }
.payslip-row { display: flex; justify-content: space-between; padding: 5px 0; font-size: 14px; color: var(--gray-600); border-bottom: 1px solid rgba(0,0,0,0.06); }
.payslip-row:last-child { border-bottom: none; }
.payslip-row.total { font-weight: 800; font-size: 16px; margin-top: 6px; padding-top: 10px; border-top: 2px solid rgba(0,0,0,0.1); border-bottom: none; }
.payslip-card.bad .payslip-row.total { color: var(--red-600); }
.payslip-card.good .payslip-row.total { color: var(--primary-dark); }
.raise-callout { background: var(--primary); color: white; border-radius: 12px; padding: 18px 28px; font-size: 20px; font-weight: 700; text-align: center; max-width: 900px; }

/* Mini table */
.mini-table { width: 100%; background: white; border-radius: 12px; overflow: hidden; max-width: 900px; }
.mini-table table { width: 100%; border-collapse: collapse; font-size: 15px; }
.mini-table th { background: var(--primary); text-align: left; padding: 12px 20px; font-weight: 600; color: white; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; }
.mini-table th:first-child { border-radius: 12px 0 0 0; } .mini-table th:last-child { border-radius: 0 12px 0 0; }
.mini-table td { padding: 12px 20px; border-top: 1px solid var(--gray-100); color: var(--gray-700); }
.mini-table th:not(:first-child), .mini-table td:not(:first-child) { text-align: right; }
.mini-table tr:nth-child(even) td { background: var(--gray-50); }
.mini-table tr.highlight td { background: var(--primary-light); font-weight: 700; color: var(--primary-dark); }
.mini-table tr:last-child td:first-child { border-radius: 0 0 0 12px; } .mini-table tr:last-child td:last-child { border-radius: 0 0 12px 0; }
.anchor-num { font-size: 56px; font-weight: 900; color: var(--primary); letter-spacing: -2px; margin-bottom: 4px; }
.anchor-label { font-size: 18px; color: var(--gray-500); margin-bottom: 28px; }

/* Food spend */
.food-cols { display: grid; grid-template-columns: 1fr 60px 1fr; gap: 0; width: 100%; max-width: 900px; align-items: stretch; margin-bottom: 28px; }
.food-card { border-radius: 16px; padding: 28px 24px; }
.food-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 16px; color: var(--gray-800); }
.food-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; color: var(--gray-600); border-bottom: 1px solid rgba(0,0,0,0.06); }
.food-row:last-child { border-bottom: none; }
.food-row.total { font-weight: 800; font-size: 16px; margin-top: 8px; padding-top: 10px; border-top: 2px solid rgba(0,0,0,0.1); border-bottom: none; }
.food-card.restaurant { background: #fef2f2; border: 2px solid #fecaca; }
.food-card.restaurant .food-row.total { color: var(--red-600); }
.food-card.caterer { background: var(--primary-light); border: 2px solid #86efac; }
.food-card.caterer .food-row.total { color: var(--primary-dark); }

/* Summary table */
.summary-table { width: 100%; max-width: 900px; border-collapse: separate; border-spacing: 0; font-size: 15px; }
.summary-table th { text-align: left; padding: 12px 20px; background: var(--primary); color: white; font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; }
.summary-table th:first-child { border-radius: 12px 0 0 0; } .summary-table th:last-child { border-radius: 0 12px 0 0; }
.summary-table td { padding: 12px 20px; border-bottom: 1px solid var(--gray-100); color: var(--gray-700); }
.summary-table tr:nth-child(even) td { background: var(--gray-50); }
.summary-table td:last-child { color: var(--primary-dark); font-weight: 600; }
.summary-table tr:last-child td:first-child { border-radius: 0 0 0 12px; } .summary-table tr:last-child td:last-child { border-radius: 0 0 12px 0; }
.summary-bottom { font-size: 17px; font-weight: 600; color: var(--primary-dark); text-align: center; margin-top: 24px; max-width: 900px; line-height: 1.5; }

/* Time */
.time-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; width: 100%; max-width: 900px; margin-bottom: 28px; }
.metric-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; width: 100%; max-width: 900px; }
.metric-card { background: var(--gray-50); border-radius: 12px; padding: 18px; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.metric-card .value { font-size: 26px; font-weight: 800; color: var(--primary-dark); }
.metric-card .label { font-size: 13px; color: var(--gray-700); margin-top: 4px; font-weight: 600; }

/* Data table */
.data-table { width: 100%; max-width: 800px; border-collapse: separate; border-spacing: 0; font-size: 16px; }
.data-table th { text-align: left; padding: 14px 20px; background: var(--primary); color: white; font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; }
.data-table th:first-child { border-radius: 12px 0 0 0; } .data-table th:last-child { border-radius: 0 12px 0 0; }
.data-table td { padding: 14px 20px; border-bottom: 1px solid var(--gray-100); color: var(--gray-700); }
.data-table tr:nth-child(even) td { background: var(--gray-50); }
.data-table tr:last-child td:first-child { border-radius: 0 0 0 12px; } .data-table tr:last-child td:last-child { border-radius: 0 0 12px 0; }
.icon-no { color: var(--red-600); font-weight: 700; font-size: 18px; }
.icon-yes { color: var(--primary); font-weight: 700; font-size: 18px; }

/* Solution cards for Why Tabldot */
.solution-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; width: 100%; margin-bottom: 32px; }
.solution-card { background: var(--gray-50); border-radius: 16px; padding: 28px 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.solution-card h3 { font-size: 17px; font-weight: 700; color: var(--primary-dark); margin-bottom: 12px; }
.solution-card ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.solution-card li { font-size: 15px; line-height: 1.5; color: var(--gray-600); padding-left: 20px; position: relative; }
.solution-card li::before { content: '\2192'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
.key-line { font-size: 20px; font-weight: 600; color: var(--primary-dark); text-align: center; }

/* Product two-col */
.two-col-product { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; width: 100%; max-width: 900px; }
.product-col { background: var(--gray-50); border-radius: 16px; padding: 28px 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.product-col-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 2px solid var(--gray-200); }
.product-icon { font-size: 32px; }
.product-col-header h3 { font-size: 18px; font-weight: 700; color: var(--gray-800); }
.product-flow { display: flex; flex-direction: column; gap: 12px; }
.flow-step-item { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--gray-700); line-height: 1.4; }
.flow-num { width: 28px; height: 28px; border-radius: 50%; background: var(--primary); color: white; font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.product-note { margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--gray-200); font-size: 13px; color: var(--gray-600); font-weight: 500; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; width: 100%; max-width: 1000px; margin-bottom: 24px; }
.step-card { background: var(--gray-50); border-radius: 16px; padding: 20px 16px; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,0.06); border-top: 4px solid var(--primary); }
.step-num { font-size: 28px; font-weight: 900; color: var(--primary); margin-bottom: 4px; }
.step-card h3 { font-size: 13px; font-weight: 700; color: var(--gray-800); margin-bottom: 6px; }
.step-card p { font-size: 12px; color: var(--gray-600); line-height: 1.4; }
.steps-callout { background: var(--primary-light); border-radius: 12px; padding: 16px 28px; font-size: 17px; font-weight: 600; color: var(--primary-dark); text-align: center; }

/* CTA */
.cta-logo img { height: 80px; width: auto; }
.cta-number { font-size: 48px; font-weight: 900; color: var(--primary); letter-spacing: -1px; margin-top: 32px; }
.cta-label { font-size: 22px; color: rgba(255,255,255,0.6); margin-top: 8px; }
.cta-action { margin-top: 40px; padding: 20px 48px; background: var(--primary); border-radius: 12px; font-size: 22px; font-weight: 700; color: white; display: inline-block; }
.cta-contact { margin-top: 32px; font-size: 16px; color: rgba(255,255,255,0.35); }
.cta-qr { margin-top: 24px; }
.cta-qr img { height: 120px; width: 120px; border-radius: 12px; }
.cta-qr-label { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 8px; }

/* Mockup images */
.mockup-phone { height: 360px; width: auto; border-radius: 24px; box-shadow: 0 8px 32px rgba(0,0,0,0.15); }
.mockup-desktop { width: 100%; max-width: 420px; border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,0.15); }

/* Language toggle */
.back-btn { position: fixed; top: 20px; left: 20px; z-index: 200; background: rgba(255,255,255,0.12); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.15); color: white; font-family: var(--font); font-size: 14px; font-weight: 700; padding: 8px 16px; border-radius: 8px; cursor: pointer; transition: all 0.3s; letter-spacing: 0.5px; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.back-btn:hover { background: rgba(255,255,255,0.2); }
.back-btn.light-mode { background: rgba(0,0,0,0.06); border-color: rgba(0,0,0,0.1); color: var(--gray-700); }
.back-btn.light-mode:hover { background: rgba(0,0,0,0.1); }
.lang-toggle { position: fixed; top: 20px; right: 20px; z-index: 200; background: rgba(255,255,255,0.12); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.15); color: white; font-family: var(--font); font-size: 14px; font-weight: 700; padding: 8px 16px; border-radius: 8px; cursor: pointer; transition: all 0.3s; letter-spacing: 0.5px; }
.lang-toggle:hover { background: rgba(255,255,255,0.2); }
.lang-toggle.light-mode { background: rgba(0,0,0,0.06); border-color: rgba(0,0,0,0.1); color: var(--gray-700); }
.lang-toggle.light-mode:hover { background: rgba(0,0,0,0.1); }
