/* GotBots - Industrial tech design system */
:root {
 --bg: #FFFFFF;
 --bg-1: #F8FAFC;
 --surface: #F1F5F9;
 --surface-2: #E8EEF7;
 --border: rgba(15, 23, 42, 0.12);
 --border-hover: rgba(0, 102, 255, 0.35);
 --primary: #0066FF;
 --primary-hover: #1a7aff;
 --glow: #0066FF;
 --text: #0F172A;
 --text-2: #475569;
 --text-3: #64748B;
 --radius: 4px;
 --radius-lg: 10px;
 --container: 1240px;
 --header-h: 72px;
 --font-display: 'Space Grotesk', system-ui, sans-serif;
 --font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; max-width: 100%; overflow-x: hidden; }

body {
 font-family: var(--font-body);
 background: var(--bg);
 color: var(--text);
 line-height: 1.55;
 font-size: 16px;
 min-height: 100vh;
 max-width: 100%;
 overflow-x: hidden;
 font-feature-settings: "ss01", "cv11";
 -webkit-font-smoothing: antialiased;
}

img, video, iframe { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--glow); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
input, select, textarea { font: inherit; }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; letter-spacing: 0; line-height: 1.1; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; font-weight: 600; }
p { color: var(--text-2); }
.eyebrow {
 font-family: var(--font-display);
 font-size: 0.8125rem;
 font-weight: 500;
 letter-spacing: 0.18em;
 text-transform: uppercase;
 color: var(--glow);
 display: inline-block;
 margin-bottom: 1rem;
}
.muted { color: var(--text-2); }
.text-glow { color: var(--glow); }

/* Layout */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section--sm { padding: 64px 0; }
.section--tight { padding: 56px 0; }
@media (max-width: 768px) {
 .section { padding: 64px 0; }
 .section--sm { padding: 48px 0; }
}

/* Header */
.site-header {
 position: sticky;
 top: 0;
 z-index: 100;
 background: rgba(255, 255, 255, 0.92);
 backdrop-filter: blur(18px);
 -webkit-backdrop-filter: blur(18px);
 border-bottom: 1px solid var(--border);
 height: var(--header-h);
 display: flex;
 align-items: center;
}
.site-header .container {
 display: flex;
 align-items: center;
 justify-content: space-between;
 width: 100%;
 gap: 32px;
}
.logo {
 display: flex;
 align-items: center;
 gap: 10px;
 flex-shrink: 0;
}
.logo img { height: 56px; width: auto; border-radius: 6px; }
.logo-text {
 font-family: var(--font-display);
 font-weight: 800;
 font-size: 1.75rem;
 letter-spacing: 0;
 background: linear-gradient(135deg, #0F172A 0%, #0066FF 100%);
 -webkit-background-clip: text;
 background-clip: text;
 -webkit-text-fill-color: transparent;
 line-height: 1;
}
.logo-text .dot { color: #0066FF; -webkit-text-fill-color: #0066FF; }
.footer-about .logo img { height: 72px; }
.footer-about .logo-text { font-size: 2rem; }
@media (max-width: 640px) {
 .logo img { height: 44px; }
 .logo-text { font-size: 1.35rem; }
}
.nav {
 display: flex;
 align-items: center;
 gap: 28px;
 flex: 1;
 justify-content: center;
}
.nav a {
 font-size: 0.9375rem;
 font-weight: 500;
 color: var(--text-2);
 position: relative;
 padding: 6px 0;
}
.nav a:hover, .nav a.active { color: var(--text); }
.nav a.active::after {
 content: '';
 position: absolute;
 bottom: -4px; left: 0; right: 0;
 height: 1px;
 background: var(--glow);
 box-shadow: 0 0 8px var(--glow);
}
.header-right {
 display: flex;
 align-items: center;
 gap: 16px;
 flex-shrink: 1;
 min-width: 0;
}
.site-header .container { min-width: 0; flex-wrap: nowrap; }
.nav { min-width: 0; }
.lang-switcher {
 display: flex;
 align-items: center;
 gap: 2px;
 border: 1px solid var(--border);
 border-radius: var(--radius);
 padding: 3px;
}
.lang-switcher button {
 font-family: var(--font-display);
 font-size: 0.75rem;
 font-weight: 600;
 letter-spacing: 0.05em;
 padding: 5px 10px;
 color: var(--text-3);
 border-radius: 2px;
 transition: all .2s ease;
}
.lang-switcher button.active {
 background: var(--primary);
 color: white;
}
.lang-switcher button:hover:not(.active) { color: var(--text); }

.mobile-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: var(--radius); }
.mobile-toggle svg { stroke: currentColor; width: 22px; height: 22px; }
.mobile-toggle[aria-expanded="true"] { color: var(--glow); }

/* ============ MOBILE HEADER DRAWER (<=900px) ============ */
@media (max-width: 900px) {
 .site-header .container { gap: 12px; }

 /* Hide desktop controls; only logo + hamburger in the bar */
 .nav { display: none; }
 .header-right > .header-phone,
 .header-right > .lang-switcher,
 .header-right > .btn { display: none; }
 .mobile-toggle { display: flex; }

 /* Drawer open state: header grows, container stacks */
 .site-header.nav-open {
 height: auto;
 align-items: flex-start;
 padding: 0;
 }
 .site-header.nav-open .container {
 flex-direction: column;
 align-items: stretch;
 gap: 20px;
 padding-top: 16px;
 padding-bottom: 28px;
 }
 .site-header.nav-open .container > .logo,
 .site-header.nav-open .container > .header-right {
 width: 100%;
 }
 .site-header.nav-open .logo {
 display: flex;
 justify-content: space-between;
 align-items: center;
 }
 .site-header.nav-open .mobile-toggle {
 position: absolute;
 top: 16px;
 right: 16px;
 color: var(--glow);
 }
 /* Nav links visible + stacked */
 .site-header.nav-open .nav {
 display: flex;
 flex-direction: column;
 gap: 2px;
 align-items: stretch;
 width: 100%;
 padding: 8px 0;
 border-top: 1px solid var(--border);
 border-bottom: 1px solid var(--border);
 flex: none;
 }
 .site-header.nav-open .nav a {
 padding: 14px 4px;
 font-size: 1.0625rem;
 min-height: 44px;
 display: flex;
 align-items: center;
 color: var(--text);
 }
 .site-header.nav-open .nav a.active {
 color: var(--glow);
 }
 .site-header.nav-open .nav a.active::after { display: none; }

 /* Show header-right items stacked below nav */
 .site-header.nav-open .header-right {
 flex-direction: column;
 align-items: stretch;
 gap: 14px;
 width: 100%;
 }
 .site-header.nav-open .header-right > .header-phone,
 .site-header.nav-open .header-right > .lang-switcher,
 .site-header.nav-open .header-right > .btn { display: flex; }
 .site-header.nav-open .header-phone {
 padding: 14px 20px;
 background: rgba(0, 229, 255, 0.06);
 border: 1px solid var(--glow);
 border-radius: var(--radius);
 justify-content: center;
 color: var(--text);
 font-size: 1.0625rem;
 gap: 10px;
 min-height: 48px;
 }
 .site-header.nav-open .header-phone span { display: inline; font-weight: 600; }
 .site-header.nav-open .lang-switcher { align-self: center; padding: 4px; }
 .site-header.nav-open .lang-switcher button { padding: 10px 16px; font-size: 0.875rem; min-height: 40px; }
 .site-header.nav-open .header-right > .btn {
 padding: 15px 22px;
 font-size: 1rem;
 justify-content: center;
 min-height: 48px;
 }

 /* Prevent body scroll when drawer open (also set via JS) */
 body.nav-open-lock { overflow: hidden; touch-action: none; }
}

/* Explicit desktop override: guarantee hamburger never shows */
@media (min-width: 901px) {
 .mobile-toggle { display: none !important; }
}

/* Buttons */
.btn {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 padding: 13px 22px;
 font-family: var(--font-display);
 font-weight: 500;
 font-size: 0.9375rem;
 letter-spacing: 0;
 border-radius: var(--radius);
 transition: all .22s ease;
 cursor: pointer;
 border: 1px solid transparent;
 white-space: nowrap;
}
.btn--primary {
 background: var(--primary);
 color: #fff;
 box-shadow: 0 0 0 0 rgba(0, 229, 255, 0);
}
.btn--primary:hover {
 background: var(--primary-hover);
 color: #fff;
 box-shadow: 0 0 28px rgba(0, 229, 255, 0.35), 0 0 0 1px var(--glow);
 transform: translateY(-1px);
}
.btn--ghost {
 background: transparent;
 color: var(--text);
 border: 1px solid var(--border);
}
.btn--ghost:hover {
 border-color: var(--glow);
 color: var(--glow);
 background: rgba(0, 229, 255, 0.04);
}
.btn--sm { padding: 8px 14px; font-size: 0.8125rem; }
.btn .arrow { transition: transform .22s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* Hero */
.hero {
 position: relative;
 min-height: 72vh;
 display: flex;
 align-items: center;
 overflow: hidden;
 padding: 72px 0 64px;
}
.hero--clean {
 background:
 radial-gradient(720px 420px at 82% 30%, rgba(0,102,255,0.13), transparent 62%),
 linear-gradient(180deg, #ffffff 0%, #f7faff 48%, #edf4ff 100%);
 border-bottom: 1px solid var(--border);
}
.hero--photo {
 min-height: min(760px, calc(100vh - var(--header-h)));
 padding: 78px 0 54px;
 background:
  linear-gradient(90deg, rgba(2, 8, 23, 0.88) 0%, rgba(2, 8, 23, 0.72) 38%, rgba(2, 8, 23, 0.18) 72%, rgba(2, 8, 23, 0.06) 100%),
  linear-gradient(180deg, rgba(2, 8, 23, 0.15) 0%, rgba(2, 8, 23, 0.52) 100%),
  url('/assets/images/pudu-official/mt1-vac-official-hero.webp') center right / cover no-repeat;
 color: #fff;
}
.hero--photo .hero-grid {
 grid-template-columns: minmax(0, 690px);
 gap: 28px;
}
.hero--photo .hero-content,
.hero--photo .hero-visual {
 max-width: 690px;
}
.hero--photo .hero-content.reveal,
.hero--photo .hero-visual.reveal {
 opacity: 1;
 transform: none;
}
.hero--photo h1,
.hero--photo .eyebrow,
.hero--photo .lead,
.hero--photo .hero-meta,
.hero--photo .hero-tertiary a {
 color: #fff;
}
.hero--photo h1 {
 max-width: 660px;
 font-size: clamp(2.55rem, 4.15vw, 3.95rem);
 line-height: 0.98;
 margin-bottom: 22px;
}
.hero--photo .lead {
 max-width: 620px;
 margin-bottom: 28px;
}
.hero--photo h1 .line-glow {
 color: #75E9FF;
}
.hero--photo .lead {
 color: rgba(255,255,255,0.9);
}
.hero--photo .hero-meta,
.hero--photo .hero-tertiary {
 color: rgba(255,255,255,0.82);
}
.hero--photo .btn--ghost {
 color: #fff;
 border-color: rgba(255,255,255,0.54);
 background: rgba(255,255,255,0.08);
}
.hero--photo .btn--ghost:hover {
 border-color: #75E9FF;
 background: rgba(117,233,255,0.12);
}
.hero--photo .hero-visual-card {
 display: none;
}
.hero--photo .hero-proof-row {
 max-width: 720px;
}
.hero--photo .hero-proof-row div {
 background: rgba(255,255,255,0.9);
 border-color: rgba(255,255,255,0.35);
}
.hero--photo::after {
 content: '';
 position: absolute;
 left: 0;
 right: 0;
 bottom: 0;
 height: 1px;
 background: rgba(255,255,255,0.18);
 pointer-events: none;
}
.hero--clean::after {
 content: '';
 position: absolute;
 inset: auto 0 0;
 height: 42%;
 background: linear-gradient(180deg, rgba(255,255,255,0), rgba(0,102,255,0.06));
 pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
 display: grid;
 grid-template-columns: minmax(0, 0.96fr) minmax(420px, 0.86fr);
 gap: clamp(36px, 5vw, 72px);
 align-items: center;
}
.hero-content { max-width: 760px; }
.hero h1 {
 font-size: clamp(2.25rem, 5vw, 4.35rem);
 font-weight: 700;
 letter-spacing: 0;
 line-height: 1;
 margin-bottom: 24px;
}
.hero h1 .line-glow { color: var(--glow); }
.hero .lead {
 font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
 color: var(--text-2);
 max-width: 620px;
 margin-bottom: 36px;
 line-height: 1.55;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-tertiary {
 margin-top: 18px;
 font-weight: 600;
}
.hero-meta {
 margin-top: 24px;
 font-size: 0.875rem;
 color: var(--text-3);
}
.hero-visual {
 display: flex;
 flex-direction: column;
 gap: 14px;
}
.hero-visual-card {
 position: relative;
 overflow: hidden;
 aspect-ratio: 1.15 / 0.88;
 border: 1px solid rgba(0,102,255,0.16);
 border-radius: 10px;
 background: #eef4fb;
 box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
}
.hero-visual-card img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: 72% 50%;
 filter: saturate(1.04) contrast(1.02);
}
.hero-visual-caption {
 position: absolute;
 left: 18px;
 bottom: 18px;
 display: inline-flex;
 flex-direction: column;
 gap: 2px;
 padding: 12px 14px;
 border-radius: 8px;
 background: rgba(255,255,255,0.92);
 border: 1px solid rgba(15, 23, 42, 0.08);
 box-shadow: 0 14px 34px rgba(15, 23, 42, 0.14);
}
.hero-visual-caption span {
 color: var(--glow);
 font-family: var(--font-display);
 font-size: 0.72rem;
 letter-spacing: 0.12em;
 text-transform: uppercase;
}
.hero-visual-caption strong {
 color: var(--text);
 font-size: 0.96rem;
}
.hero-proof-row {
 display: grid;
 grid-template-columns: repeat(3, minmax(0, 1fr));
 gap: 10px;
}
.hero-proof-row div {
 min-height: 78px;
 padding: 14px;
 border: 1px solid var(--border);
 border-radius: 8px;
 background: rgba(255,255,255,0.78);
 box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}
.hero-proof-row strong {
 display: block;
 color: var(--text);
 font-family: var(--font-display);
 font-size: 1.1rem;
 line-height: 1.1;
}
.hero-proof-row span {
 display: block;
 margin-top: 5px;
 color: var(--text-2);
 font-size: 0.8rem;
 line-height: 1.3;
}
@media (max-width: 980px) {
 .hero-grid { grid-template-columns: 1fr; }
 .hero-visual { max-width: 720px; }
}
@media (max-width: 640px) {
 .hero { min-height: auto; padding: 54px 0 48px; }
 .hero--photo {
  min-height: auto;
  padding: 46px 0 38px;
  background:
   linear-gradient(180deg, rgba(2, 8, 23, 0.84) 0%, rgba(2, 8, 23, 0.66) 58%, rgba(2, 8, 23, 0.42) 100%),
   url('/assets/images/pudu-official/mt1-vac-official-hero.webp') 58% center / cover no-repeat;
 }
 .hero-proof-row { grid-template-columns: 1fr; }
 .hero-visual-card { aspect-ratio: 1 / 0.82; }
}

/* Grid cut divider (wave inspired) */
.divider-wave {
 display: block;
 width: 100%;
 height: 48px;
 color: var(--glow);
 opacity: 0.28;
}

/* Trust bar */
.trust-bar {
 border-top: 1px solid var(--border);
 border-bottom: 1px solid var(--border);
 padding: 18px 0;
 background: rgba(10, 10, 10, 0.6);
}
.trust-bar-items {
 display: flex;
 flex-wrap: wrap;
 gap: 20px 40px;
 align-items: center;
 justify-content: center;
 font-family: var(--font-display);
 font-size: 0.8125rem;
 font-weight: 500;
 letter-spacing: 0.1em;
 text-transform: uppercase;
 color: var(--text-2);
 text-align: center;
}
.trust-bar-items span { display: inline-flex; align-items: center; gap: 10px; }
.trust-bar-items .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--glow); box-shadow: 0 0 8px var(--glow); }

/* Section head */
.section-head { max-width: 740px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.0625rem; margin-top: 12px; }

/* Features / advantages grid */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .grid-2, .grid-4 { grid-template-columns: 1fr; } }

.card {
 background: var(--surface);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 padding: 28px;
 transition: all .28s ease;
 position: relative;
 overflow: hidden;
}
.card::before {
 content: '';
 position: absolute;
 inset: 0;
 border-radius: var(--radius-lg);
 pointer-events: none;
 background: radial-gradient(400px 200px at var(--x, 50%) -10%, rgba(0, 229, 255, 0.08), transparent 60%);
 opacity: 0;
 transition: opacity .3s ease;
}
.card:hover {
 border-color: rgba(0, 229, 255, 0.25);
 transform: translateY(-3px);
 box-shadow: 0 12px 32px -8px rgba(0, 102, 255, 0.25);
}
.card:hover::before { opacity: 1; }
.card .icon {
 width: 44px; height: 44px;
 display: flex; align-items: center; justify-content: center;
 border-radius: 8px;
 background: linear-gradient(135deg, rgba(0, 102, 255, 0.15), rgba(0, 229, 255, 0.05));
 border: 1px solid rgba(0, 102, 255, 0.25);
 color: var(--glow);
 margin-bottom: 18px;
}
.card .icon svg { width: 22px; height: 22px; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: 0.9375rem; }

/* Product showcase card */
.product-card {
 background: var(--surface);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 overflow: hidden;
 transition: all .3s ease;
 display: flex;
 flex-direction: column;
}
.product-card:hover {
 border-color: rgba(0, 229, 255, 0.35);
 transform: translateY(-4px);
}
.product-card .image {
 aspect-ratio: 4/3;
 background: #000;
 overflow: hidden;
 position: relative;
}
.product-card .image img {
 width: 100%; height: 100%;
 object-fit: cover;
 transition: transform .5s ease;
}
.product-card:hover .image img { transform: scale(1.04); }
.product-card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.product-card .tag {
 font-family: var(--font-display);
 font-size: 0.75rem; font-weight: 500;
 letter-spacing: 0.12em; text-transform: uppercase;
 color: var(--glow);
}
.product-card h3 { margin: 0; }
.product-card p { font-size: 0.9375rem; margin-bottom: 10px; }
.product-card .link {
 margin-top: auto;
 font-family: var(--font-display);
 font-weight: 500;
 color: var(--text);
 display: inline-flex;
 align-items: center;
 gap: 6px;
 font-size: 0.9375rem;
}
.product-card:hover .link { color: var(--glow); }

/* Stats */
.stats {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 24px;
}
@media (max-width: 900px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .stats { grid-template-columns: 1fr; } }
.stat {
 border-left: 2px solid var(--primary);
 padding: 10px 0 10px 20px;
 max-width: 100%;
 min-width: 0;
 word-wrap: break-word;
 overflow-wrap: break-word;
}
.stat .num {
 font-family: var(--font-display);
 font-size: clamp(1.5rem, 4vw, 3rem);
 font-weight: 700;
 letter-spacing: 0;
 color: var(--text);
 line-height: 1.1;
 display: block;
 word-wrap: break-word;
 overflow-wrap: break-word;
 max-width: 100%;
}
.stat .label {
 margin-top: 8px;
 font-size: 0.875rem;
 color: var(--text-2);
 letter-spacing: 0.02em;
}

/* Timeline */
.timeline {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 16px;
 position: relative;
}
.timeline::before {
 content: '';
 position: absolute;
 top: 22px; left: 6%; right: 6%;
 height: 1px;
 background: linear-gradient(90deg, transparent, var(--glow) 20%, var(--glow) 80%, transparent);
 opacity: 0.35;
 z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; padding: 0 8px; }
.step .num {
 width: 44px; height: 44px;
 border-radius: 50%;
 background: var(--bg);
 border: 1px solid var(--glow);
 color: var(--glow);
 font-family: var(--font-display);
 font-weight: 600;
 font-size: 0.9375rem;
 display: flex; align-items: center; justify-content: center;
 margin: 0 auto 18px;
 box-shadow: 0 0 18px -4px rgba(0, 229, 255, 0.4);
}
.step h4 { margin-bottom: 6px; }
.step p { font-size: 0.875rem; }
@media (max-width: 800px) {
 .timeline { grid-template-columns: 1fr 1fr; gap: 32px 16px; }
 .timeline::before { display: none; }
}

/* Testimonials */
.testimonial {
 background: var(--surface);
 border: 1px solid var(--border);
 border-left: 2px solid var(--glow);
 border-radius: var(--radius);
 padding: 26px;
}
.testimonial blockquote {
 font-size: 1.0625rem;
 line-height: 1.55;
 color: var(--text);
 margin-bottom: 16px;
 font-family: var(--font-display);
 font-weight: 400;
 letter-spacing: 0;
}
.testimonial cite {
 font-style: normal;
 font-size: 0.875rem;
 color: var(--text-2);
}
.testimonial cite strong { color: var(--text); display: block; font-weight: 600; }

/* CTA section */
.cta-final {
 background:
 radial-gradient(800px 400px at 20% 0%, rgba(0, 102, 255, 0.18), transparent 60%),
 radial-gradient(600px 300px at 85% 100%, rgba(0, 229, 255, 0.12), transparent 60%),
 var(--surface-2);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 padding: 64px 48px;
 text-align: center;
}
.cta-final h2 { margin-bottom: 14px; }
.cta-final p { max-width: 560px; margin: 0 auto 28px; font-size: 1.0625rem; }
.cta-form {
 display: flex;
 gap: 8px;
 max-width: 520px;
 margin: 0 auto;
 flex-wrap: wrap;
}
.cta-form input {
 flex: 1;
 min-width: 220px;
 padding: 13px 16px;
 background: var(--bg);
 border: 1px solid var(--border);
 color: var(--text);
 border-radius: var(--radius);
 font-size: 0.9375rem;
}
.cta-form input:focus { outline: none; border-color: var(--glow); box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.15); }
@media (max-width: 600px) { .cta-final { padding: 48px 24px; } }

/* Footer */
.site-footer {
 border-top: 1px solid var(--border);
 padding: 64px 0 32px;
 background: var(--bg-1);
}
.footer-grid {
 display: grid;
 grid-template-columns: 2fr 1fr 1fr 1fr;
 gap: 40px;
 margin-bottom: 48px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h5 {
 font-family: var(--font-display);
 font-size: 0.8125rem;
 letter-spacing: 0.14em;
 text-transform: uppercase;
 color: var(--text-2);
 margin-bottom: 16px;
 font-weight: 600;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: var(--text); font-size: 0.9375rem; }
.footer-col a:hover { color: var(--glow); }
.footer-about p { font-size: 0.9375rem; max-width: 360px; margin: 12px 0 16px; }
.footer-about .logo { margin-bottom: 14px; }
.footer-bottom {
 padding-top: 24px;
 border-top: 1px solid var(--border);
 display: flex;
 justify-content: space-between;
 flex-wrap: wrap;
 gap: 12px;
 font-size: 0.8125rem;
 color: var(--text-3);
}

/* Robot page product section */
.robot-row {
 display: grid;
 grid-template-columns: 1.15fr 1fr;
 gap: 56px;
 align-items: center;
 padding: 72px 0;
 border-bottom: 1px solid var(--border);
}
.robot-row:nth-child(even) { direction: rtl; }
.robot-row:nth-child(even) > * { direction: ltr; }
.robot-row .image {
 background: radial-gradient(ellipse at center, rgba(0, 229, 255, 0.08), transparent 70%), var(--bg);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 aspect-ratio: 4/3;
 overflow: hidden;
}
.robot-row .image img { width: 100%; height: 100%; object-fit: cover; }
.robot-row h2 { margin-bottom: 6px; }
.robot-row .price {
 font-family: var(--font-display);
 font-size: 1.25rem;
 color: var(--glow);
 font-weight: 600;
 margin: 12px 0 24px;
}
.specs {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 12px;
 margin: 24px 0;
}
.spec {
 border: 1px solid var(--border);
 border-radius: var(--radius);
 padding: 12px 14px;
 background: rgba(17, 24, 39, 0.4);
}
.spec-label {
 font-family: var(--font-display);
 font-size: 0.7rem;
 letter-spacing: 0.12em;
 text-transform: uppercase;
 color: var(--text-3);
 margin-bottom: 4px;
}
.spec-value { font-weight: 600; color: var(--text); font-size: 0.95rem; }

.use-cases { margin: 20px 0 24px; }
.use-cases li {
 position: relative;
 padding: 6px 0 6px 22px;
 color: var(--text-2);
 font-size: 0.9375rem;
}
.use-cases li::before {
 content: '';
 position: absolute;
 left: 0; top: 13px;
 width: 10px; height: 1px;
 background: var(--glow);
 box-shadow: 0 0 6px var(--glow);
}

.row-cta { display: flex; gap: 10px; flex-wrap: wrap; }

@media (max-width: 900px) {
 .robot-row, .robot-row:nth-child(even) { direction: ltr; grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
 .specs { grid-template-columns: 1fr; }
}

/* Page header (interior pages) */
.page-header {
 padding: 120px 0 60px;
 border-bottom: 1px solid var(--border);
 position: relative;
 overflow: hidden;
}
.page-header::before {
 content: '';
 position: absolute;
 inset: 0;
 background:
 radial-gradient(600px 260px at 15% 10%, rgba(0, 102, 255, 0.18), transparent 60%),
 radial-gradient(500px 300px at 95% 90%, rgba(0, 229, 255, 0.1), transparent 60%);
 pointer-events: none;
}
.page-header .container { position: relative; }
.page-header h1 { max-width: 860px; margin-bottom: 16px; }
.page-header p { font-size: 1.125rem; max-width: 720px; }

/* private assessment */
.roi-wrap {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 32px;
}
@media (max-width: 900px) { .roi-wrap { grid-template-columns: 1fr; } }
.roi-form {
 background: var(--surface);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 padding: 32px;
}
.field { margin-bottom: 22px; }
.field label {
 display: block;
 font-family: var(--font-display);
 font-size: 0.8125rem;
 letter-spacing: 0.1em;
 text-transform: uppercase;
 color: var(--text-2);
 font-weight: 500;
 margin-bottom: 10px;
}
.field input[type="number"], .field select, .field input[type="text"], .field input[type="email"], .field input[type="tel"], .field textarea {
 width: 100%;
 padding: 12px 14px;
 background: var(--bg);
 border: 1px solid var(--border);
 color: var(--text);
 border-radius: var(--radius);
 font-size: 0.9375rem;
 font-family: inherit;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
 outline: none;
 border-color: var(--glow);
 box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.12);
}
.field .value-display {
 font-family: var(--font-display);
 font-weight: 600;
 color: var(--glow);
 font-size: 1rem;
 margin-left: 6px;
}
.field label { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: 8px; }
.field label > span:first-child { flex: 1; min-width: 0; }
.field-check .check-label {
 display: flex;
 align-items: center;
 gap: 10px;
 cursor: pointer;
 font-size: 0.9375rem;
 color: var(--text-2);
 text-transform: none;
 letter-spacing: 0;
 font-family: inherit;
 font-weight: 400;
 line-height: 1.4;
}
.field-check .check-label input { width: 18px; height: 18px; accent-color: var(--glow); flex-shrink: 0; }
.roi-note { font-size: 0.8125rem; color: var(--text-3); margin-top: 20px; line-height: 1.5; }
input[type="range"] {
 width: 100%;
 -webkit-appearance: none;
 appearance: none;
 height: 4px;
 background: var(--border);
 border-radius: 2px;
 outline: none;
}
input[type="range"]::-webkit-slider-thumb {
 -webkit-appearance: none;
 width: 18px; height: 18px;
 background: var(--glow);
 border-radius: 50%;
 cursor: pointer;
 box-shadow: 0 0 10px var(--glow);
}
input[type="range"]::-moz-range-thumb {
 width: 18px; height: 18px;
 background: var(--glow);
 border-radius: 50%;
 cursor: pointer;
 border: none;
 box-shadow: 0 0 10px var(--glow);
}

.roi-results {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 14px;
 align-content: start;
}
@media (max-width: 520px) { .roi-results { grid-template-columns: 1fr; } }
.result-card {
 background: var(--surface);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 padding: 20px 22px;
 min-width: 0;
 display: flex;
 flex-direction: column;
 gap: 6px;
 transition: border-color .2s ease;
}
.result-card[hidden] { display: none; }
.result-card:hover { border-color: var(--border-hover); }
.result-card .rc-lbl {
 font-family: var(--font-display);
 font-size: 0.7rem;
 letter-spacing: 0.14em;
 text-transform: uppercase;
 color: var(--text-3);
 font-weight: 500;
}
.result-card .rc-val {
 font-family: var(--font-display);
 font-size: clamp(1.5rem, 3vw, 2rem);
 font-weight: 700;
 color: var(--text);
 letter-spacing: 0;
 line-height: 1.1;
 word-wrap: break-word;
 overflow-wrap: break-word;
}
.result-card .rc-sub {
 font-size: 0.8125rem;
 color: var(--text-3);
 line-height: 1.4;
}
.result-card-danger { border-color: rgba(255, 100, 100, 0.22); background: linear-gradient(180deg, rgba(255, 100, 100, 0.05), var(--surface)); }
.result-card-danger .rc-val { color: #FFA48B; }
.result-card-ok { border-color: rgba(80, 230, 170, 0.2); background: linear-gradient(180deg, rgba(80, 230, 170, 0.04), var(--surface)); }
.result-card-ok .rc-val { color: #7FE7C2; }
.result-card-hero {
 grid-column: 1 / -1;
 background: linear-gradient(135deg, rgba(0, 212, 212, 0.1), rgba(0, 102, 255, 0.08));
 border-color: var(--glow);
 box-shadow: 0 0 32px -8px rgba(0, 229, 255, 0.25);
}
.result-card-hero .rc-val {
 color: var(--glow);
 font-size: clamp(2rem, 5vw, 3.2rem);
 text-shadow: 0 0 18px rgba(0, 229, 255, 0.35);
}
.result-card-lease {
 grid-column: 1 / -1;
 border-color: rgba(0, 102, 255, 0.35);
 background: linear-gradient(180deg, rgba(0, 102, 255, 0.06), var(--surface));
}

/* Assessment CTA row */
.roi-cta-row {
 display: flex;
 flex-wrap: wrap;
 gap: 12px;
 margin-top: 32px;
 justify-content: flex-start;
}
.roi-cta-row .btn { flex: 1 1 240px; justify-content: center; }

/* Assessment trust block */
.roi-trust {
 margin-top: 28px;
 padding: 24px;
 background: rgba(17, 24, 39, 0.4);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 display: flex;
 flex-direction: column;
 gap: 10px;
}
.roi-trust p { font-size: 0.875rem; color: var(--text-2); margin: 0; line-height: 1.55; }
.roi-trust .roi-disclaimer { color: var(--text-3); font-size: 0.8125rem; }
.roi-trust .roi-contact a { color: var(--glow); font-weight: 600; }

/* Print-only assessment summary */
.roi-print-only { display: none; }
@media print {
 @page { size: letter; margin: 16mm 14mm; }
 body { background: #fff !important; color: #000 !important; }
 .site-header, .site-footer, #emma-chat-btn, #emma-chat-panel, .lang-switcher, .mobile-toggle, .roi-cta-row, .roi-trust, .roi-note, #roi-app, .hero-bg, .page-header, .section:not(.roi-print-only) { display: none !important; }
 .roi-print-only { display: block !important; color: #000; font-family: 'Inter', system-ui, sans-serif; }
 .roi-print-only .rp-header { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 2px solid #000; padding-bottom: 10px; margin-bottom: 18px; }
 .roi-print-only .rp-brand { font-family: 'Space Grotesk', sans-serif; font-size: 22pt; font-weight: 700; }
 .roi-print-only .rp-tag { font-size: 10pt; color: #444; }
 .roi-print-only .rp-title { font-family: 'Space Grotesk', sans-serif; font-size: 16pt; margin-bottom: 14pt; color: #000; }
 .roi-print-only .rp-table { width: 100%; border-collapse: collapse; font-size: 11pt; }
 .roi-print-only .rp-table td { padding: 8px 10px; border-bottom: 1px solid #ddd; }
 .roi-print-only .rp-table td:first-child { color: #444; font-weight: 500; width: 55%; }
 .roi-print-only .rp-table td:last-child { text-align: right; font-weight: 600; color: #000; }
 .roi-print-only .rp-table .rp-sep td { border-top: 2px solid #000; padding-top: 14px; }
 .roi-print-only .rp-table .rp-hi td { background: #F6FDFE; font-size: 13pt; font-weight: 700; color: #006880; }
 .roi-print-only .rp-foot { margin-top: 18pt; font-size: 10pt; color: #000; text-align: center; }
 .roi-print-only .rp-disclaim { margin-top: 10pt; font-size: 8.5pt; color: #666; text-align: center; font-style: italic; }
}

/* Contact */
.contact-grid {
 display: grid;
 grid-template-columns: 1.2fr 1fr;
 gap: 48px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.info-card {
 background: var(--surface);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 padding: 24px;
 margin-bottom: 16px;
}
.info-card h4 { margin-bottom: 6px; color: var(--glow); font-size: 0.9375rem; letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--font-display); }
.info-card p { color: var(--text); font-size: 1rem; margin-bottom: 4px; }
.info-card .sub { color: var(--text-2); font-size: 0.875rem; }

.form-success {
 padding: 18px;
 background: rgba(0, 229, 255, 0.08);
 border: 1px solid var(--glow);
 border-radius: var(--radius);
 color: var(--glow);
 display: none;
 margin-top: 16px;
 font-size: 0.9375rem;
}
.form-success.show { display: block; }

/* Utilities */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

.bg-surface { background: var(--bg-1); }
.bg-surface-2 { background: var(--surface); }

.glow-box {
 position: relative;
}
.glow-box::after {
 content: '';
 position: absolute;
 inset: -1px;
 border-radius: inherit;
 padding: 1px;
 background: linear-gradient(135deg, rgba(0, 102, 255, 0.4), rgba(0, 229, 255, 0.2) 50%, transparent);
 -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
 -webkit-mask-composite: xor;
 mask-composite: exclude;
 pointer-events: none;
}

.link-glow {
 color: var(--glow);
 font-weight: 500;
 display: inline-flex;
 align-items: center;
 gap: 6px;
}

/* Breadcrumb / simple text link row */
.back-link {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 color: var(--text-2);
 font-size: 0.875rem;
 margin-bottom: 16px;
 font-family: var(--font-display);
}
.back-link:hover { color: var(--glow); }

/* Tiles for robots overview */
.category-tile {
 display: block;
 background: var(--surface);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 overflow: hidden;
 transition: all .3s ease;
}
.category-tile:hover { border-color: var(--glow); transform: translateY(-4px); }
.category-tile .img { aspect-ratio: 16/10; overflow: hidden; }
.category-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.category-tile:hover img { transform: scale(1.04); }
.category-tile .content { padding: 24px; }
.category-tile .kicker { font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--glow); margin-bottom: 8px; }
.category-tile .content h3 { margin-bottom: 8px; }
.category-tile .content p { font-size: 0.9375rem; margin-bottom: 14px; }
.category-tile .models {
 display: flex;
 flex-wrap: wrap;
 gap: 6px;
 margin-top: 12px;
}
.category-tile .models span {
 font-size: 0.75rem;
 padding: 4px 10px;
 border: 1px solid var(--border);
 border-radius: 100px;
 color: var(--text-2);
 font-family: var(--font-display);
}

/* Solutions grid cards */
.solution-card {
 background: var(--surface);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 overflow: hidden;
 transition: all .3s ease;
}
.solution-card .img { aspect-ratio: 4/3; overflow: hidden; }
.solution-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.solution-card:hover img { transform: scale(1.05); }
.solution-card:hover { border-color: var(--glow); }
.solution-card .content { padding: 22px; }
.solution-card h3 { margin-bottom: 8px; }
.solution-card p { font-size: 0.9375rem; margin-bottom: 12px; }
.solution-card ul { display: flex; flex-wrap: wrap; gap: 6px; }
.solution-card ul li {
 font-size: 0.75rem;
 padding: 3px 10px;
 border: 1px solid var(--border);
 border-radius: 100px;
 color: var(--text-2);
 font-family: var(--font-display);
}

/* Map placeholder */
.map-embed {
 width: 100%;
 height: 360px;
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 background: var(--surface);
}

/* Feature row (advantages alternating) */
.feature-row {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 48px;
 align-items: center;
 padding: 48px 0;
}
@media (max-width: 900px) { .feature-row { grid-template-columns: 1fr; } }
.feature-row h3 { font-size: 1.75rem; margin-bottom: 14px; }
.feature-row p { margin-bottom: 16px; font-size: 1rem; line-height: 1.65; }

/* Scroll bar aesthetic */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #23314d; }

/* ============ IMPROVEMENTS 2026 ============ */

/* Trust metrics band (after hero) */
.trust-metrics {
 padding: 56px 0;
 background: linear-gradient(180deg, rgba(0, 102, 255, 0.04), transparent);
 border-top: 1px solid var(--border);
 border-bottom: 1px solid var(--border);
}
.trust-metrics-grid {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 24px;
}
@media (max-width: 900px) { .trust-metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
.tm-card {
 position: relative;
 padding: 28px 24px;
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 background: rgba(17, 24, 39, 0.4);
 transition: border-color .2s ease, transform .2s ease;
}
.tm-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.tm-icon {
 width: 36px; height: 36px;
 color: var(--glow);
 margin-bottom: 16px;
}
.tm-icon svg { width: 100%; height: 100%; }
.tm-num {
 font-family: var(--font-display);
 font-size: 2.25rem;
 font-weight: 700;
 line-height: 1;
 color: var(--text);
 margin-bottom: 8px;
 letter-spacing: 0;
}
.tm-num .tm-unit {
 font-size: 1rem;
 font-weight: 500;
 color: var(--text-2);
 letter-spacing: 0;
}
.tm-label {
 font-size: 0.875rem;
 color: var(--text-2);
 line-height: 1.4;
}

/* Price list in category tiles (index page) */
.price-list {
 display: flex;
 flex-direction: column;
 gap: 8px;
 margin-top: 14px;
 padding-top: 14px;
 border-top: 1px solid var(--border);
}
.price-list li {
 display: flex;
 justify-content: space-between;
 align-items: baseline;
 font-size: 0.9375rem;
 gap: 12px;
}
.pl-model {
 font-family: var(--font-display);
 font-weight: 600;
 color: var(--text);
 letter-spacing: 0.02em;
}
.pl-price {
 font-family: var(--font-display);
 color: var(--glow);
 font-weight: 600;
 font-size: 0.875rem;
 text-align: right;
}

/* Benefit-first headline on robot cards */
.robot-row .benefit {
 font-size: 1.125rem;
 line-height: 1.45;
 color: var(--text);
 margin: 6px 0 10px;
 font-weight: 500;
 letter-spacing: 0;
}
@media (max-width: 600px) { .robot-row .benefit { font-size: 1rem; } }

/* Testimonial brand tag */
.testimonial .t-brand {
 display: inline-block;
 font-family: var(--font-display);
 font-size: 0.75rem;
 letter-spacing: 0.16em;
 text-transform: uppercase;
 color: var(--glow);
 padding: 4px 10px;
 border: 1px solid rgba(0, 229, 255, 0.3);
 border-radius: 999px;
 margin-bottom: 14px;
}

/* Illinois Q2 2026 badge */
.illinois-badge {
 margin: 48px auto 0;
 max-width: fit-content;
 display: flex;
 align-items: center;
 gap: 12px;
 padding: 14px 22px;
 border: 1px solid rgba(0, 229, 255, 0.3);
 border-radius: 999px;
 background: rgba(0, 229, 255, 0.05);
 font-family: var(--font-display);
 font-size: 0.9375rem;
 color: var(--text);
 letter-spacing: 0.01em;
}
.illinois-badge .dot {
 width: 8px; height: 8px;
 border-radius: 50%;
 background: var(--glow);
 box-shadow: 0 0 12px var(--glow);
 animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
 0%, 100% { opacity: 1; }
 50% { opacity: 0.4; }
}

/* Demo cycle (5 steps) */
.cycle-steps {
 display: grid;
 grid-template-columns: repeat(5, 1fr);
 gap: 16px;
 margin: 48px 0 32px;
 position: relative;
 list-style: none;
 padding: 0;
}
@media (max-width: 1100px) { .cycle-steps { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .cycle-steps { grid-template-columns: 1fr 1fr; } }
.cycle-step {
 position: relative;
 padding: 28px 20px;
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 background: rgba(17, 24, 39, 0.4);
 transition: border-color .25s ease, transform .25s ease;
}
.cycle-step:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.cs-num {
 font-family: var(--font-display);
 font-size: 0.75rem;
 letter-spacing: 0.16em;
 color: var(--glow);
 font-weight: 600;
 margin-bottom: 12px;
}
.cs-icon {
 width: 42px; height: 42px;
 color: var(--text);
 margin-bottom: 18px;
}
.cs-icon svg { width: 100%; height: 100%; }
.cycle-step h4 {
 font-size: 1rem;
 margin-bottom: 6px;
 letter-spacing: 0;
}
.cycle-step p {
 font-size: 0.875rem;
 color: var(--text-2);
 line-height: 1.45;
}
.cycle-cta {
 display: flex;
 justify-content: center;
 margin-top: 32px;
}

/* Location cards (Lake County) */
.location-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 20px;
 margin-top: 40px;
}
@media (max-width: 900px) { .location-grid { grid-template-columns: 1fr; } }
.loc-card {
 padding: 28px;
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 background: rgba(17, 24, 39, 0.4);
 transition: border-color .2s ease;
}
.loc-card:hover { border-color: var(--border-hover); }
.loc-icon {
 width: 32px; height: 32px;
 color: var(--glow);
 margin-bottom: 16px;
}
.loc-icon svg { width: 100%; height: 100%; }
.loc-label {
 font-family: var(--font-display);
 font-size: 0.75rem;
 letter-spacing: 0.14em;
 text-transform: uppercase;
 color: var(--text-3);
 margin-bottom: 10px;
}
.loc-addr {
 font-size: 1.0625rem;
 color: var(--text);
 line-height: 1.55;
 font-weight: 500;
}
.loc-note {
 font-size: 0.875rem;
 color: var(--text-2);
 font-weight: 400;
}

/* ============ ROBOT MEDIA 2026 ============ */
.robot-media {
 display: flex;
 flex-direction: column;
 gap: 1rem;
 position: sticky;
 top: 100px;
}
@media (max-width: 900px) {
 .robot-media { position: static; }
}
.robot-media img {
 width: 100%;
 height: auto;
 border-radius: 12px;
 background: linear-gradient(135deg, rgba(0,102,255,0.08), rgba(0,229,255,0.04));
 border: 1px solid rgba(0,229,255,0.15);
 display: block;
}
.robot-video {
 position: relative;
 aspect-ratio: 16 / 9;
 border-radius: 12px;
 overflow: hidden;
 border: 1px solid rgba(0,229,255,0.15);
 background: #000;
}
.robot-video iframe,
.robot-video video {
 position: absolute;
 inset: 0;
 width: 100%;
 height: 100%;
 border: 0;
}

/* Model card images in index/catalog */
.model-card-image,
.product-card .card-image {
 width: 100%;
 aspect-ratio: 16 / 10;
 object-fit: contain;
 background: linear-gradient(135deg, #0a0a0a, #141822);
 border-radius: 8px;
 padding: 1rem;
 margin-bottom: 1rem;
}

/* ============ ROBOT GALLERY ============ */
.robot-gallery {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 0.75rem;
 margin-top: 1rem;
}
.robot-gallery figure {
 margin: 0;
 background: #0a0a0a;
 border: 1px solid rgba(0,229,255,0.12);
 border-radius: 8px;
 overflow: hidden;
 display: flex;
 flex-direction: column;
}
.robot-gallery figure img {
 width: 100%;
 aspect-ratio: 4 / 3;
 object-fit: cover;
 display: block;
}
.robot-gallery figcaption {
 font-size: 0.78rem;
 line-height: 1.35;
 color: rgba(255,255,255,0.7);
 padding: 0.5rem 0.65rem;
 border-top: 1px solid rgba(0,229,255,0.08);
}

/* ---- Header phone link ---- */
.header-phone {
 display: inline-flex;
 align-items: center;
 gap: 6px;
 padding: 8px 10px;
 color: var(--text-2);
 text-decoration: none;
 font-size: 0.875rem;
 font-weight: 500;
 border-radius: var(--radius);
 transition: color 0.2s, background 0.2s;
}
.header-phone:hover { color: var(--glow); background: rgba(0,229,255,0.06); }
.header-phone svg { stroke: currentColor; flex-shrink: 0; width: 16px; height: 16px; }
.header-phone .phone-icon { width: 16px; height: 16px; }
@media (max-width: 900px) {
 .header-phone span { display: none; }
 .header-phone { padding: 8px; }
}

/* ---- Form error state (complement to .form-success) ---- */
.form-error {
 display: none;
 margin-top: 14px;
 padding: 12px 16px;
 background: rgba(255, 80, 80, 0.08);
 border: 1px solid rgba(255, 80, 80, 0.25);
 color: #ff9999;
 border-radius: var(--radius);
 font-size: 0.9rem;
}
.form-error.show { display: block; }
form button[type="submit"]:disabled {
 opacity: 0.6;
 cursor: wait;
}

/* Assessment scenarios */
#roi-scenarios .solution-card .content { padding: 24px 22px 20px; }
#roi-scenarios .solution-card h3 { margin: 4px 0 14px; font-size: 1.25rem; }
.roi-scenario-list {
 display: flex !important;
 flex-direction: column;
 gap: 0;
 padding: 0;
 margin: 0;
 list-style: none;
}
.roi-scenario-list li {
 display: flex;
 justify-content: space-between;
 align-items: baseline;
 gap: 12px;
 padding: 10px 0;
 border: none !important;
 border-bottom: 1px solid var(--border) !important;
 border-radius: 0 !important;
 font-size: 0.875rem !important;
 font-family: inherit !important;
 color: var(--text) !important;
}
.roi-scenario-list li:last-child { border-bottom: none !important; }
.roi-scenario-list .k {
 color: var(--text-2);
 font-size: 0.8125rem;
 font-family: var(--font-display);
 text-transform: uppercase;
 letter-spacing: 0.04em;
 flex-shrink: 0;
}
.roi-scenario-list .v {
 text-align: right;
 font-weight: 500;
}
.roi-scenario-list .v.accent {
 color: var(--glow);
 font-weight: 700;
 font-size: 1rem;
 text-shadow: 0 0 14px rgba(0, 229, 255, 0.35);
}
.roi-scenarios-cta {
 max-width: 720px;
 margin: 48px auto 0;
 text-align: center;
 padding: 32px 24px;
 background: var(--surface);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
}
.roi-scenarios-cta p {
 font-size: 1.0625rem;
 color: var(--text);
 margin-bottom: 20px;
 line-height: 1.6;
}
@media (max-width: 720px) {
 .roi-scenario-list li {
 flex-direction: column;
 gap: 2px;
 align-items: flex-start;
 }
 .roi-scenario-list .v { text-align: left; }
 .roi-scenarios-cta { margin-top: 32px; padding: 24px 18px; }
}

/* ===== Cookie banner ===== */
.cookie-banner {
 position: fixed;
 left: 16px;
 right: 16px;
 bottom: 16px;
 z-index: 9000;
 background: rgba(15, 17, 21, 0.97);
 backdrop-filter: blur(12px);
 -webkit-backdrop-filter: blur(12px);
 border: 1px solid rgba(255, 255, 255, 0.08);
 border-radius: 14px;
 padding: 16px 20px;
 box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55);
 opacity: 0;
 transform: translateY(20px);
 transition: opacity 220ms ease, transform 220ms ease;
 max-width: 920px;
 margin: 0 auto;
}
.cookie-banner.show { opacity: 1; transform: translateY(0); }
.cookie-banner-inner {
 display: flex;
 align-items: center;
 gap: 16px;
 flex-wrap: wrap;
 justify-content: space-between;
}
.cookie-banner p {
 margin: 0;
 font-size: 0.875rem;
 color: var(--text-2);
 line-height: 1.55;
 flex: 1 1 320px;
}
.cookie-banner p a {
 color: var(--text);
 text-decoration: underline;
 text-decoration-color: rgba(255, 255, 255, 0.3);
}
.cookie-banner-actions {
 display: flex;
 gap: 8px;
 flex-shrink: 0;
}
@media (max-width: 600px) {
 .cookie-banner { left: 8px; right: 8px; bottom: 8px; padding: 10px 12px; max-height: 40vh; overflow-y: auto; }
 .cookie-banner p { font-size: 0.8125rem; line-height: 1.45; flex: 1 1 100%; margin-bottom: 6px; }
 .cookie-banner-inner { flex-direction: column; align-items: stretch; gap: 8px; }
 .cookie-banner-actions { justify-content: flex-end; flex-wrap: nowrap; }
 .cookie-banner-actions .btn { padding: 7px 12px; font-size: 0.8125rem; }
 /* Hide Emma chat button while cookie banner is visible (prevent stacking) */
 body:has(.cookie-banner.show) #emma-chat-btn { display: none; }
}

/* ===== Legal pages (privacy, terms) ===== */
.legal-article {
 color: var(--text-2);
 line-height: 1.72;
 font-size: 1rem;
}
.legal-article h2 {
 margin-top: 36px;
 margin-bottom: 14px;
 font-size: 1.375rem;
 color: var(--text);
 letter-spacing: 0;
}
.legal-article h2:first-child { margin-top: 0; }
.legal-article p { margin-bottom: 16px; }
.legal-article ul {
 margin: 0 0 16px 0;
 padding-left: 22px;
}
.legal-article ul li {
 margin-bottom: 8px;
}
.legal-article a {
 color: var(--text);
 text-decoration: underline;
 text-decoration-color: rgba(255, 255, 255, 0.3);
}
.legal-article strong { color: var(--text); }

/* ===== Form consent block ===== */
.form-consent {
 display: flex;
 align-items: flex-start;
 gap: 10px;
 margin-top: 6px;
 font-size: 0.8125rem;
 color: var(--text-3);
 line-height: 1.5;
}
.form-consent input[type="checkbox"] {
 margin-top: 3px;
 flex-shrink: 0;
 accent-color: var(--glow, #00e5ff);
 width: 16px;
 height: 16px;
}
.form-consent label {
 margin: 0;
 cursor: pointer;
}
.form-consent a {
 color: var(--text-2);
 text-decoration: underline;
 text-decoration-color: rgba(255, 255, 255, 0.3);
}
.form-error {
 display: none;
 margin-top: 12px;
 padding: 10px 14px;
 border-radius: 8px;
 background: rgba(255, 77, 77, 0.12);
 border: 1px solid rgba(255, 77, 77, 0.35);
 color: #ff8080;
 font-size: 0.875rem;
}
.form-error.show { display: block; }

/* ===== Compatibility grid (accessories): fix lazy images by giving containers explicit size ===== */
.compat-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
 gap: 1rem;
 margin-top: 1.5rem;
 margin-bottom: 1.5rem;
}
.compat-item {
 display: flex;
 flex-direction: column;
 align-items: center;
 text-align: center;
 gap: 0.5rem;
 padding: 1rem;
 background: #0a0a0a;
 border: 1px solid rgba(0,229,255,0.12);
 border-radius: 8px;
 transition: border-color 0.2s, transform 0.2s;
}
.compat-item:hover {
 border-color: rgba(0,229,255,0.35);
 transform: translateY(-2px);
}
.compat-item img {
 width: 100%;
 max-width: 160px;
 aspect-ratio: 4 / 3;
 object-fit: contain;
 display: block;
}
.compat-item strong {
 color: #00e5ff;
 font-size: 0.95rem;
 font-weight: 600;
}
.compat-item span {
 font-size: 0.78rem;
 line-height: 1.35;
 color: rgba(255,255,255,0.7);
}
@media (max-width: 600px) {
 .compat-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
 .compat-item { padding: 0.6rem; }
}

/* ===== Robot gallery min-height: ensures IntersectionObserver triggers on below-fold lazy images ===== */
.robot-gallery figure {
 min-height: 180px;
}

/* ===== Mobile horizontal scroll guard (audit #4 found 13px overflow at 375px) ===== */
html, body {
 overflow-x: hidden;
 max-width: 100vw;
}
img, video, iframe, table, pre {
 max-width: 100%;
 height: auto;
}
p, li, td, code, pre {
 overflow-wrap: break-word;
 word-break: break-word;
}

/* ============ R6 FIX 2026-04-26: header / tm-card / cookie overflow ============ */

/* P0: Narrow desktop header (901-1200): compact phone (icon-only) + compact CTA */
@media (min-width: 901px) and (max-width: 1200px) {
 .site-header .container { gap: 16px; }
 .nav { gap: 18px; }
 .header-right { gap: 10px; }
 .header-phone span { display: none; }
 .header-phone { padding: 8px; }
 .header-right > .btn {
 padding: 0.55rem 0.9rem;
 font-size: 0.8125rem;
 white-space: nowrap;
 }
}

/* Hard guard: nothing inside header may exceed its parent */
.site-header *, .header-right * { max-width: 100%; }

/* P1: Trust metrics (testimonials) on mobile: prevent overflow from long .tm-num strings */
.tm-card { min-width: 0; }
.tm-num, .tm-unit, .tm-label {
 max-width: 100%;
 overflow-wrap: anywhere;
 word-break: break-word;
}
@media (max-width: 600px) {
 .trust-metrics-grid { gap: 12px; }
 .tm-card { padding: 20px 16px; }
 .tm-num { font-size: 1.625rem; line-height: 1.15; }
 .tm-num .tm-unit { font-size: 0.8125rem; }
 .tm-icon { width: 28px; height: 28px; margin-bottom: 12px; }
}
@media (max-width: 380px) {
 .trust-metrics-grid { grid-template-columns: 1fr; }
}

/* P1: Cookie banner: ensure Accept/Decline fit on narrow phones */
@media (max-width: 480px) {
 .cookie-banner-actions { width: 100%; gap: 8px; }
 .cookie-banner-actions .btn { flex: 1 1 0; min-width: 0; }
}

/* === Trust / Authorization block === */
.auth-block { padding: 72px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: linear-gradient(180deg, rgba(0,229,255,0.025) 0%, rgba(0,0,0,0) 100%); }
.auth-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 32px; align-items: stretch; }
@media (max-width: 900px) { .auth-grid { grid-template-columns: 1fr; gap: 20px; } }
.auth-card { background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.auth-card--primary { display: flex; flex-direction: column; gap: 16px; border-color: rgba(0, 229, 255, 0.18); }
.auth-card--primary p { color: var(--text-2); max-width: 64ch; }
.auth-card--primary p strong { color: var(--text); font-weight: 600; }
.auth-card--side { background: var(--surface); }
.auth-card--side h3 { font-size: 1.0625rem; letter-spacing: 0.05em; color: var(--glow); text-transform: uppercase; margin-bottom: 16px; }
.auth-badge { width: 56px; height: 56px; border-radius: 50%; background: rgba(0, 229, 255, 0.1); display: flex; align-items: center; justify-content: center; color: var(--glow); margin-bottom: 4px; }
.auth-cert-placeholder { margin-top: 12px; padding: 4px; border: 1px dashed rgba(0, 229, 255, 0.4); border-radius: var(--radius-lg); background: rgba(0, 229, 255, 0.03); }
.auth-cert-frame { padding: 28px 24px; text-align: center; display: flex; flex-direction: column; gap: 8px; align-items: center; color: var(--text-2); }
.auth-cert-frame svg { color: var(--glow); opacity: 0.7; }
.auth-cert-label { font-family: var(--font-display); font-weight: 600; color: var(--text); margin-top: 4px; letter-spacing: 0.04em; }
.auth-cert-sub { font-size: 0.875rem; color: var(--text-3); max-width: 42ch; }
.auth-legal-list { display: flex; flex-direction: column; gap: 12px; margin: 0 0 16px; }
.auth-legal-list li { display: flex; flex-wrap: wrap; gap: 8px; padding-bottom: 12px; border-bottom: 1px solid var(--border); align-items: baseline; }
.auth-legal-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.auth-legal-list .al-k { color: var(--text-3); font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.1em; min-width: 110px; font-family: var(--font-display); }
.auth-legal-list .al-v { color: var(--text); font-size: 0.9375rem; flex: 1; min-width: 0; word-break: break-word; }
.auth-legal-list .al-v a { color: var(--glow); }
.auth-legal-foot { font-size: 0.8125rem; color: var(--text-3); border-top: 1px solid var(--border); padding-top: 14px; line-height: 1.55; }

/* === Assessment methodology details === */
.roi-method { margin-top: 12px; padding: 14px 16px; border: 1px solid var(--border); border-radius: var(--radius); background: rgba(255,255,255,0.015); }
.roi-method summary { cursor: pointer; font-family: var(--font-display); font-weight: 500; color: var(--glow); font-size: 0.875rem; letter-spacing: 0.04em; padding: 4px 0; }
.roi-method[open] summary { margin-bottom: 12px; }
.roi-method-list { display: flex; flex-direction: column; gap: 8px; padding-left: 18px; margin: 8px 0 12px; }
.roi-method-list li { color: var(--text-2); font-size: 0.875rem; line-height: 1.55; list-style: disc; }
.roi-method-list li strong { color: var(--text); font-weight: 600; }
.roi-method-foot { font-size: 0.8125rem; color: var(--text-3); padding-top: 10px; border-top: 1px solid var(--border); }

/* === Use-case section === */
.usecase-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.usecase-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; gap: 14px; transition: transform .22s ease, border-color .22s ease; }
.usecase-card:hover { transform: translateY(-3px); border-color: var(--border-hover); }
.usecase-card .uc-tag { font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--glow); }
.usecase-card h3 { font-size: 1.25rem; }
.usecase-card .uc-row { padding: 10px 0; border-top: 1px solid var(--border); display: flex; gap: 10px; align-items: flex-start; }
.usecase-card .uc-row:first-of-type { border-top: 0; }
.usecase-card .uc-k { font-family: var(--font-display); font-size: 0.6875rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-3); min-width: 70px; padding-top: 2px; }
.usecase-card .uc-v { color: var(--text-2); font-size: 0.9375rem; line-height: 1.5; flex: 1; }
.usecase-card .uc-v strong { color: var(--text); font-weight: 600; }
.usecase-card .uc-cta { margin-top: auto; padding-top: 8px; }

/* === FAQ section === */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 880px; }
.faq-item { background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 0; transition: border-color .2s ease; }
.faq-item[open] { border-color: rgba(0, 229, 255, 0.22); }
.faq-item summary { padding: 18px 22px; cursor: pointer; font-family: var(--font-display); font-weight: 600; color: var(--text); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--glow); font-size: 1.25rem; line-height: 1; transition: transform .22s ease; }
.faq-item[open] summary::after { content: "-"; }
.faq-item p { padding: 0 22px 20px; color: var(--text-2); line-height: 1.6; max-width: 75ch; }
.faq-item p a { color: var(--glow); }

/* === Assessment scenario disclaimer === */
.roi-scenario-disclaimer { margin-top: 28px; padding: 18px 22px; background: rgba(0, 229, 255, 0.04); border: 1px solid rgba(0, 229, 255, 0.18); border-radius: var(--radius-lg); font-size: 0.875rem; color: var(--text-2); line-height: 1.6; }
.roi-scenario-disclaimer strong { color: var(--text); }

/* === Brand validation reframe === */
.brand-validation-note { font-size: 0.8125rem; color: var(--text-3); text-align: center; margin-top: 22px; max-width: 720px; margin-left: auto; margin-right: auto; line-height: 1.55; }
.brand-validation-note strong { color: var(--text-2); }

/* === Why-trust grid extra === */
.why-trust-band { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 28px; }
.why-trust-item { padding: 18px 20px; background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius); display: flex; gap: 12px; align-items: flex-start; }
.why-trust-item .wt-icon { color: var(--glow); flex-shrink: 0; margin-top: 2px; }
.why-trust-item .wt-k { font-family: var(--font-display); font-weight: 600; color: var(--text); font-size: 0.9375rem; margin-bottom: 4px; }
.why-trust-item .wt-v { font-size: 0.8125rem; color: var(--text-2); line-height: 1.5; }

/* === Contact form expanded === */
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .field--row { grid-template-columns: 1fr; } }
.form-success-state { display: none; padding: 32px; text-align: center; background: rgba(0, 229, 255, 0.04); border: 1px solid rgba(0, 229, 255, 0.22); border-radius: var(--radius-lg); }
.form-success-state.is-active { display: block; }
.form-success-state h3 { color: var(--glow); margin-bottom: 12px; }
.form-success-state p { color: var(--text-2); max-width: 48ch; margin: 0 auto 12px; }


/* === Pain-based problem/solution section === */
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.pain-card { background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; display: flex; flex-direction: column; gap: 12px; transition: transform .22s ease, border-color .22s ease, background .22s ease; }
.pain-card:hover { transform: translateY(-3px); border-color: rgba(0, 229, 255, 0.35); background: rgba(0, 229, 255, 0.025); }
.pain-card .pain-icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(0, 229, 255, 0.08); display: flex; align-items: center; justify-content: center; color: var(--glow); margin-bottom: 4px; }
.pain-card .pain-tag { font-family: var(--font-display); font-size: 0.6875rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--glow); }
.pain-card h3 { font-size: 1.25rem; line-height: 1.2; }
.pain-card .pain-problem, .pain-card .pain-solution { color: var(--text-2); font-size: 0.9375rem; line-height: 1.55; }
.pain-card .pain-problem strong { color: var(--text); font-weight: 600; display: inline-block; margin-right: 4px; }
.pain-card .pain-solution { padding-top: 10px; border-top: 1px solid var(--border); }
.pain-card .pain-solution strong { color: var(--glow); font-weight: 600; display: inline-block; margin-right: 4px; }
.pain-card .btn { margin-top: auto; align-self: flex-start; }

/* === Hero meta tagline === */
.hero-meta { font-size: 0.8125rem; color: var(--text-3); margin-top: 18px; letter-spacing: 0.02em; max-width: 56ch; }

/* === Services / Deployment 8-step flow === */
.deploy-flow { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; counter-reset: step; }
.deploy-step { background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px 20px; display: flex; flex-direction: column; gap: 8px; position: relative; counter-increment: step; }
.deploy-step::before { content: counter(step, decimal-leading-zero); position: absolute; top: 16px; right: 18px; font-family: var(--font-display); font-size: 0.875rem; color: rgba(0, 229, 255, 0.6); letter-spacing: 0.1em; }
.deploy-step h4 { font-family: var(--font-display); font-size: 1rem; color: var(--text); padding-right: 36px; }
.deploy-step p { color: var(--text-2); font-size: 0.875rem; line-height: 1.5; }
.deploy-step .ds-meta { font-size: 0.75rem; color: var(--text-3); padding-top: 8px; border-top: 1px solid var(--border); margin-top: auto; font-family: var(--font-display); letter-spacing: 0.05em; }
.deploy-promises { margin-top: 32px; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }
.deploy-promise { display: flex; gap: 10px; align-items: flex-start; padding: 12px 14px; background: rgba(0, 229, 255, 0.04); border: 1px solid rgba(0, 229, 255, 0.18); border-radius: var(--radius); font-size: 0.8125rem; color: var(--text-2); }
.deploy-promise svg { color: var(--glow); flex-shrink: 0; margin-top: 2px; }


/* === Automation Assessment page === */
.aa-hero { padding: 88px 0 56px; border-bottom: 1px solid var(--border); background: linear-gradient(180deg, rgba(0,229,255,0.025) 0%, rgba(0,0,0,0) 100%); }
.aa-hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .aa-hero-grid { grid-template-columns: 1fr; gap: 32px; } }
.aa-hero-content h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); margin-bottom: 18px; }
.aa-hero-content .lead { font-size: 1.0625rem; line-height: 1.6; max-width: 56ch; margin-bottom: 14px; }
.aa-hero-content .aa-trust { font-size: 0.875rem; color: var(--text-3); margin-bottom: 24px; max-width: 56ch; }
.aa-hero-card { background: var(--bg-1); border: 1px solid rgba(0, 229, 255, 0.18); border-radius: var(--radius-lg); padding: 28px; position: sticky; top: calc(var(--header-h) + 16px); }
.aa-hero-card h3 { font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--glow); margin-bottom: 18px; font-family: var(--font-display); }
.aa-card-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 18px; }
.aa-card-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); font-size: 0.9375rem; line-height: 1.5; }
.aa-card-list li svg { color: var(--glow); flex-shrink: 0; margin-top: 2px; }
.aa-card-foot { font-size: 0.8125rem; color: var(--text-3); padding-top: 14px; border-top: 1px solid var(--border); line-height: 1.5; }

.aa-step-num { font-family: var(--font-display); font-size: 0.875rem; letter-spacing: 0.1em; color: var(--glow); margin-bottom: 12px; }

/* Assessment form */
.aa-form { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 22px; }
.aa-step { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px 24px 28px; background: var(--bg-1); margin: 0; }
.aa-step legend { font-family: var(--font-display); font-size: 1.0625rem; font-weight: 600; color: var(--text); padding: 0 12px; display: flex; align-items: center; gap: 12px; }
.aa-step-tag { display: inline-block; padding: 3px 10px; background: rgba(0, 229, 255, 0.1); color: var(--glow); border-radius: 999px; font-size: 0.6875rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; }
.aa-step-intro { color: var(--text-2); font-size: 0.9375rem; margin: 6px 0 18px; line-height: 1.55; }
.aa-step .field { margin-top: 16px; }
.aa-step .field--row { margin-top: 16px; }
.aa-step .field label { display: block; font-family: var(--font-display); font-size: 0.875rem; font-weight: 500; color: var(--text); margin-bottom: 6px; }
.aa-step .field .req { color: var(--glow); font-weight: 700; }
.aa-step .field .opt { color: var(--text-3); font-weight: 400; font-size: 0.8125rem; }
.aa-step .field input[type="text"], .aa-step .field input[type="email"], .aa-step .field input[type="tel"], .aa-step .field input[type="url"], .aa-step .field select, .aa-step .field textarea {
 width: 100%; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text); padding: 11px 14px; font-size: 0.9375rem; transition: border-color .2s ease;
}
.aa-step .field input:focus, .aa-step .field select:focus, .aa-step .field textarea:focus { outline: none; border-color: var(--glow); }
.aa-step .field textarea { resize: vertical; min-height: 90px; font-family: var(--font-body); }
.aa-step .field-help { display: block; font-size: 0.8125rem; color: var(--text-3); margin-top: 6px; line-height: 1.5; }

/* File input styling */
.aa-step .field input[type="file"] {
 width: 100%; background: var(--bg); border: 1px dashed rgba(0, 229, 255, 0.4); border-radius: var(--radius); padding: 14px; font-size: 0.875rem; color: var(--text-2); cursor: pointer; transition: border-color .2s ease, background .2s ease;
}
.aa-step .field input[type="file"]:hover { border-color: var(--glow); background: rgba(0, 229, 255, 0.03); }
.aa-step .field input[type="file"]::file-selector-button { background: var(--glow); color: var(--bg); border: 0; padding: 8px 14px; border-radius: var(--radius); font-family: var(--font-display); font-size: 0.8125rem; font-weight: 600; margin-right: 12px; cursor: pointer; }
.aa-step .field input[type="file"]::file-selector-button:hover { background: var(--primary-hover); }

.aa-form .form-consent { margin-top: 18px; padding: 14px; background: rgba(0, 229, 255, 0.04); border: 1px solid rgba(0, 229, 255, 0.18); border-radius: var(--radius); display: flex; gap: 10px; align-items: flex-start; }
.aa-form .form-consent input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--glow); }
.aa-form .form-consent label { font-size: 0.875rem; color: var(--text-2); line-height: 1.5; cursor: pointer; }

.aa-form button[type="submit"] { margin-top: 22px; align-self: flex-start; }
.aa-form-note { font-size: 0.8125rem; color: var(--text-3); margin-top: 14px; line-height: 1.5; }


/* === Experiments / marketing log page === */
.exp-card { background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px 28px; margin-bottom: 18px; }
.exp-head { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.exp-head h3 { margin: 0; font-size: 1.25rem; flex: 1; min-width: 200px; }
.exp-tag { display: inline-block; padding: 4px 10px; background: rgba(0, 229, 255, 0.1); color: var(--glow); border-radius: 999px; font-family: var(--font-display); font-size: 0.6875rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; }
.exp-status { display: inline-block; padding: 3px 10px; border-radius: 999px; font-family: var(--font-display); font-size: 0.6875rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; }
.exp-status.status-draft { background: rgba(148, 163, 184, 0.18); color: var(--text-2); border: 1px solid rgba(148, 163, 184, 0.25); }
.exp-status.status-testing { background: rgba(255, 193, 7, 0.12); color: #ffc107; border: 1px solid rgba(255, 193, 7, 0.3); }
.exp-status.status-winner { background: rgba(34, 197, 94, 0.12); color: #22c55e; border: 1px solid rgba(34, 197, 94, 0.3); }
.exp-status.status-paused { background: rgba(100, 116, 139, 0.18); color: var(--text-3); border: 1px solid rgba(100, 116, 139, 0.25); }
.exp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 12px; margin: 0; }
.exp-grid > div { padding: 10px 0; border-top: 1px solid rgba(255,255,255,0.04); }
.exp-grid > div:nth-child(-n+3) { border-top: 0; padding-top: 0; }
.exp-grid dt { font-family: var(--font-display); font-size: 0.6875rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); margin-bottom: 4px; }
.exp-grid dd { color: var(--text); font-size: 0.9375rem; line-height: 1.5; margin: 0; }
.exp-grid dd code { background: rgba(0,229,255,0.06); padding: 1px 6px; border-radius: 3px; font-size: 0.85em; color: var(--glow); word-break: break-all; }
.exp-legend { display: flex; flex-direction: column; gap: 10px; padding-left: 0; }
.exp-legend li { display: flex; gap: 12px; align-items: baseline; flex-wrap: wrap; color: var(--text-2); font-size: 0.9375rem; line-height: 1.5; }
.exp-pre { background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 22px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.875rem; color: var(--text-2); line-height: 1.65; overflow-x: auto; white-space: pre; margin: 14px 0; }

/* Campaign card data-status visual hint (subtle) */
.pain-card[data-status="testing"] { position: relative; }


/* === Hero CTA hierarchy: dominant primary + ghost + tertiary text link === */
.btn--lg { padding: 14px 22px; font-size: 1rem; font-weight: 600; }
.hero-tertiary { margin-top: 10px; font-size: 0.9375rem; }
.hero-tertiary a { color: var(--glow); border-bottom: 1px solid rgba(0,229,255,0.3); padding-bottom: 1px; transition: border-color .2s ease; }
.hero-tertiary a:hover { border-color: var(--glow); }

/* Mobile: drop hero meta line + give Book Demo full width to dominate first screen */
@media (max-width: 600px) {
 .hero-meta { display: none; }
 .hero-cta .btn--primary.btn--lg { width: 100%; justify-content: center; }
 .hero-cta .btn--ghost { width: 100%; justify-content: center; }
 .hero-cta { flex-direction: column; gap: 10px; }
}


/* === Quick inquiry (contact page top) === */
.quick-inquiry { background: var(--bg-1); border: 1px solid rgba(0, 229, 255, 0.18); border-radius: var(--radius-lg); padding: 28px; }
.quick-inquiry-head { margin-bottom: 18px; }
.quick-inquiry-head h2 { font-size: 1.5rem; margin-bottom: 6px; }
.quick-inquiry-head p { color: var(--text-2); font-size: 0.9375rem; line-height: 1.5; max-width: 56ch; }
.quick-form .field { margin-top: 14px; }
.quick-form label { font-family: var(--font-display); font-size: 0.875rem; font-weight: 500; color: var(--text); margin-bottom: 6px; display: block; }
.quick-form label .req { color: var(--glow); font-weight: 700; }
.quick-form input, .quick-form textarea { width: 100%; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text); padding: 11px 14px; font-size: 0.9375rem; transition: border-color .2s ease; }
.quick-form input:focus, .quick-form textarea:focus { outline: none; border-color: var(--glow); }
.quick-form textarea { resize: vertical; min-height: 76px; font-family: var(--font-body); }
.quick-form button { margin-top: 14px; }
.quick-form .form-consent { margin-top: 14px; padding: 10px 12px; background: rgba(0, 229, 255, 0.04); border: 1px solid rgba(0, 229, 255, 0.18); border-radius: var(--radius); display: flex; gap: 8px; align-items: flex-start; }
.quick-form .form-consent input { width: auto; margin-top: 3px; flex-shrink: 0; accent-color: var(--glow); }
.quick-form .form-consent label { font-size: 0.8125rem; color: var(--text-2); margin-bottom: 0; line-height: 1.45; }
.quick-form-foot { margin-top: 12px; font-size: 0.8125rem; color: var(--text-3); }
.quick-form-foot a { color: var(--glow); }

/* === AA turnaround badge === */
.aa-turnaround { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; margin: 12px 0 24px; background: rgba(0, 229, 255, 0.06); border: 1px solid rgba(0, 229, 255, 0.22); border-radius: 999px; font-size: 0.875rem; color: var(--text); }
.aa-turnaround strong { color: var(--glow); font-weight: 600; }
.aa-turnaround-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--glow); box-shadow: 0 0 8px var(--glow); flex-shrink: 0; }


/* === Mobile call FAB === */
#mobile-call-fab { display: none; }
@media (max-width: 768px) {
 #mobile-call-fab {
 display: inline-flex; align-items: center; gap: 6px;
 position: fixed; left: 16px; bottom: 16px;
 z-index: 9998;
 background: var(--primary); color: #fff; text-decoration: none;
 font-family: var(--font-display); font-weight: 600; font-size: 0.8125rem;
 padding: 10px 14px; border-radius: 999px;
 box-shadow: 0 8px 22px rgba(0, 102, 255, 0.35), 0 0 0 1px rgba(0, 229, 255, 0.45);
 transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
 }
 #mobile-call-fab:hover, #mobile-call-fab:focus {
 transform: translateY(-2px); background: var(--primary-hover); color: #fff;
 box-shadow: 0 12px 28px rgba(0, 102, 255, 0.45), 0 0 0 1px var(--glow);
 }
 #mobile-call-fab .fab-icon { width: 16px; height: 16px; flex-shrink: 0; }
 /* When cookie banner is open it covers bottom: push FAB above it */
 body:not(.cookie-consent-resolved) #mobile-call-fab { bottom: 96px; }
}
@media (max-width: 380px) {
 #mobile-call-fab .fab-text { display: none; }
 #mobile-call-fab { padding: 12px; }
}

/* === Proposal CTA inside product cards === */
.proposal-link {
 display: inline-flex; align-items: center; gap: 6px;
 color: var(--glow); font-weight: 600; text-decoration: none;
 border-bottom: 1px dashed rgba(0, 229, 255, 0.4);
 transition: color .15s ease, border-color .15s ease;
}
.proposal-link:hover, .proposal-link:focus { color: #fff; border-bottom-color: var(--glow); }
.proposal-link::after { content: ' \2192'; font-weight: 400; opacity: 0.85; }

/* === GBP mention block === */
.gbp-mention {
 margin-top: 16px;
 padding: 12px 16px;
 background: rgba(0, 102, 255, 0.06);
 border: 1px solid rgba(0, 102, 255, 0.2);
 border-radius: var(--radius);
 font-size: 0.875rem;
 color: var(--text-2);
}
.gbp-mention p { margin: 0; }
.gbp-mention a { color: var(--glow); font-weight: 600; }
@media (max-width: 600px) {
 .gbp-mention { padding: 10px 12px; font-size: 0.8125rem; }
 .google-reviews { padding: 28px 0; }
 .reviews-placeholder { padding: 18px; font-size: 0.8125rem; }
}

/* === Trust strip in footer === */
.trust-strip {
 display: flex; flex-wrap: wrap; gap: 8px 18px;
 padding: 14px 0; margin: 18px 0 4px;
 border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
 font-size: 0.8125rem; color: var(--text-2);
 justify-content: center; text-align: center;
}
.trust-strip span { white-space: nowrap; }
.trust-strip span::before { content: '\2713'; color: var(--glow); margin-right: 6px; font-weight: 700; }
@media (max-width: 600px) {
 .trust-strip { gap: 6px 14px; font-size: 0.75rem; padding: 10px 0; }
}

/* === Social links in footer === */
.social-links {
 display: flex; gap: 12px; margin-top: 12px;
}
.social-links a {
 display: inline-flex; align-items: center; padding: 6px 12px;
 border: 1px solid var(--border); border-radius: var(--radius);
 font-size: 0.8125rem; color: var(--text-2); text-decoration: none;
 transition: border-color .15s ease, color .15s ease;
}
.social-links a:hover { border-color: var(--glow); color: var(--text); }

/* === Emma proactive tooltip === */
#emma-proactive-tooltip {
 position: fixed; bottom: 100px; right: 18px;
 background: var(--surface); color: var(--text);
 padding: 14px 18px 14px 18px; border-radius: 12px;
 border: 1px solid rgba(0, 229, 255, 0.32);
 box-shadow: 0 12px 32px rgba(0,0,0,.55), 0 0 0 1px rgba(0, 229, 255, 0.2);
 max-width: 290px; font-size: 0.875rem; line-height: 1.45;
 z-index: 9999; cursor: pointer;
 opacity: 0; transform: translateY(8px);
 transition: opacity .25s ease, transform .25s ease;
}
#emma-proactive-tooltip.show { opacity: 1; transform: translateY(0); }
#emma-proactive-tooltip:hover { background: var(--surface-2); }
#emma-proactive-tooltip .pt-close {
 position: absolute; top: 4px; right: 6px;
 background: transparent; border: 0; color: var(--text-3);
 font-size: 16px; line-height: 1; cursor: pointer; padding: 4px;
}
#emma-proactive-tooltip .pt-close:hover { color: var(--text); }
@media (max-width: 768px) {
 #emma-proactive-tooltip { bottom: 158px; right: 12px; left: 12px; max-width: none; }
 body.cookie-consent-resolved #emma-proactive-tooltip { bottom: 96px; }
}

/* === private assessment === */
.roi-calc { background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.roi-calc-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 28px; }
@media (max-width: 900px) { .roi-calc-grid { grid-template-columns: 1fr; } }
.roi-calc .field { margin-top: 16px; }
.roi-calc .field:first-child { margin-top: 0; }
.roi-calc label { font-family: var(--font-display); font-weight: 500; font-size: 0.875rem; display: block; margin-bottom: 6px; color: var(--text); }
.roi-calc input[type=number], .roi-calc select { width: 100%; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text); padding: 11px 14px; font-size: 0.9375rem; }
.roi-calc input[type=number]:focus, .roi-calc select:focus { outline: none; border-color: var(--glow); }
.roi-calc .radio-row { display: flex; flex-wrap: wrap; gap: 8px; }
.roi-calc .radio-row label { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border: 1px solid var(--border); border-radius: var(--radius); cursor: pointer; font-size: 0.875rem; margin-bottom: 0; }
.roi-calc .radio-row input { accent-color: var(--glow); }
.roi-calc .radio-row label:hover { border-color: rgba(0, 229, 255, 0.4); }
.roi-result { background: var(--bg); border: 1px solid rgba(0, 229, 255, 0.32); border-radius: var(--radius-lg); padding: 24px; }
.roi-result-row { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 0; border-bottom: 1px dashed var(--border); }
.roi-result-row:last-of-type { border-bottom: 0; }
.roi-result-row .label { color: var(--text-2); font-size: 0.875rem; }
.roi-result-row .value { font-family: var(--font-display); color: var(--glow); font-weight: 600; font-size: 1.25rem; }
.roi-result .recommend { margin-top: 14px; padding: 12px 14px; background: rgba(0, 229, 255, 0.06); border-radius: var(--radius); font-size: 0.875rem; color: var(--text); }
.roi-result .disclaimer { margin-top: 14px; font-size: 0.8125rem; color: var(--text-3); line-height: 1.5; }
.roi-email-gate { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border); }
.roi-email-gate .field--row { display: flex; gap: 8px; flex-wrap: wrap; }
.roi-email-gate input[type=email] { flex: 1; min-width: 200px; }

/* === Spec sheet gated landing === */
.spec-card { background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; max-width: 560px; margin: 0 auto; }
.spec-card .spec-form { margin-top: 18px; }
.spec-card .spec-form .field { margin-top: 12px; }
.spec-card label { font-family: var(--font-display); font-size: 0.875rem; display: block; margin-bottom: 6px; }
.spec-card input { width: 100%; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text); padding: 11px 14px; font-size: 0.9375rem; }
.spec-card input:focus { outline: none; border-color: var(--glow); }
.spec-card .spec-success { display: none; padding: 14px; margin-top: 14px; background: rgba(0, 229, 255, 0.08); border: 1px solid rgba(0, 229, 255, 0.32); border-radius: var(--radius); color: var(--text); }
.spec-card .spec-success.is-active { display: block; }

/* === Spec sheets index grid === */
.spec-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.spec-grid .spec-tile { display: block; padding: 18px; background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius-lg); color: var(--text); text-decoration: none; transition: border-color .15s ease, transform .15s ease; }
.spec-grid .spec-tile:hover { border-color: var(--glow); transform: translateY(-2px); }
.spec-grid .spec-tile h3 { font-size: 1.1rem; margin-bottom: 4px; }
.spec-grid .spec-tile p { font-size: 0.8125rem; color: var(--text-2); }

/* === Blog === */
.blog-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.blog-card { display: flex; flex-direction: column; padding: 22px; background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius-lg); text-decoration: none; color: var(--text); transition: border-color .15s ease, transform .15s ease; }
.blog-card:hover { border-color: var(--glow); transform: translateY(-2px); }
.blog-card .meta { font-size: 0.75rem; color: var(--text-3); display: flex; gap: 10px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
.blog-card h3 { font-size: 1.125rem; margin-bottom: 8px; line-height: 1.3; }
.blog-card p { font-size: 0.875rem; color: var(--text-2); line-height: 1.5; }

.blog-post .post-meta { display: flex; gap: 12px; flex-wrap: wrap; font-size: 0.8125rem; color: var(--text-3); margin-bottom: 18px; }
.blog-post .article-body { max-width: 760px; margin-top: 24px; }
.blog-post .article-body h2 { font-size: 1.5rem; margin-top: 32px; margin-bottom: 12px; }
.blog-post .article-body h3 { font-size: 1.2rem; margin-top: 22px; margin-bottom: 10px; }
.blog-post .article-body p { font-size: 1rem; line-height: 1.7; color: var(--text); margin-bottom: 14px; }
.blog-post .article-body ul, .blog-post .article-body ol { margin: 0 0 16px 22px; }
.blog-post .article-body ul li, .blog-post .article-body ol li { margin-bottom: 6px; line-height: 1.6; color: var(--text-2); }
.blog-post .article-body blockquote { margin: 16px 0; padding: 12px 18px; border-left: 3px solid var(--glow); background: rgba(0, 229, 255, 0.04); color: var(--text); font-style: italic; }
.blog-post .post-cta { margin-top: 28px; padding: 18px 22px; background: var(--bg-1); border: 1px solid rgba(0, 229, 255, 0.32); border-radius: var(--radius-lg); }

/* === Industry / model pages === */
.breadcrumbs { font-size: 0.8125rem; color: var(--text-3); margin-bottom: 14px; }
.breadcrumbs a { color: var(--text-2); border-bottom: 1px dashed var(--border); }
.breadcrumbs a:hover { color: var(--glow); }
.breadcrumbs .sep { margin: 0 8px; opacity: 0.5; }
.model-hero { padding: 32px 0; background: linear-gradient(180deg, var(--bg-1), var(--bg)); border-bottom: 1px solid var(--border); }
.model-product-overview { padding-top: 28px; }
.model-product-overview .robot-row {
 padding-top: 18px;
 align-items: start;
}
.model-product-overview .robot-media { top: 88px; }
.model-product-overview .model-product-face {
 position: static;
 min-height: 420px;
 align-items: center;
 justify-content: center;
 padding: 24px;
 background: #f7f9fc;
 border: 1px solid var(--border);
 border-radius: 8px;
}
.model-product-overview .model-product-face img {
 width: auto;
 height: auto;
 max-width: min(520px, 86%);
 max-height: 380px;
 object-fit: contain;
 margin: auto;
 background: transparent;
 border: 0;
 border-radius: 8px;
}
.model-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
@media (max-width: 600px) {
 .model-hero { padding: 24px 0; }
 .model-hero h1 { font-size: clamp(1.65rem, 8vw, 2.2rem); }
 .model-product-overview { padding-top: 18px; }
 .model-product-overview .robot-row { padding-top: 12px; }
 .model-cta-row { flex-direction: column; gap: 10px; }
 .model-cta-row .btn { width: 100%; justify-content: center; }
}

/* === Case studies === */
.cs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-top: 28px; }
.cs-card { padding: 22px; background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.cs-card .cs-industry { font-size: 0.75rem; color: var(--glow); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.cs-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.cs-card .cs-block { margin-top: 12px; }
.cs-card .cs-block strong { color: var(--text); font-family: var(--font-display); display: block; margin-bottom: 4px; font-size: 0.875rem; }
.cs-card .cs-block p { font-size: 0.875rem; color: var(--text-2); line-height: 1.5; }
.cs-card .cs-cta { margin-top: 18px; }
.cs-disclaimer { padding: 14px 18px; background: rgba(0, 102, 255, 0.06); border: 1px solid rgba(0, 102, 255, 0.2); border-radius: var(--radius); font-size: 0.875rem; color: var(--text-2); margin-bottom: 24px; }

/* === Team === */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 24px; }
.team-card { padding: 22px; background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.team-card .team-photo { width: 96px; height: 96px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); margin-bottom: 14px; overflow: hidden; display: flex; align-items: center; justify-content: center; color: var(--text-3); font-size: 0.75rem; }
.team-card .team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.team-card .role { font-size: 0.8125rem; color: var(--text-3); margin-bottom: 10px; }
.team-card p { font-size: 0.875rem; color: var(--text-2); line-height: 1.5; }
.team-card .team-links { margin-top: 12px; font-size: 0.8125rem; }
.team-card .team-links a { color: var(--glow); }

/* === U.S. catalog refresh: Terra-style compact product browsing === */
.page-header {
 padding: 48px 0 34px;
 background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
}
.page-header h1 { font-size: clamp(2rem, 4vw, 3rem); }
.page-header p { max-width: 840px; }

.catalog-compact {
 padding: 34px 0 64px;
 background: #fff;
}
.catalog-compact .container {
 display: grid;
 grid-template-columns: repeat(3, minmax(0, 1fr));
 gap: 18px;
 align-items: stretch;
}
.catalog-toolbar {
 grid-column: 1 / -1;
 display: grid;
 grid-template-columns: minmax(0, 1fr) auto;
 gap: 20px;
 align-items: end;
 padding: 18px;
 border: 1px solid var(--border);
 background: var(--bg-1);
 border-radius: 8px;
 margin-bottom: 6px;
}
.catalog-toolbar h2 {
 font-size: clamp(1.4rem, 2.4vw, 2rem);
 letter-spacing: 0;
}
.catalog-toolbar .eyebrow { margin-bottom: 6px; }
.catalog-filter {
 display: flex;
 flex-wrap: wrap;
 gap: 8px;
 justify-content: flex-end;
 max-width: 520px;
}
.catalog-filter a {
 border: 1px solid var(--border);
 background: #fff;
 color: var(--text);
 padding: 8px 11px;
 border-radius: 4px;
 font-size: 0.875rem;
 font-weight: 600;
}
.catalog-filter a:hover {
 border-color: var(--primary);
 color: var(--primary);
}
.catalog-compact .robot-row,
.catalog-compact .robot-row:nth-child(even) {
 direction: ltr;
 display: flex;
 flex-direction: column;
 gap: 0;
 padding: 0;
 min-height: 100%;
 background: #fff;
 border: 1px solid var(--border);
 border-radius: 8px;
 overflow: hidden;
 box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}
.catalog-compact .robot-media {
 aspect-ratio: 16 / 10;
 min-height: 0;
 background: #f7f9fc;
 border-bottom: 1px solid var(--border);
 padding: 18px;
 display: flex;
 align-items: center;
 justify-content: center;
 position: static;
 flex: none;
}
.catalog-compact .robot-media img,
.catalog-compact .robot-media video {
 width: 100%;
 height: 100%;
 object-fit: contain;
}
.catalog-compact .robot-media img[src*="mt1-hero"] {
 object-fit: cover;
 object-position: center 78%;
}
.catalog-compact .robot-media img[src*="mt1-official-sweep"],
.catalog-compact .robot-media img[src*="mt1vac-hero"] {
 object-fit: cover;
 object-position: center;
}
.catalog-compact .robot-media img[src*="t600-side"],
.catalog-compact .robot-media img[src*="mt1max-specs"],
.catalog-compact .robot-media img[src*="cc1-parameters"],
.catalog-compact .robot-media img[src*="mt1-s13"],
.catalog-compact .robot-media img[src*="t300-parameters"],
.catalog-compact .robot-media img[src*="t600-s13"],
.catalog-compact .robot-media img[src*="t600-product"] {
 width: auto;
 height: auto;
 max-width: 72%;
 max-height: 88%;
 margin: auto;
}
.catalog-compact .robot-media img[src*="mt1-s13"] {
 max-width: 82%;
 max-height: 94%;
}
.catalog-compact .robot-media img[src*="mt1max-specs"] {
 max-width: 82%;
 max-height: 94%;
}
.catalog-compact .robot-media img[src*="cc1-parameters"] {
 max-width: 82%;
 max-height: 94%;
}
.catalog-compact .robot-media img[src*="cc1-front-clean"] {
 object-fit: cover;
 object-position: center;
 width: 100%;
 height: 100%;
}
.catalog-compact .robot-video,
.catalog-compact .robot-gallery {
 display: none;
}
.catalog-compact .robot-row > .reveal:not(.robot-media) {
 padding: 18px;
 display: flex;
 flex-direction: column;
 flex: 1;
}
.catalog-compact .robot-row .eyebrow {
 font-size: 0.68rem;
 letter-spacing: 0.14em;
 margin-bottom: 8px;
}
.catalog-compact .robot-row h2 {
 font-size: 1.25rem;
 letter-spacing: 0;
 margin-bottom: 8px;
}
.catalog-compact .robot-row .benefit {
 font-size: 0.92rem;
 margin-bottom: 10px;
}
.catalog-compact .robot-row .price {
 margin: 0 0 12px;
}
.catalog-compact .specs {
 grid-template-columns: repeat(2, minmax(0, 1fr));
 gap: 8px;
 margin: 10px 0;
}
.catalog-compact .spec {
 padding: 9px;
 border-radius: 6px;
 background: var(--bg-1);
 border: 1px solid var(--border);
}
.catalog-compact .spec-label {
 font-size: 0.62rem;
 color: var(--text-3);
}
.catalog-compact .spec-value {
 font-size: 0.82rem;
 color: var(--text);
}
.catalog-compact .use-cases {
 display: none;
}
.catalog-compact .row-cta {
 margin-top: auto;
 padding-top: 12px;
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 8px;
}
.catalog-compact .row-cta .btn {
 width: 100%;
 justify-content: center;
 padding: 10px 12px;
 font-size: 0.86rem;
}

.acc-hero {
 position: relative;
 overflow: hidden;
 min-height: auto;
 padding: 42px 0 34px;
 background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
 border-bottom: 1px solid var(--border);
}
.acc-hero .container {
 position: relative;
 z-index: 1;
 max-width: 1180px;
 padding-right: min(38vw, 500px);
}
.acc-hero h1 {
 max-width: 700px;
 margin-top: 10px;
 margin-bottom: 12px;
 font-size: clamp(2rem, 4vw, 3.25rem);
}
.acc-hero p {
 max-width: 700px;
 font-size: 1rem;
 line-height: 1.55;
 color: var(--text-2);
}
.acc-hero-bg {
 position: absolute;
 right: max(32px, calc((100vw - 1180px) / 2));
 top: 54px;
 width: min(420px, 31vw);
 height: 210px;
 display: flex;
 align-items: center;
 justify-content: center;
 pointer-events: none;
 opacity: 0.82;
}
.acc-hero-bg img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: center;
 border-radius: 8px;
 filter: drop-shadow(0 22px 38px rgba(14, 42, 82, 0.14));
}
.acc-grid {
 display: grid;
 grid-template-columns: repeat(4, minmax(0, 1fr));
 gap: 16px;
}
.acc-card {
 border-radius: 8px;
 padding: 20px;
}
.compat-grid {
 grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1100px) {
 .catalog-compact .container { grid-template-columns: repeat(2, minmax(0, 1fr)); }
 .acc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
 .acc-hero { padding: 32px 0 28px; }
 .acc-hero .container { padding-right: 24px; }
 .acc-hero-bg { display: none; }
 .catalog-compact .container,
 .acc-grid,
 .compat-grid { grid-template-columns: 1fr; }
 .catalog-toolbar { grid-template-columns: 1fr; align-items: start; }
 .catalog-filter { justify-content: flex-start; }
 .catalog-compact .row-cta { grid-template-columns: 1fr; }
}

/* Compact the long landing-page rhythm so the site behaves more like a catalog. */
.section { padding: 58px 0; }
.section--sm { padding: 42px 0; }
.hero {
 min-height: 68vh;
 padding: 72px 0 48px;
}
.hero h1 {
 font-size: clamp(2.35rem, 5vw, 4.25rem);
 color: #fff;
}
.hero .eyebrow,
.hero .lead,
.hero-meta,
.hero-tertiary a {
 color: rgba(255,255,255,0.9);
}
.hero h1 .line-glow { color: #75E9FF; }
.hero-bg::after {
 background:
 linear-gradient(90deg, rgba(2,6,23,0.82) 0%, rgba(2,6,23,0.58) 46%, rgba(2,6,23,0.18) 100%),
 linear-gradient(180deg, rgba(2,6,23,0.12) 0%, rgba(2,6,23,0.58) 100%);
}
.trust-bar {
 background: var(--bg-1);
}

/* === Google reviews placeholder === */
.google-reviews { padding: 40px 0; }
.google-reviews h2 { text-align: center; margin-bottom: 18px; }
.reviews-placeholder { padding: 26px; background: var(--bg-1); border: 1px dashed var(--border); border-radius: var(--radius-lg); text-align: center; color: var(--text-2); font-size: 0.9375rem; }
.reviews-placeholder a { color: var(--glow); }

/* === Parts catalog: Terra-inspired filters without public pricing === */
.parts-catalog { background: #fff; }
.parts-catalog-head {
 display: grid;
 grid-template-columns: minmax(0, 1fr) auto;
 gap: 24px;
 align-items: end;
 margin-bottom: 28px;
}
.parts-catalog-head p { max-width: 820px; margin-top: 10px; }
.parts-catalog-strip {
 display: flex;
 flex-wrap: wrap;
 gap: 10px;
 margin: 0 0 24px;
}
.parts-catalog-strip span {
 padding: 8px 11px;
 border: 1px solid rgba(0,102,255,0.16);
 border-radius: 999px;
 background: rgba(0,102,255,0.06);
 color: var(--text-2);
 font-size: 0.82rem;
 font-weight: 650;
}
.part-stock[role="link"] {
 cursor: pointer;
 transition: background .18s ease, color .18s ease;
}
.part-stock[role="link"]:hover,
.part-stock[role="link"]:focus-visible {
 background: var(--glow);
 color: #fff;
 outline: none;
}
.parts-catalog-layout {
 display: grid;
 grid-template-columns: 280px minmax(0, 1fr);
 gap: 24px;
 align-items: start;
}
.parts-filter {
 position: sticky;
 top: calc(var(--header-h) + 20px);
 border: 1px solid var(--border);
 border-radius: 8px;
 background: var(--bg-1);
 padding: 18px;
}
.parts-filter-group + .parts-filter-group { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border); }
.parts-filter h3 { font-size: 0.95rem; margin-bottom: 10px; }
.parts-filter-btn {
 width: 100%;
 display: flex;
 justify-content: space-between;
 align-items: center;
 min-height: 38px;
 padding: 8px 10px;
 border: 1px solid transparent;
 border-radius: 6px;
 color: var(--text-2);
 text-align: left;
 font-size: 0.9rem;
}
.parts-filter-btn:hover,
.parts-filter-btn.active { color: var(--text); border-color: rgba(0,102,255,0.22); background: rgba(0,102,255,0.07); }
.parts-results-bar {
 display: flex;
 justify-content: space-between;
 gap: 16px;
 align-items: center;
 min-height: 54px;
 padding: 0 0 16px;
 border-bottom: 1px solid var(--border);
 margin-bottom: 18px;
}
.parts-results-bar strong { font-family: var(--font-display); color: var(--text); }
.parts-results-bar span { color: var(--text-3); font-size: 0.9rem; }
.parts-product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.part-card {
 display: flex;
 flex-direction: column;
 overflow: hidden;
 border: 1px solid var(--border);
 border-radius: 8px;
 background: #fff;
 box-shadow: 0 14px 34px rgba(15,23,42,0.06);
}
.part-card[hidden] { display: none; }
.part-img { display: block; aspect-ratio: 1.18 / 1; background: #f7f8f6; overflow: hidden; border-bottom: 1px solid var(--border); padding: 10px; }
.part-img img { width: 100%; height: 100%; object-fit: contain; transform: scale(1.16); transition: transform 180ms ease; }
.part-card:hover .part-img img { transform: scale(1.2); }
.part-body { display: flex; flex-direction: column; gap: 10px; padding: 16px; flex: 1; }
.part-card-top {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 10px;
}
.part-tag {
 color: var(--glow);
 font-family: var(--font-display);
 font-size: 0.72rem;
 letter-spacing: 0.12em;
 text-transform: uppercase;
}
.part-stock {
 flex: 0 0 auto;
 padding: 4px 7px;
 border-radius: 999px;
 background: #f0f6ff;
 color: #0b63ce;
 font-size: 0.7rem;
 font-weight: 750;
}
.part-body h3 { font-size: 1.05rem; line-height: 1.22; min-height: 2.55em; }
.part-sku {
 display: grid;
 gap: 3px;
 padding: 10px;
 border: 1px solid rgba(15,23,42,0.08);
 border-radius: 8px;
 background: #f9fbff;
}
.part-sku span {
 color: var(--text-3);
 font-size: 0.68rem;
 font-weight: 750;
 letter-spacing: 0.11em;
 text-transform: uppercase;
}
.part-sku strong {
 color: var(--text);
 font-size: 0.86rem;
 overflow-wrap: anywhere;
}
.part-body p { font-size: 0.9rem; line-height: 1.5; }
.part-models { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.part-models span {
 padding: 4px 8px;
 border-radius: 999px;
 background: rgba(0,102,255,0.08);
 color: var(--text-2);
 font-size: 0.74rem;
}
.part-actions {
 display: grid;
 gap: 8px;
 margin-top: 4px;
}
.part-actions .btn { justify-content: center; }
.part-actions span {
 color: var(--text-3);
 font-size: 0.76rem;
 text-align: center;
}
.hero--clean h1 { color: var(--text); }
.hero--clean .eyebrow { color: var(--glow); }
.hero--clean .lead,
.hero--clean .hero-meta { color: var(--text-2); }
.hero--clean .hero-tertiary a { color: var(--glow); }
.hero--clean h1 .line-glow { color: var(--glow); }
.hero--photo h1,
.hero--photo .eyebrow,
.hero--photo .lead,
.hero--photo .hero-meta,
.hero--photo .hero-tertiary a { color: #fff; }
.hero--photo h1 .line-glow { color: #75E9FF; }
.hero--photo .lead { color: rgba(255,255,255,0.9); }
.hero--photo .hero-meta,
.hero--photo .hero-tertiary { color: rgba(255,255,255,0.82); }

/* === Official PUDU materials from Notion audit === */
.official-materials {
 background: #f6f8fb;
 border-top: 1px solid var(--border);
 border-bottom: 1px solid var(--border);
}
.official-head {
 max-width: 840px;
 margin-bottom: 28px;
}
.official-head p {
 margin-top: 10px;
 color: var(--text-2);
}
.official-grid,
.official-proof-grid,
.station-grid {
 display: grid;
 grid-template-columns: repeat(4, minmax(0, 1fr));
 gap: 16px;
}
.official-card,
.official-proof-grid article,
.station-grid article {
 min-height: 100%;
 padding: 18px;
 border: 1px solid rgba(15, 23, 42, 0.11);
 border-radius: 8px;
 background: #fff;
 box-shadow: 0 12px 28px rgba(15, 23, 42, 0.055);
}
.official-card span {
 display: inline-flex;
 margin-bottom: 10px;
 color: var(--glow);
 font-family: var(--font-display);
 font-size: 0.68rem;
 font-weight: 750;
 letter-spacing: 0.12em;
 text-transform: uppercase;
}
.official-card h3,
.station-grid h3 {
 font-size: 1rem;
 line-height: 1.25;
}
.official-card p,
.station-grid p {
 margin-top: 8px;
 color: var(--text-2);
 font-size: 0.9rem;
 line-height: 1.55;
}
.official-card a,
.station-grid a {
 display: inline-flex;
 margin-top: 14px;
 color: var(--glow);
 font-weight: 750;
 text-decoration: none;
}
.official-proof {
 background: #fff;
 border-bottom: 1px solid var(--border);
}
.official-proof-grid {
 grid-template-columns: repeat(3, minmax(0, 1fr));
}
.official-proof-grid strong {
 display: block;
 margin-bottom: 8px;
 color: var(--text);
 font-family: var(--font-display);
 font-size: 1.05rem;
}
.official-proof-grid span {
 color: var(--text-2);
 font-size: 0.92rem;
 line-height: 1.55;
}
.station-support {
 background: #fff;
 border-bottom: 1px solid var(--border);
}
.amr-workflow-accessories {
 background: #f6f8fb;
 border-bottom: 1px solid var(--border);
}
@media (max-width: 1100px) { .parts-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 1100px) {
 .official-grid,
 .station-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
 .parts-catalog-head,
 .parts-catalog-layout { grid-template-columns: 1fr; }
 .parts-filter { position: static; }
 .parts-results-bar { align-items: flex-start; flex-direction: column; }
 .official-proof-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
 .parts-product-grid,
 .official-grid,
 .station-grid { grid-template-columns: 1fr; }
}

/* === Visually hidden (a11y heading order helpers) === */
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
