/* Acxa Control System — marketing homepage (acxa.in visual language) */
:root {
  --font-heading: "Outfit", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-data: "JetBrains Mono", ui-monospace, monospace;
  --cyan: #00b4d8;
  --cyan-bright: #39c8ff;
  --cyan-deep: #0077b6;
  --cyan-muted: rgba(0, 180, 216, 0.15);
  --product-blue: #0075de;
  --black: #030712;
  --navy: #0a1628;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --white: #f8fafc;
  --page: #fafbfc;
  --emerald: #10b981;
  --amber: #f59e0b;
  --red: #ef4444;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-card-hover: 0 20px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 40px rgba(0, 180, 216, 0.12);
  --nav-h: 72px;
  /* Match acxa.in Container: max-w-[1400px] px-6 md:px-10 lg:px-16 */
  --max: 1400px;
  --page-pad: 1.5rem;
  --page-pad-md: 2.5rem;
  --page-pad-lg: 4rem;
  --gold: #d4a017;
  --navy-footer: #0a1628;
  --ease-luxury: cubic-bezier(0.22, 1, 0.36, 1);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--slate-700);
  background: var(--page);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--slate-950); margin: 0; line-height: 1.15; letter-spacing: -0.02em; }
p { margin: 0; }
/* Page + chrome width: identical padding/max to acxa.in Container */
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--page-pad);
  box-sizing: border-box;
  min-width: 0;
}
@media (min-width: 768px) {
  .container { padding-inline: var(--page-pad-md); }
}
@media (min-width: 1024px) {
  .container { padding-inline: var(--page-pad-lg); }
}

/* ── Navbar (mirror acxa.in solid/scrolled chrome — page is light so always solid) ── */
.nav {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
  transition: background 0.3s var(--ease-luxury), box-shadow 0.3s var(--ease-luxury), border-color 0.3s var(--ease-luxury);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav::before {
  content: "";
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.75), transparent);
}
.nav::after {
  content: "";
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(203, 213, 225, 0.6), transparent);
}
.nav-shell {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 1.25rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height 0.3s var(--ease-luxury);
}
@media (min-width: 768px) {
  .nav-shell {
    padding-inline: var(--page-pad-md);
    height: 72px;
  }
}
@media (min-width: 1024px) {
  .nav-shell { padding-inline: var(--page-pad-lg); }
}
.nav-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.nav-logo-link:hover { transform: scale(1.02); }
.nav-logo {
  height: 2rem;
  width: auto;
  max-width: 112px;
  display: block;
}
@media (min-width: 768px) {
  .nav-logo { height: 2.25rem; max-width: 126px; }
}

/* Center desktop links — gap-8, text-sm font-medium like acxa.in */
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-600);
  white-space: nowrap;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link:hover { color: var(--slate-900); }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  height: 2px;
  width: 100%;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-luxury);
}
.nav-link:hover::after { transform: scaleX(1); }
.nav-link .chev {
  width: 14px;
  height: 14px;
  opacity: 0.7;
  transition: transform 0.2s;
}
.nav-dd { position: relative; }
.nav-dd:hover .nav-link .chev,
.nav-dd:focus-within .nav-link .chev { transform: rotate(180deg); }
.nav-dd-panel {
  position: absolute;
  left: 50%;
  top: 100%;
  padding-top: 0.75rem;
  transform: translateX(-50%) translateY(-6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 60;
}
.nav-dd:hover .nav-dd-panel,
.nav-dd:focus-within .nav-dd-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dd-card {
  min-width: 240px;
  border-radius: 0.5rem;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  padding: 0.5rem;
}
.nav-dd-card a {
  display: block;
  padding: 0.6rem 0.85rem;
  border-radius: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-600);
  transition: background 0.15s, color 0.15s;
}
.nav-dd-card a:hover {
  background: var(--slate-100);
  color: var(--slate-900);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.nav-wa {
  display: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-600);
  transition: color 0.2s;
}
.nav-wa:hover { color: var(--slate-900); }

/* Action pills: same visual family as acxa “Get a Quote” chrome */
.nav-pill {
  display: none;
  align-items: center;
  gap: 0.5rem;
  border-radius: 18px;
  padding: 0.5rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s, background 0.3s;
  white-space: nowrap;
}
.nav-pill:hover { transform: translateY(-1px); }
.nav-pill-outline {
  border: 1px solid rgba(226, 232, 240, 0.7);
  background: rgba(255, 255, 255, 0.92);
  color: var(--slate-900);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
}
.nav-pill-outline:hover {
  border-color: rgba(0, 180, 216, 0.35);
  box-shadow: 0 16px 36px rgba(0, 180, 216, 0.18);
}
.nav-pill-solid {
  border: 1px solid rgba(0, 117, 222, 0.25);
  background-color: var(--product-blue);
  background-image: linear-gradient(135deg, #005bab 0%, var(--product-blue) 100%);
  color: #fff !important;
  box-shadow: 0 12px 30px rgba(0, 117, 222, 0.22);
}
.nav-pill-solid:visited { color: #fff !important; }
.nav-pill-solid:hover { box-shadow: 0 16px 36px rgba(0, 117, 222, 0.3); }
.nav-pill-arrow {
  display: inline-flex;
  width: 1.75rem;
  height: 1.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan-bright) 0%, var(--cyan) 100%);
  color: var(--slate-950);
  box-shadow: 0 8px 18px rgba(0, 180, 216, 0.28);
  transition: transform 0.3s;
}
.nav-pill-solid:hover .nav-pill-arrow { transform: translateX(2px); }
.nav-pill-arrow svg { width: 14px; height: 14px; display: block; }

.nav-toggle {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  color: var(--slate-500);
  transition: background 0.2s, color 0.2s;
}
.nav-toggle:hover {
  background: var(--slate-100);
  color: var(--slate-900);
}
.nav-toggle svg { width: 22px; height: 22px; display: block; }

/* Mobile drawer (acxa-style right sheet) */
.mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(2, 6, 23, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-backdrop.is-open {
  display: block;
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99;
  width: min(100%, 23rem);
  height: 100dvh;
  max-height: 100vh;
  background: rgba(255, 255, 255, 0.92);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: -12px 0 40px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  transform: translateX(100%);
  transition: transform 0.32s var(--ease-luxury);
  display: flex;
  flex-direction: column;
  padding: 1rem 1.25rem 1.5rem;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  padding-bottom: 0.75rem;
}
.mobile-menu-head span {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-900);
}
.mobile-close {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: rgba(255, 255, 255, 0.75);
  color: var(--slate-400);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-close:hover { color: var(--slate-900); }
.mobile-menu a,
.mobile-menu .mobile-parent {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--slate-600);
  transition: background 0.15s, color 0.15s;
}
.mobile-menu a:hover,
.mobile-menu .mobile-parent:hover {
  background: var(--slate-100);
  color: var(--slate-900);
}
.mobile-sub {
  margin: 0 0 0.25rem 1rem;
  padding-left: 1rem;
  border-left: 1px solid var(--slate-200);
}
.mobile-sub a {
  font-size: 0.875rem;
  color: var(--slate-500);
  padding: 0.5rem 0.75rem;
}
.mobile-menu .btn-row {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(226, 232, 240, 0.75);
}
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-wa { display: inline-flex; }
  .nav-pill { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-menu,
  .mobile-backdrop { display: none !important; }
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  min-height: 44px; padding: 0.7rem 1.15rem; border-radius: 999px;
  font-size: 0.875rem; font-weight: 700; letter-spacing: 0.01em;
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.985); }
.btn-primary-product {
  background-color: var(--product-blue);
  background-image: linear-gradient(135deg, #005bab 0%, var(--product-blue) 100%);
  color: #fff !important; box-shadow: 0 8px 24px rgba(0, 117, 222, 0.28);
}
.btn-primary-product:visited { color: #fff !important; }
.btn-primary-product:hover { box-shadow: 0 12px 32px rgba(0, 117, 222, 0.36); transform: translateY(-1px); }
.btn-cyan {
  background-color: var(--cyan);
  background-image: linear-gradient(135deg, var(--cyan-bright), var(--cyan));
  color: #020617 !important; box-shadow: 0 8px 24px rgba(0, 180, 216, 0.28);
}
.btn-cyan:visited { color: #020617 !important; }
.btn-cyan:hover { box-shadow: 0 14px 34px rgba(0, 180, 216, 0.35); transform: translateY(-1px); }
.btn-outline { border: 1px solid rgba(0, 119, 182, 0.28); color: var(--cyan-deep); background: rgba(255, 255, 255, 0.7); }
.btn-outline:hover { background: #fff; border-color: var(--cyan-deep); box-shadow: var(--shadow-card); }
.btn-outline-light { border: 1px solid rgba(255, 255, 255, 0.22); color: #fff; background: rgba(255, 255, 255, 0.06); }
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.12); }
.btn-ghost { color: var(--slate-600); background: transparent; }
.btn-ghost:hover { color: var(--cyan-deep); }
.btn-lg { min-height: 50px; padding: 0.85rem 1.4rem; font-size: 0.9375rem; }
.btn-sm { min-height: 40px; padding: 0.55rem 1rem; font-size: 0.8125rem; }
.hero {
  position: relative; padding: calc(var(--nav-h) + 2.5rem) 0 4rem; overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0, 180, 216, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 20%, rgba(0, 117, 222, 0.08), transparent 50%),
    linear-gradient(180deg, #f7fbff 0%, var(--page) 70%);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 20%, transparent 75%);
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 980px) { .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; } }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 0.85rem; border-radius: 999px;
  background: rgba(0, 180, 216, 0.1); border: 1px solid rgba(0, 180, 216, 0.22);
  color: var(--cyan-deep); font-size: 0.6875rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1.25rem;
}
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.2); }
.hero h1 { font-size: clamp(2.25rem, 5vw, 3.65rem); font-weight: 800; color: var(--slate-950); margin-bottom: 1rem; }
.hero h1 .grad {
  background: linear-gradient(120deg, var(--cyan-deep), var(--cyan-bright) 55%, var(--product-blue));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-lead { font-size: 1.0625rem; line-height: 1.7; color: var(--slate-700); max-width: 34rem; margin-bottom: 1.75rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-bottom: 1.75rem; }
.trust-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.45rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  max-width: 100%;
  padding-bottom: 2px;
}
.trust-row::-webkit-scrollbar { display: none; }
.trust-chip {
  display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.45rem 0.75rem; border-radius: 999px;
  background: #fff; border: 1px solid var(--slate-200); font-size: 0.75rem; font-weight: 600; color: var(--slate-700); box-shadow: var(--shadow-card);
  white-space: nowrap; flex-shrink: 0;
}
.trust-chip svg { width: 14px; height: 14px; color: var(--cyan-deep); flex-shrink: 0; }
.device-wrap { position: relative; }
.device-glow {
  position: absolute; inset: 10% -5% -10% 5%;
  background: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.28), transparent 65%);
  filter: blur(20px); pointer-events: none;
}
.device {
  position: relative; border-radius: 16px;
  background: linear-gradient(160deg, #0f172a, #030712 60%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 40px 80px rgba(3, 7, 18, 0.28), 0 0 0 1px rgba(0, 180, 216, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden; transform: perspective(1200px) rotateY(-4deg) rotateX(3deg); transition: transform 0.6s var(--ease);
  margin: 0;
}
.device:hover { transform: perspective(1200px) rotateY(-1deg) rotateX(1deg) translateY(-4px); }
.device-bar { display: flex; align-items: center; gap: 0.5rem; padding: 0.7rem 0.9rem; background: rgba(255, 255, 255, 0.04); border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.device-dots { display: flex; gap: 5px; }
.device-dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.15); }
.device-url {
  flex: 1; text-align: center; font-family: var(--font-data); font-size: 0.6875rem; color: rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.25); border-radius: 8px; padding: 0.35rem 0.6rem;
}
.device-body { padding: 0.85rem; }
.device-body-shot { padding: 0; background: #0a0e14; line-height: 0; }
.device-body-shot picture {
  display: block;
  width: 100%;
}
.device-shot {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #0a0e14;
}
.shot-caption {
  margin: 0.85rem 0 0;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--slate-500);
}
.section { padding: 5rem 0; position: relative; }
.section-sm { padding: 3.5rem 0; }
.section-dark {
  background-color: #0a1628;
  background-image: linear-gradient(165deg, #030712 0%, #0a1628 45%, #0f172a 100%);
  color: var(--slate-300);
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-soft { background: linear-gradient(180deg, #f8fafc 0%, #eef6fb 44%, #f7fbff 100%); }
.section-head { text-align: center; max-width: 40rem; margin: 0 auto 2.75rem; }
.section-head .label { display: block; font-size: 0.6875rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cyan-deep); margin-bottom: 0.85rem; }
.section-dark .section-head .label { color: var(--cyan-bright); }
.section-head h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 800; margin-bottom: 0.85rem; }
.section-head p { font-size: 1.0625rem; color: var(--slate-700); line-height: 1.7; }
.section-dark .section-head p { color: var(--slate-300); }
.split-cards { display: grid; gap: 1rem; }
@media (min-width: 800px) { .split-cards { grid-template-columns: 1fr 1fr; gap: 1.25rem; } }
.card { border-radius: var(--radius-lg); padding: 1.5rem 1.35rem; border: 1px solid var(--slate-200); background: #fff; box-shadow: var(--shadow-card); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.card-bad { background: linear-gradient(160deg, #fff 0%, #fef2f2 100%); border-color: rgba(239, 68, 68, 0.14); }
.card-good { background: linear-gradient(160deg, #fff 0%, #ecfeff 100%); border-color: rgba(0, 180, 216, 0.2); }
.card .card-label { font-size: 0.6875rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.65rem; }
.card-bad .card-label { color: var(--red); }
.card-good .card-label { color: var(--cyan-deep); }
.card h3 { font-size: 1.25rem; margin-bottom: 0.65rem; }
.card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 0.45rem; }
.card li { font-size: 0.9rem; color: var(--slate-700); padding-left: 1.15rem; position: relative; }
.card li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 6px; height: 6px; border-radius: 50%; background: var(--slate-300); }
.card-good li::before { background: var(--cyan); }
.intel-grid { display: grid; gap: 0.9rem; }
@media (min-width: 700px) { .intel-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .intel-grid { grid-template-columns: repeat(3, 1fr); } }
.intel-card {
  border-radius: var(--radius-lg); padding: 1.4rem 1.25rem; background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.35s var(--ease), border-color 0.3s, background 0.3s;
}
.intel-card:hover { transform: translateY(-4px); border-color: rgba(0, 180, 216, 0.35); background: rgba(0, 180, 216, 0.06); }
.intel-icon {
  width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: rgba(0, 180, 216, 0.12); color: var(--cyan-bright); margin-bottom: 1rem;
}
.intel-icon svg { width: 20px; height: 20px; }
.intel-card h3 { font-size: 1.05rem; margin-bottom: 0.45rem; }
.intel-card p { font-size: 0.875rem; color: var(--slate-300); line-height: 1.6; }
.feat-grid { display: grid; gap: 0.9rem; }
@media (min-width: 640px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .feat-grid { grid-template-columns: repeat(3, 1fr); } }
.feat-card {
  border-radius: var(--radius-lg); padding: 1.35rem 1.2rem; background: #fff; border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-card); transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.3s;
}
.feat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover), var(--shadow-glow); border-color: rgba(0, 180, 216, 0.28); }
.feat-icon {
  width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.12), rgba(0, 117, 222, 0.1)); color: var(--cyan-deep); margin-bottom: 0.9rem;
}
.feat-icon svg { width: 18px; height: 18px; }
.feat-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.feat-card p { font-size: 0.875rem; color: var(--slate-700); line-height: 1.6; }
.steps { display: grid; gap: 1rem; counter-reset: step; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(4, 1fr); gap: 1.1rem; } }
.step {
  position: relative; border-radius: var(--radius-lg); padding: 1.5rem 1.2rem 1.35rem; background: #fff;
  border: 1px solid var(--slate-200); box-shadow: var(--shadow-card); counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero); display: block; font-family: var(--font-data);
  font-size: 0.75rem; font-weight: 700; color: var(--cyan-deep); letter-spacing: 0.08em; margin-bottom: 0.75rem;
}
.step h3 { font-size: 1.05rem; margin-bottom: 0.45rem; }
.step p { font-size: 0.875rem; color: var(--slate-700); line-height: 1.6; }
.phone-layout { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 900px) { .phone-layout { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.phone-copy .label { display: block; font-size: 0.6875rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cyan-deep); margin-bottom: 0.75rem; }
.phone-copy h2 { font-size: clamp(1.75rem, 3vw, 2.4rem); margin-bottom: 0.85rem; }
.phone-copy > p { font-size: 1.02rem; color: var(--slate-700); margin-bottom: 1.25rem; line-height: 1.7; }
.checklist { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: 0.65rem; }
.checklist li { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.925rem; color: var(--slate-700); font-weight: 500; }
.checklist svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--cyan-deep); margin-top: 2px; }
.phone-visual { display: flex; flex-direction: column; align-items: center; position: relative; }
.phone-glow {
  position: absolute; inset: 8% 12% 12% 12%;
  background: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.22), transparent 70%);
  filter: blur(24px); pointer-events: none; z-index: 0;
}
.phone-shell {
  width: min(280px, 100%); border-radius: 32px; background: linear-gradient(160deg, #1e293b, #030712);
  border: 3px solid #334155; box-shadow: 0 30px 60px rgba(3, 7, 18, 0.25), var(--shadow-glow); padding: 0.7rem; position: relative;
  margin: 0; z-index: 1;
}
.phone-shell-shot {
  width: min(300px, 88vw);
  padding: 0.55rem;
  border-radius: 36px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: linear-gradient(165deg, #1e293b 0%, #0b1220 55%, #020617 100%);
  box-shadow:
    0 36px 70px rgba(3, 7, 18, 0.32),
    0 0 0 1px rgba(0, 180, 216, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: perspective(1200px) rotateY(6deg) rotateX(2deg);
  transition: transform 0.55s var(--ease);
}
.phone-shell-shot:hover {
  transform: perspective(1200px) rotateY(1deg) rotateX(0deg) translateY(-4px);
}
.phone-bezel { position: relative; border-radius: 30px; overflow: hidden; background: #000; }
.phone-notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 92px; height: 18px; background: #000; border-radius: 0 0 12px 12px; z-index: 2;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04);
}
.phone-screen { border-radius: 22px; background: #0f172a; overflow: hidden; min-height: 420px; padding: 0.85rem; }
.phone-screen-shot {
  min-height: 0;
  padding: 0;
  border-radius: 26px;
  line-height: 0;
  background: #05080f;
  /* Keep the phone frame visible even if the screenshot is still loading */
  aspect-ratio: 471 / 1024;
}
.phone-screen-shot picture {
  display: block;
  width: 100%;
  height: 100%;
}
.phone-screen-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  background: #05080f;
}
.phone-home-bar {
  position: absolute; left: 50%; bottom: 8px; transform: translateX(-50%);
  width: 34%; height: 4px; border-radius: 999px; background: rgba(255, 255, 255, 0.28);
  z-index: 2; pointer-events: none;
}
.phone-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.85rem; }
.phone-header strong { color: #fff; font-size: 0.875rem; font-family: var(--font-heading); }
.phone-header span { font-size: 0.625rem; color: #6ee7b7; font-weight: 700; }
.phone-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.45rem; margin-bottom: 0.65rem; }
.phone-stat { background: rgba(255, 255, 255, 0.04); border-radius: 12px; padding: 0.65rem; border: 1px solid rgba(255, 255, 255, 0.06); }
.phone-stat em { display: block; font-style: normal; font-size: 0.625rem; color: rgba(255, 255, 255, 0.4); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; }
.phone-stat b { font-family: var(--font-data); color: #fff; font-size: 1.1rem; }
.phone-alert { background: rgba(239, 68, 68, 0.12); border: 1px solid rgba(239, 68, 68, 0.2); border-radius: 12px; padding: 0.7rem; margin-bottom: 0.5rem; }
.phone-alert strong { display: block; color: #fca5a5; font-size: 0.75rem; margin-bottom: 0.2rem; }
.phone-alert span { font-size: 0.7rem; color: rgba(255, 255, 255, 0.5); }
.phone-list-item {
  display: flex; justify-content: space-between; align-items: center; padding: 0.55rem 0.45rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05); font-size: 0.75rem; color: rgba(255, 255, 255, 0.75);
}
.phone-list-item i { font-style: normal; font-size: 0.625rem; font-weight: 800; color: #6ee7b7; }
.demo-band {
  border-radius: var(--radius-xl); padding: 2rem 1.5rem;
  background-color: #0a1628;
  background-image: linear-gradient(135deg, #0a1628, #0f172a 50%, #062a3a);
  border: 1px solid rgba(0, 180, 216, 0.2);
  box-shadow: 0 24px 60px rgba(3, 7, 18, 0.15), var(--shadow-glow);
  display: grid; gap: 1.5rem; align-items: center;
}
@media (min-width: 800px) { .demo-band { grid-template-columns: 1.2fr 0.8fr; padding: 2.5rem 2.25rem; } }
.demo-band h2 { color: #fff; font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 0.6rem; }
.demo-band p { color: var(--slate-300); font-size: 0.975rem; line-height: 1.7; margin-bottom: 1.25rem; }
.demo-note { font-size: 0.8125rem !important; color: var(--slate-300) !important; margin: 0 !important; }
.demo-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.trial-steps { display: grid; gap: 0.9rem; }
@media (min-width: 800px) { .trial-steps { grid-template-columns: repeat(4, 1fr); } }
.trial-step {
  border-radius: var(--radius-lg); padding: 1.35rem 1.15rem; background: #fff;
  border: 1px solid var(--slate-200); box-shadow: var(--shadow-card); text-align: center;
}
.trial-step .n {
  width: 36px; height: 36px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-data); font-weight: 700; font-size: 0.8125rem;
  background: linear-gradient(135deg, var(--cyan-bright), var(--cyan)); color: var(--slate-950); margin-bottom: 0.85rem;
}
.trial-step h3 { font-size: 0.975rem; margin-bottom: 0.35rem; }
.trial-step p { font-size: 0.8125rem; color: var(--slate-600); line-height: 1.55; }
.trial-banner {
  margin-top: 1.75rem; text-align: center; padding: 1.15rem 1.25rem; border-radius: var(--radius-lg);
  background: linear-gradient(90deg, rgba(0, 180, 216, 0.1), rgba(0, 117, 222, 0.08));
  border: 1px solid rgba(0, 180, 216, 0.22); color: var(--slate-700); font-size: 0.9375rem; font-weight: 600;
}
.trial-banner strong { color: var(--cyan-deep); }
.pricing-layout { display: grid; gap: 1.15rem; }
@media (min-width: 900px) { .pricing-layout { grid-template-columns: 0.9fr 1.1fr; align-items: stretch; } }
.pricing-panel {
  border-radius: 22px; padding: 1.5rem; background: #fff; border: 1px solid #fff;
  box-shadow: var(--shadow-card-hover); position: relative; overflow: hidden;
}
.pricing-panel::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, #fff 0%, #f8fbfd 54%, #eef8fc 100%); pointer-events: none;
}
.pricing-panel > * { position: relative; }
.pricing-dark {
  border-radius: 22px; padding: 1.5rem; background: var(--slate-950); color: #fff;
  border: 1px solid var(--slate-900); box-shadow: 0 24px 50px rgba(3, 7, 18, 0.18);
  position: relative; overflow: hidden;
}
.pricing-dark::before {
  content: ""; position: absolute; right: -20%; top: -20%; width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.22), transparent 60%); pointer-events: none;
}
.pricing-dark > * { position: relative; }
.pricing-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.pricing-top .label { font-size: 0.6875rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate-500); }
.machine-count {
  font-family: var(--font-heading); font-size: 3rem; font-weight: 800; color: var(--slate-950);
  line-height: 1; cursor: text; background: none; border: none; padding: 0;
}
.machine-count:hover { color: var(--cyan-deep); }
.tier-badge { border-radius: 14px; padding: 0.65rem 0.9rem; background: #eaf8fd; border: 1px solid rgba(0, 180, 216, 0.2); }
.tier-badge .t1 { font-size: 0.625rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cyan-deep); }
.tier-badge .t2 { font-family: var(--font-data); font-weight: 700; color: var(--slate-950); font-size: 0.9rem; margin-top: 0.15rem; }
.pricing-slider {
  -webkit-appearance: none; appearance: none; width: 100%; height: 8px; border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan) var(--progress, 23%), var(--slate-200) var(--progress, 23%));
  outline: none; margin: 0.5rem 0;
}
.pricing-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: #fff;
  border: 3px solid var(--cyan); box-shadow: 0 4px 12px rgba(0, 180, 216, 0.35); cursor: pointer;
}
.pricing-slider::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 3px solid var(--cyan); cursor: pointer;
}
.slider-labels { display: flex; justify-content: space-between; font-family: var(--font-data); font-size: 0.6875rem; font-weight: 600; color: var(--slate-500); margin-bottom: 1rem; }
.price-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1rem; }
.price-metric { border-radius: 14px; padding: 0.9rem; background: #f8fafc; border: 1px solid var(--slate-200); }
.price-metric span { display: block; font-size: 0.625rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate-500); }
.price-metric strong { display: block; margin-top: 0.35rem; font-family: var(--font-heading); font-size: 1.25rem; color: var(--slate-950); }
.custom-input-row { display: none; gap: 0.5rem; margin-bottom: 1rem; }
.custom-input-row.is-open { display: flex; }
.custom-input-row input {
  flex: 1; min-height: 44px; border-radius: 12px; border: 1px solid var(--slate-200);
  padding: 0 0.85rem; font-family: var(--font-data); font-weight: 700; font-size: 1rem;
  color: var(--slate-900);
}
.custom-input-row input::placeholder {
  color: var(--slate-500);
  opacity: 1;
}
.pricing-dark .badge {
  display: inline-flex; padding: 0.35rem 0.75rem; border-radius: 999px;
  background: rgba(0, 180, 216, 0.12); border: 1px solid rgba(0, 180, 216, 0.25);
  color: var(--cyan-bright); font-size: 0.625rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1rem;
}
.pricing-dark .big-price {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.pricing-dark .big-price [data-monthly] {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  margin-left: 0;
}
.pricing-dark .big-price .per {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-300);
  margin-left: 0.35rem;
}
.pricing-dark .desc { margin: 0.85rem 0 1.15rem; font-size: 0.875rem; color: var(--slate-300); line-height: 1.6; }
.include-list { list-style: none; margin: 0 0 1.25rem; padding: 0; display: grid; gap: 0.55rem; }
.include-list li { display: flex; gap: 0.55rem; align-items: flex-start; font-size: 0.875rem; color: var(--slate-300); }
.include-list svg { width: 16px; height: 16px; color: var(--cyan-bright); flex-shrink: 0; margin-top: 2px; }
.pricing-cta-row { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.pricing-footnote { margin-top: 1.25rem; text-align: center; font-size: 0.8125rem; color: var(--slate-600); }
.faq-list { max-width: 42rem; margin: 0 auto; display: grid; gap: 0.65rem; }
.faq-item { border-radius: var(--radius-md); background: #fff; border: 1px solid var(--slate-200); box-shadow: var(--shadow-card); overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.05rem 1.15rem; font-weight: 700; color: var(--slate-900);
  font-size: 0.95rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--font-data); color: var(--cyan-deep); font-size: 1.15rem; font-weight: 600; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding: 0 1.15rem 1.15rem; font-size: 0.9rem; color: var(--slate-700); line-height: 1.65; }
.final-cta {
  text-align: center; padding: 4.5rem 0;
  background-color: #030712;
  background-image: radial-gradient(ellipse 70% 80% at 50% 100%, rgba(0, 180, 216, 0.2), transparent 55%), linear-gradient(180deg, #030712, #0a1628);
}
.final-cta h2 { color: #fff; font-size: clamp(1.75rem, 3.5vw, 2.75rem); margin-bottom: 0.75rem; }
.final-cta p { color: var(--slate-300); max-width: 32rem; margin: 0 auto 1.5rem; font-size: 1.05rem; line-height: 1.7; }
.final-cta .cta-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem; }
/* ── Footer (mirror acxa.in Footer.tsx + Container width) ── */
.footer {
  background-color: var(--navy-footer);
  background: var(--navy-footer);
  color: var(--slate-400);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0;
}
.footer-main {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .footer-main {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.footer-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
}
.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
.footer-brand-title a {
  color: #fff;
  transition: color 0.15s;
}
.footer-brand-title a:hover { color: var(--cyan-bright); }
.footer-brand-copy {
  margin-top: 1rem;
  max-width: 20rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--slate-400);
}
.footer-iso {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  border: 1px solid rgba(212, 160, 23, 0.3);
  background: rgba(212, 160, 23, 0.05);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.025em;
}
.footer-iso svg { width: 16px; height: 16px; flex-shrink: 0; }
.footer h4 {
  color: var(--slate-300);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--slate-400);
  transition: color 0.15s;
}
.footer-links a:hover { color: #fff; }
.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.footer-social a {
  display: flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  color: var(--slate-400);
  transition: color 0.2s, background 0.2s, transform 0.2s;
}
.footer-social a:hover {
  color: var(--cyan-bright);
  background: var(--slate-800);
  transform: scale(1.1);
}
.footer-social svg { width: 20px; height: 20px; }
.footer-bottom-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  font-size: 0.75rem;
  color: var(--slate-400);
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}
.footer-bottom .made-in {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.footer-bottom .made-in .flag { font-size: 1rem; line-height: 1; }
.wa-float {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 120; width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; background: #25d366; color: #fff;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4); transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.wa-float:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 16px 36px rgba(37, 211, 102, 0.48); }
.wa-float svg { width: 28px; height: 28px; }
.wa-float::after {
  content: "Chat on WhatsApp"; position: absolute; right: calc(100% + 10px); background: var(--slate-900);
  color: #fff; font-size: 0.75rem; font-weight: 600; padding: 0.4rem 0.7rem; border-radius: 8px;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.wa-float:hover::after { opacity: 1; }
.reveal { opacity: 1; transform: none; transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
/* Only hide for animation when JS opts in — without JS, content stays readable */
html.js-anim .reveal:not(.is-visible) { opacity: 0; transform: translateY(28px); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
  html.js-anim .reveal:not(.is-visible) {
    opacity: 1;
    transform: none;
  }
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; }

/* —— Mobile-first polish (phone / small tablet) —— */
@supports (padding: env(safe-area-inset-bottom)) {
  body {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
  .nav {
    /* height comes from .nav-shell */
  }
  .mobile-menu {
    padding-top: calc(1rem + env(safe-area-inset-top));
    padding-bottom: calc(1.25rem + env(safe-area-inset-bottom));
  }
  .wa-float {
    right: calc(1rem + env(safe-area-inset-right));
    bottom: calc(1rem + env(safe-area-inset-bottom));
  }
}

@media (max-width: 899px) {
  :root { --nav-h: 64px; }
  .nav-shell { height: 64px; padding-inline: 1.25rem; }
  .nav.is-scrolled .nav-shell { height: 64px; }
  .nav-logo { height: 2rem; max-width: 112px; }

  /* Hero: copy first, product visual full-bleed impact */
  .hero {
    padding: calc(var(--nav-h) + 1.35rem) 0 2.5rem;
    /* Clip any residual paint; width is constrained by children min-width:0 below */
    overflow-x: clip;
  }
  .hero-grid {
    gap: 1.75rem;
    width: 100%;
    max-width: 100%;
    /* Prevent trust-chip / image intrinsic min-content from blowing past the phone width */
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-grid > * {
    min-width: 0;
    max-width: 100%;
  }
  .eyebrow {
    font-size: 0.625rem;
    letter-spacing: 0.12em;
    margin-bottom: 0.95rem;
  }
  .hero h1 {
    font-size: clamp(1.85rem, 7.2vw, 2.55rem);
    margin-bottom: 0.85rem;
    line-height: 1.12;
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .hero-lead {
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
    max-width: 100%;
  }
  /* Always stack hero CTAs on phones — side-by-side overflowed iPhone widths */
  .hero-ctas {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.65rem;
    margin-bottom: 1.25rem;
    width: 100%;
    max-width: 100%;
  }
  .hero-ctas .btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 50px;
    font-size: 0.9375rem;
    box-sizing: border-box;
  }
  .hero-ctas .btn-lg {
    min-height: 52px;
    padding-inline: 1.1rem;
  }
  .trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    overflow-x: visible;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .trust-chip {
    font-size: 0.6875rem;
    padding: 0.45rem 0.6rem;
    justify-content: flex-start;
    line-height: 1.3;
    white-space: nowrap;
    flex-shrink: 1;
    max-width: 100%;
  }

  /* Dashboard frame: no 3D tilt on phone (no edge clip); stay inside column */
  .device-wrap {
    margin-inline: 0;
    width: 100%;
    max-width: 100%;
  }
  .device-glow {
    inset: 8% 0% -8% 0%;
    filter: blur(18px);
    max-width: 100%;
  }
  .device {
    transform: none;
    width: 100%;
    max-width: 100%;
    border-radius: 14px;
    box-shadow:
      0 24px 48px rgba(3, 7, 18, 0.22),
      0 0 0 1px rgba(0, 180, 216, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }
  .device:hover { transform: none; }
  .device-bar {
    padding: 0.55rem 0.7rem;
  }
  .device-url {
    font-size: 0.625rem;
    padding: 0.3rem 0.45rem;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .device-body-shot {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .device-shot {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .shot-caption {
    font-size: 0.6875rem;
    margin-top: 0.7rem;
    max-width: 100%;
    padding-inline: 0.25rem;
    overflow-wrap: anywhere;
  }

  .section { padding: 3.25rem 0; }
  .section-sm { padding: 2.5rem 0; }
  .section-head {
    margin-bottom: 1.75rem;
    text-align: left;
  }
  .section-head h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  .section-head p {
    font-size: 0.975rem;
  }

  .card {
    padding: 1.25rem 1.15rem;
  }
  .card h3 { font-size: 1.1rem; }

  .intel-card,
  .feat-card,
  .step,
  .trial-step {
    padding: 1.2rem 1.1rem;
  }

  /* Companion: show real phone first on mobile for impact, then copy */
  .phone-layout {
    gap: 1.75rem;
    display: flex;
    flex-direction: column;
  }
  .phone-visual {
    order: -1;
  }
  .phone-copy h2 {
    font-size: clamp(1.55rem, 6vw, 2rem);
  }
  .phone-copy .hero-ctas {
    margin-bottom: 0;
  }
  .phone-shell-shot {
    width: min(280px, 78vw);
    transform: none;
    padding: 0.5rem;
  }
  .phone-shell-shot:hover {
    transform: none;
  }
  .phone-glow {
    inset: 5% 18% 10% 18%;
  }
  .phone-notch {
    width: 78px;
    height: 16px;
  }

  .demo-band {
    padding: 1.5rem 1.2rem;
    border-radius: 18px;
    gap: 1.15rem;
  }
  .demo-band h2 {
    font-size: 1.35rem;
  }
  .demo-band p {
    font-size: 0.9rem;
    margin-bottom: 0.85rem;
  }
  .demo-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .demo-actions .btn {
    width: 100%;
  }

  .trial-banner {
    text-align: left;
    font-size: 0.875rem;
    line-height: 1.55;
    padding: 1rem 1.1rem;
  }

  .pricing-panel,
  .pricing-dark {
    padding: 1.25rem 1.1rem;
    border-radius: 18px;
  }
  .machine-count {
    font-size: 2.5rem;
  }
  .price-metrics {
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
  }
  .price-metric strong {
    font-size: 1.1rem;
  }
  .pricing-dark .big-price {
    font-size: 1.75rem;
  }
  .pricing-cta-row {
    display: grid;
    grid-template-columns: 1fr;
  }
  .pricing-cta-row .btn {
    width: 100%;
  }

  .faq-item summary {
    padding: 0.95rem 1rem;
    font-size: 0.9rem;
    align-items: flex-start;
  }
  .faq-item p {
    padding: 0 1rem 1rem;
    font-size: 0.875rem;
  }

  .final-cta {
    padding: 3.25rem 0;
  }
  .final-cta p {
    font-size: 0.975rem;
    margin-bottom: 1.25rem;
  }
  .final-cta .cta-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
    max-width: 22rem;
    margin-inline: auto;
  }
  .final-cta .cta-row .btn {
    width: 100%;
  }

  .footer {
    /* room for WA float over bottom bar on phone */
    padding-bottom: 0;
  }
  .footer-main {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .footer-grid {
    gap: 2.5rem;
  }
  .footer-bottom {
    padding-bottom: calc(1.5rem + 4.5rem);
  }

  .wa-float {
    width: 54px;
    height: 54px;
  }
  .wa-float::after {
    display: none; /* tooltip unusable on touch */
  }

  /* Shorter motion on mobile for snappier feel */
  .reveal {
    transform: translateY(16px);
  }
}

/* Very small phones */
@media (max-width: 399px) {
  .container {
    width: min(var(--max), calc(100% - 1.15rem));
  }
  .nav-actions .btn-outline {
    display: none; /* Keep Log in; secondary actions live in menu + hero */
  }
  .trust-row {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
  .phone-shell-shot {
    width: min(260px, 84vw);
  }
  .price-metrics {
    grid-template-columns: 1fr;
  }
}

/* Touch: no sticky hover lift that traps iOS hover styles */
@media (hover: none) {
  .card:hover,
  .feat-card:hover,
  .intel-card:hover,
  .btn:hover,
  .device:hover,
  .phone-shell-shot:hover {
    transform: none;
  }
  .btn:active {
    transform: scale(0.98);
  }
}

/* Landscape phones — keep hero scannable */
@media (max-width: 899px) and (orientation: landscape) {
  .hero {
    padding-top: calc(var(--nav-h) + 1rem);
    padding-bottom: 2rem;
  }
  .hero-ctas {
    grid-template-columns: 1fr 1fr;
  }
  .hero-ctas .btn-outline {
    grid-column: auto;
  }
  .device-wrap {
    max-width: 28rem;
    margin-inline: auto;
  }
}