:root {
  --bg: #000000;
  --bg-soft: #111111;
  --bg-card: #1a1a1a;
  --bg-elevated: #242424;
  --ink: #ffffff;
  --muted: #a0a0a0;
  --accent: #ff6600;
  --accent-hover: #ff7a1f;
  --accent-soft: rgba(255, 102, 0, 0.14);
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --radius: 16px;
  --radius-pill: 999px;
  --font-sans: "Outfit", system-ui, sans-serif;
  --font-display: "Outfit", system-ui, sans-serif;
  --container: 1200px;
  --container-store: 1280px;
  --header-h: 78px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

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

.container {
  width: min(100% - 2rem, var(--container));
  max-width: var(--container);
  margin-inline: auto;
}

.min-vh-75 {
  min-height: 72vh;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.92);
  border-bottom-color: var(--line);
}

.navbar,
.site-nav {
  position: relative;
  min-height: var(--header-h);
  padding: 0.75rem 0;
  align-items: center;
}

.navbar-brand,
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #fff;
}

.brand-lockup--full {
  gap: 0;
}

.brand-logo-horizontal {
  display: block;
  width: auto;
  height: 44px;
  max-width: min(220px, 52vw);
  object-fit: contain;
}

.footer-brand .brand-logo-horizontal {
  height: 52px;
  max-width: 240px;
}

.brand-mark,
.brand-mark-img {
  width: 2.15rem;
  height: 2.15rem;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.brand-mark {
  border-radius: 0.55rem;
  display: inline-grid;
  place-items: center;
  background: #ff6600;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
}

.brand-text {
  text-transform: uppercase;
  font-size: 1.05rem;
  line-height: 1.1;
}

.brand-text span {
  color: var(--accent);
}

@media (max-width: 575.98px) {
  .brand-logo-horizontal {
    height: 36px;
  }
}

.navbar-toggler {
  border: 1px solid var(--line);
  padding: 0.4rem 0.55rem;
  border-radius: 10px;
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* Pill segmented nav — centered on desktop */
.nav-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem;
  border-radius: var(--radius-pill);
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 8px 24px rgba(0, 0, 0, 0.35);
}

@media (min-width: 992px) {
  .site-nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 1rem;
  }

  .site-nav > .navbar-brand {
    grid-column: 1;
    justify-self: start;
  }

  .site-nav > .navbar-collapse {
    display: contents !important;
  }

  .site-nav .nav-pill {
    grid-column: 2;
    justify-self: center;
    position: static;
    left: auto;
    top: auto;
    transform: none;
    z-index: 2;
  }

  .site-nav .nav-actions {
    grid-column: 3;
    justify-self: end;
    position: relative;
    z-index: 3;
    margin-left: 0;
  }
}

.nav-pill__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex-wrap: wrap;
}

.nav-pill__item {
  position: relative;
}

.nav-pill__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.35rem;
  padding: 0.45rem 1.05rem;
  border-radius: var(--radius-pill);
  color: #9a9a9a !important;
  font-weight: 500;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.nav-pill__link:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.05);
}

.nav-pill__link.is-active,
.nav-pill__link.dropdown-toggle.show {
  color: #fff !important;
  background: #2c2c2c;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  font-weight: 600;
}

/* Hide Bootstrap default caret everywhere in the theme */
.dropdown-toggle::after,
.dropdown-toggle::before,
.btn.dropdown-toggle::after,
.nav-link.dropdown-toggle::after,
.nav-pill__link.dropdown-toggle::after,
.store-control-btn.dropdown-toggle::after {
  display: none !important;
  content: none !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.nav-pill__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  margin-left: 0.15rem;
  color: currentColor;
  opacity: 0.75;
  flex-shrink: 0;
  line-height: 0;
  transform: rotate(0deg);
  transform-origin: center center;
  transition:
    transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.2s ease,
    opacity 0.2s ease;
}

.nav-pill__chevron svg,
.nav-pill__chevron i {
  display: block;
  width: 12px;
  height: 12px;
  font-size: 0.72rem;
  line-height: 1;
  pointer-events: none;
}

.nav-pill__link:hover .nav-pill__chevron,
.nav-pill__link.is-active .nav-pill__chevron {
  opacity: 1;
}

.nav-pill__link[aria-expanded="true"] .nav-pill__chevron,
.nav-pill__link.show .nav-pill__chevron,
.nav-pill__link.is-open .nav-pill__chevron,
.nav-pill__chevron.is-flipped,
.dropdown.show > .nav-pill__link .nav-pill__chevron,
.dropdown.show > .store-control-btn .nav-pill__chevron {
  transform: rotate(180deg) !important;
  opacity: 1;
  color: var(--accent);
}

.store-control-btn.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.store-control-btn[aria-expanded="true"] .nav-pill__chevron,
.store-control-btn.show .nav-pill__chevron,
.store-control-btn.is-open .nav-pill__chevron {
  transform: rotate(180deg) !important;
  opacity: 1;
  color: var(--accent);
}

/* FAQ / accordion chevron — visible on dark UI + proper flip */
.accordion-button {
  background: var(--bg-card) !important;
  color: #fff !important;
  font-weight: 600;
  box-shadow: none !important;
  gap: 0.75rem;
}

.accordion-button::after {
  flex-shrink: 0;
  width: 1.05rem;
  height: 1.05rem;
  margin-left: auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 5.75L8 10.25L12.5 5.75' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-size: 1.05rem;
  background-repeat: no-repeat;
  background-position: center;
  transition:
    transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.2s ease;
  transform: rotate(0deg);
}

.accordion-button:not(.collapsed) {
  color: var(--accent) !important;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 5.75L8 10.25L12.5 5.75' stroke='%23ff6600' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  transform: rotate(180deg) !important;
}

.nav-actions {
  flex-shrink: 0;
}

.dropdown-menu {
  background: #121212;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.65rem;
  min-width: 240px;
  box-shadow: var(--shadow);
  margin-top: 0.55rem !important;
}

.dropdown-item {
  color: rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  padding: 0.55rem 0.8rem;
  font-size: 0.92rem;
}

.dropdown-item:hover {
  background: var(--accent-soft);
  color: #fff;
}

.btn {
  border-radius: var(--radius-pill);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.btn-primary {
  --bs-btn-bg: var(--accent);
  --bs-btn-border-color: var(--accent);
  --bs-btn-hover-bg: var(--accent-hover);
  --bs-btn-hover-border-color: var(--accent-hover);
  --bs-btn-active-bg: var(--accent-hover);
  --bs-btn-active-border-color: var(--accent-hover);
  --bs-btn-color: #fff;
  box-shadow: 0 10px 28px rgba(255, 102, 0, 0.28);
}

.btn-outline-light {
  --bs-btn-color: #fff;
  --bs-btn-border-color: rgba(255, 255, 255, 0.65);
  --bs-btn-hover-bg: #fff;
  --bs-btn-hover-border-color: #fff;
  --bs-btn-hover-color: #000;
}

.btn-outline-primary {
  --bs-btn-color: var(--accent);
  --bs-btn-border-color: var(--accent);
  --bs-btn-hover-bg: var(--accent);
  --bs-btn-hover-border-color: var(--accent);
  --bs-btn-hover-color: #fff;
}

/* Contact CTA — separate from pill tabs, theme accent */
.btn-contact-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--accent), #ff8129);
  color: #fff !important;
  border-radius: var(--radius-pill);
  padding: 0.62rem 1.35rem;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 0;
  box-shadow: 0 10px 26px rgba(255, 102, 0, 0.32);
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-contact-nav:hover {
  background: linear-gradient(145deg, var(--accent-hover), #ff9448);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(255, 102, 0, 0.4);
}

.btn-contact-nav--sm {
  padding: 0.45rem 0.95rem;
  font-size: 0.82rem;
}

.btn-contact-nav.is-active {
  box-shadow:
    0 10px 26px rgba(255, 102, 0, 0.32),
    0 0 0 2px rgba(255, 255, 255, 0.18);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #000;
  padding: 4.5rem 0 3.5rem;
}

.hero--home {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-media,
.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-media__img,
.page-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.28;
}

.hero-media__shade,
.page-hero__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 102, 0, 0.18),
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 10%,
      rgba(255, 255, 255, 0.05),
      transparent 35%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.82) 100%);
}

.hero-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg width='1200' height='800' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-50 120 C 200 40, 400 220, 650 120 S 1100 40, 1300 160' stroke='white' stroke-width='1' fill='none'/%3E%3Cpath d='M-50 260 C 220 180, 420 360, 680 250 S 1120 170, 1300 300' stroke='white' stroke-width='1' fill='none'/%3E%3Cpath d='M-50 420 C 240 340, 450 520, 720 400 S 1140 320, 1300 460' stroke='white' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  animation: lineDrift 18s linear infinite alternate;
}

@keyframes lineDrift {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-18px);
  }
}

.hero .container,
.page-hero .container {
  position: relative;
  z-index: 2;
}

.hero-eyebrow,
.page-hero .hero-eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.hero-title {
  font-size: clamp(2rem, 4.4vw, 3.35rem);
  font-weight: 600;
  line-height: 1.2;
  max-width: 18ch;
  margin: 0 auto 1.15rem;
  letter-spacing: -0.02em;
}

.hero-lead {
  max-width: 46rem;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.hero-lead strong {
  color: #fff;
  font-weight: 600;
}

.hero-actions {
  justify-content: center;
}

/* Bounce orbs */
.bounce-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.55;
  z-index: 1;
  pointer-events: none;
  animation: bounceFloat 7s ease-in-out infinite;
}

.bounce-orb--orange {
  width: 70px;
  height: 70px;
  background: radial-gradient(circle at 30% 30%, #ffb067, var(--accent));
  top: 18%;
  left: 8%;
}

.bounce-orb--white {
  width: 42px;
  height: 42px;
  background: radial-gradient(circle at 30% 30%, #fff, #bbb);
  top: 28%;
  right: 12%;
  animation-delay: -2s;
}

.bounce-orb--blue {
  width: 54px;
  height: 54px;
  background: radial-gradient(circle at 30% 30%, #7ec8ff, #2f80ed);
  bottom: 18%;
  left: 18%;
  animation-delay: -3.5s;
}

.bounce-orb--green {
  width: 36px;
  height: 36px;
  background: radial-gradient(circle at 30% 30%, #9dffb0, #27ae60);
  bottom: 22%;
  right: 16%;
  animation-delay: -1.2s;
}

@keyframes bounceFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-22px) scale(1.05);
  }
}

/* ---------- Sections ---------- */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-dark {
  background: var(--bg);
}

.section-soft {
  background: var(--bg-soft);
}

.section-title {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  text-transform: capitalize;
  color: #fff;
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-title .accent {
  color: var(--accent);
}

.section-lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 40rem;
}

.section-head {
  margin-bottom: 2.5rem;
}

.section-head.center {
  text-align: center;
}

.section-head.center .section-lead {
  margin-inline: auto;
}

/* Trust badges */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.trust-card {
  background: linear-gradient(180deg, #1d1d1d, #141414);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem;
  text-align: center;
  min-height: 0;
  height: auto;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 102, 0, 0.35);
}

.trust-card .badge-dot {
  width: 54px;
  height: 54px;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
}

.trust-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Services tabs */
.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.service-tab {
  border: 1px solid var(--line);
  background: transparent;
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 0.7rem 1.15rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.service-tab.is-active,
.service-tab:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.service-panel {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.service-panel.is-active {
  display: block;
  animation: fadeUp 0.45s ease;
}

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

.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.25rem 0 1.5rem;
}

.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  background: #101010;
  border: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
}

.tech-pill i {
  color: var(--accent);
}

/* Technologies page */
.tech-page {
  padding-bottom: 4.5rem;
}

.tech-group {
  margin-bottom: 2.5rem;
}

.tech-group__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.1rem;
  letter-spacing: 0.02em;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.tech-card {
  background: linear-gradient(180deg, #1c1c1c 0%, #141414 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 1.35rem 1rem 1.2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  min-height: 0;
  height: auto;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.tech-card:hover {
  border-color: rgba(255, 102, 0, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.tech-card__icon {
  width: 78px;
  height: 78px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  padding: 0.9rem;
}

.tech-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.tech-card__name {
  margin: 0;
  font-size: 1rem;
  font-weight: 650;
  color: #fff;
  line-height: 1.3;
}

.tech-card__tag {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* Life@ Tunic Solution LLC */
.life-page {
  background: #000;
  padding: 2.5rem 0 5rem;
}

.life-crumb {
  margin-bottom: 2rem;
}

.life-page__head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.life-page__title {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 0.85rem;
  line-height: 1.15;
}

.life-page__title span {
  color: var(--accent);
}

.life-page__lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 36rem;
  margin: 0 auto;
}

.life-moments {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.life-moment {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.life-moment.is-reverse .life-moment__media {
  order: 2;
}

.life-moment.is-reverse .life-moment__copy {
  order: 1;
}

.life-frame {
  position: relative;
  border-radius: 4px;
  overflow: visible;
}

.life-frame::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 72%;
  height: 72%;
  border-right: 4px solid var(--accent);
  border-bottom: 4px solid var(--accent);
  pointer-events: none;
  z-index: 1;
}

.life-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 2px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 40px rgba(255, 102, 0, 0.12);
}

.life-moment__title {
  position: relative;
  margin: 0 0 1rem;
  padding-left: 1rem;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.life-moment__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  bottom: 0.2em;
  width: 4px;
  background: var(--accent);
  border-radius: 2px;
}

.life-moment__body {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 34rem;
}

.life-cta {
  margin-top: 4.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}

@media (max-width: 991.98px) {
  .life-moment,
  .life-moment.is-reverse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .life-moment.is-reverse .life-moment__media,
  .life-moment.is-reverse .life-moment__copy {
    order: initial;
  }

  .life-moments {
    gap: 3rem;
  }
}

@media (max-width: 1199.98px) {
  .tech-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .tech-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .tech-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tech-card {
    min-height: 0;
    padding: 1.1rem 0.75rem;
  }
  .tech-card__icon {
    width: 64px;
    height: 64px;
  }
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.process-card {
  text-align: center;
  padding: 1.35rem 0.85rem;
  border-radius: 18px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.process-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 102, 0, 0.4);
}

.process-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 1rem;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    160deg,
    rgba(255, 102, 0, 0.14),
    rgba(255, 102, 0, 0.04)
  );
  border: 1px solid rgba(255, 102, 0, 0.22);
  overflow: visible;
  padding: 0.7rem;
}

.process-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: transparent;
  mix-blend-mode: normal;
}

.process-card:hover .process-icon {
  border-color: rgba(255, 102, 0, 0.55);
  box-shadow: 0 10px 24px rgba(255, 102, 0, 0.18);
  transform: translateY(-2px);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.process-card h3 {
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0;
  line-height: 1.35;
}

/* Testimonials */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.75rem;
  height: 100%;
}

.testimonial-card p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.35rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 102, 0, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.12);
  flex-shrink: 0;
}

.testimonial-card strong {
  display: block;
  color: var(--accent);
  font-size: 1rem;
  line-height: 1.3;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.swiper-pagination-bullet {
  background: #666;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--accent);
}

/* Clients */
.client-marquee {
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}

.client-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.client-chip {
  min-width: 160px;
  height: 78px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Portfolio */
.work-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  isolation: isolate;
  min-height: 240px;
}

.work-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.45s ease;
  opacity: 0.85;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(0, 0, 0, 0.88) 100%
  );
}

.work-card__meta {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
}

.work-card__meta small {
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.work-card__meta h3 {
  margin: 0.25rem 0 0;
  font-size: 1.15rem;
}

.work-card:hover img {
  transform: scale(1.06);
}

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 102, 0, 0.35);
}

.why-card h3 {
  font-size: 1.05rem;
  margin: 0.7rem 0 0.35rem;
}

.why-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.why-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
}

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-card {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 18px;
  background: var(--bg-card);
  border: 1px solid var(--line);
}

.stat-card .num {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-card .label {
  color: var(--muted);
  margin-top: 0.45rem;
  font-size: 0.92rem;
}

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 15% 40%,
      rgba(255, 102, 0, 0.22),
      transparent 40%
    ),
    linear-gradient(120deg, #141414, #0a0a0a 55%, #1a1008);
  border-block: 1px solid var(--line);
  padding: 4.5rem 0;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #000;
  padding: 6.5rem 0 4.5rem;
  min-height: 48vh;
  display: flex;
  align-items: flex-end;
}

.page-hero__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  max-width: 16ch;
  margin-bottom: 0.85rem;
}

.page-hero__lead {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.page-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.page-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.45rem;
  opacity: 0.5;
}

.page-breadcrumb a:hover {
  color: var(--accent);
}

.page-body {
  background: var(--bg);
}

.content-tile {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.45rem;
  box-shadow: var(--shadow);
  height: auto;
}

/* Equal-height cards only when explicitly requested */
.content-tile.h-100 {
  height: 100%;
}

.content-tile p {
  color: var(--muted);
  margin-bottom: 0;
}

.content-tile p + .btn,
.content-tile h3 + p,
.content-tile .h5 + p {
  margin-top: 0.35rem;
}

.tile-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
}

.detail-list {
  padding-left: 1.1rem;
  color: var(--muted);
}

.detail-list li + li {
  margin-top: 0.4rem;
}

.detail-cover {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.cta-tile {
  background: linear-gradient(160deg, #1d1d1d, #20150e);
  height: auto !important;
  align-self: flex-start;
  width: 100%;
  max-width: 100%;
  padding: 1.35rem 1.4rem 1.45rem;
}

.cta-tile .h5,
.cta-tile h3 {
  margin-bottom: 0.55rem;
  color: #fff;
}

.cta-tile p {
  margin-bottom: 0.85rem;
  line-height: 1.55;
}

.cta-tile .btn {
  margin-top: 0.15rem;
}

aside.content-tile,
.content-tile.sticky-side,
.content-tile.product-side,
.content-tile.support-card {
  height: auto !important;
  width: 100%;
}

.contact-form .form-control,
.contact-form .form-select {
  background: #101010;
  border: 1px solid var(--line);
  color: #fff;
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  background: #101010;
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.18);
}

.contact-form .form-label {
  color: rgba(255, 255, 255, 0.82);
}

.contact-meta {
  color: var(--muted);
}

.accordion-item {
  background: transparent;
}

.accordion-body {
  background: #141414;
  color: var(--muted);
}

.alert-success {
  background: rgba(39, 174, 96, 0.15);
  border-color: rgba(39, 174, 96, 0.35);
  color: #9dffb0;
}

.alert-danger {
  background: rgba(231, 76, 60, 0.15);
  border-color: rgba(231, 76, 60, 0.35);
  color: #ffb4ab;
}

/* Footer */
.site-footer {
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.72);
  padding: 4.5rem 0 1.75rem;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
  font-weight: 700;
}

.footer-heading {
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: var(--muted);
  max-width: 22rem;
}

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

.footer-links li + li {
  margin-top: 0.55rem;
}

.footer-links a,
.footer-bottom a {
  color: var(--muted);
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.newsletter-form {
  width: 100%;
  max-width: 22rem;
}

.newsletter-field {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
  width: 100%;
}

.newsletter-form .form-control {
  width: 100%;
  min-height: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: var(--radius-pill) !important;
  background: #101010 !important;
  color: #fff !important;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 0.65rem 1.15rem;
  box-shadow: none !important;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.62);
  opacity: 1;
  font-size: 0.95rem;
  font-weight: 500;
}

.newsletter-form .form-control:focus {
  background: #101010 !important;
  color: #fff !important;
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 0.15rem rgba(255, 102, 0, 0.18) !important;
}

.newsletter-form .btn {
  width: 100%;
  min-height: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  box-shadow: none;
  white-space: nowrap;
  padding: 0.65rem 1.15rem;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

/* Cookie consent */
.cookie-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1080;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  pointer-events: none;
}

.cookie-consent[hidden] {
  display: none !important;
}

.cookie-consent.is-visible {
  pointer-events: auto;
  animation: cookieIn 0.35s ease both;
}

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

.cookie-consent__panel {
  width: min(420px, 100%);
  background: linear-gradient(165deg, #1b1b1b 0%, #121212 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.5);
  padding: 1.15rem 1.2rem 1.2rem;
}

.cookie-consent__panel:has([data-cookie-view="prefs"]:not([hidden])) {
  width: min(460px, 100%);
}

.cookie-consent__intro,
.cookie-consent__prefs {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.cookie-consent__copy {
  width: 100%;
}

.cookie-consent__eyebrow {
  margin: 0 0 0.3rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-consent__title {
  margin: 0 0 0.4rem;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
}

.cookie-consent__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: none;
}

.cookie-consent__text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-consent__text a:hover {
  color: #ff8a3d;
}

.cookie-consent__actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  width: 100%;
  margin-top: 0;
}

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

.cookie-consent__btn {
  width: 100%;
  min-height: 40px;
  padding: 0.55rem 0.5rem;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cookie-consent__list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
}

.cookie-consent__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.cookie-consent__item-title {
  margin: 0 0 0.15rem;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
}

.cookie-consent__item-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  line-height: 1.4;
}

.cookie-switch {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  width: 44px;
  height: 26px;
  cursor: pointer;
}

.cookie-switch input {
  position: absolute;
  opacity: 0;
  inset: 0;
  margin: 0;
  cursor: pointer;
}

.cookie-switch__ui {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: #2a2a2a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.cookie-switch__ui::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s ease;
}

.cookie-switch input:checked + .cookie-switch__ui {
  background: var(--accent);
  border-color: var(--accent);
}

.cookie-switch input:checked + .cookie-switch__ui::after {
  transform: translateX(18px);
}

.cookie-switch--locked {
  cursor: default;
  opacity: 0.9;
}

.cookie-switch--locked input {
  cursor: default;
}

.cookie-settings-btn {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 1070;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 42px;
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #141414;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.cookie-settings-btn[hidden] {
  display: none !important;
}

.cookie-settings-btn:hover {
  border-color: rgba(255, 102, 0, 0.55);
  color: var(--accent);
  transform: translateY(-1px);
}

.cookie-settings-btn i {
  font-size: 1rem;
  color: var(--accent);
}

.legal-content .cookie-table {
  width: 100%;
  margin-top: 1rem;
  border-collapse: collapse;
}

.legal-content .cookie-table th,
.legal-content .cookie-table td {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 0.85rem;
  vertical-align: top;
  color: rgba(255, 255, 255, 0.78);
}

.legal-content .cookie-table th {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-weight: 700;
}

@media (max-width: 575.98px) {
  .cookie-consent {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .cookie-consent__panel,
  .cookie-consent__panel:has([data-cookie-view="prefs"]:not([hidden])) {
    width: 100%;
    padding: 1.05rem 1rem 1.1rem;
    border-radius: 16px;
    max-height: min(78vh, 640px);
    overflow: auto;
  }

  .cookie-consent__actions,
  .cookie-consent__prefs .cookie-consent__actions {
    grid-template-columns: 1fr;
  }

  .cookie-consent__btn {
    white-space: normal;
  }

  .cookie-consent__item {
    align-items: flex-start;
  }

  .cookie-settings-btn {
    left: 0.75rem;
    bottom: 0.75rem;
  }
}

.page-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  isolation: isolate;
}

.page-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.45s ease;
  opacity: 0.9;
}

.page-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 35%,
    rgba(0, 0, 0, 0.85) 100%
  );
}

.page-card__label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: #fff;
  font-weight: 600;
}

.page-card:hover img {
  transform: scale(1.05);
}

.legal-content,
.article-body {
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-content h2,
.article-body h2 {
  color: #fff;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.article-body p + p,
.article-body ul {
  margin-top: 0.85rem;
}

.article-body ul {
  padding-left: 1.15rem;
}

.article-body li + li {
  margin-top: 0.35rem;
}

/* Blog cards */
.blog-card {
  transition:
    border-color 0.25s ease,
    transform 0.25s ease;
}

.blog-card:hover {
  border-color: rgba(255, 102, 0, 0.35);
  transform: translateY(-4px);
}

.blog-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #111;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.04);
}

.blog-card__body {
  padding: 1.2rem 1.25rem 1.3rem;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
}

.blog-card__title {
  color: #fff;
  text-decoration: none;
}

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

.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.84rem;
}

.blog-detail__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  margin-bottom: 1.15rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

.blog-detail__cover {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.blog-related__item + .blog-related__item {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-related__link {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.75rem;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

.blog-related__link img {
  width: 72px;
  height: 54px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-related__link strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1.35;
  font-weight: 650;
}

.blog-related__link small {
  display: block;
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}

.blog-related__link:hover strong {
  color: var(--accent);
}

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

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #0f0f0f;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 1rem;
    margin-top: 0.75rem;
  }

  .nav-pill {
    display: block;
    width: 100%;
    border-radius: 18px;
    padding: 0.4rem;
  }

  .nav-pill__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
  }

  .nav-pill__link {
    width: 100%;
    justify-content: flex-start;
    padding: 0.7rem 1rem;
  }

  .nav-pill .dropdown-menu {
    width: 100%;
    position: static !important;
    transform: none !important;
    margin-top: 0.25rem !important;
    box-shadow: none;
  }

  .trust-grid,
  .why-grid,
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    max-width: none;
  }
}

@media (max-width: 575.98px) {
  .trust-grid,
  .why-grid,
  .stats-row,
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Welcome loader ---------- */
html.welcome-skip .welcome-loader {
  display: none !important;
}

.welcome-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(
      circle at 50% 30%,
      rgba(255, 102, 0, 0.16),
      transparent 42%
    ),
    #000;
  color: #fff;
  transition:
    opacity 0.55s ease,
    visibility 0.55s ease;
}

.welcome-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.welcome-loading {
  overflow: hidden;
}

.welcome-loader__inner {
  text-align: center;
  padding: 1.5rem;
  animation: welcomeIn 0.55s ease both;
}

@keyframes welcomeIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.welcome-loader__logo {
  margin: 0 auto 1.25rem;
  width: min(220px, 62vw);
}

.welcome-loader__brand-img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  animation: welcomePulse 1.6s ease-in-out infinite;
  filter: drop-shadow(0 0 22px rgba(255, 102, 0, 0.28));
}

.welcome-loader__mark-img {
  width: 88px;
  height: 88px;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  animation: welcomePulse 1.6s ease-in-out infinite;
  filter: drop-shadow(0 0 16px rgba(255, 102, 0, 0.35));
}

.welcome-loader__mark {
  width: 78px;
  height: 78px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  background: #ff6600;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
  animation: welcomePulse 1.6s ease-in-out infinite;
}

@keyframes welcomePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

.welcome-loader__brand {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.welcome-loader__brand span {
  color: var(--accent);
}

.welcome-loader__tagline {
  margin: 0.55rem 0 1.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.welcome-loader__tagline span {
  color: var(--accent);
}

.welcome-loader__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  height: 28px;
  margin-bottom: 0.9rem;
}

.welcome-loader__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: welcomeDot 1.05s ease-in-out infinite;
}

.welcome-loader__dots span:nth-child(1) {
  animation-delay: 0s;
}
.welcome-loader__dots span:nth-child(2) {
  animation-delay: 0.12s;
}
.welcome-loader__dots span:nth-child(3) {
  animation-delay: 0.24s;
}
.welcome-loader__dots span:nth-child(4) {
  animation-delay: 0.36s;
}
.welcome-loader__dots span:nth-child(5) {
  animation-delay: 0.48s;
}

@keyframes welcomeDot {
  0%,
  100% {
    transform: scale(0.55);
    opacity: 0.35;
  }
  50% {
    transform: scale(1.4);
    opacity: 1;
  }
}

.welcome-loader__status {
  margin: 0;
  color: #888;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  animation: welcomeBlink 1.2s ease-in-out infinite;
}

@keyframes welcomeBlink {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}

/* ---------- Store / Marketplace ---------- */
.cart-nav-btn {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 999px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.cart-nav-btn:hover {
  border-color: rgba(255, 102, 0, 0.45);
  background: #222;
  color: #fff;
}
.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: inline-grid;
  place-items: center;
  transform: translate(30%, -25%);
}
.store-hero {
  padding: 4.5rem 0 2rem;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 102, 0, 0.16), transparent 50%),
    #000;
}
.store-hero .container,
.store-section .container,
.product-detail .container {
  width: min(100% - 2rem, var(--container-store));
  max-width: var(--container-store);
}
.store-hero__title {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.store-hero__lead {
  color: var(--muted);
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.6;
}
.store-section {
  padding-top: 2rem;
  padding-bottom: 4rem;
}
.store-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-bottom: 2rem;
}
.store-cat-card {
  position: relative;
  background: linear-gradient(180deg, #1f1f1f 0%, #161616 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 1.15rem 1rem;
  text-align: center;
  min-height: 0;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  color: #fff;
  text-decoration: none;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.store-cat-card > span:not(.store-cat-badge) {
  font-size: 1.08rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.01em;
}
.store-cat-card i {
  display: block;
  font-size: 1.55rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}
.store-cat-card.is-active,
.store-cat-card:hover {
  border-color: rgba(255, 102, 0, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}
.store-cat-card.is-active,
.store-cat-card.is-active i,
.store-cat-card.is-active > span:not(.store-cat-badge) {
  color: var(--accent);
}
.store-cat-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: rgba(255, 102, 0, 0.18);
  color: var(--accent);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  line-height: 1.2;
}
.store-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.65rem;
}
.store-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.store-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  background: #141414;
}
.store-chip.is-active,
.store-chip:hover {
  border-color: var(--accent);
  color: #fff;
  box-shadow: inset 0 0 0 1px var(--accent);
  background: rgba(255, 102, 0, 0.08);
}
.store-controls {
  display: flex;
  gap: 0.55rem;
}
.store-control-btn {
  background: var(--bg-card);
  border: 1px solid var(--line);
  color: #fff;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-size: 0.92rem;
}
.store-sort-btn {
  width: 46px;
  height: 46px;
  padding: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.store-dropdown {
  background: #121212;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.5rem;
  min-width: 210px;
}
.store-dropdown .dropdown-item {
  color: rgba(255, 255, 255, 0.85);
  border-radius: 10px;
}
.store-dropdown .dropdown-item:hover,
.store-dropdown .dropdown-item.is-selected,
.store-dropdown .dropdown-item.active {
  background: rgba(255, 102, 0, 0.12);
  color: #fff;
}
.store-switch {
  width: 34px;
  height: 18px;
  border-radius: 999px;
  background: #444;
  position: relative;
}
.store-switch::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s ease;
}
.store-switch.is-on {
  background: var(--accent);
}
.store-switch.is-on::after {
  transform: translateX(16px);
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}
.store-grid.is-list {
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.product-card:hover {
  border-color: rgba(255, 102, 0, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
.product-card__media {
  position: relative;
  display: block;
  background: #0d0d0d;
  overflow: hidden;
}
.product-card__media img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.product-card:hover .product-card__media img {
  transform: scale(1.04);
}
.product-trend {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: #1f8f4e;
  color: #fff;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.28rem 0.6rem;
  line-height: 1.2;
}
.product-trend.static {
  position: static;
}
.product-card__body {
  padding: 1.15rem 1.2rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}
.product-card__title {
  font-size: 1.12rem;
  font-weight: 650;
  margin: 0;
  line-height: 1.4;
  min-height: 2.8em;
  color: #fff;
}
.product-card__title a {
  color: #fff;
  text-decoration: none;
}
.product-card__title a:hover {
  color: var(--accent);
}
.product-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.85rem;
  align-items: flex-end;
  margin-top: auto;
}
.product-vendor {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  min-width: 0;
}
.product-vendor.inline {
  gap: 0.45rem;
}
.product-vendor__mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}
.product-vendor strong {
  display: block;
  font-size: 0.92rem;
  color: #fff;
  line-height: 1.25;
}
.product-vendor small {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.3;
}
.product-price {
  text-align: right;
  flex-shrink: 0;
}
.product-price strong {
  color: var(--accent);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
}
.product-price .compare {
  display: block;
  text-decoration: line-through;
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 0.15rem;
}

/* List view — readable horizontal cards */
.store-grid.is-list .product-card {
  flex-direction: row;
  align-items: stretch;
}
.store-grid.is-list .product-card__media {
  width: min(320px, 38%);
  flex-shrink: 0;
}
.store-grid.is-list .product-card__media img {
  height: 100%;
  min-height: 200px;
}
.store-grid.is-list .product-card__body {
  padding: 1.35rem 1.5rem;
  justify-content: center;
}
.store-grid.is-list .product-card__title {
  min-height: 0;
  font-size: 1.25rem;
}

.product-detail {
  padding: 2rem 0 4rem;
}
.product-crumb ol {
  color: var(--muted);
  margin-bottom: 1rem;
}
.product-detail__title {
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  font-weight: 700;
  margin-bottom: 0.95rem;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.product-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.65rem;
  align-items: flex-start;
}
.product-top__price strong {
  font-size: 1.85rem;
  color: var(--accent);
  font-weight: 700;
}
.product-top__price small {
  display: block;
  text-decoration: line-through;
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 0.2rem;
}
.product-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}
.meta-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.9rem;
  color: var(--muted);
  background: #141414;
}
.product-gallery.content-tile {
  padding: 0;
}
.product-gallery__main {
  width: 100%;
  height: auto;
  max-height: 520px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.product-thumbs {
  display: flex;
  gap: 0.65rem;
  padding: 1rem;
  overflow-x: auto;
}
.product-thumb {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  width: 96px;
  height: 68px;
  flex-shrink: 0;
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sticky-side {
  position: sticky;
  top: 96px;
}
.product-side h3,
.content-tile h2.h4,
.content-tile h3.h5 {
  color: #fff;
}
.addon-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.addon-row img {
  width: 56px;
  height: 42px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.addon-row strong {
  display: block;
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.3;
}
.addon-row small {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 600;
}
.note-box {
  background: #1a1210;
  border: 1px solid rgba(255, 102, 0, 0.25);
  color: #ffb38a;
  border-radius: 12px;
  padding: 0.95rem 1rem;
  font-size: 0.92rem;
  line-height: 1.5;
}
.online-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1f8f4e;
  margin-right: 0.35rem;
}
.attr-list {
  margin: 0;
}
.attr-list > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.12);
  font-size: 0.95rem;
}
.attr-list dt {
  color: var(--muted);
  margin: 0;
}
.attr-list dd {
  margin: 0;
  font-weight: 600;
  text-align: right;
  color: #fff;
}
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag-pill {
  background: #141414;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.88);
}
.product-review {
  display: flex;
  gap: 0.95rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}
.product-review p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.55;
}
.store-service-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.25rem;
  height: auto;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease;
}
.store-service-card:hover {
  border-color: rgba(255, 102, 0, 0.4);
  transform: translateY(-3px);
}
.store-service-card__media {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 1rem;
  background: #0d0d0d;
}
.store-service-card h3 {
  font-size: 1.15rem;
  font-weight: 650;
  color: #fff;
  margin-bottom: 0.55rem;
  line-height: 1.35;
}
.store-service-card__price {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.store-cta {
  background: linear-gradient(120deg, #ff6600, #ff8a3d 55%, #c2410c);
  border-radius: 22px;
  padding: 2.5rem;
  color: #fff;
}
.store-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.6rem;
}
.store-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 10050;
  visibility: hidden;
  pointer-events: none;
}
.cart-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}
.cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.cart-drawer__panel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%);
  width: min(920px, calc(100% - 2rem));
  max-height: 85vh;
  overflow: auto;
  background: #121212;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  opacity: 0;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}
.cart-drawer.is-open .cart-drawer__panel {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.cart-drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
}
.cart-close {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
}
.cart-drawer__body {
  padding: 1.25rem;
}
.cart-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
}
.cart-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.cart-item img {
  width: 72px;
  height: 54px;
  object-fit: cover;
  border-radius: 8px;
}
.cart-item strong,
.cart-item small {
  display: block;
}
.cart-item small {
  color: var(--muted);
}
.cart-line {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
}
.cart-line.total strong {
  font-size: 1.1rem;
}
.payment-box {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem;
}
.payment-box h4 {
  font-size: 0.95rem;
  margin-bottom: 0.55rem;
}
.payment-box label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
}
.cart-legal {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0.85rem 0;
}
.cart-legal a {
  color: var(--accent);
}

.store-toast {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  left: auto;
  transform: translateY(-12px);
  z-index: 11000;
  width: min(380px, calc(100% - 2rem));
  background: linear-gradient(160deg, #1a1a1a 0%, #121212 100%);
  color: #fff;
  border: 1px solid rgba(255, 102, 0, 0.35);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 102, 0, 0.08),
    0 0 28px rgba(255, 102, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}

.store-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.store-toast[hidden] {
  display: none !important;
}

.store-toast__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(255, 102, 0, 0.16);
  color: var(--accent);
  font-size: 1.15rem;
  border: 1px solid rgba(255, 102, 0, 0.28);
}

.store-toast.is-error {
  border-color: rgba(231, 76, 60, 0.4);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.45),
    0 0 28px rgba(231, 76, 60, 0.12);
}

.store-toast.is-error .store-toast__icon {
  background: rgba(231, 76, 60, 0.16);
  color: #ff8f84;
  border-color: rgba(231, 76, 60, 0.3);
}

.store-toast__content {
  min-width: 0;
  flex: 1;
  padding-top: 0.1rem;
}

.store-toast__title {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 0.15rem;
  color: #fff;
}

.store-toast__msg {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.store-toast__close {
  margin-left: 0;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  line-height: 1;
  padding: 0.2rem;
  border-radius: 8px;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.store-toast__close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 575.98px) {
  .store-toast {
    top: 1rem;
    right: 1rem;
    left: 1rem;
    width: auto;
  }
}

@media (max-width: 991.98px) {
  .store-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .store-cats {
    grid-template-columns: 1fr;
  }
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .sticky-side {
    position: static;
  }
  .store-grid.is-list .product-card {
    flex-direction: column;
  }
  .store-grid.is-list .product-card__media {
    width: 100%;
  }
  .store-grid.is-list .product-card__media img {
    height: 210px;
    min-height: 0;
  }
}
@media (max-width: 575.98px) {
  .store-grid {
    grid-template-columns: 1fr;
  }
  .product-card__media img {
    height: 200px;
  }
  .product-card__title {
    font-size: 1.05rem;
    min-height: 0;
  }
}
