:root {
  --autsbi-primary: #08666B;
  --autsbi-interactive: #0E8F92;
  --autsbi-gold: #E4B343;
  --autsbi-burgundy: #74343F;
  --autsbi-text-primary: #17282B;
  --autsbi-section-background: #F3F7F6;
  --autsbi-card-background: #FFFFFF;
  --autsbi-border-light: #DCE7E5;
  --autsbi-footer: #073B3F;
  --autsbi-hero-start: #073F44;
  --autsbi-hero-end: #0B7478;

  --ink: var(--autsbi-text-primary);
  --muted: rgba(23, 40, 43, 0.68);
  --deep: var(--autsbi-footer);
  --navy: var(--autsbi-hero-start);
  --panel: var(--autsbi-hero-end);
  --paper: var(--autsbi-card-background);
  --paper-soft: var(--autsbi-section-background);
  --gold: var(--autsbi-primary);
  --gold-light: var(--autsbi-gold);
  --gold-dark: var(--autsbi-primary);
  --maroon: var(--autsbi-burgundy);
  --amber: var(--autsbi-gold);
  --line: rgba(8, 102, 107, 0.24);
  --soft-line: rgba(23, 40, 43, 0.10);
  --shadow: 0 8px 24px rgba(7, 59, 63, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(8, 102, 107, 0.11), transparent 28%),
    linear-gradient(180deg, #FFFFFF, #F3F7F6 52%, #FFFFFF);
  font-family: "Tajawal", "Cairo", "Inter", "Segoe UI", Tahoma, Arial, sans-serif;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

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

button {
  font: inherit;
}

img,
svg {
  display: block;
}

img,
video,
canvas {
  max-width: 100%;
  height: auto;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 59, 63, 0.88);
  border-bottom: 1px solid rgba(8, 102, 107, 0.16);
  backdrop-filter: blur(18px);
  transition: min-height 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

body.scrolled .site-header {
  background: rgba(7, 59, 63, 0.94);
  box-shadow: 0 18px 46px rgba(7, 59, 63, 0.16);
}

.header-inner {
  width: min(1760px, calc(100% - 48px));
  min-height: 106px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  transition: min-height 220ms ease;
}

body.scrolled .header-inner {
  min-height: 84px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 72px;
  padding: 0;
}

.brand img {
  width: 214px;
  max-height: 60px;
  object-fit: contain;
  object-position: right center;
}

.footer-brand img {
  width: 182px;
  max-height: 54px;
  object-fit: contain;
  object-position: right center;
}

.main-nav {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.7vw, 34px);
  font-size: 17px;
  font-weight: 750;
}

.main-nav > a,
.nav-item {
  flex: 0 1 auto;
}

.main-nav a,
.nav-trigger {
  color: rgba(244, 246, 248, 0.9);
  transition: color 180ms ease;
}

.main-nav > a {
  padding: 40px 0;
}

.main-nav a:hover,
.nav-trigger:hover,
.nav-item.is-open .nav-trigger {
  color: var(--gold-light);
}

.nav-item {
  position: relative;
}

.nav-trigger {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-trigger svg {
  transition: transform 180ms ease;
}

.nav-item.is-open .nav-trigger svg {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 18px);
  right: 50%;
  transform: translateX(50%) translateY(8px);
  width: 280px;
  padding: 26px 28px;
  display: grid;
  gap: 22px;
  border-radius: 28px;
  background: rgba(244, 246, 248, 0.98);
  color: #17282B;
  box-shadow: 0 24px 60px rgba(7, 59, 63, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.dropdown a {
  color: #17282B;
  font-size: 18px;
  font-weight: 700;
}

.dropdown a:hover {
  color: var(--gold-dark);
}

.nav-item.is-open .dropdown,
.nav-item:hover .dropdown,
.dropdown.dropdown-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(50%) translateY(0);
}

.header-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.language-pill {
  width: 214px;
  height: 62px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(8, 102, 107, 0.48);
  border-radius: 999px;
  color: #17282B;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  box-shadow: 0 16px 36px rgba(8, 102, 107, 0.16);
  font-size: 0;
  font-weight: 900;
  overflow: hidden;
}

.language-pill svg {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  color: #17282B;
  stroke-width: 2.2;
}

.language-pill span {
  display: none;
}

.translate-widget {
  position: fixed;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  display: block;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  clip-path: inset(50%);
}

.translate-widget * {
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  visibility: hidden !important;
}

.language-pill .language-select {
  width: 138px;
  height: 30px;
  margin: 0 !important;
  border: 0;
  outline: 0;
  color: #17282B;
  background: transparent;
  font-family: inherit;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  direction: rtl;
}

.language-pill .goog-te-combo {
  width: 1px;
  height: 1px;
  margin: 0 !important;
  opacity: 0;
  pointer-events: none;
}

.language-pill .goog-te-gadget {
  height: 34px;
  overflow: hidden;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
}

.language-pill .goog-te-gadget span,
.language-pill .goog-te-gadget a {
  display: none !important;
}

.language-pill .goog-te-gadget > div {
  display: block !important;
}

.language-pill .goog-te-gadget .goog-te-combo {
  display: block !important;
}

.language-pill .goog-te-gadget::after {
  content: "";
  display: none;
}

.language-pill .goog-te-combo option {
  color: #17282B;
  background: #FFFFFF;
}

.language-pill font,
.language-pill .skiptranslate {
  overflow: hidden;
}

.download-pill {
  min-width: 142px;
  min-height: 50px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(8, 102, 107, 0.42);
  border-radius: 999px;
  color: #17282B;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(8, 102, 107, 0.16);
  transition: transform 180ms ease, filter 180ms ease;
}

.download-pill:hover,
.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-2px);
}

.download-pill--ghost {
  color: var(--gold-light);
  background: transparent;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(10, 27, 46, 0.9);
  padding: 12px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 99px;
  background: var(--gold-light);
}

.share-hero {
  position: relative;
  min-height: 760px;
  display: grid;
  justify-items: center;
  align-content: center;
  padding: 72px 24px 92px;
  text-align: center;
  border-bottom: 1px solid rgba(23, 40, 43, 0.08);
  background:
    radial-gradient(circle at 82% 16%, rgba(8, 102, 107, 0.18), transparent 25%),
    linear-gradient(180deg, #FFFFFF, #F3F7F6);
  overflow: hidden;
}

.share-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(23, 40, 43, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 40, 43, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, #17282B, transparent 78%);
}

.hero-orbit {
  position: absolute;
  left: 50%;
  top: 52%;
  width: clamp(360px, 36vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.038;
  background:
    url("./assets/autsbi-mark-cyan-transparent.png?v=20260727newlogo-white3") center / contain no-repeat;
  filter: saturate(0.95);
  transform: translate(-50%, -50%);
}

.hero-orbit::before,
.hero-orbit::after,
.hero-orbit span {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px solid rgba(8, 102, 107, 0.22);
}

.hero-orbit::before {
  transform: rotate(18deg) scaleX(0.42);
}

.hero-orbit::after {
  transform: rotate(-22deg) scaleX(0.64);
}

.hero-orbit span:nth-child(1) {
  transform: rotate(70deg) scaleX(0.48);
}

.hero-orbit span:nth-child(2) {
  inset: 1%;
  border-right-color: rgba(8, 102, 107, 0.6);
}

.hero-orbit span:nth-child(3) {
  inset: 30%;
  background: rgba(8, 102, 107, 0.08);
}

.brand-avatar,
.share-hero h1,
.share-hero h2,
.hero-copy,
.hero-actions,
.inline-download {
  position: relative;
  z-index: 1;
}

.brand-avatar {
  width: 138px;
  height: 138px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(8, 102, 107, 0.35);
  background: #073F44;
  box-shadow: 0 18px 50px rgba(23, 40, 43, 0.16);
  overflow: hidden;
}

.brand-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.share-hero h1 {
  margin: 0;
  direction: ltr;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: clamp(62px, 10vw, 124px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: 0;
}

.share-hero h1 span:first-child {
  color: #17282B;
}

.share-hero h1 span:last-child {
  color: var(--gold);
}

.share-hero h2,
.business-section h2,
.cta h2 {
  margin: 10px 0 0;
  font-size: clamp(26px, 3.5vw, 42px);
  line-height: 1.35;
}

.hero-copy {
  max-width: 720px;
  margin: 22px auto 0;
  color: rgba(23, 40, 43, 0.70);
  font-size: 18px;
  line-height: 1.85;
}

.hero-actions {
  width: min(440px, 100%);
  margin-top: 48px;
  display: grid;
  gap: 16px;
}

.primary-action,
.secondary-action {
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  font-size: 19px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease;
}

.primary-action {
  color: #17282B;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  border: 1px solid rgba(8, 102, 107, 0.48);
  box-shadow: 0 14px 30px rgba(8, 102, 107, 0.14);
}

.secondary-action {
  color: var(--ink);
  border: 1px solid rgba(8, 102, 107, 0.34);
  background: rgba(255, 255, 255, 0.78);
}

.inline-download {
  margin: 26px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 18px;
}

.inline-download svg {
  color: var(--gold-light);
}

.inline-download a {
  color: var(--gold-light);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.feature-ribbon,
.metrics,
.business-section,
.content-grid,
.cta {
  width: min(1220px, calc(100% - 48px));
  margin-inline: auto;
}

.feature-ribbon {
  margin-top: -40px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.feature-ribbon article {
  min-height: 220px;
  padding: 28px 20px;
  border: 1px solid var(--soft-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease;
}

.feature-ribbon article:hover,
.content-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(8, 102, 107, 0.42);
}

.feature-ribbon svg {
  width: 44px;
  height: 44px;
  margin: 0 auto 18px;
  color: var(--gold-light);
}

.feature-ribbon h3,
.content-grid h3 {
  margin: 0;
  font-size: 17px;
}

.feature-ribbon p,
.business-section p,
.content-grid p,
.cta p {
  color: rgba(23, 40, 43, 0.68);
  line-height: 1.9;
}

.metrics {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(23, 40, 43, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.metrics div {
  min-height: 120px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  text-align: center;
  border-left: 1px solid rgba(23, 40, 43, 0.08);
}

.metrics div:last-child {
  border-left: 0;
}

.metrics strong {
  color: var(--gold-light);
  font-size: 30px;
}

.metrics span {
  color: rgba(23, 40, 43, 0.72);
}

.business-section {
  padding: 92px 0 62px;
  display: grid;
  gap: 40px;
  align-items: start;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-weight: 900;
}

.business-section p {
  max-width: 760px;
  font-size: 17px;
}

.chip-list {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip-list a {
  padding: 13px 18px;
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(8, 102, 107, 0.08);
  border: 1px solid rgba(8, 102, 107, 0.22);
  font-weight: 800;
}

.business-showcase {
  position: relative;
  min-height: 430px;
  padding: 34px;
  border: 1px solid rgba(23, 40, 43, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at 16% 18%, rgba(8, 102, 107, 0.16), transparent 28%),
    radial-gradient(circle at 82% 72%, rgba(7, 59, 63, 0.1), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.9));
  box-shadow: 0 30px 90px rgba(23, 40, 43, 0.12);
  overflow: hidden;
}

.business-showcase::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 28px;
  background:
    linear-gradient(rgba(23, 40, 43, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 40, 43, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #17282B, transparent 82%);
}

.device-scene {
  position: relative;
  min-height: 360px;
  perspective: 1100px;
  isolation: isolate;
}

.device-scene::after {
  content: "";
  position: absolute;
  left: 9%;
  right: 8%;
  bottom: 12px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(23, 40, 43, 0.18), transparent 68%);
  filter: blur(4px);
  z-index: -1;
}

.laptop-device,
.phone-device,
.pos-device,
.payment-stack {
  position: absolute;
  transform-style: preserve-3d;
}

.laptop-device {
  left: 50%;
  bottom: 50px;
  width: min(520px, 54vw);
  transform: translateX(-50%) rotateX(58deg) rotateZ(-1.5deg);
}

.laptop-screen {
  position: relative;
  height: 250px;
  padding: 22px;
  border: 10px solid #17282B;
  border-radius: 24px 24px 16px 16px;
  background:
    radial-gradient(circle at 72% 24%, rgba(8, 102, 107, 0.2), transparent 22%),
    linear-gradient(135deg, #073F44, #0B7478 62%, #073B3F);
  box-shadow: 0 34px 70px rgba(23, 40, 43, 0.28);
  transform: rotateX(-52deg);
  overflow: hidden;
}

.laptop-screen::before,
.phone-device::before,
.pos-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.12), transparent 38%);
  pointer-events: none;
}

.screen-top {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #F3F7F6;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-weight: 900;
}

.screen-top span {
  width: 28px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid var(--gold-light);
  background: url("./assets/autsbi-icon-192.png?v=20260727newlogo-white3") center / cover no-repeat;
}

.analytics-lines {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}

.analytics-lines span {
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(8, 102, 107, 0.72), rgba(203, 213, 225, 0.26));
}

.analytics-lines span:nth-child(2) {
  width: 72%;
}

.analytics-lines span:nth-child(3) {
  width: 52%;
}

.chart-row {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 48px;
  display: flex;
  align-items: end;
  gap: 10px;
}

.chart-row i {
  flex: 1;
  height: 34px;
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
}

.chart-row i:nth-child(2) { height: 58px; }
.chart-row i:nth-child(3) { height: 42px; }
.chart-row i:nth-child(4) { height: 76px; }
.chart-row i:nth-child(5) { height: 52px; }

.laptop-base {
  height: 36px;
  margin: -2px 26px 0;
  border-radius: 8px 8px 28px 28px;
  background: linear-gradient(180deg, #DCE7E5, rgba(23, 40, 43, 0.48));
  box-shadow: 0 24px 44px rgba(23, 40, 43, 0.2);
}

.phone-device {
  right: clamp(20px, 9vw, 130px);
  bottom: 62px;
  width: 132px;
  height: 244px;
  padding: 28px 14px 16px;
  border: 8px solid #17282B;
  border-radius: 34px;
  background: linear-gradient(180deg, #0B7478, #073F44);
  color: #FFFFFF;
  box-shadow: 0 30px 60px rgba(23, 40, 43, 0.26);
  transform: rotateY(-18deg) rotateZ(7deg);
}

.phone-speaker {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 42px;
  height: 5px;
  border-radius: 999px;
  background: rgba(203, 213, 225, 0.42);
  transform: translateX(-50%);
}

.phone-device strong {
  display: block;
  margin-bottom: 22px;
  color: var(--gold-light);
  font-family: "Inter", "Segoe UI", sans-serif;
  letter-spacing: 1px;
}

.app-card {
  display: block;
  height: 58px;
  margin-bottom: 12px;
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(8, 102, 107, 0.78), rgba(8, 102, 107, 0.22)),
    rgba(255, 255, 255, 0.08);
}

.app-card.short {
  width: 72%;
  height: 42px;
}

.pos-device {
  left: clamp(16px, 8vw, 120px);
  bottom: 68px;
  width: 160px;
  padding: 18px 16px 20px;
  border-radius: 24px;
  background: linear-gradient(160deg, #F3F7F6, #DCE7E5);
  box-shadow: 0 28px 54px rgba(23, 40, 43, 0.2);
  transform: rotateY(18deg) rotateZ(-6deg);
}

.pos-screen {
  position: relative;
  min-height: 84px;
  padding: 14px;
  border-radius: 16px;
  color: #F3F7F6;
  background: linear-gradient(135deg, #073F44, #0B7478);
  overflow: hidden;
}

.pos-screen strong {
  display: block;
  color: var(--gold-light);
  font-family: "Inter", "Segoe UI", sans-serif;
}

.pos-screen span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: #DCE7E5;
}

.pos-keys {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.pos-keys i {
  height: 18px;
  border-radius: 7px;
  background: rgba(23, 40, 43, 0.22);
}

.payment-stack {
  left: 50%;
  top: 22px;
  width: 230px;
  height: 130px;
  transform: translateX(-50%) rotateX(8deg);
}

.payment-terminal {
  position: absolute;
  right: 0;
  top: 10px;
  width: 96px;
  height: 116px;
  padding: 14px;
  border-radius: 20px;
  background: linear-gradient(160deg, #17282B, #073F44);
  color: #FFFFFF;
  box-shadow: 0 24px 45px rgba(23, 40, 43, 0.22);
  transform: rotateZ(8deg);
}

.payment-terminal span {
  display: block;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(8, 102, 107, 0.8), rgba(8, 102, 107, 0.22));
}

.payment-terminal strong {
  display: block;
  margin-top: 11px;
  color: var(--gold-light);
  font-family: "Inter", "Segoe UI", sans-serif;
}

.payment-terminal i {
  display: block;
  width: 32px;
  height: 8px;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(203, 213, 225, 0.4);
}

.payment-card {
  position: absolute;
  left: 0;
  width: 150px;
  height: 86px;
  border-radius: 18px;
  box-shadow: 0 22px 38px rgba(23, 40, 43, 0.18);
}

.payment-card::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 30px;
  height: 22px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.28);
}

.card-one {
  top: 6px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  transform: rotateZ(-10deg);
}

.card-two {
  top: 42px;
  left: 28px;
  background: linear-gradient(135deg, #0B7478, #17282B);
  transform: rotateZ(7deg);
}

.device-label {
  position: absolute;
  left: 50%;
  bottom: -34px;
  min-width: max-content;
  padding: 8px 14px;
  border: 1px solid rgba(8, 102, 107, 0.28);
  border-radius: 999px;
  color: #17282B;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 26px rgba(23, 40, 43, 0.08);
  font-size: 13px;
  font-weight: 900;
  font-style: normal;
  transform: translateX(-50%);
}

.product-showcase {
  min-height: 0;
  padding: clamp(34px, 4vw, 58px) clamp(8px, 2vw, 18px) clamp(8px, 2vw, 18px);
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  max-width: 1120px;
  margin-inline: auto;
}

.product-showcase::before {
  display: none;
}

.showcase-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(230px, 0.62fr) minmax(0, 1.38fr);
  grid-template-areas:
    "phone laptop"
    "pos laptop";
  gap: clamp(10px, 2vw, 20px);
  align-items: center;
}

.showcase-card {
  position: relative;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 28px;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: none;
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 56%, rgba(7, 59, 63, 0.72)),
    radial-gradient(circle at 84% 12%, rgba(8, 102, 107, 0.18), transparent 28%);
  pointer-events: none;
}

.showcase-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  transform: none;
  filter: drop-shadow(0 28px 42px rgba(23, 40, 43, 0.24));
}

.showcase-card--laptop {
  grid-area: laptop;
  min-height: 330px;
  max-width: 780px;
  width: min(100%, 780px);
  justify-self: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.showcase-card--laptop img {
  width: min(100%, 760px);
  height: auto;
  max-height: 430px;
  padding: 0;
  border-radius: 0;
  object-fit: contain;
  filter: drop-shadow(0 30px 48px rgba(23, 40, 43, 0.2));
}

.showcase-card--laptop .showcase-copy {
  min-width: min(88%, 360px);
}

.showcase-card--phone {
  grid-area: phone;
  min-height: 300px;
}

.showcase-card--phone img {
  padding: 0;
  max-height: 360px;
  margin-inline: auto;
}

.showcase-card--pos {
  grid-area: pos;
  min-height: auto;
  gap: 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
  backdrop-filter: none !important;
  overflow: visible;
}

.showcase-card--pos img {
  width: min(100%, 430px);
  height: auto;
  padding: 0;
  border-radius: 24px;
  object-fit: cover;
  object-position: center;
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
}

.showcase-card--pos .showcase-copy {
  min-width: min(82%, 320px);
  margin-top: 0;
}

.showcase-card--laptop::after,
.showcase-card--phone::after,
.showcase-card--pos::after {
  display: none;
}

.showcase-copy {
  position: static;
  z-index: 2;
  width: auto;
  min-width: min(86%, 240px);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 13px;
  border: 1px solid rgba(8, 102, 107, 0.22);
  border-radius: 18px;
  color: #F3F7F6;
  background: rgba(7, 59, 63, 0.62);
  backdrop-filter: blur(12px);
  transform: none;
}

.showcase-copy strong {
  direction: ltr;
  color: var(--gold-light);
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.showcase-label {
  color: #F3F7F6;
  font-size: 13px;
  font-weight: 900;
}

.content-grid {
  padding: 0 0 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.content-grid article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(23, 40, 43, 0.09);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease;
}

.content-grid a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--gold-light);
  font-weight: 900;
  border-bottom: 1px solid currentColor;
}

.cta {
  margin-bottom: 42px;
  padding: 44px;
  border: 1px solid rgba(23, 40, 43, 0.09);
  border-radius: 28px;
  background:
    radial-gradient(circle at 16% 50%, rgba(8, 102, 107, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  text-align: center;
}

.cta-join {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.cta-join-title {
  margin: 0;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.3;
}

.cta-brand-logo {
  width: 118px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

.cta-account-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-account-actions .primary-action,
.cta-account-actions .secondary-action {
  color: #17282B;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  border: 1px solid rgba(185, 138, 28, 0.55);
  border-radius: 0;
  box-shadow: 0 12px 26px rgba(185, 138, 28, 0.18);
}

.cta-account-actions .primary-action:hover,
.cta-account-actions .secondary-action:hover {
  color: #17282B;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  transform: none;
}

.cta .primary-action,
.cta .secondary-action {
  min-width: 220px;
  min-height: 58px;
  font-size: 17px;
}

.site-footer {
  padding: 70px 24px 28px;
  background: #073B3F;
  border-top: 1px solid rgba(8, 102, 107, 0.14);
}

.footer-brand,
.site-footer nav,
.copyright {
  width: min(1220px, calc(100% - 48px));
  margin-inline: auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 44px;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

.site-footer h3 {
  margin: 0 0 22px;
  color: rgba(203, 213, 225, 0.82);
  font-size: 16px;
}

.site-footer nav a {
  display: block;
  width: fit-content;
  margin: 0 0 16px;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 750;
}

.site-footer nav a:hover {
  color: var(--gold-light);
}

/* Critical download-page layout lives here as a fallback in case page.css is cached or delayed. */
.page-shell .page-main {
  width: min(1120px, calc(100% - clamp(24px, 5vw, 48px)));
  max-width: 100%;
  margin-inline: auto;
  overflow: hidden;
}

.page-shell .download-product-grid {
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 18px;
  align-items: stretch;
}

.page-shell .windows-download-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.page-shell .download-product-card,
.page-shell .download-note-card {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.page-shell .download-product-card img,
.page-shell img.download-app-icon {
  width: clamp(76px, 10vw, 96px) !important;
  height: clamp(76px, 10vw, 96px) !important;
  max-width: 96px !important;
  max-height: 96px !important;
  object-fit: cover;
}

.footer-contact {
  width: min(1220px, calc(100% - 48px));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 18px;
  margin: 34px auto 0;
  padding: 18px 20px;
  border: 1px solid rgba(8, 102, 107, 0.16);
  border-radius: 20px;
  color: rgba(244, 246, 248, 0.82);
  background: rgba(255, 255, 255, 0.04);
  font-style: normal;
}

.footer-contact strong {
  color: var(--gold-light);
  letter-spacing: 0.08em;
}

.footer-contact a {
  color: #FFFFFF;
  font-weight: 800;
}

.footer-contact a:hover {
  color: var(--gold-light);
}

.copyright {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(203, 213, 225, 0.08);
  color: rgba(203, 213, 225, 0.62);
  text-align: center;
}

.copyright-logo {
  width: 70px;
  height: auto;
  display: inline-block;
  vertical-align: -0.22em;
  margin: 0 3px;
}

.footer-legal {
  width: min(1220px, calc(100% - 48px));
  display: flex;
  justify-content: flex-start;
  gap: 24px;
  margin: 26px auto 0;
  grid-area: legal;
}

.footer-legal a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.3;
  text-align: center;
}

.footer-legal a:hover {
  color: var(--gold-light);
  background: rgba(235, 190, 66, 0.08);
}

.footer-social {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 12px;
  margin: 0;
  grid-area: social;
}

.social-link {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
}

.social-whatsapp { background: #25D366; }
.social-facebook { background: #1877F2; }
.social-tiktok { background: #111111; }
.social-instagram { background: linear-gradient(135deg, #F58529, #DD2A7B 52%, #515BD4); }
.social-github { background: #24292F; }
.social-email { background: #0E8F92; }
.social-phone { background: var(--gold); color: #073B3F; }

.reveal {
  opacity: 0;
  transform: translateY(42px) scale(0.985);
  transition:
    opacity 720ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.feature-ribbon article,
.metrics div,
.content-grid article,
.route-card {
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    opacity 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.feature-ribbon article:hover,
.content-grid article:hover,
.route-card:hover,
.side-list a:hover,
.chip-list a:hover {
  box-shadow: 0 26px 70px rgba(23, 40, 43, 0.13);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.is-visible,
  .feature-ribbon article,
  .metrics div,
  .content-grid article,
  .route-card,
  .site-header,
  .header-inner {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

@media (max-width: 1160px) {
  .header-inner {
    gap: 20px;
  }

  .main-nav {
    gap: 18px;
    font-size: 16px;
  }

  .feature-ribbon {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (min-width: 1081px) and (max-width: 1320px) {
  .header-inner {
    width: min(100% - 28px, 1260px);
    gap: 14px;
  }

  .brand img {
    width: 176px;
  }

  .main-nav {
    gap: 12px;
    font-size: 15px;
  }

  .main-nav > a {
    padding: 34px 0;
  }

  .nav-trigger {
    gap: 6px;
  }

  .language-pill {
    width: 168px;
    height: 54px;
    padding: 0 12px;
    gap: 8px;
  }

  .language-pill .language-select {
    width: 108px;
    font-size: 14px;
  }
}

@media (max-width: 1080px) {
  .header-inner {
    width: min(100% - 32px, 760px);
    min-height: 76px;
    justify-content: space-between;
  }

  .brand img {
    width: 145px;
  }

  .menu-toggle {
    display: block;
    order: -1;
  }

  .header-actions {
    display: flex;
  }

  .language-pill {
    width: 148px;
    height: 46px;
    padding: 0 10px;
    gap: 7px;
  }

  .language-pill svg {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }

  .language-pill .language-select {
    width: 92px;
    height: 26px;
    font-size: 13px;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    right: 16px;
    left: 16px;
    display: none;
    padding: 18px;
    border: 1px solid rgba(8, 102, 107, 0.18);
    border-radius: 20px;
    background: rgba(7, 59, 63, 0.97);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

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

  .main-nav > a,
  .nav-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 14px 4px;
    border-bottom: 1px solid rgba(203, 213, 225, 0.08);
  }

  .dropdown {
    position: static;
    width: 100%;
    margin: 8px 0 12px;
    padding: 16px;
    transform: none;
    display: none;
    opacity: 1;
    pointer-events: auto;
    border-radius: 16px;
  }

  .nav-item.is-open .dropdown,
  .dropdown.dropdown-open {
    display: grid;
    transform: none;
  }

  .share-hero {
    min-height: 720px;
    padding-top: 54px;
  }

  .hero-orbit {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(82vw, 360px);
  }

  .feature-ribbon,
  .metrics,
  .business-section,
  .content-grid,
  .cta,
  .footer-brand,
  .site-footer nav,
  .footer-contact,
  .copyright {
    width: min(100% - 32px, 760px);
  }

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

  .metrics div {
    border-left: 0;
    border-bottom: 1px solid rgba(23, 40, 43, 0.08);
  }

  .business-section {
    grid-template-columns: 1fr;
    padding-top: 64px;
  }

  .business-showcase {
    min-height: 520px;
    padding: 24px;
  }

  .device-scene {
    min-height: 470px;
  }

  .laptop-device {
    width: min(440px, 76vw);
    bottom: 84px;
  }

  .laptop-screen {
    height: 218px;
  }

  .phone-device {
    right: 24px;
    bottom: 76px;
    width: 116px;
    height: 218px;
  }

  .pos-device {
    left: 18px;
    bottom: 82px;
    width: 138px;
  }

  .payment-stack {
    top: 6px;
    width: 200px;
  }

  .footer-brand,
  .site-footer nav {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    display: grid;
    justify-items: start;
  }

  .site-footer nav {
    gap: 22px;
  }
}

@media (max-width: 580px) {
  .share-hero {
    min-height: 690px;
    padding-inline: 16px;
  }

  .brand-avatar {
    width: 110px;
    height: 110px;
  }

  .brand img {
    width: 116px;
  }

  .language-pill {
    width: 128px;
    padding: 0 8px;
  }

  .language-pill .language-select {
    width: 78px;
  }

  .share-hero h1 {
    font-size: clamp(54px, 18vw, 74px);
  }

  .share-hero h2 {
    font-size: 28px;
  }

  .hero-copy {
    font-size: 16px;
    line-height: 1.9;
  }

  .primary-action,
  .secondary-action {
    min-height: 60px;
    font-size: 18px;
  }

  .feature-ribbon,
  .metrics,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .business-showcase {
    min-height: 600px;
    padding: 18px;
    border-radius: 26px;
  }

  .device-scene {
    min-height: 550px;
  }

  .laptop-device {
    width: 305px;
    bottom: 205px;
  }

  .laptop-screen {
    height: 182px;
    padding: 16px;
    border-width: 8px;
  }

  .laptop-base {
    height: 28px;
    margin-inline: 18px;
  }

  .phone-device {
    right: 22px;
    bottom: 70px;
    width: 108px;
    height: 204px;
    transform: rotateY(-14deg) rotateZ(5deg);
  }

  .pos-device {
    left: 18px;
    bottom: 72px;
    width: 128px;
    transform: rotateY(13deg) rotateZ(-5deg);
  }

  .payment-stack {
    top: 26px;
    width: 190px;
  }

  .payment-card {
    width: 128px;
    height: 76px;
  }

  .payment-terminal {
    width: 82px;
    height: 104px;
  }

  .device-label {
    font-size: 12px;
  }

  .feature-ribbon article {
    min-height: 180px;
  }

  .cta {
    padding: 30px 18px;
  }

  .cta .primary-action,
  .cta .secondary-action,
  .download-pill {
    width: 100%;
  }

  .site-footer nav a {
    font-size: 20px;
  }
}

.ai-chat {
  position: fixed;
  z-index: 80;
  right: max(24px, env(safe-area-inset-right));
  bottom: max(24px, env(safe-area-inset-bottom));
  font-family: inherit;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.ai-chat.is-footer-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px);
}

[dir="ltr"] .ai-chat {
  right: auto;
  left: max(24px, env(safe-area-inset-left));
}

.ai-chat-toggle {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 12px;
  border: 1px solid rgba(8, 102, 107, 0.24);
  border-radius: 999px;
  color: #F3F7F6;
  background:
    radial-gradient(circle at 88% 50%, rgba(8, 102, 107, 0.12), transparent 38%),
    linear-gradient(135deg, rgba(7, 59, 63, 0.96), rgba(7, 59, 63, 0.96));
  box-shadow: 0 18px 42px rgba(7, 59, 63, 0.24);
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
}

.ai-chat-toggle img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 2px rgba(8, 102, 107, 0.2);
}

.ai-chat-panel {
  width: clamp(390px, 30vw, 440px);
  max-width: calc(100vw - 40px);
  max-height: calc(100dvh - 112px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid rgba(8, 102, 107, 0.28);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 84px rgba(7, 59, 63, 0.24);
}

.ai-chat-panel[hidden] {
  display: none;
}

.ai-chat-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  color: #FFFFFF;
  background:
    radial-gradient(circle at 18% 0%, rgba(8, 102, 107, 0.22), transparent 34%),
    linear-gradient(145deg, #073B3F, #073F44);
}

.ai-chat-head strong,
.ai-chat-head span {
  display: block;
}

.ai-chat-head strong {
  font-size: 17px;
}

.ai-chat-head span {
  margin-top: 4px;
  color: rgba(244, 246, 248, 0.74);
  font-size: 12px;
  line-height: 1.6;
}

.ai-chat-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ai-voice-toggle {
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.ai-voice-toggle.is-on {
  color: #17282B;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  border-color: rgba(8, 102, 107, 0.5);
}

.ai-voice-toggle[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

.ai-chat-close {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.ai-chat-messages {
  height: clamp(300px, 42dvh, 410px);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 18px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background: linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.98));
}

.ai-chat-messages::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.ai-message {
  max-width: 86%;
  margin: 0;
  padding: 11px 13px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.8;
  white-space: pre-wrap;
}

.ai-message.bot {
  align-self: flex-start;
  color: #17282B;
  background: #F3F7F6;
  border: 1px solid rgba(23, 40, 43, 0.08);
}

.ai-message.user {
  align-self: flex-end;
  color: #17282B;
  background: rgba(8, 102, 107, 0.34);
  border: 1px solid rgba(8, 102, 107, 0.28);
  font-weight: 700;
}

.ai-chat-form {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  padding: 14px 16px 10px;
  border-top: 1px solid rgba(23, 40, 43, 0.08);
  background: #FFFFFF;
}

.ai-chat-input {
  min-width: 0;
  height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(23, 40, 43, 0.12);
  border-radius: 999px;
  color: var(--ink);
  background: #FFFFFF;
  font: inherit;
  outline: none;
}

.ai-chat-input:focus {
  border-color: rgba(8, 102, 107, 0.66);
  box-shadow: 0 0 0 4px rgba(8, 102, 107, 0.12);
}

.ai-chat-mic {
  height: 46px;
  padding: 0 15px;
  border: 1px solid rgba(8, 102, 107, 0.24);
  border-radius: 999px;
  color: #17282B;
  background: rgba(8, 102, 107, 0.1);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.ai-chat-mic.is-listening {
  color: #F3F7F6;
  background: linear-gradient(135deg, rgba(7, 59, 63, 0.96), rgba(7, 59, 63, 0.96));
  border-color: rgba(8, 102, 107, 0.42);
}

.ai-chat-mic[disabled] {
  opacity: 0.46;
  cursor: not-allowed;
}

.ai-chat-send {
  height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: #17282B;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  cursor: pointer;
  font-weight: 900;
}

.ai-chat-note {
  margin: 0;
  padding: 0 16px 14px;
  color: var(--muted);
  background: #FFFFFF;
  font-size: 11px;
  line-height: 1.6;
}

@media (max-width: 1180px) {
  .ai-chat-panel {
    width: min(410px, calc(100vw - 32px));
  }

  .ai-chat-messages {
    height: clamp(280px, 40dvh, 370px);
  }
}

@media (min-width: 581px) and (max-width: 1680px) {
  .ai-chat-panel {
    width: min(380px, calc(100vw - 36px));
    max-height: calc(100dvh - 104px);
    border-radius: 22px;
  }

  .ai-chat-head {
    padding: 14px;
  }

  .ai-chat-messages {
    height: clamp(220px, 30dvh, 300px);
    min-height: 210px;
    padding: 14px;
  }

  .ai-chat-form {
    gap: 8px;
    padding: 12px 14px 8px;
  }

  .ai-chat-mic,
  .ai-chat-input,
  .ai-chat-send {
    height: 42px;
  }

  .ai-chat-note {
    padding: 0 14px 14px;
  }
}

@media (max-width: 580px) {
  .ai-chat {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
  }

  [dir="ltr"] .ai-chat {
    left: max(14px, env(safe-area-inset-left));
  }

  .ai-chat-panel {
    width: calc(100vw - 28px);
    max-height: calc(100dvh - 92px);
    margin-bottom: 10px;
    border-radius: 22px;
  }

  .ai-chat-head {
    padding: 15px;
  }

  .ai-chat-messages {
    height: clamp(260px, 54dvh, 420px);
    min-height: 220px;
    padding: 14px;
  }

  .ai-message {
    max-width: 92%;
  }

  .ai-chat-form {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 12px 12px 8px;
  }

  .ai-chat-input {
    grid-column: 1 / -1;
    height: 44px;
    padding-inline: 12px;
  }

  .ai-chat-mic,
  .ai-chat-send {
    height: 44px;
    padding: 0 14px;
  }

  .ai-chat-toggle span {
    display: none;
  }

  .ai-chat-toggle {
    width: 58px;
    justify-content: center;
    padding: 10px;
  }

  .ai-chat-controls {
    gap: 6px;
  }

  .ai-voice-toggle {
    padding: 0 9px;
    font-size: 11px;
  }
}

@media (max-width: 1040px) {
  .product-showcase {
    min-height: 0;
  }

  .showcase-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "laptop laptop"
      "phone pos";
  }

  .showcase-card--laptop {
    min-height: 310px;
  }

  .showcase-card--phone,
  .showcase-card--pos {
    min-height: 260px;
  }

  .showcase-card--phone img {
    max-height: 330px;
  }
}

@media (max-width: 720px) {
  .showcase-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "laptop"
      "phone"
      "pos";
  }

  .showcase-card--laptop {
    min-height: 230px;
  }

  .showcase-card--phone {
    min-height: 340px;
  }

  .showcase-card--phone img {
    max-height: 340px;
    background: transparent;
  }

  .showcase-card--pos {
    min-height: 300px;
  }
}

@media (max-width: 580px) {
  .product-showcase {
    padding: 14px;
    border-radius: 24px;
  }

  .showcase-card {
    border-radius: 22px;
  }

  .showcase-card--laptop {
    min-height: 190px;
  }

  .showcase-card--phone {
    min-height: 320px;
  }

  .showcase-card--pos {
    min-height: 230px;
  }

  .showcase-copy {
    width: auto;
    min-width: min(86%, 230px);
    padding: 9px 11px;
    border-radius: 15px;
    transform: none;
  }

  .showcase-label,
  .showcase-copy strong {
    font-size: 12px;
  }
}



/* AUTSBI 2026 identity refresh - centralized visual layer */
:root {
  --autsbi-primary: #08666B;
  --autsbi-interactive: #0E8F92;
  --autsbi-gold: #E4B343;
  --autsbi-burgundy: #74343F;
  --autsbi-text-primary: #17282B;
  --autsbi-section-background: #F3F7F6;
  --autsbi-card-background: #FFFFFF;
  --autsbi-border-light: #DCE7E5;
  --autsbi-footer: #073B3F;
  --autsbi-hero-start: #073F44;
  --autsbi-hero-end: #0B7478;
}

html, body {
  color: var(--autsbi-text-primary);
  background: linear-gradient(180deg, #FFFFFF 0%, var(--autsbi-section-background) 54%, #FFFFFF 100%);
}

:focus-visible {
  outline: 3px solid rgba(14, 143, 146, 0.28);
  outline-offset: 3px;
}

.site-header,
body.scrolled .site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--autsbi-border-light);
  box-shadow: 0 8px 24px rgba(7, 59, 63, 0.06);
  backdrop-filter: blur(16px);
}

.brand img,
.footer-brand img {
  filter: none;
}

.main-nav a,
.main-nav button,
.nav-link,
.nav-trigger,
.site-header .nav a,
.site-header .nav button {
  color: var(--autsbi-text-primary);
}

.main-nav a:hover,
.main-nav button:hover,
.nav-link:hover,
.nav-trigger:hover,
.main-nav a[aria-current="page"],
.nav-link.is-active,
.nav-trigger.is-active {
  color: var(--autsbi-primary);
}

.main-nav a[aria-current="page"]::after,
.nav-link.is-active::after,
.nav-trigger.is-active::after {
  background: var(--autsbi-interactive);
}

.dropdown,
.dropdown-menu,
.language-menu,
.lang-menu {
  background: #FFFFFF;
  color: var(--autsbi-text-primary);
  border: 1px solid var(--autsbi-border-light);
  box-shadow: 0 12px 28px rgba(7, 59, 63, 0.09);
}

.dropdown a:hover,
.dropdown-menu a:hover,
.language-menu button:hover,
.lang-menu button:hover {
  color: var(--autsbi-primary);
  background: rgba(8, 102, 107, 0.08);
}

.language-pill,
.lang-select,
.demo-button,
.header-cta,
.btn-primary,
.ai-chat-send,
.ai-chat-mic {
  background: var(--autsbi-primary);
  color: #FFFFFF;
  border-color: var(--autsbi-primary);
  box-shadow: none;
}

.language-pill:hover,
.lang-select:hover,
.demo-button:hover,
.header-cta:hover,
.btn-primary:hover,
.ai-chat-send:hover,
.ai-chat-mic:hover {
  background: var(--autsbi-interactive);
  border-color: var(--autsbi-interactive);
}

.hero,
.share-hero,
.home-hero,
.landing-hero {
  background: linear-gradient(135deg, var(--autsbi-hero-start) 0%, var(--autsbi-hero-end) 100%);
  color: #FFFFFF;
}

.hero h1,
.share-hero h1,
.home-hero h1,
.landing-hero h1,
.hero p,
.share-hero p,
.home-hero p,
.landing-hero p {
  color: #FFFFFF;
}

.btn-gold,
.hero .primary,
.hero-primary,
.cta-gold,
.download-button.primary {
  background: var(--autsbi-gold);
  color: var(--autsbi-text-primary);
  border-color: var(--autsbi-gold);
}

.btn-gold:hover,
.hero .primary:hover,
.hero-primary:hover,
.cta-gold:hover,
.download-button.primary:hover {
  filter: brightness(0.96);
  transform: translateY(-1px);
}

.btn-secondary,
.hero .secondary,
.hero-secondary {
  background: transparent;
  color: var(--autsbi-primary);
  border: 1px solid var(--autsbi-primary);
}

.hero .secondary,
.hero-secondary {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.85);
}

.btn-secondary:hover {
  background: rgba(8, 102, 107, 0.07);
}

.hero .secondary:hover,
.hero-secondary:hover {
  background: rgba(255, 255, 255, 0.10);
}

section:nth-of-type(even),
.section-soft,
.business-showcase,
.page-shell {
  background-color: var(--autsbi-section-background);
}

.card,
.feature-card,
.service-card,
.showcase-card,
.route-card,
.page-card,
.side-card,
.download-card,
.visitor-card,
.stat-card,
.form-card,
.table-card,
.modal-content {
  background: var(--autsbi-card-background);
  border: 1px solid var(--autsbi-border-light);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(7, 59, 63, 0.06);
  color: var(--autsbi-text-primary);
}

.card:hover,
.feature-card:hover,
.service-card:hover,
.showcase-card:hover,
.route-card:hover,
.download-card:hover,
.visitor-card:hover {
  transform: translateY(-3px);
  border-color: rgba(14, 143, 146, 0.35);
  box-shadow: 0 12px 28px rgba(7, 59, 63, 0.09);
}

.card h1, .card h2, .card h3,
.feature-card h1, .feature-card h2, .feature-card h3,
.service-card h1, .service-card h2, .service-card h3,
.page-card h1, .page-card h2, .page-card h3,
.route-card h1, .route-card h2, .route-card h3,
.download-card h1, .download-card h2, .download-card h3,
.visitor-card h1, .visitor-card h2, .visitor-card h3 {
  color: var(--autsbi-text-primary);
}

.card p,
.feature-card p,
.service-card p,
.page-card p,
.page-card li,
.route-card p,
.download-card p,
.visitor-card p,
.muted,
.text-muted {
  color: rgba(23, 40, 43, 0.68);
}

.icon,
.feature-icon,
.service-icon,
.route-icon,
.download-icon,
.stat-icon,
.card svg,
.feature-card svg,
.service-card svg {
  color: var(--autsbi-primary);
}

.kicker,
.page-kicker,
.gold,
.accent,
.visitor-stars,
.star-rating,
.rating-stars {
  color: var(--autsbi-gold);
}

input,
textarea,
select,
.form-control {
  background: #FFFFFF;
  color: var(--autsbi-text-primary);
  border: 1px solid var(--autsbi-border-light);
  box-shadow: none;
}

input:focus,
textarea:focus,
select:focus,
.form-control:focus {
  border-color: var(--autsbi-interactive);
  box-shadow: 0 0 0 3px rgba(14, 143, 146, 0.12);
  outline: none;
}

table,
.table {
  background: #FFFFFF;
  color: var(--autsbi-text-primary);
  border-color: var(--autsbi-border-light);
}

thead,
.table thead {
  background: var(--autsbi-section-background);
}

tr,
th,
td {
  border-color: var(--autsbi-border-light);
}

tr:hover {
  background: rgba(8, 102, 107, 0.04);
}

tr.is-selected,
tr[aria-selected="true"] {
  background: rgba(14, 143, 146, 0.08);
}

.alert-success,
.notice-success {
  background: rgba(8, 102, 107, 0.10);
  color: var(--autsbi-primary);
  border-color: rgba(8, 102, 107, 0.22);
}

.alert-info,
.notice-info {
  background: rgba(14, 143, 146, 0.10);
  color: var(--autsbi-interactive);
  border-color: rgba(14, 143, 146, 0.22);
}

.alert-warning,
.notice-warning {
  background: rgba(228, 179, 67, 0.14);
  color: var(--autsbi-text-primary);
  border-color: rgba(228, 179, 67, 0.34);
}

.alert-admin,
.notice-admin {
  background: rgba(116, 52, 63, 0.10);
  color: var(--autsbi-burgundy);
  border-color: rgba(116, 52, 63, 0.24);
}

.site-footer,
.footer {
  background: var(--autsbi-footer);
  color: #FFFFFF;
}

.site-footer a,
.footer a {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a:hover,
.footer a:hover {
  color: var(--autsbi-gold);
}

.site-footer input,
.footer input {
  background: #FFFFFF;
  color: var(--autsbi-text-primary);
  border: 1px solid var(--autsbi-border-light);
}

.site-footer button,
.footer button,
.newsletter button {
  background: var(--autsbi-interactive);
  color: #FFFFFF;
  border-color: var(--autsbi-interactive);
}

.ai-chat-toggle,
.ai-assistant-toggle,
.chat-launcher {
  background: var(--autsbi-footer);
  color: #FFFFFF;
  border: 1px solid rgba(14, 143, 146, 0.36);
  box-shadow: 0 10px 26px rgba(7, 59, 63, 0.16);
}

.ai-chat-toggle:hover,
.ai-assistant-toggle:hover,
.chat-launcher:hover {
  background: var(--autsbi-primary);
}

.ai-chat-panel,
.ai-assistant-panel,
.chat-panel {
  background: #FFFFFF;
  color: var(--autsbi-text-primary);
  border: 1px solid var(--autsbi-border-light);
  box-shadow: 0 16px 38px rgba(7, 59, 63, 0.16);
}

.ai-chat-head,
.ai-assistant-head,
.chat-panel-header {
  background: linear-gradient(135deg, var(--autsbi-hero-start), var(--autsbi-hero-end));
  color: #FFFFFF;
}

.ai-chat-watermark,
.chat-watermark,
.watermark-logo {
  opacity: 0.045;
  filter: grayscale(1) brightness(1.25);
}

@media (max-width: 900px) {
  .site-header,
  body.scrolled .site-header {
    background: rgba(255, 255, 255, 0.98);
  }

  .main-nav,
  .site-header .nav {
    background: #FFFFFF;
    color: var(--autsbi-text-primary);
    border-color: var(--autsbi-border-light);
  }
}

/* AUTSBI reference identity final layer */
:root {
  --autsbi-primary: #08666B;
  --autsbi-interactive: #0E8F92;
  --autsbi-gold: #E4B343;
  --autsbi-burgundy: #74343F;
  --autsbi-text-primary: #17282B;
  --autsbi-section-background: #F3F7F6;
  --autsbi-card-background: #FFFFFF;
  --autsbi-border-light: #DCE7E5;
  --autsbi-footer: #073B3F;
  --autsbi-hero-start: #073F44;
  --autsbi-hero-end: #0B7478;
  --ink: var(--autsbi-text-primary);
  --muted: rgba(23, 40, 43, 0.68);
  --deep: var(--autsbi-footer);
  --navy: var(--autsbi-hero-start);
  --panel: var(--autsbi-hero-end);
  --paper: var(--autsbi-card-background);
  --paper-soft: var(--autsbi-section-background);
  --gold: var(--autsbi-primary);
  --gold-light: var(--autsbi-gold);
  --gold-dark: var(--autsbi-primary);
  --maroon: var(--autsbi-burgundy);
  --amber: var(--autsbi-gold);
  --line: rgba(8, 102, 107, 0.24);
  --soft-line: rgba(23, 40, 43, 0.10);
  --shadow: 0 8px 24px rgba(7, 59, 63, 0.06);
}

html {
  background: var(--autsbi-card-background);
}

body {
  color: var(--autsbi-text-primary);
  background:
    radial-gradient(circle at 82% 18%, rgba(14, 143, 146, 0.12), transparent 32%),
    linear-gradient(180deg, var(--autsbi-card-background) 0%, var(--autsbi-section-background) 58%, var(--autsbi-card-background) 100%);
}

body::before {
  opacity: 0.28;
}

::selection {
  background: rgba(14, 143, 146, 0.22);
  color: var(--autsbi-text-primary);
}

a {
  color: var(--autsbi-primary);
}

a:hover {
  color: var(--autsbi-interactive);
}

.site-header,
body.scrolled .site-header {
  background: rgba(255, 255, 255, 0.98) !important;
  color: var(--autsbi-text-primary) !important;
  border-bottom: 1px solid var(--autsbi-border-light) !important;
  box-shadow: 0 8px 24px rgba(7, 59, 63, 0.06) !important;
}

.header-inner {
  min-height: clamp(74px, 7vw, 96px);
  gap: clamp(14px, 2vw, 30px);
}

body.scrolled .header-inner {
  min-height: clamp(66px, 6vw, 82px);
}

.brand img,
.footer-brand img,
.brand-avatar img,
.ai-chat-logo,
.ai-chat-toggle img {
  filter: none !important;
}

.main-nav {
  gap: clamp(14px, 2vw, 28px);
}

.main-nav a,
.main-nav button,
.nav-link,
.dropdown-toggle,
.download-nav a,
.site-header .nav a,
.site-header .nav button {
  color: var(--autsbi-text-primary) !important;
}

.main-nav a:hover,
.main-nav button:hover,
.nav-link:hover,
.dropdown-toggle:hover,
.download-nav a:hover {
  color: var(--autsbi-interactive) !important;
  background: transparent !important;
}

.main-nav a[aria-current="page"],
.nav-link.active,
.download-nav a.active {
  color: var(--autsbi-primary) !important;
}

.main-nav a[aria-current="page"]::after,
.nav-link.active::after,
.download-nav a.active::after {
  background: var(--autsbi-interactive) !important;
}

.menu-toggle span {
  background: var(--autsbi-primary) !important;
}

.language-pill {
  background: var(--autsbi-primary) !important;
  border: 1px solid rgba(8, 102, 107, 0.16) !important;
  box-shadow: 0 8px 24px rgba(7, 59, 63, 0.06) !important;
  color: var(--autsbi-card-background) !important;
}

.language-pill:hover {
  background: var(--autsbi-interactive) !important;
  transform: translateY(-1px);
}

.language-pill,
.language-pill * {
  color: var(--autsbi-card-background) !important;
}

.language-select,
.language-select option,
.language-pill .language-select,
.language-pill .language-select option {
  background: var(--autsbi-card-background) !important;
  color: var(--autsbi-text-primary) !important;
}

.dropdown-menu,
.language-menu,
.main-nav [role="menu"] {
  background: var(--autsbi-card-background) !important;
  border: 1px solid var(--autsbi-border-light) !important;
  box-shadow: 0 12px 28px rgba(7, 59, 63, 0.09) !important;
}

.dropdown-menu a,
.language-menu button {
  color: var(--autsbi-text-primary) !important;
}

.dropdown-menu a:hover,
.language-menu button:hover,
.dropdown-menu a:focus,
.language-menu button:focus {
  background: rgba(8, 102, 107, 0.08) !important;
  color: var(--autsbi-primary) !important;
}

.share-hero,
.hero,
.hero-section {
  background:
    radial-gradient(circle at 18% 26%, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(135deg, var(--autsbi-hero-start) 0%, var(--autsbi-hero-end) 100%) !important;
  color: var(--autsbi-card-background) !important;
}

.share-hero h1,
.share-hero h2,
.share-hero .hero-title,
.hero h1,
.hero-section h1 {
  color: var(--autsbi-card-background) !important;
}

.share-hero p,
.hero p,
.hero-section p {
  color: rgba(255, 255, 255, 0.84) !important;
}

.share-hero h1 span:last-child,
.hero h1 span:last-child {
  color: var(--autsbi-gold) !important;
}

.primary-action,
.btn-primary,
.demo-button,
.header-cta,
.submit-button,
.form-submit,
.newsletter-submit,
.ai-chat-send,
.chat-send {
  background: var(--autsbi-primary) !important;
  border: 1px solid var(--autsbi-primary) !important;
  color: var(--autsbi-card-background) !important;
  box-shadow: 0 8px 24px rgba(7, 59, 63, 0.06) !important;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.primary-action:hover,
.btn-primary:hover,
.demo-button:hover,
.header-cta:hover,
.submit-button:hover,
.form-submit:hover,
.newsletter-submit:hover,
.ai-chat-send:hover,
.chat-send:hover {
  background: var(--autsbi-interactive) !important;
  border-color: var(--autsbi-interactive) !important;
  transform: translateY(-1px);
}

.share-hero .primary-action,
.hero .primary-action,
.hero-section .primary-action,
.btn-gold {
  background: var(--autsbi-gold) !important;
  border-color: var(--autsbi-gold) !important;
  color: var(--autsbi-text-primary) !important;
}

.share-hero .primary-action:hover,
.hero .primary-action:hover,
.hero-section .primary-action:hover,
.btn-gold:hover {
  filter: brightness(0.96);
}

.secondary-action,
.btn-secondary {
  background: transparent !important;
  border: 1px solid var(--autsbi-primary) !important;
  color: var(--autsbi-primary) !important;
  box-shadow: none !important;
}

.secondary-action:hover,
.btn-secondary:hover {
  background: rgba(8, 102, 107, 0.07) !important;
  color: var(--autsbi-primary) !important;
}

.share-hero .secondary-action,
.hero .secondary-action,
.hero-section .secondary-action {
  border-color: rgba(255, 255, 255, 0.85) !important;
  color: var(--autsbi-card-background) !important;
}

.share-hero .secondary-action:hover,
.hero .secondary-action:hover,
.hero-section .secondary-action:hover {
  background: rgba(255, 255, 255, 0.10) !important;
  color: var(--autsbi-card-background) !important;
}

.feature-card,
.service-card,
.solution-card,
.stat-card,
.download-card,
.download-product-card,
.page-card,
.side-card,
.route-card,
.visitors-card,
.visitor-card,
.review-card,
.pricing-card,
.contact-card,
.ai-card,
.standard-card,
.release-card,
.support-card {
  background: var(--autsbi-card-background) !important;
  border: 1px solid var(--autsbi-border-light) !important;
  border-radius: 14px !important;
  box-shadow: 0 8px 24px rgba(7, 59, 63, 0.06) !important;
  color: var(--autsbi-text-primary) !important;
}

.feature-card:hover,
.service-card:hover,
.solution-card:hover,
.stat-card:hover,
.download-card:hover,
.download-product-card:hover,
.page-card:hover,
.side-card:hover,
.route-card:hover,
.visitor-card:hover,
.review-card:hover,
.pricing-card:hover,
.contact-card:hover,
.standard-card:hover,
.release-card:hover,
.support-card:hover {
  transform: translateY(-3px);
  border-color: rgba(14, 143, 146, 0.35) !important;
  box-shadow: 0 12px 28px rgba(7, 59, 63, 0.09) !important;
}

.feature-card svg,
.service-card svg,
.solution-card svg,
.card-icon,
.icon,
.lucide {
  color: var(--autsbi-primary) !important;
  stroke: currentColor;
}

.feature-card h3,
.service-card h3,
.solution-card h3,
.card-title,
.section-title,
h1,
h2,
h3 {
  color: var(--autsbi-text-primary);
}

.feature-card p,
.service-card p,
.solution-card p,
.card-text,
.section-copy,
.muted {
  color: rgba(23, 40, 43, 0.68) !important;
}

.feature-ribbon,
.stats-band,
.section-soft,
.solutions-section,
.visitors-section,
.page-section:nth-of-type(even) {
  background: var(--autsbi-section-background) !important;
}

input,
select,
textarea,
.form-control,
.ai-chat-input {
  background: var(--autsbi-card-background) !important;
  color: var(--autsbi-text-primary) !important;
  border: 1px solid var(--autsbi-border-light) !important;
}

input:focus,
select:focus,
textarea:focus,
.form-control:focus,
.ai-chat-input:focus {
  border-color: var(--autsbi-interactive) !important;
  box-shadow: 0 0 0 3px rgba(14, 143, 146, 0.12) !important;
  outline: none;
}

table {
  background: var(--autsbi-card-background);
  color: var(--autsbi-text-primary);
}

thead,
th {
  background: var(--autsbi-section-background) !important;
  color: var(--autsbi-text-primary) !important;
}

td,
th {
  border-color: var(--autsbi-border-light) !important;
}

tr:hover {
  background: rgba(8, 102, 107, 0.04) !important;
}

tr.is-selected,
tr.selected {
  background: rgba(14, 143, 146, 0.08) !important;
}

.alert,
.notice,
.info-box {
  border-color: var(--autsbi-border-light) !important;
  background: rgba(14, 143, 146, 0.08) !important;
  color: var(--autsbi-text-primary) !important;
}

.alert-warning,
.warning {
  background: rgba(228, 179, 67, 0.16) !important;
  color: var(--autsbi-text-primary) !important;
  border-color: rgba(228, 179, 67, 0.34) !important;
}

.alert-admin,
.admin-notice {
  background: rgba(116, 52, 63, 0.08) !important;
  color: var(--autsbi-burgundy) !important;
  border-color: rgba(116, 52, 63, 0.18) !important;
}

.site-footer,
.footer {
  background: var(--autsbi-footer) !important;
  color: var(--autsbi-card-background) !important;
}

.site-footer a,
.footer a {
  color: rgba(255, 255, 255, 0.78) !important;
}

.site-footer a:hover,
.footer a:hover {
  color: var(--autsbi-gold) !important;
}

.site-footer input,
.footer input {
  background: var(--autsbi-card-background) !important;
  color: var(--autsbi-text-primary) !important;
  border: 1px solid var(--autsbi-border-light) !important;
}

.site-footer button,
.footer button,
.newsletter button {
  background: var(--autsbi-interactive) !important;
  color: var(--autsbi-card-background) !important;
  border-color: var(--autsbi-interactive) !important;
}

.ai-chat-toggle,
.ai-assistant-toggle,
.chat-launcher {
  background: var(--autsbi-footer) !important;
  color: var(--autsbi-card-background) !important;
  border: 1px solid rgba(14, 143, 146, 0.38) !important;
  box-shadow: 0 10px 26px rgba(7, 59, 63, 0.16) !important;
}

.ai-chat-toggle:hover,
.ai-assistant-toggle:hover,
.chat-launcher:hover {
  background: var(--autsbi-primary) !important;
}

.ai-chat-panel,
.ai-assistant-panel,
.chat-panel {
  background: var(--autsbi-card-background) !important;
  color: var(--autsbi-text-primary) !important;
  border: 1px solid var(--autsbi-border-light) !important;
  box-shadow: 0 16px 38px rgba(7, 59, 63, 0.16) !important;
}

.ai-chat-head,
.ai-assistant-head,
.chat-panel-header {
  background: linear-gradient(135deg, var(--autsbi-hero-start), var(--autsbi-hero-end)) !important;
  color: var(--autsbi-card-background) !important;
}

.ai-chat-watermark,
.chat-watermark,
.watermark-logo {
  opacity: 0.035 !important;
  filter: grayscale(1) brightness(1.4) !important;
}

:focus-visible {
  outline: 3px solid rgba(14, 143, 146, 0.32);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .site-header,
  body.scrolled .site-header {
    background: rgba(255, 255, 255, 0.98) !important;
  }

  .main-nav,
  .site-header .nav {
    background: var(--autsbi-card-background) !important;
    color: var(--autsbi-text-primary) !important;
    border-color: var(--autsbi-border-light) !important;
  }

  .main-nav a,
  .main-nav button,
  .site-header .nav a,
  .site-header .nav button {
    color: var(--autsbi-text-primary) !important;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 68px;
  }

  .language-pill {
    min-width: 0;
  }

  .feature-card,
  .service-card,
  .solution-card,
  .stat-card {
    border-radius: 14px !important;
  }
}

/* AUTSBI reference identity deployment lock - 20260727 */
:root {
  --autsbi-primary: #08666B;
  --autsbi-interactive: #0E8F92;
  --autsbi-gold: #E4B343;
  --autsbi-burgundy: #74343F;
  --autsbi-text-primary: #17282B;
  --autsbi-section-background: #F3F7F6;
  --autsbi-card-background: #FFFFFF;
  --autsbi-border-light: #DCE7E5;
  --autsbi-footer: #073B3F;
  --autsbi-hero-start: #073F44;
  --autsbi-hero-end: #0B7478;
}

html,
body {
  color: var(--autsbi-text-primary) !important;
  background: linear-gradient(180deg, var(--autsbi-card-background) 0%, var(--autsbi-section-background) 100%) !important;
}

.site-header,
body.scrolled .site-header,
.topbar,
.main-header {
  background: var(--autsbi-card-background) !important;
  color: var(--autsbi-text-primary) !important;
  border-bottom: 1px solid var(--autsbi-border-light) !important;
  box-shadow: 0 8px 24px rgba(7, 59, 63, 0.06) !important;
}

.site-header::before,
.site-header::after,
.topbar::before,
.topbar::after,
.main-header::before,
.main-header::after {
  display: none !important;
}

.header-inner,
.nav-shell {
  background: transparent !important;
}

.main-nav a,
.main-nav button,
.site-header nav a,
.site-header nav button,
.topbar a,
.topbar button,
.main-header a,
.main-header button {
  color: var(--autsbi-text-primary) !important;
  background: transparent !important;
  border-color: transparent !important;
}

.main-nav a:hover,
.main-nav button:hover,
.site-header nav a:hover,
.site-header nav button:hover,
.topbar a:hover,
.topbar button:hover,
.main-header a:hover,
.main-header button:hover {
  color: var(--autsbi-interactive) !important;
  background: transparent !important;
}

.main-nav a.active,
.main-nav button.active,
.site-header nav a.active,
.site-header nav button.active,
.topbar a.active,
.topbar button.active,
.main-header a.active,
.main-header button.active {
  color: var(--autsbi-primary) !important;
}

.main-nav a.active::after,
.main-nav button.active::after,
.site-header nav a.active::after,
.site-header nav button.active::after {
  background: var(--autsbi-interactive) !important;
}

.language-pill,
.language-toggle,
.lang-switch,
.lang-toggle {
  background: var(--autsbi-primary) !important;
  background-image: none !important;
  color: var(--autsbi-card-background) !important;
  border: 1px solid rgba(8, 102, 107, 0.18) !important;
  box-shadow: 0 8px 24px rgba(7, 59, 63, 0.06) !important;
}

.language-pill:hover,
.language-toggle:hover,
.lang-switch:hover,
.lang-toggle:hover {
  background: var(--autsbi-interactive) !important;
}

.language-pill *,
.language-toggle *,
.lang-switch *,
.lang-toggle * {
  color: inherit !important;
}

.hero,
.hero-section,
.page-hero,
.share-hero,
.landing-hero {
  background: linear-gradient(135deg, var(--autsbi-hero-start) 0%, var(--autsbi-hero-end) 100%) !important;
  color: var(--autsbi-card-background) !important;
}

.hero h1,
.hero h2,
.hero p,
.hero-section h1,
.hero-section h2,
.hero-section p,
.page-hero h1,
.page-hero h2,
.page-hero p,
.share-hero h1,
.share-hero h2,
.share-hero p,
.landing-hero h1,
.landing-hero h2,
.landing-hero p {
  color: var(--autsbi-card-background) !important;
}

.hero .eyebrow,
.page-hero .eyebrow,
.section-eyebrow,
.accent-text {
  color: var(--autsbi-gold) !important;
}

.btn-primary,
.demo-button,
.cta-primary,
.primary-button,
button[type="submit"] {
  background: var(--autsbi-primary) !important;
  border-color: var(--autsbi-primary) !important;
  color: var(--autsbi-card-background) !important;
}

.btn-primary:hover,
.demo-button:hover,
.cta-primary:hover,
.primary-button:hover,
button[type="submit"]:hover {
  background: var(--autsbi-interactive) !important;
  border-color: var(--autsbi-interactive) !important;
  color: var(--autsbi-card-background) !important;
  transform: translateY(-1px);
}

.btn-gold,
.hero .primary-cta,
.gold-button,
.download-button.primary {
  background: var(--autsbi-gold) !important;
  border-color: var(--autsbi-gold) !important;
  color: var(--autsbi-text-primary) !important;
}

.btn-gold:hover,
.hero .primary-cta:hover,
.gold-button:hover,
.download-button.primary:hover {
  filter: brightness(0.96);
  transform: translateY(-1px);
}

.btn-secondary,
.cta-secondary,
.secondary-button,
.download-button.secondary {
  background: transparent !important;
  color: var(--autsbi-primary) !important;
  border: 1px solid var(--autsbi-primary) !important;
}

.btn-secondary:hover,
.cta-secondary:hover,
.secondary-button:hover,
.download-button.secondary:hover {
  background: rgba(8, 102, 107, 0.07) !important;
  color: var(--autsbi-primary) !important;
}

.card,
.feature-card,
.service-card,
.solution-card,
.stat-card,
.download-card,
.visitor-card,
.page-card,
.content-card,
.info-card,
.pricing-card {
  background: var(--autsbi-card-background) !important;
  border: 1px solid var(--autsbi-border-light) !important;
  box-shadow: 0 8px 24px rgba(7, 59, 63, 0.06) !important;
}

.card:hover,
.feature-card:hover,
.service-card:hover,
.solution-card:hover,
.stat-card:hover,
.download-card:hover,
.visitor-card:hover,
.page-card:hover,
.content-card:hover,
.info-card:hover,
.pricing-card:hover {
  border-color: rgba(14, 143, 146, 0.35) !important;
  box-shadow: 0 12px 28px rgba(7, 59, 63, 0.09) !important;
  transform: translateY(-3px);
}

.card svg,
.feature-card svg,
.service-card svg,
.solution-card svg,
.stat-card svg,
.icon,
.feature-icon {
  color: var(--autsbi-primary) !important;
  stroke: currentColor !important;
}

input,
select,
textarea {
  background: var(--autsbi-card-background) !important;
  color: var(--autsbi-text-primary) !important;
  border: 1px solid var(--autsbi-border-light) !important;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--autsbi-interactive) !important;
  box-shadow: 0 0 0 3px rgba(14, 143, 146, 0.12) !important;
  outline: none !important;
}

table {
  background: var(--autsbi-card-background) !important;
  color: var(--autsbi-text-primary) !important;
}

thead,
th {
  background: var(--autsbi-section-background) !important;
  color: var(--autsbi-text-primary) !important;
}

td,
th {
  border-color: var(--autsbi-border-light) !important;
}

tr:hover {
  background: rgba(8, 102, 107, 0.04) !important;
}

.site-footer,
footer,
.footer {
  background: var(--autsbi-footer) !important;
  color: var(--autsbi-card-background) !important;
}

.site-footer a,
footer a,
.footer a {
  color: rgba(255, 255, 255, 0.78) !important;
}

.site-footer a:hover,
footer a:hover,
.footer a:hover {
  color: var(--autsbi-gold) !important;
}

.ai-chat-toggle,
.ai-assistant-toggle,
.chat-launcher {
  background: var(--autsbi-footer) !important;
  color: var(--autsbi-card-background) !important;
  border: 1px solid rgba(14, 143, 146, 0.38) !important;
  box-shadow: 0 10px 26px rgba(7, 59, 63, 0.16) !important;
}

.ai-chat-toggle:hover,
.ai-assistant-toggle:hover,
.chat-launcher:hover {
  background: var(--autsbi-primary) !important;
}

.ai-chat-head,
.ai-assistant-head,
.chat-panel-header {
  background: linear-gradient(135deg, var(--autsbi-hero-start), var(--autsbi-hero-end)) !important;
}

@media (max-width: 980px) {
  .site-header,
  body.scrolled .site-header,
  .topbar,
  .main-header {
    background: var(--autsbi-card-background) !important;
  }

  .main-nav,
  .site-header .nav,
  .mobile-nav {
    background: var(--autsbi-card-background) !important;
    color: var(--autsbi-text-primary) !important;
    border-color: var(--autsbi-border-light) !important;
  }
}

/* AUTSBI final logo refresh and white homepage surface. */
:root {
  --autsbi-primary: #08666B;
  --autsbi-interactive: #0E8F92;
  --autsbi-gold: #E4B343;
  --autsbi-text-primary: #17282B;
  --autsbi-section-background: #FFFFFF;
}

body,
.page-shell,
main {
  background-color: #FFFFFF !important;
}

.share-hero {
  background: #FFFFFF !important;
  color: var(--autsbi-text-primary) !important;
}

.share-hero::after {
  background: none !important;
  opacity: 0 !important;
}

.share-hero::before {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  top: 56% !important;
  width: min(720px, 78vw) !important;
  height: min(720px, 78vw) !important;
  transform: translate(-50%, -50%) !important;
  background: url("./assets/autsbi-mark-cyan-transparent.png?v=20260727newlogo-white3") center / contain no-repeat !important;
  opacity: 0.035 !important;
  filter: none !important;
  pointer-events: none !important;
  z-index: 0 !important;
  inset: auto !important;
}

.share-hero > * {
  position: relative;
  z-index: 1;
}

.share-hero::before,
.share-hero .brand-avatar,
.share-hero .hero-logo-mark,
.share-hero #hero-title {
  display: none !important;
  content: none !important;
  background: none !important;
}

.share-hero h1,
.share-hero h2,
.share-hero p,
.share-hero .hero-copy,
.share-hero .hero-subtitle {
  color: var(--autsbi-text-primary) !important;
}

.share-hero h1 span:last-child,
.site-header nav a.active,
.site-header nav button.active {
  color: var(--autsbi-interactive) !important;
}

.share-hero .hero-logo-mark img,
.assistant-watermark img {
  content: url("./assets/autsbi-mark-cyan-transparent.png?v=20260727newlogo-white3") !important;
}

.site-header .brand img,
.site-footer .footer-brand img,
.footer-brand img,
.brand img {
  content: url("./assets/header-logo-transparent.png?v=20260727newlogo-white3") !important;
}

/* Footer legal links and assistant footer clearance */
.site-footer .footer-legal {
  display: flex;
  justify-content: flex-start;
  gap: 24px;
  margin: 0;
  grid-area: legal;
}

.site-footer .footer-legal a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0 !important;
  color: rgba(255, 255, 255, 0.72) !important;
  background: transparent !important;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.3;
  text-align: center;
}

.site-footer .footer-legal a:hover {
  color: var(--gold-light) !important;
  background: rgba(235, 190, 66, 0.08) !important;
}

.site-footer .footer-social {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 12px;
  margin: 0;
  grid-area: social;
}

.site-footer .social-link {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  color: #FFFFFF !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.site-footer .social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.site-footer .social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28) !important;
}

.site-footer .social-whatsapp { background: #25D366 !important; }
.site-footer .social-facebook { background: #1877F2 !important; }
.site-footer .social-tiktok { background: #111111 !important; }
.site-footer .social-instagram { background: linear-gradient(135deg, #F58529, #DD2A7B 52%, #515BD4) !important; }
.site-footer .social-github { background: #24292F !important; }
.site-footer .social-email { background: #0E8F92 !important; }
.site-footer .social-phone { background: var(--gold) !important; color: #073B3F !important; }

.ai-chat.is-footer-hidden {
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px);
}

@media (max-width: 680px) {
  .site-footer .footer-legal {
    width: min(100% - 32px, 760px);
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }

  .site-footer .footer-legal a {
    min-width: 0;
  }

  .site-footer .footer-social {
    width: min(100% - 32px, 760px);
    justify-content: center;
    flex-wrap: wrap;
  }
}

.site-footer .footer-legal {
  width: auto;
}

.site-footer .footer-social {
  width: auto;
}

.site-footer .footer-legal,
.site-footer .footer-social {
  min-width: 0;
}

.site-footer .footer-legal {
  justify-self: end;
}

.site-footer .footer-social {
  justify-self: start;
}

.site-footer {
  --footer-inner-width: min(1220px, calc(100% - 48px));
}

.site-footer .footer-legal {
  margin-top: 0;
}

.site-footer .footer-legal + .footer-social {
  width: var(--footer-inner-width);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas: "legal social";
  align-items: center;
  gap: 24px;
  margin: 26px auto 0;
}

.site-footer .footer-legal + .footer-social .social-link {
  justify-self: auto;
}

/* Final footer bottom row: legal links on one side, social icons opposite. */
.site-footer .footer-links-row {
  width: min(1220px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas: "legal social";
  align-items: center;
  gap: 24px;
  margin: 26px auto 0;
}

.site-footer .footer-links-row .footer-legal {
  width: auto;
  display: flex;
  justify-content: flex-start;
  justify-self: start;
  gap: 24px;
  margin: 0;
  grid-area: legal;
}

.site-footer .footer-links-row .footer-social {
  width: auto;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  justify-content: flex-end;
  justify-self: end;
  align-items: center;
  gap: 12px;
  margin: 0;
  grid-area: social;
}

@media (max-width: 680px) {
  .site-footer .footer-links-row {
    width: min(100% - 32px, 760px);
    grid-template-columns: 1fr;
    grid-template-areas:
      "legal"
      "social";
    justify-items: center;
    gap: 18px;
  }

  .site-footer .footer-links-row .footer-legal,
  .site-footer .footer-links-row .footer-social {
    justify-content: center;
    justify-self: center;
    flex-wrap: wrap !important;
  }
}

/* Final quiet social icons: small, monochrome, no hover motion. */
.site-footer .footer-links-row .social-link {
  width: 24px !important;
  height: 24px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: rgba(203, 213, 225, 0.36) !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
  transition: none !important;
}

.site-footer .footer-links-row .social-link svg {
  width: 16px !important;
  height: 16px !important;
  opacity: 0.72;
}

.site-footer .footer-links-row .social-link:hover {
  color: rgba(203, 213, 225, 0.36) !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}

.site-footer .footer-links-row .footer-social {
  gap: 10px;
}

/* Final CTA override: compact brand wordmark and squared turmeric actions. */
.cta .cta-join-title {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  margin: 0 !important;
  color: rgba(23, 40, 43, 0.78) !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  line-height: 1.25 !important;
}

.cta .cta-brand-logo {
  display: none !important;
}

.cta .cta-brand-wordmark {
  direction: ltr;
  display: inline-flex;
  align-items: baseline;
  font-size: 20px;
  font-weight: 950;
  letter-spacing: 0.04em;
  line-height: 1;
}

.cta .cta-brand-wordmark span:first-child {
  color: #0f9198;
}

.cta .cta-brand-wordmark span:last-child {
  color: #eba516;
}

.cta .cta-account-actions .primary-action,
.cta .cta-account-actions .secondary-action {
  min-width: 170px !important;
  min-height: 46px !important;
  padding: 0 26px !important;
  color: #17282B !important;
  background: linear-gradient(135deg, #d79b20, #ebbe42) !important;
  border: 1px solid rgba(185, 138, 28, 0.62) !important;
  border-radius: 8px !important;
  box-shadow: 0 12px 26px rgba(185, 138, 28, 0.18) !important;
  font-size: 16px !important;
  transform: none !important;
}

.cta .cta-account-actions .primary-action {
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  color: #17282B !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: 15px !important;
}

.cta .cta-account-actions .secondary-action {
  background: linear-gradient(135deg, #d79b20, #ebbe42) !important;
  border-color: rgba(185, 138, 28, 0.62) !important;
}

.cta .cta-account-actions .primary-action:hover,
.cta .cta-account-actions .secondary-action:hover {
  color: #17282B !important;
  border-color: rgba(185, 138, 28, 0.62) !important;
  transform: none !important;
}

.cta .cta-account-actions .primary-action:hover {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.cta .cta-account-actions .secondary-action:hover {
  background: linear-gradient(135deg, #d79b20, #ebbe42) !important;
  border-color: rgba(185, 138, 28, 0.62) !important;
}
