/* ══════════════════════════════════════════════════════════════
   CONSULTING DESIGN SYSTEM — Color Tokens & Variables
   (ported from index-business-consulting / style.css)
══════════════════════════════════════════════════════════════ */
:root {
  /*  palette */
  --color-primary: #33b6ff;
  --color-secondary: #ff5b61;
  --color-tertiary: #a84dff;
  --color-pink: #d93fc4;
  --color-light-green: #6fd7ff;

  /* Darks */
  --color-dark: #061426;
  --color-blackest: #08101d;
  --color-lessdark: #13233c;
  --color-extra06: #102447;

  /* Text */
  --color-heading: #ffffff;
  --color-body: #c7d3e5;
  --color-gray: #8291a9;
  --color-midgray: #9aacbf;

  /* Borders */
  --color-border: hsla(0, 0%, 100%, 0.1);
  --color-white-off: rgba(255, 255, 255, 0.05);

  /* Hero accent system (matching consulting gradient set) */
  --hero-accent-1: #33b6ff;
  --hero-accent-2: #b24cff;
  --hero-accent-3: #ff6a6f;
  --hero-shadow: rgba(178, 76, 255, 0.28);

  /* TravelCore brand accent  */
  --blue: #248dff;
  --blue-light: #33b6ff;
  --blue-mid: #1947a8;

  /* Layout */
  --dark: #061426;
  --dark2: #0b1830;
  --dark3: #13233c;
  --mid: #1a2e4a;
  --border: hsla(0, 0%, 100%, 0.1);
  --text: #c7d3e5;
  --muted: #9aacbf;
  --white: #ffffff;

  /* Typography */
  --font-primary: "Inter", sans-serif;
  --font-display: "Inter", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Radius */
  --radius-small: 6px;
  --radius: 10px;
  --radius-big: 16px;

  /* Transitions */
  --transition: 0.3s;
  --ease: cubic-bezier(0.22, 0.68, 0, 1.2);
  --transition-transform: transform 0.65s cubic-bezier(0.23, 1, 0.32, 1);

  /* Shadow */
  --shadow-primary: 0 0 24px 6px rgba(178, 76, 255, 0.18);
}

/* ══════════════════════════════════════════════════════════════
   RESET
══════════════════════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-primary);
  background: var(--dark);
  color: var(--color-body);
  line-height: 1.6;
  overflow-x: hidden;
  transition:
    background-color 0.35s ease,
    color 0.35s ease;
}
body.active-light-mode {
  --color-heading: #182238;
  --color-body: #5f6f88;
  --color-gray: #7a8aa3;
  --color-midgray: #91a0b8;
  --color-border: rgba(24, 34, 56, 0.12);
  --color-white-off: rgba(24, 34, 56, 0.04);
  --dark: #f5f9ff;
  --dark2: #ffffff;
  --dark3: #edf3ff;
  --mid: #dfe9fb;
  --hero-shadow: rgba(51, 182, 255, 0.2);
  background: var(--dark);
  color: var(--color-body);
}
a {
  color: var(--color-heading);
  text-decoration: none;
  outline: none;
}
a:hover {
  color: var(--color-primary);
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* ══════════════════════════════════════════════════════════════
   SCROLLBAR
══════════════════════════════════════════════════════════════ */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--dark2);
}
::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 2px;
}

/* ══════════════════════════════════════════════════════════════
   NAV  (consulting header style — sticky blur)
══════════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 13px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 16, 29, 0.54);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.18);
  transition:
    background 0.4s ease,
    backdrop-filter 0.4s ease,
    padding 0.3s ease,
    box-shadow 0.3s ease;
}
#navbar.scrolled {
  background: rgba(6, 6, 6, 0.76);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--color-border);
  padding: 14px 60px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand-logo img {
  display: block;
  height: 38px;
  width: auto;
}
.brand-logo .logo-dark {
  display: none;
}
body.active-light-mode .brand-logo .logo-light {
  display: none;
}
body.active-light-mode .brand-logo .logo-dark {
  display: block;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  transition: color 0.2s;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.18);
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: linear-gradient(
    90deg,
    var(--hero-accent-1),
    var(--hero-accent-2)
  );
  transition: width 0.25s var(--ease);
}
.nav-links a:hover {
  color: var(--color-heading);
}
.nav-links a:hover::after {
  width: 100%;
}
/* scroll-spy: the section currently in view (URL stays clean, no #hash) */
.nav-links a.is-current {
  color: var(--color-heading);
}
.nav-links a.is-current::after {
  width: 100%;
}
.nav-cta {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  background: linear-gradient(
      95deg,
      var(--color-primary) 15%,
      var(--color-tertiary) 45%,
      var(--color-pink) 75%,
      var(--color-secondary) 100%
    )
    95% / 200% 100%;
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 9px 22px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    filter 0.2s,
    background-position 0.3s ease;
  box-shadow: 0 8px 24px var(--hero-shadow);
}
.nav-cta:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--hero-shadow);
  filter: brightness(1.15);
  background-position: 100% 0;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 767px) {
  .nav-cta {
    display: none;
  }
}
.mobile-menu__toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-menu__toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 20, 38, 0.58);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
  z-index: 97;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(86vw, 360px);
  height: 100vh;
  padding: 28px 22px 32px;
  background: rgba(11, 24, 48, 0.96);
  border-left: 1px solid var(--color-border);
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.24);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  z-index: 98;
  display: flex;
  flex-direction: column;
}
.mobile-menu__header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 18px;
}
.mobile-menu__close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.mobile-menu__links {
  list-style: none;
  display: grid;
  gap: 10px;
}
.mobile-menu__links a {
  display: block;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-heading);
  font-weight: 600;
}
.mobile-menu__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  background: linear-gradient(
    95deg,
    var(--color-primary) 15%,
    var(--color-tertiary) 45%,
    var(--color-pink) 75%,
    var(--color-secondary) 100%
  );
  color: #ffffff;
  font-weight: 700;
}
.mobile-menu-open {
  overflow: hidden;
}
.mobile-menu-open .mobile-menu__overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu-open .mobile-menu {
  transform: translateX(0);
}
.contact-form {
  display: block;
}
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-width: 40px;
  min-height: 40px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #7c5cff, #ff5b7a);
  color: #ffffff;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    filter 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}
.theme-toggle:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}
/* keep the focus ring only for keyboard users (no lingering ring after a mouse click) */
.theme-toggle:focus,
.lang-toggle:focus {
  outline: none;
}
.theme-toggle:focus-visible,
.lang-toggle:focus-visible {
  outline: 2px solid #7c5cff;
  outline-offset: 2px;
}
.theme-toggle__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
}
.theme-toggle__icon svg {
  width: 22px;
  height: 14px;
}
.theme-toggle__icon--moon {
  display: none;
}
.theme-toggle__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
body.active-light-mode .theme-toggle {
  background: linear-gradient(135deg, #7c5cff, #ff5b7a);
  border: 0;
  color: #ffffff;
}
body.active-light-mode .theme-toggle .theme-toggle__icon--sun {
  display: none;
}
body.active-light-mode .theme-toggle .theme-toggle__icon--moon {
  display: inline-flex;
}
body.active-light-mode .mobile-menu {
  background: rgba(255, 255, 255, 0.97);
}
body.active-light-mode .mobile-menu__overlay {
  background: rgba(15, 23, 42, 0.18);
}
body.active-light-mode .mobile-menu__toggle,
body.active-light-mode .mobile-menu__close,
body.active-light-mode .mobile-menu__links a {
  background: rgba(24, 34, 56, 0.05);
  border-color: rgba(24, 34, 56, 0.1);
  color: var(--color-heading);
}
body.active-light-mode .mobile-menu__toggle span {
  background: var(--color-heading);
}
body.active-light-mode nav {
  background: rgba(255, 255, 255, 0.72);
  border-bottom-color: rgba(24, 34, 56, 0.08);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}
body.active-light-mode nav.scrolled {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}
body.active-light-mode .sa-hero__overlay {
  background: rgba(12, 20, 35, 0.44);
}
body.active-light-mode .sa-hero__overlay::before {
  background: linear-gradient(
    to bottom,
    rgba(12, 20, 35, 0.12) 0%,
    rgba(12, 20, 35, 0.5) 100%
  );
}
body.active-light-mode .form-input,
body.active-light-mode .form-textarea {
  background: rgba(15, 23, 42, 0.03);
}
body.active-light-mode .sa-kpi {
  border-right-color: rgba(24, 24, 24, 0.08);
}
body.active-light-mode .sa-kpi:hover {
  background: rgba(5, 157, 255, 0.08);
}
body.active-light-mode .sc-cta {
  border-color: rgba(24, 24, 24, 0.16);
  background: rgba(255, 255, 255, 0.72);
}
body.active-light-mode .contact-wrap {
  background: var(--dark);
}
body.active-light-mode footer {
  background: #eaf1f7;
}
body.active-light-mode .feat-card__list li {
  color: rgba(24, 34, 56, 0.74);
}
body.active-light-mode .feat-card__desc {
  color: rgba(24, 34, 56, 0.84);
}
body.active-light-mode .sc-desc {
  color: rgba(24, 34, 56, 0.76);
}
body.active-light-mode .sc-cta {
  color: var(--color-heading);
}
body.active-light-mode .section-sub,
body.active-light-mode .feat-text p,
body.active-light-mode .footer-brand p,
body.active-light-mode .footer-col a,
body.active-light-mode .footer-copy,
body.active-light-mode .footer-copy span,
body.active-light-mode .stat-label,
body.active-light-mode .icon-item span,
body.active-light-mode .form-label,
body.active-light-mode .form-input,
body.active-light-mode .form-textarea,
body.active-light-mode .form-input::placeholder,
body.active-light-mode .form-textarea::placeholder,
body.active-light-mode .client-logo span,
body.active-light-mode .nav-links a,
body.active-light-mode .sc-tab,
body.active-light-mode .panel-key,
body.active-light-mode .panel-val {
  color: var(--color-body);
}
body.active-light-mode .section-title,
body.active-light-mode .feat-text h4,
body.active-light-mode .feat-card__title,
body.active-light-mode .stat-number,
body.active-light-mode .sc-title,
body.active-light-mode .footer-col h5,
body.active-light-mode .form-input,
body.active-light-mode .form-textarea,
body.active-light-mode .client-logo span,
body.active-light-mode .nav-logo,
body.active-light-mode .nav-links a:hover,
body.active-light-mode .nav-links a.is-current,
body.active-light-mode .sc-tab.is-active {
  color: var(--color-heading);
}
body.active-light-mode .footer-copy span {
  color: var(--hero-accent-1);
}
body.active-light-mode .feat-card__title {
  color: #ffffff;
}
body.active-light-mode .feat-card__desc {
  color: rgba(255, 255, 255, 0.84);
}
body.active-light-mode .feat-card__list li {
  color: rgba(255, 255, 255, 0.76);
}
body.active-light-mode .feat-card__list li::before {
  color: #ffffff;
}
body.active-light-mode .sc-title {
  color: #ffffff;
}
body.active-light-mode .sc-desc {
  color: rgba(255, 255, 255, 0.84);
}
body.active-light-mode .sc-cta {
  color: #182238;
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.55);
}
body.active-light-mode .stats-wrap {
  background: var(--dark2);
}
body.active-light-mode .stat-number {
  color: var(--hero-accent-2);
  -webkit-text-fill-color: initial;
  background: none;
  text-shadow: none;
}
body.active-light-mode .stat-label {
  color: var(--color-body);
}

/* ══════════════════════════════════════════════════════════════
   HERO — Ken-Burns slideshow (full consulting sa-hero system)
══════════════════════════════════════════════════════════════ */
.sa-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* slides */
.sa-hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.sa-hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}
.sa-hero__slide.is-active {
  opacity: 1;
  animation: sa-kenburns 9s ease-in-out forwards;
}
.sa-hero__slide.is-leaving {
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes sa-kenburns {
  0% {
    transform: scale(1.08) translateX(0px);
  }
  100% {
    transform: scale(1) translateX(-12px);
  }
}
.sa-hero__slide:nth-child(even).is-active {
  animation: sa-kenburns-alt 9s ease-in-out forwards;
}
@keyframes sa-kenburns-alt {
  0% {
    transform: scale(1) translateX(12px);
  }
  100% {
    transform: scale(1.08) translateX(0px);
  }
}

/* layered overlay */
.sa-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(6, 6, 6, 0.52);
}
.sa-hero__overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6, 6, 6, 0.15) 0%,
    rgba(6, 6, 6, 0.55) 50%,
    rgba(6, 6, 6, 0.92) 100%
  );
}
.sa-hero__overlay::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--hero-accent-1) 30%,
    var(--hero-accent-2) 55%,
    var(--hero-accent-3) 78%,
    transparent
  );
  opacity: 0.8;
}

/* content wrapper */
.sa-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 980px;
  width: 100%;
}
.sa-hero__content::before {
  content: "";
  position: absolute;
  inset: -36px -28px -28px;
  border-radius: 36px;
  background: linear-gradient(
    180deg,
    rgba(10, 14, 28, 0.14) 0%,
    rgba(10, 14, 28, 0.26) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
  box-shadow: 0 22px 60px rgba(7, 12, 26, 0.22);
}

/* eyebrow label */
.sa-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hero-accent-1);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(16px);
  animation: sa-fadein 0.9s 0.3s ease forwards;
}
.sa-hero__eyebrow::before,
.sa-hero__eyebrow::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--hero-accent-1);
  opacity: 0.6;
}

/* title */
.sa-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 6.2rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 22px;
  text-shadow: 0 8px 30px rgba(8, 10, 18, 0.28);
  opacity: 0;
  transform: translateY(20px);
  animation: sa-fadein 0.9s 0.55s ease forwards;
}
.sa-hero__title em {
  font-style: normal;
  color: var(--hero-accent-3);
}

/* description */
.sa-hero__desc {
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  max-width: 620px;
  margin: 0 auto 42px;
  opacity: 0;
  transform: translateY(20px);
  animation: sa-fadein 0.9s 0.75s ease forwards;
}

/* buttons */
.sa-hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: sa-fadein 0.9s 0.95s ease forwards;
}
.sa-hero__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 32px;
  background: linear-gradient(
      95deg,
      var(--color-primary) 15%,
      var(--color-tertiary) 45%,
      var(--color-pink) 75%,
      var(--color-secondary) 100%
    )
    95% / 200% 100%;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 18px 36px var(--hero-shadow);
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    filter 0.3s,
    background-position 0.3s ease;
  border: none;
}
.sa-hero__btn-primary:hover {
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 22px 44px var(--hero-shadow);
  filter: brightness(1.15);
  background-position: 100% 0;
}
.sa-hero__btn-secondary {
  display: inline-flex;
  align-items: center;
  height: 52px;
  padding: 0 32px;
  background: transparent;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  border: 2px solid var(--color-border);
  border-radius: 8px;
  text-decoration: none;
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.3s,
    color 0.3s;
}
.sa-hero__btn-secondary:hover {
  border-color: var(--color-secondary);
  color: #ffffff;
  background: var(--color-secondary);
  transform: translateY(-2px);
}

/* KPI strip */
.sa-hero__kpis {
  display: flex;
  justify-content: center;
  gap: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: sa-fadein 0.9s 1.15s ease forwards;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  max-width: 700px;
  margin: 0 auto;
}
.sa-kpi {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 22px 28px;
  flex: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s;
  cursor: default;
}
.sa-kpi:last-child {
  border-right: none;
}
.sa-kpi:hover {
  background: rgba(255, 255, 255, 0.06);
}
.sa-kpi__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(51, 182, 255, 0.2) 0%,
    rgba(178, 76, 255, 0.18) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.sa-kpi__icon svg {
  width: 16px;
  height: 16px;
  fill: var(--hero-accent-1);
  stroke: none;
}
.sa-kpi__val {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ffffff 0%, var(--hero-accent-2) 88%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}
.sa-kpi__lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
  font-weight: 500;
}

/* slide indicators */
.sa-hero__indicators {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
  align-items: center;
}
.sa-hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  border: none;
  padding: 0;
  transition:
    background 0.3s,
    width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.sa-hero__dot.is-active {
  background: linear-gradient(
    90deg,
    var(--hero-accent-1),
    var(--hero-accent-2)
  );
  width: 24px;
  border-radius: 3px;
}
.sa-hero__dot:hover {
  background: rgba(178, 76, 255, 0.6);
}

/* location label */
.sa-hero__location {
  position: absolute;
  bottom: 50px;
  right: 40px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.sa-hero__location.is-visible {
  opacity: 1;
}
.sa-hero__location svg {
  width: 13px;
  height: 13px;
  stroke: var(--hero-accent-1);
  fill: none;
  stroke-width: 2;
}

/* progress bar */
.sa-hero__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--hero-accent-1),
    var(--hero-accent-2),
    var(--hero-accent-3)
  );
  z-index: 4;
  width: 0%;
  transition: width linear;
  opacity: 0.85;
}

/* scroll cue */
.sa-hero__scroll {
  position: absolute;
  bottom: 42px;
  left: 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: sa-fadein 1s 1.4s ease forwards;
}
.sa-hero__scroll span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  writing-mode: vertical-rl;
}
.sa-hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(178, 76, 255, 0.7), transparent);
  animation: sa-scrollpulse 2s ease-in-out infinite 1.5s;
}
@keyframes sa-scrollpulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.15);
  }
}

/* fade-in keyframe */
@keyframes sa-fadein {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════════════════════════════════════
   SECTION COMMON
══════════════════════════════════════════════════════════════ */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background: linear-gradient(
    90deg,
    var(--hero-accent-1),
    var(--hero-accent-2)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  color: var(--color-heading);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 18px;
}
.section-sub {
  font-size: 16px;
  color: var(--color-midgray);
  max-width: 520px;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════
   SEPARATOR
══════════════════════════════════════════════════════════════ */
.rbt-separator-mid {
  padding: 0;
}
.rbt-separator {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   SERVICE CARDS (consulting icon-circle style)
══════════════════════════════════════════════════════════════ */
.service-area {
  background: var(--dark2);
}
.service-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--dark3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-big);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s var(--ease),
    border-color 0.3s,
    box-shadow 0.3s;
  opacity: 0;
  transform: translateY(40px);
}
.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(178, 76, 255, 0.4);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(178, 76, 255, 0.15);
}
.service-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(178, 76, 255, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover::after {
  opacity: 1;
}
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(51, 182, 255, 0.18) 0%,
    rgba(178, 76, 255, 0.18) 100%
  );
  border: 1px solid rgba(178, 76, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 22px;
  transition:
    transform 0.3s,
    background 0.3s;
}
.service-card:hover .service-icon {
  transform: scale(1.1);
  background: linear-gradient(
    135deg,
    rgba(51, 182, 255, 0.28) 0%,
    rgba(178, 76, 255, 0.28) 100%
  );
}
.service-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--hero-accent-1);
  fill: none;
}
.service-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.service-card p {
  font-size: 14px;
  color: var(--color-midgray);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════
   BC-STATS AREA (consulting dashboard system)
══════════════════════════════════════════════════════════════ */
.bc-stats-area {
  background: var(--dark);
  padding: 80px 0;
}
.bc-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  align-items: center;
}
.bc-feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bc-feature-hint {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--dark2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s,
    box-shadow 0.3s;
  cursor: default;
}
.bc-feature-hint:hover {
  border-color: rgba(178, 76, 255, 0.35);
  transform: translateX(6px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.bc-feature-hint .bc-feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    rgba(51, 182, 255, 0.18) 0%,
    rgba(178, 76, 255, 0.18) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bc-feature-hint .bc-feat-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--hero-accent-1);
  fill: none;
}
.bc-feature-hint span {
  font-size: 14px;
  color: var(--color-body);
  line-height: 1.5;
  font-weight: 400;
}

/* dashboard cards */
.bc-dashboard-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.bc-dash-card {
  background: var(--dark2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-big);
  padding: 24px;
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s,
    box-shadow 0.3s;
}
.bc-dash-card:hover {
  transform: translateY(-4px);
  border-color: rgba(178, 76, 255, 0.3);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}
.bc-card-main {
  grid-column: 1 / -1;
}
.bc-dash-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.bc-dash-label {
  font-size: 12px;
  color: var(--color-midgray);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.bc-dash-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-heading);
  letter-spacing: -1px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.bc-badge-up {
  font-size: 12px;
  font-weight: 600;
  color: #3eb75e;
  background: rgba(62, 183, 94, 0.15);
  border-radius: 6px;
  padding: 2px 8px;
}
.bc-dash-dots {
  display: flex;
  gap: 5px;
  margin-top: 4px;
}
.bc-dash-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
}
.bc-dash-dots span:first-child {
  background: #ff5f57;
}
.bc-dash-dots span:nth-child(2) {
  background: #febc2e;
}
.bc-dash-dots span:last-child {
  background: #28c840;
}

/* sparkline SVG */
.bc-sparkline {
  width: 100%;
  height: 60px;
}
.bc-spark-line {
  fill: none;
  stroke: url(#sparkGrad);
  stroke-width: 2.5;
}
.bc-spark-fill {
  fill: url(#sparkFill);
  opacity: 0.3;
}

/* donut chart */
.bc-donut-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
}
.bc-donut-svg {
  position: relative;
  width: 90px;
  height: 90px;
}
.bc-donut-svg svg {
  width: 100%;
  height: 100%;
}
.bc-donut-bg {
  stroke: rgba(255, 255, 255, 0.08);
}
.bc-donut-seg1 {
  stroke: var(--hero-accent-2);
}
.bc-donut-seg2 {
  stroke: var(--hero-accent-1);
}
.bc-donut-seg3 {
  stroke: rgba(255, 255, 255, 0.2);
}
.bc-donut-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--color-heading);
}
.bc-donut-legend {
  display: flex;
  gap: 12px;
}
.bc-leg {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.4px;
}
.bc-leg-1 {
  background: rgba(178, 76, 255, 0.2);
  color: var(--hero-accent-2);
}
.bc-leg-2 {
  background: rgba(51, 182, 255, 0.2);
  color: var(--hero-accent-1);
}
.bc-leg-3 {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-midgray);
}

/* bar chart */
.bc-bars-wrap {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 140px;
  margin-top: 12px;
}
.bc-bar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  height: 100%;
}
.bc-bar-inner {
  width: 100%;
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: rgba(255, 255, 255, 0.15);
  animation: bc-bar-rise 1.1s cubic-bezier(0.4, 0, 0.2, 1) both;
  transform-origin: bottom;
}
@keyframes bc-bar-rise {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}
.bc-bar-active .bc-bar-inner {
  background: linear-gradient(
    to top,
    var(--hero-accent-1),
    var(--hero-accent-2)
  );
}
.bc-bar-col span {
  font-size: 10px;
  color: var(--color-midgray);
}

/* ══════════════════════════════════════════════════════════════
   SOLUTIONS GRID
══════════════════════════════════════════════════════════════ */
.solutions-wrap {
  background: var(--dark2);
}
.solutions-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 60px;
}
.solutions-header {
  margin-bottom: 56px;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.sol-card {
  background: var(--dark3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-big);
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s,
    box-shadow 0.3s;
  cursor: default;
}
.sol-card::before {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  opacity: 0;
  transition:
    transform 0.4s var(--ease),
    opacity 0.4s;
}
.sol-card:hover {
  transform: translateY(-6px);
  border-color: rgba(178, 76, 255, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.sol-card:hover::before {
  opacity: 0.09;
  transform: scale(3);
}
.sol-card:nth-child(1)::before {
  background: var(--hero-accent-1);
}
.sol-card:nth-child(2)::before {
  background: #1d9e75;
}
.sol-card:nth-child(3)::before {
  background: var(--hero-accent-3);
}
.sol-card:nth-child(4)::before {
  background: var(--hero-accent-2);
}
.sol-card:nth-child(5)::before {
  background: var(--blue);
}
.sol-card:nth-child(6)::before {
  background: #f59e0b;
}
.sol-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.sol-icon svg {
  width: 22px;
  height: 22px;
}
.sol-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-midgray);
  margin-bottom: 10px;
}
.sol-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.sol-card p {
  font-size: 13px;
  color: var(--color-midgray);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════════════════════ */
.stats-wrap {
  background: var(--dark);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-col {
  text-align: center;
  padding: 36px 20px;
  border-right: 1px solid var(--color-border);
  position: relative;
}
.stat-col:last-child {
  border-right: none;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ffffff 0%, var(--hero-accent-2) 88%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-number span {
  color: inherit;
}
.stat-label {
  font-size: 13px;
  color: var(--color-midgray);
  letter-spacing: 0.5px;
}

/* ══════════════════════════════════════════════════════════════
   LOGISTICS
══════════════════════════════════════════════════════════════ */
.logistics-wrap {
  background: var(--dark2);
}
.logistics-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 60px;
}
.logistics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 52px;
  align-items: start;
}
.logistics-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.feat-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 0;
  padding: 28px 24px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.01)
  );
  min-height: 100%;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
}
.feat-row:hover {
  transform: translateY(-4px);
  border-color: rgba(178, 76, 255, 0.28);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
}
.feat-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    rgba(51, 182, 255, 0.18) 0%,
    rgba(178, 76, 255, 0.18) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(178, 76, 255, 0.15);
  color: var(--hero-accent-2);
}
.feat-text h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 8px;
}
.feat-text p {
  font-size: 13.5px;
  color: var(--color-midgray);
  line-height: 1.6;
}

/* panel (consulting bc-dash style) */
.logistics-panel {
  display: none;
}
.panel-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.panel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.panel-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-midgray);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-left: 6px;
}
.panel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}
.panel-row:last-child {
  border-bottom: none;
}
.panel-key {
  font-size: 13px;
  color: var(--color-midgray);
}
.panel-val {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-heading);
  display: flex;
  align-items: center;
  gap: 8px;
}
.tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 4px;
  padding: 2px 8px;
}
.tag-blue {
  background: rgba(5, 157, 255, 0.15);
  color: var(--color-primary);
}
.tag-green {
  background: rgba(62, 183, 94, 0.15);
  color: #3eb75e;
}

/* icon grid */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 52px;
}
.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: var(--dark3);
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.2s;
  cursor: default;
}
.icon-item:hover {
  border-color: rgba(178, 76, 255, 0.3);
  background: rgba(178, 76, 255, 0.06);
  transform: translateY(-3px);
}
.icon-item svg {
  width: 26px;
  height: 26px;
  color: var(--hero-accent-1);
}
.icon-item span {
  font-size: 11px;
  color: var(--color-midgray);
  text-align: center;
  line-height: 1.4;
}

/* ══════════════════════════════════════════════════════════════
   CLIENTS MARQUEE
══════════════════════════════════════════════════════════════ */
.clients-wrap {
  background: var(--dark);
}
.clients-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 60px;
  text-align: center;
}
.clients-inner .section-sub {
  margin: 0 auto 48px;
}
.clients-track-wrap {
  overflow: hidden;
  position: relative;
}
.clients-track-wrap::before,
.clients-track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
}
.clients-track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--dark), transparent);
}
.clients-track-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--dark), transparent);
}
.clients-track {
  display: flex;
  gap: 32px;
  align-items: center;
  animation: marquee 24s linear infinite;
  width: max-content;
}
.clients-track:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  min-height: 110px;
  padding: 18px 24px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--dark2);
  transition:
    border-color 0.3s,
    background 0.3s;
}
.client-logo:hover {
  border-color: rgba(178, 76, 255, 0.4);
  background: var(--dark3);
}
.client-logo img {
  display: block;
  max-width: 150px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(1.1);
  opacity: 0.9;
  transition:
    filter 0.3s,
    opacity 0.3s;
}
.client-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* ══════════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════════ */
.contact-wrap {
  background: #04040a;
}
.contact-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 100px 60px;
}
.contact-inner .section-sub {
  margin-bottom: 48px;
}
.contact-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.form-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-body);
  letter-spacing: 0.2px;
}
.form-input,
.form-textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  padding: 13px 16px;
  font-size: 14px;
  color: var(--color-heading);
  font-family: var(--font-primary);
  outline: none;
  width: 100%;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-midgray);
}
.form-input:focus,
.form-textarea:focus {
  border-color: rgba(178, 76, 255, 0.5);
  background: rgba(178, 76, 255, 0.04);
}
.form-textarea {
  resize: vertical;
  min-height: 140px;
}
.btn-send {
  width: 100%;
  padding: 15px;
  background: linear-gradient(
      95deg,
      var(--color-primary) 15%,
      var(--color-tertiary) 45%,
      var(--color-pink) 75%,
      var(--color-secondary) 100%
    )
    95% / 200% 100%;
  color: var(--white);
  border: none;
  border-radius: var(--radius-small);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.3px;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 0 12px 32px var(--hero-shadow);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    filter 0.2s,
    background-position 0.3s ease;
}
.btn-send:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px var(--hero-shadow);
  filter: brightness(1.12);
  background-position: 100% 0;
}
.btn-send:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  filter: none;
  box-shadow: none;
}
.form-status {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.5;
  min-height: 1.2em;
}
.form-status--success {
  color: #3eb75e;
}
.form-status--error {
  color: var(--color-secondary);
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
footer {
  background: #020408;
  border-top: 1px solid var(--color-border);
  padding: 60px 60px 36px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo {
  display: block;
  margin-bottom: 16px;
}
.footer-brand .brand-logo img {
  height: 44px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--color-midgray);
  line-height: 1.7;
  max-width: 220px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-midgray);
  text-decoration: none;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}
.social-btn:hover {
  border-color: var(--hero-accent-2);
  color: var(--hero-accent-2);
  background: rgba(178, 76, 255, 0.08);
}
.social-btn svg {
  width: 15px;
  height: 15px;
}
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}
.footer-col a {
  font-size: 13px;
  color: var(--color-midgray);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--color-heading);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
}
.footer-copy {
  font-size: 12px;
  color: var(--color-midgray);
}
.footer-copy span {
  color: var(--hero-accent-1);
}

/* CTA band */
.cta-band {
  background: linear-gradient(
    135deg,
    rgba(51, 182, 255, 0.1) 0%,
    rgba(178, 76, 255, 0.12) 50%,
    rgba(245, 158, 11, 0.08) 100%
  );
  border-top: 1px solid rgba(178, 76, 255, 0.2);
  border-bottom: 1px solid rgba(178, 76, 255, 0.2);
  padding: 80px 60px;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--color-heading);
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.cta-band p {
  font-size: 16px;
  color: var(--color-midgray);
  margin-bottom: 36px;
}
.cta-band .sa-hero__btn-primary {
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════════
   SOLUTIONS SHOWCASE (-style full-bleed image panels)
══════════════════════════════════════════════════════════════ */
.showcase-wrap {
  position: relative;
  background: var(--dark2);
}
.showcase-tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--color-border);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}
.sc-tab {
  background: transparent;
  border: none;
  color: var(--color-midgray);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 20px 28px;
  cursor: pointer;
  position: relative;
  transition: color 0.25s;
}
.sc-tab::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--hero-accent-1),
    var(--hero-accent-2)
  );
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
  border-radius: 2px 2px 0 0;
}
.sc-tab:hover {
  color: var(--color-body);
}
.sc-tab.is-active {
  color: var(--color-heading);
}
.sc-tab.is-active::after {
  transform: scaleX(1);
}
.sc-panel {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  display: none;
}
.sc-panel.is-active {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
.sc-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 8s ease-out;
  will-change: transform;
}
.sc-panel.is-active .sc-bg {
  transform: scale(1);
}
.sc-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(4, 8, 20, 0.9) 0%,
    rgba(4, 8, 20, 0.72) 48%,
    rgba(4, 8, 20, 0.2) 100%
  );
}
.sc-overlay::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--hero-accent-1),
    var(--hero-accent-2),
    var(--hero-accent-3)
  );
  opacity: 0.75;
}
.sc-content {
  position: relative;
  z-index: 2;
  padding: 52px 60px;
  max-width: 560px;
  transform: translateY(14px);
  opacity: 0;
  transition:
    opacity 0.5s 0.1s ease,
    transform 0.5s 0.1s ease;
}
.sc-panel.is-active .sc-content {
  opacity: 1;
  transform: translateY(0);
}
.sc-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(
    90deg,
    var(--hero-accent-1),
    var(--hero-accent-2)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}
.sc-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: var(--color-heading);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 18px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}
.sc-desc {
  font-size: 16px;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 28px;
  max-width: 460px;
}
.sc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-heading);
  text-decoration: none;
  padding: 10px 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.25s;
}
.sc-cta:hover {
  background: linear-gradient(
    135deg,
    rgba(51, 182, 255, 0.25),
    rgba(178, 76, 255, 0.25)
  );
  border-color: rgba(178, 76, 255, 0.5);
  color: var(--color-heading);
  transform: translateX(4px);
}
.sc-dots {
  position: absolute;
  right: 60px;
  bottom: 36px;
  z-index: 10;
  display: flex;
  gap: 8px;
  align-items: center;
}
.sc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.3s,
    width 0.4s var(--ease);
}
.sc-dot.is-active {
  background: linear-gradient(
    90deg,
    var(--hero-accent-1),
    var(--hero-accent-2)
  );
  width: 22px;
  border-radius: 3px;
}
@media (max-width: 768px) {
  .showcase-tabs-nav {
    padding: 0 20px;
    overflow-x: auto;
  }
  .sc-tab {
    padding: 16px 18px;
    font-size: 13px;
    white-space: nowrap;
  }
  .sc-panel {
    min-height: 380px;
  }
  .sc-content {
    padding: 32px 24px;
    max-width: 90%;
  }
  .sc-dots {
    right: 24px;
    bottom: 24px;
  }
}

/* ══════════════════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .bc-stats-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .icon-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .sa-hero__kpis {
    flex-wrap: wrap;
  }
  .sa-kpi {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    min-width: 45%;
  }
}
@media (max-width: 768px) {
  #navbar {
    padding: 18px 24px;
  }
  #navbar.scrolled {
    padding: 14px 24px;
  }
  .nav-links {
    display: none;
  }
  .nav-actions {
    gap: 8px;
  }
  .nav-actions .lang-toggle,
  .nav-actions .theme-toggle {
    display: none;
  }
  .mobile-menu__toggle {
    display: inline-flex;
  }
  .theme-toggle {
    padding: 0 12px;
  }
  .theme-toggle__label {
    display: none;
  }
  .sa-hero__title {
    font-size: clamp(2rem, 11vw, 3.3rem) !important;
  }
  .sa-hero__kpis {
    border-radius: 14px;
  }
  .sa-kpi {
    min-width: 50%;
  }
  .service-inner {
    grid-template-columns: 1fr;
    padding: 60px 28px;
  }
  .bc-stats-inner,
  .solutions-inner,
  .logistics-inner,
  .clients-inner,
  .contact-inner {
    padding-left: 28px;
    padding-right: 28px;
  }
  .bc-dashboard-wrap {
    grid-template-columns: 1fr;
  }
  .bc-card-main {
    grid-column: unset;
  }
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  .logistics-grid {
    grid-template-columns: 1fr;
  }
  .logistics-features {
    grid-template-columns: 1fr;
  }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px 28px;
  }
  .stat-col:nth-child(2) {
    border-right: none;
  }
  .icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .cta-band {
    padding: 60px 28px;
  }
  .sa-hero__scroll,
  .sa-hero__location {
    display: none;
  }
  .contact-grid-2 {
    grid-template-columns: 1fr;
  }
  footer {
    padding: 48px 28px 28px;
  }
}
@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* ══════════════════════════════════════════════════════════════
   BOOKING SYSTEMS FEATURES GRID
══════════════════════════════════════════════════════════════ */
.features-area {
  background: var(--dark);
  padding: 100px 0;
}
.features-head {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 60px;
  text-align: center;
}
.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feat-card {
  position: relative;
  border-radius: var(--radius-big);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--color-border);
  cursor: default;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease),
    box-shadow 0.4s,
    border-color 0.4s;
}
.feat-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.feat-card:hover {
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(178, 76, 255, 0.25);
  border-color: rgba(178, 76, 255, 0.3);
}

/* background image layer */
.feat-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 0;
}
.feat-card:hover .feat-card__bg {
  transform: scale(1.06);
}

/* gradient overlay */
.feat-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(6, 6, 8, 0.97) 0%,
    rgba(6, 6, 8, 0.78) 40%,
    rgba(6, 6, 8, 0.28) 75%,
    rgba(6, 6, 8, 0.08) 100%
  );
  transition: background 0.4s;
}
.feat-card:hover .feat-card__overlay {
  background: linear-gradient(
    to top,
    rgba(6, 6, 8, 0.98) 0%,
    rgba(6, 6, 8, 0.88) 50%,
    rgba(6, 6, 8, 0.42) 80%,
    rgba(6, 6, 8, 0.12) 100%
  );
}

/* content */
.feat-card__body {
  position: relative;
  z-index: 2;
  padding: 32px 28px 28px;
}

/* icon badge */
.feat-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
.feat-card__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
}
.feat-card__icon svg {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 1;
  stroke: #fff;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* expandable content region */
.feat-card__main {
  overflow: hidden;
}
.feat-card__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--color-heading);
  letter-spacing: -0.4px;
  margin-bottom: 10px;
  line-height: 1.2;
}
.feat-card__desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  margin-bottom: 14px;
}
.feat-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.feat-card__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 400;
}
.feat-card__list li::before {
  content: "✓";
  font-size: 11px;
  font-weight: 700;
  color: var(--hero-accent-2);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background: rgba(178, 76, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* colored top accent line per card */
.feat-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s;
}
.feat-card:hover .feat-card__accent {
  opacity: 1;
}
.feat-card--link {
  width: 100%;
  padding: 0;
  appearance: none;
  background: none;
  text-align: left;
  color: inherit;
}
.feat-card--link:hover {
  color: inherit;
}
.feat-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}
.feat-card__cta::after {
  content: "\2192";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}
.feat-card:hover .feat-card__cta::after {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.24);
}

/* ── MODULE MODAL (simplified) ──────────────────────────────── */
body.module-modal-open {
  overflow: hidden;
}

.module-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}
.module-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Backdrop */
.module-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(51, 182, 255, 0.2),
      transparent 28%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 91, 97, 0.18),
      transparent 26%
    ),
    rgba(2, 8, 20, 0.82);
}

/* Shell — the card */
.module-modal__shell {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 94vh;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02)
    ),
    var(--dark2);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(12px);
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}
.module-modal.is-open .module-modal__shell {
  transform: translateY(0);
}

/* Close button */
.module-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-heading);
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}
.module-modal__close:hover {
  transform: rotate(90deg) scale(1.06);
  background: rgba(255, 255, 255, 0.2);
}
.module-modal__close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

/* Scroll container */
.module-modal__scroll {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 56px clamp(22px, 5vw, 60px) 48px;
}

/* Image */
.module-modal__image {
  width: 100%;
  height: clamp(220px, 36vh, 420px);
  margin: 0 0 24px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  flex-shrink: 0;
}

/* Pill */
.module-modal__pill {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hero-accent-1);
  background: rgba(51, 182, 255, 0.12);
  border: 1px solid rgba(51, 182, 255, 0.25);
}

/* Title */
.module-modal__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--color-heading);
}

/* Description */
.module-modal__desc {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  max-width: 760px;
}

/* Metrics */
.module-modal__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 30px;
}
.module-modal__metric {
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.module-modal__metric-val {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-heading);
}
.module-modal__metric-lbl {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--color-midgray);
}

/* Capabilities / use-cases columns */
.module-modal__cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 30px;
}
.module-modal__subtitle {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-heading);
  margin-bottom: 14px;
}
.module-modal__list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.module-modal__list li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-body);
}
.module-modal__list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--hero-accent-2);
  background: rgba(178, 76, 255, 0.15);
  border-radius: 50%;
}

/* Story */
.module-modal__story {
  padding: 22px 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
}
.module-modal__story .module-modal__subtitle {
  text-transform: none;
  letter-spacing: -0.01em;
  font-size: 17px;
}
.module-modal__storytext {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--color-body);
}

/* Full-page link */
.module-modal__fullpage {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 12px 22px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(
      95deg,
      var(--color-primary) 15%,
      var(--color-tertiary) 45%,
      var(--color-pink) 75%,
      var(--color-secondary) 100%
    )
    95% / 200% 100%;
  box-shadow: 0 12px 30px var(--hero-shadow);
  transition:
    transform 0.2s,
    filter 0.2s,
    background-position 0.3s ease;
}
.module-modal__fullpage:hover {
  color: #ffffff;
  transform: translateY(-2px);
  filter: brightness(1.08);
  background-position: 100% 0;
}

@media (max-width: 640px) {
  .module-modal__cols,
  .module-modal__metrics {
    grid-template-columns: 1fr;
  }
}

/* Light-mode tweaks for the rich modal */
body.active-light-mode .module-modal__metric,
body.active-light-mode .module-modal__story {
  background: rgba(24, 34, 56, 0.04);
  border-color: rgba(24, 34, 56, 0.1);
}
body.active-light-mode .module-modal__desc,
body.active-light-mode .module-modal__storytext,
body.active-light-mode .module-modal__list li {
  color: var(--color-body);
}

/* Light mode overrides */
body.active-light-mode .module-modal__backdrop {
  background:
    radial-gradient(
      circle at top left,
      rgba(51, 182, 255, 0.18),
      transparent 28%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 91, 97, 0.16),
      transparent 24%
    ),
    rgba(240, 246, 255, 0.82);
}
body.active-light-mode .module-modal__shell {
  border-color: rgba(24, 34, 56, 0.1);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.98)
  );
}
body.active-light-mode .module-modal__close {
  background: rgba(24, 34, 56, 0.06);
  border-color: rgba(24, 34, 56, 0.12);
  color: #182238;
}
body.active-light-mode .module-modal__icon {
  background: rgba(24, 34, 56, 0.06);
  border-color: rgba(24, 34, 56, 0.1);
}
body.active-light-mode .module-modal__desc {
  color: rgba(24, 34, 56, 0.7);
}

@media (max-width: 640px) {
  .module-modal {
    padding: 12px;
    align-items: flex-end;
  }
  .module-modal__shell {
    max-width: 100%;
    border-radius: 24px 24px 16px 16px;
  }
  .module-modal__image {
    height: 160px;
  }
}

.detail-page {
  min-height: 100vh;
  background:
    radial-gradient(
      circle at top right,
      rgba(51, 182, 255, 0.18),
      transparent 32%
    ),
    radial-gradient(
      circle at top left,
      rgba(255, 91, 97, 0.16),
      transparent 30%
    ),
    var(--dark);
}
.detail-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 60px 90px;
}
.detail-shell--simple {
  padding-top: 150px;
}
.detail-simple {
  max-width: 980px;
  margin: 0 auto;
  padding: 36px;
  border: 1px solid var(--color-border);
  border-radius: 28px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.03)
    ),
    var(--dark2);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}
.detail-simple__image {
  width: 100%;
  height: clamp(280px, 42vw, 460px);
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 28px;
}
.detail-simple__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.06em;
  color: var(--color-heading);
  margin-bottom: 18px;
}
.detail-simple__text {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.85;
  color: var(--color-body);
}
.detail-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.detail-brand {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--color-heading);
}
.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-heading);
}
.detail-back:hover {
  background: rgba(255, 255, 255, 0.09);
}
.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 28px;
}
.detail-panel {
  border: 1px solid var(--color-border);
  border-radius: 28px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.03)
    ),
    var(--dark2);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}
.detail-hero__content {
  padding: 42px;
}
.detail-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-heading);
}
.detail-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.06em;
  color: var(--color-heading);
  margin-bottom: 18px;
}
.detail-lead {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-body);
}
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.detail-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border);
  font-size: 13px;
  color: var(--color-heading);
}
.detail-stats {
  display: grid;
  gap: 18px;
  padding: 28px;
}
.detail-stat {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.detail-stat__label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-midgray);
  margin-bottom: 10px;
}
.detail-stat__value {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  color: var(--color-heading);
  margin-bottom: 8px;
}
.detail-stat__text {
  font-size: 14px;
  color: var(--color-body);
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.detail-section {
  padding: 30px;
}
.detail-section h2 {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--color-heading);
  margin-bottom: 16px;
}
.detail-section p {
  color: var(--color-body);
  line-height: 1.8;
}
.detail-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.detail-list li {
  position: relative;
  padding-left: 20px;
  color: var(--color-body);
}
.detail-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--detail-accent, var(--color-primary));
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.05);
}
.detail-stack {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}
.detail-card {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.detail-card h3 {
  font-size: 17px;
  color: var(--color-heading);
  margin-bottom: 8px;
}
.detail-card p {
  font-size: 14px;
  line-height: 1.75;
}
.detail-wide {
  grid-column: 1 / -1;
}
.detail-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.detail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(
    135deg,
    var(--detail-accent, #33b6ff),
    var(--hero-accent-2)
  );
}
.detail-btn:hover {
  color: #ffffff;
  filter: brightness(1.04);
}

body.active-light-mode .detail-page {
  background:
    radial-gradient(
      circle at top right,
      rgba(51, 182, 255, 0.18),
      transparent 32%
    ),
    radial-gradient(
      circle at top left,
      rgba(255, 91, 97, 0.12),
      transparent 30%
    ),
    var(--dark);
}
body.active-light-mode .detail-simple {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.86),
      rgba(255, 255, 255, 0.96)
    ),
    var(--dark2);
  border-color: rgba(24, 34, 56, 0.1);
}
body.active-light-mode .detail-panel,
body.active-light-mode .detail-stat,
body.active-light-mode .detail-card,
body.active-light-mode .detail-back,
body.active-light-mode .detail-chip,
body.active-light-mode .detail-kicker {
  background: rgba(24, 34, 56, 0.04);
  border-color: rgba(24, 34, 56, 0.1);
}
body.active-light-mode .detail-btn,
body.active-light-mode .feat-card__cta::after {
  color: #ffffff;
}
body.active-light-mode .module-modal__backdrop {
  background:
    radial-gradient(
      circle at top left,
      rgba(51, 182, 255, 0.18),
      transparent 28%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 91, 97, 0.16),
      transparent 24%
    ),
    rgba(240, 246, 255, 0.82);
}
body.active-light-mode .module-modal__shell {
  border-color: rgba(24, 34, 56, 0.1);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.98)
  );
}
body.active-light-mode .module-modal__close {
  background: rgba(24, 34, 56, 0.06);
  border-color: rgba(24, 34, 56, 0.12);
  color: #182238;
}
body.active-light-mode .module-modal__icon {
  background: rgba(24, 34, 56, 0.06);
  border-color: rgba(24, 34, 56, 0.1);
}
body.active-light-mode .module-modal__desc {
  color: rgba(24, 34, 56, 0.7);
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .detail-hero,
  .detail-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
    padding: 0 28px;
  }
  .module-modal {
    padding: 12px;
    align-items: flex-end;
  }
  .module-modal__shell {
    max-width: 100%;
    border-radius: 24px 24px 16px 16px;
  }
  .module-modal__image {
    height: 160px;
  }
  .features-head {
    padding: 0 28px;
  }
  .feat-card {
    min-height: 320px;
  }
  .feat-card__desc,
  .feat-card__list {
    max-height: unset !important;
    overflow: visible;
    margin-bottom: 10px;
  }
  .detail-shell {
    padding: 28px 20px 64px;
  }
  .detail-shell--simple {
    padding-top: 120px;
  }
  .detail-topbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .detail-hero__content,
  .detail-stats,
  .detail-section {
    padding: 24px;
  }
  .detail-title {
    font-size: 34px;
  }
  .detail-simple {
    padding: 22px;
    border-radius: 22px;
  }
}

/* single page  */

.cards_details {
  padding: 50px;
  margin: 70px 0;
  width: 100%;
}
.cards_details .container {
  max-width: 94%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 48px;
  margin: 0 auto;
}
.cards_details > .back-btn {
  display: inline-block;
  background: var(--color-pink);
  border-radius: 12px;
  border: 0;
  outline: 0;
  padding: 8px 12px;
  margin-bottom: 20px;
  margin-left: 12px;
  font-weight: bold;
  color: var(--white);
}
.cards_details .card > h1 {
  color: var(--color-dark);
}
.cards_details .card {
  width: 100%;
  background: var(--white);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.07);
  padding: 40px;
  margin: 0 auto;
  border: 1px solid var(--mid);
  border-radius: 14px;
}
.cards_details img {
  width: 100%;

  border-radius: 10px;
  box-shadow: 2px 1px 2px rgba(0, 0, 0, 0.18);
}
.card_1 .img {
  display: flex;
  gap: 18px;
}
.card_1 img {
  width: 55%;
}
.card_1 h1 {
  text-align: right;
}
.cards_details .card__description {
  max-width: 100%;
  margin-top: 24px;
  color: var(--color-dark);
}
.cards_details .card__features {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding: 0;
}
.cards_details .card__features li {
  position: relative;
  padding-left: 28px;
  color: var(--color-dark);
  line-height: 1.6;
}
.cards_details .card__features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  background: var(--color-pink);
  border-radius: 50%;
}

@media (max-width: 767px) {
  .card_1 .img {
    flex-direction: column;
  }
  .card_1 img {
    width: 100%;
  }
  .card_1 h1 {
    text-align: center;
  }
  .cards_details {
    padding: 20px;
    margin: 70px 0;
    width: 100%;
  }
  .cards_details .card {
    padding: 20px;
  }
}

/* ══════════════════════════════════════════════════════════════
   LANGUAGE TOGGLE + RTL (ARABIC) SUPPORT
══════════════════════════════════════════════════════════════ */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    filter 0.2s ease,
    background-color 0.2s ease;
}
.lang-toggle:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}
body.active-light-mode .lang-toggle {
  background: rgba(24, 34, 56, 0.05);
  border-color: rgba(24, 34, 56, 0.12);
  color: var(--color-heading);
}

/* ══════════════════════════════════════════════════════════════
   FAQ (native <details> accordion)
══════════════════════════════════════════════════════════════ */
.faq-wrap {
  background: var(--dark);
}
.faq-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 100px 60px;
}
.faq-head {
  text-align: center;
  margin-bottom: 48px;
}
.faq-head .section-sub {
  max-width: 560px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--dark2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-big);
  overflow: hidden;
  transition:
    border-color var(--transition) ease,
    background-color var(--transition) ease;
}
.faq-item:hover {
  border-color: rgba(51, 182, 255, 0.4);
}
.faq-item[open] {
  border-color: rgba(168, 77, 255, 0.45);
  background: var(--dark3);
}
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  font-family: var(--font-display);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 600;
  color: var(--color-heading);
  line-height: 1.45;
}
.faq-item > summary::-webkit-details-marker {
  display: none;
}
.faq-item > summary::after {
  content: "";
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  transform: rotate(45deg);
  transition: transform var(--transition) var(--ease);
}
.faq-item[open] > summary::after {
  transform: rotate(-135deg);
}
.faq-item > summary:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
}
.faq-answer {
  padding: 0 24px 22px;
}
.faq-answer p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-midgray);
  margin: 0;
}
body.active-light-mode .faq-wrap {
  background: var(--dark);
}
body.active-light-mode .faq-item {
  background: var(--dark2);
}
body.active-light-mode .faq-item[open] {
  background: var(--dark3);
}
body.active-light-mode .faq-item > summary {
  color: var(--color-heading);
}
body.active-light-mode .faq-answer p {
  color: var(--color-body);
}
@media (max-width: 768px) {
  .faq-inner {
    padding: 64px 20px;
  }
  .faq-item > summary {
    padding: 18px 18px;
  }
  .faq-answer {
    padding: 0 18px 18px;
  }
}

/* Arabic typography */
[dir="rtl"] {
  --font-primary: "Tajawal", "Inter", sans-serif;
  --font-display: "Tajawal", "Inter", sans-serif;
  --font-body: "Tajawal", "Inter", sans-serif;
}

/* Keep the top navbar layout identical in both languages
   (logo on the left, actions on the right) — only the text translates. */
[dir="rtl"] #navbar {
  direction: ltr;
}

/* Mirror edge-anchored elements */
[dir="rtl"] .sa-hero__location {
  right: auto;
  left: 40px;
}
[dir="rtl"] .sa-hero__scroll {
  left: auto;
  right: 40px;
}
[dir="rtl"] .sc-content {
  left: auto;
  right: 0;
}
[dir="rtl"] .sc-dots {
  right: auto;
  left: 60px;
}
[dir="rtl"] .module-modal__close {
  right: auto;
  left: 16px;
}

/* Lists: move the check bullet to the start (right) side */
[dir="rtl"] .module-modal__list li,
[dir="rtl"] .detail-list li {
  padding-left: 0;
  padding-right: 26px;
}
[dir="rtl"] .module-modal__list li::before,
[dir="rtl"] .detail-list li::before {
  left: auto;
  right: 0;
}
[dir="rtl"] .cards_details .card__features li {
  padding-left: 0;
  padding-right: 28px;
}
[dir="rtl"] .cards_details .card__features li::before {
  left: auto;
  right: 0;
}

/* Text alignment */
[dir="rtl"] .feat-card--link,
[dir="rtl"] .cards_details .card_1 h1 {
  text-align: right;
}
[dir="rtl"] .cards_details > .back-btn {
  margin-left: 0;
  margin-right: 12px;
}

/* FAQ: text reads right-to-left; the flex marker auto-moves to the
   left edge, so just align the answer copy and chevron correctly. */
[dir="rtl"] .faq-item > summary,
[dir="rtl"] .faq-answer p {
  text-align: right;
}
[dir="rtl"] .faq-item > summary::after {
  transform: rotate(135deg);
}
[dir="rtl"] .faq-item[open] > summary::after {
  transform: rotate(-135deg);
}

/* ══════════════════════════════════════════════════════════════
   INTERACTIVE FEATURE PANELS (bc-stats accordion)
══════════════════════════════════════════════════════════════ */
.bc-feature-item {
  background: var(--dark2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.bc-feature-item.is-open {
  border-color: rgba(178, 76, 255, 0.4);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.3);
}
.bc-feature-list .bc-feature-hint {
  width: 100%;
  background: transparent;
  border: 0;
  box-shadow: none;
  cursor: pointer;
  text-align: start;
  color: inherit;
  font: inherit;
  transform: none;
}
.bc-feature-list .bc-feature-hint:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.03);
}
.bc-feature-list .bc-feature-hint > span {
  flex: 1;
}
.bc-feature-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-midgray);
  transition: transform 0.3s ease;
}
.bc-feature-item.is-open .bc-feature-chevron {
  transform: rotate(180deg);
  color: var(--hero-accent-2);
}
.bc-feature-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.bc-feature-item.is-open .bc-feature-panel {
  grid-template-rows: 1fr;
}
.bc-feature-panel__inner {
  overflow: hidden;
  min-height: 0;
  padding: 0 20px 18px;
}
.bc-feature-desc {
  margin: 0 0 14px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--color-body);
}
.bc-mini-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 9px 18px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(
    95deg,
    var(--color-primary),
    var(--color-tertiary),
    var(--color-pink)
  );
  box-shadow: 0 8px 20px var(--hero-shadow);
  transition:
    transform 0.2s,
    filter 0.2s;
}
.bc-mini-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}
.bc-wf,
.bc-price-demo,
.bc-live,
.bc-sec {
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
}
/* Workflow stepper */
.bc-wf__track {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
  position: relative;
}
.bc-wf__track::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--color-border);
}
.bc-wf__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
  z-index: 1;
}
.bc-wf__dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--dark2);
  border: 2px solid var(--color-border);
  transition:
    background 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
}
.bc-wf__lbl {
  font-size: 11px;
  color: var(--color-midgray);
  text-align: center;
  transition: color 0.3s;
}
.bc-wf__step.is-done .bc-wf__dot {
  background: linear-gradient(
    135deg,
    var(--hero-accent-1),
    var(--hero-accent-2)
  );
  border-color: transparent;
  box-shadow: 0 0 0 4px rgba(178, 76, 255, 0.15);
}
.bc-wf__step.is-done .bc-wf__lbl {
  color: var(--color-heading);
}
/* Dynamic pricing */
.bc-price-demo__row,
.bc-price-demo__out {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.bc-price-demo__out {
  margin-top: 14px;
}
.bc-price-demo__k {
  font-size: 12px;
  color: var(--color-midgray);
}
.bc-price-demo__range {
  flex: 1;
  max-width: 55%;
  accent-color: var(--hero-accent-2);
  cursor: pointer;
}
.bc-price-demo__val {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-heading);
}
.bc-price-demo__num {
  font-size: 22px;
}
.bc-price-demo__cur {
  font-size: 12px;
  color: var(--color-midgray);
}
.bc-price-demo__bar {
  margin-top: 12px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.bc-price-demo__bar i {
  display: block;
  height: 100%;
  width: 60%;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--hero-accent-1),
    var(--hero-accent-2),
    var(--color-pink)
  );
  transition: width 0.15s ease;
}
/* Live dashboard */
.bc-live__head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-midgray);
}
.bc-live__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3eb75e;
  animation: bc-live-pulse 1.6s infinite;
}
@keyframes bc-live-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(62, 183, 94, 0.5);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(62, 183, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(62, 183, 94, 0);
  }
}
.bc-live__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 14px 0;
}
.bc-live__stat {
  text-align: center;
}
.bc-live__num {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--color-heading);
}
.bc-live__lbl {
  display: block;
  font-size: 10.5px;
  color: var(--color-midgray);
  margin-top: 2px;
}
.bc-live__bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 44px;
}
.bc-live__bars i {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, var(--hero-accent-1), var(--hero-accent-2));
  height: 30%;
  transition: height 0.6s ease;
}
/* Security checklist */
.bc-sec {
  list-style: none;
  display: grid;
  gap: 10px;
}
.bc-sec__item {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.45;
  transform: translateX(-4px);
  transition:
    opacity 0.35s,
    transform 0.35s;
}
.bc-sec__item.is-on {
  opacity: 1;
  transform: none;
}
.bc-sec__tick {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--color-border);
  position: relative;
  transition:
    background 0.35s,
    border-color 0.35s;
}
.bc-sec__item.is-on .bc-sec__tick {
  background: linear-gradient(135deg, #3eb75e, #2f9e4f);
  border-color: transparent;
}
.bc-sec__tick::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.3s ease;
}
.bc-sec__item.is-on .bc-sec__tick::after {
  transform: rotate(45deg) scale(1);
}
.bc-sec__lbl {
  font-size: 13px;
  color: var(--color-body);
}
/* Light-mode widget surfaces */
body.active-light-mode .bc-wf,
body.active-light-mode .bc-price-demo,
body.active-light-mode .bc-live,
body.active-light-mode .bc-sec {
  background: rgba(24, 34, 56, 0.04);
}
body.active-light-mode .bc-feature-list .bc-feature-hint:hover {
  background: rgba(24, 34, 56, 0.03);
}
body.active-light-mode .bc-wf__dot {
  background: #ffffff;
}
body.active-light-mode .bc-price-demo__bar {
  background: rgba(24, 34, 56, 0.08);
}
/* RTL tweaks */
[dir="rtl"] .bc-sec__item {
  transform: translateX(4px);
}
[dir="rtl"] .bc-sec__item.is-on {
  transform: none;
}
[dir="rtl"] .bc-sec__tick::after {
  left: auto;
  right: 6px;
}

/* ══════════════════════════════════════════════════════════════
   INTERACTIVE DASHBOARD CARDS (bc-stats right column)
══════════════════════════════════════════════════════════════ */
/* Performance card — period tabs */
.bc-spark-tabs {
  display: flex;
  gap: 4px;
}
.bc-spark-tab {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-midgray);
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.bc-spark-tab:hover {
  color: var(--color-heading);
}
.bc-spark-tab.is-active {
  background: linear-gradient(
    135deg,
    var(--hero-accent-1),
    var(--hero-accent-2)
  );
  border-color: transparent;
  color: #fff;
}
.bc-spark-line {
  transition: stroke-dashoffset 0.9s ease;
}
/* Donut — interactive legend + segment emphasis */
.bc-donut-seg {
  transition:
    stroke-width 0.3s ease,
    opacity 0.3s ease;
}
.bc-donut-center {
  transition: color 0.2s ease;
}
.bc-leg {
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
}
.bc-leg.is-active {
  border-color: currentColor;
}
.bc-donut-svg.emph-1 .bc-donut-seg2,
.bc-donut-svg.emph-1 .bc-donut-seg3,
.bc-donut-svg.emph-2 .bc-donut-seg1,
.bc-donut-svg.emph-2 .bc-donut-seg3,
.bc-donut-svg.emph-3 .bc-donut-seg1,
.bc-donut-svg.emph-3 .bc-donut-seg2 {
  opacity: 0.25;
}
.bc-donut-svg.emph-1 .bc-donut-seg1,
.bc-donut-svg.emph-2 .bc-donut-seg2,
.bc-donut-svg.emph-3 .bc-donut-seg3 {
  stroke-width: 9;
}
/* Bars — clickable quarters + readout */
.bc-bar-inner {
  height: var(--h, 70%);
  flex: none;
}
.bc-bar-col {
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  justify-content: flex-end;
}
.bc-bar-col:not(.bc-bar-active) .bc-bar-inner {
  background: rgba(255, 255, 255, 0.16);
}
body.active-light-mode .bc-bar-col:not(.bc-bar-active) .bc-bar-inner {
  background: rgba(24, 34, 56, 0.1);
}
.bc-bar-col .bc-bar-inner {
  transition: filter 0.2s ease;
}
.bc-bar-col:hover .bc-bar-inner {
  filter: brightness(1.1);
}
.bc-bars-readout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 12px;
}
.bc-bars-readout__q {
  color: var(--color-midgray);
}
.bc-bars-readout__v {
  color: var(--color-heading);
  font-weight: 800;
}

/* ══════════════════════════════════════════════════════════════
   INTERACTIVE STATS (click a metric to read more)
══════════════════════════════════════════════════════════════ */
.stats-inner .stat-col {
  width: 100%;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--color-border);
  font: inherit;
  color: inherit;
  cursor: pointer;
  transition: background 0.25s ease;
}
.stats-inner .stat-col:last-child {
  border-right: none;
}
.stats-inner .stat-col:hover {
  background: rgba(178, 76, 255, 0.05);
}
.stats-inner .stat-col.is-active {
  background: rgba(178, 76, 255, 0.08);
}
.stats-inner .stat-col::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    var(--hero-accent-1),
    var(--hero-accent-2)
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.stats-inner .stat-col.is-active::after {
  transform: scaleX(1);
}
.stats-detail {
  max-width: 920px;
  margin: 28px auto 4px;
  padding: 24px 28px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-big);
  background: var(--dark2);
  text-align: start;
}
.stats-detail__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--color-heading);
  margin: 0 0 10px;
}
.stats-detail__text {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--color-body);
  margin: 0 0 14px;
}
.stats-detail__list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.stats-detail__list li {
  position: relative;
  padding-left: 24px;
  font-size: 13.5px;
  color: var(--color-body);
}
.stats-detail__list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--hero-accent-2);
  font-weight: 700;
}
[dir="rtl"] .stats-detail__list li {
  padding-left: 0;
  padding-right: 24px;
}
[dir="rtl"] .stats-detail__list li::before {
  left: auto;
  right: 0;
}

/* ══════════════════════════════════════════════════════════════
   SOLUTION CARDS — clickable → detail modal
══════════════════════════════════════════════════════════════ */
.sol-card[data-solution] {
  cursor: pointer;
}
.sol-card__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--hero-accent-2);
  opacity: 0.85;
  transition:
    opacity 0.2s ease;
}
.sol-card__more::after {
  content: "\2192";
  transition: transform 0.2s ease;
}
.sol-card:hover .sol-card__more {
  opacity: 1;
}
.sol-card:hover .sol-card__more::after {
  transform: translateX(3px);
}
[dir="rtl"] .sol-card__more::after {
  content: "\2190";
}
[dir="rtl"] .sol-card:hover .sol-card__more::after {
  transform: translateX(-3px);
}

/* ══════════════════════════════════════════════════════════════
   LOGISTICS FEATURE WIDGETS (interactive under each feature)
══════════════════════════════════════════════════════════════ */
.lf-widget {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
}
/* Multi-access role selector */
.lf-access__roles {
  display: flex;
  gap: 6px;
}
.lf-chip {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-midgray);
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.lf-chip.is-active {
  background: linear-gradient(
    135deg,
    var(--hero-accent-1),
    var(--hero-accent-2)
  );
  border-color: transparent;
  color: #fff;
}
.lf-access__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
  min-height: 26px;
}
.lf-tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(178, 76, 255, 0.12);
  color: var(--color-body);
  border: 1px solid var(--color-border);
  animation: lf-pop 0.25s ease both;
}
@keyframes lf-pop {
  from {
    opacity: 0;
    transform: translateY(4px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/* Ticketing dispatch */
.lf-dispatch {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lf-qr {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 6px;
  border: 3px solid #fff;
  background-color: #fff;
  background-image: radial-gradient(#0a1530 1px, transparent 1.6px);
  background-size: 5px 5px;
  box-shadow: inset 0 0 0 1px var(--color-border);
}
.lf-qr.is-scanning {
  animation: lf-scan 0.8s ease;
}
@keyframes lf-scan {
  50% {
    box-shadow:
      inset 0 0 0 1px var(--hero-accent-2),
      0 0 0 4px rgba(178, 76, 255, 0.25);
  }
}
.lf-send {
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(
    95deg,
    var(--color-primary),
    var(--color-tertiary),
    var(--color-pink)
  );
  transition:
    transform 0.2s,
    filter 0.2s;
}
.lf-send:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}
.lf-send:disabled {
  opacity: 0.6;
  cursor: default;
  transform: none;
}
.lf-sent {
  font-size: 12px;
  font-weight: 700;
  color: #3eb75e;
  opacity: 0;
  transition: opacity 0.3s;
}
.lf-sent.is-on {
  opacity: 1;
}
/* Real-time live mini-chart */
.lf-live {
  cursor: pointer;
}
.lf-live__bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 34px;
}
.lf-live__bars i {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, var(--hero-accent-1), var(--hero-accent-2));
  height: 40%;
  transition: height 0.5s ease;
}
.lf-live__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 11px;
  color: var(--color-midgray);
}
.lf-live__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3eb75e;
  animation: bc-live-pulse 1.6s infinite;
}
.lf-live__pct {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-heading);
}
/* Security run-check */
.lf-runcheck {
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: transparent;
  color: var(--color-heading);
  cursor: pointer;
  transition: border-color 0.2s;
}
.lf-runcheck:hover {
  border-color: rgba(178, 76, 255, 0.4);
}
.lf-sec__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
}
.lf-sec__item {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  transition: opacity 0.3s;
  font-size: 12px;
  color: var(--color-body);
}
.lf-sec__item.is-on {
  opacity: 1;
}
.lf-sec__tick {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--color-border);
  position: relative;
  transition:
    background 0.3s,
    border-color 0.3s;
}
.lf-sec__item.is-on .lf-sec__tick {
  background: linear-gradient(135deg, #3eb75e, #2f9e4f);
  border-color: transparent;
}
.lf-sec__tick::after {
  content: "";
  position: absolute;
  left: 4.5px;
  top: 2px;
  width: 3px;
  height: 6px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.25s;
}
.lf-sec__item.is-on .lf-sec__tick::after {
  transform: rotate(45deg) scale(1);
}
body.active-light-mode .lf-tag {
  background: rgba(24, 34, 56, 0.05);
}
[dir="rtl"] .lf-sec__tick::after {
  left: auto;
  right: 4.5px;
}

/* ══════════════════════════════════════════════════════════════
   SERVICE TILES (clickable) + MODAL WORKFLOW STEPPER
══════════════════════════════════════════════════════════════ */
.icon-item[data-service] {
  cursor: pointer;
}
.module-modal__workflow {
  margin-top: 6px;
}
.mm-wf {
  display: grid;
  gap: 0;
  margin-top: 8px;
}
.mm-wf__step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 0;
  position: relative;
}
.mm-wf__num {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--hero-accent-1),
    var(--hero-accent-2)
  );
  box-shadow: 0 0 0 4px rgba(178, 76, 255, 0.12);
}
.mm-wf__step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 34px;
  bottom: -5px;
  width: 2px;
  background: var(--color-border);
}
.mm-wf__lbl {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-body);
}
[dir="rtl"] .mm-wf__step:not(:last-child)::before {
  left: auto;
  right: 14px;
}

/* Offset anchored sections so the fixed navbar doesn't cover their heading
   when opening #section links (keeps the hash in the URL — good for SEO). */
#sa-hero,
#features,
#solutions,
#clients,
#contact {
  scroll-margin-top: 84px;
}

/* ══════════════════════════════════════════════════════════════
   SERVICE CARDS AS "3 PILLARS" (clickable + badge + explore)
══════════════════════════════════════════════════════════════ */
.service-card[data-scroll] {
  cursor: pointer;
}
.service-card__badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 4px 12px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--hero-accent-1);
  background: rgba(51, 182, 255, 0.12);
  border: 1px solid rgba(51, 182, 255, 0.22);
}
.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hero-accent-2);
  opacity: 0.8;
  transition:
    opacity 0.25s ease,
    color 0.25s ease;
}
.service-card__cta::after {
  content: "\2192";
  transition: transform 0.25s ease;
}
.service-card:hover .service-card__cta,
.service-card:focus-visible .service-card__cta {
  opacity: 1;
}
.service-card:hover .service-card__cta::after {
  transform: translateX(4px);
}
.service-card[data-scroll]:focus-visible {
  outline: 2px solid var(--hero-accent-2);
  outline-offset: 3px;
}
[dir="rtl"] .service-card__cta::after {
  content: "\2190";
}
[dir="rtl"] .service-card:hover .service-card__cta::after {
  transform: translateX(-4px);
}

/* ══════════════════════════════════════════════════════════════
   MODULE DETAIL PAGE (/modules/<id>/)
══════════════════════════════════════════════════════════════ */
.module-page {
  max-width: 1040px;
  margin: 0 auto;
  padding: 124px 24px 84px;
}
.module-breadcrumb {
  font-size: 14px;
  color: var(--color-body);
  margin-bottom: 30px;
}
.module-breadcrumb a {
  color: var(--hero-accent-1);
  text-decoration: none;
}
.module-breadcrumb a:hover {
  text-decoration: underline;
}
.module-breadcrumb__sep {
  margin: 0 8px;
  opacity: 0.5;
}
.module-breadcrumb__current {
  color: var(--color-heading);
  font-weight: 700;
}
.module-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 44px;
  align-items: center;
  margin-bottom: 56px;
}
.module-hero__media {
  aspect-ratio: 16 / 11;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 26px 60px -28px rgba(8, 18, 40, 0.5);
}
.module-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hero-accent-2);
  margin-bottom: 14px;
}
.module-hero__title {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  color: var(--color-heading);
  margin: 0 0 16px;
}
.module-hero__lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-body);
  margin: 0 0 26px;
}
.module-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7c5cff, #ff5b7a);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}
.module-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.07);
}
.module-body {
  max-width: 780px;
}
.module-body__text {
  font-size: 17px;
  line-height: 1.95;
  color: var(--color-body);
}
.module-body__subtitle {
  font-size: 24px;
  color: var(--color-heading);
  margin: 40px 0 18px;
}
.module-features {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: grid;
  gap: 14px;
}
.module-features li {
  position: relative;
  padding-inline-start: 34px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-body);
}
.module-features li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c5cff, #ff5b7a);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E")
    center / 14px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E")
    center / 14px no-repeat;
}
.module-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding-top: 8px;
}
.module-back {
  color: var(--hero-accent-1);
  font-weight: 700;
  text-decoration: none;
}
.module-back:hover {
  text-decoration: underline;
}
@media (max-width: 760px) {
  .module-hero {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .module-page {
    padding: 104px 18px 64px;
  }
}

/* ══════════════════════════════════════════════════════════════
   SAMPLE TICKETS (above Our Clients)
══════════════════════════════════════════════════════════════ */
.tickets-wrap {
  background: var(--dark3);
  padding: 90px 24px 70px;
  border-bottom: 1px solid var(--color-border);
}
.tickets-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}
.tickets-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  max-width: 920px;
  margin: 44px auto 0;
}
.tk-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  min-width: 300px;
}
.tk {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  text-align: start;
  box-shadow: 0 18px 40px -26px rgba(8, 18, 40, 0.45);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.tk:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 52px -26px rgba(8, 18, 40, 0.55);
}
.tk__qr {
  background: #fff;
  border-radius: 8px;
  padding: 5px;
  line-height: 0;
  display: inline-block;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(8, 18, 40, 0.18);
}
.tk__qr img {
  display: block;
}
.tk-badge {
  align-self: flex-start;
  display: inline-block;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  padding: 4px 11px;
  border-radius: 999px;
}
.tk__event {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.2;
  margin: 10px 0 0;
  color: #fff;
}
.tk__meta {
  font-size: 13px;
  margin: 4px 0 0;
}
.tk__meta--light {
  color: rgba(255, 255, 255, 0.82);
}
.tk__num {
  font-family: var(--font-display);
  font-size: 10px;
}
.tk__num--light {
  color: rgba(255, 255, 255, 0.72);
}
.tk__scan {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}
.tk-kv {
  margin-top: 10px;
}
.tk-kv small,
.tk-cinema__cols small,
.tk-match__cols small {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.7;
  margin-bottom: 2px;
}
.tk-kv b,
.tk-cinema__cols b,
.tk-match__cols b {
  font-family: var(--font-display);
  font-size: 14px;
}
.tk-gold {
  color: #e6c878;
}
.tk-badge--gold {
  background: linear-gradient(135deg, #d4af5a, #a9802f);
  color: #1b150a;
}
/* Cinema */
.tk--cinema {
  display: flex;
  background: #11131a;
  color: #fff;
}
.tk-cinema__main {
  flex: 1;
  padding: 18px 20px;
}
.tk-badge--red {
  background: #e11d2a;
}
.tk-cinema__cols {
  display: flex;
  gap: 16px;
  margin-top: 14px;
}
.tk-cinema__stub {
  position: relative;
  width: 104px;
  flex-shrink: 0;
  background: #1b1e29;
  border-inline-start: 2px dashed #3a3f52;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 8px;
}
.tk-cinema__stub::before,
.tk-cinema__stub::after {
  content: "";
  position: absolute;
  inset-inline-start: -10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--dark3);
}
.tk-cinema__stub::before {
  top: -10px;
}
.tk-cinema__stub::after {
  bottom: -10px;
}
/* Sports match */
.tk--match {
  display: flex;
  flex-direction: column;
  background: #0a2a1c;
  color: #eafff4;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.tk-match__hd {
  padding: 16px 20px;
  background: linear-gradient(135deg, #0f7a4f, #0a5c3b);
  text-align: center;
}
.tk-match__vs {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  margin-top: 8px;
  color: #fff;
}
.tk-match__vs span {
  opacity: 0.7;
  font-size: 13px;
  margin: 0 7px;
}
.tk-badge--glass {
  background: rgba(255, 255, 255, 0.18);
}
.tk-match__body {
  padding: 16px 20px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.tk-match__cols {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
/* iPhone-framed e-ticket */
.tk-phone {
  width: 290px;
  flex-shrink: 0;
  position: relative;
  background: #0b0b0d;
  border-radius: 46px;
  padding: 9px;
  border: 1px solid #2b2b30;
  box-shadow: 0 30px 60px -22px rgba(8, 18, 40, 0.6);
  transition: transform 0.2s ease;
}
.tk-phone:hover {
  transform: translateY(-4px);
}
.tk-phone__island {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 26px;
  background: #000;
  border-radius: 999px;
  z-index: 4;
}
.tk-phone__screen {
  border-radius: 38px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 540px;
  color: #f4e6c6;
  background: linear-gradient(165deg, #1a1410, #2a2118 55%, #15171c);
}
.pt-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px 0;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}
.pt-hd {
  padding: 26px 22px 0;
  display: flex;
  flex-direction: column;
}
.pt-event {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  line-height: 1.15;
  margin: 12px 0 0;
}
.pt-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin: 6px 0 0;
}
.pt-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin: 8px 0 0;
}
.pt-qr {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px;
}
.pt-qr .tk__qr {
  padding: 8px;
  border-radius: 12px;
}
.pt-scan {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}
.pt-foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 22px 24px;
  border-top: 1px dashed rgba(212, 175, 90, 0.3);
}
.pt-foot small {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.7;
  margin-bottom: 2px;
}
.pt-foot b {
  font-family: var(--font-display);
  font-size: 15px;
}

/* ══════════════════════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON (bottom-right, mobile + desktop)
══════════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 1000;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  box-shadow:
    0 10px 26px -6px rgba(37, 211, 102, 0.6),
    0 4px 12px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.wa-float svg {
  width: 33px;
  height: 33px;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow:
    0 14px 32px -6px rgba(37, 211, 102, 0.7),
    0 4px 12px rgba(0, 0, 0, 0.2);
}
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  z-index: -1;
  animation: wa-pulse 2.6s ease-out infinite;
}
@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  70% {
    transform: scale(1.75);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* keep it out of the way while a modal / mobile menu is open */
body.module-modal-open .wa-float,
body.mobile-menu-open .wa-float {
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 600px) {
  .wa-float {
    width: 52px;
    height: 52px;
    bottom: 16px;
    right: 16px;
  }
  .wa-float svg {
    width: 29px;
    height: 29px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float::before {
    animation: none;
  }
}

/* ── Module index (crawlable SEO links under the feature grid) ──────── */
.module-index {
  max-width: 1200px;
  margin: 28px auto 0;
  padding: 0 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.module-index__link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-body);
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.module-index__link:hover {
  color: var(--color-heading);
  border-color: var(--hero-accent-2);
  background: rgba(178, 76, 255, 0.08);
}
@media (max-width: 768px) {
  .module-index { padding: 0 20px; }
}

/* ── Module page: related-modules block (H4 internal-linking) ───────── */
.module-related {
  background: var(--dark2);
  padding: 60px 0;
  border-top: 1px solid var(--color-border);
}
.module-related__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  text-align: center;
}
.module-related__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--color-heading);
  margin-bottom: 24px;
}
.module-related .module-index {
  margin-top: 0;
}
.module-related__blog {
  margin-top: 24px;
  font-size: 14px;
  color: var(--color-midgray);
}
.module-related__blog a {
  color: var(--hero-accent-2);
  text-decoration: none;
  font-weight: 600;
}
.module-related__blog a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .module-related__inner { padding: 0 20px; }
}


/* ── Request confirmation popup ──────────────────────── */
.req-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.req-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.req-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(51, 182, 255, 0.2), transparent 30%),
    radial-gradient(
      circle at bottom right,
      rgba(217, 63, 196, 0.18),
      transparent 28%
    ),
    rgba(2, 8, 20, 0.82);
}
.req-modal__card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02)
    ),
    var(--dark2, #0b1830);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  padding: 40px 32px 32px;
  text-align: center;
  transform: translateY(14px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}
.req-modal.is-open .req-modal__card {
  transform: translateY(0) scale(1);
}
.req-modal__close {
  position: absolute;
  top: 14px;
  inset-inline-end: 14px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-heading, #fff);
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}
.req-modal__close:hover {
  transform: rotate(90deg);
  background: rgba(255, 255, 255, 0.18);
}
.req-modal__close svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}
.req-modal__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    var(--color-primary, #33b6ff),
    var(--color-tertiary, #a84dff) 55%,
    var(--color-pink, #d93fc4)
  );
  box-shadow: 0 14px 34px var(--hero-shadow, rgba(178, 76, 255, 0.28));
}
.req-modal__icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.req-modal__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-heading, #fff);
  margin: 0 0 8px;
}
.req-modal__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-body, #c7d3e5);
  margin: 0 0 22px;
}
.req-modal__reflabel {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gray, #8291a9);
  margin-bottom: 8px;
}
.req-modal__ref {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-primary, #33b6ff);
  background: rgba(51, 182, 255, 0.1);
  border: 1px dashed rgba(51, 182, 255, 0.4);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 26px;
  user-select: all;
  direction: ltr;
}
.req-modal__btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(
      95deg,
      var(--color-primary, #33b6ff) 15%,
      var(--color-tertiary, #a84dff) 45%,
      var(--color-pink, #d93fc4) 75%,
      var(--color-secondary, #ff5b61) 100%
    )
    95% / 200% 100%;
  box-shadow: 0 12px 32px var(--hero-shadow, rgba(178, 76, 255, 0.28));
  transition:
    transform 0.2s,
    filter 0.2s,
    background-position 0.3s ease;
}
.req-modal__btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  background-position: 100% 0;
}
body.active-light-mode .req-modal__card {
  background: #ffffff;
  border-color: rgba(6, 20, 38, 0.1);
  box-shadow: 0 40px 100px rgba(6, 20, 38, 0.22);
}
body.active-light-mode .req-modal__title {
  color: #061426;
}
body.active-light-mode .req-modal__text {
  color: #40506a;
}
body.active-light-mode .req-modal__reflabel {
  color: #6b7a90;
}
body.active-light-mode .req-modal__backdrop {
  background:
    radial-gradient(circle at top left, rgba(51, 182, 255, 0.18), transparent 30%),
    rgba(6, 20, 38, 0.45);
}


/* ── Mobile menu language + theme actions ───────────── */
.mobile-menu__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}
.mobile-menu__actions .lang-toggle {
  flex: 1;
  min-height: 48px;
  font-size: 15px;
}
.mobile-menu__actions .theme-toggle {
  width: 48px;
  min-width: 48px;
  height: 48px;
}


/* Header sits on a dark bar in both themes; keep its controls legible */
body.active-light-mode #navbar .nav-links a {
  color: rgba(255, 255, 255, 0.88);
}
body.active-light-mode #navbar .nav-links a:hover,
body.active-light-mode #navbar .nav-links a.is-current {
  color: #ffffff;
}
body.active-light-mode #navbar .lang-toggle {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}
