/* ============================================
   VoxWon — Global Stylesheet
   Design: Win Together. · Professional Wireless Audio
   ============================================ */

/* ----- Fonts ----- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700&display=swap');

/* ----- CSS Variables ----- */
/* ----- CSS Variables ----- */
:root {
  --brand: #b87333;        /* Warm copper/gold from logo */
  --brand-dark: #9a5e28;
  --brand-light: #faf0e6;  /* Warm cream */
  --dark: #2c2c2c;         /* Logo dark gray */
  --darker: #1a1a1a;
  --darkest: #0f0f0f;
  --gray-50: #f7f5f2;      /* Warm gray */
  --gray-100: #e8e4df;
  --gray-200: #d4cec7;
  --gray-300: #b0a99f;
  --gray-400: #8c857b;
  --gray-500: #6b655d;
  --gray-600: #4d4842;
  --gray-700: #37332e;
  --gray-800: #24211d;
  --white: #ffffff;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-cn: 'Inter', 'Noto Sans SC', 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --header-h: 80px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.08);
  --transition: .25s ease;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 400;
  overflow-x: hidden;
}
button, input, select, textarea { font-family: inherit; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ----- Utility ----- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

.section-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 600px;
  line-height: 1.7;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .92rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--brand);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,115,51,.25);
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--gray-200);
}
.btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.btn-white {
  background: var(--white);
  color: var(--dark);
}
.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--darker);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--darkest);
  transform: translateY(-2px);
}


/* ============================================
   HEADER / NAV  —  match havitsmart.com size + spacing
   ============================================ */
header {
  position: sticky; top: 0; z-index: 100;
  background: transparent;
  border-bottom: none;
  transition: background .35s ease, box-shadow .35s ease;
}
header.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 48px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: var(--header-h); width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color .2s;
  position: relative;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--brand); }
.nav-links a.nav-cta {
  padding: 10px 24px;
  border-radius: 50px;
  background: var(--brand);
  color: var(--white) !important;
  font-weight: 600;
}
.nav-links a.nav-cta:hover { background: var(--brand-dark); }

/* Support Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 5px; }
.nav-dropdown > a svg { transition: transform .2s; }
.nav-dropdown:hover > a svg { transform: rotate(180deg); }
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  margin-top: 8px; background: rgba(255,255,255,.97);
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 8px; min-width: 200px;
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
  z-index: 200; padding: 6px 0; list-style: none;
}
.dropdown-menu::before {
  content: ''; position: absolute; top: -8px; left: 0; right: 0; height: 8px;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block; padding: 10px 18px; font-size: .85rem;
  color: var(--gray-600); white-space: nowrap;
  transition: all .15s;
}
.dropdown-menu li a:hover { background: var(--gray-50); color: var(--brand); }

/* FAQ Accordion */
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-item:first-child { border-top: 1px solid var(--gray-200); }
.faq-item summary {
  padding: 18px 0; font-weight: 600; font-size: .95rem;
  cursor: pointer; list-style: none; display: flex;
  justify-content: space-between; align-items: center;
  color: var(--dark); transition: color .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.2rem; font-weight: 400;
  color: var(--gray-400); transition: transform .2s;
}
.faq-item[open] summary { color: var(--brand); }
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { color: var(--brand); }
.faq-answer {
  padding: 0 0 18px; color: var(--gray-500);
  font-size: .9rem; line-height: 1.7;
}
.faq-answer a { color: var(--brand); text-decoration: underline; }

/* Download cards hover */
.download-card:hover {
  border-color: var(--brand) !important;
  box-shadow: 0 4px 16px rgba(184,115,51,.12);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.menu-toggle span {
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .3s;
}
header.scrolled .menu-toggle span { background: var(--dark); }

/* Nav Actions (lang + search + menu) */
.nav-actions { display: flex; align-items: center; gap: 12px; }

/* Language Selector */
.nav-lang { position: relative; }
.lang-toggle {
  background: none; border: 1px solid rgba(0,0,0,.15);
  color: var(--gray-600); font-size: .82rem;
  padding: 7px 14px; border-radius: 6px;
  cursor: pointer; display: flex; align-items: center; gap: 8px;
  transition: all .2s; white-space: nowrap;
}
.lang-toggle:hover { border-color: rgba(0,0,0,.25); color: var(--dark); }
.lang-toggle svg { flex-shrink: 0; }
.lang-flag-img { border-radius: 2px; flex-shrink: 0; vertical-align: middle; }
.lang-current { font-weight: 600; }
.lang-dropdown {
  display: none; position: absolute; top: 100%; right: 0;
  margin-top: 8px; background: #24211d; border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; min-width: 220px; max-height: 360px;
  overflow-y: auto; box-shadow: 0 12px 36px rgba(0,0,0,.4);
  z-index: 200; padding: 6px 0; list-style: none;
}
.lang-dropdown.open { display: block; }
.lang-dropdown li {
  padding: 10px 16px; font-size: .85rem; color: rgba(255,255,255,.7);
  cursor: pointer; display: flex; align-items: center; gap: 10px;
  transition: all .15s;
}
.lang-dropdown li img { border-radius: 2px; flex-shrink: 0; }
.lang-dropdown li:hover { background: rgba(255,255,255,.06); color: var(--white); }
.lang-dropdown li.active { background: rgba(184,115,51,.15); color: var(--brand); font-weight: 600; }
.lang-flag { font-size: 1.1rem; }

/* Search */
.nav-search { position: relative; }
.search-toggle {
  background: none; border: 1px solid rgba(0,0,0,.15);
  color: var(--gray-600); font-size: 1rem;
  padding: 7px 12px; border-radius: 6px; cursor: pointer;
  transition: all .2s; display: flex; align-items: center;
}
.search-toggle svg { display: block; }
.search-toggle:hover { border-color: rgba(0,0,0,.25); color: var(--dark); }
.search-panel {
  display: none; position: absolute; top: 100%; right: 0;
  margin-top: 8px; background: #24211d; border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; width: 360px; box-shadow: 0 12px 36px rgba(0,0,0,.4);
  z-index: 200; overflow: hidden;
}
.search-panel.open { display: block; }
.search-box { display: flex; padding: 10px 12px; border-bottom: 1px solid rgba(255,255,255,.08); }
.search-box input {
  flex: 1; background: none; border: none; color: var(--white);
  font-size: .92rem; outline: none; padding: 4px 0;
}
.search-box input::placeholder { color: rgba(255,255,255,.3); }
.search-close {
  background: none; border: none; color: rgba(255,255,255,.4);
  cursor: pointer; font-size: .95rem; padding: 0 4px; line-height: 1;
}
.search-close:hover { color: var(--white); }
.search-results { max-height: 340px; overflow-y: auto; }
.search-results .sr-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; cursor: pointer; border-bottom: 1px solid rgba(255,255,255,.04);
  transition: all .15s; text-decoration: none; color: inherit;
}
.search-results .sr-item:hover { background: rgba(255,255,255,.06); }
.search-results .sr-item .sr-icon { font-size: 1.4rem; flex-shrink: 0; }
.search-results .sr-item .sr-info { flex: 1; }
.search-results .sr-item .sr-name { font-size: .9rem; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.search-results .sr-item .sr-tag { font-size: .75rem; color: var(--gray-400); }
.search-results .sr-empty { padding: 32px 16px; text-align: center; color: var(--gray-400); font-size: .85rem; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--darker);
  color: var(--white);
  padding: 48px 0 32px;
  font-size: .85rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo { color: var(--white); font-size: 1.2rem; }
.footer-brand h4 {
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-brand .tagline {
  color: var(--gray-400);
  font-size: .82rem;
  margin: 8px 0 16px;
  max-width: 280px;
  line-height: 1.6;
}
.footer-brand .contact-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  margin-bottom: 8px;
  font-size: .85rem;
}
.footer-brand .contact-row a { color: var(--white); transition: color var(--transition); }
.footer-brand .contact-row a:hover { color: var(--white); }
.footer-col h4 {
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col a {
  display: block;
  color: var(--white);
  font-size: .85rem;
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: var(--white);
  margin-bottom: 0;
  transition: all var(--transition);
}
.social-links a:hover {
  background: var(--brand);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 0;
  background: #1a1a18;
  overflow: hidden;
  color: #fff;
}
.hero-full {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,18,16,.75) 0%, rgba(20,18,16,.55) 40%, rgba(20,18,16,.25) 70%, rgba(20,18,16,.1) 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: 80px 32px;
}
.hero-content > div {
  max-width: 620px;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.05;
  color: #fff;
}
.hero h1 .accent { color: var(--brand); }
.hero .subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.85);
  margin: 20px 0 12px;
  max-width: 540px;
  line-height: 1.7;
  font-weight: 500;
}
.hero .desc {
  font-size: .95rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 28px;
  max-width: 520px;
  line-height: 1.7;
}
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-trust span {
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-trust span::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-btn-wrap {
  position: absolute;
  bottom: 48px;
  right: 48px;
  z-index: 3;
}
.btn-hero-cta {
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  white-space: nowrap;
}
.btn-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(184,115,51,.4);
}
.hero .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.hero .btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: rgba(255,255,255,.05);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual-placeholder {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #e8ddd0, #d4c4b0);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-weight: 600;
  position: relative;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: #faf9f7;
  padding: 32px 0;
}
.trust-bar .container {
  max-width: 100%;
  padding: 0 clamp(24px, 4vw, 80px);
}
.trust-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px 32px;
  flex-wrap: wrap;
  text-align: center;
}
.trust-item {
  position: relative;
}
.trust-item + .trust-item::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 24px;
  background: var(--gray-300);
}
.trust-item .trust-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}
.trust-item .trust-desc {
  font-size: .8rem;
  color: var(--gray-400);
  margin-top: 4px;
  line-height: 1.4;
  white-space: nowrap;
}
.trust-divider {
  width: 1px;
  background: var(--gray-200);
}

/* ============================================
   VALUE PROPOSITION
   ============================================ */
.value-prop {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--gray-600);
  line-height: 1.8;
}
.value-prop strong { color: var(--dark); }

/* ============================================
   PRODUCT CARDS
   ============================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-dark));
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover::before { opacity: 1; }
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.product-card .tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brand);
  background: var(--brand-light);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.product-card .icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--brand-light);
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.product-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.product-card p { color: var(--gray-500); font-size: .92rem; line-height: 1.7; }
.product-card .features {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-card .features li {
  font-size: .85rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-card .features li svg {
  width: 16px; height: 16px;
  color: var(--brand);
  flex-shrink: 0;
}
.product-card .scene-tags {
  display: flex;
  gap: 8px;
  margin: 16px 0;
  flex-wrap: wrap;
}
.product-card .scene-tags span {
  font-size: .78rem;
  background: var(--gray-50);
  padding: 4px 12px;
  border-radius: 20px;
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
}
.product-card .moq {
  font-size: .85rem;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 16px;
}
.product-card .card-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.product-card .card-actions .btn {
  padding: 10px 20px;
  font-size: .85rem;
}

/* ============================================
   PRODUCTS PAGE (boyamic-style)
   ============================================ */
/* Products explore heading (boyamic-style) */
.prod-explore {
  padding: 80px 0 20px;
  text-align: center;
}
.prod-explore h1 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -.02em;
}

.prod-cat-nav {
  border-bottom: 1px solid var(--gray-100);
  padding: 20px 0;
  background: var(--white);
}
.prod-cat-nav ul {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.prod-cat-nav li a {
  font-size: .95rem;
  font-weight: 500;
  color: var(--gray-500);
  transition: color .2s;
}
.prod-cat-nav li a:hover,
.prod-cat-nav li a.active {
  color: var(--dark);
}

.boyamic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 32px;
}
.boyamic-card {
  text-align: center;
}
.boyamic-card a img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform var(--transition);
}
.boyamic-card a:hover img {
  transform: scale(1.02);
}
.boyamic-card h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 24px;
  color: var(--dark);
}
.boyamic-card h3 {
  font-size: .95rem;
  font-weight: 400;
  color: var(--gray-500);
  margin-top: 8px;
  line-height: 1.6;
}
.boyamic-buy {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 28px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--brand);
  border: 1px solid var(--brand);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.boyamic-buy:hover {
  background: var(--brand);
  color: var(--white);
}

/* Products list pagination (8 per page, prev/next) */
.vpro-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 44px 0 8px;
}
.vpro-page-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  border: 1px solid var(--brand);
  border-radius: 8px;
  color: var(--brand);
  font-weight: 600;
  font-size: .92rem;
  text-decoration: none;
  transition: background .25s ease, color .25s ease;
}
.vpro-page-link:hover {
  background: var(--brand);
  color: #fff;
}
.vpro-page-link.is-disabled {
  opacity: .35;
  pointer-events: none;
}
.vpro-page-info {
  font-size: .88rem;
  color: var(--gray-500);
}

@media (max-width: 991px) {
  .boyamic-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
}
@media (max-width: 768px) {
  .boyamic-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .prod-cat-nav ul {
    gap: 20px;
  }
  .reseller-why-grid,
  .reseller-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .reseller-form {
    padding: 28px 20px;
  }
  .reseller-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .reseller-hero,
  .reseller-section {
    padding: 60px 0;
  }
  .partner-app-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .partner-app-form {
    padding: 24px 20px;
  }
  .partner-hero {
    padding: 60px 24px;
  }
  .partner-hero h1 {
    font-size: 32px;
  }
  .partner-hero p {
    font-size: 17px;
  }
  .partner-hero .partner-hero-sub {
    font-size: 19px;
  }
  .partner-section {
    padding: 60px 24px;
  }
  .partner-section-title {
    font-size: 26px;
    margin-bottom: 40px;
  }
  .vw-aud { padding: 96px 0 80px; }
  .vw-aud-head { margin-bottom: 64px; }
  .vw-aud-list { grid-template-columns: 1fr; }
  .vw-aud-item { padding: 44px 0; }
  .vw-aud-item:nth-child(odd) { border-right: none; }
  .vw-aud-item:nth-child(-n+2) { border-bottom: 1px solid #e8e6e3; }
  .vw-aud-num { padding-top: 0; }
}

/* Pagination (boyamic-style) */
.boyamic-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 80px;
}
.boyamic-pagination .page-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
}
.boyamic-pagination .page-btn:hover:not(:disabled) {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}
.boyamic-pagination .page-btn:disabled {
  opacity: .35;
  cursor: not-allowed;
}
.boyamic-pagination .page-info {
  font-size: 1rem;
  color: var(--dark);
  font-weight: 500;
  min-width: 60px;
  text-align: center;
}

/* Paginated card visibility */
.boyamic-card { display: block; }
.boyamic-card[data-page]:not(.p-active) { display: none; }

/* ============================================
   THE STARS (boyamic-style product showcase)
   2-col grid · full-width 1.91:1 image · overlay text · bottom buttons
   ============================================ */
.stars-section {
  background: var(--white);
  padding: 100px 0;
}
.stars-heading h2 {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 400;
  color: #000;
  text-align: left;
  letter-spacing: -.03em;
  margin-bottom: 30px;
}
.stars-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-top: 30px;
}
.stars-section .container {
  max-width: 100%;
  padding: 0 clamp(24px, 4vw, 80px);
}
.apps-section .container {
  max-width: 100%;
  padding: 0 clamp(24px, 4vw, 80px);
}
.reviews-section .container {
  max-width: 100%;
  padding: 0 clamp(24px, 4vw, 80px);
}
.partner-cta-section .container {
  max-width: 100%;
  padding: 0 clamp(24px, 4vw, 80px);
}
.prod-explore .container,
.prod-cat-nav .container,
.prod-grid-section .container {
  max-width: 100%;
  padding: 0 clamp(24px, 4vw, 80px);
}
.star-card {
  position: relative;
  background: #f6f6f6;
  border: 1px solid var(--gray-100);
  border-radius: 22px;
  overflow: hidden;
  min-height: 260px;
  width: calc(50% - 20px);
}
.star-img-link { display: block; position: relative; }
.star-img-link img {
  display: block;
  width: 100%;
  aspect-ratio: 1340 / 700;
  object-fit: cover;
  transition: transform .4s ease;
}
.star-img-link:hover img { transform: scale(1.05); }
.star-info {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 320px;
  max-width: calc(100% - 80px);
  z-index: 2;
  pointer-events: none;
}
.star-info h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
  color: #000;
  margin-bottom: 10px;
}
.star-info p {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}
.star-actions {
  position: absolute;
  bottom: 16px;
  left: 40px;
  z-index: 2;
}
.star-btn {
  display: inline-block;
  min-width: 90px;
  text-align: center;
  padding: 9px 20px;
  border-radius: 100px;
  background: var(--white);
  color: var(--brand);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--brand);
  transition: all .2s ease;
}
.star-btn:hover {
  background: var(--brand);
  color: var(--white);
}

/* ============================================
   THE APPLICATIONS (boyamic style — zigzag list)
   ============================================ */
.apps-list {
  margin-top: 30px;
}
.app-item {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}
.app-item:last-child { margin-bottom: 0; }
.app-img {
  flex-shrink: 0;
  width: 740px;
  max-width: 55%;
  border-radius: 16px;
  overflow: hidden;
}
.app-img img {
  display: block;
  width: 100%;
  aspect-ratio: 740 / 430;
  object-fit: cover;
}
.app-item:nth-child(even) .app-img { order: 2; }
.app-info { flex: 1; }
.app-info h3 {
  font-size: 32px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}
.app-info p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--gray-500);
}

/* ============================================
   FEATURES GRID (Why VoxWon)
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.feature-item {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}
.feature-item:hover { box-shadow: var(--shadow-md); }
.feature-item .fi-icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  font-size: 1.8rem;
  line-height: 56px;
}
.feature-item h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.feature-item p { color: var(--gray-500); font-size: .88rem; line-height: 1.6; }

/* ============================================
   SCENE TAGS
   ============================================ */
.scene-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.scene-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  transition: all var(--transition);
}
.scene-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-sm);
}
.scene-card .sc-icon { font-size: 2rem; margin-bottom: 12px; }
.scene-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.scene-card p { font-size: .85rem; color: var(--gray-400); }

/* ============================================
   REVIEWS (Hollyland-style carousel — exact match)
   ============================================ */
.reviews-section { padding-bottom: 100px; }
.reviews-section .stars-heading h2 { margin-bottom: 16px; }
.reviews-wrap { position: relative; }
.reviews-swiper {
  padding: 0 0 16px;
  overflow: hidden;
}
.reviews-swiper .swiper-wrapper {
  align-items: stretch;
}
.reviews-swiper .swiper-slide {
  height: auto;
}
.review-box {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 70px;
  height: 100%;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: all .3s ease;
}
.review-box:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  transform: translateY(-4px);
}
.review-box img {
  width: 202px;
  height: 202px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.review-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}
.review-user {
  font-size: 30px;
  font-weight: 700;
  color: var(--dark);
}
.review-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-500);
}
.reviews-pagination {
  bottom: 0 !important;
}
.reviews-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 2px;
  background: var(--gray-300);
  opacity: 1;
  border-radius: 0;
  transition: all .2s;
}
.reviews-pagination .swiper-pagination-bullet-active {
  background: var(--brand);
}
.reviews-button-prev,
.reviews-button-next {
  color: var(--dark) !important;
  background: var(--white);
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
  transition: all .2s;
}
.reviews-button-prev::after,
.reviews-button-next::after {
  font-size: 24px !important;
  font-weight: 700;
}
.reviews-button-prev { left: -22px !important; }
.reviews-button-next { right: -22px !important; }

@media (max-width: 991px) {
  .reviews-swiper { height: 133.33vw; }
  .review-box {
    flex-direction: column;
    text-align: center;
    padding: 48px 24px 40px;
    gap: 15px;
  }
  .review-box img {
    width: 26.93vw;
    height: 26.93vw;
    margin-bottom: 15px;
  }
  .review-text-wrap { width: 73.33vw; gap: 12px; }
  .review-user { font-size: 20px; }
  .review-desc { font-size: 14px; }
  .reviews-button-prev,
  .reviews-button-next { display: none !important; }
}

/* ============================================
   PARTNER CTA
   ============================================ */
.partner-section {
  padding: 100px 0;
  background: var(--white);
}
.partner-box {
  max-width: none;
  margin: 0;
  text-align: center;
}
.partner-title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.15;
  color: var(--dark);
  margin-top: 8px;
}
.partner-sub {
  font-size: 1.05rem;
  color: var(--gray-500);
  margin: 16px 0 32px;
}
.partner-btn {
  padding: 14px 40px;
  font-size: .95rem;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
  padding: 60px 0;
  background: var(--gray-50);
  text-align: center;
}
.page-header h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
.page-header p {
  color: var(--gray-500);
  font-size: 1.05rem;
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.contact-page-header {
  min-height: 6cm;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 0;
}
.contact-page-header h1 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  margin: 0;
}
.contact-page-header p {
  font-size: .92rem;
  margin-top: 6px;
}

/* ============================================
   FIND YOUR LOCAL RESELLER (empty state)
   ============================================ */
.reseller-empty-hero {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
  background: var(--white);
}
.reseller-empty-hero .container { max-width: 720px; }
.reseller-empty-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--dark);
  margin-bottom: 16px;
}
.reseller-empty-sub {
  font-size: 1.25rem;
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 24px;
}
.reseller-empty-body {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.reseller-empty-hero .btn { padding: 16px 40px; font-size: 1rem; }

/* ============================================
   BECOME A RESELLER PAGE
   ============================================ */
.reseller-hero {
  background: linear-gradient(135deg, #1a1a18 0%, #2c2c2c 100%);
  color: #fff;
  padding: 120px 0;
  text-align: center;
}
.reseller-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 20px;
  line-height: 1.15;
}
.reseller-hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.reseller-hero .btn { padding: 16px 40px; font-size: 1rem; }

.reseller-section {
  padding: 100px 0;
}
.reseller-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  letter-spacing: -.03em;
  margin-bottom: 56px;
}
.reseller-section.gray { background: var(--gray-50); }

/* Why Partner grid */
.reseller-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.reseller-why-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.reseller-why-card:hover {
  border-color: var(--brand);
  box-shadow: 0 8px 24px rgba(184,115,51,.08);
  transform: translateY(-4px);
}
.reseller-why-card .why-icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--brand-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
  font-weight: 800;
  font-size: 1.5rem;
}
.reseller-why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}
.reseller-why-card p {
  font-size: .92rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* How It Works steps */
.reseller-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.reseller-step {
  text-align: center;
  position: relative;
}
.reseller-step .step-num {
  width: 64px; height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  position: relative;
  z-index: 2;
}
.reseller-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}
.reseller-step p {
  font-size: .92rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Requirements list */
.reseller-req-list {
  max-width: 640px;
  margin: 0 auto;
  list-style: none;
}
.reseller-req-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 24px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--dark);
  font-weight: 500;
}
.reseller-req-list li::before {
  content: '';
  display: block;
  width: 20px; height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b87333' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Apply Form */
.reseller-form {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.reseller-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.reseller-form .form-field {
  margin-bottom: 20px;
}
.reseller-form label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.reseller-form label .required { color: var(--brand); }
.reseller-form input,
.reseller-form select,
.reseller-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition);
}
.reseller-form input:focus,
.reseller-form select:focus,
.reseller-form textarea:focus {
  outline: none;
  border-color: var(--brand);
}
.reseller-form textarea {
  resize: vertical;
  min-height: 100px;
}
.reseller-form .form-submit {
  text-align: center;
  margin-top: 8px;
}
.reseller-form .btn {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 1rem;
}
.reseller-form .form-trust {
  text-align: center;
  font-size: .82rem;
  color: var(--gray-500);
  margin-top: 20px;
  line-height: 1.6;
}

/* FAQ on reseller page */
.reseller-faq {
  max-width: 800px;
  margin: 0 auto;
}

/* Thank you page */
.reseller-thanks {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
  background: var(--white);
}
.reseller-thanks .container { max-width: 600px; }
.reseller-thanks .check-icon {
  width: 80px; height: 80px;
  margin: 0 auto 32px;
  border-radius: 50%;
  background: var(--brand);
  display: flex; align-items: center; justify-content: center;
}
.reseller-thanks h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--dark);
}
.reseller-thanks p {
  font-size: 1.1rem;
  color: var(--gray-500);
  margin-bottom: 36px;
  line-height: 1.7;
}

/* OEM / ODM CTA */
.reseller-oem-cta {
  background: #F8F9FA;
  padding: 60px 24px;
  text-align: center;
}
.reseller-oem-cta h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
}
.reseller-oem-cta p {
  font-size: 16px;
  color: #555;
  max-width: 640px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.reseller-oem-btn {
  display: inline-block;
  background: #fff;
  color: #b87333;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  transition: background .2s, color .2s, border-color .2s;
  border: 2px solid #b87333;
}
.reseller-oem-btn:hover { background: #b87333; color: #fff; }

/* ============================================
   BECOME A PARTNER PAGE
   ============================================ */
.partner-hero {
  background: #1a1a18 url('/images/partner-hero-bg.webp') center/cover no-repeat;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  text-align: left;
  position: relative;
}
.partner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,26,24,.55);
  z-index: 0;
}
.partner-hero .container {
  position: relative;
  z-index: 1;
  flex: 0 1 900px;
  margin: 0;
  padding: 0 32px;
}
.partner-hero h1 {
  font-size: clamp(36px, 5.2vw, 68px);
  font-weight: 400;
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: 20px;
  line-height: 1.02;
}
.partner-hero .partner-hero-sub {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 400;
  color: #FFFFFF;
  max-width: 720px;
  margin: 0 0 28px;
  line-height: 1.5;
  letter-spacing: -.01em;
}
.partner-hero p {
  font-size: clamp(16px, 1.3vw, 19px);
  color: #C7C7CC;
  max-width: 720px;
  margin: 0;
  line-height: 1.6;
}

/* ============================================
   WHO WE WORK WITH — Editorial list
   ============================================ */
.vw-aud {
  background: #FFFFFF;
  padding: 140px 0 120px;
}
.vw-aud-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.vw-aud-title {
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 300;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: #1D1D1F;
  margin: 0;
}
.vw-aud-sub {
  font-size: clamp(16px, 1.3vw, 18px);
  font-weight: 400;
  line-height: 1.7;
  color: #86868B;
  max-width: 560px;
  margin: 20px auto 0;
}
.vw-aud-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}
.vw-aud-item {
  padding: 48px 48px 56px;
}
/* 细分割线：横向（01|02 与 03|04 之间）+ 纵向（左右列之间） */
.vw-aud-item:nth-child(odd) {
  border-right: 1px solid #e8e6e3;
}
.vw-aud-item:nth-child(-n+2) {
  border-bottom: 1px solid #e8e6e3;
}
.vw-aud-grid {
  display: block;
}
.vw-aud-num {
  display: block;
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1;
  color: #d9b894;
  padding-top: 0;
  margin-bottom: 24px;
}
.vw-aud-name {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1.3;
  color: #1D1D1F;
  margin: 0 0 10px;
}
.vw-aud-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: #86868B;
  max-width: 380px;
  margin: 0;
}

/* ========== Two Ways to Grow with VOXWON (dual-path editorial flow) ========== */
.vw-grow {
  padding: 140px 0 120px;
  background: #FAF9F7;
}
.vw-grow-head {
  text-align: center;
  margin-bottom: 72px;
}
.vw-grow-title {
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 300;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: #1D1D1F;
  margin: 0;
}
.vw-grow-cols {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}
.vw-grow-col {
  position: relative;
  border-radius: 4px;
}
.vw-grow-col-head {
  margin-bottom: 24px;
}
.vw-grow-num {
  display: block;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: .02em;
  margin-bottom: 20px;
}
.vw-grow-col-title {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin: 0;
}
/* Timeline flow: steps separated by a hairline + ↓ marker */
.vw-grow-steps {
  display: flex;
  flex-direction: column;
}
.vw-grow-step {
  padding: 26px 0;
  position: relative;
  border-bottom: 1px solid;
}
.vw-grow-step:last-child {
  border-bottom: none;
}
.vw-grow-step:not(:last-child)::after {
  content: '↓';
  position: absolute;
  left: 0;
  bottom: -12px;
  font-size: 13px;
  line-height: 1;
  opacity: .55;
  pointer-events: none;
}
.vw-grow-step-name {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.3;
  margin: 0 0 6px;
}
.vw-grow-step-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  margin: 0;
  max-width: 430px;
}
.vw-grow-note {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.7;
  margin: 32px 0 0;
  max-width: 460px;
}
/* Main path (Grow with VOXWON) — dark, high visual weight */
.vw-grow-main {
  background: #141414;
  color: #FFFFFF;
  padding: 64px 56px;
}
.vw-grow-main .vw-grow-num { color: #b87333; }
.vw-grow-main .vw-grow-col-title { color: #FFFFFF; }
.vw-grow-main .vw-grow-step { border-color: rgba(255,255,255,.1); }
.vw-grow-main .vw-grow-step-name { color: #FFFFFF; }
.vw-grow-main .vw-grow-step-desc { color: rgba(255,255,255,.72); }
.vw-grow-main .vw-grow-step:not(:last-child)::after { color: #b87333; }
.vw-grow-main .vw-grow-note { color: rgba(255,255,255,.55); }
/* Secondary path (Build Your Own Brand) — light, subdued */
.vw-grow-brand {
  background: #FFFFFF;
  border: 1px solid #e8e6e3;
  padding: 48px 40px;
}
.vw-grow-brand .vw-grow-num { color: #b8b2ab; }
.vw-grow-brand .vw-grow-col-title { color: #1D1D1F; }
.vw-grow-brand .vw-grow-step { border-color: #e8e6e3; }
.vw-grow-brand .vw-grow-step-name { color: #1D1D1F; }
.vw-grow-brand .vw-grow-step-desc { color: #86868B; }
.vw-grow-brand .vw-grow-step:not(:last-child)::after { color: #b8b2ab; }
.vw-grow-brand .vw-grow-note { color: #86868B; }

/* ========== Simple to Start. Built to Scale. (four-column minimal) ========== */
.vw-scale {
  padding: 120px 0 130px;
  background: #FFFFFF;
}
.vw-scale-head {
  text-align: center;
  margin-bottom: 72px;
}
.vw-scale-title {
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 300;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: #1D1D1F;
  margin: 0;
}
.vw-scale-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.vw-scale-item {
  padding-top: 28px;
  border-top: 1px solid #e8e6e3;
}
.vw-scale-name {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1.3;
  color: #1D1D1F;
  margin: 0 0 12px;
}
.vw-scale-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: #86868B;
  margin: 0;
}

/* ========== How Partnership Works ========== */
.vw-how {
  padding: 90px 0 120px;
  background: #FFFFFF;
}
.vw-how-head {
  text-align: center;
  margin-bottom: 72px;
}
.vw-how-title {
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 300;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: #1D1D1F;
  margin: 0 0 16px;
}
.vw-how-sub {
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 400;
  line-height: 1.7;
  color: #86868B;
  max-width: 560px;
  margin: 0 auto;
}
.vw-how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}
.vw-how-step {
  display: flex;
  align-items: center;
  gap: 14px;
}
.vw-how-step-arrow {
  flex: none;
  font-size: 24px;
  color: #b87333;
  font-weight: 400;
  line-height: 1;
}
.vw-how-step:first-child .vw-how-step-arrow { display: none; }
.vw-how-card {
  flex: 1;
  background: #FAF9F7;
  border-radius: 8px;
  padding: 32px 28px;
  min-height: 150px;
}
.vw-how-name {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1.3;
  color: #1A1A1A;
  margin: 0 0 10px;
}
.vw-how-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: #86868B;
  margin: 0;
}
.vw-how-divider {
  max-width: 1200px;
  height: 1px;
  background: #e8e6e3;
  margin: 64px auto 32px;
}
.vw-how-perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.vw-how-perk {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .01em;
  color: #1A1A1A;
  white-space: nowrap;
}

.partner-cta {
  display: inline-block;
  background: #b87333;
  color: #fff;
  padding: 14px 36px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: background .2s, transform .2s;
  border: none;
  cursor: pointer;
}
.partner-cta:hover {
  background: #9a5e28;
  transform: translateY(-2px);
}

.partner-section {
  padding: 100px 0;
  background: #FFFFFF;
}
.partner-section.gray { background: #F8F9FA; }
.partner-section-title {
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 300;
  text-align: center;
  color: #1D1D1F;
  letter-spacing: -.02em;
  margin-bottom: 48px;
}

/* Partner Requirements */
.partner-req-intro {
  text-align: center;
  font-size: 1rem;
  color: #555;
  margin-bottom: 36px;
  line-height: 1.7;
}
.partner-req-list {
  max-width: 900px;
  margin: 0 auto;
  list-style: none;
}
.partner-req-list li {
  padding: 14px 0;
  border-bottom: 1px solid #eee;
  font-size: 1rem;
  color: #1A1A2E;
  line-height: 1.7;
  padding-left: 24px;
  position: relative;
}
.partner-req-list li:first-child { border-top: 1px solid #eee; }
.partner-req-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #b87333;
}

/* FAQ - HAVIT style */
.partner-faq {
  max-width: 900px;
  margin: 0 auto;
  background: #FAFBFC;
  border-radius: 16px;
  padding: 40px 32px;
}
.partner-faq-item {
  background: #fff;
  border-radius: 12px;
  padding: 20px 24px 20px 48px;
  border: 1px solid #f6f6f8;
  margin-bottom: 16px;
  position: relative;
  transition: box-shadow .25s ease, border-color .25s ease, transform .25s ease;
}
.partner-faq-item:hover {
  box-shadow: 0 4px 16px rgba(32,55,90,.08);
  border-color: #e8e8ea;
  transform: translateY(-2px);
}
.partner-faq-item:hover .partner-faq-num {
  background: #b87333;
  color: #fff;
}
.partner-faq-item:last-child { margin-bottom: 0; }
.partner-faq-q {
  font-size: 19px;
  font-weight: 700;
  color: #1A1A2E;
  display: flex;
  align-items: center;
  gap: 14px;
}
.partner-faq-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #faf0e6;
  color: #b87333;
  font-size: 19px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.partner-faq-a {
  font-size: 16px;
  color: #555;
  line-height: 1.75;
  margin-top: 10px;
  padding-left: 52px;
}

/* Reseller Application Form */
.partner-form-sub {
  text-align: center;
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
}
.partner-app-form {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  padding: 40px;
}
.partner-app-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.partner-app-field {
  margin-bottom: 20px;
}
.partner-app-field label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: #1A1A2E;
  margin-bottom: 8px;
}
.partner-app-field label .required { color: #b87333; }
.partner-app-field input,
.partner-app-field select,
.partner-app-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: .95rem;
  color: #1A1A2E;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.partner-app-field input:focus,
.partner-app-field select:focus,
.partner-app-field textarea:focus {
  outline: none;
  border-color: #b87333;
  box-shadow: 0 0 0 3px rgba(184,115,51,.1);
}
.partner-app-field textarea { resize: vertical; min-height: 100px; }
.partner-app-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 8px 0;
}
.partner-app-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  color: #1A1A2E;
  cursor: pointer;
  font-weight: 400;
}
.partner-app-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #b87333;
  flex-shrink: 0;
}
.partner-app-submit {
  text-align: center;
  margin-top: 12px;
}
.partner-app-submit .partner-cta { width: 100%; }
.partner-form-trust {
  text-align: center;
  font-size: .82rem;
  color: #888;
  margin-top: 20px;
  line-height: 1.6;
}

/* Thank you page */
.partner-thanks {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
  background: #fff;
}
.partner-thanks .container { max-width: 600px; }
.partner-thanks-check {
  width: 80px; height: 80px;
  margin: 0 auto 32px;
  border-radius: 50%;
  background: #b87333;
  display: flex; align-items: center; justify-content: center;
}
.partner-thanks h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: #1A1A2E;
}
.partner-thanks p {
  font-size: 1.05rem;
  color: #666;
  margin-bottom: 36px;
  line-height: 1.7;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-section {
  background: var(--white);
  padding-top: 24px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  margin-top: 0;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.contact-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gray-900);
}
.contact-card .card-hours {
  font-size: .82rem;
  color: var(--gray-500);
  margin: 0 0 22px;
  line-height: 1.5;
}
.contact-info .info-item {
  display: block;
  margin-bottom: 18px;
}
.contact-info .info-item:last-child { margin-bottom: 0; }
.contact-info .info-item .ci-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--gray-400);
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-info .info-item .ci-value {
  font-weight: 500;
  font-size: .95rem;
  color: var(--gray-800);
}
.contact-info .info-item .ci-value a {
  color: var(--gray-800);
  text-decoration: none;
  transition: color .15s;
}
.contact-info .info-item .ci-value a:hover { color: var(--brand); }
.contact-form-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 36px 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.contact-form-card .form-heading {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 8px;
}
.contact-form-card .form-subtitle {
  font-size: .92rem;
  color: var(--gray-500);
  margin: 0 0 28px;
  line-height: 1.55;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gray-700);
}
.form-group label .required { color: #ef4444; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid var(--gray-100);
  border-radius: 0;
  font-size: .95rem;
  font-family: inherit;
  background: transparent;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--gray-100);
  box-shadow: none;
}
.form-group select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2 4l4 4 4-4' stroke='%239ca3af' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 20px;
  cursor: pointer;
}
.form-group textarea {
  min-height: 140px;
  resize: vertical;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-top: 4px;
}
.form-group textarea:focus {
  border-color: var(--gray-100);
}
.contact-form-card .btn-primary {
  margin-top: 12px;
  padding: 14px 24px;
  font-weight: 600;
  letter-spacing: .3px;
  border-radius: var(--radius-md);
}
.contact-submit {
  display: inline-block;
  margin-top: 20px;
  height: 40px;
  padding: 0 20px;
  font-size: .82rem;
  font-weight: 500;
  font-family: inherit;
  color: var(--brand);
  background: #fff;
  border: 1px solid var(--brand);
  border-radius: 20px;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: background .15s, color .15s;
}
.contact-submit:hover {
  background: var(--brand);
  color: #fff;
}
.form-group .radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group .radio-group label {
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.form-privacy {
  font-size: .82rem;
  color: var(--gray-400);
  margin: 20px 0 0;
  text-align: left;
}

/* ============================================
   ABOUT / TIMELINE / STATS
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.stat-item { text-align: center; }
.stat-item .num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand);
}
.stat-item .label {
  font-size: .82rem;
  color: var(--gray-400);
  margin-top: 4px;
}

/* Timeline */
.timeline { position: relative; margin-top: 48px; }
.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding-bottom: 32px;
  position: relative;
}
.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 50px;
  top: 28px;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}
.timeline-item .year {
  font-weight: 800;
  color: var(--brand);
  font-size: 1.1rem;
}
.timeline-item .desc h4 { font-weight: 700; margin-bottom: 4px; }
.timeline-item .desc p { color: var(--gray-500); font-size: .88rem; }

/* Image Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.gallery-item {
  aspect-ratio: 4/3;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-weight: 500;
  font-size: .88rem;
}

/* Certifications */
.cert-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.cert-item {
  padding: 16px 28px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray-700);
  background: var(--white);
}

/* Commitment */
.commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.commitment-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-md);
  background: var(--gray-50);
}
.commitment-card .co-icon { font-size: 2rem; margin-bottom: 12px; }
.commitment-card h4 { font-weight: 700; margin-bottom: 8px; }
.commitment-card p { color: var(--gray-500); font-size: .88rem; }

/* ============================================
   NEWS
   ============================================ */
.news-list { margin-top: 48px; }
.news-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-100);
  align-items: center;
}
.news-item:first-child { padding-top: 0; }
.news-thumb {
  aspect-ratio: 16/10;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: .85rem;
}
.news-content .date {
  font-size: .82rem;
  color: var(--gray-400);
  margin-bottom: 6px;
}
.news-content h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.news-content .summary {
  color: var(--gray-500);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
.news-content .read-more {
  color: var(--brand);
  font-weight: 600;
  font-size: .88rem;
}
.news-content .read-more:hover { text-decoration: underline; }

/* ============================================
   DISTRIBUTOR PAGE SPECIFIC
   ============================================ */
.distributor-hero {
  background: linear-gradient(180deg, var(--darker) 0%, #2c1f0f 100%);
  color: var(--white);
  padding: 100px 0;
}
.distributor-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; }
.distributor-hero p { color: rgba(255,255,255,.6); max-width: 600px; }
.value-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.value-icon-card {
  text-align: center;
  padding: 36px 20px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
}
.value-icon-card .vic-icon { font-size: 2.2rem; margin-bottom: 12px; }
.value-icon-card h4 { font-weight: 700; margin-bottom: 6px; }
.value-icon-card p { color: var(--gray-500); font-size: .85rem; }

/* ============================================
   ADMIN PANEL
   ============================================ */
.admin-body {
  background: var(--gray-100);
}
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.admin-login-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.admin-login-box h1 { font-size: 1.5rem; margin-bottom: 8px; }
.admin-login-box p { color: var(--gray-500); margin-bottom: 24px; }
.admin-login-box input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  margin-bottom: 16px;
}
.admin-login-box input:focus {
  outline: none;
  border-color: var(--brand);
}
.admin-panel {
  display: flex;
  min-height: 100vh;
}
.admin-sidebar {
  width: 240px;
  background: var(--darker);
  color: var(--white);
  padding: 24px 0;
  flex-shrink: 0;
}
.admin-sidebar .admin-logo {
  padding: 0 20px 24px;
  font-weight: 700;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 16px;
}
.admin-sidebar .admin-logo span { color: #a5b4fc; }
.admin-sidebar a {
  display: block;
  padding: 12px 20px;
  color: rgba(255,255,255,.6);
  transition: all var(--transition);
  font-size: .9rem;
}
.admin-sidebar a:hover,
.admin-sidebar a.active {
  background: rgba(255,255,255,.08);
  color: var(--white);
}
.admin-main {
  flex: 1;
  padding: 32px 40px;
  overflow-y: auto;
}
.admin-main h2 { font-size: 1.5rem; margin-bottom: 24px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-content { padding: 60px 24px; }
  .about-grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form .form-row { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stars-grid { gap: 24px; }
  .star-card { width: calc(50% - 12px); }
  .app-item { gap: 40px; margin-bottom: 60px; }
  .app-img { max-width: 50%; }
  .app-info h3 { font-size: 24px; }
  .app-info p { font-size: 14px; }
  .star-info { top: 24px; left: 24px; width: 260px; max-width: calc(100% - 48px); }
  .star-actions { left: 24px; }
  .star-info h3 { font-size: 24px; }
  .star-info p { font-size: 14px; }
}
@media (max-width: 868px) {
  .hero-content { padding: 60px 24px; text-align: center; }
  .hero .subtitle,
  .hero .desc,
  .hero-actions { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .news-item { grid-template-columns: 1fr; }
  .news-thumb { aspect-ratio: 16/7; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: var(--header-h); left: 0; right: 0;
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid rgba(0,0,0,.08);
    padding: 20px 24px; gap: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,.1);
  }
  .nav-links.open a { color: var(--gray-600); }
  .nav-links.open a:hover { color: var(--brand); }
  .nav-links.open .nav-dropdown { position: static; }
  .nav-links.open .dropdown-menu {
    display: block; position: static; background: transparent;
    border: none; box-shadow: none; padding: 4px 0 4px 16px;
    margin-top: 0; min-width: 0;
  }
  .nav-links.open .dropdown-menu li a { padding: 8px 0; font-size: .82rem; }
  .nav-links.open .nav-dropdown:hover > a svg { transform: none; }
  .menu-toggle { display: flex; }
  .search-panel { width: 280px; right: -40px; }
  .lang-dropdown { min-width: 180px; }
  .stats-row { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .stat-item .num { font-size: 1.5rem; }
  .commitment-grid { grid-template-columns: 1fr; }
  .admin-sidebar { width: 200px; }
}
@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .hero-content { padding: 48px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-grid { flex-wrap: wrap; gap: 16px; }
  .trust-item + .trust-item::before { display: none; }
  .trust-item .trust-title { font-size: .95rem; }
  .trust-item .trust-desc { font-size: .75rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 80px 1fr; gap: 16px; }
  .cert-grid { gap: 12px; }
  .search-panel { width: calc(100vw - 40px); right: -80px; }
  .lang-toggle { padding: 6px 10px; font-size: .75rem; }
  .nav-actions { gap: 6px; }
  .admin-main { padding: 20px; }
  .contact-form .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form-card { padding: 24px 20px; }
  .admin-sidebar { width: 56px; overflow: hidden; }
  .admin-sidebar a span,
  .admin-sidebar .admin-logo span,
  .admin-sidebar .admin-logo { display: none; }
  .stars-section { padding: 64px 0; }
  .stars-grid { gap: 12px; }
  .star-card { width: 100%; }
  .star-card { min-height: 200px; border-radius: 16px; }
  .app-item { flex-direction: column; gap: 20px; margin-bottom: 50px; align-items: stretch; }
  .app-item:nth-child(even) .app-img { order: 0; }
  .app-img { max-width: 100%; width: 100%; }
  .app-info h3 { font-size: 20px; }
  .star-info { top: 20px; left: 20px; width: 220px; max-width: calc(100% - 40px); }
  .star-actions { left: 20px; bottom: 12px; }
  .star-info h3 { font-size: 20px; margin-bottom: 6px; }
  .star-info p { font-size: 13px; line-height: 1.4; }
  .star-btn { min-width: 80px; padding: 8px 16px; font-size: 12px; }
}

/* ========== VOXWON About Page (Premium Audio Brand) ========== */
.vw-about {
  background: #FFFFFF;
  color: #1D1D1F;
  font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========== VOXWON Partner Page (same typography as About) ========== */
.vw-partner {
  background: #FFFFFF;
  color: #1D1D1F;
  font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- 1. HERO --- */
.vw-hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 100px;
  background: #0B0B0F;
}
.vw-hero-bg {
  position: absolute;
  inset: 0;
  background: #0d0d10 url('/images/about-hero-bg.webp') center / cover no-repeat;
  z-index: 0;
}
.vw-hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(11,11,15,.45) 0%, rgba(11,11,15,.25) 50%, rgba(11,11,15,.1) 100%),
    radial-gradient(circle at 30% 50%, rgba(255,255,255,.025) 1px, transparent 1px),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 60px 60px, 90px 90px;
  z-index: 1;
  pointer-events: none;
}
.vw-hero .container { position: relative; z-index: 2; }
.vw-hero-inner {
  max-width: 900px;
  color: #F5F5F7;
}
.vw-hero-title {
  font-size: clamp(36px, 5.2vw, 68px);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1.02;
  margin: 0 0 20px;
  color: #FFFFFF;
}
.vw-hero-sub {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 400;
  color: #b87333;
  margin: 0 0 28px;
  letter-spacing: -.01em;
}
.vw-hero-copy {
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 400;
  color: #C7C7CC;
  max-width: 620px;
  margin: 0 0 40px;
  line-height: 1.6;
}
.vw-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.vw-btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: #b87333;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 10px;
  letter-spacing: .01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.vw-btn-primary:hover {
  background: #9a5e28;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(184,115,51,.25);
}
.vw-btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: #F5F5F7;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.2);
  letter-spacing: .01em;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.vw-btn-secondary:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.35);
  transform: translateY(-1px);
}

/* --- Section base --- */
.vw-section {
  padding: 100px 0;
  background: #FFFFFF;
}
.vw-section-soft { background: #F7F7FA; }
.vw-center {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.vw-h2 {
  font-size: clamp(32px, 4.6vw, 56px);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.08;
  color: #1D1D1F;
  margin: 0 0 24px;
}
.vw-h2-light { color: #FFFFFF; }
.vw-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #b87333;
  margin: 0 0 16px;
}
.vw-body {
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 400;
  line-height: 1.7;
  color: #1D1D1F;
  margin: 0;
}
.vw-lead {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  color: #1D1D1F;
  margin: 0 0 16px;
}

/* --- 2. WHY VOXWON --- */
.vw-why {
  position: relative;
  padding: 100px 0;
  background: #FFFFFF;
  border-top: 1px solid #EFEFF2;
}
.vw-why .container {
  max-width: 100%;
  padding: 0 clamp(24px, 4vw, 80px);
}
.vw-why-head {
  text-align: center;
  margin-bottom: 56px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.vw-why-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .32em;
  color: #b87333;
  margin: 0 0 18px;
  text-transform: uppercase;
}
.vw-why-h2 {
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 300;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: #1D1D1F;
  margin: 0;
}
.vw-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.vw-why-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px 32px 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,.02), 0 4px 20px rgba(0,0,0,.04);
  transition: transform .35s ease, box-shadow .35s ease;
  border-top: 3px solid transparent;
}
.vw-why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #b87333, #d4915a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.vw-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,.07), 0 2px 6px rgba(0,0,0,.04);
  border-top-color: #b87333;
}
.vw-why-card:hover::before {
  transform: scaleX(1);
}
.vw-why-num {
  display: block;
  font-size: clamp(42px, 4.8vw, 64px);
  font-weight: 200;
  color: #b87333;
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.vw-why-line {
  width: 36px;
  height: 2px;
  background: #E5E5EA;
  margin-bottom: 20px;
  transition: background .3s ease, width .3s ease;
}
.vw-why-card:hover .vw-why-line {
  background: #b87333;
  width: 48px;
}
.vw-why-card h3 {
  font-size: 17px;
  font-weight: 500;
  color: #1D1D1F;
  margin: 0 0 10px;
  letter-spacing: -.01em;
}
.vw-why-card p {
  font-size: 14px;
  font-weight: 400;
  color: #86868B;
  margin: 0;
  line-height: 1.65;
}

/* --- 3. WHO WE ARE --- */
.vw-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.vw-col-text { max-width: 560px; }
.vw-col-visual { display: flex; justify-content: center; align-items: center; }
.vw-product-frame {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,.04);
}
.vw-product-frame img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* --- 4. BRAND STORY --- */
.vw-story {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 56px 0 36px;
}
.vw-story-item { text-align: center; }
.vw-story-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 14px;
  background: #F2F2F7;
  margin-bottom: 18px;
}
.vw-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.vw-story-item:hover .vw-story-img img { transform: scale(1.04); }
.vw-story-label {
  font-size: 14px;
  font-weight: 500;
  color: #1D1D1F;
  margin: 0;
  letter-spacing: .04em;
}
.vw-story-note {
  text-align: center;
  font-size: 16px;
  color: #86868B;
  margin: 0;
  line-height: 1.7;
}

/* --- 5. DESIGN PHILOSOPHY --- */
.vw-philosophy {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.vw-phil-card {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,.02), 0 4px 16px rgba(0,0,0,.03);
  transition: transform .3s ease, box-shadow .3s ease;
}
.vw-phil-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,.06), 0 16px 44px rgba(0,0,0,.08);
}
.vw-phil-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  color: #b87333;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vw-phil-icon svg { width: 100%; height: 100%; }
.vw-phil-card h3 {
  font-size: 19px;
  font-weight: 500;
  color: #1D1D1F;
  margin: 0 0 12px;
  letter-spacing: -.01em;
}
.vw-phil-card p {
  font-size: 15px;
  font-weight: 400;
  color: #86868B;
  margin: 0;
  line-height: 1.65;
  white-space: pre-line;
}

/* --- 3. THE VOXWON STANDARD™ (Premium Dark Editorial) --- */
.vw-standard-premium {
  background: #faf9f7;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.vw-standard-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(184,115,51,.04) 0%, transparent 70%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0,0,0,.02) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.vw-standard-premium .container {
  max-width: 100%;
  padding: 0 clamp(24px, 4vw, 80px);
  position: relative;
  z-index: 1;
}

.vw-std-head {
  text-align: center;
  margin-bottom: 88px;
}
.vw-std-eyebrow {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .1em;
  color: #b0aaa4;
  margin: 0 0 14px;
  text-transform: none;
}
.vw-std-title {
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: #1a1a1a;
  margin: 0;
}
.vw-std-copy {
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 400;
  color: #666;
  line-height: 1.7;
  margin: 20px auto 0;
  max-width: 560px;
}

/* Track (horizontal stage layout) */
.vw-std-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: start;
}

/* Thin connecting line between stages (horizontally) */
.vw-std-connector {
  position: absolute;
  top: calc(33.33% * 0.5);
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.08) 10%, rgba(0,0,0,.08) 90%, transparent 100%);
  z-index: 0;
}

/* Each stage */
.vw-std-stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.vw-std-stage-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 22px;
  background: #eee;
}
.vw-std-stage-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.15) 100%);
  pointer-events: none;
}
.vw-std-stage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.vw-std-stage:hover .vw-std-stage-img img { transform: scale(1.04); }

.vw-std-stage-num {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  color: #b0aaa4;
  margin: 0 0 10px;
  font-family: var(--font-sans);
}

.vw-std-stage-title {
  font-size: clamp(18px, 1.4vw, 24px);
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: -.01em;
  line-height: 1.25;
  margin: 0 0 10px;
}

.vw-std-stage-desc {
  font-size: 14px;
  font-weight: 400;
  color: #888;
  line-height: 1.65;
  margin: 0;
}

/* Mobile arrow indicator (hidden on desktop) */
.vw-std-mobile-arrow {
  display: none;
}

/* --- 6. PARTNER SECTION --- */
.vw-partner-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
  margin-bottom: 48px;
}
.vw-partner-card {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 36px 28px;
  box-shadow: 0 1px 3px rgba(0,0,0,.02), 0 4px 16px rgba(0,0,0,.03);
  transition: transform .3s ease, box-shadow .3s ease;
}
.vw-partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,.06), 0 16px 44px rgba(0,0,0,.08);
}
.vw-partner-card h3 {
  font-size: 18px;
  font-weight: 500;
  color: #1D1D1F;
  margin: 0 0 10px;
  letter-spacing: -.01em;
}
.vw-partner-card p {
  font-size: 15px;
  font-weight: 400;
  color: #86868B;
  margin: 0;
  line-height: 1.65;
}
.vw-cta-row { margin-top: 8px; }

/* --- 8. ENDING --- */
.vw-ending {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  background: #0D0D10;
}
.vw-ending-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(184,115,51,.1) 0%, transparent 70%),
    linear-gradient(135deg, #0D0D10 0%, #16161D 50%, #0B0B10 100%);
  z-index: 0;
}
.vw-ending-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0,0,0,.4) 100%);
  z-index: 1;
  pointer-events: none;
}
.vw-ending .container {
  max-width: 100%;
  padding: 0 clamp(24px, 4vw, 80px);
  position: relative;
  z-index: 2;
}
.vw-ending .vw-h2 {
  font-size: clamp(24px, 2.8vw, 44px);
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .vw-ending .vw-h2 { white-space: nowrap; }
}
.vw-ending-sub {
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 500;
  letter-spacing: .08em;
  color: #b87333;
  margin: 12px 0 20px;
}
.vw-ending-copy {
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 400;
  color: #A1A1A6;
  line-height: 1.6;
  margin: 0 0 36px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .vw-why { padding: 80px 0; }
  .vw-why-head { margin-bottom: 44px; }
  .vw-why-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .vw-why-card { padding: 36px 28px 32px; }
  .vw-row { gap: 48px; }

  /* VOXWON STANDARD Premium — tablet wrap */
  .vw-standard-premium { padding: 96px 0; }
  .vw-std-head { margin-bottom: 64px; }
  .vw-std-track {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    row-gap: 40px;
  }
  .vw-std-connector { display: none; }
}
@media (max-width: 768px) {
  .vw-section { padding: 72px 0; }
  .vw-hero { min-height: 520px; padding: 100px 0 72px; }
  .vw-hero-title { font-size: clamp(30px, 7.5vw, 46px); }
  .vw-why { padding: 72px 0; }
  .vw-why-head { margin-bottom: 36px; }
  .vw-why-h2 { font-size: clamp(26px, 5vw, 38px); }
  /* Who We Work With (partner page) — same heading sizing as WHY VOXWON */
  .vw-aud-title { font-size: clamp(26px, 5vw, 38px); }

  /* Two Ways to Grow — stack columns on tablet/mobile */
  .vw-grow { padding: 96px 0 80px; }
  .vw-grow-head { margin-bottom: 48px; }
  .vw-grow-cols { grid-template-columns: 1fr; gap: 20px; }
  .vw-grow-main { padding: 48px 32px; }
  .vw-grow-brand { padding: 40px 28px; }

  /* Simple to Start. Built to Scale. — 2 columns on tablet, 1 on mobile */
  .vw-scale { padding: 96px 0 100px; }
  .vw-scale-head { margin-bottom: 48px; }
  .vw-scale-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }

  /* How Partnership Works — single column on tablet/phone */
  .vw-how { padding: 96px 0 80px; }
  .vw-how-head { margin-bottom: 48px; }
  .vw-how-steps { grid-template-columns: 1fr; gap: 16px; }
  .vw-how-step-arrow { display: none; }
  .vw-why-card { padding: 32px 24px 28px; border-radius: 16px; }
  .vw-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .vw-col-text { max-width: 100%; }
  .vw-story,
  .vw-philosophy,
  .vw-partner-cards { grid-template-columns: 1fr; gap: 20px; }
  .vw-ending { padding: 100px 0; }
  .vw-hero-actions { flex-direction: column; align-items: flex-start; }
  .vw-hero-actions .vw-btn-primary,
  .vw-hero-actions .vw-btn-secondary { width: 100%; text-align: center; }

  /* VOXWON STANDARD Premium — mobile vertical timeline */
  .vw-standard-premium { padding: 80px 0; }
  .vw-std-head { margin-bottom: 48px; }
  .vw-std-title { font-size: clamp(36px, 9vw, 48px); }
  .vw-std-copy { font-size: 15px; }
  .vw-std-track {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 520px;
    margin: 0 auto;
  }
  .vw-std-connector { display: none; }

  .vw-std-stage {
    position: relative;
    padding: 0 0 12px;
  }
  .vw-std-stage + .vw-std-stage {
    padding-top: 16px;
  }
  .vw-std-stage-img {
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    margin-bottom: 18px;
  }
  .vw-std-stage-num {
    font-size: 11px;
    letter-spacing: .14em;
    margin-bottom: 8px;
  }
  .vw-std-stage-title { font-size: 20px; margin-bottom: 8px; }
  .vw-std-stage-desc { font-size: 14px; }

  /* Mobile arrow between stages (↓) */
  .vw-std-stage + .vw-std-stage::before {
    content: '↓';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    color: #4A4A50;
    font-size: 14px;
    font-weight: 400;
    z-index: 2;
  }
}
@media (max-width: 480px) {
  .vw-section { padding: 56px 0; }
  .vw-h2 { font-size: 32px; }
  .vw-why { padding: 60px 0; }
  .vw-why-grid { grid-template-columns: 1fr; gap: 16px; }
  .vw-why-card { padding: 28px 24px; }
  .vw-phil-card,
  .vw-partner-card { padding: 32px 24px; }
  .vw-product-frame { padding: 24px; }

  .vw-standard-premium { padding: 64px 0; }
  .vw-std-head { margin-bottom: 40px; }
  .vw-std-title { font-size: clamp(30px, 9.5vw, 40px); }
  .vw-std-stage-img { aspect-ratio: 4 / 3; }

  /* Simple to Start. Built to Scale. — single column on phones */
  .vw-scale-grid { grid-template-columns: 1fr; gap: 32px; }

  /* How Partnership Works — single column on phones */
  .vw-how-steps { grid-template-columns: 1fr; gap: 16px; }
  .vw-how-perks { flex-direction: column; align-items: center; gap: 12px; }
}

/* ============================================
   BUILT TO DELIVER™ — Premium B2B Process
   Two-column: left title + right 5 vertical cards
   ============================================ */

.vw-deliver {
  padding: 120px 0;
  background: #faf9f7;
}

.vw-deliver-grid {
  display: grid;
  grid-template-columns: 33% 1fr;
  gap: 64px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Left column: fixed editorial title */
.vw-deliver-left {
  position: sticky;
  top: 120px;
  align-self: start;
}

.vw-deliver-title {
  font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #1a1a1a;
  margin: 0 0 28px;
}

.vw-deliver-title sup {
  font-size: 0.35em;
  font-weight: 600;
  vertical-align: super;
  margin-left: 2px;
}

.vw-deliver-copy {
  font-size: 16px;
  line-height: 1.75;
  color: #666;
  max-width: 320px;
  margin: 0 0 36px;
}

.vw-deliver-flow {
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #999;
  font-weight: 500;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid #e8e6e3;
}

.vw-deliver-cert-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 28px 0 16px;
}

.vw-deliver-cert-img {
  border-radius: 8px;
  overflow: hidden;
}

.vw-deliver-cert-img img {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
}

/* Right column: five process cards in 2-col grid, last card centered */
.vw-deliver-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.vw-deliver-card {
  position: relative;
}

/* Last card (05) spans full row, centered */
.vw-deliver-card:last-child {
  grid-column: 1 / -1;
  max-width: 50%;
  margin: 0 auto;
}

/* Subtle vertical connecting line between cards */
.vw-deliver-card:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 20px;
  bottom: -40px;
  width: 1px;
  height: 40px;
  background: #e0ddd9;
}

.vw-deliver-card-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 8px;
}

.vw-deliver-num {
  font-size: 14px;
  font-weight: 600;
  color: #b0aaa4;
  letter-spacing: 0.05em;
}

.vw-deliver-name {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #1a1a1a;
  margin: 0;
}

.vw-deliver-card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #888;
  margin: 0 0 20px;
  max-width: 480px;
}

.vw-deliver-card-img {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  max-width: 380px;
}

.vw-deliver-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.vw-deliver-card:hover .vw-deliver-card-img img {
  transform: scale(1.03);
}

/* Tablet responsive */
@media (max-width: 1024px) {
  .vw-deliver-grid {
    grid-template-columns: 28% 1fr;
    gap: 40px;
    padding: 0 24px;
  }

  .vw-deliver-left {
    position: static;
    top: auto;
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .vw-deliver {
    padding: 80px 0;
  }

  .vw-deliver-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 20px;
  }

  .vw-deliver-left {
    position: static;
  }

  .vw-deliver-title {
    font-size: clamp(36px, 11vw, 48px);
  }

  .vw-deliver-copy {
    max-width: 100%;
  }

  .vw-deliver-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .vw-deliver-card:last-child {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }

  .vw-deliver-card:not(:last-child)::after {
    bottom: -32px;
    height: 32px;
  }
}

@media (max-width: 480px) {
  .vw-deliver {
    padding: 64px 0;
  }

  .vw-deliver-grid {
    padding: 0 16px;
    gap: 40px;
  }

  .vw-deliver-card-head {
    gap: 12px;
  }

  .vw-deliver-name {
    font-size: 20px;
  }

  .vw-deliver-card-img {
    border-radius: 8px;
  }
}

/* ============================================
   ENHANCED MOBILE RESPONSIVE (appended)
   Optimizes the site for phone browsing
   ============================================ */

/* Keep anchored sections clear of the sticky header */
[id] { scroll-margin-top: calc(var(--header-h) + 12px); }

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .container { padding: 0 20px; }
  .section { padding: 72px 0; }

  /* --- Header: compact, keep logo + actions on one row --- */
  header {
    background: rgba(255,255,255,.97);
    box-shadow: 0 1px 10px rgba(0,0,0,.06);
  }
  nav { gap: 12px; }
  .logo img { height: var(--header-h); width: auto; }
  .nav-actions { gap: 8px; }
  .lang-toggle { padding: 6px 10px; font-size: .75rem; gap: 6px; }
  .search-toggle { padding: 6px 10px; }
  .menu-toggle { padding: 6px 2px; }

  .nav-links.open {
    top: var(--header-h);
    padding: 16px 20px;
    gap: 14px;
  }

  /* --- Search & language panels: full-width, fixed below header --- */
  .search-panel,
  .lang-dropdown {
    position: fixed;
    top: var(--header-h);
    left: 16px;
    right: 16px;
    width: auto;
    margin-top: 0;
    max-height: 60vh;
    overflow-y: auto;
  }
  .search-panel { right: 16px; }
  .lang-dropdown { min-width: 0; }
  .search-results { max-height: 46vh; }

  /* --- Hero --- */
  .hero-full {
    min-height: calc(100svh - var(--header-h));
  }
  .hero-btn-wrap {
    position: absolute;
    bottom: 28px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 340px;
  }
  .btn-hero-cta {
    width: 100%;
    text-align: center;
    padding: 15px 24px;
    font-size: .95rem;
  }

  /* --- Trust bar --- */
  .trust-bar { padding: 28px 0; }
  .trust-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
  }
  .trust-item { width: calc(50% - 12px); }
  .trust-item + .trust-item::before { display: none; }
  .trust-item .trust-title { font-size: .95rem; }
  /* Allow trust text to wrap on tablets/phones so nowrap copy doesn't overflow */
  .trust-item .trust-title,
  .trust-item .trust-desc { white-space: normal; }

  /* --- Reviews --- */
  .reviews-swiper { height: auto !important; padding-bottom: 16px; }
  .review-box {
    flex-direction: column;
    text-align: center;
    padding: 32px 20px;
    gap: 16px;
  }
  .review-box img { width: 120px; height: 120px; margin: 0; }
  .review-text-wrap { width: 100%; gap: 10px; }
  .review-user { font-size: 20px; }
  .review-desc { font-size: 14px; }
  .reviews-button-prev,
  .reviews-button-next { display: none !important; }

  /* --- Footer --- */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom {
    justify-content: center;
    text-align: center;
    gap: 8px;
  }

  /* --- Forms: 16px font prevents iOS auto-zoom --- */
  input,
  select,
  textarea { font-size: 16px !important; }

  .contact-form-card,
  .contact-card { padding: 24px 20px; }
  .contact-grid { gap: 32px; }
  .form-group textarea { min-height: 120px; }

  .partner-hero { padding: 56px 0; }
  .partner-hero h1 { font-size: 30px; }
  .partner-hero p { font-size: 16px; }
  .partner-section { padding: 64px 0; }
  .partner-faq { padding: 24px 16px; }
  .partner-faq-item { padding: 16px 16px 16px 20px; }
  .partner-faq-a { padding-left: 0; }
  .partner-faq-num { width: 32px; height: 32px; font-size: 16px; }
  .partner-app-form,
  .reseller-form { padding: 24px 18px; }
  .reseller-hero { padding: 64px 0; }
  .reseller-section { padding: 64px 0; }
  .reseller-why-grid,
  .reseller-steps { gap: 20px; }

  /* --- Products page --- */
  .prod-explore { padding: 48px 0 8px; }
  .prod-explore h1 { font-size: 1.8rem; }
  .prod-cat-nav ul {
    gap: 14px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }
  .prod-cat-nav li { flex-shrink: 0; }
  .prod-cat-nav li a { font-size: .9rem; white-space: nowrap; }
  .boyamic-card h2 { font-size: 1.2rem; }
  .boyamic-pagination { margin-top: 48px; }

  /* --- Product detail --- */
  .product-detail { padding: 40px 0; }
  .product-detail-info h1 { font-size: 1.6rem; }
  .product-detail-grid { gap: 24px; }
  .specs-table td {
    font-size: .85rem;
    padding: 10px 8px;
    word-break: break-word;
  }
  .detail-actions { flex-direction: column; }
  .detail-actions .btn { width: 100%; justify-content: center; }

  /* --- Page header --- */
  .page-header { padding: 48px 0; }
  .contact-page-header { min-height: 0; padding: 32px 0; }

  /* --- Empty / thank-you pages --- */
  .reseller-empty-hero,
  .partner-thanks,
  .reseller-thanks {
    min-height: auto;
    padding: 64px 0;
  }

  /* --- About (vw) page --- */
  .vw-hero { min-height: auto; padding: 80px 0 64px; }
  .vw-hero-actions { flex-direction: column; align-items: stretch; }
  .vw-hero-actions a { width: 100%; text-align: center; }
  .vw-section { padding: 64px 0; }
  .vw-standard { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .vw-ending { padding: 88px 0; }

  /* --- Partner page: Who We Work With — one item per row --- */
  /* (duplicated here after the base rules so the override actually applies) */
  .vw-aud-list { grid-template-columns: 1fr; gap: 0; }
  .vw-aud-item { padding: 40px 0 44px; }
  .vw-aud-item:nth-child(odd) { border-right: none; }
  .vw-aud-item:not(:last-child) { border-bottom: 1px solid #e8e6e3; }

  /* --- Reseller form — one field per row --- */
  .reseller-form .form-row { grid-template-columns: 1fr; gap: 0; }
  /* Partner application form (Reseller Application Form) — one field per row */
  .partner-app-row { grid-template-columns: 1fr; gap: 0; }

  /* --- Reseller why/steps grids — stack to one column --- */
  .reseller-why-grid,
  .reseller-steps { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }

  /* Compact language toggle: show only the flag to save space */
  .lang-toggle { padding: 6px 8px; }
  .lang-toggle .lang-current,
  .lang-toggle svg { display: none; }
  .search-panel,
  .lang-dropdown { left: 12px; right: 12px; }

  .hero-full { min-height: 62vh; }
  .hero-btn-wrap { bottom: 20px; width: calc(100% - 32px); }

  .trust-item { width: 100%; }
  .trust-item .trust-title { font-size: .92rem; }
  .trust-item .trust-desc { white-space: normal; font-size: .74rem; }

  .star-card { min-height: 0; }
  .star-img-link img { height: 190px; object-fit: cover; }
  .star-info { position: static; top: auto; left: auto; width: 100%; max-width: none; padding: 16px 18px 4px; pointer-events: auto; }
  .star-info h3 { font-size: 20px; margin-bottom: 6px; }
  .star-info p { font-size: 12px; line-height: 1.4; }
  .star-actions { position: static; left: auto; bottom: auto; padding: 0 18px 18px; }
  .star-btn { min-width: 76px; padding: 7px 14px; font-size: 12px; }

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

  .partner-hero h1 { font-size: 30px; }
  .partner-hero .partner-hero-sub { font-size: 20px; }
  .partner-hero p { font-size: 16px; }
  .partner-section-title { font-size: 24px; margin-bottom: 32px; }
  .partner-app-form,
  .reseller-form { padding: 20px 14px; }

  /* Distributor page: stack hero buttons */
  .distributor-hero { padding: 72px 0; }
  .distributor-hero .btn {
    display: block;
    width: 100%;
    margin: 0 0 12px !important;
    text-align: center;
  }

  .prod-explore h1 { font-size: 1.6rem; }
  .boyamic-grid { gap: 32px; }

  .vw-h2 { font-size: 30px; }
  .vw-hero-title { font-size: 30px; }
}

/* ============================================
   VOXWON PRO — B2B Product Page (HAVIT layout)
   Typography matches About · Accents in brand #b87333
   ============================================ */
.vw-pro {
  background: #FFFFFF;
  color: #1D1D1F;
  font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.vpro-wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* --- Product top: gallery + info --- */
.vpro-top { padding: 80px 0 72px; }
.vpro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}
.vpro-gallery { position: sticky; top: 100px; }
.vpro-gallery-main {
  border: 1px solid #EAE8E5;
  border-radius: 16px;
  overflow: hidden;
  background: #FFFFFF;
}
.vpro-gallery-main img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}
.vpro-gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.vpro-thumb {
  flex: 0 0 84px;
  width: 84px;
  height: 84px;
  border: 1px solid #E0DDD8;
  border-radius: 10px;
  overflow: hidden;
  background: #FFFFFF;
  cursor: pointer;
  padding: 0;
  transition: border-color .2s ease;
}
.vpro-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vpro-thumb.is-active { border-color: #b87333; box-shadow: 0 0 0 2px rgba(184,115,51,.25); }

/* --- Info column --- */
.vpro-title {
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1.05;
  margin: 0 0 12px;
  color: #1D1D1F;
}
.vpro-tagline {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 400;
  color: #b87333;
  margin: 0 0 20px;
  letter-spacing: -.01em;
}
.vpro-highlights-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid #EEEBE7;
  padding: 10px 0 12px;
  margin-bottom: 4px;
  cursor: pointer;
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .02em;
  color: #1D1D1F;
  text-align: left;
}
.vpro-highlights-chevron { color: #b87333; transition: transform .25s ease; flex-shrink: 0; }
.vpro-highlights-toggle[aria-expanded="false"] .vpro-highlights-chevron { transform: rotate(-90deg); }
.vpro-highlights {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  max-height: 520px;
  overflow: hidden;
  transition: max-height .35s ease, margin-bottom .35s ease;
}
.vpro-highlights.is-collapsed { max-height: 0; margin-bottom: 0; }
.vpro-highlights li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid #EEEBE7;
}
.vpro-highlights strong {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
  color: #1D1D1F;
}
.vpro-highlights span { font-size: 14px; color: #6B6B70; line-height: 1.55; }
.vpro-cta { margin-bottom: 14px; }
.vpro-b2b-note { font-size: 13px; color: #9a948c; margin: 0; }

/* --- Buttons (brand color) --- */
.vpro-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .01em;
  cursor: pointer;
  transition: all .2s ease;
  text-decoration: none;
}
.vpro-btn-primary { background: #b87333; color: #FFFFFF; border: 1px solid #b87333; }
.vpro-btn-primary:hover {
  background: #9a5e28;
  border-color: #9a5e28;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(184,115,51,.25);
}
.vpro-btn-outline-light {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,.3);
}
.vpro-btn-outline-light:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.55);
}

/* --- Tabs: Overview / Specification / FAQ --- */
.vpro-tabs-section { background: #FFFFFF; padding: 72px 0 88px; }
.vpro-tabs-nav {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid #E0DDD8;
  margin-bottom: 48px;
}
.vpro-tab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 14px 24px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: #8c857b;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease;
  margin-bottom: -1px;
}
.vpro-tab-btn:hover { color: #1D1D1F; }
.vpro-tab-btn.is-active { color: #b87333; border-bottom-color: #b87333; }
.vpro-tab-panel { display: none; }
.vpro-tab-panel.is-active { display: block; animation: vproFade .35s ease; }
@keyframes vproFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

/* --- Shared typography (About style) --- */
.vpro-h2 {
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 300;
  letter-spacing: -.02em;
  line-height: 1.12;
  margin: 0 0 24px;
  color: #1D1D1F;
}
.vpro-p {
  font-size: clamp(16px, 1.3vw, 19px);
  color: #6B6B70;
  line-height: 1.7;
  margin: 0 0 18px;
  max-width: 760px;
}
.vpro-p:last-child { margin-bottom: 0; }

/* --- Specification table --- */
.vpro-specs-table {
  max-width: 760px;
  border: 1px solid #E0DDD8;
  border-radius: 12px;
  overflow: hidden;
}
.vpro-specs-row {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 24px;
  padding: 16px 24px;
  border-bottom: 1px solid #EBE8E4;
  font-size: 15px;
}
.vpro-specs-row:last-child { border-bottom: none; }
.vpro-specs-row > span:first-child { color: #6B6B70; }
.vpro-specs-row > span:last-child { color: #1D1D1F; font-weight: 500; }
.vpro-specs-head { background: #FFFFFF; }
.vpro-specs-row.vpro-specs-head span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #1D1D1F;
}

/* --- FAQ --- */
.vpro-faq { max-width: 760px; }
.vpro-faq-item { padding: 24px 0; border-bottom: 1px solid #E4E1DC; }
.vpro-faq-item:first-child { padding-top: 0; }
.vpro-faq-q { font-size: 17px; font-weight: 600; color: #1D1D1F; margin: 0 0 8px; }
.vpro-faq-a { font-size: 15px; color: #6B6B70; line-height: 1.65; margin: 0; }

/* --- Feature banners --- */
.vpro-feature { position: relative; }
.vpro-feature img { width: 100%; height: auto; display: block; }
.vpro-feature-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px;
  background: linear-gradient(180deg, transparent, rgba(11,11,15,.72));
  color: #FFFFFF;
}
.vpro-feature-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  letter-spacing: -.01em;
  margin: 0 0 6px;
}
.vpro-feature-desc { font-size: 15px; color: rgba(255,255,255,.85); margin: 0; }

/* --- Applications --- */
.vpro-apps-section { padding: 96px 0 110px; }
.vpro-center { text-align: center; }
.vpro-apps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 48px;
  margin-top: 56px;
}
.vpro-app { margin: 0; }
.vpro-app img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.vpro-app figcaption { margin-top: 18px; }
.vpro-app figcaption strong {
  display: block;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #1D1D1F;
  margin-bottom: 6px;
}
.vpro-app figcaption span { font-size: 15px; color: #6B6B70; line-height: 1.6; }

/* --- B2B CTA (About ending layout) --- */
.vpro-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.vw-ending-wrap { position: relative; z-index: 2; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .vpro-grid { gap: 44px; }
}
@media (max-width: 860px) {
  .vpro-top { padding: 48px 0; }
  .vpro-grid { grid-template-columns: 1fr; gap: 40px; }
  .vpro-gallery { position: static; }
  .vpro-apps-grid { grid-template-columns: 1fr; gap: 44px; }
  .vpro-wrap { padding: 0 24px; }
}
@media (max-width: 600px) {
  /* 手机端通栏：与特征横幅（vpro-feature 满宽图）一致，图片/区块铺满屏幕 */
  .vpro-wrap { padding: 0; }
  /* 防撑宽：grid/flex 子项最小宽度归零；主图绝不超视口 */
  .vpro-grid > * { min-width: 0; }
  .vpro-gallery-main img { width: 100%; height: auto; max-width: 100vw; }
  /* 主图贴边（去圆角/边框阴影感），缩略图与文字 UI 保留小留白 */
  .vpro-gallery-main { border-radius: 0; border: 0; }
  .vpro-gallery { padding: 0; }
  .vpro-gallery-thumbs { padding: 14px 18px 4px; }
  .vpro-info { padding: 0 18px; }
  .vpro-tabs-nav { padding: 0 18px; }
  .vpro-tab-panel { padding: 0 18px; }
  .vpro-apps-section .vpro-h2 { padding: 0 18px; }
  .vpro-apps-grid { padding: 0 18px; }
  .vpro-app figcaption { padding: 0 18px; }
  .vpro-wrap.vw-ending-wrap { padding: 0 18px; }
  .vpro-tabs-nav { overflow-x: auto; }
  .vpro-tab-btn { padding: 12px 16px; white-space: nowrap; }
  .vpro-specs-row { grid-template-columns: 1fr; gap: 4px; padding: 14px 18px; }
  .vpro-feature-cap { padding: 20px; }
  .vpro-cta-actions { flex-direction: column; align-items: stretch; }
  .vpro-cta-actions .vpro-btn { width: 100%; }
}

/* ============================================
   Hide Google Translate widget chrome (banner/balloon/logo).
   Translation itself still applies — only the injected UI is hidden.
   ============================================ */
.goog-te-banner-frame,
.goog-te-banner-frame iframe,
.goog-te-balloon-frame,
.goog-te-balloon-frame iframe,
.goog-te-spinner-pos,
.goog-te-spinner,
.goog-tooltip,
.goog-tooltip iframe,
.goog-te-gadget,
.goog-te-gadget-simple,
.goog-logo-link,
.goog-te-menu-frame,
#goog-gt-tt,
#goog-gt-tt iframe {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
/* Google offsets the page down to make room for its banner — undo it */
body,
html {
  top: 0 !important;
}
body.translated-ltr,
html.translated-ltr {
  margin-top: 0 !important;
}

/* Google Translate chrome — hardened hide (covers renamed containers) */
.skiptranslate,
div[id^="goog-gt"],
div[id^="goog-gt-tt"],
body > div[id^="goog"],
body > iframe[id^="goog"],
iframe.goog-te-banner-frame,
div.goog-te-banner-frame,
.goog-te-banner-frame,
.goog-te-banner-frame *,
.goog-te-banner {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
html { margin-top: 0 !important; }
body { top: 0 !important; margin-top: 0 !important; }

/* ============================================
   Trust bar — 4-across by default; switch to a symmetric 2x2 grid
   when translated copy is too long for one row (class added by JS).
   ============================================ */
.trust-grid.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
  align-items: start;
  justify-content: initial;
  text-align: center;
}
.trust-grid.two-col .trust-item { width: auto; }
.trust-grid.two-col .trust-item + .trust-item::before { display: none; }
.trust-grid.two-col .trust-item .trust-title,
.trust-grid.two-col .trust-item .trust-desc { white-space: normal; }
.trust-grid.two-col .trust-item .trust-desc {
  max-width: 34ch;
  margin-left: auto;
  margin-right: auto;
}

/* On very small screens keep the existing single-column trust layout */
@media (max-width: 480px) {
  .trust-grid.two-col { grid-template-columns: 1fr; }
}
