/* ===== SELF-HOSTED AVENIR FONT ===== */
@font-face {
  font-family: 'Avenir';
  src: url('../fonts/Avenir Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir';
  src: url('../fonts/Avenir Book.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir';
  src: url('../fonts/Avenir Regular.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir';
  src: url('../fonts/Avenir Heavy.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir';
  src: url('../fonts/Avenir Heavy.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir';
  src: url('../fonts/Avenir Heavy.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir';
  src: url('../fonts/Avenir Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ===== SELF-HOSTED INTER FONT ===== */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-latin-ext.woff2') format('woff2');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-latin.woff2') format('woff2');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ===== DESIGN SYSTEM — CSS CUSTOM PROPERTIES ===== */
:root {
  /* Backgrounds */
  --bg-page: #000000;
  --bg-section-alt: #0f0f0f;
  --bg-card: #141414;
  --bg-input: #141414;
  --bg-placeholder: #1a1a1a;

  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-input: rgba(255, 255, 255, 0.12);

  /* Text */
  --text-primary: #ffffff;
  --text-secondary: #8a8a8a;
  --text-tertiary: #5a5a5a;

  /* Accent */
  --accent: #0F71F2;
  --accent-hover: #0c5dd4;
  --accent-subtle-bg: rgba(15, 113, 242, 0.1);
  --accent-subtle-border: rgba(15, 113, 242, 0.3);

  /* Typography */
  --font-family: 'Avenir', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --section-padding: 100px;
  --section-padding-mobile: 60px;
  --container-max: 1200px;
  --gap-columns: 64px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 50px;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

p,
a,
span,
div,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
ul,
li {
  font-family: "Avenir", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

a,
button {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  font-family: var(--font-family);
  background: var(--bg-page);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  padding-top: 100px;
}

@media (max-width: 640px) {
  body {
    padding-top: 84px;
  }
}


/* =============================================================
   HEADER — glassmorphic fixed nav
   ============================================================= */
.supar-header {
  display: flex;
  align-items: center;
  gap: 12px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 20px;
  transition: padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.admin-bar .supar-header {
  top: 32px;
}

.supar-header.scrolled {
  padding: 10px 20px;
}

.supar-header__glass {
  max-width: 1536px;
  margin: 0 auto;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 10px 10px 10px 12px;
  gap: 30px;
  height: 60px;
  flex: 1;
}

.supar-header__glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.1) 20%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0.1) 80%,
      transparent 100%);
  border-radius: 32px 32px 0 0;
}

/* Logo */
.supar-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.supar-header__logo-icon {
  height: 52px;
  width: 52px;
  object-fit: contain;
  flex-shrink: 0;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.supar-header.scrolled .supar-header__logo-icon {
  height: 44px;
  width: 44px;
}

.supar-header__logo-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.supar-header__logo-text sup {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-left: 1px;
}

/* Navigation */
.supar-header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.supar-header__nav-links {
  display: flex;
  align-items: center;
}

.supar-header__menu,
.supar-header__menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.supar-header__menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.supar-header__menu li a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 20px;
  transition: color 0.3s ease, background 0.3s ease;
  border-radius: 18px;
}

.supar-header__menu li a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
}

.supar-header__menu li.current-menu-item>a,
.supar-header__menu li.current_page_item>a {
  color: var(--accent);
  background: var(--accent-subtle-bg);
}

/* Desktop dropdown sub-menu */
.supar-header__menu>li {
  position: relative;
}

.supar-header__menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 10px;
  z-index: 100;
  list-style: none;
  margin: 0;
}

.supar-header__menu>li:hover>.sub-menu {
  display: block;
}

/* Bridge for hover gap */
.supar-header__menu .sub-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
}

/* Glass panel wrapper via ::after on the ul */
.supar-header__menu .sub-menu::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.88);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.supar-header__menu .sub-menu li {
  list-style: none;
  position: relative;
  z-index: 1;
}

.supar-header__menu .sub-menu li a {
  display: block;
  white-space: nowrap;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  border-radius: 0;
  transition: color 0.2s ease, background 0.2s ease;
}

.supar-header__menu .sub-menu li:first-child a {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  padding-top: 14px;
}

.supar-header__menu .sub-menu li:last-child a {
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding-bottom: 14px;
}

.supar-header__menu .sub-menu li:only-child a {
  border-radius: var(--radius-md);
  padding-top: 14px;
  padding-bottom: 14px;
}

.supar-header__menu .sub-menu li a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
}

/* Products mega menu — desktop */
.supar-header__menu .supar-products-menu>.supar-mega-menu {
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  padding-top: 10px;
}

/* Mega menu list items */
.supar-header__menu .supar-mega-menu>.menu-item {
  position: relative;
  z-index: 1;
}

/* Product card link — high specificity to override all default sub-menu rules */
.supar-header__menu .supar-mega-menu li a.supar-mega-menu__item,
.supar-header__menu .supar-mega-menu li:first-child a.supar-mega-menu__item,
.supar-header__menu .supar-mega-menu li:last-child a.supar-mega-menu__item,
.supar-header__menu .supar-mega-menu li:only-child a.supar-mega-menu__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  margin: 0 8px;
  border-radius: var(--radius-sm);
  white-space: normal;
  background: transparent;
  transition: background 0.2s ease;
}

.supar-header__menu .supar-mega-menu>.menu-item:first-child>a.supar-mega-menu__item {
  margin-top: 8px;
}

.supar-header__menu .supar-mega-menu li a.supar-mega-menu__item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.supar-mega-menu__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: var(--radius-sm);
  background: var(--accent-subtle-bg);
  color: var(--accent);
  overflow: hidden;
}

.supar-mega-menu__icon svg {
  color: var(--accent);
}

.supar-mega-menu__logo-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.supar-mega-menu__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.supar-mega-menu__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.supar-mega-menu__desc {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Footer "View all products" link */
.supar-header__menu .supar-mega-menu>.supar-mega-menu__footer {
  border-top: 1px solid var(--border-subtle);
  margin: 4px 8px 0;
  z-index: 1;
}

.supar-header__menu .supar-mega-menu li.supar-mega-menu__footer a,
.supar-header__menu .supar-mega-menu li.supar-mega-menu__footer:last-child a {
  display: block;
  padding: 12px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  background: transparent;
  border-radius: 0;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.supar-header__menu .supar-mega-menu li.supar-mega-menu__footer a:hover {
  color: var(--accent-hover);
  background: transparent;
}

/* CTA button in header */
.supar-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 20px;
  background: var(--accent);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.supar-header__cta:hover {
  background: var(--accent-hover);
  color: #ffffff;
}

.supar-header__cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.supar-header__cta:hover svg {
  transform: translateX(3px);
}

/* ── Language switcher ── */
.supar-header__lang {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  overflow: visible;
}

.supar-header__lang-trigger {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
  border-radius: 18px;
  transition: color 0.3s ease, background 0.3s ease;
}

.supar-header__lang-trigger:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
}

#supar-lang-current {
  letter-spacing: 0.04em;
  line-height: 1;
}

#supar-lang-chevron {
  transition: transform 0.2s ease;
}

.supar-header__lang.open #supar-lang-chevron {
  transform: rotate(180deg);
}

/* Dropdown panel */
.supar-header__lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 200px;
  max-height: 360px;
  overflow-y: auto;
  overflow-x: hidden;
  background: rgba(14, 14, 14, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 6px 0;
  z-index: 9998;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
  animation: suparLangDropIn 0.18s ease;
}

.supar-header__lang-dropdown.open {
  display: block;
}

@keyframes suparLangDropIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Language links */
.supar-lang-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease;
}

.supar-lang-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.07);
}

.supar-lang-link--active {
  color: var(--accent);
  background: var(--accent-subtle-bg);
}

.supar-lang-link--active:hover {
  background: rgba(59, 130, 246, 0.15);
}

.supar-lang-link img {
  width: 22px;
  height: 15px;
  border-radius: 3px;
  object-fit: cover;
  flex-shrink: 0;
}

/* ── Mobile menu language switcher ── */
.supar-mobile-menu__lang {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 4px;
  margin: 0;
}

.supar-mobile-lang-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.supar-mobile-lang-chip:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
}

.supar-mobile-lang-chip--active {
  background: var(--accent-subtle-bg);
  border-color: var(--accent-subtle-border);
  color: var(--accent);
}

.supar-mobile-lang-chip img {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Hide TranslatePress default floating switcher */
.trp-language-switcher-container,
.trp-floater-ls-container,
#trp-floater-ls,
.trp-floating-switcher {
  display: none !important;
}

/* Mobile hamburger */
.supar-header__mobile-btn {
  display: none;
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
  transition: background 0.3s ease;
}

.supar-header__mobile-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.supar-header__mobile-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.supar-header__mobile-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.supar-header__mobile-btn.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.supar-header__mobile-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile overlay */
.supar-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 9997;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.supar-mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile menu */
.supar-mobile-menu {
  display: none;
  position: fixed;
  top: 96px;
  left: 20px;
  right: 20px;
  z-index: 9998;
  background: rgba(10, 10, 10, 0.92);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  padding: 16px;
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  flex-direction: column;
}

.supar-mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.supar-mobile-menu__list,
.supar-mobile-menu__list li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.supar-mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.supar-mobile-menu__list li a {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 12px;
  transition: color 0.3s ease, background 0.3s ease;
}

.supar-mobile-menu__list li a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
}

.supar-mobile-menu__list li.current-menu-item a,
.supar-mobile-menu__list li.current_page_item a {
  color: var(--accent);
  background: var(--accent-subtle-bg);
}

/* Mobile menu footer (lang + CTA) */
.supar-mobile-menu__footer {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.supar-mobile-menu__cta {
  margin: 0;
  padding: 0;
}

.supar-mobile-menu__cta .supar-header__cta {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  font-size: 15px;
}

/* Mobile sub-menu */
.supar-mobile-menu__list .menu-item-has-children {
  position: relative;
}

.supar-mobile-menu__list .menu-item-has-children>a {
  padding-right: 52px;
}

.supar-mobile-submenu-toggle {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.supar-mobile-submenu-toggle:hover {
  background: rgba(255, 255, 255, 0.06);
}

.supar-mobile-submenu-toggle svg {
  width: 18px;
  height: 18px;
  color: var(--text-secondary);
  transition: transform 0.3s ease;
}

.supar-mobile-submenu-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.supar-mobile-menu__list .sub-menu {
  list-style: none;
  margin: 0;
  padding: 4px 0 4px 16px;
}

.supar-mobile-menu__list .sub-menu li a {
  padding: 12px 20px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
}

/* Mobile mega menu */
.supar-mobile-menu__list .supar-mega-menu {
  padding: 4px 0 4px 8px;
}

/* Reset default mobile sub-menu link styles inside mega menu */
.supar-mobile-menu__list .supar-mega-menu li a {
  padding: 0;
  font-size: inherit;
  color: inherit;
}

.supar-mobile-menu__list .supar-mega-menu a.supar-mega-menu__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
}

.supar-mobile-menu__list .supar-mega-menu .supar-mega-menu__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: var(--radius-sm);
  background: var(--accent-subtle-bg);
  color: var(--accent);
}

.supar-mobile-menu__list .supar-mega-menu .supar-mega-menu__icon svg {
  color: var(--accent);
}

.supar-mobile-menu__list .supar-mega-menu .supar-mega-menu__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.supar-mobile-menu__list .supar-mega-menu .supar-mega-menu__name {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.supar-mobile-menu__list .supar-mega-menu .supar-mega-menu__desc {
  font-size: 12px;
  color: var(--text-secondary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.supar-mobile-menu__list .supar-mega-menu .supar-mega-menu__footer {
  border-top: 1px solid var(--border-subtle);
  margin-top: 4px;
}

.supar-mobile-menu__list .supar-mega-menu .supar-mega-menu__footer a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
}

/* Header responsive */

/* Small laptop: reduce nav link padding to prevent squishing */
@media (max-width: 1280px) {
  .supar-header__menu li a {
    padding: 10px 14px;
    font-size: 14px;
  }

  .supar-header__menu {
    gap: 2px;
  }

  .supar-header__nav {
    gap: 2px;
  }

  .supar-header__lang-trigger {
    padding: 10px 14px;
    font-size: 14px;
  }
}

/* Tablet / small laptop: switch to hamburger menu */
@media (max-width: 1024px) {
  .supar-header__nav-links {
    display: none;
  }

  .supar-header__mobile-btn {
    display: flex;
  }

  .supar-mobile-menu {
    display: flex;
  }

  .supar-mobile-overlay {
    display: block;
  }
}

/* Tablet portrait: hide lang from header (mobile menu has it) */
@media (max-width: 768px) {
  .supar-header__lang {
    display: none;
  }
}

/* Phone: hide CTA from header nav (mobile menu has it) */
@media (max-width: 480px) {
  .supar-header__nav .supar-header__cta {
    display: none;
  }

  .supar-header {
    padding: 12px;
  }

  .supar-header.scrolled {
    padding: 8px 12px;
  }

  .supar-header__glass {
    padding: 8px;
    border-radius: 60px;
  }

  .supar-header__logo-icon {
    height: 40px;
    width: 40px;
  }

  .supar-header.scrolled .supar-header__logo-icon {
    height: 36px;
    width: 36px;
  }

  .supar-header__logo-text {
    font-size: 18px;
  }

  .supar-header__mobile-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .supar-mobile-menu {
    top: 76px;
    left: 12px;
    right: 12px;
    padding: 14px;
    border-radius: 20px;
  }

  .supar-mobile-menu__list li a {
    padding: 12px 14px;
    font-size: 15px;
  }
}

/* Focus states */
.supar-header__menu li a:focus-visible,
.supar-header__cta:focus-visible,
.supar-header__mobile-btn:focus-visible,
.supar-header__logo:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
  background: #000000;
  color: var(--text-primary);
  margin-top: 0;
}

.footer-main {
  padding: 80px 0 40px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-column h3,
.footer-column h4 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.footer-logo {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.footer-about p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 1.5rem;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.footer-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 30px 0;
}

.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: var(--text-tertiary);
  font-size: 14px;
  margin: 0;
}

.footer-bottom__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
}

.footer-bottom__links a {
  color: var(--text-tertiary);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom__links a:not(:last-child)::after {
  content: "–";
  margin-left: 1.5rem;
  color: var(--text-tertiary);
  pointer-events: none;
}

.footer-bottom__links a:hover {
  color: var(--text-primary);
}

/* Footer responsive */
@media (max-width: 968px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-main {
    padding: 60px 0 30px;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom__inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}


/* =============================================================
   ANNOUNCEMENT BANNER
   ============================================================= */
/* ADMIN TOGGLE: This section's visibility is controlled via WordPress admin. When off, the section is not rendered. */

.announcement-banner {
  width: 100%;
  background: rgba(15, 113, 242, 0.03);
  padding: 70px 24px;
}

.announcement-banner__container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}

.announcement-banner__visual {
  width: 300px;
  flex-shrink: 0;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-placeholder);
}

.announcement-banner__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.announcement-banner__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.announcement-banner__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-subtle-bg);
  border: 1px solid var(--accent-subtle-border);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  width: fit-content;
}

.announcement-banner__tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.announcement-banner__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.announcement-banner__description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.announcement-banner__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: var(--radius-full);
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  width: fit-content;
  transition: background 0.2s ease, color 0.2s ease;
}

.announcement-banner__link:hover {
  background: var(--accent);
  color: var(--text-primary);
}


/* =============================================================
   PRIMARY FEATURE (left/right alternating)
   ============================================================= */
.feature-primary {
  width: 100%;
  min-height: 70vh;
  padding: var(--section-padding) 24px;
  display: flex;
  align-items: center;
}

.feature-primary--alt {
  background: var(--bg-section-alt);
}

.feature-primary__container {
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--gap-columns);
}

.feature-primary--reversed .feature-primary__container {
  flex-direction: row-reverse;
}

.feature-primary__image {
  flex: 1;
  flex-shrink: 0;
}

.feature-primary__image-container {
  aspect-ratio: 4 / 3;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-placeholder);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-primary__image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-primary__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.feature-primary__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-subtle-bg);
  border: 1px solid var(--accent-subtle-border);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  width: fit-content;
}

.feature-primary__tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.feature-primary__title {
  font-size: 38px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.feature-primary__description {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.feature-primary__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
}

.feature-primary__bullets li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 15px;
  color: var(--accent);
  line-height: 1.5;
}

.feature-primary__bullets li::before {
  content: '✓';
  flex-shrink: 0;
  font-weight: 700;
  color: var(--accent);
}

.feature-primary__product-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 14px 20px;
  align-self: flex-start;
  background: var(--accent-subtle-bg);
  border: 1px solid var(--accent-subtle-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.feature-primary__product-link:hover {
  border-color: var(--accent);
  background: rgba(15, 113, 242, 0.15);
}

.feature-primary__product-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--accent);
}

.feature-primary__product-icon svg {
  width: 22px;
  height: 22px;
}

.feature-primary__product-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.feature-primary__product-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feature-primary__product-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.feature-primary__product-cta {
  font-size: 13px;
  color: var(--accent);
  line-height: 1.3;
}


/* =============================================================
   SHOWCASE FEATURE (full-width visual)
   ============================================================= */
.showcase {
  width: 100%;
  padding: var(--section-padding) 24px;
}

.showcase__container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.showcase__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-subtle-bg);
  border: 1px solid var(--accent-subtle-border);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 16px;
}

.showcase__tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.showcase__title {
  font-size: 38px;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  max-width: 700px;
  line-height: 1.2;
}

.showcase__description {
  font-size: 17px;
  color: var(--text-secondary);
  text-align: center;
  max-width: 600px;
  line-height: 1.75;
  margin-top: 20px;
}

.showcase__visual {
  width: 100%;
  margin-top: 48px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-placeholder);
  border: 1px solid var(--border-subtle);
}

.showcase__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showcase__link {
  display: inline-block;
  margin-top: 24px;
  font-size: 15px;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

.showcase__link:hover {
  color: var(--accent-hover);
}


/* =============================================================
   SECONDARY FEATURE GRID
   ============================================================= */
.feature-grid {
  width: 100%;
  padding: var(--section-padding) 24px;
}

.feature-grid__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.feature-grid__heading {
  text-align: center;
  margin-bottom: 60px;
}

.feature-grid__title {
  font-size: 38px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.feature-grid__subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 20px auto 0;
}

.feature-grid__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.feature-grid__card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
}

.feature-grid__card-image {
  aspect-ratio: 2 / 1;
  width: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #1e1e1e;
  margin-bottom: 24px;
}

.feature-grid__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-grid__card-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 12px;
}

.feature-grid__card-description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 90%;
  margin: 0 auto;
}

.feature-grid__card-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

.feature-grid__card-link:hover {
  color: var(--accent-hover);
}


/* =============================================================
   PRODUCTS SHOWCASE (homepage — card grid)
   ============================================================= */
.products-showcase {
  width: 100%;
  padding: var(--section-padding) 24px;
}

.products-showcase__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.products-showcase__heading {
  text-align: center;
  margin-bottom: 60px;
}

.products-showcase__title {
  font-size: 38px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.products-showcase__subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 20px auto 0;
}

.products-showcase__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.products-showcase__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px;
  text-decoration: none;
  transition: border-color 0.2s ease;
}

.products-showcase__card:hover {
  border-color: var(--accent-subtle-border);
}

.products-showcase__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-subtle-bg);
  border: 1px solid var(--accent-subtle-border);
  border-radius: var(--radius-sm);
  color: var(--accent);
  margin-bottom: 4px;
}

.products-showcase__icon svg {
  width: 24px;
  height: 24px;
}

.products-showcase__logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.products-showcase__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin: 0;
}

.products-showcase__tagline {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.products-showcase__link {
  font-size: 14px;
  color: var(--accent);
  margin-top: auto;
  padding-top: 4px;
}

.products-showcase__footer {
  text-align: center;
  margin-top: 40px;
}

.products-showcase__view-all {
  display: inline-block;
  font-size: 15px;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid var(--accent);
  border-radius: var(--radius-full);
  padding: 10px 28px;
  transition: background 0.2s ease;
}

.products-showcase__view-all:hover {
  background: var(--accent-subtle-bg);
}

@media (max-width: 768px) {
  .products-showcase__grid {
    grid-template-columns: 1fr;
  }

  .products-showcase__title {
    font-size: 28px;
  }
}


/* =============================================================
   REFERENCES PREVIEW (homepage — logo grid)
   ============================================================= */

.references-preview {
  padding: var(--section-padding) 24px;
}

.references-preview__container {
  max-width: var(--container-max);
  margin: 0 auto;
  text-align: center;
}

.references-preview__heading {
  margin-bottom: 60px;
}

.references-preview__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.references-preview__subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

.references-preview__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 48px;
}

.references-preview__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  transition: border-color 0.3s ease;
}

.references-preview__item:hover {
  border-color: var(--accent-subtle-border);
}

.references-preview__logo {
  max-height: 44px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.references-preview__btn {
  display: inline-block;
  padding: 12px 36px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-full);
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.3s ease, color 0.3s ease;
}

.references-preview__btn:hover {
  background: var(--accent);
  color: var(--text-primary);
}

@media (max-width: 968px) {
  .references-preview__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 576px) {
  .references-preview {
    padding: var(--section-padding-mobile) 24px;
  }

  .references-preview__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .references-preview__item {
    height: 64px;
    padding: 12px 14px;
  }

  .references-preview__logo {
    max-height: 32px;
  }
}


/* =============================================================
   REFERENCES PAGE (dedicated /references/ page)
   ============================================================= */

.references-page {
  padding: var(--section-padding) 24px;
  min-height: 60vh;
}

.references-page__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.references-page__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.references-page__subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.references-page__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.references-page__item {
  text-align: center;
}

.references-page__link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.references-page__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  transition: border-color 0.3s ease, background 0.3s ease;
  margin-bottom: 12px;
}

.references-page__item:hover .references-page__logo-wrap,
.references-page__link:hover .references-page__logo-wrap {
  border-color: var(--accent-subtle-border);
  background: var(--accent-subtle-bg);
}

.references-page__logo {
  max-height: 60px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.references-page__company {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.references-page__name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.references-page__empty {
  text-align: center;
  color: var(--text-tertiary);
  font-size: 1.1rem;
}

@media (max-width: 968px) {
  .references-page__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .references-page {
    padding: var(--section-padding-mobile) 16px;
  }

  .references-page__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .references-page__logo-wrap {
    height: 90px;
    padding: 16px;
  }

  .references-page__logo {
    max-height: 44px;
  }
}


/* =============================================================
   TESTIMONIALS PREVIEW (homepage — 3 cards)
   ============================================================= */
.testimonials-preview {
  width: 100%;
  background: var(--bg-section-alt);
  padding: var(--section-padding) 24px;
}

.testimonials-preview__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.testimonials-preview__heading {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-preview__title {
  font-size: 38px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.testimonials-preview__subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 20px auto 0;
}

.testimonials-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.testimonial-card__quote {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
  position: relative;
  padding-top: 8px;
}

.testimonial-card__quote::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  left: 0;
  font-size: 24px;
  color: var(--accent);
  opacity: 0.4;
  font-style: normal;
  line-height: 1;
}

.testimonial-card__divider {
  width: 100%;
  height: 1px;
  background: var(--border-subtle);
  margin: 24px 0;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-card__photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-placeholder);
  flex-shrink: 0;
}

.testimonial-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-card__name {
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
}

.testimonial-card__role {
  color: var(--text-tertiary);
  font-size: 13px;
}

.testimonial-card__company {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-tertiary);
  font-size: 13px;
}

.testimonial-card__logo {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-placeholder);
  flex-shrink: 0;
}

.testimonial-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.testimonials-preview__link {
  display: block;
  text-align: center;
  margin-top: 48px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.testimonials-preview__link:hover {
  text-decoration: underline;
}


/* =============================================================
   TESTIMONIALS FULL PAGE
   ============================================================= */
.testimonials-page__header {
  padding: 80px 24px 60px;
  text-align: center;
}

.testimonials-page__title {
  font-size: 44px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.testimonials-page__subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 20px auto 0;
}

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

.testimonial-entry {
  display: flex;
  gap: 48px;
  padding: 70px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.testimonial-entry:first-child {
  border-top: 1px solid var(--border-subtle);
}

.testimonial-entry__content {
  flex: 7;
}

.testimonial-entry__quote-mark {
  font-size: 60px;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  font-family: Georgia, serif;
  margin-bottom: 16px;
}

.testimonial-entry__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-entry__text p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.testimonial-entry__text iframe {
  max-width: 100%;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: none;
  border-radius: var(--radius-sm);
  margin-top: 24px;
}

.testimonial-entry__link {
  display: inline-block;
  color: var(--accent);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  margin-top: 12px;
}

.testimonial-entry__link:hover {
  text-decoration: underline;
}

.testimonial-entry__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-placeholder);
  margin-top: 32px;
}

.testimonial-entry__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-entry__author {
  flex: 3;
  position: sticky;
  top: 130px;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.testimonial-entry__photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-placeholder);
}

.testimonial-entry__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-entry__name {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-entry__role {
  font-size: 15px;
  color: var(--text-tertiary);
}

.testimonial-entry__logo {
  height: 28px;
  overflow: hidden;
  background: var(--bg-placeholder);
  border-radius: 4px;
  padding: 4px 12px;
}

.testimonial-entry__logo img {
  height: 100%;
  object-fit: contain;
  display: block;
}

.testimonial-entry__company {
  font-size: 15px;
  color: var(--text-tertiary);
}


/* =============================================================
   CTA SECTION (with scroll reveal)
   ============================================================= */
.cta {
  position: relative;
  width: 100%;
  padding: 120px 24px;
}

.cta__line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(15, 113, 242, 0.2) 30%,
      rgba(15, 113, 242, 0.35) 50%,
      rgba(15, 113, 242, 0.2) 70%,
      transparent);
  z-index: 1;
  width: 0;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta__line--top {
  top: 0;
  transition-delay: 0.4s;
}

.cta__line--bottom {
  bottom: 0;
  transition-delay: 0.5s;
}

.cta__line.visible {
  width: min(500px, 70vw);
}

.cta__container {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta__title {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta__title.visible {
  opacity: 1;
  transform: translateY(0);
}

.cta__description {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin-top: 24px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s,
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

.cta__description.visible {
  opacity: 1;
  transform: translateY(0);
}

.cta__button-wrap {
  margin-top: 40px;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s,
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.cta__button-wrap.visible {
  opacity: 1;
  transform: translateY(0);
}

.cta__button-wrap::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 60px;
  background: radial-gradient(ellipse at center,
      rgba(15, 113, 242, 0.15) 0%,
      transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.cta__button-wrap:hover::before {
  opacity: 1;
}

.cta__button {
  position: relative;
  z-index: 1;
  display: inline-block;
  background: var(--accent);
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-full);
  padding: 16px 40px;
  cursor: pointer;
  transition: background-color 0.2s ease,
    transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease;
}

.cta__button:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(15, 113, 242, 0.25),
    0 2px 8px rgba(15, 113, 242, 0.15);
}

.cta__button:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(15, 113, 242, 0.2);
}


/* =============================================================
   CONTACT FORM PAGE
   ============================================================= */
.contact-page {
  width: 100%;
  padding: var(--section-padding) 24px;
}

.contact-page__container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: var(--gap-columns);
}

.contact-page__form-column {
  flex: 55;
  display: flex;
  flex-direction: column;
}

.contact-page__label {
  font-size: 13px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

.contact-page__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-top: 8px;
}

.contact-page__required-note {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 40px;
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form__row--full {
  grid-template-columns: 1fr;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  background: var(--bg-input);
  border: 1px solid var(--border-input);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text-primary);
  font-size: 15px;
  font-family: var(--font-family);
  transition: border-color 0.2s ease;
  width: 100%;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: var(--text-tertiary);
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  border-color: var(--accent);
  outline: none;
}

.contact-form__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a5a5a' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.contact-form__select option {
  background: var(--bg-input);
  color: var(--text-primary);
}

.contact-form__textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form__submit {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--text-primary);
  border: none;
  border-radius: var(--radius-full);
  padding: 16px 48px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-family);
  cursor: pointer;
  transition: background 0.2s ease;
  width: fit-content;
}

.contact-form__submit:hover {
  background: var(--accent-hover);
}

.contact-form__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* Form feedback messages */
.contact-form__message {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.contact-form__message--success {
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.35);
  color: #4ade80;
}

.contact-form__message--error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}

/* Form wrap — exit animation on success */
.contact-form-wrap--exiting {
  opacity: 0;
  transform: translateY(-14px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

/* Success state */
.contact-form__success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
  min-height: 400px;
  gap: 20px;
  padding: 40px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease 0.05s, transform 0.45s ease 0.05s;
}

.contact-form__success--visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-form__success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(15, 113, 242, 0.1);
  border: 1.5px solid rgba(15, 113, 242, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-form__success-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin: 0;
}

.contact-form__success-text {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
  max-width: 340px;
}

.contact-page__info-column {
  flex: 45;
}

.contact-page__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-placeholder);
}

.contact-page__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-details {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-details__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-details__label {
  font-size: 13px;
  color: var(--text-tertiary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-details__value {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.contact-details__value a {
  color: var(--text-secondary);
  text-decoration: none;
}

.contact-details__value a:hover {
  color: var(--text-primary);
}


/* =============================================================
   HOW IT WORKS — cinematic interactive 4-step workflow
   ============================================================= */
.hiw {
  width: 100%;
  padding: var(--section-padding) 24px;
}

.hiw.feature-primary--alt {
  background: var(--bg-section-alt);
}

.hiw__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

/* Header */
.hiw__header {
  text-align: center;
  margin-bottom: 48px;
}

.hiw__title {
  font-size: 38px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.hiw__subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 500px;
  margin: 16px auto 0;
}

/* Stage: large cinematic visual with text overlay */
.hiw__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Animation panels fill the stage */
.hiw__panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.hiw__panel--active {
  opacity: 1;
  pointer-events: auto;
}

/* Text overlay — bottom-left with gradient scrim */
.hiw__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 60px 40px 36px;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.55) 50%,
      transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.hiw__step-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(15, 113, 242, 0.15);
  border: 1px solid rgba(15, 113, 242, 0.35);
  border-radius: var(--radius-full);
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  width: fit-content;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.hiw__step-badge span {
  font-weight: 700;
}

.hiw__step-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  max-width: 520px;
}

.hiw__step-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  max-width: 500px;
}

/* ── Navigation: arrows + dots ── */
.hiw__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  position: relative;
  z-index: 5;
}

.hiw__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-input);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.hiw__arrow:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hiw__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hiw__dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--text-tertiary);
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-family);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hiw__dot span {
  font-weight: 700;
}

.hiw__dot:hover {
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text-secondary);
}

.hiw__dot--active {
  background: var(--accent-subtle-bg);
  border-color: var(--accent-subtle-border);
  color: var(--accent);
}

/* ────────────────────────────────────────────
   STEP 1 — Import CAD (simulated desktop + Composer window)
   ──────────────────────────────────────────── */
.hiw-import {
  position: absolute;
  inset: 0;
  background: #111119;
}

/* Simulated OS window — compact, positioned right to leave desktop space */
.hiw-import__window {
  position: absolute;
  top: 8%;
  left: 25%;
  right: 8%;
  bottom: 8%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
}

.hiw-import__titlebar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #1e1e2a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.hiw-import__wdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hiw-import__wdot--close {
  background: #ff5f56;
}

.hiw-import__wdot--min {
  background: #ffbd2e;
}

.hiw-import__wdot--max {
  background: #27c93f;
}

.hiw-import__titlebar-text {
  margin-left: 8px;
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 500;
}

.hiw-import__viewport {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.hiw-import__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hiw-import__bg--loaded {
  opacity: 0;
}

.hiw__panel--active .hiw-import__bg--loaded {
  animation: hiwFadeIn 0.6s 2.5s ease forwards;
}

/* Static file cards on the "desktop" — always visible */
.hiw-import__desktop-files {
  position: absolute;
  top: 22%;
  left: 3%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 1;
}

/* Format indicator pills below the main file */
.hiw-import__formats {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  max-width: 100px;
}

.hiw-import__fmt {
  font-size: 8px;
  font-weight: 600;
  color: var(--text-tertiary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  padding: 2px 5px;
  letter-spacing: 0.3px;
}

/* Drag ghost + cursor — starts on top of the static file, then animates away */
.hiw-import__drag {
  position: absolute;
  top: 22%;
  left: 3%;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  opacity: 0;
}

.hiw-import__drag .hiw-import__file-card {
  opacity: 0.85;
}

.hiw__panel--active .hiw-import__drag {
  animation: hiwDragSequence 2.6s 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* File card (shared between static + drag ghost) */
.hiw-import__file-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 10px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.hiw-import__thumb {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 4px;
}

.hiw-import__filename {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
}

.hiw-import__cursor {
  margin-top: 4px;
  margin-left: -6px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

/* ────────────────────────────────────────────
   STEP 2 — Prepare Inspection (zoom into Composer)
   ──────────────────────────────────────────── */
.hiw-prepare {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hiw-prepare__zoom {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transform-origin: 42% 40%;
}

.hiw__panel--active .hiw-prepare__zoom {
  animation: hiwZoomIn 2.5s 0.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Checkpoint pins — positioned on the model in composer_loaded */
.hiw-prepare__pin {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-primary);
  transform: scale(0);
  box-shadow: 0 0 0 3px rgba(15, 113, 242, 0.25);
}

/* Pin positions on the model — adjust these to land on features */
.hiw-prepare__pin--1 {
  top: 28%;
  left: 36%;
}

.hiw-prepare__pin--2 {
  top: 24%;
  left: 50%;
}

.hiw-prepare__pin--3 {
  top: 42%;
  left: 40%;
}

.hiw-prepare__pin--4 {
  top: 48%;
  left: 52%;
}

/* Slow staggered appearance — 1s between each */
.hiw__panel--active .hiw-prepare__pin--1 {
  animation: hiwPinPop 0.4s 1.5s ease forwards, hiwPinPulse 0.8s 1.9s ease;
}

.hiw__panel--active .hiw-prepare__pin--2 {
  animation: hiwPinPop 0.4s 2.5s ease forwards, hiwPinPulse 0.8s 2.9s ease;
}

.hiw__panel--active .hiw-prepare__pin--3 {
  animation: hiwPinPop 0.4s 3.5s ease forwards, hiwPinPulse 0.8s 3.9s ease;
}

.hiw__panel--active .hiw-prepare__pin--4 {
  animation: hiwPinPop 0.4s 4.5s ease forwards, hiwPinPulse 0.8s 4.9s ease;
}

/* ────────────────────────────────────────────
   STEP 3 — AR Inspection (real photo + HUD)
   ──────────────────────────────────────────── */
.hiw-inspect {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/*
 * Screen zone — positioned over the iPad screen in the photo.
 * The clip-path polygon handles the slight perspective tilt.
 */
.hiw-inspect__zone {
  position: absolute;
  top: 30.46%;
  left: 26.04%;
  width: 23.12%;
  height: 32.31%;
  clip-path: polygon(1.58% 5.16%,
      100.00% 0.00%,
      99.77% 99.71%,
      0.00% 100.00%
    );
  overflow: hidden;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.55);
}

/* Glow border on AR lock-on */
.hiw-inspect__glow {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(15, 113, 242, 0);
  border-radius: 2px;
  opacity: 0;
}

.hiw__panel--active .hiw-inspect__glow {
  animation: hiwGlowIn 0.5s 0.2s ease forwards, hiwGlowPulse 2s 0.7s ease infinite;
}

/* ── CAD wireframe grid ── */
.hiw-inspect__grid {
  position: absolute;
  inset: 8% 5%;
  width: 90%;
  height: 84%;
  opacity: 0;
}

.hiw-inspect__grid line {
  stroke: rgba(59, 130, 246, 0.3);
  stroke-width: 0.4;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
}

.hiw__panel--active .hiw-inspect__grid {
  animation: hiwFadeIn 0.3s 0.4s ease forwards;
}

.hiw__panel--active .hiw-inspect__grid line {
  animation: hiwGridDraw 1.5s 0.5s ease forwards;
}

/* ── Color-coded inspection regions ── */
.hiw-inspect__region {
  position: absolute;
  border-radius: 3px;
  opacity: 0;
  border: 1px solid;
}

.hiw-inspect__region--1 {
  top: 18%;
  left: 10%;
  width: 35%;
  height: 30%;
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.4);
}

.hiw-inspect__region--2 {
  top: 15%;
  left: 55%;
  width: 35%;
  height: 32%;
  background: rgba(234, 179, 8, 0.08);
  border-color: rgba(234, 179, 8, 0.4);
}

.hiw-inspect__region--3 {
  top: 55%;
  left: 12%;
  width: 38%;
  height: 30%;
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.4);
}

.hiw__panel--active .hiw-inspect__region--1 {
  animation: hiwRegionIn 0.4s 1.8s ease forwards;
}

.hiw__panel--active .hiw-inspect__region--2 {
  animation: hiwRegionIn 0.4s 2.2s ease forwards, hiwRegionResolve 0.5s 3.5s ease forwards;
}

.hiw__panel--active .hiw-inspect__region--3 {
  animation: hiwRegionIn 0.4s 2.6s ease forwards;
}

/* ── Scan line sweeps top → bottom ── */
.hiw-inspect__scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(15, 113, 242, 0.6) 30%,
      rgba(15, 113, 242, 0.9) 50%,
      rgba(15, 113, 242, 0.6) 70%,
      transparent 100%);
  box-shadow: 0 0 16px 4px rgba(15, 113, 242, 0.35);
  top: 0;
  opacity: 0;
}

.hiw__panel--active .hiw-inspect__scan {
  animation: hiwScanSweep 1.2s 0.3s ease-in-out forwards;
}

/* ── Measurement readouts ── */
.hiw-inspect__measurement {
  position: absolute;
  font-family: 'Inter', monospace;
  font-size: 7px;
  font-weight: 600;
  padding: 2px 5px;
  border-radius: 2px;
  opacity: 0;
  transform: scale(0);
  white-space: nowrap;
  z-index: 2;
  letter-spacing: 0.02em;
}

.hiw-inspect__measurement--1 {
  top: 30%;
  left: 15%;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.hiw-inspect__measurement--2 {
  top: 28%;
  left: 62%;
  color: #eab308;
  background: rgba(234, 179, 8, 0.15);
  border: 1px solid rgba(234, 179, 8, 0.3);
}

.hiw-inspect__measurement--3 {
  top: 68%;
  left: 18%;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.hiw__panel--active .hiw-inspect__measurement--1 {
  animation: hiwMeasurePop 0.3s 3.0s ease forwards;
}

.hiw__panel--active .hiw-inspect__measurement--2 {
  animation: hiwMeasurePop 0.3s 3.3s ease forwards, hiwMeasureResolve 0.4s 3.6s ease forwards;
}

.hiw__panel--active .hiw-inspect__measurement--3 {
  animation: hiwMeasurePop 0.3s 3.5s ease forwards;
}

/* ── Checkpoint markers (inside zone) ── */
.hiw-inspect__marker {
  position: absolute;
  transform: scale(0);
  z-index: 3;
  line-height: 0;
  filter: drop-shadow(0 0 4px rgba(15, 113, 242, 0.5));
}

.hiw-inspect__marker--1 {
  top: 35%;
  left: 25%;
}

.hiw-inspect__marker--2 {
  top: 30%;
  left: 70%;
}

.hiw-inspect__marker--3 {
  top: 65%;
  left: 28%;
}

.hiw-inspect__marker--4 {
  top: 60%;
  left: 72%;
}

.hiw__panel--active .hiw-inspect__marker--1 {
  animation: hiwPinPop 0.25s 3.8s ease forwards, hiwMarkerGlow 1.5s 4.2s ease infinite;
}

.hiw__panel--active .hiw-inspect__marker--2 {
  animation: hiwPinPop 0.25s 4.0s ease forwards, hiwMarkerGlow 1.5s 4.4s ease infinite;
}

.hiw__panel--active .hiw-inspect__marker--3 {
  animation: hiwPinPop 0.25s 4.2s ease forwards, hiwMarkerGlow 1.5s 4.6s ease infinite;
}

.hiw__panel--active .hiw-inspect__marker--4 {
  animation: hiwPinPop 0.25s 4.4s ease forwards, hiwMarkerGlow 1.5s 4.8s ease infinite;
}

/* ── HUD header bar ── */
.hiw-inspect__hud {
  position: absolute;
  top: 3%;
  left: 4%;
  right: 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  z-index: 4;
}

.hiw-inspect__hud-logo {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 7px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.hiw-inspect__hud-status {
  font-family: 'Inter', monospace;
  font-size: 6px;
  font-weight: 600;
  color: #22c55e;
  display: flex;
  align-items: center;
  gap: 3px;
}

.hiw-inspect__hud-status::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #22c55e;
  animation: hiwStatusPulse 1s ease infinite;
}

.hiw__panel--active .hiw-inspect__hud {
  animation: hiwFadeIn 0.3s 0.2s ease forwards;
}

/* ── Progress bar ── */
.hiw-inspect__progress {
  position: absolute;
  bottom: 4%;
  left: 6%;
  right: 6%;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  z-index: 4;
}

.hiw-inspect__progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #22c55e);
  border-radius: 2px;
}

.hiw__panel--active .hiw-inspect__progress {
  animation: hiwFadeIn 0.3s 1.4s ease forwards;
}

.hiw__panel--active .hiw-inspect__progress-fill {
  animation: hiwProgressFill 3.2s 1.5s ease-in-out forwards;
}

/* ── Final check overlay ── */
.hiw-inspect__final-check {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 5;
  filter: drop-shadow(0 0 12px rgba(34, 197, 94, 0.6));
}

.hiw__panel--active .hiw-inspect__final-check {
  animation: hiwFinalCheck 0.4s 4.8s ease forwards;
}

/* ────────────────────────────────────────────
   STEP 4 — Generate Reports
   ──────────────────────────────────────────── */
.hiw-report {
  width: 55%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hiw-report__docs {
  display: flex;
  gap: 20px;
}

.hiw-report__doc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transform: scale(0);
}

.hiw__panel--active .hiw-report__doc--pdf {
  animation: hiwDocFan 0.35s 0.1s ease forwards;
}

.hiw__panel--active .hiw-report__doc--xlsx {
  animation: hiwDocFan 0.35s 0.25s ease forwards;
}

.hiw__panel--active .hiw-report__doc--3d {
  animation: hiwDocFan 0.35s 0.4s ease forwards;
}

.hiw-report__doc-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.hiw-report__doc--pdf .hiw-report__doc-label {
  color: #ef4444;
}

.hiw-report__doc--xlsx .hiw-report__doc-label {
  color: #22c55e;
}

.hiw-report__doc--3d .hiw-report__doc-label {
  color: var(--accent);
}

/* Browser mockup */
.hiw-report__browser {
  width: 100%;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-page);
  opacity: 0;
  transform: translateY(20px);
}

.hiw__panel--active .hiw-report__browser {
  animation: hiwBrowserSlide 0.4s 0.6s ease forwards;
}

.hiw-report__browser-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border-subtle);
}

.hiw-report__browser-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.hiw-report__browser-url {
  font-size: 9px;
  color: var(--text-tertiary);
  margin-left: 6px;
}

.hiw-report__browser-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
}

.hiw__panel--active .hiw-report__browser-body {
  animation: hiwFadeIn 0.3s 1s ease forwards;
}

.hiw-report__browser-line {
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.06);
}

.hiw-report__browser-line--w70 {
  width: 70%;
}

.hiw-report__browser-line--w50 {
  width: 50%;
}

.hiw-report__browser-line--w80 {
  width: 80%;
}

.hiw-report__browser-annotation {
  width: 40%;
  height: 20px;
  border: 1px solid rgba(15, 113, 242, 0.3);
  border-radius: 4px;
  margin-top: 4px;
  background: rgba(15, 113, 242, 0.05);
}

/* ────────────────────────────────────────────
   HOW IT WORKS — Keyframes
   ──────────────────────────────────────────── */
/* Step 1: Drag ghost — lift from desktop file, fly into Composer window, drop */
@keyframes hiwDragSequence {

  /* 0–10%: lift off the static file (fade in + slight scale up) */
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0.9);
  }

  10% {
    opacity: 0.85;
    transform: translate(0, -5px) scale(1.02);
  }

  /* 10–78%: fly toward center of Composer window */
  78% {
    opacity: 0.85;
    transform: translate(min(45vw, 540px), 15px) scale(1);
  }

  /* 78–92%: drop into window (shrink + fade) */
  92% {
    opacity: 0;
    transform: translate(min(45vw, 540px), 35px) scale(0.5);
  }

  /* Hold invisible */
  100% {
    opacity: 0;
    transform: translate(min(45vw, 540px), 35px) scale(0.5);
  }
}

/* Step 2: Zoom into the Composer screenshot */
@keyframes hiwZoomIn {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.6);
  }
}

@keyframes hiwPinPop {
  0% {
    transform: scale(0);
  }

  70% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes hiwPinPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(15, 113, 242, 0.5);
  }

  100% {
    box-shadow: 0 0 0 8px rgba(15, 113, 242, 0);
  }
}

@keyframes hiwGlowIn {
  0% {
    opacity: 0;
    border-color: rgba(15, 113, 242, 0);
  }

  100% {
    opacity: 1;
    border-color: rgba(15, 113, 242, 0.5);
  }
}

@keyframes hiwGlowPulse {

  0%,
  100% {
    border-color: rgba(15, 113, 242, 0.3);
    box-shadow: inset 0 0 20px rgba(15, 113, 242, 0.05);
  }

  50% {
    border-color: rgba(15, 113, 242, 0.6);
    box-shadow: inset 0 0 30px rgba(15, 113, 242, 0.1);
  }
}

@keyframes hiwScanSweep {
  0% {
    top: 0;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

@keyframes hiwMarkerGlow {

  0%,
  100% {
    filter: drop-shadow(0 0 4px rgba(15, 113, 242, 0.3));
  }

  50% {
    filter: drop-shadow(0 0 10px rgba(15, 113, 242, 0.7));
  }
}

@keyframes hiwDocFan {
  0% {
    transform: scale(0);
  }

  70% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes hiwBrowserSlide {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hiwFadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* Step 3: Wireframe grid draw */
@keyframes hiwGridDraw {
  0% {
    stroke-dashoffset: 200;
  }

  100% {
    stroke-dashoffset: 0;
  }
}


/* =============================================================
   LEGAL / POLICY PAGES
   ============================================================= */

.legal-page {
  width: 100%;
  max-width: 100%;
  padding: 100px 24px;
  min-height: 60vh;
  box-sizing: border-box;
  overflow: visible;
}

.legal-page__container {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.legal-page__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
}

.legal-page__content {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
}

.legal-page__content h2 {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2.5rem 0 1rem;
}

.legal-page__content h3 {
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 2rem 0 0.75rem;
}

.legal-page__content p {
  margin-bottom: 1rem;
}

.legal-page__content ul,
.legal-page__content ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

.legal-page__content li {
  margin-bottom: 0.5rem;
}

.legal-page__content strong {
  color: var(--text-primary);
}

.legal-page__content a {
  color: var(--accent);
  text-decoration: none;
}

.legal-page__content a:hover {
  text-decoration: underline;
}

.legal-page__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.legal-page__content th,
.legal-page__content td {
  border: 1px solid var(--border-subtle);
  padding: 0.75rem 1rem;
  text-align: left;
}

.legal-page__content th {
  color: var(--text-primary);
  background: var(--bg-card);
}

@media (max-width: 768px) {
  .legal-page {
    padding: var(--section-padding-mobile) 16px;
  }
}

/* Step 3: Region fade-in */
@keyframes hiwRegionIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Step 3: Region yellow → green resolve */
@keyframes hiwRegionResolve {
  0% {
    background: rgba(234, 179, 8, 0.08);
    border-color: rgba(234, 179, 8, 0.4);
  }

  100% {
    background: rgba(34, 197, 94, 0.08);
    border-color: rgba(34, 197, 94, 0.4);
  }
}

/* Step 3: Measurement pop-in */
@keyframes hiwMeasurePop {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  60% {
    transform: scale(1.15);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Step 3: Measurement yellow → green resolve */
@keyframes hiwMeasureResolve {
  0% {
    color: #eab308;
    background: rgba(234, 179, 8, 0.15);
    border-color: rgba(234, 179, 8, 0.3);
  }

  100% {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
  }
}

/* Step 3: Progress bar fill */
@keyframes hiwProgressFill {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

/* Step 3: HUD status dot pulse */
@keyframes hiwStatusPulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* Step 3: Final check pop */
@keyframes hiwFinalCheck {
  0% {
    transform: translate(-50%, -50%) scale(0);
  }

  60% {
    transform: translate(-50%, -50%) scale(1.2);
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}


/* =============================================================
   RESPONSIVE — 768px breakpoint
   ============================================================= */
@media (max-width: 768px) {

  /* How It Works */
  .hiw {
    padding: var(--section-padding-mobile) 16px;
  }

  .hiw__header {
    margin-bottom: 32px;
  }

  .hiw__title {
    font-size: 28px;
  }

  .hiw__subtitle {
    font-size: 15px;
  }

  /* Keep 16:9 so Step 3 photo positions stay correct */
  .hiw__stage {
    border-radius: var(--radius-md);
  }

  .hiw__overlay {
    padding: 32px 20px 20px;
    gap: 6px;
  }

  .hiw__step-badge {
    font-size: 11px;
    padding: 4px 10px;
  }

  .hiw__step-title {
    font-size: 18px;
  }

  .hiw__step-desc {
    font-size: 13px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Step 1 desktop — compact for mobile */
  .hiw-import__window {
    left: 28%;
    top: 4%;
    right: 3%;
    bottom: 4%;
    border-radius: 6px;
  }

  .hiw-import__titlebar {
    padding: 4px 6px;
    gap: 4px;
  }

  .hiw-import__wdot {
    width: 6px;
    height: 6px;
  }

  .hiw-import__titlebar-text {
    font-size: 8px;
    margin-left: 4px;
  }

  .hiw-import__desktop-files {
    top: 18%;
    left: 2%;
  }

  .hiw-import__drag {
    top: 18%;
    left: 2%;
  }

  .hiw-import__file-card {
    padding: 5px;
    gap: 3px;
  }

  .hiw-import__thumb {
    width: 32px;
    height: 32px;
  }

  .hiw-import__filename {
    font-size: 7px;
  }

  .hiw-import__formats {
    gap: 2px;
    max-width: 70px;
  }

  .hiw-import__fmt {
    font-size: 6px;
    padding: 1px 3px;
  }

  .hiw-import__cursor {
    width: 12px;
    height: 12px;
  }

  .hiw-report {
    width: 65%;
  }

  /* Nav: ensure clickable with proper touch targets */
  .hiw__nav {
    margin-top: 24px;
    gap: 8px;
    position: relative;
    z-index: 5;
  }

  .hiw__arrow {
    width: 44px;
    height: 44px;
  }

  .hiw__dots {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }

  .hiw__dot {
    padding: 8px 12px;
    font-size: 12px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  /* Announcement Banner */
  .announcement-banner {
    padding: var(--section-padding-mobile) 24px;
  }

  .announcement-banner__container {
    flex-direction: column;
    gap: 32px;
  }

  .announcement-banner__visual {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .announcement-banner__link {
    width: 100%;
    text-align: center;
  }

  /* Primary Features */
  .feature-primary {
    min-height: auto;
    padding: var(--section-padding-mobile) 24px;
  }

  .feature-primary__container,
  .feature-primary--reversed .feature-primary__container {
    flex-direction: column;
    gap: 40px;
  }

  .feature-primary__image {
    width: 100%;
  }

  .feature-primary__title {
    font-size: 28px;
  }

  /* Showcase */
  .showcase {
    padding: var(--section-padding-mobile) 24px;
  }

  .showcase__title {
    font-size: 28px;
  }

  /* Feature Grid */
  .feature-grid {
    padding: var(--section-padding-mobile) 24px;
  }

  .feature-grid__title {
    font-size: 28px;
  }

  .feature-grid__grid {
    grid-template-columns: 1fr;
  }

  /* Testimonials Preview */
  .testimonials-preview {
    padding: var(--section-padding-mobile) 24px;
  }

  .testimonials-preview__title {
    font-size: 28px;
  }

  .testimonials-preview__grid {
    grid-template-columns: 1fr;
  }

  /* Testimonials Full Page */
  .testimonials-page__header {
    padding: var(--section-padding-mobile) 24px 40px;
  }

  .testimonials-page__title {
    font-size: 32px;
  }

  .testimonial-entry {
    flex-direction: column;
    padding: 48px 0;
    gap: 32px;
  }

  .testimonial-entry__author {
    order: -1;
    position: static;
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 16px;
  }

  .testimonial-entry__photo {
    width: 56px;
    height: 56px;
  }

  .testimonial-entry__quote-mark {
    font-size: 40px;
  }

  /* FAQ Full Page */
  .faq-page__header {
    padding: var(--section-padding-mobile) 24px 40px;
  }

  .faq-page__title {
    font-size: 32px;
  }

  /* CTA */
  .cta {
    padding: var(--section-padding-mobile) 24px;
  }

  .cta__title {
    font-size: 30px;
  }

  /* Contact */
  .contact-page {
    padding: var(--section-padding-mobile) 16px;
  }

  .contact-page__container {
    flex-direction: column;
    gap: 40px;
  }

  .contact-page__form-column {
    width: 100%;
  }

  .contact-page__title {
    font-size: 28px;
  }

  .contact-page__required-note {
    margin-top: 24px;
    margin-bottom: 16px;
  }

  .contact-form {
    gap: 14px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-form__input,
  .contact-form__select,
  .contact-form__textarea {
    padding: 12px 14px;
    font-size: 14px;
  }

  .contact-form__textarea {
    min-height: 120px;
  }

  .contact-form__submit {
    width: 100%;
    margin-top: 20px;
    padding: 14px 32px;
  }

  .contact-form__success {
    min-height: 280px;
    padding: 32px 0;
  }

  .contact-form__success-title {
    font-size: 1.5rem;
  }

  .contact-page__info-column {
    width: 100%;
    order: 1;
  }

  .contact-page__form-column {
    order: 2;
  }

  .contact-page__image {
    aspect-ratio: 16 / 9;
  }

  .contact-details {
    margin-top: 24px;
    gap: 16px;
  }
}


/* =============================================================
   HERO SECTION — immersive two-column with AR showcase
   ============================================================= */
.hero {
  position: relative;
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  overflow: hidden;
}

/* --- Container --- */
.hero__container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
}

/* --- Text column --- */
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* --- Staggered fade-up --- */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__title,
.hero__subtitle,
.hero__buttons,
.hero__trust {
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__title {
  animation-delay: 0.1s;
}

.hero__subtitle {
  animation-delay: 0.25s;
}

.hero__buttons {
  animation-delay: 0.4s;
}

.hero__trust {
  animation-delay: 0.55s;
}

/* --- Title with gradient --- */
.hero__title {
  font-family: var(--font-family);
  font-size: 72px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero__title-line {
  display: block;
  color: var(--text-primary);

}

.hero__title-gradient {
  display: block;
  white-space: nowrap;
  background: linear-gradient(135deg, #093060 0%, #0c5dd4 50%, #0F71F2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Subtitle --- */
.hero__subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 520px;
}

/* --- Buttons --- */
.hero__buttons {
  display: flex;
  gap: 16px;
  margin-top: 4px;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-lg);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.hero__btn--primary {
  background: linear-gradient(135deg, #0c5dd4 0%, #0F71F2 100%);
  color: var(--text-primary);
}

.hero__btn--primary:hover {
  background: linear-gradient(135deg, #0a4fb8 0%, #0c5dd4 100%);
}

.hero__btn--glass {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50px;
  color: var(--text-primary);
  padding: 14px 28px;
}

.hero__btn--glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

/* --- Play icon inside glass button --- */
.hero__btn-play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- Trust section --- */
.hero__trust {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero__trust-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  white-space: nowrap;
}

.hero__trust-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__trust-logo {
  display: inline-flex;
  align-items: center;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.hero__trust-logo:hover {
  opacity: 0.8;
}

.hero__trust-logo img {
  display: block;
  height: 28px;
  width: auto;
}

/* =============================================================
   HERO — Visual column (AR showcase)
   ============================================================= */
.hero__visual {
  position: relative;
  opacity: 0;
  animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

/* --- Glass card wrapper --- */
.hero__glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 4px;
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.5),
    0 0 120px rgba(15, 113, 242, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: heroCardFloat 8s ease-in-out infinite;
}

@keyframes heroCardFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(0.5deg);
  }
}

/* --- AR viewport --- */
.hero__ar-viewport {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
}

.hero__ar-viewport img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

/* --- AR header bar --- */
.hero__ar-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
  z-index: 3;
}

.hero__ar-dots {
  display: flex;
  gap: 6px;
}

.hero__ar-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero__ar-dots span:nth-child(1) {
  background: #ef4444;
}

.hero__ar-dots span:nth-child(2) {
  background: #f59e0b;
}

.hero__ar-dots span:nth-child(3) {
  background: #10b981;
}

.hero__ar-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #10b981;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__ar-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  animation: heroPulse 2s ease-in-out infinite;
}

@keyframes heroPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

/* --- Scan corners --- */
.hero__scan-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  z-index: 4;
  opacity: 0.7;
}

.hero__scan-corner--tl {
  top: 12px;
  left: 12px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}

.hero__scan-corner--tr {
  top: 12px;
  right: 12px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}

.hero__scan-corner--bl {
  bottom: 12px;
  left: 12px;
  border-bottom: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}

.hero__scan-corner--br {
  bottom: 12px;
  right: 12px;
  border-bottom: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}

/* --- Scan line --- */
.hero__scan-line {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 15px rgba(15, 113, 242, 0.5), 0 0 40px rgba(15, 113, 242, 0.2);
  z-index: 4;
  animation: heroScanLine 3.5s linear infinite;
  opacity: 0.8;
}

@keyframes heroScanLine {
  0% {
    top: 12px;
    opacity: 0;
  }

  5% {
    opacity: 0.8;
  }

  90% {
    opacity: 0.8;
  }

  100% {
    top: calc(100% - 12px);
    opacity: 0;
  }
}

/* --- Bottom gradient line --- */
.hero__line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, 80vw);
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(15, 113, 242, 0.2) 30%,
      rgba(15, 113, 242, 0.4) 50%,
      rgba(15, 113, 242, 0.2) 70%,
      transparent);
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {

  .hero__glass-card,
  .hero__scan-line,
  .hero__ar-status-dot,
  .hero__title,
  .hero__subtitle,
  .hero__buttons,
  .hero__trust,
  .hero__visual {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero__scan-line {
    display: none;
  }
}

/* --- Responsive: tablet --- */
@media (max-width: 1024px) {
  .hero {
    padding: 60px 24px 80px;
  }

  .hero__container {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 680px;
  }

  .hero__content {
    align-items: center;
    text-align: center;
  }

  .hero__subtitle {
    max-width: 100%;
  }

  .hero__buttons {
    justify-content: center;
  }

  .hero__trust {
    justify-content: center;
  }

}

/* --- Responsive: mobile --- */
@media (max-width: 768px) {
  .hero {
    min-height: calc(100vh - 84px);
    padding: var(--section-padding-mobile) 20px;
  }

  .hero__title {
    font-size: clamp(2.25rem, 10vw, 3rem);
  }

  .hero__title-gradient {
    white-space: normal;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .hero__buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero__btn {
    width: 100%;
    justify-content: center;
  }

  .hero__glass-card {
    border-radius: 16px;
    padding: 3px;
  }

  .hero__ar-viewport {
    border-radius: 13px;
  }


}


/* =============================================================
   TRUST STRIP
   ============================================================= */

.trust-strip {
  position: relative;
  background: var(--bg-section-alt);
  border-bottom: 1px solid var(--border-subtle);
  padding: 20px 24px;
}

.trust-strip__container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 0;
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  position: relative;
}

.trust-strip__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: var(--border-input);
}

.trust-strip__icon {
  color: var(--accent);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.trust-strip__icon--emoji {
  font-size: 1rem;
  line-height: 1;
}

.trust-strip__text {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .trust-strip {
    padding: 16px 20px;
  }

  .trust-strip__item {
    padding: 4px 16px;
  }

  .trust-strip__item:not(:last-child)::after {
    display: none;
  }

  .trust-strip__text {
    font-size: 0.75rem;
  }
}


/* =============================================================
   ABOUT PAGE
   ============================================================= */

/* --- Page Hero --- */
.about-hero {
  position: relative;
  padding: 120px 24px 80px;
  text-align: center;
}

.about-hero__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.about-hero__label {
  display: block;
  font-size: 13px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  margin-bottom: 24px;
}

.about-hero__title {
  font-family: var(--font-family);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
}

/* --- Origin Story --- */
.about-story {
  padding: var(--section-padding) 24px;
}

.about-story__container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--gap-columns);
}

.about-story__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-story__text p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.about-story__image {
  flex: 1;
}

.about-story__image-container {
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-placeholder);
}

.about-story__image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- About Page Responsive --- */
@media (max-width: 768px) {
  .about-hero {
    padding: 80px 24px 60px;
  }

  .about-hero__title {
    font-size: 32px;
  }

  .about-story__container {
    flex-direction: column;
  }
}


/* =============================================================
   BLOG PAGE — listing grid + pagination
   ============================================================= */
.blog-page__header {
  padding: 80px 24px 60px;
  text-align: center;
}

.blog-page__title {
  font-size: 44px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.blog-page__subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 16px auto 0;
}

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

.blog-page__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-page__empty {
  text-align: center;
  color: var(--text-secondary);
  font-size: 17px;
  padding: 80px 0;
}

/* Pagination */
.blog-page__pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.blog-page__pagination .page-numbers {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-page__pagination .page-numbers li {
  list-style: none;
}

.blog-page__pagination .page-numbers a,
.blog-page__pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.blog-page__pagination .page-numbers a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.blog-page__pagination .page-numbers span.current {
  color: var(--text-primary);
  background: var(--accent-subtle-bg);
  border: 1px solid var(--accent-subtle-border);
}

.blog-page__pagination .prev,
.blog-page__pagination .next {
  font-size: 14px;
  font-weight: 500;
}


/* =============================================================
   BLOG CARD — reusable post card
   ============================================================= */
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease;
}

.blog-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.blog-card__image {
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  background: var(--bg-placeholder);
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-card__date {
  font-size: 13px;
  color: var(--text-tertiary);
  font-weight: 500;
}

.blog-card__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.blog-card__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-subtle-bg);
  border: 1px solid var(--accent-subtle-border);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  line-height: 1.5;
}

.blog-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
}

.blog-card__excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.blog-card__read-more {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  margin-top: auto;
}


/* =============================================================
   SINGLE POST — individual blog post
   ============================================================= */
.single-post__header {
  padding: 60px 24px 40px;
}

.single-post__header-inner {
  max-width: 800px;
  margin: 0 auto;
}

.single-post__back {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.2s ease;
}

.single-post__back:hover {
  color: var(--text-primary);
}

.single-post__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.single-post__date {
  font-size: 14px;
  color: var(--text-tertiary);
  font-weight: 500;
}

.single-post__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.single-post__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-subtle-bg);
  border: 1px solid var(--accent-subtle-border);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  line-height: 1.5;
  text-decoration: none;
  transition: background 0.2s ease;
}

.single-post__tag:hover {
  background: rgba(15, 113, 242, 0.18);
}

.single-post__title {
  font-family: var(--font-family);
  font-size: 44px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.single-post__hero {
  padding: 0 24px;
  margin-bottom: 48px;
}

.single-post__hero-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-placeholder);
}

.single-post__hero-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content area */
.single-post__content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 80px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.single-post__content h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 48px 0 16px;
  line-height: 1.3;
}

.single-post__content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 40px 0 12px;
  line-height: 1.3;
}

.single-post__content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 32px 0 10px;
  line-height: 1.4;
}

.single-post__content p {
  margin: 0 0 24px;
}

.single-post__content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.single-post__content a:hover {
  color: var(--accent-hover);
}

.single-post__content ul,
.single-post__content ol {
  margin: 0 0 24px;
  padding-left: 24px;
}

.single-post__content li {
  margin-bottom: 8px;
}

.single-post__content blockquote {
  margin: 32px 0;
  padding: 20px 24px;
  border-left: 3px solid var(--accent);
  background: var(--accent-subtle-bg);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
}

.single-post__content blockquote p:last-child {
  margin-bottom: 0;
}

.single-post__content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 24px 0;
  display: block;
}

.single-post__content figure {
  margin: 32px 0;
}

.single-post__content figure img {
  margin: 0;
}

.single-post__content figcaption {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-top: 10px;
  text-align: center;
}

.single-post__content pre {
  margin: 24px 0;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow-x: auto;
  font-size: 14px;
  line-height: 1.6;
}

.single-post__content code {
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 0.9em;
  background: var(--bg-card);
  padding: 2px 6px;
  border-radius: 4px;
}

.single-post__content pre code {
  background: none;
  padding: 0;
  font-size: inherit;
}


/* --- Author Bio --- */
.single-post__author {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  max-width: 720px;
  margin: 48px auto 0;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.single-post__author-avatar img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.single-post__author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.single-post__author-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.single-post__author-title {
  font-size: 14px;
  color: var(--accent);
}

.single-post__author-bio {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: 4px;
}

/* --- Blog Responsive --- */
@media (max-width: 1024px) {
  .blog-page__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-page__header {
    padding: var(--section-padding-mobile) 24px 40px;
  }

  .blog-page__title {
    font-size: 32px;
  }

  .blog-page__grid {
    grid-template-columns: 1fr;
  }

  .single-post__title {
    font-size: 32px;
  }

  .single-post__content {
    font-size: 16px;
  }

  .single-post__content h2 {
    font-size: 24px;
  }

  .single-post__content h3 {
    font-size: 20px;
  }

  .single-post__author {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}


/* =============================================================
   BREADCRUMBS — visible navigation for inner pages
   ============================================================= */
.breadcrumbs {
  width: 100%;
  padding: 16px 24px;
}

.breadcrumbs__container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.breadcrumbs__link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs__link:hover {
  color: var(--text-primary);
}

.breadcrumbs__separator {
  color: var(--text-tertiary);
}

.breadcrumbs__current {
  color: var(--text-tertiary);
}


/* =============================================================
   FAQ FULL PAGE
   ============================================================= */
.faq-page {
  padding-bottom: var(--section-padding);
}

.faq-page__header {
  padding: 80px 24px 60px;
  text-align: center;
}

.faq-page__title {
  font-size: 44px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.faq-page__subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 20px auto 0;
}

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

/* =============================================================
   FAQ SECTION — accordion with <details>/<summary>
   ============================================================= */
.faq-section {
  width: 100%;
  padding: var(--section-padding) 24px;
}

.faq-section.feature-primary--alt {
  background: var(--bg-section-alt);
}

.faq-section__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.faq-section__header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-section__title {
  font-size: 38px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.faq-section__subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 20px auto 0;
}

.faq-section__list {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.faq-section__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-section__item {
  width: 100%;
}

.faq-section__item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-section__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.5;
  list-style: none;
}

.faq-section__question::-webkit-details-marker {
  display: none;
}

.faq-section__question::after {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%238a8a8a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.25s ease;
}

.faq-section__item[open]>.faq-section__question::after {
  transform: rotate(180deg);
}

.faq-section__answer {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.75;
}

.faq-section__answer p {
  margin: 0 0 12px;
}

.faq-section__answer p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .faq-section {
    padding: var(--section-padding-mobile) 16px;
  }

  .faq-section__title {
    font-size: 28px;
  }

  .faq-section__question {
    padding: 16px 20px;
    font-size: 15px;
  }

  .faq-section__list {
    flex-direction: column;
  }

  .faq-section__answer {
    padding: 0 20px 16px;
    font-size: 14px;
  }
}


/* =============================================================
   PRODUCT SUMMARY — "At a Glance" facts grid
   ============================================================= */
.product-summary {
  width: 100%;
  padding: var(--section-padding) 24px;
}

.product-summary.feature-primary--alt {
  background: var(--bg-section-alt);
}

.product-summary__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.product-summary__header {
  text-align: center;
  margin-bottom: 48px;
}

.product-summary__title {
  font-size: 38px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.product-summary__subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 20px auto 0;
}

.product-summary__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.product-summary__card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.product-summary__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: var(--accent-subtle-bg);
  border-radius: var(--radius-sm);
}

.product-summary__icon--emoji {
  font-size: 20px;
}

.product-summary__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.product-summary__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

.product-summary__value {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .product-summary {
    padding: var(--section-padding-mobile) 16px;
  }

  .product-summary__title {
    font-size: 28px;
  }

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

@media (max-width: 480px) {
  .product-summary__grid {
    grid-template-columns: 1fr;
  }
}


/* =============================================================
   DEFINITION SECTION — prose content block
   ============================================================= */
.definition-section {
  width: 100%;
  padding: var(--section-padding) 24px;
}

.definition-section.feature-primary--alt {
  background: var(--bg-section-alt);
}

.definition-section__container {
  max-width: 800px;
  margin: 0 auto;
}

.definition-section__header {
  text-align: center;
  margin-bottom: 40px;
}

.definition-section__title {
  font-size: 38px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.definition-section__subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 20px auto 0;
}

.definition-section__content {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.8;
}

.definition-section__content p {
  margin: 0 0 20px;
}

.definition-section__content p:last-child {
  margin-bottom: 0;
}

.definition-section__content strong {
  color: var(--text-primary);
  font-weight: 600;
}

@media (max-width: 768px) {
  .definition-section {
    padding: var(--section-padding-mobile) 16px;
  }

  .definition-section__title {
    font-size: 28px;
  }

  .definition-section__content {
    font-size: 15px;
  }
}


/* ===== PRODUCT PAGES ===== */

/* --- Product Hero --- */
.product-hero {
  padding: var(--section-padding) 24px;
  text-align: center;
}

.product-hero__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.product-hero__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: var(--radius-md);
  background: var(--accent-subtle-bg);
  border: 1px solid var(--accent-subtle-border);
}

.product-hero__logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.product-hero__title {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.product-hero__tagline {
  font-size: 20px;
  color: var(--text-secondary);
  margin: 0 0 40px;
  line-height: 1.6;
}

.product-hero__resources-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-tertiary);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.2s ease;
}

.product-hero__resources-link:hover {
  color: var(--accent);
}

.product-hero__image {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.product-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Product Overview --- */
.product-overview {
  padding: var(--section-padding) 24px;
  background: var(--bg-section-alt);
}

.product-overview__container {
  max-width: 800px;
  margin: 0 auto;
}

.product-overview__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 32px;
}

.product-overview__content {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.product-overview__content p {
  margin: 0 0 20px;
}

.product-overview__content p:last-child {
  margin-bottom: 0;
}

.product-overview__content strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* --- Product Capabilities --- */
.product-capabilities {
  padding: var(--section-padding) 24px;
}

.product-capabilities__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.product-capabilities__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 40px;
}

.product-capabilities__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 48px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-capabilities__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.product-capabilities__check {
  flex-shrink: 0;
  margin-top: 3px;
}

/* --- Product Specs --- */
.product-specs {
  padding: var(--section-padding) 24px;
}

.product-specs__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.product-specs__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 40px;
}

.product-specs__list {
  margin: 0;
  padding: 0;
}

.product-specs__row {
  display: flex;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.product-specs__row:first-child {
  border-top: 1px solid var(--border-subtle);
}

.product-specs__label {
  width: 200px;
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.product-specs__value {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0;
}

/* --- Product Archive --- */
.product-archive {
  padding: var(--section-padding) 24px;
}

.product-archive__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.product-archive__header {
  text-align: center;
  margin-bottom: 60px;
}

.product-archive__title {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.product-archive__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.product-archive__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.product-archive__card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.2s ease;
}

.product-archive__card:hover {
  border-color: var(--accent-subtle-border);
}

.product-archive__card-image {
  aspect-ratio: 2 / 1;
  overflow: hidden;
}

.product-archive__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-archive__card-body {
  padding: 24px;
}

.product-archive__card-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.product-archive__card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-sm);
  background: var(--accent-subtle-bg);
  border: 1px solid var(--accent-subtle-border);
}

.product-archive__card-logo-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.product-archive__card-info {
  min-width: 0;
}

.product-archive__card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.product-archive__card-tagline {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 4px 0 0;
  line-height: 1.5;
}

.product-archive__card-link {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
}

/* --- Product Pages Responsive --- */
@media (max-width: 768px) {
  .product-hero {
    padding: var(--section-padding-mobile) 16px;
  }

  .product-hero__title {
    font-size: 32px;
  }

  .product-hero__tagline {
    font-size: 17px;
    margin-bottom: 28px;
  }

  .product-overview {
    padding: var(--section-padding-mobile) 16px;
  }

  .product-overview__title {
    font-size: 26px;
  }

  .product-overview__content {
    font-size: 15px;
  }

  .product-capabilities {
    padding: var(--section-padding-mobile) 16px;
  }

  .product-capabilities__title {
    font-size: 26px;
  }

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

  .product-specs {
    padding: var(--section-padding-mobile) 16px;
  }

  .product-specs__title {
    font-size: 26px;
  }

  .product-specs__row {
    flex-direction: column;
    gap: 4px;
  }

  .product-specs__label {
    width: auto;
  }

  .product-archive {
    padding: var(--section-padding-mobile) 16px;
  }

  .product-archive__title {
    font-size: 32px;
  }

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

/* =============================================
   INDUSTRIES SHOWCASE (homepage section)
   ============================================= */

.industries-showcase {
  width: 100%;
  padding: var(--section-padding) 24px;
}

.industries-showcase__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.industries-showcase__heading {
  text-align: center;
  margin-bottom: 60px;
}

.industries-showcase__title {
  font-size: 38px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.industries-showcase__subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 20px auto 0;
}

.industries-showcase__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.industries-showcase__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px;
  text-decoration: none;
  transition: border-color 0.2s ease;
}

.industries-showcase__card:hover {
  border-color: var(--accent-subtle-border);
}

.industries-showcase__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-subtle-bg);
  border: 1px solid var(--accent-subtle-border);
  border-radius: var(--radius-sm);
  color: var(--accent);
  margin-bottom: 4px;
}

.industries-showcase__icon svg {
  width: 24px;
  height: 24px;
}

.industries-showcase__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin: 0;
}

.industries-showcase__excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.industries-showcase__link {
  font-size: 14px;
  color: var(--accent);
  margin-top: auto;
  padding-top: 4px;
}

.industries-showcase__footer {
  text-align: center;
  margin-top: 40px;
}

.industries-showcase__view-all {
  display: inline-block;
  font-size: 15px;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid var(--accent);
  border-radius: var(--radius-full);
  padding: 10px 28px;
  transition: background 0.2s ease;
}

.industries-showcase__view-all:hover {
  background: var(--accent-subtle-bg);
}

@media (max-width: 768px) {
  .industries-showcase__grid {
    grid-template-columns: 1fr;
  }

  .industries-showcase__title {
    font-size: 28px;
  }
}

/* =============================================
   INDUSTRY ARCHIVE PAGE
   ============================================= */

.industry-archive {
  padding: var(--section-padding) 24px;
}

.industry-archive__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.industry-archive__header {
  text-align: center;
  margin-bottom: 60px;
}

.industry-archive__title {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.industry-archive__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.industry-archive__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.industry-archive__card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.2s ease;
}

.industry-archive__card:hover {
  border-color: var(--accent-subtle-border);
}

.industry-archive__card-image {
  aspect-ratio: 2 / 1;
  overflow: hidden;
}

.industry-archive__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.industry-archive__card-body {
  padding: 24px;
}

.industry-archive__card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px;
}

.industry-archive__card-excerpt {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0 0 16px;
  line-height: 1.6;
}

.industry-archive__card-link {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 768px) {
  .industry-archive {
    padding: var(--section-padding-mobile) 16px;
  }

  .industry-archive__title {
    font-size: 32px;
  }

  .industry-archive__grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   INDUSTRY LANDING PAGE
   ============================================= */

.industry-hero {
  padding: var(--section-padding) 24px;
  text-align: center;
}

.industry-hero__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.industry-hero__title {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.industry-hero__subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  margin: 0 0 40px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.industry-hero__image {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.industry-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Industry Intro --- */
.industry-intro {
  padding: var(--section-padding) 24px;
  background: var(--bg-section-alt);
}

.industry-intro__container {
  max-width: 800px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.industry-intro__container p {
  margin: 0 0 20px;
}

.industry-intro__container p:last-child {
  margin-bottom: 0;
}

.industry-intro__container strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* =============================================
   DOWNLOAD COMPOSER PAGE
   ============================================= */

.dl-composer {
  padding: var(--section-padding) 24px;
}

.dl-composer__container {
  max-width: 720px;
  margin: 0 auto;
}

/* Header */
.dl-composer__header {
  text-align: center;
  margin-bottom: 48px;
}

.dl-composer__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: var(--radius-md);
  background: var(--accent-subtle-bg);
  border: 1px solid var(--accent-subtle-border);
}

.dl-composer__title {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.dl-composer__tagline {
  font-size: 18px;
  color: var(--text-secondary);
  margin: 0;
}

/* Download Card */
.dl-composer__card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin-bottom: 60px;
}

.dl-composer__loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 15px;
}

.dl-composer__loading p {
  margin: 0;
}

.dl-composer__spinner {
  width: 28px;
  height: 28px;
  border: 2px solid var(--border-subtle);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: dlSpin 0.8s linear infinite;
}

@keyframes dlSpin {
  to { transform: rotate(360deg); }
}

.dl-composer__error {
  color: var(--text-secondary);
  font-size: 15px;
}

.dl-composer__version-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.dl-composer__version-badge {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-subtle-bg);
  border: 1px solid var(--accent-subtle-border);
  padding: 4px 14px;
  border-radius: var(--radius-full);
}

.dl-composer__version-date {
  font-size: 14px;
  color: var(--text-secondary);
}

.dl-composer__download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: linear-gradient(135deg, #1e40af, #3b82f6, #60a5fa);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dl-composer__download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.dl-composer__platform {
  font-size: 13px;
  color: var(--text-tertiary);
  margin: 16px 0 0;
}

/* Other versions dropdown */
.dl-composer__formats {
  margin-top: 24px;
}

.dl-composer__formats-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-family);
}

.dl-composer__formats-toggle svg {
  transition: transform 0.2s ease;
}

.dl-composer__formats-toggle--open svg {
  transform: rotate(180deg);
}

.dl-composer__formats-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.dl-composer__format-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  background: transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
  min-width: 220px;
  justify-content: center;
}

.dl-composer__format-item:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.dl-composer__enterprise-note {
  font-size: 12px;
  color: var(--text-tertiary);
  margin: 12px auto 0;
  max-width: 460px;
  line-height: 1.5;
}

/* Tabs */
.dl-composer__tabs {
  margin-top: 60px;
}

.dl-composer__tab-bar {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 0;
}

.dl-composer__tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  cursor: pointer;
  font-family: var(--font-family);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.dl-composer__tab:hover {
  color: var(--text-primary);
}

.dl-composer__tab--active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.dl-composer__panel {
  padding-top: 8px;
}

/* Changelog entries */
.dl-changelog-entry {
  padding: 24px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.dl-changelog-entry__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.dl-changelog-entry__version {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.dl-changelog-entry__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.dl-changelog-entry__label--new {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.dl-changelog-entry__label--fix {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.dl-changelog-entry__label--improvement {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
}

.dl-changelog-entry__date {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-left: auto;
}

.dl-changelog-entry__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dl-changelog-entry__list li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.dl-changelog-entry__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-tertiary);
}

/* Checksum entries */
.dl-checksum-entry {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.dl-checksum-entry__version {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.dl-checksum-row {
  margin-bottom: 12px;
}

.dl-checksum-row:last-child {
  margin-bottom: 0;
}

.dl-checksum-row__label {
  font-size: 13px;
  margin-bottom: 4px;
}

.dl-checksum-row__prefix {
  color: var(--text-tertiary);
}

.dl-checksum-row__file {
  color: var(--text-secondary);
  font-weight: 500;
}

.dl-checksum-row__hash {
  display: block;
  font-size: 12px;
  color: var(--text-tertiary);
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  word-break: break-all;
  cursor: pointer;
  transition: border-color 0.2s ease;
  font-family: 'SF Mono', 'Fira Code', 'Fira Mono', Menlo, Consolas, monospace;
}

.dl-checksum-row__hash:hover {
  border-color: var(--accent-subtle-border);
}

.dl-checksum-row__hash--copied {
  border-color: #22c55e;
}

/* Responsive */
@media (max-width: 768px) {
  .dl-composer {
    padding: var(--section-padding-mobile) 16px;
  }

  .dl-composer__title {
    font-size: 28px;
  }

  .dl-composer__card {
    padding: 28px 20px;
  }

  .dl-composer__download-btn {
    width: 100%;
    justify-content: center;
  }

  .dl-composer__format-item {
    width: 100%;
  }

  .dl-composer__tab {
    padding: 12px 16px;
    font-size: 14px;
  }

  .dl-changelog-entry__date {
    margin-left: 0;
    width: 100%;
  }

  .dl-checksum-row__hash {
    font-size: 11px;
  }
}

/* =============================================
   RESOURCES PAGE
   ============================================= */

.resources-page {
  padding: var(--section-padding) 24px;
}

.resources-page__header {
  text-align: center;
  max-width: var(--container-max);
  margin: 0 auto 60px;
}

.resources-page__title {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.resources-page__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.resources-page__section {
  max-width: var(--container-max);
  margin: 0 auto 60px;
}

.resources-page__section:last-child {
  margin-bottom: 0;
}

.resources-page__section-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.resources-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* --- Resource Card --- */
.resources-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.resources-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.resources-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: var(--radius-md);
  background: var(--accent-subtle-bg);
  border: 1px solid var(--accent-subtle-border);
}

.resources-card__logo-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.resources-card__info {
  min-width: 0;
}

.resources-card__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.resources-card__tagline {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 4px 0 0;
  line-height: 1.5;
}

.resources-card__links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
}

.resources-card__badge {
  display: inline-block;
  height: 44px;
  transition: opacity 0.2s ease;
}

.resources-card__badge:hover {
  opacity: 0.8;
}

.resources-card__badge svg {
  height: 44px;
  width: auto;
  display: block;
}

.resources-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--border-input);
  border-radius: var(--radius-sm);
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: var(--accent-subtle-bg);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.resources-card__link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text-primary);
}

/* --- Material card (horizontal layout) --- */
.resources-card--material {
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.resources-card--material .resources-card__image {
  width: 220px;
  min-width: 220px;
  max-width: 220px;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: auto;
}

.resources-card--material .resources-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.resources-card--material .resources-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  justify-content: center;
  flex: 1;
  min-width: 0;
}

.resources-card__desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.resources-card--material .resources-card__link {
  align-self: flex-start;
}

/* --- Resources Responsive --- */
@media (max-width: 768px) {
  .resources-page {
    padding: var(--section-padding-mobile) 16px;
  }

  .resources-page__title {
    font-size: 32px;
  }

  .resources-page__grid {
    grid-template-columns: 1fr;
  }

  .resources-card--material {
    flex-direction: column;
  }

  .resources-card--material .resources-card__image {
    width: 100%;
    min-width: 0;
    max-width: none;
    aspect-ratio: 16 / 9;
  }
}

/* --- Industry Responsive --- */
@media (max-width: 768px) {
  .industry-hero {
    padding: var(--section-padding-mobile) 16px;
  }

  .industry-hero__title {
    font-size: 32px;
  }

  .industry-hero__subtitle {
    font-size: 17px;
    margin-bottom: 28px;
  }

  .industry-intro {
    padding: var(--section-padding-mobile) 16px;
  }

  .industry-intro__container {
    font-size: 15px;
  }
}

/* =============================================================
   BLOG MEGA MENU — Refined dropdown matching Products mega style
   ============================================================= */

/* Hide any leftover sub-menu inside blog parent */
.supar-blogmega-parent>.sub-menu {
  display: none !important;
}

/* Ensure parent <li> is positioned */
.supar-blogmega-parent {
  position: relative !important;
}

/* ── Container ── */
.supar-blogmega {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 12px;
  z-index: 1000;
}

/* Show on hover */
.supar-blogmega-parent:hover>.supar-blogmega,
.supar-blogmega-parent:focus-within>.supar-blogmega {
  display: block;
  animation: blogmegaFadeIn 0.2s ease-out;
}

@keyframes blogmegaFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Hover bridge */
.supar-blogmega::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
}

/* ── The two-column row ── */
.supar-blogmega__row {
  display: flex;
  flex-direction: row;
  width: 620px;
  background: rgba(14, 14, 16, 0.97);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.3),
    0 8px 24px rgba(0, 0, 0, 0.4),
    0 32px 64px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

/* ── Column ── */
.supar-blogmega__col {
  flex: 1;
  min-width: 0;
  padding: 8px;
  display: flex;
  flex-direction: column;
}

.supar-blogmega__col:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── Column Header ── */
.supar-blogmega__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px 10px;
}

.supar-blogmega__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.3);
}

.supar-blogmega__all {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent, #3b82f6);
  opacity: 0.7;
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.supar-blogmega__all:hover {
  opacity: 1;
}

/* ── Card (post link) ── */
.supar-blogmega__card {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px;
  padding: 10px 10px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s ease;
  flex-direction: row;
  flex: 1;
}

.supar-blogmega__card:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* ── Thumbnail ── */
.supar-blogmega__thumb {
  display: block;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.supar-blogmega__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.supar-blogmega__thumb--empty {
  position: relative;
}

.supar-blogmega__thumb--empty::after {
  content: '';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(59, 130, 246, 0.03));
}

/* ── Card Body ── */
.supar-blogmega__card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1;
  padding-top: 2px;
}

.supar-blogmega__card-title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.15s ease;
}

.supar-blogmega__card:hover .supar-blogmega__card-title {
  color: #fff;
}

.supar-blogmega__card-date {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* ── Tags inside card ── */
.supar-blogmega__card-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.supar-blogmega__card-tag {
  font-size: 10px;
  font-weight: 500;
  color: var(--accent, #3b82f6);
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.15);
  padding: 1px 7px;
  border-radius: 20px;
  line-height: 1.6;
}

/* ── Footer link — matches products mega footer style ── */
.supar-blogmega__footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin: auto 6px 0;
  padding: 0;
}

.supar-blogmega__footer a {
  display: block !important;
  padding: 12px 12px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--accent) !important;
  text-decoration: none !important;
  background: transparent !important;
  border-radius: 0 !important;
  white-space: nowrap !important;
  transition: color 0.2s ease !important;
}

.supar-blogmega__footer a:hover {
  color: var(--accent-hover, #5b9ef5);
}

/* ── Responsive: hide on tablet/mobile ── */
@media (max-width: 1024px) {
  .supar-blogmega {
    display: none !important;
  }
}


/* Cards area takes all available space */
.supar-blogmega__cards {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* =============================================================
   SEARCH — header button
   ============================================================= */
.supar-header__search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  border-radius: 18px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
  transition: color 0.3s ease, background 0.3s ease;
  padding: 0;
}

.supar-header__search-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
}

.supar-header__search-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* =============================================================
   SEARCH — fullscreen overlay
   ============================================================= */
.supar-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
}

.supar-search-overlay[hidden] {
  display: none;
}

.supar-search-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.supar-search-overlay.active .supar-search-overlay__backdrop {
  opacity: 1;
}

.supar-search-overlay__panel {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin: 0 24px;
  background: rgba(20, 20, 20, 0.92);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border-input);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
  padding: 32px;
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.supar-search-overlay.active .supar-search-overlay__panel {
  opacity: 1;
  transform: translateY(0);
}

.supar-search-overlay__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--text-secondary);
  transition: background 0.2s ease, color 0.2s ease;
  padding: 0;
}

.supar-search-overlay__close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
}

.supar-search-overlay__close:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.supar-search-overlay__form {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-input);
  border: 1px solid var(--border-input);
  border-radius: var(--radius-md);
  padding: 0 20px;
  transition: border-color 0.2s ease;
}

.supar-search-overlay__form:focus-within {
  border-color: var(--accent-subtle-border);
}

.supar-search-overlay__icon {
  color: var(--text-secondary);
  flex-shrink: 0;
}

.supar-search-overlay__input {
  flex: 1;
  height: 60px;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 400;
  -webkit-appearance: none;
  appearance: none;
}

.supar-search-overlay__input::placeholder {
  color: var(--text-tertiary);
}

.supar-search-overlay__input::-webkit-search-decoration,
.supar-search-overlay__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.supar-search-overlay__hint {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-tertiary);
  text-align: center;
}

.supar-search-overlay__hint kbd {
  display: inline-block;
  padding: 1px 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  font-family: inherit;
  font-size: 11px;
  color: var(--text-secondary);
}

@media (max-width: 640px) {
  .supar-search-overlay {
    padding-top: 80px;
  }

  .supar-search-overlay__panel {
    padding: 24px 20px;
  }

  .supar-search-overlay__input {
    font-size: 16px;
    height: 52px;
  }
}

/* =============================================================
   SEARCH — mobile menu inline form (top of menu)
   ============================================================= */
.supar-mobile-menu__search {
  padding: 0 0 8px;
  margin-bottom: 4px;
}

.supar-mobile-menu__search-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0 16px;
  height: 44px;
  color: var(--text-secondary);
  transition: border-color 0.2s ease;
}

.supar-mobile-menu__search-row:focus-within {
  border-color: var(--accent-subtle-border);
}

.supar-mobile-menu__search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: 15px;
  -webkit-appearance: none;
  appearance: none;
}

.supar-mobile-menu__search-input::placeholder {
  color: var(--text-tertiary);
}

.supar-mobile-menu__search-input::-webkit-search-decoration,
.supar-mobile-menu__search-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

/* =============================================================
   SEARCH RESULTS PAGE
   ============================================================= */
.search-page__header {
  padding: 60px 24px 40px;
  text-align: center;
}

.search-page__query-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.search-page__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.search-page__title mark {
  background: none;
  color: var(--accent);
}

.search-page__count {
  font-size: 15px;
  color: var(--text-secondary);
  margin-top: 10px;
}

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

.search-results__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.search-result {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease;
}

.search-result:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.search-result__thumb {
  flex-shrink: 0;
  width: 120px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-placeholder);
}

.search-result__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.search-result__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search-result__meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-result__type {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-subtle-bg);
  border: 1px solid var(--accent-subtle-border);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.search-result__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
  margin: 0;
}

.search-result__excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.search-result__cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-top: 4px;
}

.search-page__no-results {
  text-align: center;
  padding: 80px 0 60px;
}

.search-page__no-results-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.search-page__no-results-text {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.search-page__inline-form {
  display: flex;
  align-items: center;
  max-width: 520px;
  margin: 0 auto;
  gap: 12px;
  background: var(--bg-input);
  border: 1px solid var(--border-input);
  border-radius: var(--radius-md);
  padding: 0 16px;
  transition: border-color 0.2s ease;
}

.search-page__inline-form:focus-within {
  border-color: var(--accent-subtle-border);
}

.search-page__inline-input {
  flex: 1;
  height: 52px;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: 16px;
  -webkit-appearance: none;
  appearance: none;
}

.search-page__inline-input::placeholder {
  color: var(--text-tertiary);
}

.search-page__inline-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--accent);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: #ffffff;
  flex-shrink: 0;
  transition: background 0.2s ease;
  padding: 0;
}

.search-page__inline-submit:hover {
  background: var(--accent-hover);
}

.search-page__pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.search-page__pagination .page-numbers {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.search-page__pagination .page-numbers li {
  list-style: none;
}

.search-page__pagination .page-numbers a,
.search-page__pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.search-page__pagination .page-numbers a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.search-page__pagination .page-numbers span.current {
  color: var(--text-primary);
  background: var(--accent-subtle-bg);
  border: 1px solid var(--accent-subtle-border);
}

@media (max-width: 768px) {
  .search-result {
    flex-direction: column;
    gap: 16px;
  }

  .search-result__thumb {
    width: 100%;
    height: 160px;
  }

  .search-page__title {
    font-size: 26px;
  }
}


/* =============================================================
   404 PAGE
   ============================================================= */

.error-404 {
  padding: 120px 24px var(--section-padding);
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.error-404__container {
  max-width: 560px;
  margin: 0 auto;
}

.error-404__code {
  display: block;
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text-tertiary);
  line-height: 1;
  margin-bottom: 16px;
}

.error-404__title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 12px;
}

.error-404__text {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin: 0 0 40px;
  line-height: 1.6;
}

.error-404__search {
  display: flex;
  align-items: center;
  max-width: 480px;
  margin: 0 auto 24px;
  gap: 12px;
  background: var(--bg-input);
  border: 1px solid var(--border-input);
  border-radius: var(--radius-md);
  padding: 0 16px;
  transition: border-color 0.2s ease;
}

.error-404__search:focus-within {
  border-color: var(--accent-subtle-border);
}

.error-404__search-input {
  flex: 1;
  height: 52px;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: 16px;
  -webkit-appearance: none;
  appearance: none;
}

.error-404__search-input::placeholder {
  color: var(--text-tertiary);
}

.error-404__search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--accent);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: #ffffff;
  flex-shrink: 0;
  transition: background 0.2s ease;
  padding: 0;
}

.error-404__search-btn:hover {
  background: var(--accent-hover);
}

.error-404__home-link {
  display: inline-block;
  font-size: 0.9375rem;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

.error-404__home-link:hover {
  color: var(--accent-hover);
}


/* =============================================================
   COOKIE CONSENT BANNER
   ============================================================= */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  padding: 20px 24px;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.cookie-consent--visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-consent__container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-consent__text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.cookie-consent__text a {
  color: var(--accent);
  text-decoration: none;
}

.cookie-consent__text a:hover {
  text-decoration: underline;
}

.cookie-consent__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-consent__btn {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-family);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.cookie-consent__btn--accept {
  background: var(--accent);
  color: #ffffff;
  border: 1px solid var(--accent);
}

.cookie-consent__btn--accept:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.cookie-consent__btn--decline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-input);
}

.cookie-consent__btn--decline:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
}

@media (max-width: 576px) {
  .cookie-consent__container {
    flex-direction: column;
    text-align: center;
  }

  .cookie-consent__actions {
    width: 100%;
  }

  .cookie-consent__btn {
    flex: 1;
  }
}

