/* ============================================================
   ZeInfoTech POS — Marketing Site
   Design system: light, premium, soft-glass. Indigo brand core,
   cyan + emerald accents. Self-contained, no JS framework.
   ============================================================ */

:root {
  --bg: #f7f8fc;
  --bg-soft: #eef0f9;
  --surface: rgba(15, 23, 42, 0.035);
  --surface-strong: rgba(15, 23, 42, 0.06);
  --border: rgba(15, 23, 42, 0.09);
  --border-strong: rgba(15, 23, 42, 0.16);

  --text: #0f172a;
  --text-muted: #55607a;
  --text-faint: #8891a6;

  --primary: #6366f1;
  --primary-soft: #4f46e5;
  --primary-deep: #4338ca;
  --cyan: #0e7490;
  --emerald: #059669;
  --amber: #b45309;
  --rose: #be123c;

  --grad-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #22d3ee 100%);
  --grad-text: linear-gradient(135deg, #4338ca 0%, #7c3aed 45%, #0e7490 100%);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-glow: 0 0 0 1px rgba(99, 102, 241, 0.10), 0 20px 60px -20px rgba(99, 102, 241, 0.25);
  --container: 1180px;

  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Noto Sans Tamil', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Sora', 'Inter', 'Noto Sans Tamil', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.02em;
}

p { margin: 0; color: var(--text-muted); }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-soft);
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.25);
  padding: 6px 14px;
  border-radius: 100px;
}

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Background texture (fixed, behind everything) ---------- */
.bg-fx {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(700px 500px at 12% -5%, rgba(99, 102, 241, 0.12), transparent 60%),
    radial-gradient(600px 500px at 90% 10%, rgba(34, 211, 238, 0.10), transparent 60%),
    radial-gradient(800px 600px at 50% 110%, rgba(139, 92, 246, 0.09), transparent 60%),
    var(--bg);
}
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 90%);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 8px 30px -8px rgba(99, 102, 241, 0.6);
}
.btn-primary:hover { box-shadow: 0 12px 36px -6px rgba(99, 102, 241, 0.75); transform: translateY(-2px); }
.btn-ghost {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: var(--surface-strong); border-color: var(--border-strong); transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: 13.5px; }
.btn-block { width: 100%; }

/* ---------- Navbar ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 0;
  transition: padding 0.3s ease;
}
.nav.scrolled { padding: 10px 0; }
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 9px 10px 9px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.68));
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 100px;
  backdrop-filter: blur(22px) saturate(160%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 0 0 1px var(--border),
    0 14px 40px -18px rgba(15, 23, 42, 0.18);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.nav.scrolled .nav-inner {
  background: linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 0 0 1px var(--border-strong),
    0 18px 44px -16px rgba(15, 23, 42, 0.24);
}
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Sora', sans-serif; font-weight: 800; font-size: 16.5px; }
.brand .mark {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  filter: drop-shadow(0 3px 8px rgba(38, 51, 158, 0.35));
  flex-shrink: 0;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.brand:hover .mark { transform: rotate(-6deg) scale(1.08); filter: drop-shadow(0 5px 12px rgba(38, 51, 158, 0.45)); }
.brand .mark svg { display: block; }
.brand-name {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
}
.nav-links { display: flex; align-items: center; gap: 12px; }
.nav-links a {
  position: relative;
  padding: 4px 1px 8px;
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  transition: color 0.15s ease;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--grad-primary); border-radius: 2px;
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 8px; }
.nav-cta::before { content: ''; width: 1px; height: 22px; background: var(--border); }
.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: none; border: none; color: var(--text); font-size: 19px;
  transition: background 0.15s ease;
}
.nav-toggle:hover { background: var(--surface); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn-ghost { display: none; }
  .nav-cta::before { display: none; }
  /* The desktop lang-switch would crowd the pill next to "Get a Demo" +
     the hamburger on small screens — the mobile menu already has its own
     full-width EN/தமிழ் switch, so just hide this instance. */
  .nav-cta > .lang-switch { display: none; }
}

.mobile-menu {
  display: none;
  max-width: var(--container);
  margin: 8px auto 0;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px -20px rgba(15, 23, 42, 0.2);
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 12px 4px; font-size: 15px; font-weight: 600; border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border-bottom: none; }

/* ---------- Hero ---------- */
.hero { padding: 96px 0 60px; text-align: center; }
.hero h1 { font-size: clamp(34px, 6vw, 64px); max-width: 880px; margin: 22px auto 0; }
.hero .lede { font-size: clamp(16px, 2vw, 19px); max-width: 620px; margin: 22px auto 0; }
.hero-cta { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-meta { margin-top: 20px; font-size: 13px; color: var(--text-faint); }

/* ---------- App mockup ---------- */
.mockup-wrap { margin-top: 64px; position: relative; }
.mockup {
  max-width: 940px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-glow), 0 50px 100px -30px rgba(15, 23, 42, 0.22);
  overflow: hidden;
}
/* Kept intentionally dark — a device-chrome frame around the screenshot
   reads as an app window either way, and gives the light page a grounded
   contrast point instead of everything floating on white. */
.mockup-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px;
  background: #12172a;
}
.mockup-bar span { width: 11px; height: 11px; border-radius: 50%; background: #444b63; }
.mockup-bar span:nth-child(1) { background: #fb7185; }
.mockup-bar span:nth-child(2) { background: #fbbf24; }
.mockup-bar span:nth-child(3) { background: #34d399; }
.mockup-bar .url { margin-left: 14px; font-size: 11.5px; color: #9aa4bd; background: rgba(255,255,255,0.06); padding: 5px 14px; border-radius: 100px; }
.mockup-shot { width: 100%; display: block; background: #eef0f9; }

.float-chip {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px -20px rgba(15, 23, 42, 0.35);
  font-size: 13px; font-weight: 700;
  color: var(--text);
  animation: float 5s ease-in-out infinite;
}
.float-chip .ic { font-size: 18px; }
.float-chip.chip-1 { top: -10px; left: -30px; animation-delay: 0s; }
.float-chip.chip-2 { bottom: 30px; right: -36px; animation-delay: 1.2s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@media (max-width: 720px) {
  .float-chip { display: none; }
}

/* ---------- Screenshot gallery ---------- */
.shot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.shot-card {
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 20px 50px -30px rgba(15, 23, 42, 0.15);
}
.shot-card:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: 0 28px 60px -28px rgba(15, 23, 42, 0.22); }
.shot-card .mockup-bar { padding: 10px 14px; }
.shot-card .mockup-bar span { width: 8px; height: 8px; }
.shot-card .mockup-bar .url { font-size: 10.5px; padding: 3px 10px; }
.shot-card img { width: 100%; display: block; background: #eef0f9; }
.shot-caption { padding: 16px 18px 18px; }
.shot-caption h4 { font-size: 14.5px; margin-bottom: 4px; }
.shot-caption p { font-size: 12.5px; }
.shot-card.wide { grid-column: span 2; }
@media (max-width: 900px) {
  .shot-grid { grid-template-columns: 1fr; }
  .shot-card.wide { grid-column: span 1; }
}

/* ---------- Watch (desktop/landscape video) ---------- */
.watch-wrap { display: flex; justify-content: center; }
.video-frame {
  width: 100%; max-width: 900px;
  border-radius: 20px;
  overflow: hidden;
  border: 6px solid #12172a;
  box-shadow: 0 50px 100px -30px rgba(15, 23, 42, 0.35);
  background: #12172a;
}
.video-frame video { width: 100%; display: block; aspect-ratio: 16 / 9; background: #12172a; }
.watch-links { text-align: center; margin-top: 22px; }
.watch-links a { font-size: 13px; font-weight: 700; color: var(--primary-soft); }

/* ---------- Tech strip ---------- */
.tech-strip { padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.tech-strip .label { text-align: center; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 22px; }
.tech-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.tech-pill { display: flex; align-items: center; gap: 8px; padding: 9px 18px; border-radius: 100px; background: var(--surface); border: 1px solid var(--border); font-size: 13px; font-weight: 600; color: var(--text-muted); }

/* ---------- Section headers ---------- */
.section { padding: 110px 0; }
.section-tight { padding: 70px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); margin-top: 18px; }
.section-head p { margin-top: 16px; font-size: 16.5px; }

/* ---------- Bento feature grid ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.bento-card {
  position: relative;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.bento-card:hover { transform: translateY(-4px); border-color: var(--border-strong); background: var(--surface-strong); }
.bento-card .icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; font-size: 21px; margin-bottom: 20px; }
.bento-card h3 { font-size: 19px; margin-bottom: 10px; }
.bento-card p { font-size: 14.5px; }
.bento-card.c-span-3 { grid-column: span 3; }
.bento-card.c-span-4 { grid-column: span 4; }
.bento-card.c-span-2 { grid-column: span 2; }
.bento-card.c-span-6 { grid-column: span 6; }

.icon-indigo { background: rgba(99,102,241,0.15); color: var(--primary-soft); }
.icon-cyan { background: rgba(34,211,238,0.15); color: var(--cyan); }
.icon-emerald { background: rgba(52,211,153,0.15); color: var(--emerald); }
.icon-amber { background: rgba(251,191,36,0.15); color: var(--amber); }
.icon-rose { background: rgba(251,113,133,0.15); color: var(--rose); }

@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-card.c-span-3, .bento-card.c-span-4, .bento-card.c-span-2, .bento-card.c-span-6 { grid-column: span 2; }
}

/* ---------- Built For (retail verticals) ---------- */
.verticals-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.vertical-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.vertical-card:hover { transform: translateY(-4px); border-color: var(--border-strong); background: var(--surface-strong); }
.vertical-card .icon { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; font-size: 19px; margin-bottom: 16px; }
.vertical-card h4 { font-size: 16.5px; margin-bottom: 6px; }
.vertical-card p { font-size: 13.5px; }
@media (max-width: 900px) { .verticals-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .verticals-grid { grid-template-columns: 1fr; } }

/* ---------- How it works (steps) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.step-card { padding: 32px 26px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--border); }
.step-num { width: 38px; height: 38px; border-radius: 10px; background: var(--grad-primary); display: grid; place-items: center; font-weight: 800; font-size: 15px; color: #fff; margin-bottom: 20px; }
.step-card h3 { font-size: 17.5px; margin-bottom: 10px; }
.step-card p { font-size: 14px; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Checklist section (2-column extra features) ---------- */
.checklist-wrap {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: #fff;
  padding: 52px;
}
.checklist { columns: 2; column-gap: 40px; }
.checklist li { break-inside: avoid; display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; font-size: 14.5px; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.checklist li .tick { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: rgba(52,211,153,0.15); color: var(--emerald); display: grid; place-items: center; font-size: 11px; margin-top: 1px; }
.checklist li b { color: var(--text); }
@media (max-width: 720px) { .checklist { columns: 1; } .checklist-wrap { padding: 30px 22px; } }

/* ---------- Module groups ---------- */
.module-groups { display: flex; flex-direction: column; gap: 44px; }
.module-group-label { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.module-group-label h3 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-faint); font-family: 'Inter', sans-serif; font-weight: 800; white-space: nowrap; }
.module-group-label .line { height: 1px; background: var(--border); flex: 1; }
.module-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.module-card {
  padding: 22px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 16px 40px -30px rgba(15, 23, 42, 0.12);
}
.module-card:hover { transform: translateY(-3px); border-color: rgba(99,102,241,0.35); box-shadow: 0 20px 45px -25px rgba(99,102,241,0.25); }
.module-card { cursor: pointer; text-align: left; }
.module-card .icon { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; font-size: 18px; margin-bottom: 14px; }
.module-card h4 { font-size: 14.5px; margin-bottom: 5px; }
.module-card p { font-size: 12.5px; line-height: 1.5; }
.module-card .more-hint { margin-top: 12px; font-size: 11.5px; font-weight: 700; color: var(--primary-soft); opacity: 0; transform: translateX(-4px); transition: opacity 0.2s ease, transform 0.2s ease; }
.module-card:hover .more-hint { opacity: 1; transform: translateX(0); }

/* ---------- Module detail modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  width: 100%; max-width: 560px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  box-shadow: 0 60px 120px -30px rgba(15, 23, 42, 0.45);
  padding: 36px;
  position: relative;
  animation: modalIn 0.25s ease;
}
@keyframes modalIn { from { opacity: 0; transform: scale(0.96) translateY(8px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  display: grid; place-items: center;
  font-size: 15px; color: var(--text-muted); cursor: pointer;
  z-index: 1;
}
.modal-close:hover { background: var(--surface-strong); color: var(--text); }

/* Icon, title and screenshot never scroll — only the bullet list below them does. */
.modal-fixed { flex-shrink: 0; }
.modal-box .icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 24px; margin-bottom: 18px; }
.modal-box h3 { font-size: 22px; }
.modal-box .modal-shot { margin-top: 18px; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); }
.modal-box .modal-shot img { width: 100%; display: block; }

.modal-scroll {
  list-style: none;
  margin: 18px 0 0;
  padding: 0 4px 0 0;
  overflow-y: auto;
  min-height: 0;
  flex: 1 1 auto;
}
.modal-scroll li {
  position: relative;
  padding: 10px 0 10px 22px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.modal-scroll li:first-child { padding-top: 0; }
.modal-scroll li:last-child { border-bottom: none; }
.modal-scroll li::before {
  content: '';
  position: absolute; left: 2px; top: 19px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary-soft);
}
.modal-scroll li:first-child::before { top: 9px; }
.modal-learn-more {
  display: block; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border);
  font-size: 13.5px; font-weight: 700; color: var(--primary-soft); flex-shrink: 0;
}
.modal-learn-more:hover { color: var(--primary-deep); }
@media (max-width: 900px) { .module-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .module-grid { grid-template-columns: 1fr; } }

/* ---------- CTA banner ---------- */
.cta-banner {
  border-radius: var(--radius-xl);
  padding: 70px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(600px 300px at 50% -20%, rgba(99,102,241,0.14), transparent 70%), #fff;
  border: 1px solid var(--border-strong);
}
.cta-banner h2 { font-size: clamp(26px, 4vw, 38px); }
.cta-banner p { max-width: 520px; margin: 16px auto 0; font-size: 16px; }
.cta-banner .hero-cta { margin-top: 30px; }

.cal-embed-wrap {
  margin: 34px auto 0;
  max-width: 780px;
  height: 650px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 30px 70px -30px rgba(15, 23, 42, 0.2);
  overflow: hidden;
  text-align: left;
}
@media (max-width: 720px) { .cal-embed-wrap { height: 560px; } }

/* ---------- Footer ---------- */
footer { padding: 60px 0 40px; border-top: 1px solid var(--border); margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 32px; }
.footer-brand p { margin-top: 14px; font-size: 13.5px; max-width: 260px; }
.footer-col h5 { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-faint); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: var(--text-muted); padding: 6px 0; transition: color 0.15s ease; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { margin-top: 50px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--text-faint); }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Simple inner pages (privacy/terms) ---------- */
.doc-page { padding: 130px 0 100px; }
.doc-page .container { max-width: 780px; }
.doc-page h1 { font-size: 36px; }
.doc-page .updated { color: var(--text-faint); font-size: 13px; margin-top: 10px; }
.doc-page h2 { font-size: 20px; margin-top: 40px; margin-bottom: 12px; }
.doc-page p, .doc-page li { color: var(--text-muted); font-size: 15px; margin-bottom: 12px; }
.doc-page ul { padding-left: 20px; list-style: disc; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--primary-soft); margin-bottom: 30px; }

/* ---------- WhatsApp floating button ---------- */
.whatsapp-fab {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: grid; place-items: center;
  box-shadow: 0 14px 34px -8px rgba(37, 211, 102, 0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-fab:hover { transform: scale(1.08); box-shadow: 0 18px 40px -8px rgba(37, 211, 102, 0.65); }
.whatsapp-fab svg { width: 30px; height: 30px; }
@media (max-width: 600px) { .whatsapp-fab { bottom: 18px; right: 18px; width: 52px; height: 52px; } .whatsapp-fab svg { width: 27px; height: 27px; } }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border-radius: var(--radius-md); border: 1px solid var(--border); background: #fff; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 15.5px; font-weight: 700; color: var(--text); cursor: pointer;
}
.faq-q .plus { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--surface); display: grid; place-items: center; font-size: 15px; color: var(--primary-soft); transition: transform 0.25s ease; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { padding: 0 24px 20px; font-size: 14px; line-height: 1.65; color: var(--text-muted); }

/* ---------- Sticky mobile CTA bar ---------- */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 85;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -10px 30px -10px rgba(15,23,42,0.15);
  gap: 8px;
}
.mobile-cta-bar .btn { width: 100%; }
@media (max-width: 720px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 74px; }
  .whatsapp-fab { bottom: 90px; }
}

/* ---------- Language toggle (segmented EN / த control) ---------- */
.lang-switch {
  display: inline-flex; align-items: center; gap: 2px;
  padding: 3px; border-radius: 100px;
  background: var(--surface); border: 1px solid var(--border);
}
.lang-opt {
  border: none; background: transparent; cursor: pointer;
  padding: 6px 13px; border-radius: 100px;
  font-size: 12.5px; font-weight: 700; color: var(--text-muted);
  font-family: 'Inter', 'Noto Sans Tamil', sans-serif;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.lang-opt:hover { color: var(--text); }
.lang-opt.is-active {
  background: var(--grad-primary); color: #fff;
  box-shadow: 0 6px 16px -6px rgba(99, 102, 241, 0.65);
}
.lang-opt.is-active:hover { color: #fff; }
.mobile-menu .lang-switch-mobile {
  width: 100%; margin-top: 10px; padding: 4px;
}
.mobile-menu .lang-switch-mobile .lang-opt { flex: 1; padding: 10px 13px; font-size: 13.5px; }

/* ============================================ TOOLS PAGE (GST / Discount /
   Margin calculators + Quotation Generator — /tools.html) */
.tools-hero { padding: 130px 0 40px; text-align: center; }
.tools-hero h1 { font-size: 38px; }
.tools-hero p { max-width: 560px; margin: 14px auto 0; font-size: 16px; }

.tool-tabs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin: 32px 0 36px;
}
.tool-tab {
  padding: 10px 18px; border-radius: 100px; border: 1px solid var(--border);
  background: #fff; font-size: 13.5px; font-weight: 700; color: var(--text-muted);
  transition: all 0.2s ease;
}
.tool-tab:hover { border-color: var(--border-strong); color: var(--text); }
.tool-tab.is-active { background: var(--grad-primary); color: #fff; border-color: transparent; box-shadow: 0 10px 24px -10px rgba(99,102,241,0.6); }

.tools-page .container { max-width: 880px; }
.tool-panel { display: none; }
.tool-panel.is-active { display: block; animation: toolFadeIn 0.25s ease; }
@keyframes toolFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.tool-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: 0 20px 60px -35px rgba(15,23,42,0.25);
}
.tool-card h2 { font-size: 22px; margin-bottom: 6px; }
.tool-card > p.tool-desc { font-size: 14px; margin-bottom: 24px; }

.tool-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .tool-grid { grid-template-columns: 1fr; } }

.tool-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.tool-field label { font-size: 12.5px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.03em; }
.tool-input, .tool-select {
  width: 100%; padding: 12px 14px; border-radius: 12px;
  border: 1.5px solid var(--border); background: var(--bg);
  font-family: inherit; font-size: 15px; color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.tool-input:focus, .tool-select:focus {
  outline: none; border-color: var(--primary); background: #fff;
  box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}

.tool-mode-switch { display: flex; gap: 8px; margin-bottom: 20px; }
.tool-mode-btn {
  flex: 1; padding: 11px; border-radius: 12px; border: 1.5px solid var(--border);
  background: var(--bg); font-size: 13.5px; font-weight: 700; color: var(--text-muted);
}
.tool-mode-btn.is-active { background: var(--grad-primary); color: #fff; border-color: transparent; }

.tool-results {
  margin-top: 24px; padding: 22px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(99,102,241,0.06), rgba(34,211,238,0.06));
  border: 1px solid rgba(99,102,241,0.15);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px;
}
.tool-result-item .tool-result-label { font-size: 11.5px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.03em; }
.tool-result-item .tool-result-value { font-size: 21px; font-weight: 800; color: var(--text); margin-top: 4px; font-family: 'Sora', 'Inter', sans-serif; }
.tool-result-item.is-highlight .tool-result-value { color: var(--primary-soft); }

/* ---------- Quotation generator ---------- */
.hidden { display: none !important; }

.quote-section-label {
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--primary-soft); margin: 28px 0 14px; padding-top: 18px; border-top: 1px solid var(--border);
}
.quote-section-label:first-of-type { margin-top: 8px; padding-top: 0; border-top: none; }

.quote-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.quote-meta-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-bottom: 24px; }
@media (max-width: 640px) { .quote-meta-grid, .quote-meta-grid-3 { grid-template-columns: 1fr; } }

textarea.tool-input { font-family: inherit; resize: vertical; min-height: 44px; }

.quote-table-wrap { overflow-x: auto; border-radius: 12px; border: 1px solid var(--border); margin-bottom: 12px; }
.quote-table { width: 100%; border-collapse: collapse; min-width: 780px; }
.quote-table th {
  text-align: left; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em;
  color: var(--text-muted); background: var(--surface); padding: 12px; border-bottom: 1px solid var(--border);
}
.quote-table td { padding: 8px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.quote-table tr:last-child td { border-bottom: none; }
.quote-table input { width: 100%; padding: 9px 10px; border-radius: 8px; border: 1.5px solid var(--border); background: var(--bg); font-family: inherit; font-size: 14px; }
.quote-table input:focus { outline: none; border-color: var(--primary); background: #fff; }
.quote-table .quote-item-name { min-width: 150px; }
.quote-table .quote-hsn { width: 90px; }
.quote-table .quote-qty { width: 60px; }
.quote-table .quote-unit { width: 70px; }
.quote-table .quote-rate { width: 90px; }
.quote-table .quote-disc, .quote-table .quote-tax { width: 70px; }
.quote-table .quote-amount { width: 110px; font-weight: 700; text-align: right; padding-right: 14px; white-space: nowrap; }
.quote-remove-row { background: none; border: none; color: var(--rose); font-size: 13px; padding: 4px 8px; opacity: 0.7; white-space: nowrap; }
.quote-remove-row:hover { opacity: 1; }

.quote-actions { display: flex; gap: 10px; flex-wrap: wrap; margin: 16px 0 28px; }

.quote-totals { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; margin-bottom: 8px; }
.quote-totals-row { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: 300px; font-size: 14px; color: var(--text-muted); }
.quote-totals-row.grand { font-size: 19px; font-weight: 800; color: var(--text); padding-top: 8px; border-top: 1px solid var(--border); }
.quote-totals-row.grand span:last-child { color: var(--primary-soft); }
#quoteRoundOff { cursor: pointer; }

.quote-print-only { display: none; }
.quote-print-header { display: none; align-items: center; gap: 14px; margin-bottom: 20px; }
.quote-logo-print { max-height: 56px; max-width: 180px; object-fit: contain; }
.quote-signature { justify-content: flex-end; margin-top: 60px; }
.quote-sig-line { width: 220px; border-top: 1px solid #94a3b8; margin-bottom: 6px; }
.quote-sig-label { font-size: 12px; color: #64748b; text-align: center; }
.quote-print-footer { margin-top: 24px; padding-top: 16px; border-top: 1px solid #ddd; font-size: 11.5px; color: #94a3b8; }

.tool-footnote { margin-top: 18px; font-size: 12.5px; color: var(--text-faint); }

@media print {
  .nav, footer, .whatsapp-fab, .mobile-cta-bar, .tool-tabs, .tools-hero, .quote-actions, .tool-footnote, .back-link, .bg-fx, .bg-grid, .tool-card > p.tool-desc { display: none !important; }
  /* The "Quotation Generator" tool-name heading is redundant with the
     print-only QUOTATION label above it and reads oddly on a document
     meant for a customer — hidden only on that one panel, not the
     calculators (whose printed results still need their title for context). */
  #tool-quotation .tool-card > h2 { display: none !important; }
  body { background: #fff !important; }
  /* Only the tool the visitor is actively on prints — normally .tool-panel
     is hidden unless .is-active, so this just carries that same rule into
     print media (which the base non-print rule doesn't reach on its own). */
  .tool-panel { display: none !important; }
  .tool-panel.is-active { display: block !important; }
  .tool-card { box-shadow: none !important; border: none !important; padding: 0 !important; }
  .quote-print-only { display: block !important; }
  .quote-print-header { display: flex !important; }
  .quote-table input, .tool-input, .tool-select, textarea.tool-input { border: none !important; background: none !important; padding: 4px 2px !important; }
  .quote-remove-row, #quoteLogoInput, #quoteLogoPreviewWrap, .quote-no-print { display: none !important; }
  /* An empty optional field (GSTIN, customer address, bank details, ...)
     would otherwise print its greyed-out "e.g. ..." placeholder text as if
     it were real entered data — blank it out instead. */
  .tool-input::placeholder, .tool-select::placeholder, textarea.tool-input::placeholder { color: transparent !important; }
  /* An optional field left completely empty (see tools.js's
     updateOptionalFieldVisibility) drops its label too, rather than
     printing a heading like "GSTIN (OPTIONAL)" over blank space. */
  .quote-optional-field.is-empty { display: none !important; }
  textarea.tool-input { resize: none !important; }
  input[type="date"]::-webkit-calendar-picker-indicator { display: none !important; }
  #quoteRoundOff { display: none !important; }
  /* Hide the up/down spinner arrows on Qty/Rate/Disc/Tax number inputs —
     an interactive control has no place on a printed page. */
  .quote-table input[type="number"]::-webkit-outer-spin-button,
  .quote-table input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
  .quote-table input[type="number"] { -moz-appearance: textfield; }
}

/* ---------- Cookie consent banner (injected by main.js on every page,
   only when no choice has been saved yet — see assets/js/main.js) ---------- */
#zi-cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap;
  padding: 14px 24px; background: #0f172a; border-top: 1px solid #1e293b;
  color: #cbd5e1; font-size: 13.5px; line-height: 1.5;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.25);
}
#zi-cookie-banner .zi-cookie-text { max-width: 640px; }
#zi-cookie-banner .zi-cookie-text a { color: #93c5fd; text-decoration: underline; }
#zi-cookie-banner .zi-cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.zi-cookie-btn { padding: 10px 18px; border-radius: 10px; font-size: 13px; font-weight: 700; cursor: pointer; border: none; white-space: nowrap; }
.zi-cookie-btn.zi-essential { background: #fff; color: #0f172a; }
.zi-cookie-btn.zi-essential:hover { background: #e2e8f0; }
.zi-cookie-btn.zi-accept { background: var(--grad-primary); color: #fff; }
.zi-cookie-btn.zi-accept:hover { filter: brightness(1.08); }
@media (max-width: 640px) {
  #zi-cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
  #zi-cookie-banner .zi-cookie-text { max-width: none; }
  #zi-cookie-banner .zi-cookie-actions { justify-content: center; }
}

/* ---------- Pricing page ---------- */
.pricing-card-wrap { max-width: 720px; margin: 0 auto 60px; }
.pricing-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 48px; text-align: center; box-shadow: var(--shadow-glow);
  position: relative; overflow: hidden;
}
.pricing-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: var(--grad-primary);
}
.pricing-card-badge {
  display: inline-block; padding: 6px 16px; border-radius: 100px;
  background: var(--surface); border: 1px solid var(--border);
  font-size: 12.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--primary-soft); margin-bottom: 20px;
}
.pricing-card-amount { font-family: 'Sora', sans-serif; font-size: clamp(40px, 6vw, 56px); font-weight: 800; color: var(--text); }
.pricing-card-amount span { font-size: 18px; font-weight: 600; color: var(--text-muted); }
.pricing-card-sub { max-width: 440px; margin: 12px auto 32px; font-size: 15px; }
.pricing-feature-list { text-align: left; display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.pricing-feature-list li {
  list-style: none; padding-left: 30px; position: relative; font-size: 14.5px; color: var(--text-muted); line-height: 1.55;
}
.pricing-feature-list li b { color: var(--text); font-weight: 700; }
.pricing-feature-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; border-radius: 50%; background: var(--grad-primary); color: #fff;
  font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center;
}
.pricing-card-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.pricing-note { margin-top: 28px; padding: 24px 28px; border-radius: var(--radius-md); background: var(--surface); border: 1px solid var(--border); }
.pricing-note p { font-size: 13.5px; margin-bottom: 10px; }
.pricing-note p:last-child { margin-bottom: 0; }
.pricing-note b { color: var(--text); }
.pricing-faq { max-width: 720px; margin: 0 auto 80px; }
.pricing-faq h2 { font-size: 26px; text-align: center; margin-bottom: 28px; }
@media (max-width: 560px) {
  .pricing-card { padding: 32px 24px; }
  .pricing-card-cta { flex-direction: column; }
  .pricing-card-cta .btn { width: 100%; }
}

/* ---------- Feature deep-dive pages ---------- */
.feature-mockup-wrap { max-width: 940px; margin: 0 auto 56px; }
.feature-body { max-width: 760px; margin: 0 auto; }
.feature-body h2 { font-size: 26px; margin: 48px 0 16px; }
.feature-body h2:first-child { margin-top: 0; }
.feature-body p { font-size: 15.5px; margin-bottom: 16px; }
.feature-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0 8px; }
.feature-highlight {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 20px 22px;
}
.feature-highlight .ic { font-size: 22px; margin-bottom: 10px; display: block; }
.feature-highlight h4 { font-size: 15px; margin-bottom: 6px; }
.feature-highlight p { font-size: 13.5px; margin-bottom: 0; color: var(--text-muted); }
@media (max-width: 640px) { .feature-highlights { grid-template-columns: 1fr; } }

.feature-cta-block {
  max-width: 720px; margin: 64px auto 80px; text-align: center;
  padding: 48px 32px; border-radius: var(--radius-xl);
  background: var(--grad-primary); color: #fff;
}
.feature-cta-block h2 { color: #fff; margin-bottom: 10px; font-size: 26px; }
.feature-cta-block p { color: rgba(255,255,255,0.85); margin-bottom: 26px; }
.feature-cta-block .hero-cta .btn-ghost { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.3); color: #fff; }
.feature-cta-block .hero-cta .btn-ghost:hover { background: rgba(255,255,255,0.22); }
.feature-cta-block .hero-cta .btn-primary { background: #fff; color: var(--primary-deep); box-shadow: 0 10px 30px -10px rgba(0,0,0,0.3); }
.feature-cta-block .hero-cta .btn-primary:hover { background: #f1f4fe; }

.feature-related { max-width: 760px; margin: 0 auto 40px; }
.feature-related h3 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-faint); margin-bottom: 14px; }
.feature-related-links { display: flex; gap: 10px; flex-wrap: wrap; }
.feature-related-links a {
  padding: 8px 16px; border-radius: 100px; border: 1px solid var(--border);
  font-size: 13px; font-weight: 600; color: var(--text-muted); background: #fff;
}
.feature-related-links a:hover { border-color: var(--border-strong); color: var(--text); }

/* ---------- Email lead capture (tools page + blog posts) ---------- */
.lead-capture {
  max-width: 640px; margin: 56px auto 40px; text-align: center;
  padding: 40px 32px; border-radius: var(--radius-xl);
  background: radial-gradient(500px 260px at 50% -20%, rgba(99,102,241,0.14), transparent 70%), #fff;
  border: 1px solid var(--border-strong);
}
.lead-capture h3 { font-size: 22px; margin-bottom: 8px; }
.lead-capture > p { font-size: 14px; max-width: 420px; margin: 0 auto 22px; }
.lead-capture-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.lead-capture-form input[type="email"] {
  flex: 1; min-width: 220px; max-width: 320px; padding: 12px 16px; border-radius: 100px;
  border: 1.5px solid var(--border); background: var(--bg); font-family: inherit; font-size: 14.5px; color: var(--text);
}
.lead-capture-form input[type="email"]:focus { outline: none; border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px rgba(99,102,241,0.15); }
.lead-capture-form button:disabled { opacity: 0.6; cursor: default; }
.lead-capture-msg { margin-top: 14px; font-size: 13px; min-height: 1em; }
.lead-capture-msg.is-success { color: var(--emerald); font-weight: 600; }
.lead-capture-msg.is-error { color: var(--rose); font-weight: 600; }
@media (max-width: 480px) {
  .lead-capture { padding: 32px 20px; }
  .lead-capture-form { flex-direction: column; }
  .lead-capture-form input[type="email"] { max-width: none; }
}

/* ---------- Contact-form enquiry (in the #contact cta-banner) ---------- */
.enquiry-form-wrap { max-width: 460px; margin: 32px auto 0; text-align: left; }
.enquiry-form-divider {
  text-align: center; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-faint); margin-bottom: 18px; position: relative;
}
.enquiry-form-divider::before, .enquiry-form-divider::after {
  content: ''; position: absolute; top: 50%; width: 30%; height: 1px; background: var(--border);
}
.enquiry-form-divider::before { left: 0; }
.enquiry-form-divider::after { right: 0; }
.enquiry-form { display: flex; flex-direction: column; gap: 10px; }
.enquiry-form-row { display: flex; gap: 10px; }
.enquiry-form input, .enquiry-form textarea {
  width: 100%; padding: 12px 16px; border-radius: 12px;
  border: 1.5px solid var(--border); background: var(--bg); font-family: inherit; font-size: 14.5px; color: var(--text);
}
.enquiry-form textarea { resize: vertical; min-height: 80px; }
.enquiry-form input:focus, .enquiry-form textarea:focus {
  outline: none; border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}
.enquiry-form button:disabled { opacity: 0.6; cursor: default; }
.enquiry-msg { margin-top: 12px; font-size: 13px; text-align: center; min-height: 1em; }
.enquiry-msg.is-success { color: var(--emerald); font-weight: 600; }
.enquiry-msg.is-error { color: var(--rose); font-weight: 600; }
@media (max-width: 480px) { .enquiry-form-row { flex-direction: column; } }

/* ---------- Number-sum captcha (lead capture + enquiry forms) ---------- */
.captcha-row {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  margin-top: 12px; font-size: 13.5px; color: var(--text-muted);
}
.enquiry-form .captcha-row { justify-content: flex-start; }
.captcha-row b { color: var(--text); font-family: 'Sora', sans-serif; }
.captcha-row input[type="number"] {
  width: 64px; padding: 10px 10px; border-radius: 10px; text-align: center;
  border: 1.5px solid var(--border); background: var(--bg); font-family: inherit; font-size: 14px; color: var(--text);
}
.captcha-row input[type="number"]:focus { outline: none; border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px rgba(99,102,241,0.15); }
/* Hide the native up/down spinner — a tiny 1-2 digit answer field doesn't need it. */
.captcha-row input[type="number"]::-webkit-outer-spin-button,
.captcha-row input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.captcha-row input[type="number"] { -moz-appearance: textfield; }
