@import url('./gawangpinas-design-system.css');

/* ---------- Font: Inter (Google Fonts CDN — no local @font-face needed) ---------- */
/* Inter is loaded via <link> in HTML with font-display:swap. */

.material-symbols-outlined,
.material-icons,
.material-icons-round {
  font-family: 'Material Symbols Outlined', sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga';
}

/* ---------- Design Tokens ---------- */
:root {
  /* Brand */
  --primary: var(--gp-primary);
  --primary-dark: var(--gp-primary-hover);
  --primary-deep: var(--gp-primary-active);
  --primary-soft: var(--gp-primary-light);
  --primary-glow: var(--gp-primary-glow);

  /* Subsite Identifier Tokens */
  --subsite-accent: var(--gp-primary);
  --subsite-badge-bg: var(--gp-primary-light);
  --subsite-badge-text: var(--gp-primary);
  --subsite-badge-border: var(--gp-primary-border);

  /* Neutral */
  --navy: var(--gp-navy);
  --slate: var(--gp-slate);
  --ink: var(--gp-text-main);
  --body: var(--gp-text-secondary);
  --muted: var(--gp-text-muted);
  --line: var(--gp-border);
  --line-soft: var(--gp-surface-2);

  /* Accents */
  --amber: var(--gp-warning);
  --gold: var(--gp-warning-text);
  --green: var(--gp-success);
  --emerald: var(--gp-success);
  --sky: var(--gp-info);
  --sky-soft: var(--gp-info-bg);
  --violet: var(--gp-subsite-admin);
  --red: var(--gp-danger);

  /* Surfaces */
  --bg: var(--gp-surface);
  --bg-soft: var(--gp-background);
  --bg-blue: var(--gp-primary-light);
  --bg-navy: var(--gp-navy);

  /* Typography */
  --font-body: var(--gp-font-family);
  --font-heading: var(--gp-font-family);

  /* Strict Anti-Bubble Radii Ladder */
  --r-xs: var(--gp-radius-xs);
  --r-sm: var(--gp-radius-sm);
  --r-md: var(--gp-radius-md);
  --r-lg: var(--gp-radius-lg);
  --r-xl: var(--gp-radius-xl);
  --r-full: var(--gp-radius-full);

  /* Natural Depth Shadows */
  --shadow-sm: var(--gp-shadow-sm);
  --shadow-md: var(--gp-shadow-card);
  --shadow-lg: var(--gp-shadow-card-hover);
  --shadow-glow: var(--gp-shadow-xs);

  /* Layout */
  --container: 1180px;
  --header-h: 76px;

  /* Motion Budget */
  --t-fast: var(--gp-transition-fast);
  --t: var(--gp-transition-normal);
  --t-spring: var(--gp-transition-smooth);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  width: 100%;
  max-width: 100%;
}

body.nav-is-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--ink);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
  word-break: break-word;
}

h1 { font-size: clamp(32px, 4vw, 44px); }
h2 { font-size: clamp(24px, 3vw, 32px); }
h3 { font-size: 21px; }
h4 { font-size: 17px; }

p,
span,
a,
li,
label {
  overflow-wrap: anywhere;
}

p {
  margin: 0 0 1rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--t);
}

a:hover {
  color: var(--primary-dark);
}

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

ul {
  list-style: none;
}

::selection {
  background: var(--primary);
  color: #fff;
}

:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Layout Utilities ---------- */
.container {
  width: min(var(--container), 100% - 32px);
  margin-inline: auto;
}

@media (max-width: 768px) {
  .container {
    width: 90%;
  }
}

.section {
  padding: 60px 20px;
}

.section--soft {
  background: var(--bg-soft);
  padding: 60px 20px;
}

.section--blue {
  background: var(--bg-blue);
  padding: 60px 20px;
}

.section--navy {
  color: #cbd5e1;
  background-color: #0f172a;
  background: radial-gradient(ellipse at 50% 0%, #1e3a8a 0%, #0f172a 75%);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.section--navy::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.6;
}

.section--navy .section-title {
  color: #fff;
}

.section--navy .section-sub {
  color: #aebdd1;
}

.hero-grad {
  color: #ffffff;
  font-weight: 800;
  display: inline-block;
}

.section-title {
  font-size: clamp(28px, 3.8vw, 42px);
  margin-bottom: 14px;
  line-height: 1.18;
  letter-spacing: -0.025em;
  word-break: normal;
  overflow-wrap: break-word;
}

@media (min-width: 992px) {
  .section-title--desktop-nowrap {
    white-space: nowrap;
  }
}

@media (max-width: 991px) {
  .section-title,
  .section-title--desktop-nowrap {
    white-space: normal !important;
    font-size: clamp(24px, 6vw, 32px);
  }
}

.section-title .grad {
  color: var(--primary);
  font-weight: 700;
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 38px;
  min-height: 38px;
  padding: 0 var(--gp-space-4);
  border-radius: var(--gp-radius-md);
  font-size: var(--gp-font-size-base);
  font-weight: var(--gp-font-semibold);
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background-color var(--gp-transition-fast),
    border-color var(--gp-transition-fast),
    color var(--gp-transition-fast),
    box-shadow var(--gp-transition-fast),
    transform var(--gp-transition-fast);
  white-space: nowrap;
  user-select: none;
  outline: none;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
  box-shadow: var(--shadow-md);
  color: #fff;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  transform: translateY(-2px);
}

.btn--light {
  background: #fff;
  color: var(--primary-dark);
  box-shadow: var(--shadow-md);
}

.btn--light:hover {
  transform: translateY(-2px);
  color: var(--primary-dark);
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.btn--outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn--amber {
  background: var(--gold);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn--amber:hover {
  transform: translateY(-2px);
  background: #b45309;
  box-shadow: var(--shadow-md);
  color: #fff;
}

.btn--lg {
  height: 46px;
  min-height: 46px;
  padding: 0 var(--gp-space-6);
  font-size: var(--gp-font-size-md);
}

.btn--sm {
  height: 32px;
  min-height: 32px;
  padding: 0 var(--gp-space-3);
  font-size: var(--gp-font-size-sm);
  border-radius: var(--gp-radius-sm);
}

/* ---------- Cards ---------- */
.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}

/* ---------- Announcement Bar ---------- */

.announce {
  position: relative;
  background: linear-gradient(90deg, var(--primary-deep), var(--primary) 45%, var(--sky));
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  padding: 10px 48px;
}

.announce a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.announce a:hover {
  color: var(--amber);
}

.announce .spark {
  margin-right: 4px;
}

.announce__close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.14);
  border: none;
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background var(--t);
}

.announce__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ---------- Header ---------- */
.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-md);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  flex-shrink: 0;
}

.brand__logo {
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  max-width: 42px;
  max-height: 42px;
  flex-shrink: 0;
  border-radius: 11px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand__logo img,
.brand__logo svg {
  width: 42px !important;
  height: 42px !important;
  max-width: 42px !important;
  max-height: 42px !important;
  object-fit: contain;
  display: block;
}

.brand:hover .brand__logo {
  transform: rotate(-4deg) scale(1.04);
}

.brand__name {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.brand__name small {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav .nav-list,
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
  white-space: nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a.nav-link,
.main-nav > ul > li > a {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: var(--r-sm);
  color: var(--body);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: color var(--t), background var(--t);
  text-decoration: none;
}

.main-nav a.nav-link:hover,
.main-nav > ul > li > a:hover,
.main-nav a.is-active {
  color: var(--primary);
  background: var(--primary-soft);
}

/* Nav Dropdowns */
.nav-dropdown {
  position: relative;
}

.nav-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: var(--r-sm);
  color: var(--body);
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all var(--t);
  font-family: inherit;
  white-space: nowrap;
}

.nav-dropdown__toggle:hover,
.nav-dropdown.is-open .nav-dropdown__toggle {
  color: var(--primary);
  background: var(--primary-soft);
}

.nav-dropdown__chevron {
  width: 14px;
  height: 14px;
  transition: transform var(--t);
  color: var(--muted);
}

.nav-dropdown:hover .nav-dropdown__chevron,
.nav-dropdown.is-open .nav-dropdown__chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 270px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: 0 16px 36px -4px rgba(15, 23, 42, 0.14);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--t), transform var(--t), visibility var(--t);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  color: var(--ink);
  text-decoration: none;
  transition: all var(--t);
  box-sizing: border-box;
}

.nav-dropdown__link:hover {
  background: var(--bg-soft);
  color: var(--primary);
}

.nav-dropdown__icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--bg-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--t);
}

.nav-dropdown__link:hover .nav-dropdown__icon {
  background: var(--primary-soft);
  color: var(--primary);
  transform: scale(1.05);
}

.nav-dropdown__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}

.nav-dropdown__title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}

.nav-dropdown__link:hover .nav-dropdown__title {
  color: var(--primary);
}

.nav-dropdown__desc {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.3;
  white-space: normal;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  width: 44px;
  height: 44px;
  cursor: pointer;
  place-items: center;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
  stroke: var(--ink);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(37, 99, 235, 0.16), transparent 60%),
    radial-gradient(700px 420px at -10% 110%, rgba(16, 185, 129, 0.12), transparent 60%),
    linear-gradient(180deg, var(--bg-blue) 0%, var(--bg) 100%);
  padding: 96px 0 72px;
}

.hero--wireframe {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 80px 0 72px;
  border-bottom: 1px solid var(--line);
}


.hero__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-radius: var(--r-full);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 22px;
}

.hero__badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.18);
}

.hero h1 {
  font-size: clamp(34px, 5.2vw, 60px);
  line-height: 1.08;
  margin-bottom: 22px;
}

.hero h1 .grad {
  color: var(--primary);
  font-weight: 800;
}

.hero__lead {
  font-size: 18px;
  color: var(--body);
  max-width: 560px;
  margin-bottom: 30px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 42px;
}

.hero__chips a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 15px;
  border-radius: var(--r-full);
  background: #fff;
  border: 1px solid var(--line);
  color: var(--slate);
  font-size: 13.5px;
  font-weight: 600;
  transition: all var(--t);
}

.hero__chips a:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.hero__chips svg {
  width: 15px;
  height: 15px;
  color: var(--primary);
}

/* Hero stats */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  max-width: 620px;
}

.stat__num {
  font-size: 30px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.stat__num em {
  font-style: normal;
  color: var(--primary);
}

.stat__label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 3px;
}


.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.25);
}

/* Hero visual */
.hero__visual {
  position: relative;
}

.hero__mock {
  position: relative;
  background: linear-gradient(160deg, var(--primary-deep), var(--primary) 55%, var(--sky));
  border-radius: 28px;
  padding: 34px 30px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero__mock::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 65%);
  top: -120px;
  right: -100px;
}

.mock__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.mock__top .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.mock__title {
  font-size: 15px;
  font-weight: 800;
}

.mock__title small {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  opacity: 0.75;
}

.mock__kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.mock__kpi {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 14px;
  backdrop-filter: blur(4px);
}

.mock__kpi b {
  display: block;
  font-size: 20px;
  font-weight: 800;
}

.mock__kpi span {
  font-size: 11.5px;
  opacity: 0.85;
  font-weight: 600;
}

.mock__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 10px;
  font-size: 13px;
  position: relative;
  z-index: 1;
}

.mock__row b {
  font-weight: 700;
}

.mock__row .bar {
  width: 44%;
  height: 7px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
}

.mock__row .bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--amber), #fbbf24);
}

.mock__pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  color: var(--ink);
  border-radius: var(--r-full);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  position: absolute;
  z-index: 2;
  white-space: nowrap;
}

.mock__pill svg {
  width: 16px;
  height: 16px;
}

.mock__pill--readiness {
  top: 26px;
  left: -30px;
  animation: floaty 5s ease-in-out infinite;
}

.mock__pill--b2b {
  bottom: 64px;
  right: -24px;
  animation: floaty 6s ease-in-out 0.8s infinite;
}

.mock__pill--ai {
  bottom: -18px;
  left: 40px;
  animation: floaty 5.5s ease-in-out 0.4s infinite;
  color: var(--violet);
}

@keyframes floaty {

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

  50% {
    transform: translateY(-9px);
  }
}



/* ---------- Trust Bar ---------- */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  padding: 26px 0;
}

.trust__inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.trust__label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.trust__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 34px;
}

.trust__logos span {
  font-weight: 800;
  font-size: 18px;
  color: #334155;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--t);
}

.trust__logos a:hover span {
  color: var(--primary);
}

.trust__logos svg {
  width: 20px;
  height: 20px;
}

/* ---------- About ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__copy .section-title {
  margin-bottom: 18px;
}

.about__copy>p {
  font-size: 16.5px;
}

.about__mission {
  background: linear-gradient(160deg, var(--primary-deep), var(--primary));
  color: #fff;
  border-radius: var(--r-lg);
  padding: 26px 28px;
  margin-top: 28px;
  position: relative;
  overflow: hidden;
}

.about__mission::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 65%);
  right: -50px;
  bottom: -60px;
}

.about__mission b {
  display: block;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 8px;
}

.about__mission p {
  font-size: 16px;
  margin: 0;
  position: relative;
  z-index: 1;
}

.about__values {
  display: grid;
  gap: 16px;
}

.value {
  display: flex;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-spring), box-shadow var(--t), border-color var(--t);
}

.value:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.25);
}

.value__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--primary);
}

.value__icon svg {
  width: 26px;
  height: 26px;
}

.value--green .value__icon {
  background: #ecfdf5;
  color: var(--green);
}

.value--amber .value__icon {
  background: #fffbeb;
  color: var(--gold);
}

.value h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.value p {
  font-size: 14.5px;
  margin: 0;
}

/* ---------- Features Grid ---------- */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-spring), box-shadow var(--t), border-color var(--t);
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.28);
}

.feature__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.feature__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--primary);
  flex-shrink: 0;
}

.feature__header .feature__icon {
  margin-bottom: 0;
}

.feature__icon svg {
  width: 24px;
  height: 24px;
}

.feature--green .feature__icon {
  background: #ecfdf5;
  color: var(--green);
}

.feature--amber .feature__icon {
  background: #fffbeb;
  color: var(--gold);
}

.feature--sky .feature__icon {
  background: var(--sky-soft);
  color: var(--sky);
}

.feature--violet .feature__icon {
  background: #f5f3ff;
  color: var(--violet);
}

.feature--red .feature__icon {
  background: #fff1f2;
  color: var(--red);
}

.feature h3,
.feature__header h3 {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

.feature__svg {
  width: 26px;
  height: 26px;
  color: var(--primary);
  flex-shrink: 0;
}

.feature--amber .feature__svg {
  color: var(--gold);
}

.feature--green .feature__svg {
  color: var(--green);
}

.feature--sky .feature__svg {
  color: var(--sky);
}

.feature--violet .feature__svg {
  color: var(--violet);
}

.feature--red .feature__svg {
  color: var(--red);
}

.feature p {
  font-size: 14.5px;
  color: var(--muted);
  margin: 10px 0 14px;
  flex: 1;
  line-height: 1.6;
}

.feature__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
}

.feature__more svg {
  width: 15px;
  height: 15px;
  transition: transform var(--t);
}

.feature:hover .feature__more svg {
  transform: translateX(4px);
}

.feature__tag {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: var(--primary-soft);
  padding: 4px 10px;
  border-radius: var(--r-full);
}

.feature__tag--new {
  background: #ecfdf5;
  color: #047857;
}

.feature__tag--ai {
  background: #f5f3ff;
  color: var(--violet);
}

.feature__tag--hot {
  background: #fff1f2;
  color: var(--red);
}


/* ---------- Role Split Sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split--flip .split__media {
  order: 2;
}

.split--flip .split__copy {
  order: 1;
}

.split__media {
  position: relative;
}

.legacy-role-card {
  background: linear-gradient(160deg, var(--navy), var(--slate));
  border-radius: var(--r-xl);
  padding: 38px 32px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.legacy-role-card h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 10px;
}

.legacy-role-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14.5px;
  margin-bottom: 22px;
}

.role-card__list {
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

.role-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--body, #334155);
  line-height: 1.5;
}

.role-card__list svg {
  width: 18px;
  height: 18px;
  color: var(--emerald, #10b981);
  flex-shrink: 0;
  margin-top: 2px;
}

.role-card--green .role-card__list svg {
  color: var(--emerald, #10b981);
}

.role-card--amber .role-card__list svg {
  color: var(--emerald, #10b981);
}

.role-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.role-card__links a {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary, #2563eb);
  background: var(--primary-soft, #eff6ff);
  border: 1px solid rgba(37, 99, 235, 0.2);
  padding: 8px 16px;
  border-radius: var(--r-sm, 8px);
  transition: all var(--t);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.role-card__links a:hover {
  background: var(--primary, #2563eb);
  color: #fff;
  border-color: var(--primary, #2563eb);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.split__copy h3 {
  font-size: 27px;
  margin-bottom: 14px;
}

.split__copy>p {
  font-size: 16px;
}

.checklist {
  display: grid;
  gap: 12px;
  margin: 22px 0 28px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--slate);
}

.checklist__check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ecfdf5;
  color: var(--green);
  display: grid;
  place-items: center;
  margin-top: 1px;
}

.checklist__check svg {
  width: 14px;
  height: 14px;
}

.split__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- B2B Section ---------- */
.b2b__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.b2b__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-spring), box-shadow var(--t), border-color var(--t);
  display: block;
}

.b2b__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(16, 185, 129, 0.3);
}

.b2b__card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #ecfdf5;
  color: var(--green);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.b2b__card__icon svg {
  width: 26px;
  height: 26px;
}

.b2b__card--amber .b2b__card__icon {
  background: #fffbeb;
  color: var(--gold);
}

.b2b__card--sky .b2b__card__icon {
  background: var(--sky-soft);
  color: var(--sky);
}

.b2b__card--violet .b2b__card__icon {
  background: #f5f3ff;
  color: var(--violet);
}

.b2b__card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.b2b__card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.b2b__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 36px;
  position: relative;
  z-index: 1;
}

.b2b__stat {
  position: relative;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 26px 20px 22px;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s, box-shadow 0.25s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.b2b__stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: #60a5fa;
  transition: transform 0.2s ease, background 0.2s;
}

.b2b__stat:hover .b2b__stat-icon {
  transform: scale(1.1);
  background: rgba(37, 99, 235, 0.25);
}

.b2b__stat b {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 6px;
}

.b2b__stat span.stat__title {
  display: block;
  font-size: 14px;
  color: #e2e8f0;
  font-weight: 700;
  margin-bottom: 3px;
}

.b2b__stat small.stat__sub {
  display: block;
  font-size: 12px;
  color: #cbd5e1;
  font-weight: 500;
}

/* Trust Bar beneath Stats */
.b2b__trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 28px;
  position: relative;
  z-index: 1;
}

.b2b__trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #cbd5e1;
  font-size: 12.5px;
  font-weight: 600;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.b2b__trust-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

.b2b__trust-item svg {
  width: 16px;
  height: 16px;
  color: #38bdf8;
  flex-shrink: 0;
}



/* ---------- How It Works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 24px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-spring), box-shadow var(--t);
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.step__num {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.step__num::before {
  content: '';
  width: 26px;
  height: 3px;
  border-radius: var(--r-full);
  background: var(--amber);
}

.step__icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.step__icon svg {
  width: 24px;
  height: 24px;
}

.step h3 {
  font-size: 16.5px;
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* ---------- Readiness ---------- */
.readiness__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.readiness__copy h3 {
  font-size: 27px;
  margin-bottom: 14px;
}

.readiness__copy>p {
  font-size: 16px;
}

.readiness__scale {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.scale-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 14px;
  align-items: center;
}

.scale-row__label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--slate);
}

.scale-row__bar {
  height: 12px;
  border-radius: var(--r-full);
  background: var(--line-soft);
  overflow: hidden;
  position: relative;
}

.scale-row__bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #fca5a5, var(--amber) 60%, var(--emerald));
}

.scale-row__pct {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--ink);
  min-width: 34px;
  text-align: right;
}

.readiness__card {
  background: linear-gradient(160deg, var(--primary-deep), var(--primary));
  border-radius: var(--r-xl);
  padding: 40px 36px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.readiness__card::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 65%);
  top: -120px;
  right: -90px;
}

.readiness__score-display {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 24px;
}

.readiness__score-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(56px, 8vw, 76px);
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.readiness__score-label {
  display: inline-block;
  font-size: 13.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.16);
  padding: 4px 14px;
  border-radius: var(--r-full);
}

.readiness__card h4 {
  color: #fff;
  font-size: 20px;
  text-align: center;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.readiness__card>p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ---------- Learning Hub ---------- */
.learning__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.learn-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-spring), box-shadow var(--t), border-color var(--t);
}

.learn-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(2, 132, 199, 0.3);
}

.learn-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.learn-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--sky-soft);
  color: var(--sky);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.learn-card__header .learn-card__icon {
  margin-bottom: 0;
}

.learn-card__icon svg {
  width: 22px;
  height: 22px;
}

.learn-card--green .learn-card__icon {
  background: #ecfdf5;
  color: var(--green);
}

.learn-card--amber .learn-card__icon {
  background: #fffbeb;
  color: var(--gold);
}

.learn-card h3,
.learn-card__header h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

.learn-card h3 svg {
  width: 24px;
  height: 24px;
  color: var(--sky);
  flex-shrink: 0;
}

.learn-card--green h3 svg {
  color: var(--green);
}

.learn-card--amber h3 svg {
  color: var(--gold);
}

.learn-card p {
  font-size: 14.5px;
  color: var(--muted);
  margin: 10px 0 16px;
  line-height: 1.55;
}

.learn-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.learn-card__links a {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--primary-dark);
  background: var(--primary-soft);
  padding: 6px 12px;
  border-radius: var(--r-full);
  transition: background var(--t), color var(--t);
}

.learn-card__links a:hover {
  background: var(--primary);
  color: #fff;
}


/* ---------- Testimonials ---------- */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-spring), box-shadow var(--t);
}

.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.testimonial__stars {
  display: flex;
  gap: 3px;
  color: var(--amber);
  margin-bottom: 14px;
}

.testimonial__stars svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.testimonial blockquote {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--sky));
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.testimonial__author b {
  display: block;
  font-size: 14px;
  color: var(--ink);
}

.testimonial__author span {
  font-size: 12.5px;
  color: var(--muted);
}

/* ---------- FAQ ---------- */
.faq__list {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}

.faq-item.is-open {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: var(--shadow-md);
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 22px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.faq-item__q .chev {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  transition: transform var(--t), background var(--t);
}

.faq-item__q .chev svg {
  width: 14px;
  height: 14px;
}

.faq-item.is-open .faq-item__q .chev {
  transform: rotate(180deg);
  background: var(--primary);
  color: #fff;
}

.faq-item__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t);
  overflow: hidden;
}

.faq-item.is-open .faq-item__a {
  grid-template-rows: 1fr;
}

.faq-item__a > * {
  min-height: 0;
}

.faq-item__a p {
  padding: 0 22px 20px;
  font-size: 14.5px;
  margin: 0;
}

/* ---------- CTA Band ---------- */
.cta-band {
  background:
    radial-gradient(700px 300px at 20% 120%, rgba(245, 158, 11, 0.22), transparent 60%),
    radial-gradient(700px 340px at 85% -20%, rgba(37, 99, 235, 0.4), transparent 60%),
    linear-gradient(140deg, var(--primary-deep), var(--primary) 55%, var(--sky));
  border-radius: var(--r-xl);
  padding: 64px 56px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(26px, 4vw, 38px);
  margin-bottom: 14px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16.5px;
  max-width: 640px;
  margin: 0 auto 30px;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ---------- Contact ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact__cards {
  display: grid;
  gap: 18px;
  margin: 28px 0;
}

.contact-card {
  display: flex;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.25);
}

.contact-card__icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
}

.contact-card__icon svg {
  width: 22px;
  height: 22px;
}

.contact-card h4 {
  font-size: 15px;
  margin-bottom: 3px;
}

.contact-card p {
  font-size: 14px;
  margin: 0;
  color: var(--body);
}

.contact-card a {
  font-weight: 600;
}

.contact__form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.contact__form h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.contact__form>p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--bg-soft);
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}


/* ---------- Newsletter ---------- */
.newsletter {
  background: linear-gradient(140deg, var(--navy), var(--slate));
  border-radius: var(--r-xl);
  padding: 48px 48px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.newsletter h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 8px;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14.5px;
  margin: 0;
}

.newsletter__form {
  display: flex;
  gap: 10px;
}

.newsletter__form .form-control {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.newsletter__form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.newsletter__form .form-control:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--amber);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
}

.newsletter__note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-navy);
  color: #cbd5e1;
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  font-size: 14px;
  color: #94a3b8;
  margin: 16px 0 20px;
  max-width: 300px;
}

.footer-brand .brand {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
  display: grid;
  place-items: center;
  transition: background var(--t), transform var(--t), color var(--t);
}

.footer-social a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-col h4,
.footer-col h3,
.footer-col .footer-heading {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul {
  display: grid;
  gap: 10px;
}

.footer-col a {
  color: #94a3b8;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color var(--t), transform var(--t);
}

.footer-col a:hover {
  color: var(--amber);
  transform: translateX(3px);
}

.footer-col svg {
  width: 13px;
  height: 13px;
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0 28px;
  font-size: 13px;
  color: #94a3b8;
}

.footer-bottom a {
  color: #cbd5e1;
}

.footer-bottom a:hover {
  color: var(--amber);
}

.footer-bottom .legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* ---------- Back To Top ---------- */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border: none;
  box-shadow: var(--shadow-lg);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity var(--t), transform var(--t), visibility var(--t);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(24px);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: var(--r-full);
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t), transform var(--t);
}

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

.toast svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.toast--success svg {
  color: var(--emerald);
}

.toast--error svg {
  color: #f43f5e;
}

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

  .b2b__grid,
  .learning__grid,
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

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

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

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

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

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

  .hero__grid,
  .about__grid,
  .split,
  .readiness__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split--flip .split__media {
    order: 0;
  }

  .split--flip .split__copy {
    order: 1;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

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

@media (max-width: 768px) {
  .section {
    padding: clamp(28px, 4vw, 44px) 0;
  }

  /* Mobile Navigation Drawer */
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.2);
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 99999;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav ul {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 4px;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .main-nav li {
    width: 100%;
    display: block;
  }

  .main-nav a.nav-link,
  .main-nav > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    border-radius: 8px;
    background: #ffffff;
    transition: background 0.15s, color 0.15s;
    box-sizing: border-box;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    border-radius: 8px;
    background: #ffffff;
  }

  .nav-dropdown__menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 1px solid var(--line-soft);
    background: var(--bg-soft);
    padding: 6px;
    margin: 2px 0 8px 0;
    border-radius: var(--r-sm);
    min-width: 100%;
  }

  .nav-dropdown__link {
    padding: 8px 10px;
    font-size: 13.5px;
  }

  .main-nav a:hover,
  .main-nav a:active,
  .main-nav a.is-active {
    background: var(--primary-soft);
    color: var(--primary);
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    min-width: 44px;
    min-height: 44px;
  }

  .header-actions .btn--sm {
    display: none;
  }

  .hero {
    padding: 48px 0 40px;
  }

  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .mock__pill--readiness {
    left: 8px;
  }

  .mock__pill--b2b {
    right: 8px;
  }

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

  .cta-band {
    padding: 40px 20px;
  }

  .newsletter {
    padding: 32px 20px;
  }

  .newsletter__form {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-bottom .legal {
    justify-content: center;
    flex-wrap: wrap;
  }

  .contact__form,
  .role-card,
  .readiness__card {
    padding: 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .scale-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .scale-row__pct {
    text-align: left;
  }

  .trust__logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}



/* ---------- Scroll Reveal (Smooth Soft Fade-In) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

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

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.reveal-delay-4 {
  transition-delay: 0.32s;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Wireframe Hero Search Bar ---------- */
.hero__search {
  max-width: 680px;
  margin: 0 0 24px;
}

.hero__search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 8px 8px 20px;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  transition: border-color var(--t), box-shadow var(--t);
}

.hero__search-box .btn {
  border-radius: 10px;
}

.hero__search-box:focus-within {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.hero__search-box svg {
  width: 20px;
  height: 20px;
  color: var(--muted);
  flex-shrink: 0;
}

.hero__search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  outline: none;
}

.hero__search-input::placeholder {
  color: var(--muted);
}


.search-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px;
  border-radius: var(--r-full);
  background: #fff;
  border: 1px solid var(--line);
  color: var(--slate);
  font-size: 12.5px;
  font-weight: 600;
  transition: all var(--t);
}

.search-tag:hover {
  background: var(--primary-soft);
  color: var(--primary-dark);
  border-color: var(--primary);
  transform: translateY(-1px);
}

/* ---------- Featured Suppliers & Manufacturers ---------- */
.suppliers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.supplier-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-spring), box-shadow var(--t), border-color var(--t);
}

.supplier-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.28);
}

.supplier-card__thumb {
  height: 160px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--slate));
}

.supplier-card__visual {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.supplier-card:hover .supplier-card__visual {
  transform: scale(1.06);
}

.supplier-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--r-full);
  background: rgba(15, 23, 42, 0.78);
  color: #fff;
  backdrop-filter: blur(4px);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.supplier-card__badge--verified {
  background: #047857;
  color: #ffffff;
}

.supplier-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.supplier-card__cat {
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 6px;
}

.supplier-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
  color: var(--ink);
}

.supplier-card__location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
}

.supplier-card__location svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
  flex-shrink: 0;
}

.supplier-card__footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  font-weight: 600;
}

.supplier-card__products {
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 5px;
}

.supplier-card__action {
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
}

/* ---------- Subpage Styling ---------- */
.page-hero {
  background-color: #0f172a;
  background: linear-gradient(140deg, #0f172a 0%, #1e3a8a 100%);
  padding: 64px 20px 56px;
  color: #fff;
}

.page-hero h1 {
  font-size: clamp(32px, 4.5vw, 48px);
  color: #fff;
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
  margin: 0 0 24px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 18px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--t);
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
  padding-bottom: 8px;
}

.filter-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--slate);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--t);
}

.filter-tab:hover,
.filter-tab.is-active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px var(--primary-glow);
}

/* ---------- Title Defense UI Components ---------- */
.sdg-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.sdg-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.sdg-badge--8 {
  background: #991b1b;
}

.sdg-badge--9 {
  background: #c2410c;
}

.sdg-badge--12 {
  background: #854d0e;
}

.sdg-badge--17 {
  background: #1e3a8a;
}

.google-lens-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  border: 1px solid var(--primary-glow);
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--t);
}

.google-lens-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}

.role-switcher-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  padding: 0;
  border: none;
  border-radius: 0;
  color: var(--gold, #d97706);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
  align-self: flex-start;
}

.role-switcher-badge::before {
  content: '';
  display: inline-block;
  width: 3.5px;
  height: 13px;
  background: var(--amber, #f59e0b);
  border-radius: 2px;
  flex-shrink: 0;
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.term-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), border-color var(--t);
}

.term-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.term-card h4 {
  font-size: 16px;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.term-card p {
  font-size: 14px;
  color: var(--body);
  margin: 0;
}

.security-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.security-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.security-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.security-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.security-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* ==========================================================================
   MOBILE & RESPONSIVE OVERRIDES (Must remain at the very end of stylesheet)
   ========================================================================== */
@media (max-width: 600px) {
  .hero__search {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 20px !important;
  }

  .hero__search-box {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    border-radius: 16px !important;
    padding: 14px !important;
    gap: 10px !important;
    background: #ffffff !important;
    border: 1px solid var(--line) !important;
    box-shadow: var(--shadow-md) !important;
  }

  .hero__search-box svg.search-icon {
    display: none !important;
  }

  .hero__search-input {
    width: 100% !important;
    min-height: 44px !important;
    padding: 10px 14px !important;
    background: var(--bg-soft) !important;
    border: 1px solid var(--line) !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    color: var(--ink) !important;
    box-sizing: border-box !important;
  }

  .google-lens-btn {
    width: 100% !important;
    justify-content: center !important;
    min-height: 44px !important;
    border-radius: 10px !important;
    background: var(--bg-soft) !important;
    border: 1px solid var(--line) !important;
  }

  .hero__search-box .btn {
    width: 100% !important;
    min-height: 44px !important;
    border-radius: 10px !important;
    justify-content: center !important;
  }

  .hero__cta {
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
  }

  .hero__cta .btn {
    width: 100% !important;
  }

  .split__actions {
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
  }

  .split__actions .btn {
    width: 100% !important;
  }

  .filter-tabs {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding-bottom: 10px !important;
    margin-bottom: 24px !important;
    scrollbar-width: none !important;
  }

  .filter-tabs::-webkit-scrollbar {
    display: none !important;
  }

  .filter-tab {
    flex-shrink: 0 !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 960px) {
  .b2b__trust-bar {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 520px) {

  .features__grid,
  .b2b__grid,
  .learning__grid,
  .testimonials__grid,
  .suppliers__grid,
  .terms-grid,
  .security-cards,
  .contact__cards,
  .b2b__stats,
  .b2b__trust-bar,
  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .hero__chips {
    gap: 8px !important;
  }

  .brand {
    gap: 8px !important;
  }

  .brand__name {
    display: block !important;
    font-size: 14px !important;
  }

  .brand__name small {
    display: block !important;
    font-size: 9.5px !important;
    letter-spacing: 0.08em !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .sdg-badges {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .sdg-badge {
    width: 100% !important;
    justify-content: center !important;
  }
}

@media (max-width: 360px) {
  .container {
    width: calc(100% - 20px) !important;
  }

  .card,
  .contact__form,
  .role-card,
  .readiness__card {
    padding: 16px !important;
  }

  .btn {
    padding: 12px 18px !important;
    font-size: 14px !important;
  }

  .brand__name {
    font-size: 13px !important;
  }

  .brand__name small {
    display: none !important;
  }
}

/* ---------- Subsite Identifier Badge Component ---------- */
.subsite-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--subsite-badge-bg, #eff6ff);
  color: var(--subsite-badge-text, #2563eb);
  border: 1px solid var(--subsite-badge-border, #bfdbfe);
  white-space: nowrap;
  vertical-align: middle;
  transition: all 0.2s ease;
}

.subsite-badge--corporate {
  background: #eff6ff;
  color: #2563eb;
  border-color: #bfdbfe;
}

.subsite-badge--marketplace {
  background: #f0f9ff;
  color: #0284c7;
  border-color: #bae6fd;
}

.subsite-badge--admin {
  background: #eef2ff;
  color: #4f46e5;
  border-color: #c7d2fe;
}

/* ---------- Carousel & Slider Component ---------- */
.section-head--carousel {
  max-width: 100% !important;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.section-head--carousel>div:first-child {
  max-width: 720px;
}

.carousel {
  position: relative;
  width: 100%;
}

.carousel__viewport {
  overflow: hidden;
  border-radius: var(--r-lg);
  padding: 8px 4px 16px;
  margin: -8px -4px -16px;
  touch-action: pan-y pinch-zoom;
}

.carousel__track {
  display: flex !important;
  gap: 20px !important;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.carousel__slide {
  flex: 0 0 calc(33.333% - 13.333px);
  min-width: 0;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .carousel__slide {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 640px) {
  .carousel__slide {
    flex: 0 0 85%;
  }
}

.carousel__nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.carousel__btn {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--line);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  transition: background var(--t), border-color var(--t), color var(--t), transform var(--t-spring), box-shadow var(--t);
}

.carousel__btn svg {
  width: 20px;
  height: 20px;
  transition: transform var(--t-fast);
}

.carousel__btn:hover:not(:disabled) {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px var(--primary-glow);
}

.carousel__btn--prev:hover:not(:disabled) svg {
  transform: translateX(-2px);
}

.carousel__btn--next:hover:not(:disabled) svg {
  transform: translateX(2px);
}

.carousel__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.carousel__btn:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

.carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--line);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), background var(--t);
}

.carousel__dot:hover {
  background: var(--muted);
}

.carousel__dot.is-active {
  transform: scaleX(3.5);
  background: var(--primary);
}

/* ---------- Partner Logo Row ---------- */
.trust__logos-ticker {
  overflow-x: auto;
  position: relative;
  width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.trust__logos-ticker::-webkit-scrollbar {
  display: none;
}

.trust__logos-track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 32px 48px;
  padding: 8px 0;
}

.trust__logos-group {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
  flex-shrink: 0;
}

.trust__logos-group a {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}

.trust__logos-group span {
  font-weight: 800;
  font-size: 16.5px;
  color: #334155;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: color var(--t);
}

.trust__logos-group a:hover span {
  color: var(--primary);
}


/* ---------- Dynamic Trade Announcement Banner ---------- */
.top-announce-banner {
  background: linear-gradient(90deg, #1e3a8a 0%, #2563eb 50%, #0284c7 100%);
  color: #ffffff;
  padding: 10px 16px;
  font-size: 13.5px;
  font-weight: 600;
  position: relative;
  z-index: 1001;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: opacity 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}

.top-announce-banner.is-hidden {
  display: none !important;
  opacity: 0 !important;
}

.top-announce-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
  padding-right: 28px;
}

.top-announce-banner__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f59e0b;
  color: #0f172a;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.top-announce-banner p {
  margin: 0;
  color: #f1f5f9;
}

.top-announce-banner a {
  color: #fef08a;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}

.top-announce-banner a:hover {
  color: #ffffff;
}

.top-announce-banner__close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.16);
  border: none;
  color: #ffffff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  transition: background var(--t);
}

.top-announce-banner__close:hover {
  background: rgba(255, 255, 255, 0.35);
}

/* ---------- AI Market Trends Ticker ---------- */
.ai-ticker {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  margin-top: 14px;
  margin-bottom: 24px;
  overflow: hidden;
}

.ai-ticker__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  color: var(--violet);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  flex-shrink: 0;
  padding-right: 12px;
  border-right: 1.5px solid var(--line);
}

.ai-ticker__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.ai-ticker__scroll {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
}

.ai-ticker__scroll::-webkit-scrollbar {
  display: none;
}

.ai-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--r-full);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--slate);
  font-weight: 600;
  transition: all var(--t);
  text-decoration: none;
}

.ai-ticker__item:hover {
  background: var(--primary-soft);
  border-color: var(--primary);
  color: var(--primary-dark);
}

.ai-ticker__item b {
  color: var(--emerald);
  font-weight: 800;
}

.ai-ticker__item--hot b {
  color: var(--red);
}

/* ---------- Wholesale Products & Raw Materials Grid ---------- */
.b2b-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.b2b-product-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-spring), box-shadow var(--t), border-color var(--t);
  position: relative;
}

.b2b-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.3);
}

.b2b-product-card__thumb {
  height: 180px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--slate));
}

.b2b-product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.b2b-product-card:hover .b2b-product-card__img {
  transform: scale(1.06);
}

.b2b-product-card__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  pointer-events: none;
}

.b2b-product-card__category {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: var(--r-full);
  background: rgba(15, 23, 42, 0.82);
  color: #ffffff;
  backdrop-filter: blur(4px);
}

.b2b-product-card__badge-verify {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--r-full);
  background: #047857;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.b2b-product-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.b2b-product-card__title {
  font-size: 16.5px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.3;
}

.b2b-product-card__supplier {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 12px;
}

.b2b-product-card__supplier svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
  flex-shrink: 0;
}

.b2b-product-card__meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 10px 0;
  margin-bottom: 16px;
}

.b2b-meta-item small {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.b2b-meta-item b {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--slate);
}

.b2b-meta-item--price b {
  color: var(--primary-dark);
  font-size: 14px;
}

.b2b-product-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.b2b-product-card__footer .btn {
  flex: 1;
  padding: 9px 12px;
  font-size: 12.5px;
  min-height: 38px;
}

/* ---------- Interactive 3-Role Platform Explorer ---------- */
.platform-explorer {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.platform-tabs {
  display: flex;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: none;
}

.platform-tabs::-webkit-scrollbar {
  display: none;
}

.platform-tab-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 24px;
  border: none;
  background: transparent;
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--body);
  cursor: pointer;
  transition: all var(--t);
  position: relative;
  white-space: nowrap;
}

.platform-tab-btn svg {
  width: 20px;
  height: 20px;
  color: var(--muted);
  transition: color var(--t);
}

.platform-tab-btn:hover {
  color: var(--primary);
  background: rgba(37, 99, 235, 0.04);
}

.platform-tab-btn:hover svg {
  color: var(--primary);
}

.platform-tab-btn.is-active {
  color: var(--primary-dark);
  background: #ffffff;
}

.platform-tab-btn.is-active svg {
  color: var(--primary);
}

.platform-tab-btn.is-active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--sky));
}

.platform-tab-panel {
  display: none;
  padding: 38px;
  animation: fadeInPanel 0.35s ease;
}

.platform-tab-panel.is-active {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

@keyframes fadeInPanel {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

.platform-panel__copy h3 {
  font-size: 23px;
  margin-bottom: 10px;
  color: var(--ink);
}

.platform-panel__copy p {
  font-size: 15px;
  color: var(--body);
  margin-bottom: 22px;
}

.platform-feature-list {
  display: grid;
  gap: 11px;
  margin-bottom: 26px;
}

.platform-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--slate);
  font-weight: 600;
}

.platform-feature-item svg {
  width: 18px;
  height: 18px;
  color: var(--emerald);
  flex-shrink: 0;
  margin-top: 2px;
}

.platform-preview-mockup {
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-lg);
  padding: 24px;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.platform-preview-mockup::after {
  content: '';
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.3), transparent 70%);
  top: -80px;
  right: -60px;
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 1;
}

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

.mockup-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.mockup-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(37, 99, 235, 0.25);
  color: #93c5fd;
  border: 1px solid rgba(147, 197, 253, 0.3);
  padding: 3px 10px;
  border-radius: 999px;
}

.mockup-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.mockup-kpi-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 12px;
  backdrop-filter: blur(6px);
}

.mockup-kpi-card span {
  display: block;
  font-size: 11px;
  color: #94a3b8;
  font-weight: 600;
  margin-bottom: 2px;
}

.mockup-kpi-card b {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
}

.mockup-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 8px;
  font-size: 12.5px;
  position: relative;
  z-index: 1;
}

.mockup-row b {
  color: #e2e8f0;
}

.mockup-row span.badge-pill {
  font-size: 11.5px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
}

/* ---------- 60-Second MSME Diagnostic & Export Readiness Tool ---------- */
.diagnostic-container {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.diagnostic-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.diagnostic-steps-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 5px 12px;
  border-radius: 6px;
}

.diagnostic-bar {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: var(--line-soft);
  margin-left: 20px;
  overflow: hidden;
}

.diagnostic-bar__fill {
  height: 100%;
  width: 33.33%;
  background: linear-gradient(90deg, var(--primary), var(--emerald));
  border-radius: inherit;
  transition: transform 0.35s ease;
  transform-origin: left;
}

.diagnostic-step {
  display: none;
}

.diagnostic-step.is-active {
  display: block;
  animation: fadeInPanel 0.3s ease;
}

.diagnostic-step h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--ink);
}

.diagnostic-step p.step-desc {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 22px;
}

.diagnostic-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.diagnostic-option-btn {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--line);
  background: #ffffff;
  cursor: pointer;
  text-align: left;
  transition: all var(--t);
  font-family: var(--font-body);
}

.diagnostic-option-btn:hover {
  border-color: var(--primary);
  background: var(--primary-soft);
  transform: translateY(-2px);
}

.diagnostic-option-btn.is-selected {
  border-color: var(--primary);
  background: var(--primary-soft);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.diagnostic-option-btn .opt-icon {
  width: 22px;
  height: 22px;
  color: var(--primary);
  flex-shrink: 0;
}

.diagnostic-option-btn b {
  display: block;
  font-size: 14.5px;
  color: var(--ink);
  margin-bottom: 3px;
}

.diagnostic-option-btn small {
  display: block;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

.diagnostic-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line-soft);
  padding-top: 20px;
}

.diagnostic-result-card {
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
  border-radius: var(--r-lg);
  padding: 32px;
  color: #ffffff;
  text-align: center;
}

.diagnostic-score-gauge {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: conic-gradient(var(--emerald) 0% 82%, rgba(255, 255, 255, 0.15) 82% 100%);
  box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.2);
}

.diagnostic-score-gauge__inner {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: #0f172a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.diagnostic-score-gauge__inner b {
  font-size: 34px;
  color: #ffffff;
  line-height: 1;
}

.diagnostic-score-gauge__inner span {
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
}

/* ---------- Operational Depth & Tech Highlights ---------- */
.tech-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tech-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-spring), box-shadow var(--t), border-color var(--t);
  position: relative;
}

.tech-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.28);
}

.tech-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: var(--primary-soft);
  color: var(--primary);
}

.tech-card__icon svg {
  width: 24px;
  height: 24px;
}

.tech-card--emerald .tech-card__icon {
  background: #ecfdf5;
  color: var(--emerald);
}

.tech-card--amber .tech-card__icon {
  background: #fffbeb;
  color: var(--gold);
}

.tech-card--violet .tech-card__icon {
  background: #f5f3ff;
  color: var(--violet);
}

.tech-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--ink);
}

.tech-card p {
  font-size: 13.5px;
  color: var(--body);
  line-height: 1.5;
  margin: 0;
}

.tech-card__tier {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-bottom: 8px;
}

/* ---------- 2026 B2B Marketplace Component Styles ---------- */

/* 1. Category Discovery Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.category-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px 18px;
  color: var(--ink);
  transition: all var(--t);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.category-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--primary-dark);
}

.category-card__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: var(--bg-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t), color var(--t);
}

.category-card:hover .category-card__icon {
  background: var(--primary-soft);
  color: var(--primary);
}

.category-card__icon svg {
  width: 22px;
  height: 22px;
}

.category-card__info {
  flex: 1;
  min-width: 0;
}

.category-card__name {
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.category-card:hover .category-card__name {
  color: var(--primary);
}

.category-card__count {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.category-card__arrow {
  color: var(--muted);
  transition: transform var(--t), color var(--t);
  flex-shrink: 0;
}

.category-card:hover .category-card__arrow {
  color: var(--primary);
  transform: translateX(3px);
}

/* 2. Visual Search Modal (Google Cloud Vision Integration) */
.vsearch-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.vsearch-modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.vsearch-modal {
  background: #ffffff;
  border-radius: 20px;
  width: min(760px, 100%);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.2), 0 8px 10px -6px rgba(15, 23, 42, 0.1);
  transform: scale(0.96) translateY(12px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.vsearch-modal-backdrop.is-open .vsearch-modal {
  transform: scale(1) translateY(0);
}

.vsearch-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: #ffffff;
  border-bottom: 1px solid var(--line-soft);
  flex-shrink: 0;
}

.vsearch-header__title-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vsearch-header__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vsearch-header h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 2px;
  line-height: 1.2;
}

.vsearch-tag,
.vsearch-ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-dark);
  background: var(--teal-soft);
  padding: 3px 10px;
  border-radius: var(--r-full);
}

.vsearch-close {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  transition: all var(--t);
}

.vsearch-close:hover {
  background: var(--bg-soft);
  color: var(--ink);
}

.vsearch-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}

/* Step 1: Input View */
.vsearch-intro__text {
  font-size: 14px;
  color: var(--body);
  margin-bottom: 18px;
  line-height: 1.55;
}

.vsearch-dropzone {
  border: 2px dashed var(--line);
  border-radius: var(--r-lg);
  padding: 36px 20px;
  text-align: center;
  background: transparent;
  cursor: pointer;
  transition: all var(--t);
  outline: none;
}

.vsearch-dropzone:hover,
.vsearch-dropzone.is-dragover,
.vsearch-dropzone:focus-visible {
  border-color: var(--primary);
  background: var(--primary-soft);
}

.vsearch-dropzone__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: transform var(--t);
}

.vsearch-dropzone:hover .vsearch-dropzone__icon {
  transform: translateY(-3px);
}

.vsearch-dropzone__heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.vsearch-dropzone__sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}

.vsearch-input-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Camera Stream Panel */
.vsearch-camera-panel {
  margin-bottom: 18px;
}

.vsearch-camera-view {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/3;
  margin: 0 auto;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #000;
}

.vsearch-camera-view video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vsearch-camera-target-box {
  position: absolute;
  inset: 15%;
  border: 2px dashed rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.vsearch-camera-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

/* Samples Chips */
.vsearch-samples {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}

.vsearch-samples__title {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.vsearch-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vsearch-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: var(--gp-radius-sm);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--body);
  cursor: pointer;
  transition:
    background-color var(--gp-transition-fast),
    border-color var(--gp-transition-fast),
    color var(--gp-transition-fast);
}

.vsearch-chip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.vsearch-chip__icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.vsearch-chip:hover {
  background: var(--primary-soft);
  border-color: var(--primary);
  color: var(--primary-dark);
  transform: translateY(-1px);
}

/* Step 2: Image Preview & Processing */
.vsearch-preview-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: 20px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  margin-bottom: 18px;
}

.vsearch-preview-media {
  width: 180px;
  height: 180px;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #ffffff;
  border: 2px solid #ffffff;
}

.vsearch-preview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vsearch-preview-status {
  max-width: 400px;
}

.vsearch-spinner {
  width: 42px;
  height: 42px;
  margin: 0 auto 12px;
  color: var(--primary);
  animation: vsearch-spin 1s linear infinite;
}

@keyframes vsearch-spin {
  to { transform: rotate(360deg); }
}

.vsearch-preview-status h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.vsearch-preview-status p {
  font-size: 13.5px;
  color: var(--muted);
}

.vsearch-preview-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* Step 3: Results View */
.vsearch-results-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 12px 16px;
  margin-bottom: 16px;
}

.vsearch-summary-thumb {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #ffffff;
}

.vsearch-summary-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vsearch-summary-info {
  flex: 1;
  min-width: 0;
}

.vsearch-summary-headline {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vsearch-summary-headline h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  margin: 0;
}

.vsearch-time-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal-dark);
  background: var(--teal-soft);
  padding: 2px 6px;
  border-radius: 4px;
}

.vsearch-summary-labels {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Multi-Product Object Filters */
.vsearch-detected-objects {
  margin-bottom: 14px;
}

.vsearch-objects-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.vsearch-object-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.vsearch-obj-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1.5px solid var(--line);
  padding: 5px 12px;
  border-radius: var(--r-full);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--body);
  cursor: pointer;
  transition: all var(--t);
}

.vsearch-obj-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.vsearch-obj-pill.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.vsearch-obj-pill__score {
  font-size: 11.5px;
  opacity: 0.85;
}

/* Toolbar & Sorting */
.vsearch-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.vsearch-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.vsearch-select {
  padding: 6px 10px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: #ffffff;
  font-size: 13px;
  font-family: inherit;
  color: var(--ink);
  outline: none;
  cursor: pointer;
}

.vsearch-select:focus {
  border-color: var(--primary);
}

.vsearch-cat-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.vsearch-cat-chip {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--body);
  cursor: pointer;
  transition: all var(--t);
}

.vsearch-cat-chip.is-active,
.vsearch-cat-chip:hover {
  background: var(--primary-soft);
  border-color: var(--primary);
  color: var(--primary-dark);
}

/* Results Product Grid */
.vsearch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

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

.vsearch-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--t);
}

.vsearch-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.vsearch-card__media {
  position: relative;
  width: 100%;
  height: 160px;
  background: var(--bg-soft);
  overflow: hidden;
}

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

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

.vsearch-match-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: var(--r-full);
  font-size: 11.5px;
  font-weight: 800;
  color: #ffffff;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.vsearch-match-badge--high {
  background: linear-gradient(135deg, #059669, #10b981);
}

.vsearch-match-badge--medium {
  background: linear-gradient(135deg, #0284c7, #38bdf8);
}

.vsearch-match-badge--low {
  background: linear-gradient(135deg, #d97706, #f59e0b);
}

.vsearch-card__body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.vsearch-card__cat {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.vsearch-card__title {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vsearch-card__supplier {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 10px;
}

.vsearch-card__supplier svg {
  color: var(--emerald);
  flex-shrink: 0;
}

.vsearch-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 12px;
}

.vsearch-tag {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-size: 11px;
  font-weight: 600;
  color: var(--slate);
  padding: 2px 6px;
  border-radius: 4px;
}

.vsearch-card__footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.vsearch-card__price-box {
  min-width: 0;
}

.vsearch-card__price {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.vsearch-card__price small {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}

.vsearch-card__moq {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 2px;
}

/* Empty State */
.vsearch-empty {
  text-align: center;
  padding: 40px 20px;
  background: var(--bg-soft);
  border-radius: var(--r-lg);
  border: 1px dashed var(--line);
}

.vsearch-empty__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.vsearch-empty h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}

.vsearch-empty p {
  font-size: 14px;
  color: var(--muted);
  max-width: 420px;
  margin: 0 auto 20px;
  line-height: 1.5;
}

.vsearch-empty__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}


/* 3. How GawangPinas Works */
.how-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.how-step-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-spring), box-shadow var(--t), border-color var(--t);
  display: flex;
  flex-direction: column;
}

.how-step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.3);
}

.how-step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.how-step-badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.how-step-svg {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  max-width: 24px;
  max-height: 24px;
  flex-shrink: 0;
  display: inline-block;
  stroke: var(--primary);
}

.how-step-card h3 {
  font-size: 21px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 10px;
}

.how-step-card p {
  font-size: 14.5px;
  color: var(--body);
  line-height: 1.6;
  margin-bottom: 0;
}

/* 4. One Platform. Multiple Roles. */
.ecosystem-roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.role-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-spring), box-shadow var(--t), border-color var(--t);
  position: relative;
  overflow: hidden;
}

.role-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.role-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.role-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.role-card--buyer .role-card__icon {
  background: #eff6ff;
  color: #2563eb;
}

.role-card--seller .role-card__icon {
  background: #f0fdfa;
  color: #0f766e;
}

.role-card--supplier .role-card__icon {
  background: #fffbeb;
  color: #d97706;
}

.role-card__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink) !important;
  margin: 0 0 3px 0;
}

.role-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink) !important;
  margin: 0 0 3px 0;
}

.role-card__desc {
  font-size: 14.5px;
  color: var(--body) !important;
  line-height: 1.55;
  margin-bottom: 20px;
}

.role-card p {
  font-size: 14.5px;
  color: var(--body) !important;
  line-height: 1.55;
  margin-bottom: 20px;
}

/* Footer Brand Name Color Override */
.site-footer .brand,
.site-footer .footer-brand .brand,
.site-footer .brand__name {
  color: #ffffff !important;
}

.site-footer .brand__name small {
  color: #38bdf8 !important;
}

.role-card__features {
  list-style: none;
  margin: 0 0 28px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.role-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.45;
}

.role-card__features li svg {
  width: 17px;
  height: 17px;
  color: var(--emerald);
  flex-shrink: 0;
  margin-top: 1px;
}

.role-card__action {
  margin-top: auto;
}

/* 5. Why GawangPinas Grid */
.why-gp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.why-gp-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.why-gp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.3);
}

.why-gp-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.why-gp-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--bg-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-gp-header .why-gp-icon {
  margin-bottom: 0;
}

.why-gp-card h3,
.why-gp-header h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.why-gp-svg {
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  max-width: 22px;
  max-height: 22px;
  flex-shrink: 0;
  display: inline-block;
}

.why-gp-card p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.55;
  margin: 10px 0 0;
}

/* 6. Business Readiness Teaser Card */
.readiness-teaser {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.readiness-teaser::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25), transparent 70%);
  top: -150px;
  right: -100px;
  pointer-events: none;
}

.readiness-teaser__text h2 {
  font-size: clamp(24px, 3.5vw, 32px);
  color: #ffffff;
  margin-bottom: 12px;
}

.readiness-teaser__text p {
  font-size: 16px;
  color: #cbd5e1;
  max-width: 620px;
  margin: 0;
  line-height: 1.6;
}

.readiness-teaser__action {
  flex-shrink: 0;
}

/* 7. High-Impact Final Conversion CTA */
.final-cta-section {
  padding: 60px 24px;
  background: radial-gradient(ellipse at 50% 0%, var(--primary-soft) 0%, #ffffff 75%);
  border-top: 1px solid var(--line-soft);
  text-align: center;
}

.final-cta-inner {
  max-width: 760px;
  margin: 0 auto;
}

.final-cta-inner h2 {
  font-size: clamp(28px, 4.2vw, 44px);
  margin-bottom: 16px;
  line-height: 1.15;
}

.final-cta-inner p {
  font-size: 17px;
  color: var(--body);
  margin-bottom: 32px;
  line-height: 1.6;
}

.final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* Responsive tweaks for B2B layout & Mobile Optimizations */
@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-works-grid,
  .ecosystem-roles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .readiness-teaser {
    flex-direction: column;
    align-items: flex-start;
  }
}

.mobile-nav-actions {
  display: none !important;
}

@media (max-width: 880px) {
  .main-nav {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.2);
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 99999;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  .mobile-nav-actions {
    display: flex !important;
    gap: 8px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line-soft);
    width: 100%;
  }

  .mobile-nav-actions .btn {
    flex: 1;
    min-height: 42px;
    font-size: 13.5px;
    justify-content: center;
  }

  .nav-toggle {
    display: grid !important;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    background: #fff;
    cursor: pointer;
  }

  .header-actions .btn--sm {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 36px 16px !important;
  }

  .section--soft {
    padding: 36px 16px !important;
  }

  .hero {
    padding: 28px 0 24px !important;
  }

  .hero__title {
    font-size: clamp(26px, 6.8vw, 36px) !important;
    line-height: 1.2 !important;
    margin-bottom: 12px !important;
    text-align: center !important;
  }

  .hero__sub {
    font-size: 14.5px !important;
    line-height: 1.55 !important;
    margin: 0 auto 18px !important;
    text-align: center !important;
    padding: 0 4px !important;
  }

  .hero__search {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 16px !important;
  }

  .hero__search-box {
    display: flex !important;
    flex-wrap: wrap !important;
    padding: 10px !important;
    gap: 8px !important;
    border-radius: var(--r-md) !important;
    background: #ffffff !important;
    border: 1.5px solid var(--line) !important;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08) !important;
  }

  .hero__search-box svg.search-icon {
    display: none !important;
  }

  .hero__search-input {
    width: 100% !important;
    flex: 1 1 100% !important;
    order: 1;
    min-height: 44px !important;
    padding: 10px 12px !important;
    font-size: 15px !important;
    background: var(--bg-soft) !important;
    border: 1px solid var(--line) !important;
    border-radius: var(--r-sm) !important;
    box-sizing: border-box !important;
  }

  .google-lens-btn {
    order: 2;
    flex: 1 1 calc(50% - 4px) !important;
    min-height: 42px !important;
    justify-content: center !important;
    border-radius: var(--r-sm) !important;
    font-size: 13px !important;
    background: var(--bg-soft) !important;
    border: 1px solid var(--line) !important;
  }

  .hero__search-box .btn {
    order: 3;
    flex: 1 1 calc(50% - 4px) !important;
    min-height: 42px !important;
    justify-content: center !important;
    border-radius: var(--r-sm) !important;
    font-size: 14px !important;
  }

  .hero__cta {
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
    margin-top: 6px !important;
  }

  .hero__cta .btn {
    width: 100% !important;
    min-height: 48px !important;
    font-size: 15px !important;
    justify-content: center !important;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    margin-top: 14px !important;
  }

  .category-card {
    padding: 12px 10px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }

  .category-card__icon {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    max-width: 36px !important;
    border-radius: 8px !important;
  }

  .category-card__icon svg {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
  }

  .category-card__name {
    font-size: 12.5px !important;
    white-space: normal !important;
    line-height: 1.25 !important;
    margin-bottom: 2px !important;
  }

  .category-card__count {
    font-size: 11px !important;
  }

  .category-card__arrow {
    display: none !important;
  }

  .b2b-products__grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .b2b-product-card__thumb {
    height: 190px !important;
  }

  .b2b-product-card__body {
    padding: 16px !important;
  }

  .b2b-product-card__title {
    font-size: 16px !important;
  }

  .b2b-product-card__footer .btn {
    min-height: 42px !important;
    font-size: 13.5px !important;
    justify-content: center !important;
  }

  .how-works-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .how-step-card {
    padding: 20px 18px !important;
    border-radius: 14px !important;
  }

  .how-step-card h3 {
    font-size: 17px !important;
    margin-bottom: 6px !important;
  }

  .how-step-card p {
    font-size: 13.5px !important;
    line-height: 1.5 !important;
  }

  .ecosystem-roles-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-top: 20px !important;
  }

  .role-card {
    padding: 22px 18px !important;
    border-radius: 16px !important;
  }

  .role-card__header {
    gap: 12px !important;
    margin-bottom: 14px !important;
  }

  .role-card__icon {
    width: 42px !important;
    height: 42px !important;
    font-size: 20px !important;
    border-radius: 10px !important;
  }

  .role-card__title,
  .role-card h3 {
    font-size: 18px !important;
  }

  .role-card__desc,
  .role-card p {
    font-size: 13.5px !important;
    margin-bottom: 14px !important;
    line-height: 1.5 !important;
  }

  .role-card__features {
    margin-bottom: 18px !important;
    gap: 8px !important;
  }

  .role-card__features li {
    font-size: 13px !important;
  }

  .role-card__action .btn {
    width: 100% !important;
    min-height: 44px !important;
    font-size: 14px !important;
    justify-content: center !important;
  }

  .why-gp-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .why-gp-card {
    padding: 18px 16px !important;
    border-radius: 12px !important;
  }

  .why-gp-card h3 {
    font-size: 15.5px !important;
    gap: 8px !important;
  }

  .why-gp-card p {
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin-top: 6px !important;
  }

  /* Business Readiness Teaser Card Mobile Optimization */
  .readiness-teaser {
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 26px 18px !important;
    gap: 20px !important;
    border-radius: var(--r-lg) !important;
    text-align: left !important;
    box-sizing: border-box !important;
    width: 100% !important;
  }

  .readiness-teaser__text h2 {
    font-size: clamp(20px, 5.5vw, 24px) !important;
    margin-bottom: 10px !important;
    line-height: 1.25 !important;
  }

  .readiness-teaser__text p {
    font-size: 14px !important;
    line-height: 1.55 !important;
    margin: 0 !important;
  }

  .readiness-teaser__action {
    width: 100% !important;
    flex-shrink: 0 !important;
  }

  .readiness-teaser__action .btn {
    width: 100% !important;
    white-space: normal !important;
    text-align: center !important;
    justify-content: center !important;
    font-size: 14.5px !important;
    padding: 13px 18px !important;
    min-height: 48px !important;
    line-height: 1.3 !important;
    box-sizing: border-box !important;
  }

  .final-cta-section {
    padding: 40px 16px !important;
  }

  .final-cta-inner h2 {
    font-size: clamp(22px, 5.5vw, 28px) !important;
    margin-bottom: 12px !important;
  }

  .final-cta-inner p {
    font-size: 14px !important;
    margin-bottom: 20px !important;
  }

  .final-cta-buttons {
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
  }

  .final-cta-buttons .btn {
    width: 100% !important;
    min-height: 48px !important;
    font-size: 15px !important;
    justify-content: center !important;
  }

  .back-to-top {
    right: 16px !important;
    bottom: 16px !important;
    width: 42px !important;
    height: 42px !important;
  }

  .back-to-top svg {
    width: 18px !important;
    height: 18px !important;
  }
}

/* Prevent auto-zoom on mobile inputs and enforce 100% scale */
html, body {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}
@media (max-width: 768px) {
  input, select, textarea {
    font-size: 16px !important;
  }
}

/* ==========================================================================
   PLATFORM ECOSYSTEM & APPS SHOWCASE REDESIGN
   ========================================================================== */

/* Quick Navigation Anchor Bar */
.apps-nav-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}

.apps-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--r-sm);
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--body);
  font-size: 13.5px;
  font-weight: 600;
  transition: all var(--t);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

.apps-nav-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.apps-nav-link svg {
  width: 16px;
  height: 16px;
  color: var(--muted);
  transition: color var(--t);
}

.apps-nav-link:hover svg {
  color: var(--primary);
}

.page-hero .apps-nav-bar {
  border-top-color: rgba(255, 255, 255, 0.15);
  margin-top: 28px;
  padding-top: 20px;
}

.page-hero .apps-nav-link {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.page-hero .apps-nav-link svg {
  color: #93c5fd;
}

.page-hero .apps-nav-link:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #60a5fa;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

/* Platform Showcase Split Row */
.platform-section {
  padding: 64px 20px;
  border-bottom: 1px solid var(--line-soft);
}

.platform-section--alt {
  background: var(--bg-soft);
  padding: 64px 20px;
}

.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(36px, 5vw, 68px);
  align-items: center;
}

.platform-grid--reverse .platform-grid__media {
  order: 2;
}

.platform-grid--reverse .platform-grid__content {
  order: 1;
}

@media (max-width: 1024px) {
  .platform-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .platform-grid--reverse .platform-grid__media {
    order: 1;
  }
  .platform-grid--reverse .platform-grid__content {
    order: 2;
  }
}

.platform-lead {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--body);
  margin-bottom: 24px;
}

/* Feature Mini-Cards Grid (2x2) */
.platform-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0 32px;
}

@media (max-width: 640px) {
  .platform-features-grid {
    grid-template-columns: 1fr;
  }
}

.platform-feature-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  transition: all var(--t);
}

.platform-section--alt .platform-feature-card {
  background: #ffffff;
}

.platform-feature-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.platform-feature-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.platform-feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.platform-feature-card__icon svg {
  width: 18px;
  height: 18px;
}

.platform-feature-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin: 0;
}

.platform-feature-card__desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* Rich Realistic Interactive UI Card Mockups */
.app-ui-frame {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  position: relative;
  transition: transform var(--t-spring), box-shadow var(--t);
}

.app-ui-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px -4px rgba(15, 23, 42, 0.1);
}

.app-ui-frame__topbar {
  background: #f8fafc;
  border-bottom: 1px solid var(--line);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-ui-frame__dots {
  display: flex;
  gap: 6px;
}

.app-ui-frame__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.app-ui-frame__dots span:nth-child(1) { background: #f87171; }
.app-ui-frame__dots span:nth-child(2) { background: #fbbf24; }
.app-ui-frame__dots span:nth-child(3) { background: #34d399; }

.app-ui-frame__badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.app-ui-frame__body {
  padding: 24px;
}

/* Producer Mockup Elements */
.producer-role-selector {
  display: flex;
  gap: 8px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 4px;
  border-radius: var(--r-md);
  margin-bottom: 20px;
}

.producer-role-btn {
  flex: 1;
  text-align: center;
  padding: 8px 12px;
  border-radius: var(--r-sm);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--muted);
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all var(--t);
}

.producer-role-btn.is-active {
  background: #ffffff;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.producer-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

@media (max-width: 480px) {
  .producer-stats-row {
    grid-template-columns: 1fr;
  }
}

.producer-stat-box {
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
  padding: 12px;
}

.producer-stat-box small {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.producer-stat-box strong {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
}

.mockup-item-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mockup-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--body);
}

.mockup-item-row .status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--emerald);
}

.mockup-item-row .status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald);
}

/* Architecture Matrix Table */
.matrix-section {
  padding: clamp(48px, 6vw, 84px) 20px;
  background: #ffffff;
}

.matrix-table-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow-x: auto;
  box-shadow: var(--shadow-md);
  margin-top: 36px;
  padding: 12px;
}

.matrix-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  text-align: left;
}

.matrix-table th {
  background: #f8fafc;
  padding: 16px 20px;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.matrix-table td {
  padding: 16px 20px;
  font-size: 13.5px;
  color: var(--body);
  border-bottom: 1px solid var(--line-soft);
  vertical-align: middle;
}

.matrix-table tr:last-child td {
  border-bottom: none;
}

.matrix-table tr:hover td {
  background: #f8fafc;
}

.matrix-col-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.matrix-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--body);
}

.matrix-check {
  color: var(--emerald);
  font-weight: 800;
}