:root {
  --background: #f9f9f9;
  --surface: #ffffff;
  --surface-alt: #f3f3f3;
  --surface-dark: #0a0a0a;
  --surface-dark-soft: #1a1a1a;
  --text: #1a1c1c;
  --text-muted: #616161;
  --text-inverse: #f1f1f1;
  --border: #e0e0e0;
  --accent: #f5a800;
  --accent-hover: #d48f00;
  --max-width: 1200px;
  --radius: 4px;
  --shadow: 0 16px 40px rgba(10, 10, 10, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--background);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 1000;
  background: var(--accent);
  color: #000;
  padding: 10px 14px;
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--surface-dark);
  color: rgba(255, 255, 255, 0.75);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}

.topbar-inner,
.header-inner,
.footer-bottom,
.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar-inner {
  min-height: 40px;
}

.topbar-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
}

.topbar-phone svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.topbar-link {
  color: var(--accent);
  font-weight: 700;
}

.topbar a {
  color: var(--accent);
}

.site-header {
  position: sticky;
  top: 40px;
  z-index: 29;
  background: rgba(10, 10, 10, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  position: relative;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  display: block;
  width: 158px;
  height: auto;
  max-width: 100%;
}

.brand-suffix {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-cta,
.nav-toggle {
  display: none;
}

.nav-cta {
  display: none !important;
}

.nav-toggle {
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.nav a[aria-current="page"],
.nav a:hover,
.site-footer a:hover,
.text-link:hover {
  color: var(--accent);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 2px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #000;
}

.button-primary:hover {
  background: var(--accent-hover);
}

.header-cta {
  display: inline-flex;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
}

.button-secondary:hover {
  background: #fff;
  color: #000;
}

.button-secondary-dark {
  border: 1px solid var(--text);
  color: var(--text);
}

.button-secondary-dark:hover {
  background: var(--text);
  color: #fff;
}

.hero {
  padding: 84px 0;
}

.hero-home {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(10, 10, 10, 0.96) 0%, rgba(10, 10, 10, 0.88) 56%, rgba(10, 10, 10, 0.78) 100%),
    radial-gradient(circle at top right, rgba(245, 168, 0, 0.18), transparent 34%);
  color: #fff;
}

.hero-home::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 10, 10, 0.78) 0%, rgba(10, 10, 10, 0.58) 48%, rgba(10, 10, 10, 0.76) 100%);
  z-index: 1;
}

.hero-background {
  position: absolute;
  inset: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3px) grayscale(0.12);
  transform: scale(1.03);
  opacity: 0.72;
}

.hero-grid,
.two-col,
.page-hero-grid,
.section-split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.8fr);
  gap: 32px;
}

.hero-home-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.75fr);
  gap: 28px;
  align-items: end;
  position: relative;
  z-index: 2;
}

.hero-copy h1,
.section-heading h2,
.cta-panel h2,
.cta-banner h2,
.hero-panel h2 {
  margin: 0 0 18px;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(2.3rem, 5vw, 4.25rem);
  max-width: 11ch;
}

.hero-lead,
.section-heading p,
.cta-panel p,
.hero-panel p,
.cta-banner p,
.card p,
.industry-card p,
.timeline-item p,
.footer-copy,
.footer-note {
  color: rgba(255, 255, 255, 0.82);
}

.hero-home .hero-lead {
  max-width: 60ch;
  font-size: 1.1rem;
}

.hero-actions,
.stack-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 0;
}

.hero-points,
.check-list,
.site-footer ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points li,
.tag,
.filter-chip,
.spec-pill {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  padding: 8px 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}

.hero-panel,
.cta-panel,
.card-highlight {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 28px;
  border-radius: var(--radius);
}

.hero-panel-logo {
  width: 132px;
  height: auto;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 3px;
  padding: 8px 10px;
}

.page-hero-visual,
.section-media {
  align-self: stretch;
}

.page-hero-visual img,
.section-media img,
.card-media {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  object-fit: cover;
}

.page-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-visual img {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  padding: 18px;
}

.section-media img {
  min-height: 260px;
  box-shadow: var(--shadow);
}

.card-media {
  margin-bottom: 18px;
  max-height: 210px;
}

.panel-kicker,
.eyebrow,
.card-meta,
.timeline-item span,
.breadcrumb,
.filter-group-title,
.product-ref,
.contact-label {
  margin: 0 0 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow,
.panel-kicker,
.card-meta,
.timeline-item span,
.contact-label {
  color: var(--accent);
}

.spec-list {
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.spec-list div {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
}

.spec-list dt {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.spec-list dd {
  margin: 4px 0 0;
  font-weight: 700;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--surface-alt);
}

.section-dark {
  background: var(--surface-dark-soft);
  color: #fff;
}

.section-dark .section-heading p,
.section-dark .industry-card p,
.section-dark .cta-banner p {
  color: rgba(255, 255, 255, 0.74);
}

.section-heading {
  max-width: 72ch;
  margin-bottom: 32px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: inherit;
}

.section p,
.card p,
.cta-panel p,
.timeline-item p,
.site-footer li,
.contact-card p {
  color: var(--text-muted);
}

.section-dark .card p,
.section-dark .cta-panel p {
  color: rgba(255, 255, 255, 0.74);
}

.card-grid,
.industry-grid,
.timeline-grid,
.tag-grid,
.contact-grid,
.product-grid,
.cross-links {
  display: grid;
  gap: 20px;
}

.card-grid-3,
.industry-grid,
.timeline-grid,
.tag-grid,
.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid-home-categories {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.industry-card,
.timeline-item,
.product-card,
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: var(--radius);
}

.contact-card-primary {
  margin-bottom: 24px;
}

.card,
.product-card {
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover,
.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.card h3,
.industry-card h3,
.timeline-item h3,
.product-card h3,
.contact-card h2 {
  margin: 0 0 10px;
  line-height: 1.2;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  font-weight: 700;
}

.tag-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.tag {
  color: var(--text);
  border: 1px solid var(--border);
  background: var(--surface);
}

.industry-card {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: #111;
  border-color: rgba(255, 255, 255, 0.1);
}

.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.34) 0%, rgba(10, 10, 10, 0.82) 62%, rgba(10, 10, 10, 0.96) 100%);
}

.industry-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) grayscale(0.24);
}

.industry-card h3 {
  position: relative;
  z-index: 1;
  color: #fff;
  margin-bottom: 8px;
}

.industry-card p {
  position: relative;
  z-index: 1;
}

.timeline-item {
  border-left: 3px solid var(--accent);
}

.cta-banner {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.locations {
  margin: 22px 0 0;
  font-family: "JetBrains Mono", monospace;
}

.site-footer {
  background: var(--surface-dark);
  color: #fff;
  padding: 56px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}

.brand-footer {
  margin-bottom: 18px;
}

.brand-footer .brand-logo {
  width: 170px;
}

.brand-footer .brand-suffix {
  font-size: 13px;
}

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.site-footer li,
.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer ul {
  display: grid;
  gap: 10px;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
}

.page-hero {
  padding: 56px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #171717 100%);
  color: #fff;
}

.breadcrumb {
  color: rgba(255, 255, 255, 0.72);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
}

.breadcrumb span[aria-current="page"] {
  color: #fff;
}

.page-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 4.6vw, 3.75rem);
  line-height: 1.08;
}

.spec-summary {
  background: #efefef;
  border-bottom: 1px solid var(--border);
}

.spec-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 20px;
  padding: 14px 0;
}

.spec-summary-item {
  display: grid;
  gap: 4px;
}

.spec-summary-item strong {
  color: var(--text);
  font-size: 13px;
  line-height: 1.2;
}

.spec-summary-item span {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.45;
}

.page-hero p {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.84);
}

.hero-badges,
.filter-chips,
.spec-pills,
.cross-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges {
  margin-top: 20px;
}

.status-badge,
.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 168, 0, 0.12);
  border: 1px solid rgba(245, 168, 0, 0.25);
  color: #fff;
  padding: 8px 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}

.feature-badge-link {
  text-decoration: none;
}

.spec-pill {
  color: var(--text);
  border: 1px solid var(--border);
  background: var(--surface);
}

.product-grid {
  margin-top: 28px;
}

.product-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-grid-1 {
  grid-template-columns: 1fr;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-card-featured {
  border-color: rgba(245, 168, 0, 0.38);
  box-shadow: 0 18px 42px rgba(10, 10, 10, 0.08);
}

.product-card-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 220px;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #f3f3f3 100%);
}

.product-card-placeholder {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px dashed #b9b9b9;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #fafafa 0%, #f0f0f0 100%);
  text-align: center;
  padding: 20px;
}

.product-card-placeholder strong {
  font-size: 0.95rem;
}

.product-card-placeholder span {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-card-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.product-ref {
  margin: 0;
}

.product-badge {
  align-self: start;
  padding: 6px 8px;
  background: #121212;
  color: #fff;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
}

.product-badge-accent {
  background: var(--accent);
  color: #000;
}

.product-card h3 {
  font-size: 1.2rem;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.catalog-cta {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.btn-ver-gama,
.btn-demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 2px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: 0.2s ease;
}

.btn-ver-gama {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent-hover);
}

.btn-ver-gama:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.btn-demo {
  background: var(--accent);
  color: #000;
}

.btn-demo:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.seo-copy {
  max-width: 78ch;
}

.seo-copy h2,
.seo-copy h3 {
  margin-top: 0;
}

.seo-copy p + p {
  margin-top: 16px;
}

.section-subheading {
  margin-top: 40px;
}

.section-subheading .card-meta {
  margin-bottom: 0;
}

.cross-links {
  margin-top: 20px;
}

.cross-links a {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 10px 12px;
  border-radius: var(--radius);
  font-weight: 600;
}

.contact-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: start;
}

.contact-column {
  display: grid;
  gap: 24px;
}

.contact-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.contact-actions,
.contact-points {
  display: grid;
  gap: 14px;
}

.contact-actions {
  margin-top: 26px;
}

.contact-points {
  margin-top: 20px;
}

.contact-note {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

.office-block + .office-block {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.office-block strong {
  display: block;
  margin-bottom: 10px;
}

.contact-note-inline {
  margin-top: 18px;
  color: var(--text-muted);
}

.legal-content {
  max-width: 88ch;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.legal-content h2,
.legal-content h3,
.legal-content h4 {
  margin-top: 0;
}

.legal-content h3,
.legal-content h4 {
  margin-bottom: 12px;
}

.legal-content section + section {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
}

.legal-content ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-table-wrap {
  margin-top: 18px;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
}

.legal-table th,
.legal-table td {
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
}

.legal-table th {
  font-size: 13px;
  color: var(--text);
  background: var(--surface-alt);
}

.legal-table tbody th {
  width: 32%;
}

.legal-table tr:last-child th,
.legal-table tr:last-child td {
  border-bottom: 0;
}

.legal-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.legal-inline-links a {
  color: var(--accent);
}

.map-embed {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 320px;
  border: 0;
}

.contact-form {
  margin-top: 22px;
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  gap: 16px;
}

.form-row-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label,
.checkbox-field span {
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  font: inherit;
}

.form-field textarea {
  min-height: 132px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245, 168, 0, 0.14);
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-muted);
}

.checkbox-field input {
  margin-top: 4px;
}

.field-error {
  min-height: 18px;
  margin: 0;
  color: #b42318;
  font-size: 0.92rem;
}

.form-submit {
  width: 100%;
}

.form-status {
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 0.96rem;
}

.form-status-success {
  border: 1px solid #b7e4c7;
  background: #eefbf3;
  color: #1f6b42;
}

.form-status-error {
  border: 1px solid #f3b3b3;
  background: #fff2f2;
  color: #9f1c1c;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.feature-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(245, 168, 0, 0.12);
  color: #000;
  font-weight: 800;
  font-family: "JetBrains Mono", monospace;
}

.feature-card h3 {
  margin: 0 0 10px;
  line-height: 1.2;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
}

.compatibility-panel {
  margin-top: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.compatibility-panel h3 {
  margin-top: 0;
  margin-bottom: 18px;
}

.compatibility-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.compatibility-list li {
  color: var(--text-muted);
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.comparison-table thead th {
  background: #111;
  color: #fff;
  font-size: 0.95rem;
}

.comparison-table tbody th {
  width: 24%;
  background: #f5f5f5;
  color: var(--text);
  font-size: 0.95rem;
}

.comparison-table tbody td {
  color: var(--text-muted);
}

.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-cta {
  margin-top: 24px;
  border-color: var(--border);
  background: var(--surface);
}

.faq-section {
  padding: 0 0 72px;
}

.faq-shell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.faq-section h2 {
  margin: 0 0 10px;
}

.faq-intro {
  margin: 0 0 22px;
  color: var(--text-muted);
  max-width: 72ch;
}

.faq-list {
  display: grid;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: 0;
  padding: 20px 0;
  color: var(--text);
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  color: var(--accent);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"]::after {
  content: "-";
}

.faq-answer {
  padding: 0 0 20px;
}

.faq-answer p {
  margin: 0;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .hero-grid,
  .two-col,
  .page-hero-grid,
  .section-split,
  .spec-summary-grid,
  .footer-grid,
  .contact-grid,
  .contact-page-grid,
  .card-grid-home-categories,
  .card-grid-3,
  .industry-grid,
  .timeline-grid,
  .product-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-shell {
    padding: 22px;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 56px;
  }

  .topbar-inner,
  .header-inner,
  .footer-bottom,
  .cta-banner,
  .footer-grid,
  .contact-grid,
  .contact-page-grid,
  .card-grid-home-categories,
  .card-grid-3,
  .industry-grid,
  .timeline-grid,
  .product-grid,
  .feature-grid,
  .hero-grid,
  .two-col,
  .page-hero-grid,
  .section-split,
  .hero-home-inner,
  .spec-summary-grid,
  .tag-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .topbar-inner,
  .header-inner,
  .footer-bottom,
  .cta-banner {
    display: flex;
    align-items: flex-start;
  }

  .cta-banner {
    flex-direction: column;
    gap: 24px;
  }

  .cta-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .cta-actions .button {
    width: 100%;
  }

  .topbar {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 40;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .topbar-inner {
    min-height: 56px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }

  .topbar-status {
    display: none;
  }

  .topbar-meta {
    width: 100%;
    justify-content: space-between;
    gap: 14px;
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .header-inner {
    min-height: 72px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  .brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .brand-suffix {
    display: block;
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    font-size: 15px;
  }

  .nav-cta {
    display: inline-flex !important;
    width: 100%;
    margin-top: 6px;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .hero,
  .section {
    padding: 56px 0;
  }

  .hero-copy h1,
  .page-hero h1 {
    max-width: none;
  }
}
