/* Anjova Technology — polished UI (branding.json tokens) */
:root {
  --brand: #4a90e2;
  --brand-dark: #f5a623;
  --brand-light: #4de0b6;
  --surface: #ffffff;
  --ink: #1f2933;
  --muted: #808b8c;
  --soft: #f4f7fb;
  --line: #d5dadd;
  --white: #ffffff;
  --success: #0d9f6e;
  --warning: #f5a623;
  --error: #dc2626;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(31, 41, 51, 0.07);
  --shadow-lg: 0 22px 50px rgba(31, 41, 51, 0.1);
  --container: 1200px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 72px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--soft);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section { padding: clamp(3.5rem, 6vw, 5rem) 0; }
.section-sm { padding: 3rem 0; }
.bg-white { background: var(--white); }
.bg-soft { background: var(--soft); }
.bg-surface {
  background:
    radial-gradient(ellipse 50% 60% at 80% 20%, rgba(74, 144, 226, 0.12), transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(77, 224, 182, 0.12), transparent 55%),
    var(--soft);
  color: var(--ink);
}
.border-y { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.border-b { border-bottom: 1px solid var(--line); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.85rem;
}
.eyebrow.light { color: var(--brand-light); }
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.section-title {
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: var(--ink);
}

.section-desc {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 38rem;
}

.section-desc.center,
.section-title.center { margin-inline: auto; text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.7rem 1.3rem;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.925rem;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, #4a90e2 0%, #4de0b6 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(74, 144, 226, 0.28);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #3b7fcb 0%, #36c9a3 100%);
  box-shadow: 0 14px 32px rgba(74, 144, 226, 0.34);
}

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: 0 1px 2px rgba(31, 41, 51, 0.04);
}
.btn-secondary:hover {
  border-color: #9ec0ea;
  color: var(--brand);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover { background: rgba(74, 144, 226, 0.06); }

.btn-lg { min-height: 52px; padding: 0.9rem 1.55rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 248, 252, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: opacity 0.2s ease;
}
.brand:hover { opacity: 0.9; }
.brand img {
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(74, 144, 226, 0.25);
}
.brand strong { display: block; font-size: 0.92rem; letter-spacing: -0.01em; }
.brand small { display: none; color: var(--muted); font-size: 0.68rem; font-weight: 500; }
@media (min-width: 640px) { .brand small { display: block; } }

.nav-desktop { display: none; align-items: center; gap: 0.1rem; }
.header-cta { display: none; align-items: center; gap: 0.45rem; }
@media (min-width: 1100px) {
  .nav-desktop, .header-cta { display: flex; }
  .menu-toggle { display: none !important; }
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.55rem 0.8rem;
  border-radius: 12px;
  border: 0;
  background: transparent;
  color: #475569;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}
.nav-link:hover,
.nav-item:hover > .nav-link,
.nav-item:focus-within > .nav-link {
  background: #fff;
  color: var(--ink);
}
.nav-link svg { transition: transform 0.2s var(--ease); }
.nav-item:hover > .nav-link svg,
.nav-item:focus-within > .nav-link svg { transform: rotate(180deg); }

.nav-item { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 330px;
  padding: 0.55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-lg);
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  display: grid;
  gap: 0.15rem;
}
.dropdown a {
  display: grid;
  gap: 0.15rem;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  transition: background 0.15s ease;
}
.dropdown a:hover { background: rgba(74, 144, 226, 0.06); }
.dropdown strong { font-size: 0.9rem; color: var(--ink); }
.dropdown span { font-size: 0.74rem; color: var(--muted); line-height: 1.4; }

.menu-toggle {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.menu-toggle:hover { border-color: #9ec0ea; }
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s ease;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  border-top: 1px solid var(--line);
  background: #fff;
  max-height: calc(100vh - var(--header-h));
  overflow: auto;
  padding: 1rem 0 1.25rem;
  animation: slideDown 0.28s var(--ease);
}
.nav-mobile[hidden] { display: none !important; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.mobile-link, .mobile-group {
  display: block;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 0.55rem;
  background: #fff;
}
.mobile-link { padding: 0.9rem 1rem; font-weight: 600; }
.mobile-group summary {
  padding: 0.9rem 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.mobile-group summary::-webkit-details-marker { display: none; }
.mobile-group div { border-top: 1px solid var(--line); padding: 0.5rem; display: grid; gap: 0.2rem; }
.mobile-group a { padding: 0.6rem 0.8rem; border-radius: 10px; color: #475569; font-size: 0.9rem; }
.mobile-group a:hover { background: var(--soft); color: var(--ink); }
.mobile-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem; margin-top: 0.85rem; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  background:
    radial-gradient(ellipse 60% 50% at 15% 20%, rgba(74, 144, 226, 0.14), transparent 60%),
    radial-gradient(ellipse 50% 45% at 90% 10%, rgba(77, 224, 182, 0.16), transparent 55%),
    linear-gradient(180deg, #f8faff 0%, var(--soft) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(226, 232, 240, 0.55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226, 232, 240, 0.55) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.45), transparent 85%);
  pointer-events: none;
  animation: gridDrift 28s linear infinite;
}
@keyframes gridDrift {
  from { background-position: 0 0; }
  to { background-position: 48px 48px; }
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.75rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.02fr 0.98fr; gap: 3rem; }
}
.hero h1 {
  font-size: clamp(2.05rem, 4.2vw, 3.35rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  max-width: 15ch;
  color: var(--ink);
}
.hero .lead {
  margin-top: 1.3rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 34rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.85rem;
}
.hero-note {
  margin-top: 1.35rem;
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 34rem;
  line-height: 1.5;
}

.pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(74, 144, 226, 0.28);
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  box-shadow: 0 4px 14px rgba(74, 144, 226, 0.08);
}

/* Cards */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: #dbe3ef;
}
.card-soft {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.browser {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  transform: perspective(1200px) rotateX(1.5deg);
  transition: transform 0.4s var(--ease), box-shadow 0.4s ease;
}
.browser:hover {
  transform: perspective(1200px) rotateX(0deg) translateY(-4px);
  box-shadow: 0 28px 60px rgba(2, 6, 23, 0.16);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.8rem 1rem;
  background: linear-gradient(180deg, #f8fafc, #f1f5f9);
  border-bottom: 1px solid var(--line);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.r { background: #fb7185; }
.dot.a { background: #fbbf24; }
.dot.g { background: #34d399; }
.browser-url {
  margin-left: 0.5rem;
  flex: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.4rem 0.8rem;
  font-size: 0.74rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.browser-body { padding: 1.05rem; }

.metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 640px) { .metrics { grid-template-columns: repeat(4, 1fr); } }
.metric {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.8rem;
  background: #fff;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.metric.is-pulse {
  animation: metricPulse 0.45s var(--ease);
}
@keyframes metricPulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.03); border-color: #c7d2fe; }
  100% { transform: scale(1); }
}
.metric label {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}
.metric strong { display: block; margin-top: 0.4rem; font-size: 1.2rem; letter-spacing: -0.02em; }
.metric.success strong { color: var(--success); }
.metric.warning strong { color: var(--warning); }

.dash-grid { display: grid; gap: 1rem; }
@media (min-width: 900px) { .dash-grid { grid-template-columns: 1.1fr 0.9fr; } }

.chart {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  height: 7.25rem;
  margin-top: 0.85rem;
}
.chart span,
.chart .chart-bar {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(to top, var(--brand-dark), var(--brand));
  min-height: 10px;
  transform-origin: bottom;
  transition: height 0.7s var(--ease);
}

.booking-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  background: var(--soft);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  margin-top: 0.55rem;
  transition: background 0.2s ease, transform 0.2s ease;
}
.booking-row:hover {
  background: #eef2ff;
  transform: translateX(2px);
}
.booking-row small { color: var(--muted); display: block; margin-top: 0.1rem; }
.status {
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
}
.status.transit { background: #e8f2fc; color: #1d4f91; }
.status.booked { background: #f1f5f9; color: #334155; }
.status.delivered { background: #ecfdf5; color: #047857; }
.status.delayed { background: #fffbeb; color: #b45309; }

/* Trust */
.trust {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 1.35rem 0;
}
.trust-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 900px) {
  .trust-inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 1.5rem; }
}
.trust-inner > strong {
  font-size: 0.92rem;
  white-space: nowrap;
}
.trust-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.trust-tags span {
  border: 1px solid var(--line);
  background: var(--soft);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.74rem;
  font-weight: 600;
  color: #334155;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.trust-tags span:hover {
  border-color: #c7d2fe;
  background: #eef2ff;
  transform: translateY(-1px);
}

.grid-2 { display: grid; gap: 1.15rem; }
.grid-3 { display: grid; gap: 1.15rem; }
.grid-4 { display: grid; gap: 1rem; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.check-list, .x-list { display: grid; gap: 0.75rem; margin-top: 1.25rem; }
.check-list li, .x-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.95rem;
  line-height: 1.45;
}
.icon-badge {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.72rem;
  font-weight: 800;
}
.icon-badge.ok { background: #dcfce7; color: #15803d; }
.icon-badge.bad { background: #ffe4e6; color: #e11d48; }

/* Tabs */
.tabs {
  display: none;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin: 1.85rem 0 1.5rem;
  padding: 0.35rem;
  background: #eef2f7;
  border-radius: 999px;
  width: fit-content;
  max-width: 100%;
}
@media (min-width: 768px) { .tabs { display: flex; } }
.tab-btn {
  border: 0;
  border-radius: 999px;
  padding: 0.55rem 1.05rem;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.tab-btn:hover { color: var(--ink); }
.tab-btn.is-active {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 18px rgba(74, 144, 226, 0.22);
}
.tab-select {
  width: 100%;
  margin: 1.5rem 0;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 600;
}
@media (min-width: 768px) { .tab-select { display: none; } }

[data-tab-panel] {
  animation: tabIn 0.35s var(--ease);
}

/* Critical: .two-col { display:grid } overrides native [hidden] */
[hidden],
[data-tab-panel][hidden],
.two-col[hidden],
.is-tab-hidden {
  display: none !important;
}
@keyframes tabIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.panel-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  background: var(--soft);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}
.panel-row span:last-child { font-weight: 700; }
.panel-action {
  margin-top: 1rem;
  display: block;
  background: linear-gradient(135deg, #4a90e2 0%, #4de0b6 100%);
  color: #fff;
  text-align: center;
  border-radius: 12px;
  padding: 0.9rem;
  font-weight: 700;
  font-size: 0.9rem;
  border: 0;
  width: 100%;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s var(--ease), background 0.2s ease, box-shadow 0.2s ease;
}
.panel-action:hover {
  background: linear-gradient(135deg, #3b7fcb 0%, #36c9a3 100%);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(74, 144, 226, 0.28);
  color: #fff;
}

.persona a {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.55rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--soft);
  transition: transform 0.25s var(--ease), border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.persona a:hover {
  background: #fff;
  border-color: #9ec0ea;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.persona h3 { font-size: 1.2rem; letter-spacing: -0.02em; }
.persona p { margin-top: 0.75rem; color: var(--muted); font-size: 0.94rem; flex: 1; line-height: 1.55; }
.persona .link {
  margin-top: 1.25rem;
  color: var(--brand);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s ease;
}
.persona a:hover .link { gap: 0.55rem; }

/* Timeline */
.timeline-h { display: none; position: relative; margin-top: 2.75rem; }
@media (min-width: 1024px) { .timeline-h { display: block; } }
.timeline-track {
  position: absolute;
  left: 0; right: 0; top: 1.15rem;
  height: 3px;
  background: var(--line);
  border-radius: 999px;
}
.timeline-progress {
  position: absolute;
  left: 0; top: 1.15rem;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-dark), var(--brand));
  width: 0;
  border-radius: 999px;
  transition: width 0.15s linear;
  box-shadow: 0 0 12px rgba(99, 102, 241, 0.45);
}
.timeline-h ol {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: none;
}
.timeline-h li {
  padding-top: 0.35rem;
  list-style: none;
}
.timeline-h li::marker,
.timeline-h li::before {
  content: none !important;
  display: none !important;
}
@media (min-width: 1280px) { .timeline-h ol { grid-template-columns: repeat(10, 1fr); } }
.step-dot {
  width: 26px; height: 26px; border-radius: 999px;
  border: 2px solid var(--line);
  background: #fff;
  color: var(--muted);
  display: grid; place-items: center;
  font-size: 0.7rem; font-weight: 800;
  margin-bottom: 0.8rem;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.step-dot.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.18);
}
.timeline-h p { font-size: 0.74rem; font-weight: 600; line-height: 1.35; color: #334155; }
.timeline-v { display: grid; gap: 0.65rem; margin-top: 2rem; list-style: none; margin-left: 0; padding: 0; }
@media (min-width: 1024px) { .timeline-v { display: none; } }
.timeline-v li {
  display: flex; gap: 0.75rem; align-items: center;
  background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 0.85rem 1rem;
  font-size: 0.92rem; font-weight: 600;
  list-style: none;
}

/* Analytics */
.analytics-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 640px) { .analytics-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .analytics-grid { grid-template-columns: repeat(4, 1fr); } }
.analytics-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  padding: 1.3rem;
  transition: transform 0.25s var(--ease), background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  color: var(--ink);
}
.analytics-card:hover {
  transform: translateY(-3px);
  background: #fff;
  border-color: #9ec0ea;
  box-shadow: var(--shadow);
}
.analytics-card label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.analytics-card strong {
  display: block;
  margin-top: 0.8rem;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.analytics-card small { color: var(--muted); font-size: 0.75rem; }

.security-list { display: grid; gap: 0.75rem; }
@media (min-width: 640px) { .security-list { grid-template-columns: 1fr 1fr; } }
.security-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  border: 1px solid var(--line);
  background: var(--soft);
  border-radius: 14px;
  padding: 1rem;
  font-size: 0.92rem;
  font-weight: 600;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.security-list li:hover {
  border-color: #c7d2fe;
  background: #eef2ff;
}

/* Pricing */
.price-grid { display: grid; gap: 1.5rem; }
@media (min-width: 900px) { .price-grid { grid-template-columns: 1fr 1fr; } }
.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 2.1rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.price-card.featured {
  border-color: rgba(74, 144, 226, 0.45);
  box-shadow: 0 0 0 1px rgba(74, 144, 226, 0.18), var(--shadow-lg);
  background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
}
.badge {
  position: absolute;
  top: -0.75rem;
  left: 1.5rem;
  background: linear-gradient(135deg, #4a90e2, #4de0b6);
  color: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(74, 144, 226, 0.3);
}
.price-setup { font-size: 2.15rem; font-weight: 700; margin-top: 1rem; letter-spacing: -0.03em; }
.price-month { color: var(--brand); font-size: 1.3rem; font-weight: 700; margin-top: 0.35rem; }
.price-month span { color: var(--muted); font-size: 0.875rem; font-weight: 500; }
.feature-list { margin: 1.5rem 0; display: grid; gap: 0.6rem; flex: 1; }
.feature-list li {
  display: flex;
  gap: 0.55rem;
  font-size: 0.92rem;
  line-height: 1.4;
}
.feature-list li::before {
  content: "✓";
  color: var(--brand);
  font-weight: 800;
}
.note-amber {
  color: #b45309;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 1rem;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.compare-table th, .compare-table td {
  text-align: left;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}
.compare-table tbody tr { transition: background 0.15s ease; }
.compare-table tbody tr:hover { background: #f8faff; }
.compare-table thead th { background: var(--soft); border-top: 0; font-weight: 700; }
.compare-mobile { display: grid; gap: 0.75rem; }
.compare-mobile article {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
}
@media (min-width: 768px) {
  .compare-desktop { display: block; }
  .compare-mobile { display: none; }
}
@media (max-width: 767px) {
  .compare-desktop { display: none; }
}

/* FAQ */
.faq-list {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.faq-item + .faq-item { border-top: 1px solid var(--line); }
.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 1.25rem 1.4rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--ink);
  transition: background 0.15s ease;
}
.faq-item button:hover { background: #f8faff; }
.faq-item button .chevron {
  transition: transform 0.25s var(--ease);
  color: var(--muted);
  flex-shrink: 0;
}
.faq-item button[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
  color: var(--brand);
}
.faq-item .answer {
  padding: 0 1.4rem 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  animation: tabIn 0.28s var(--ease);
}
.faq-item .answer[hidden] { display: none; }

/* CTA */
.cta-final {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 60% at 80% 20%, rgba(74, 144, 226, 0.14), transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(77, 224, 182, 0.14), transparent 55%),
    linear-gradient(180deg, #f4f9ff 0%, #eef7f4 100%);
  color: var(--ink);
  text-align: center;
  padding: clamp(4rem, 7vw, 5.5rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(213, 218, 221, 0.55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(213, 218, 221, 0.55) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.55;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.35), transparent 90%);
}
.cta-final .container { position: relative; z-index: 1; }
.cta-final .section-title { color: var(--ink); }
.cta-final p { color: var(--muted); max-width: 40rem; margin: 1rem auto 0; line-height: 1.6; }
.cta-final .cta-note { margin-top: 1.25rem; font-size: 0.9rem; color: var(--muted); }
.cta-final .hero-actions { justify-content: center; }
.cta-final .btn-secondary { color: var(--ink); }

/* Footer */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 1.35fr repeat(5, 1fr); gap: 1.5rem; }
}
.footer-brand p { margin-top: 1rem; color: var(--muted); font-size: 0.9rem; max-width: 22rem; line-height: 1.55; }
.site-footer h3 { font-size: 0.88rem; margin-bottom: 1rem; letter-spacing: -0.01em; }
.site-footer li + li { margin-top: 0.55rem; }
.site-footer a { color: var(--muted); font-size: 0.875rem; transition: color 0.15s ease; }
.site-footer a:hover { color: var(--brand); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.875rem;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* Forms */
.form-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 0.4rem; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  background: #fff;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: #a5b4fc;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
}
.field input.is-invalid, .field select.is-invalid, .field textarea.is-invalid {
  border-color: #fecaca;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
}
.field .error { color: var(--error); font-size: 0.75rem; margin-top: 0.35rem; }
.consent { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.875rem; color: var(--muted); line-height: 1.45; }
.consent input { margin-top: 0.2rem; }
.alert {
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  margin-top: 1rem;
  line-height: 1.45;
}
.alert.ok { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; }
.alert.warn { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; }
.alert.err { background: #fff1f2; border: 1px solid #fecdd3; color: #9f1239; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.placeholder-box {
  border: 1px dashed #cbd5e1;
  background: var(--soft);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
}

.feature-block { padding: clamp(3.5rem, 6vw, 5rem) 0; }
.feature-block:nth-child(even) { background: #fff; }

.two-col {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) { .two-col { grid-template-columns: 1fr 1fr; gap: 2.75rem; } }

.chip-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.chip-row a {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  font-size: 0.85rem;
  font-weight: 600;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.chip-row a:hover {
  border-color: #c7d2fe;
  background: #eef2ff;
  transform: translateY(-1px);
}

.integration-item {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  background: var(--soft);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  margin-top: 0.5rem;
  font-size: 0.875rem;
}
.integration-item span:last-child {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
  max-width: 55%;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  margin-right: 0.4rem;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: livePulse 1.8s infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero::before { animation: none; }
  .browser { transform: none; }
}

/* Accessibility + SEO helpers */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  background: var(--brand, #4A90E2);
  color: #fff;
  padding: 0.65rem 1rem;
  border-radius: 0 0 8px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }
.breadcrumbs {
  border-bottom: 1px solid var(--line);
  background: #fff;
  padding: 0.65rem 0;
  font-size: 0.85rem;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--muted);
}
.breadcrumbs li { display: inline-flex; align-items: center; gap: 0.5rem; }
.breadcrumbs li:not(:last-child)::after {
  content: "/";
  color: #cbd5e1;
  margin-left: 0.15rem;
}
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--brand); }
.breadcrumbs [aria-current="page"] span { color: var(--ink); font-weight: 600; }

/* Longform India-market content */
.longform-section { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.longform { max-width: 760px; }
.prose-long { margin-top: 1.5rem; color: #334155; font-size: 1.05rem; line-height: 1.75; }
.prose-long p { margin: 0 0 1.15rem; }
.prose-long h3 { margin: 1.75rem 0 0.75rem; color: var(--ink); font-size: 1.25rem; letter-spacing: -0.02em; }
.prose-long h4 { margin: 1.35rem 0 0.55rem; color: var(--ink); font-size: 1.05rem; }
.prose-long ul, .prose-long ol { margin: 0 0 1.15rem; padding-left: 1.25rem; }
.prose-long li { margin: 0.35rem 0; }
.prose-long ul { list-style: disc; }
.prose-long ol { list-style: decimal; }
.prose-long strong { color: var(--ink); }
