:root {
  --ink: #101418;
  --ink-soft: #242b33;
  --muted: #667085;
  --muted-2: #8a94a3;
  --line: #e7ebf0;
  --line-strong: #d8dee6;
  --surface: #ffffff;
  --surface-soft: #f7f9fc;
  --surface-tint: #eef7fb;
  --brand: #0b5cff;
  --brand-dark: #0746c8;
  --aqua: #19a7b8;
  --green: #1f9d55;
  --gold: #b8892e;
  --shadow-sm: 0 12px 34px rgba(16, 20, 24, 0.07);
  --shadow-md: 0 28px 80px rgba(16, 20, 24, 0.13);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Sprint 01 mockup alignment layer */
.sprint-header {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 38px rgba(15, 23, 42, 0.045);
}

.sprint-nav {
  min-height: 72px;
}

.sprint-brand {
  min-width: 148px;
  display: grid;
  gap: 0;
  line-height: 0.94;
  letter-spacing: 0.02em;
}

.sprint-brand .brand-word {
  font-size: 28px;
  font-weight: 920;
}

.sprint-brand small {
  color: #111827;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.36em;
}

.sprint-nav-links {
  gap: 10px;
  margin-left: auto;
  font-size: 13px;
}

.sprint-nav-links > a,
.sprint-nav-links .products-menu-trigger {
  min-height: 72px;
  display: inline-flex;
  align-items: center;
  padding: 0 7px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #111827;
  font: inherit;
  font-size: 13px;
  font-weight: 760;
}

.sprint-nav-links > a:hover,
.sprint-nav-links > a.active,
.sprint-nav-links .products-menu-trigger:hover,
.products-nav-item.is-open .products-menu-trigger {
  color: var(--brand);
  background: transparent;
}

.products-menu-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 6px;
  border-right: 1.7px solid currentColor;
  border-bottom: 1.7px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.18s ease;
}

.products-nav-item.is-open .products-menu-trigger::after,
.products-nav-item:hover .products-menu-trigger::after {
  transform: rotate(225deg) translateY(-1px);
}

.sprint-nav-links > a.active::after,
.products-nav-item.is-open .products-menu-trigger::before,
.products-nav-item:hover .products-menu-trigger::before {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
}

.sprint-nav-links > a,
.products-menu-trigger {
  position: relative;
}

.icon-button.search-toggle {
  width: 36px;
  min-width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111827;
}

.icon-button.search-toggle svg {
  width: 18px;
  height: 18px;
}

.icon-button.search-toggle span {
  display: none;
}

.nav-whatsapp {
  width: 34px;
  height: 34px;
  overflow: hidden;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #12c867;
  color: #ffffff !important;
  font-size: 0;
  box-shadow: 0 14px 28px rgba(18, 200, 103, 0.22);
}

.nav-whatsapp::before {
  content: "WA";
  font-size: 11px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.nav-project-btn {
  min-height: 38px;
  padding: 10px 16px;
  border-radius: 9px;
  font-size: 12px;
  box-shadow: 0 12px 26px rgba(11, 92, 255, 0.22);
}

.products-nav-item {
  min-height: 72px;
}

.sprint-mega {
  top: 72px;
  width: min(1040px, calc(100vw - 48px));
}

.sprint-mega-shell {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr) 295px;
  gap: 0;
  border-radius: 0 0 20px 20px;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
}

.mega-browse-panel,
.mega-product-panel,
.mega-feature-panel {
  padding: 26px;
}

.mega-browse-panel,
.mega-product-panel {
  border-right: 1px solid #edf1f7;
}

.mega-browse-panel p,
.mega-product-panel p,
.mega-feature-panel p {
  margin: 0 0 16px;
  color: #475569;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mega-browse-panel {
  display: grid;
  align-content: start;
  gap: 6px;
}

.mega-browse-panel a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 10px;
  color: #26313d;
  font-size: 13px;
  font-weight: 760;
}

.mega-browse-panel a:hover,
.mega-browse-panel a.active {
  color: var(--brand);
  background: #eef4ff;
}

.mega-browse-panel .view-all {
  margin-top: 8px;
  color: var(--brand);
}

.mega-product-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mega-product-list a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 12px;
  align-items: center;
  padding: 9px;
  border-radius: 13px;
  transition: background 0.18s ease, transform 0.18s ease;
}

.mega-product-list a:hover {
  background: #f6f9ff;
  transform: translateY(-1px);
}

.mega-product-list span {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(180deg, #f8fafc, #e8eef7);
  color: #0f172a;
  font-size: 12px;
  font-weight: 900;
}

.mega-product-list strong {
  color: #111827;
  font-size: 14px;
  line-height: 1.15;
}

.mega-product-list small {
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
}

.mega-inline-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 850;
}

.mega-feature-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbff, #ffffff);
}

.mega-feature-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 14px;
  background: #f6f8fb;
}

.mega-feature-card strong {
  color: #111827;
  font-size: 17px;
}

.mega-feature-card span {
  color: #64748b;
  font-size: 13px;
  line-height: 1.45;
}

.mega-feature-card a {
  color: var(--brand);
  font-size: 13px;
  font-weight: 850;
}

.mega-service-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 16px 22px;
  border-top: 1px solid #edf1f7;
  background: #f8fbff;
}

.mega-service-row a {
  display: grid;
  gap: 2px;
  color: #111827;
  font-size: 12px;
}

.mega-service-row span {
  color: #64748b;
}

.mock-hero {
  padding: 58px 0 0;
  background:
    radial-gradient(circle at 72% 22%, rgba(11, 92, 255, 0.13), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.mock-hero::before {
  opacity: 0.55;
}

.mock-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1fr);
  gap: 36px;
  align-items: center;
  min-height: 520px;
}

.mock-hero-copy h1 {
  margin: 0;
  max-width: 640px;
  font-size: clamp(48px, 5.1vw, 74px);
  line-height: 1.03;
  letter-spacing: -0.052em;
}

.mock-hero-copy h1 span {
  color: var(--brand);
}

.hero-kicker {
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  background: #eef4ff;
}

.mock-hero-copy .sprint-hero-lead {
  max-width: 525px;
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.7;
}

.mock-hero-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.mock-stage-orbit {
  position: absolute;
  inset: 48px 14px 38px 20px;
  border: 5px solid rgba(11, 92, 255, 0.12);
  border-radius: 50%;
  transform: rotate(-14deg);
}

.mock-hero-lineup {
  position: relative;
  width: min(100%, 720px);
  max-height: 470px;
  object-fit: contain;
  filter: drop-shadow(0 42px 54px rgba(15, 23, 42, 0.12));
}

.mock-stat-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 20px 0 34px;
}

.mock-stat-row div {
  display: grid;
  gap: 2px;
  padding-left: 46px;
  position: relative;
}

.mock-stat-row div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #eef4ff;
  box-shadow: inset 0 0 0 1px #dbe8ff;
}

.mock-stat-row strong {
  color: #0f172a;
  font-size: 28px;
  line-height: 1;
}

.mock-stat-row span {
  color: #475569;
  font-size: 12px;
  font-weight: 760;
}

.mock-category-section {
  padding-top: 48px;
}

.mock-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.mock-section-head h2 {
  margin: 4px 0 0;
  font-size: clamp(30px, 3vw, 42px);
  letter-spacing: -0.03em;
}

.mock-section-head > a {
  color: var(--brand);
  font-size: 13px;
  font-weight: 850;
}

.mock-category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.mock-category-card {
  min-height: 252px;
  padding: 16px;
  border: 1px solid #e5ebf3;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.055);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.mock-category-card:hover,
.mock-category-card:focus-visible {
  transform: translateY(-4px);
  border-color: #c9daf8;
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.09);
}

.mock-category-card img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: contain;
  margin-bottom: 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.mock-category-card h3 {
  margin: 0 0 4px;
  font-size: 16px;
}

.mock-category-card p,
.mock-category-card span {
  margin: 0;
  color: #64748b;
  font-size: 12px;
  line-height: 1.45;
}

.mock-category-card span {
  display: block;
  margin-top: 8px;
  font-weight: 800;
}

.mock-trust {
  padding-top: 70px;
}

.mock-trust-grid,
.mock-solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.mock-trust-grid article {
  min-height: 150px;
  padding: 24px;
  border: 1px solid #e5ebf3;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.045);
}

.mock-trust-grid span {
  color: var(--brand);
  font-weight: 900;
}

.mock-trust-grid h3,
.mock-solutions-grid h3 {
  margin: 8px 0 6px;
  font-size: 17px;
}

.mock-trust-grid p,
.mock-solutions-grid p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.55;
}

.mock-solutions {
  margin-top: 72px;
  padding: 52px 0;
  background:
    radial-gradient(circle at 96% 18%, rgba(11, 92, 255, 0.22), transparent 34%),
    linear-gradient(135deg, #07192d, #0c2b4a);
}

.mock-section-head.inverse h2,
.mock-section-head.inverse .eyebrow {
  color: #ffffff;
}

.mock-section-head.inverse > a {
  color: #8db9ff;
}

.mock-solutions-grid article {
  min-height: 120px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.mock-solutions-grid h3 {
  color: #ffffff;
}

.mock-solutions-grid p {
  color: rgba(255, 255, 255, 0.74);
}

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

.mock-product-grid .sprint-product-card {
  border-radius: 14px;
}

.mock-product-grid .sprint-product-card figure {
  padding: 12px;
}

.mock-product-grid .sprint-product-card img {
  border-radius: 12px;
}

.mock-product-grid .sprint-product-card h3 {
  margin: 0;
  font-size: 21px;
}

.mock-product-grid .sprint-product-card p {
  margin: -6px 0 0;
  color: #64748b;
  font-size: 13px;
  font-weight: 760;
}

@media (max-width: 1180px) {
  .sprint-nav-links {
    gap: 4px;
  }

  .nav-project-btn {
    display: none;
  }

  .mock-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .sprint-nav {
    min-height: 64px;
  }

  .sprint-brand {
    min-width: auto;
  }

  .sprint-nav-links {
    gap: 0;
  }

  .sprint-nav-links.open {
    padding-top: 12px;
  }

  .sprint-nav-links > a,
  .sprint-nav-links .products-menu-trigger {
    min-height: auto;
    width: 100%;
    padding: 13px 0;
    border-radius: 0;
  }

  .sprint-nav-links > a.active::after,
  .products-nav-item.is-open .products-menu-trigger::before,
  .products-nav-item:hover .products-menu-trigger::before {
    display: none;
  }

  .nav-whatsapp {
    width: 100%;
    height: 44px;
    margin-top: 10px;
    font-size: 14px;
  }

  .nav-whatsapp::before {
    content: "WhatsApp";
    font-size: 14px;
    letter-spacing: 0;
  }

  .mobile-search-link {
    width: 100%;
    margin-top: 8px;
    padding: 13px 0;
    border: 0;
    border-top: 1px solid var(--line);
    background: transparent;
    color: var(--brand);
    text-align: left;
    font: inherit;
    font-weight: 820;
  }

  .mock-hero {
    padding-top: 36px;
  }

  .mock-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .mock-hero-visual {
    min-height: 320px;
  }

  .mock-stat-row,
  .mock-trust-grid,
  .mock-solutions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .sprint-brand .brand-word {
    font-size: 23px;
  }

  .mock-hero-copy h1 {
    font-size: 42px;
  }

  .mock-hero-copy .sprint-hero-lead {
    font-size: 16px;
  }

  .mock-hero-visual {
    min-height: 250px;
  }

  .mock-stat-row,
  .mock-category-grid,
  .mock-trust-grid,
  .mock-solutions-grid,
  .mock-product-grid {
    grid-template-columns: 1fr;
  }

  .mock-section-head {
    display: grid;
    align-items: start;
  }

  .mock-category-card {
    min-height: auto;
  }

  .mock-category-card img {
    aspect-ratio: 4 / 3;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcfe 44%, #ffffff 100%);
  line-height: 1.65;
}

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

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

.container {
  width: min(1200px, calc(100% - 56px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(231, 235, 240, 0.78);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(22px) saturate(1.2);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: #ffffff;
  background: linear-gradient(135deg, var(--ink), var(--brand));
  font-size: 17px;
}

.brand-mark.logo-mark {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(16, 20, 24, 0.08);
}

.brand-mark.logo-mark img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand small {
  display: block;
  margin-top: -2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #3a4450;
  font-size: 14px;
  font-weight: 680;
}

.nav-links a {
  padding: 9px 11px;
  border-radius: 999px;
  transition: color 0.18s ease, background 0.18s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand);
  background: #eef4ff;
}

.nav-item {
  position: relative;
}

.products-nav-item > a {
  display: inline-flex;
  align-items: center;
}

.mega-menu {
  position: fixed;
  left: 50%;
  top: 70px;
  z-index: 50;
  width: min(1120px, calc(100vw - 48px));
  padding-top: 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.products-nav-item:hover .mega-menu,
.products-nav-item:focus-within .mega-menu,
body.qa-show-mega .products-nav-item .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-menu-inner {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(216, 222, 230, 0.92);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(20px);
}

.mega-column {
  display: grid;
  align-content: start;
  gap: 3px;
  padding: 12px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.mega-column a {
  padding: 7px 8px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
  line-height: 1.35;
}

.mega-column a:hover,
.mega-column a:focus-visible {
  color: var(--brand);
  background: #eef4ff;
}

.mega-column .mega-title {
  color: var(--ink);
  font-size: 14px;
  font-weight: 880;
}

.mobile-products-accordion {
  display: none;
}

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

.nav-social {
  margin-left: 6px;
  padding-left: 10px;
  border-left: 1px solid var(--line);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 780;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.social-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.nav-links .social-link {
  padding: 8px 13px;
}

.social-link.whatsapp-primary {
  color: #ffffff;
  background: var(--green);
  box-shadow: 0 10px 24px rgba(31, 157, 85, 0.22);
}

.social-link.whatsapp-primary:hover,
.social-link.whatsapp-primary:focus-visible {
  color: #ffffff;
  background: #178a4a;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  font-size: 22px;
  box-shadow: 0 6px 18px rgba(16, 20, 24, 0.06);
}

.search-toggle {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(16, 20, 24, 0.06);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, color 0.18s ease;
}

.search-toggle span {
  font-size: 25px;
  line-height: 1;
  transform: translateY(-1px);
}

.dark-search-toggle {
  margin-left: 0;
  border-color: rgba(0, 239, 231, 0.24);
  background: rgba(255, 255, 255, 0.04);
  color: #d8f8ff;
  box-shadow: none;
}

.dark-search-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dark-search-toggle span {
  display: none;
}

.dark-search-toggle:hover,
.dark-search-toggle:focus-visible {
  color: #00efe7;
  border-color: rgba(0, 239, 231, 0.55);
  background: rgba(0, 239, 231, 0.1);
  box-shadow: 0 14px 34px rgba(0, 239, 231, 0.12);
}

.search-toggle:hover,
.search-toggle:focus-visible {
  color: var(--brand);
  border-color: #c9daf8;
  box-shadow: 0 14px 32px rgba(16, 20, 24, 0.1);
  transform: translateY(-1px);
}

.mobile-search-link {
  display: none;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d9e7ff;
  border-radius: var(--radius);
  background: #f2f7ff;
  color: var(--brand-dark);
  font: inherit;
  font-weight: 780;
  text-align: left;
  cursor: pointer;
}

body.search-open {
  overflow: hidden;
}

.search-overlay[hidden] {
  display: none;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: start center;
  padding: 92px 24px 28px;
}

.search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 24, 0.46);
  backdrop-filter: blur(14px);
}

.search-panel {
  position: relative;
  z-index: 1;
  width: min(880px, 100%);
  max-height: min(760px, calc(100vh - 124px));
  overflow: auto;
  border: 1px solid rgba(216, 222, 230, 0.92);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 36px 100px rgba(16, 20, 24, 0.22);
}

.search-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  padding: 28px 30px 18px;
  border-bottom: 1px solid var(--line);
}

.search-panel-head .eyebrow {
  margin-bottom: 8px;
}

.search-panel h2 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(24px, 4vw, 36px);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.search-close {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.search-input-wrap {
  display: grid;
  gap: 8px;
  padding: 22px 30px 14px;
}

.search-input-wrap span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-input-wrap input {
  width: 100%;
  min-height: 58px;
  padding: 14px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  outline: none;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-size: 18px;
  box-shadow: inset 0 1px 0 rgba(16, 20, 24, 0.03);
}

.search-input-wrap input:focus {
  border-color: rgba(11, 92, 255, 0.46);
  box-shadow: 0 0 0 4px rgba(11, 92, 255, 0.09);
}

.search-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0 30px 20px;
}

.search-shortcuts button {
  padding: 9px 12px;
  border: 1px solid #d9e7ff;
  border-radius: 999px;
  background: #f2f7ff;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 820;
  cursor: pointer;
}

.search-results {
  display: grid;
  gap: 10px;
  padding: 0 30px 30px;
}

.search-result {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.search-product-result {
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: stretch;
}

.search-result-main {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 16px;
  align-items: center;
}

.search-result-image {
  width: 132px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.search-result-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.search-feature-list {
  display: grid;
  gap: 3px;
  margin: 2px 0 0;
  padding-left: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.search-quote-btn {
  justify-content: center;
  width: 100%;
}

.search-result:hover,
.search-result:focus-visible {
  transform: translateY(-2px);
  border-color: #c9daf8;
  box-shadow: var(--shadow-sm);
}

.search-result-thumb {
  width: 76px;
  height: 76px;
  object-fit: contain;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f5f8fc);
}

.text-thumb {
  display: grid;
  place-items: center;
  color: var(--brand-dark);
  font-size: 11px;
  font-weight: 860;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.search-result-body {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.search-result-body strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.25;
}

.search-result-body span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.search-result-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.search-type {
  flex: 0 0 auto;
  padding: 4px 8px;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--brand);
  font-size: 11px;
  font-weight: 880;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.search-url {
  overflow: hidden;
  color: var(--muted-2);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-empty {
  display: grid;
  justify-items: start;
  gap: 10px;
  padding: 26px;
  border: 1px dashed var(--line-strong);
  border-radius: 18px;
  background: var(--surface-soft);
}

.search-empty strong {
  color: var(--ink);
  font-size: 17px;
}

.search-empty span {
  color: var(--muted);
}

.search-empty.subtle {
  background: #ffffff;
}

.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--brand);
  color: #ffffff;
  font-weight: 780;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(11, 92, 255, 0.2);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--brand-dark);
  box-shadow: 0 18px 38px rgba(11, 92, 255, 0.28);
}

.btn.secondary {
  border-color: rgba(16, 20, 24, 0.1);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(16, 20, 24, 0.08);
}

.btn.secondary:hover {
  border-color: rgba(11, 92, 255, 0.22);
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(16, 20, 24, 0.1);
}

.btn.whatsapp {
  background: var(--green);
  box-shadow: 0 14px 28px rgba(31, 157, 85, 0.22);
}

.btn.whatsapp:hover {
  background: #168344;
  box-shadow: 0 18px 38px rgba(31, 157, 85, 0.28);
}

.hero {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #0c1118;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 12, 18, 0.95) 0%, rgba(12, 17, 24, 0.78) 46%, rgba(12, 17, 24, 0.32) 100%),
    url("assets/hero-sourcing.webp") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 42%;
  background: linear-gradient(180deg, rgba(12, 17, 24, 0), rgba(12, 17, 24, 0.52));
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.55fr);
  align-items: center;
  gap: 64px;
  padding: 112px 0 148px;
}

.hero-content {
  width: min(800px, 100%);
  color: #ffffff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 830;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #bdefff;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 920px;
  color: #ffffff;
  font-size: clamp(52px, 7vw, 90px);
  font-weight: 880;
}

.hero p:not(.eyebrow) {
  width: min(690px, 100%);
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.72;
}

.hero-panel {
  align-self: end;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(24px) saturate(1.2);
  color: #ffffff;
}

.hero-panel .panel-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 780;
}

.hero-panel h2 {
  color: #ffffff;
  font-size: 28px;
  line-height: 1.16;
}

.hero-panel p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.7;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.panel-grid div {
  min-height: 94px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
}

.panel-grid strong,
.panel-grid span {
  display: block;
}

.panel-grid strong {
  color: #9ddfff;
  font-size: 13px;
}

.panel-grid span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 720;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.trust-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: -78px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.trust-row div {
  min-height: 124px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.86);
}

.trust-row strong {
  display: block;
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
}

.trust-row span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.proof-strip {
  padding: 36px 0 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.proof-grid span {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  text-align: center;
}

.section {
  padding: 128px 0;
}

.section,
.cta-band,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 760px;
}

.section.soft {
  background:
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-block: 1px solid rgba(231, 235, 240, 0.72);
}

.page-hero.compact {
  padding-top: 72px;
}

.breadcrumb {
  margin-top: 30px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.breadcrumb a {
  color: var(--brand);
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.catalogue-group {
  display: grid;
  gap: 20px;
  cursor: pointer;
}

.catalogue-group-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.catalogue-group-head h3 {
  font-size: 24px;
}

.catalogue-group-head a,
.category-link-grid a {
  color: var(--brand);
  font-weight: 780;
}

.category-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-link-grid a {
  padding: 9px 12px;
  border: 1px solid #d9e7ff;
  border-radius: 999px;
  background: #f2f7ff;
  color: var(--brand-dark);
  font-size: 13px;
}

.category-link-grid.large {
  margin-top: 28px;
}

.catalogue-tree {
  display: grid;
  gap: 16px;
  width: min(920px, 100%);
  margin: 0 auto;
}

.catalogue-tree.compact-tree {
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalogue-tree .catalogue-group {
  cursor: default;
}

.catalogue-tree details.catalogue-group {
  padding: 0;
  overflow: hidden;
}

.catalogue-tree summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px;
  list-style: none;
  cursor: pointer;
}

.catalogue-tree summary::-webkit-details-marker {
  display: none;
}

.catalogue-tree summary::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid #d9e7ff;
  border-radius: 999px;
  background: #f2f7ff;
  color: var(--brand-dark);
  font-weight: 850;
}

.catalogue-tree details[open] summary::after {
  content: "−";
}

.catalogue-tree summary span {
  color: var(--ink);
  font-size: 24px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.catalogue-tree summary small {
  margin-left: auto;
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
}

.catalogue-tree-links {
  display: grid;
  gap: 0;
  padding: 0 26px 24px;
}

.catalogue-tree-links > a,
.catalogue-branch > a,
.catalogue-branch div a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 0 10px 18px;
  border-left: 2px solid #d9e7ff;
  color: var(--ink);
  font-weight: 760;
}

.catalogue-tree-links > a:hover,
.catalogue-branch a:hover {
  color: var(--brand);
}

.catalogue-tree-links > a:first-child {
  color: var(--brand);
  font-weight: 850;
}

.catalogue-branch {
  display: grid;
}

.catalogue-branch > a {
  color: var(--ink);
}

.catalogue-branch div {
  display: grid;
  margin-left: 22px;
}

.catalogue-branch div a {
  min-height: 36px;
  padding-left: 20px;
  color: var(--muted);
  font-size: 14px;
}

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

.premium-category-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 310px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 0%, rgba(11, 92, 255, 0.08), transparent 32%),
    #ffffff;
  box-shadow: 0 14px 42px rgba(16, 20, 24, 0.06);
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.premium-category-card:hover,
.premium-category-card:focus-visible {
  transform: translateY(-4px);
  border-color: #c9daf8;
  box-shadow: 0 24px 70px rgba(16, 20, 24, 0.12);
}

.premium-category-card.featured {
  border-color: rgba(11, 92, 255, 0.22);
  background:
    radial-gradient(circle at 90% 0%, rgba(25, 167, 184, 0.15), transparent 34%),
    linear-gradient(180deg, #ffffff, #f6fbff);
}

.premium-category-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #d9e7ff;
  border-radius: 50%;
  background: #f2f7ff;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.premium-category-card h3 {
  font-size: 28px;
  line-height: 1.05;
}

.premium-category-card p {
  margin: 0;
  color: var(--muted);
}

.premium-category-card a {
  align-self: end;
  color: var(--brand);
  font-weight: 820;
}

.compact-tree .catalogue-group {
  padding: 22px;
}

.compact-tree .catalogue-group h3 {
  font-size: 22px;
}

.compact-tree .catalogue-group p {
  color: var(--muted);
}

.compact-tree .catalogue-group a {
  color: var(--brand);
  font-weight: 780;
}

.empty-catalogue {
  display: grid;
  justify-items: start;
  gap: 14px;
  margin-bottom: 24px;
  border-style: dashed;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.empty-catalogue h2 {
  font-size: clamp(26px, 4vw, 42px);
}

.level-category-hero .container {
  max-width: 860px;
}

.level-category-section {
  padding-top: 56px;
}

.level-category-browser {
  display: grid;
  grid-template-columns: minmax(220px, 25%) minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
}

.level-category-list {
  display: grid;
  gap: 10px;
  align-content: start;
}

.level-category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.level-category-item span {
  font-weight: 820;
}

.level-category-item small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  white-space: nowrap;
}

.level-category-item:hover,
.level-category-item.is-active {
  border-color: rgba(20, 184, 166, 0.45);
  background: linear-gradient(135deg, #f2fffd, #f7fbff);
  color: var(--brand-dark);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.level-category-item.is-active small,
.level-category-item:hover small {
  color: var(--brand);
}

.level-category-preview {
  display: grid;
  grid-template-columns: minmax(280px, 45%) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  min-height: 420px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff, #f8fbff);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

.level-category-image {
  display: grid;
  place-items: center;
  min-height: 320px;
  margin: 0;
  border-radius: 16px;
  background: #f5f8fc;
  overflow: hidden;
}

.level-category-image img {
  width: 100%;
  max-height: 360px;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  display: block;
}

.level-category-copy {
  display: grid;
  gap: 16px;
  justify-items: start;
}

.level-category-copy h2 {
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: 0;
}

.level-category-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.catalogue-note {
  max-width: 760px;
  color: var(--muted);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-cloud span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.recommendation-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: 44px;
  align-items: start;
}

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

.recommendation-results {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  padding: 22px;
  border: 1px solid #cfe1ff;
  border-radius: var(--radius);
  background: #f6faff;
}

.recommendation-results[hidden] {
  display: none;
}

.recommendation-results h3 {
  font-size: 24px;
}

.cloth-product-card .btn,
.breakfast-product-card .btn {
  width: 100%;
  margin-top: 8px;
}

.cloth-product-card figure,
.breakfast-product-card figure,
.breakfast-category-card figure {
  padding: 0;
  overflow: hidden;
  background: #ffffff;
}

.cloth-product-card img,
.breakfast-product-card img,
.breakfast-category-card img,
.product-photo img[src*="/images/products/cloth-care/"],
.product-photo img[src*="/images/products/breakfast-appliances/"] {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  padding: 0;
}

.breakfast-product-card img,
.breakfast-category-card img,
.product-photo img[src*="/images/products/breakfast-appliances/"] {
  object-fit: contain;
}

.compact-feature-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.compact-feature-list.large {
  margin: 24px 0 0;
  font-size: 15px;
}

.quote-btn {
  min-height: 42px;
  padding: 11px 16px;
  font-size: 13px;
}

.product-image {
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
}

.product-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  padding: 0;
}

.gold-product-card .btn {
  width: 100%;
  margin-top: 8px;
}

.gold-product-card h3 {
  margin-bottom: 2px;
}

.gold-product-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.gold-product-card .product-image {
  border-radius: 20px 20px 0 0;
}

.product-photo .product-image {
  border-radius: 24px;
}

.catalog-card.gold-product-card .product-image,
.product-detail .product-photo .product-image,
.product-detail-hero .product-photo .product-image {
  padding: 0;
  background: #ffffff;
}

.catalog-card.gold-product-card .product-image img,
.product-detail .product-photo .product-image img,
.product-detail-hero .product-photo .product-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  padding: 0;
}

.product-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.product-info-grid .content-card:last-child {
  grid-column: 1 / -1;
}

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

.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.spec-list strong {
  color: var(--ink);
}

@media (max-width: 760px) {
  .product-info-grid {
    grid-template-columns: 1fr;
  }

  .spec-list li {
    display: grid;
    gap: 4px;
  }
}

.section-header {
  width: min(780px, 100%);
  margin-bottom: 46px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header h2,
.split-copy h2 {
  font-size: clamp(36px, 4.4vw, 60px);
  font-weight: 850;
}

.section-header p,
.split-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.grid {
  display: grid;
  gap: 28px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 58px;
}

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

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

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  padding: 32px;
  box-shadow: 0 1px 0 rgba(16, 20, 24, 0.02);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--aqua), var(--gold));
  opacity: 0;
  transition: opacity 0.18s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(11, 92, 255, 0.2);
  box-shadow: var(--shadow-sm);
}

.card:hover::before {
  opacity: 1;
}

.card h3 {
  font-size: 23px;
  font-weight: 790;
}

.card p {
  margin: 13px 0 0;
  color: var(--muted);
}

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid #d9e7ff;
  border-radius: var(--radius);
  color: var(--brand);
  background: #f2f7ff;
  font-weight: 850;
}

.service-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.service-card a {
  margin-top: auto;
  color: var(--brand);
  font-size: 14px;
  font-weight: 820;
}

.audience-card span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  border: 1px solid #d9e7ff;
  border-radius: 999px;
  background: #f2f7ff;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 820;
}

.image-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  background: var(--surface-soft);
  box-shadow: var(--shadow-md);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-panel:hover img {
  transform: scale(1.025);
}

.split-copy {
  max-width: 610px;
}

.check-list {
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  margin: 13px 0;
  color: #35404c;
}

.check-list li::before {
  content: "";
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #ffffff 0 22%, transparent 23%),
    var(--brand);
  box-shadow: 0 7px 16px rgba(11, 92, 255, 0.18);
}

.page-hero {
  padding: 120px 0 104px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(246, 249, 252, 0.96)),
    linear-gradient(120deg, rgba(11, 92, 255, 0.1), rgba(25, 167, 184, 0.08));
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(46px, 6vw, 76px);
  font-weight: 880;
}

.page-hero p:not(.eyebrow) {
  width: min(790px, 100%);
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.72;
}

.product-card {
  min-height: 252px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.linked-card {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

.linked-card:focus-visible {
  outline: 3px solid rgba(32, 113, 244, 0.28);
  outline-offset: 4px;
}

.product-card::after {
  content: "Sourcing category";
  display: inline-flex;
  width: max-content;
  margin-top: auto;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f7f9fc;
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 820;
  text-transform: uppercase;
}

.product-card h3 {
  padding-right: 8px;
}

.product-card span {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.62;
}

.model-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.model-list a,
.model-list span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid #d9e7ff;
  border-radius: 999px;
  background: #f2f7ff;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.model-list a:hover {
  border-color: var(--brand);
  background: #e8f1ff;
  color: var(--brand);
}

.process {
  counter-reset: step;
}

.process .card::after {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  right: 24px;
  top: 20px;
  color: rgba(11, 92, 255, 0.12);
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
}

.process .card > h3,
.process .card > p {
  position: relative;
  z-index: 1;
}

.blog-list {
  display: grid;
  gap: 20px;
}

.blog-item {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 26px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(16, 20, 24, 0.05);
}

.blog-date {
  color: var(--brand);
  font-weight: 820;
}

.blog-item p {
  margin: 10px 0 0;
  color: var(--muted);
}

.content-hub {
  display: grid;
  gap: 18px;
}

.content-card {
  display: grid;
  gap: 12px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(16, 20, 24, 0.05);
}

.content-card h3 {
  font-size: 22px;
}

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

.content-card a,
.text-link {
  color: var(--brand);
  font-weight: 820;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 42px;
  align-items: start;
}

.detail-body {
  display: grid;
  gap: 34px;
}

.detail-body h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.detail-body p,
.detail-body li {
  color: var(--muted);
}

.detail-body section {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.detail-body section:last-child {
  border-bottom: 0;
}

.sidebar-card {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.sidebar-card a {
  color: var(--brand);
  font-weight: 780;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.faq-item h3 {
  font-size: 20px;
}

.faq-item p {
  margin: 10px 0 0;
  color: var(--muted);
}

.topic-list {
  columns: 2;
  column-gap: 40px;
  padding-left: 20px;
}

.topic-list li {
  break-inside: avoid;
  margin: 0 0 11px;
  color: var(--muted);
}

.strategy-list {
  display: grid;
  gap: 16px;
}

.strategy-list li {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--muted);
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 30px;
  align-items: start;
}

.contact-card,
.form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 38px;
  box-shadow: var(--shadow-sm);
}

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

form {
  display: grid;
  gap: 17px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}

label {
  display: grid;
  gap: 8px;
  color: #334155;
  font-size: 14px;
  font-weight: 730;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d5dbe4;
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(11, 92, 255, 0.12);
}

.cta-band {
  padding: 86px 0;
  background:
    linear-gradient(135deg, #101418 0%, #132232 48%, #0b5cff 150%);
  color: #ffffff;
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.cta-band h2 {
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 840;
}

.cta-band p {
  max-width: 660px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.site-footer {
  padding: 62px 0 30px;
  background: #0f141a;
  color: #d9e2ec;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 38px;
}

.site-footer h3,
.site-footer h4 {
  color: #ffffff;
}

.site-footer p,
.site-footer a,
.site-footer span {
  color: #aebdcc;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin-top: 15px;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-social {
  margin-top: 18px;
}

.site-footer .social-link {
  color: #ffffff;
  width: fit-content;
  padding: 9px 14px;
}

.footer-bottom {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8fa2b4;
  font-size: 14px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(31, 157, 85, 0.32);
  font-weight: 900;
}

.form-note {
  display: none;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: #eef8f2;
  color: #176a3a;
  font-weight: 650;
}

.form-note.show {
  display: block;
}

@media (max-width: 1080px) {
  .mega-menu-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-panel {
    max-width: 620px;
  }

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

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

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .products-nav-item {
    display: none;
  }

  .mobile-products-accordion {
    display: block;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
  }

  .mobile-products-accordion summary {
    padding: 12px 14px;
    color: var(--brand);
    font-weight: 830;
    list-style: none;
    cursor: pointer;
  }

  .mobile-products-accordion summary::-webkit-details-marker {
    display: none;
  }

  .mobile-products-panel {
    display: grid;
    gap: 3px;
    padding: 0 14px 14px;
  }

  .mobile-products-panel strong {
    margin-top: 12px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 880;
  }

  .mobile-products-panel a {
    padding: 8px 10px;
    border-radius: 10px;
    background: #f7f9fc;
    color: var(--muted);
    font-size: 13px;
  }

  .search-toggle {
    margin-left: auto;
  }

  .mobile-search-link {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow-md);
  }

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

  .nav-links a {
    padding: 12px 14px;
    border-radius: var(--radius);
  }

  .nav-social {
    width: 100%;
    margin-left: 0;
    padding: 10px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .nav-links .social-link {
    width: 100%;
    justify-content: center;
    padding: 12px 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    padding: 86px 0 112px;
  }

  .trust-row,
  .proof-grid,
  .grid.three,
  .grid.two,
  .premium-category-grid,
  .contact-panel,
  .footer-grid,
  .cta-band .container {
    grid-template-columns: 1fr;
  }

  .grid.two {
    gap: 36px;
  }

  .trust-row {
    margin-top: 0;
  }

  .service-card {
    min-height: auto;
  }

  .cta-band .container {
    display: grid;
  }

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

  .detail-layout {
    grid-template-columns: 1fr;
  }

  .sidebar-card {
    position: static;
  }

  .image-panel img {
    min-height: 340px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 30px, 1200px);
  }

  .nav {
    min-height: 70px;
    gap: 10px;
  }

  .brand small {
    font-size: 11px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand {
    gap: 9px;
  }

  .brand > span:last-child {
    max-width: 124px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .search-toggle,
  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .nav-links {
    left: 15px;
    right: 15px;
    top: 70px;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(7, 12, 18, 0.9), rgba(7, 12, 18, 0.72)),
      url("assets/hero-sourcing.webp") center / cover no-repeat;
  }

  .hero-layout {
    padding: 74px 0 80px;
    gap: 28px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-panel {
    padding: 22px;
  }

  .hero-panel h2 {
    font-size: 24px;
  }

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

  .hero p:not(.eyebrow),
  .page-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .section {
    padding: 78px 0;
  }

  .page-hero {
    padding: 76px 0 66px;
  }

  .section-header h2,
  .split-copy h2,
  .page-hero h1 {
    font-size: 36px;
  }

  .field-grid,
  .grid.four {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .btn,
  button.btn {
    width: 100%;
  }

  .trust-row div,
  .card,
  .contact-card,
  .form-card {
    padding: 24px;
  }

  .product-card {
    min-height: auto;
  }

  .topic-list {
    columns: 1;
  }

  .floating-whatsapp {
    display: none;
  }

  .search-overlay {
    align-items: stretch;
    padding: 76px 12px 14px;
  }

  .search-panel {
    max-height: calc(100vh - 90px);
    border-radius: 18px;
  }

  .search-panel-head {
    padding: 20px 18px 14px;
  }

  .search-panel h2 {
    font-size: 24px;
  }

  .search-input-wrap {
    padding: 18px 18px 12px;
  }

  .search-shortcuts {
    padding: 0 18px 16px;
  }

  .search-results {
    padding: 0 18px 20px;
  }

  .search-result {
    grid-template-columns: 58px 1fr;
    gap: 12px;
    padding: 10px;
  }

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

  .search-result-main {
    grid-template-columns: 96px 1fr;
    gap: 12px;
  }

  .search-result-image {
    width: 96px;
    border-radius: 14px;
  }

  .search-result-thumb {
    width: 58px;
    height: 58px;
    border-radius: 12px;
  }

  .search-result-body strong {
    font-size: 15px;
  }

  .search-result-body span {
    font-size: 12px;
  }

  .search-url {
    max-width: 180px;
  }
}

/* July Sourcing 2.0 product-led upgrade */
.hero-2 {
  overflow: hidden;
}

.hero-2 .hero-content h1 {
  max-width: 760px;
}

.hero-product-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(216, 222, 230, 0.8);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(20px);
}

.hero-product-board img,
.factory-trust img,
.category-tile img,
.catalog-card img,
.category-hero-image img,
.product-photo img {
  width: 100%;
  object-fit: contain;
  background: linear-gradient(180deg, #ffffff, #f5f8fc);
}

.hero-product-board img {
  aspect-ratio: 1 / 1;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.hero-note {
  grid-column: 1 / -1;
  display: grid;
  gap: 4px;
  padding: 16px;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--ink), var(--brand-dark));
}

.hero-note span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.factory-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.factory-trust img {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.factory-trust img:first-child {
  grid-row: span 2;
  min-height: 474px;
}

.catalog-grid,
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

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

.catalog-card,
.category-tile {
  overflow: hidden;
  display: grid;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(16, 20, 24, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.catalog-card:hover,
.category-tile:hover {
  transform: translateY(-4px);
  border-color: #c9daf8;
  box-shadow: 0 24px 70px rgba(16, 20, 24, 0.12);
}

.catalog-card figure {
  margin: 0;
  padding: 18px;
  background: linear-gradient(180deg, #ffffff, #f6f9fd);
}

.catalog-card img {
  aspect-ratio: 1 / 1;
}

.catalog-card.cloth-product-card figure {
  padding: 0;
  background: #ffffff;
}

.catalog-card.cloth-product-card img {
  display: block;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: contain;
  background: #ffffff;
}

.product-photo img[src*="/images/products/cloth-care/"] {
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  background: #ffffff;
}

.catalog-card div,
.category-tile div {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.catalog-card span,
.category-tile span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.catalog-card h3,
.category-tile h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.catalog-card p,
.category-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.category-tile img {
  aspect-ratio: 16 / 10;
  padding: 24px;
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

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

.timeline .card {
  padding: 22px;
}

.timeline span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

.faq-wrap {
  width: min(900px, calc(100% - 56px));
}

.faq-wrap details {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.faq-wrap summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 20px;
  font-weight: 820;
}

.faq-wrap p {
  margin: 12px 0 0;
  color: var(--muted);
}

.category-hero .grid {
  align-items: center;
}

.category-hero-image img {
  max-height: 440px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.product-detail-hero {
  padding: 84px 0 56px;
  background:
    radial-gradient(circle at 80% 10%, rgba(11, 92, 255, 0.13), transparent 34%),
    linear-gradient(180deg, #ffffff, #f7f9fc);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.product-photo {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.product-photo img {
  aspect-ratio: 1 / 1;
}

.product-photo img[src*="/images/products/cloth-care/"] {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: contain;
  background: #ffffff;
}

.product-photo img[src*="/images/products/breakfast-appliances/"] {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: contain;
  background: #ffffff;
}

.product-summary h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.product-summary p {
  max-width: 650px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.72;
}

.spec-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0;
}

.spec-pills span {
  padding: 8px 12px;
  border: 1px solid #d9e7ff;
  border-radius: 999px;
  background: #f2f7ff;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 820;
}

.product-badge {
  display: inline-flex;
  width: fit-content;
  margin: 12px 0 2px;
  padding: 9px 12px;
  border: 1px solid #d9e7ff;
  border-radius: 999px;
  background: #f2f7ff;
  color: var(--brand-dark) !important;
  font-size: 13px !important;
  font-weight: 840;
  line-height: 1 !important;
}

.quote-page {
  padding-top: 70px;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: 34px;
  align-items: start;
}

.quote-product-panel {
  display: grid;
  gap: 18px;
}

.quote-product-panel h1 {
  font-size: clamp(42px, 6vw, 76px);
}

.quote-product-panel p {
  margin: 0;
  color: var(--muted);
}

.quote-product-panel figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.quote-product-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #ffffff;
}

.quote-whatsapp-card {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f7fafc);
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: 28px;
}

.quote-form h2 {
  font-size: 28px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 780;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

.quote-form textarea {
  min-height: 120px;
  resize: vertical;
}

@media (max-width: 980px) {
  .catalog-grid,
  .category-grid,
  .timeline,
  .catalogue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail-grid,
  .quote-layout,
  .recommendation-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .factory-trust img:first-child {
    grid-row: auto;
    min-height: 230px;
  }
}

@media (max-width: 640px) {
  .catalog-grid,
  .category-grid,
  .timeline,
  .factory-trust,
  .hero-product-board,
  .catalogue-grid {
    grid-template-columns: 1fr;
  }

  .catalogue-group-head,
  .search-result-meta {
    display: grid;
    gap: 8px;
  }

  .catalogue-tree {
    width: 100%;
  }

  .catalogue-tree.compact-tree {
    grid-template-columns: 1fr;
  }

  .catalogue-tree summary {
    padding: 20px;
  }

  .catalogue-tree summary span {
    font-size: 21px;
  }

  .catalogue-tree summary small {
    margin-left: 0;
  }

  .catalogue-tree-links {
    padding: 0 20px 20px;
  }

  .product-detail-hero {
    padding: 48px 0 34px;
  }

  .product-summary h1 {
    font-size: 42px;
    letter-spacing: -0.02em;
  }

  .catalog-card div,
  .category-tile div {
    padding: 16px;
  }

  .premium-category-card {
    min-height: auto;
    padding: 24px;
  }

  .quote-form {
    padding: 22px;
  }
}

/* Sprint 01 premium UI layer */
:root {
  --sprint-shadow: 0 28px 90px rgba(15, 23, 42, 0.1);
  --sprint-soft-shadow: 0 18px 56px rgba(15, 23, 42, 0.08);
}

.site-header {
  z-index: 120;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(226, 232, 240, 0.78);
}

.nav {
  min-height: 76px;
}

.nav-links {
  gap: 8px;
}

.nav-links a,
.products-menu-trigger {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #26313d;
  font: inherit;
  font-size: 14px;
  font-weight: 760;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active,
.products-menu-trigger:hover,
.products-menu-trigger.active,
.products-nav-item.is-open .products-menu-trigger {
  color: var(--brand);
  background: #eef4ff;
}

.products-nav-item {
  position: static;
  display: inline-flex;
  align-items: center;
  min-height: 76px;
}

.mega-menu {
  position: fixed;
  left: 50%;
  top: 76px;
  z-index: 110;
  width: min(1180px, calc(100vw - 40px));
  padding-top: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -6px) scale(0.99);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.products-nav-item:hover .mega-menu,
.products-nav-item:focus-within .mega-menu,
.products-nav-item.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.mega-menu-shell {
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 0 0 28px 28px;
  background:
    radial-gradient(circle at 10% 0%, rgba(11, 92, 255, 0.08), transparent 28%),
    rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(24px) saturate(1.3);
}

.mega-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.86);
}

.mega-menu-head span {
  display: block;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mega-menu-head strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 19px;
  letter-spacing: -0.01em;
}

.mega-menu-head a {
  color: var(--brand);
  background: #eef4ff;
  font-weight: 850;
}

.mega-menu-inner {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.mega-column {
  min-height: 260px;
  gap: 4px;
  padding: 16px;
  border: 1px solid rgba(226, 232, 240, 0.76);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.mega-column:hover {
  transform: translateY(-2px);
  border-color: #c9daf8;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.mega-column.highlight {
  background:
    radial-gradient(circle at 88% 8%, rgba(25, 167, 184, 0.16), transparent 38%),
    linear-gradient(180deg, #ffffff, #f5fbff);
}

.mega-column a {
  padding: 8px 9px;
  border-radius: 12px;
  color: #5d6876;
  font-size: 13px;
  font-weight: 760;
}

.mega-column .mega-title {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 920;
  line-height: 1.12;
}

.mega-column a:not(.mega-title):hover,
.mega-column a:not(.mega-title):focus-visible {
  color: var(--brand);
  background: #eef4ff;
}

.btn,
button.btn {
  border-radius: 14px;
  font-weight: 850;
  box-shadow: 0 16px 38px rgba(11, 92, 255, 0.2);
}

.btn.secondary {
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

.sprint-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 88px;
  background:
    radial-gradient(circle at 78% 18%, rgba(25, 167, 184, 0.16), transparent 30%),
    radial-gradient(circle at 15% 10%, rgba(11, 92, 255, 0.13), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 58%, #ffffff 100%);
}

.sprint-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(11, 92, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 92, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, black, transparent 82%);
}

.sprint-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(440px, 0.72fr);
  gap: 68px;
  align-items: start;
}

.sprint-hero-copy h1 {
  max-width: 830px;
  font-size: clamp(58px, 7.2vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.sprint-hero-copy {
  padding-top: 62px;
}

.sprint-hero-lead {
  max-width: 690px;
  margin: 28px 0 0;
  color: #536171;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.72;
}

.sprint-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.sprint-trust-chips span {
  padding: 9px 12px;
  border: 1px solid #dce9ff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #415064;
  font-size: 13px;
  font-weight: 820;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.product-wall {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: stretch;
  max-width: 620px;
  margin-left: auto;
}

.product-wall-card,
.product-wall-note {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
  border: 1px solid rgba(226, 232, 240, 0.88);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--sprint-soft-shadow);
  backdrop-filter: blur(20px);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product-wall-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sprint-shadow);
}

.product-wall-card.large {
  grid-row: span 2;
  min-height: 430px;
}

.product-wall-card img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  padding: 10px;
  margin-top: 22px;
  margin-bottom: auto;
}

.product-wall-card.large img {
  height: 330px;
  margin-top: 52px;
  margin-bottom: auto;
}

.product-wall-card span,
.product-wall-card strong,
.product-wall-note p {
  margin-inline: 20px;
}

.product-wall-card span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-wall-card strong {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.1;
}

.product-wall-note {
  min-height: 210px;
  padding: 22px;
  background:
    radial-gradient(circle at 90% 0%, rgba(11, 92, 255, 0.28), transparent 42%),
    linear-gradient(135deg, #101418, #0b5cff);
  color: #ffffff;
}

.product-wall-note span {
  font-size: 64px;
  font-weight: 920;
  line-height: 1;
}

.product-wall-note p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 680;
}

.stats-strip {
  padding: 0 0 46px;
  background: #ffffff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  margin-top: -34px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--sprint-shadow);
}

.stats-grid div {
  padding: 30px;
  border-right: 1px solid var(--line);
}

.stats-grid div:last-child {
  border-right: 0;
}

.stats-grid strong {
  display: block;
  color: var(--ink);
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.035em;
}

.stats-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 760;
}

.sprint-section {
  padding-top: 112px;
}

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

.sprint-category-card {
  min-height: 310px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 0%, rgba(11, 92, 255, 0.08), transparent 34%),
    #ffffff;
  box-shadow: var(--sprint-soft-shadow);
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.sprint-category-card:hover,
.sprint-category-card:focus-visible,
.sprint-product-card:hover,
.solution-mini-grid article:hover,
.process-grid article:hover {
  transform: translateY(-5px);
  border-color: #c9daf8;
  box-shadow: var(--sprint-shadow);
}

.sprint-category-card.featured {
  background:
    radial-gradient(circle at 92% 0%, rgba(31, 157, 85, 0.16), transparent 35%),
    linear-gradient(180deg, #ffffff, #f7fffb);
}

.sprint-category-card span,
.sprint-product-card span {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sprint-category-card h3 {
  font-size: 30px;
}

.sprint-category-card p,
.sprint-split p,
.sprint-product-card li,
.process-grid p,
.solution-mini-grid p {
  color: var(--muted);
}

.sprint-category-card a {
  align-self: end;
  color: var(--brand);
  font-weight: 860;
}

.sprint-solutions {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(11, 92, 255, 0.1), transparent 28%),
    linear-gradient(180deg, #f8fbff, #ffffff);
  border-block: 1px solid rgba(226, 232, 240, 0.76);
}

.sprint-split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1fr);
  gap: 56px;
  align-items: center;
}

.sprint-split h2 {
  font-size: clamp(42px, 5vw, 68px);
  letter-spacing: -0.035em;
}

.solution-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.solution-mini-grid article,
.process-grid article {
  display: grid;
  gap: 12px;
  padding: 26px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--sprint-soft-shadow);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.solution-mini-grid span,
.process-grid span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 950;
}

.solution-mini-grid strong {
  color: var(--ink);
  font-size: 22px;
}

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

.sprint-product-card {
  overflow: hidden;
  display: grid;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--sprint-soft-shadow);
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.sprint-product-card figure {
  margin: 0;
  background: linear-gradient(180deg, #ffffff, #f7fafc);
}

.sprint-product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.sprint-product-card div {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.sprint-product-card h3 {
  font-size: 30px;
}

.sprint-product-card ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
}

.sprint-product-card .quote-btn {
  width: 100%;
  margin-top: 6px;
}

.sprint-process {
  background: #101418;
}

.sprint-process .eyebrow,
.sprint-process h2 {
  color: #ffffff;
}

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

.process-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.process-grid h3 {
  color: #ffffff;
}

.process-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.premium-footer {
  background:
    radial-gradient(circle at 20% 0%, rgba(11, 92, 255, 0.18), transparent 34%),
    #0d1218;
}

.premium-footer h3,
.premium-footer h4,
.premium-footer .footer-bottom {
  color: #ffffff;
}

.premium-footer p,
.premium-footer .footer-links,
.premium-footer .footer-links a,
.premium-footer .footer-links span {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1180px) {
  .mega-menu-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mega-column {
    min-height: auto;
  }

  .sprint-hero-grid,
  .sprint-split {
    grid-template-columns: 1fr;
  }

  .product-wall {
    max-width: 760px;
  }
}

@media (max-width: 920px) {
  .products-nav-item {
    display: none;
  }

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

  .sprint-hero {
    padding-top: 82px;
  }
}

@media (max-width: 640px) {
  .sprint-hero {
    padding: 56px 0 64px;
  }

  .sprint-hero-copy h1 {
    font-size: 48px;
    letter-spacing: -0.03em;
  }

  .sprint-hero-lead {
    font-size: 17px;
  }

  .product-wall,
  .solution-mini-grid,
  .sprint-category-grid,
  .sprint-product-grid,
  .stats-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .product-wall-card.large {
    min-height: auto;
  }

  .stats-grid {
    margin-top: 0;
    border-radius: 22px;
  }

  .stats-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats-grid div:last-child {
    border-bottom: 0;
  }

  .sprint-category-card,
  .sprint-product-card,
  .solution-mini-grid article,
  .process-grid article {
    border-radius: 22px;
  }
}

/* Final Sprint 01 visual overrides */
.sprint-header {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 38px rgba(15, 23, 42, 0.045);
}

.sprint-nav {
  min-height: 72px;
}

.sprint-brand {
  min-width: 148px;
  display: grid;
  gap: 0;
  line-height: 0.94;
}

.sprint-brand .brand-word {
  font-size: 28px;
  font-weight: 920;
}

.sprint-brand small {
  color: #111827;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.36em;
}

.sprint-nav-links {
  gap: 10px;
  margin-left: auto;
  font-size: 13px;
}

.sprint-nav-links > a,
.sprint-nav-links .products-menu-trigger {
  min-height: 72px;
  padding: 0 7px;
  border-radius: 0;
  background: transparent;
  color: #111827;
  font-size: 13px;
}

.sprint-nav-links > a:hover,
.sprint-nav-links > a.active,
.sprint-nav-links .products-menu-trigger:hover,
.products-nav-item.is-open .products-menu-trigger {
  color: var(--brand);
  background: transparent;
}

.sprint-mega {
  top: 72px;
  width: min(1040px, calc(100vw - 48px));
}

.sprint-mega-shell {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr) 295px;
  gap: 0;
  border-radius: 0 0 20px 20px;
  background: rgba(255, 255, 255, 0.99);
}

.mock-hero {
  padding: 58px 0 0;
}

.mock-hero-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1fr);
  gap: 36px;
  min-height: 520px;
  align-items: center;
}

.mock-hero-copy h1 {
  max-width: 640px;
  font-size: clamp(48px, 5.1vw, 74px);
  line-height: 1.03;
}

.mock-hero-copy h1 span {
  color: var(--brand);
}

.mock-hero-lineup {
  width: min(100%, 720px);
  height: auto;
  max-height: 470px;
  object-fit: contain;
}

.mock-stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 20px 0 34px;
}

.mock-category-section,
.mock-trust,
.mock-solutions,
.sprint-section {
  padding-top: 56px;
  padding-bottom: 56px;
}

.mock-solutions {
  margin-top: 32px;
  background:
    radial-gradient(circle at 96% 18%, rgba(11, 92, 255, 0.22), transparent 34%),
    linear-gradient(135deg, #07192d, #0c2b4a);
}

.mock-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.mock-category-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.mock-category-card {
  min-height: 252px;
}

.mock-category-card img {
  width: 100%;
  height: 118px !important;
  aspect-ratio: auto;
  object-fit: contain;
  margin-bottom: 14px;
}

.mock-trust-grid,
.mock-solutions-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.mock-product-grid .sprint-product-card img {
  height: 230px !important;
  aspect-ratio: auto;
  object-fit: contain;
}

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

@media (max-width: 980px) {
  .sprint-nav {
    min-height: 64px;
  }

  .sprint-brand {
    min-width: auto;
  }

  .sprint-nav-links > a,
  .sprint-nav-links .products-menu-trigger {
    min-height: auto;
    width: 100%;
    padding: 13px 0;
  }

  .mock-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .mock-stat-row,
  .mock-trust-grid,
  .mock-solutions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .mock-hero-copy h1 {
    font-size: 42px;
  }

  .mock-stat-row,
  .mock-category-grid,
  .mock-trust-grid,
  .mock-solutions-grid,
  .mock-product-grid {
    grid-template-columns: 1fr;
  }

  .mock-category-card img {
    height: 180px !important;
  }
}

/* Sprint 01 approved mockup fidelity pass */
.sprint-header {
  border-bottom: 1px solid rgba(226, 232, 240, 0.88);
}

.sprint-nav {
  min-height: 70px;
}

.sprint-brand {
  min-width: 150px;
}

.sprint-brand .brand-word {
  font-size: 27px;
  letter-spacing: -0.04em;
}

.sprint-brand small {
  margin-top: 2px;
  font-size: 8px;
  letter-spacing: 0.44em;
}

.sprint-nav-links {
  gap: 18px;
}

.sprint-nav-links > a,
.sprint-nav-links .products-menu-trigger {
  min-height: 70px;
  padding: 0;
  font-size: 12px;
  font-weight: 800;
}

.sprint-nav-links .mobile-only-link {
  display: none;
}

.products-menu-trigger::after {
  width: 6px;
  height: 6px;
}

.sprint-nav-links > a.active::after,
.products-nav-item.is-open .products-menu-trigger::before,
.products-nav-item:hover .products-menu-trigger::before {
  left: 0;
  right: 0;
}

.language-pill {
  min-width: 34px;
  min-height: 34px;
  display: inline-grid;
  place-items: center;
  color: #111827;
  font-size: 11px;
  font-weight: 850;
}

.language-pill::before {
  content: "";
  width: 15px;
  height: 15px;
  margin-right: 6px;
  display: inline-block;
  border: 1.8px solid currentColor;
  border-radius: 999px;
  vertical-align: -3px;
}

.nav-project-btn {
  min-height: 38px;
  padding: 11px 18px;
  border-radius: 6px;
  font-size: 12px;
}

.nav-whatsapp {
  width: 31px;
  height: 31px;
}

.sprint-mega {
  top: 70px;
  width: min(1000px, calc(100vw - 56px));
}

.sprint-mega-shell {
  grid-template-columns: 245px minmax(0, 1fr) 290px;
  border-radius: 0 0 12px 12px;
}

.mega-browse-panel,
.mega-product-panel,
.mega-feature-panel {
  padding: 28px 26px;
}

.mega-browse-panel a {
  min-height: 41px;
  font-size: 12px;
}

.mega-product-list {
  gap: 16px 20px;
}

.mega-product-list a {
  grid-template-columns: 44px minmax(0, 1fr);
  padding: 8px;
}

.mega-product-list span {
  width: 44px;
  height: 44px;
  font-size: 10px;
}

.mega-product-list strong {
  font-size: 15px;
}

.mega-product-list small {
  color: #667085;
  font-size: 11px;
}

.mega-feature-card {
  padding: 16px;
  border-radius: 10px;
}

.mega-feature-card img {
  height: 205px;
  aspect-ratio: auto;
}

.mega-service-row {
  padding: 14px 22px;
}

.mock-hero {
  padding-top: 50px;
}

.mock-hero-grid {
  min-height: 485px;
  grid-template-columns: minmax(0, 0.74fr) minmax(520px, 1fr);
}

.mock-hero-copy h1 {
  font-size: clamp(46px, 4.6vw, 68px);
  letter-spacing: -0.055em;
}

.mock-hero-copy .sprint-hero-lead {
  max-width: 470px;
  font-size: 16px;
}

.hero-actions .btn {
  min-height: 43px;
  padding: 12px 19px;
  border-radius: 6px;
  font-size: 12px;
}

.mock-hero-visual {
  min-height: 445px;
}

.mock-hero-lineup {
  width: min(100%, 690px);
  max-height: 430px;
}

.mock-stat-row {
  padding-top: 8px;
  padding-bottom: 30px;
}

.mock-stat-row div::before {
  width: 29px;
  height: 29px;
  border-radius: 8px;
}

.mock-stat-row strong {
  font-size: 24px;
}

.mock-category-section {
  padding-top: 44px;
  padding-bottom: 52px;
}

.mock-section-head {
  margin-bottom: 22px;
}

.mock-section-head h2 {
  font-size: clamp(28px, 2.7vw, 38px);
}

.mock-category-card {
  min-height: 218px;
  padding: 14px;
  border-radius: 10px;
}

.mock-category-card img {
  height: 116px !important;
  border-radius: 8px;
}

.mock-category-card h3 {
  font-size: 14px;
}

.mock-category-card span {
  margin-top: 5px;
  font-size: 11px;
}

.mock-trust {
  padding-top: 46px;
  padding-bottom: 48px;
}

.mock-trust-grid article {
  min-height: 132px;
  padding: 20px;
  border-radius: 10px;
}

.mock-solutions {
  margin-top: 18px;
  padding: 46px 0 48px;
}

.mock-solutions-grid article {
  min-height: 108px;
  border-radius: 10px;
}

.mock-product-grid .sprint-product-card {
  border-radius: 10px;
}

.mock-product-grid .sprint-product-card img {
  height: 220px !important;
}

.premium-footer {
  border-radius: 0;
}

@media (max-width: 980px) {
  .sprint-nav-links .mobile-only-link {
    display: block;
  }

  .language-pill,
  .nav-project-btn {
    display: none;
  }

  .sprint-nav-links.open {
    background: #07111f;
    color: #ffffff;
  }

  .sprint-nav-links.open > a,
  .sprint-nav-links.open summary,
  .sprint-nav-links.open .mobile-products-panel a,
  .sprint-nav-links.open .mobile-products-panel strong,
  .sprint-nav-links.open .mobile-search-link {
    color: #ffffff;
  }

  .sprint-nav-links.open > a.active {
    color: #8db9ff;
  }

  .sprint-nav-links.open .mobile-products-accordion {
    border-color: rgba(255, 255, 255, 0.12);
  }

  .sprint-nav-links.open .mobile-products-accordion {
    background: transparent !important;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
  }

  .sprint-nav-links.open .mobile-products-accordion summary {
    padding: 13px 0;
    color: #ffffff !important;
  }

  .sprint-nav-links.open .mobile-products-panel {
    padding: 0 0 12px 14px;
    background: transparent !important;
  }

  .sprint-nav-links.open .mobile-products-panel strong {
    color: rgba(255, 255, 255, 0.72) !important;
  }

  .sprint-nav-links.open .mobile-products-panel a {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.88) !important;
    border-radius: 0;
  }

  .sprint-nav-links.open .nav-whatsapp {
    width: 44px;
    margin-top: 14px;
  }
}

/* Dark homepage mockup implementation */
body.dark-home {
  color: #f7fbff;
  background:
    radial-gradient(circle at 68% 8%, rgba(0, 224, 229, 0.12), transparent 30%),
    linear-gradient(180deg, #020b16 0%, #031424 42%, #061b2d 100%);
}

.dark-site-header {
  position: sticky;
  top: 0;
  z-index: 140;
  border-bottom: 1px solid rgba(83, 199, 221, 0.16);
  background: rgba(3, 13, 24, 0.92);
  backdrop-filter: blur(20px);
}

.dark-nav-shell {
  width: min(1520px, calc(100% - 72px));
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 26px;
}

.dark-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #ffffff;
  min-width: 355px;
}

.dark-brand-mark {
  width: 66px;
  height: 52px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.dark-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dark-brand strong {
  display: block;
  font-size: 24px;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.dark-brand small {
  display: block;
  margin-top: 7px;
  color: #00f4e6;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dark-nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
  color: #d7e2ed;
}

.dark-nav-link,
.dark-nav-trigger {
  min-height: 88px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  position: relative;
  border: 0;
  background: transparent;
  color: #d7e2ed !important;
  font: inherit;
  font-size: 16px;
  font-weight: 760;
  white-space: nowrap;
  opacity: 1 !important;
  cursor: pointer;
}

.dark-nav-link:hover,
.dark-nav-trigger:hover,
.dark-nav-item.is-open .dark-nav-trigger {
  color: #00f4e6 !important;
}

.dark-nav-link[href="/"] {
  color: #00f4e6 !important;
}

.dark-nav-link[href="/"]::after,
.dark-nav-item.is-open .dark-nav-trigger::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 99px;
  background: #00f4e6;
}

.nav-icon {
  display: inline-grid;
  place-items: center;
  color: #00dbe8;
  font-size: 25px;
  line-height: 1;
}

.dark-nav-trigger::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 2px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.dark-nav-item {
  position: relative;
  min-height: 88px;
  display: inline-flex;
  align-items: center;
}

.dark-dropdown {
  position: absolute;
  top: 88px;
  left: 50%;
  z-index: 150;
  min-width: 310px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

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

.dark-dropdown-safe {
  height: 32px;
}

.dark-dropdown-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(0, 224, 229, 0.22);
  border-radius: 18px;
  background: rgba(3, 19, 35, 0.98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.dark-dropdown-card a {
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  border-radius: 12px;
  color: #eaf6ff;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.dark-dropdown-card a:hover,
.dark-dropdown-card a:focus-visible {
  color: #00f4e6;
  background: rgba(0, 224, 229, 0.1);
  transform: translateX(3px);
}

.dark-dropdown-card strong {
  font-size: 15px;
}

.dark-dropdown-card span {
  color: #9eb2c4;
  font-size: 13px;
  line-height: 1.35;
}

.dark-whatsapp {
  display: grid;
  grid-template-columns: 60px max-content;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  color: #ffffff !important;
  opacity: 1 !important;
  white-space: nowrap;
}

.dark-whatsapp > span {
  grid-row: span 2;
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  border: 4px solid #ffffff;
  border-radius: 999px;
  background: #37d46f;
  color: #ffffff;
  font-size: 24px;
  box-shadow: 0 0 28px rgba(55, 212, 111, 0.28);
}

.dark-whatsapp strong {
  font-size: 16px;
}

.dark-whatsapp small {
  color: #d5e4ed;
  font-size: 14px;
}

.dark-menu-toggle,
.dark-mobile-accordion {
  display: none;
}

.dark-home-main {
  width: min(1520px, calc(100% - 76px));
  margin: 0 auto;
  padding: 20px 0 26px;
}

.dark-hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.84fr) minmax(560px, 1fr);
  gap: 48px;
  align-items: center;
  min-height: 450px;
}

.dark-kicker {
  margin: 0 0 18px;
  color: #00f4e6;
  font-size: 20px;
  font-weight: 800;
}

.dark-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(48px, 4.9vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.dark-hero h1 span {
  color: #00e5e8;
}

.dark-hero-lead {
  max-width: 620px;
  margin: 26px 0 28px;
  color: #c8d4df;
  font-size: 19px;
  line-height: 1.72;
}

.dark-email-cta {
  width: min(560px, 100%);
  display: grid;
  grid-template-columns: 1fr 205px;
  gap: 10px;
  padding: 7px;
  border: 1px solid rgba(0, 224, 229, 0.22);
  border-radius: 12px;
  background: rgba(5, 24, 42, 0.86);
}

.dark-email-cta label {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 14px;
  color: #00f4e6;
}

.dark-email-cta input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #ffffff;
  font: inherit;
  font-size: 15px;
}

.dark-email-cta input::placeholder {
  color: #7d8da0;
}

.dark-email-cta button {
  border: 0;
  border-radius: 9px;
  background: linear-gradient(135deg, #16d5e2, #0d8fb2);
  color: #ffffff;
  font-size: 16px;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(0, 208, 226, 0.2);
}

.dark-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 24px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 780;
}

.dark-trust-row span::before {
  content: "♢";
  margin-right: 8px;
  color: #00f4e6;
}

.dark-product-showcase {
  position: relative;
  min-height: 428px;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  background: transparent;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.26);
}

.dark-hero-banner {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.dark-service-board {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr 1fr 0.96fr;
  gap: 0;
  margin-top: 22px;
  padding: 26px;
  border: 1px solid rgba(0, 224, 229, 0.16);
  border-radius: 20px;
  background: rgba(5, 24, 42, 0.78);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.dark-service-board > article {
  min-width: 0;
  padding: 0 26px;
  border-right: 1px solid rgba(143, 179, 202, 0.18);
}

.dark-service-board > article:first-child {
  padding-left: 0;
}

.dark-service-board > article:nth-child(5) {
  border-right: 0;
  padding-right: 0;
}

.dark-section-title {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #00f4e6;
}

.dark-section-title span {
  color: #00f4e6;
  font-size: 28px;
}

.dark-section-title h2 {
  margin: 0;
  color: #00f4e6;
  font-size: 18px;
}

.dark-about-card p,
.dark-number-list span,
.dark-icon-list span,
.dark-factory-tour p {
  color: #b9c8d6;
  font-size: 14px;
  line-height: 1.5;
}

.dark-metric-list {
  display: grid;
  gap: 15px;
  margin: 18px 0 22px;
}

.dark-metric-list div {
  display: grid;
  gap: 2px;
}

.dark-metric-list strong {
  color: #00f4e6;
  font-size: 19px;
}

.dark-metric-list span {
  color: #c3d0dc;
  font-size: 13px;
}

.dark-outline-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid rgba(0, 224, 229, 0.35);
  border-radius: 8px;
  color: #00f4e6;
  font-weight: 850;
}

.dark-number-list {
  counter-reset: sourcing-step;
  display: grid;
  gap: 16px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.dark-number-list li {
  counter-increment: sourcing-step;
  position: relative;
  padding-left: 50px;
}

.dark-number-list li::before {
  content: counter(sourcing-step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid #00f4e6;
  border-radius: 999px;
  color: #00f4e6;
  font-size: 12px;
}

.dark-number-list strong,
.dark-icon-list strong {
  display: block;
  color: #ffffff;
  font-size: 15px;
}

.dark-icon-list {
  display: grid;
  gap: 20px;
  margin-top: 22px;
}

.dark-icon-list div {
  position: relative;
  padding-left: 42px;
}

.dark-icon-list div::before {
  content: "✧";
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  color: #d9ecf4;
}

.factory-video-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 24px;
}

.factory-video-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.factory-video-thumb span {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #ffffff;
  color: #041626;
  transform: translate(-50%, -50%);
  font-size: 22px;
}

.dark-factory-tour h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 22px;
}

.dark-factory-tour a {
  display: inline-flex;
  gap: 14px;
  margin-top: 12px;
  color: #00f4e6;
  font-weight: 850;
}

.dark-bottom-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
  padding: 18px 0;
  border: 1px solid rgba(143, 179, 202, 0.14);
  border-radius: 13px;
}

.dark-bottom-stats div {
  display: grid;
  gap: 2px;
  padding: 0 34px;
  border-right: 1px solid rgba(143, 179, 202, 0.18);
}

.dark-bottom-stats div:last-child {
  border-right: 0;
}

.dark-bottom-stats strong {
  color: #00f4e6;
  font-size: 28px;
  line-height: 1;
}

.dark-bottom-stats span {
  color: #c3d0dc;
  font-size: 13px;
}

body.dark-home .site-footer,
body.dark-home .premium-footer {
  display: none;
}

body.dark-home .floating-whatsapp {
  display: none;
}

@media (max-width: 1380px) and (min-width: 981px) {
  .dark-nav-shell {
    width: min(100% - 32px, 1240px);
    gap: 18px;
  }

  .dark-brand {
    min-width: 260px;
    gap: 12px;
  }

  .dark-brand-mark {
    width: 56px;
    height: 46px;
  }

  .dark-brand strong {
    font-size: 19px;
  }

  .dark-brand small {
    font-size: 8px;
  }

  .dark-nav-links {
    gap: 14px;
  }

  .dark-nav-link,
  .dark-nav-trigger {
    gap: 6px;
    font-size: 14px;
  }

  .nav-icon {
    font-size: 19px;
  }

  .dark-whatsapp {
    grid-template-columns: 46px max-content;
    column-gap: 9px;
  }

  .dark-whatsapp > span {
    width: 42px;
    height: 42px;
    border-width: 3px;
    font-size: 19px;
  }

  .dark-whatsapp strong {
    font-size: 14px;
  }

  .dark-whatsapp small {
    display: none;
  }
}

@media (max-width: 1280px) {
  .dark-nav-shell,
  .dark-home-main {
    width: min(1180px, calc(100% - 48px));
  }

  .dark-brand {
    min-width: 260px;
    gap: 12px;
  }

  .dark-nav-links {
    gap: 12px;
  }

  .dark-service-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 0;
  }

  .dark-service-board > article {
    border-right: 0;
    padding: 0 24px;
  }

  .dark-service-board > article:nth-child(odd) {
    padding-left: 0;
    border-right: 1px solid rgba(143, 179, 202, 0.18);
  }

  .dark-service-board > article:nth-child(even) {
    padding-right: 0;
  }

  .dark-factory-tour {
    grid-column: span 2;
  }
}

@media (max-width: 980px) {
  .level-category-browser,
  .level-category-preview {
    grid-template-columns: 1fr;
  }

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

  .level-category-preview {
    min-height: auto;
  }

  .dark-nav-shell {
    width: min(100% - 32px, 720px);
    min-height: 78px;
  }

  .dark-brand {
    min-width: auto;
  }

  .dark-brand-mark {
    width: 50px;
    height: 42px;
  }

  .dark-brand strong {
    font-size: 19px;
  }

  .dark-brand small {
    font-size: 8px;
  }

  .dark-menu-toggle {
    display: block;
    margin-left: auto;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
  }

  .dark-nav-links {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    align-items: stretch;
    padding: 16px;
    border: 1px solid rgba(0, 224, 229, 0.2);
    border-radius: 14px;
    background: #03111f;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  }

  .dark-nav-links.open {
    display: grid;
    gap: 6px;
  }

  .dark-nav-link,
  .dark-nav-trigger,
  .dark-whatsapp {
    min-height: auto;
    width: 100%;
    padding: 12px;
    border-radius: 10px;
  }

  .dark-nav-link[href="/"]::after,
  .dark-nav-item,
  .dark-nav-item.is-open .dark-nav-trigger::before,
  .dark-nav-trigger,
  .dark-dropdown {
    display: none;
  }

  .dark-mobile-accordion {
    display: grid;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .dark-mobile-accordion summary {
    padding: 13px 12px;
    color: #ffffff;
    font-weight: 850;
    cursor: pointer;
    list-style: none;
  }

  .dark-mobile-accordion summary::-webkit-details-marker {
    display: none;
  }

  .dark-mobile-accordion a {
    padding: 10px 26px;
    color: rgba(255, 255, 255, 0.82);
  }

  .dark-whatsapp {
    grid-template-columns: 44px max-content;
    margin-top: 8px;
  }

  .dark-whatsapp > span {
    width: 42px;
    height: 42px;
    border-width: 3px;
  }

  .dark-home-main {
    width: min(100% - 32px, 720px);
  }

  .dark-hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 30px;
  }

  .dark-product-showcase {
    min-height: 360px;
    width: 100%;
  }

  .dark-service-board {
    grid-template-columns: 1fr;
  }

  .dark-service-board > article,
  .dark-service-board > article:nth-child(odd),
  .dark-service-board > article:nth-child(even) {
    padding: 0;
    border-right: 0;
  }

  .dark-factory-tour {
    grid-column: auto;
  }

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

@media (max-width: 640px) {
  .level-category-section {
    padding-top: 36px;
  }

  .level-category-list {
    grid-template-columns: 1fr;
  }

  .level-category-preview {
    padding: 18px;
    gap: 20px;
    border-radius: 14px;
  }

  .level-category-image {
    min-height: 230px;
  }

  .level-category-copy h2 {
    font-size: 30px;
  }

  .dark-brand span:not(.dark-brand-mark) {
    display: none;
  }

  .dark-hero h1 {
    font-size: 42px;
  }

  .dark-hero-lead {
    font-size: 16px;
  }

  .dark-email-cta {
    grid-template-columns: 1fr;
  }

  .dark-email-cta button {
    min-height: 48px;
  }

  .dark-product-showcase {
    min-height: 280px;
    border-radius: 18px;
  }

  .dark-bottom-stats {
    grid-template-columns: 1fr;
  }

  .dark-bottom-stats div {
    padding: 16px 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(143, 179, 202, 0.18);
  }
}
