:root {
  --bg: #1a1a1a;
  --accent: #f5b800;
  --white: #ffffff;
  --muted: #999999;
  --border: #e5e5e5;
  --danger: #d62828;

  --container: 1280px;
  --pad: 20px;

  --h1: 56px;
  --body: 18px;
  --nav: 15px;
  --btn: 14px;
  --badge: 12px;

  --header-h: 80px;
  --section-py: 100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Poppins, sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.container--narrow {
  max-width: 840px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: var(--bg);
}

.header-grid {
  height: var(--header-h);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  gap: 18px;
}

.brand {
  grid-column: span 2;
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand__name {
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: 18px;
  line-height: 1.1;
}

.primary-nav {
  grid-column: span 6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-width: 0;
}

.nav-link {
  font-size: var(--nav);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.9px;
  color: rgba(255, 255, 255, 0.88);
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.nav-link:hover {
  color: var(--white);
}

.nav-link.is-active {
  color: var(--white);
  border-bottom-color: var(--accent);
}

.nav-link.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.nav-link.active-bajaj {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.header-cta {
  grid-column: span 4;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-size: var(--btn);
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.btn:focus-visible,
.nav-link:focus-visible,
.menu-toggle:focus-visible,
.mobile-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--accent);
  color: #000;
}

.btn--primary:hover {
  background: #e5aa00;
}

.btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--white);
}

.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn--block {
  width: 100%;
}

.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: var(--white);
  padding: 0;
  cursor: pointer;
}

.menu-toggle:hover {
  border-color: rgba(255, 255, 255, 0.32);
}

.menu-toggle__icon {
  display: block;
}

.mobile-menu {
  background: var(--bg);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  max-height: 0;
  transition: max-height 280ms ease;
}

.mobile-menu.is-open {
  max-height: 520px;
}

.mobile-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 16px 0 18px;
}

.mobile-link {
  display: block;
  padding: 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-transform: uppercase;
  font-size: var(--nav);
  font-weight: 500;
  letter-spacing: 0.9px;
  color: rgba(255, 255, 255, 0.88);
}

.mobile-link:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.26);
}

.mobile-link.is-active {
  border-color: rgba(245, 184, 0, 0.6);
  color: var(--white);
}

.mobile-link.active {
  border-color: rgba(245, 184, 0, 0.6);
  color: var(--accent);
}

.mobile-link.active-bajaj {
  border-color: rgba(245, 184, 0, 0.6);
  color: var(--accent);
}

.nav-link.active-tvs {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.mobile-link.active-tvs {
  border-color: rgba(245, 184, 0, 0.6);
  color: var(--accent);
}

.hero {
  background: var(--bg);
  min-height: 90vh;
  display: flex;
  flex-direction: column;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  gap: 26px;
  padding: var(--section-py) 0;
  min-height: calc(90vh - var(--header-h));
}

.hero-copy {
  grid-column: span 6;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(245, 184, 0, 0.12);
  border: 1px solid rgba(245, 184, 0, 0.35);
}

.badge__dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
}

.badge__text {
  font-size: var(--badge);
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-title {
  margin: 18px 0 0;
  font-size: var(--h1);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.6px;
}

.hero-lead {
  margin: 24px 0 0;
  font-size: var(--body);
  color: rgba(255, 255, 255, 0.84);
  max-width: 58ch;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-media {
  grid-column: span 6;
}

.hero-image {
  height: min(560px, 64vh);
  width: 100%;
  margin-left: -28px;
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.2)),
    url("hero-tricycle-parts.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-divider {
  height: 4px;
  width: 100%;
  background: var(--accent);
}

.trust-strip {
  background: var(--accent);
  padding: 40px 0;
  color: var(--bg);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
  row-gap: 24px;
  align-items: start;
}

.trust-item {
  grid-column: span 3;
  text-align: center;
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--bg);
  margin-bottom: 16px;
}

.trust-title {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  color: var(--bg);
}

.trust-text {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(26, 26, 26, 0.88);
}

.about {
  background: var(--white);
  color: var(--bg);
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 26px;
  align-items: center;
}

.about-media {
  grid-column: span 5;
}

.about-media__stack {
  position: relative;
  padding: 20px;
}

.about-media__stack::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 72%;
  height: 72%;
  background: var(--accent);
  transform: translate(-20px, -20px);
  z-index: 0;
}

.about-media__main {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 520px;
  object-fit: cover;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.about-media__secondary {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 46%;
  height: 220px;
  object-fit: cover;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  transform: translate(16px, 16px);
}

.about-content {
  grid-column: 7 / span 6;
}

.about-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--accent);
}

.about-title {
  margin: 24px 0 0;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--bg);
}

.about-text {
  margin: 16px 0 0;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.82);
}

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: var(--accent);
}

.about-cta:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}

.about-cta__arrow {
  font-size: 18px;
  line-height: 1;
}

.btn--xl {
  padding: 16px 28px;
}

.categories {
  background: #f7f7f7;
  color: var(--bg);
  padding: 100px 0;
}

.categories-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.categories-title {
  margin: 0;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--bg);
}

.categories-intro {
  margin: 16px auto 0;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.82);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 30px;
}

.category-card {
  grid-column: span 3;
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  border-top: 4px solid var(--accent);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.category-card__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 20px;
}

.category-card__title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--bg);
}

.category-card__text {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(26, 26, 26, 0.74);
}

.categories-cta {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.why {
  background: var(--bg);
  padding: 100px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

.why-content {
  grid-column: span 6;
}

.why-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--accent);
}

.why-title {
  margin: 16px 0 0;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--white);
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: grid;
  gap: 28px;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex: 0 0 auto;
  margin-top: 2px;
}

.why-item__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.why-item__body {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

.why-media {
  grid-column: span 6;
}

.why-image {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  border-left: 8px solid var(--accent);
}

.brands {
  background: var(--white);
  color: var(--bg);
  padding: 100px 0;
}

.brands-header {
  text-align: center;
  margin-bottom: 60px;
}

.brands-title {
  margin: 0;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--bg);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 40px;
}

.brand-card {
  grid-column: span 6;
  background: var(--bg);
}

.brand-card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.brand-card__content {
  padding: 40px;
}

.brand-card__title {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
}

.brand-divider {
  height: 3px;
  background: var(--accent);
  margin: 24px 0;
}

.brand-card__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.brand-card__cta {
  margin-top: 20px;
  align-self: flex-start;
}

.btn--dark {
  background: var(--bg);
  color: var(--white);
}

.btn--dark:hover {
  background: #111111;
}

.btn--outline-dark {
  background: transparent;
  border: 2px solid var(--bg);
  color: var(--bg);
}

.btn--outline-dark:hover {
  background: rgba(26, 26, 26, 0.06);
}

.wholesale-cta {
  background: var(--accent);
  color: var(--bg);
  padding: 100px 0;
}

.wholesale-inner {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.wholesale-gear {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--bg);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.wholesale-label,
.wholesale-title,
.wholesale-text,
.wholesale-actions {
  position: relative;
  z-index: 1;
}

.wholesale-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--bg);
}

.wholesale-title {
  margin: 16px 0 0;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--bg);
}

.wholesale-text {
  margin: 16px 0 0;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.82);
}

.wholesale-actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.stats-strip {
  background: var(--white);
  color: var(--bg);
  padding: 60px 0;
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
  text-align: center;
}

.stat-item {
  grid-column: span 3;
  display: grid;
  justify-items: center;
}

.stat-number {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  color: var(--accent);
}

.stat-label {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--bg);
}

.stat-desc {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(26, 26, 26, 0.82);
}

.contact-strip {
  background: var(--bg);
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 26px;
  align-items: start;
}

.contact-left {
  grid-column: span 5;
}

.contact-title {
  margin: 0;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--white);
}

.contact-lead {
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 56ch;
}

.contact-right {
  grid-column: 7 / span 6;
  border-left: 4px solid var(--accent);
  padding-left: 30px;
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-icon {
  width: 18px;
  height: 18px;
  color: var(--white);
  flex: 0 0 auto;
  margin-top: 2px;
}

.contact-k {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: rgba(255, 255, 255, 0.82);
}

.contact-v {
  margin-top: 2px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--white);
}

.contact-cta {
  margin-top: 20px;
  padding: 14px 24px;
}

.faq {
  background: var(--white);
  color: var(--bg);
  padding: 100px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

.faq-left {
  grid-column: span 6;
}

.faq-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--accent);
}

.faq-title {
  margin: 20px 0 0;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--bg);
}

.faq-accordion {
  margin-top: 40px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  padding: 20px 0;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  text-align: left;
  font-size: 18px;
  font-weight: 800;
  color: var(--bg);
}

.faq-icon {
  color: var(--bg);
  flex: 0 0 auto;
  display: inline-flex;
}

.faq-q[aria-expanded="true"] .faq-icon__v {
  opacity: 0;
}

.faq-a {
  overflow: hidden;
  height: 0;
  transition: height 240ms ease;
}

.faq-a__inner {
  padding: 0 0 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #666666;
}

.faq-right {
  grid-column: span 6;
}

.map {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 1px solid var(--border);
}

.site-footer {
  background: #111111;
  padding: 80px 0 40px;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 26px;
}

.footer-col {
  grid-column: span 3;
}

.footer-brand {
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: 18px;
  line-height: 1.1;
}

.footer-tagline {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-social {
  margin-top: 16px;
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  border: 1px solid rgba(245, 184, 0, 0.35);
}

.social-link:hover {
  border-color: rgba(245, 184, 0, 0.7);
}

.footer-h {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact {
  display: grid;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-k {
  color: rgba(255, 255, 255, 0.9);
}

.footer-location {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
}

.footer-divider {
  height: 1px;
  width: 100%;
  background: #222;
  margin: 40px 0;
}

.footer-bottom {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom__left {
  grid-column: span 6;
}

.footer-bottom__right {
  grid-column: span 3;
  justify-self: end;
}

.footer-bottom__links {
  grid-column: span 3;
  justify-self: end;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.footer-bottom__links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom__links a:hover {
  color: var(--white);
}

.footer-sep {
  color: rgba(255, 255, 255, 0.4);
}

.about-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("about-hero-aspamda.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
}

.about-hero__inner {
  padding: 110px 0;
}

.about-hero__stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--accent);
}

.breadcrumbs {
  font-size: 14px;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.crumb-link {
  color: var(--accent);
}

.crumb-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.crumb-current {
  color: var(--accent);
}

.about-hero__title {
  margin: 0;
  font-size: 56px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.6px;
  max-width: 700px;
}

.about-hero__sub {
  margin: 20px 0 0;
  font-size: 18px;
  line-height: 1.6;
  color: #cccccc;
  max-width: 600px;
}

.story {
  background: var(--white);
  color: var(--bg);
  padding: 100px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 26px;
  align-items: start;
}

.story-text {
  grid-column: span 7;
}

.story-label {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 20px;
}

.story-title {
  margin: 0 0 30px;
  font-size: 42px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--bg);
}

.story-p {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.7;
  color: #555555;
}

.story-list {
  margin: 0 0 20px;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: #555555;
  font-size: 16px;
  line-height: 1.7;
}

.story-media {
  grid-column: 9 / span 4;
}

.story-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.story-img2-wrap {
  position: relative;
  margin-top: 20px;
}

.story-img--second {
  height: 220px;
}

.story-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: var(--accent);
  color: #000;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.ops {
  background: var(--white);
  color: var(--bg);
  padding: 100px 0;
}

.ops-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.ops-label {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 15px;
}

.ops-title {
  margin: 0 0 20px;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--bg);
}

.ops-intro {
  margin: 0 0 40px;
  font-size: 18px;
  line-height: 1.6;
  color: #666666;
}

.ops-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  text-align: left;
  font-size: 16px;
  line-height: 1.6;
  color: #444444;
}

.ops-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.ops-icon {
  color: var(--accent);
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
}

.ops-close {
  margin: 40px 0 0;
  font-size: 16px;
  line-height: 1.7;
  color: #555555;
  text-align: center;
}

.exist {
  background: #f7f7f7;
  color: var(--bg);
  padding: 100px 0;
}

.exist-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 26px;
  align-items: start;
}

.exist-left {
  grid-column: span 6;
}

.exist-right {
  grid-column: 8 / span 5;
}

.exist-title {
  margin: 0 0 20px;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--bg);
}

.exist-p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.7;
  color: #555555;
}

.exist-sub {
  font-size: 16px;
  font-weight: 700;
  color: var(--bg);
  margin: 4px 0 12px;
}

.exist-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: #444444;
}

.exist-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.exist-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
  margin-top: 8px;
  flex: 0 0 auto;
}

.exist-close {
  margin: 50px 0 0;
  font-size: 16px;
  line-height: 1.7;
  color: #555555;
  text-align: center;
  font-weight: 500;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.different {
  background: #f7f7f7;
  color: var(--bg);
  padding: 100px 0;
  text-align: center;
}

.different-title {
  margin: 0 0 60px;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--bg);
}

.different-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 40px;
}

.different-card {
  grid-column: span 4;
  background: var(--white);
  padding: 40px;
  border: 1px solid #eeeeee;
  text-align: center;
}

.different-card:nth-child(4) {
  grid-column: 3 / span 4;
}

.different-card:nth-child(5) {
  grid-column: 7 / span 4;
}

.different-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.different-card__title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--bg);
}

.different-card__text {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: #666666;
}

.operation {
  background: var(--bg);
  padding: 100px 0;
}

.operation-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 26px;
  align-items: center;
}

.operation-media {
  grid-column: span 6;
}

.operation-img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.operation-img--a {
  height: 350px;
  margin-bottom: 20px;
}

.operation-row {
  display: flex;
  gap: 20px;
}

.operation-img--b,
.operation-img--c {
  height: 180px;
  width: 50%;
}

.operation-tags {
  display: inline-flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.operation-tag {
  background: #333333;
  color: var(--white);
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 999px;
}

.operation-content {
  grid-column: 8 / span 5;
}

.operation-label {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 800;
  margin-bottom: 15px;
}

.operation-title {
  margin: 0 0 30px;
  font-size: 42px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--white);
}

.operation-points {
  display: grid;
}

.operation-point {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.operation-bullet {
  width: 10px;
  height: 10px;
  background: var(--accent);
  flex: 0 0 auto;
  margin-top: 7px;
}

.operation-point__title {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 1.3;
}

.operation-point__body {
  color: #cccccc;
  font-size: 16px;
  line-height: 1.6;
}

.serve {
  background: var(--white);
  padding: 100px 0;
  text-align: center;
  color: var(--bg);
}

.serve-title {
  margin: 0 0 60px;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--bg);
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px;
}

.serve-card {
  border: 1px solid #eeeeee;
  padding: 30px;
  background: var(--white);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.serve-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.serve-card__image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  margin-bottom: 20px;
}

.serve-card__title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
  color: var(--bg);
}

.serve-card__text {
  margin: 0;
  font-size: 15px;
  color: #555555;
  line-height: 1.6;
}

.positioning {
  background: #f7f7f7;
  padding: 100px 0;
}

.positioning-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--pad);
  text-align: center;
}

.positioning-title {
  margin: 0 0 25px;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--bg);
}

.positioning-accent {
  width: 80px;
  height: 3px;
  background: var(--accent);
  margin: 25px auto;
}

.positioning-text {
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.7;
  color: #555555;
}

.positioning-strong {
  margin: 30px 0 0;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 600;
  color: var(--bg);
}

.trust {
  background: var(--white);
  padding: 100px 0;
  text-align: center;
  color: var(--bg);
}

.trust .trust-header {
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 0 var(--pad);
}

.trust .trust-label {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 800;
  margin-bottom: 15px;
}

.trust .trust-title {
  margin: 0;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--bg);
}

.trust .trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.trust .trust-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border: 1px solid #eeeeee;
  background: var(--white);
  font-size: 16px;
  color: #444444;
  font-weight: 500;
  text-align: left;
}

.trust .trust-icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex: 0 0 auto;
}

.supplier {
  background: var(--accent);
  padding: 100px 0;
  text-align: center;
  color: var(--bg);
}

.supplier-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

.supplier-title {
  margin: 0 0 25px;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--bg);
}

.supplier-text {
  margin: 0 0 30px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.85);
}

.supplier-sub {
  margin: 10px 0 18px;
  font-size: 16px;
  font-weight: 700;
  color: var(--bg);
}

.supplier-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  gap: 10px;
  justify-items: center;
  color: rgba(26, 26, 26, 0.9);
  font-size: 16px;
  line-height: 1.6;
}

.supplier-list--cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-items: stretch;
  text-align: left;
}

.supplier-list--cols li,
.supplier-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.supplier-list--cols li::before,
.supplier-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: rgba(26, 26, 26, 0.9);
  margin-top: 8px;
  flex: 0 0 auto;
}

.supplier-text--bottom {
  margin-bottom: 0;
}

.supplier-btn {
  margin-top: 30px;
  display: inline-block;
  background: var(--bg);
  color: var(--white);
  padding: 14px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 14px;
}

.supplier-btn:hover {
  background: #000000;
}

.final-cta {
  background: var(--bg);
  padding: 100px 0;
  text-align: center;
}

.final-cta__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

.final-cta__title {
  margin: 0 0 20px;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--white);
}

.final-cta__text {
  margin: 0 0 30px;
  font-size: 18px;
  line-height: 1.6;
  color: #cccccc;
}

.final-cta__btn {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  padding: 15px 32px;
  font-weight: 600;
}

.final-cta__btn:hover {
  background: #ffd447;
}

.final-cta__alt {
  margin-top: 15px;
  font-size: 14px;
  color: var(--muted);
}

.final-cta__phone {
  color: var(--muted);
}

.final-cta__phone:hover {
  color: var(--white);
}

.products-hero {
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("products-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 50vh;
  width: 100%;
  display: flex;
  align-items: center;
}

.products-hero__inner {
  padding: 90px 0;
}

.products-breadcrumb {
  font-size: 14px;
  color: #cccccc;
  margin-bottom: 15px;
}

.products-hero__title {
  margin: 0 0 20px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  max-width: 720px;
}

.products-hero__sub {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #cccccc;
  max-width: 680px;
}

.products-intro {
  background: var(--white);
  padding: 100px 0;
  text-align: center;
  color: var(--bg);
}

.products-intro__container {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 var(--pad);
  font-size: 18px;
  line-height: 1.7;
  color: #444444;
}

.products-intro__container p {
  margin: 0 0 24px;
}

.products-intro__container p:last-child {
  margin-bottom: 0;
}

.products-grid-section {
  background: var(--white);
  padding: 100px 0;
  color: var(--bg);
}

.products-grid-title {
  margin: 0 0 60px;
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--bg);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--white);
  border: 1px solid #eeeeee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.product-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top: 4px solid var(--accent);
}

.product-card__body {
  padding: 25px;
}

.product-card__title {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
  color: var(--bg);
  line-height: 1.2;
}

.product-card__text {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
}

.product-card__popular {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.5;
  color: #777777;
}

.product-card__cta {
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.product-card__cta:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}

.products-brand {
  background: #f7f7f7;
  padding: 100px 0;
}

.products-brand__title {
  margin: 0 0 60px;
  text-align: center;
  font-size: 42px;
  color: var(--bg);
  font-weight: 700;
  line-height: 1.2;
}

.products-brand__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.products-brand__card {
  background: var(--bg);
  padding: 60px;
  color: var(--white);
}

.products-brand__image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  margin-bottom: 25px;
}

.products-brand__name {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.products-brand__text {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.products-brand__cta {
  background: var(--accent);
  color: var(--bg);
  padding: 14px 28px;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
}

.products-brand__cta:hover {
  background: #ffd447;
}

.products-wholesale {
  background: var(--white);
  padding: 100px 0;
  text-align: center;
}

.products-wholesale__container {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

.products-wholesale__title {
  margin: 0 0 25px;
  font-size: 42px;
  color: var(--bg);
  font-weight: 700;
  line-height: 1.2;
}

.products-wholesale__text {
  margin: 0 0 30px;
  font-size: 18px;
  color: #444444;
  line-height: 1.7;
}

.products-wholesale__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  text-align: left;
}

.products-wholesale__list li {
  font-size: 16px;
  color: #555555;
  line-height: 1.6;
}

.products-final {
  background: var(--bg);
  padding: 100px 0;
  text-align: center;
}

.products-final__container {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

.products-final__title {
  margin: 0 0 20px;
  font-size: 42px;
  color: var(--white);
  font-weight: 800;
  line-height: 1.2;
}

.products-final__text {
  margin: 0 0 30px;
  font-size: 18px;
  color: #cccccc;
  line-height: 1.6;
}

.products-final__actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.products-final__btn {
  padding: 15px 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  border: 2px solid transparent;
}

.products-final__btn--primary {
  background: var(--accent);
  color: var(--bg);
}

.products-final__btn--outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.products-final__btn--outline:hover {
  background: var(--accent);
  color: var(--bg);
}

.bajaj-hero {
  background: var(--bg);
  padding: 100px 0;
  min-height: 65vh;
  display: flex;
  align-items: center;
}

.bajaj-hero__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: center;
}

.bajaj-crumb {
  font-size: 14px;
  color: #cccccc;
  margin-bottom: 15px;
}

.bajaj-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 20px;
}

.bajaj-title {
  margin: 0 0 20px;
  font-size: 48px;
  line-height: 1.2;
  color: var(--white);
  max-width: 720px;
}

.bajaj-sub {
  margin: 0 0 30px;
  font-size: 18px;
  color: #cccccc;
  line-height: 1.6;
  max-width: 680px;
}

.bajaj-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.bajaj-btn {
  display: inline-block;
  padding: 15px 28px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
}

.bajaj-btn--primary {
  background: var(--accent);
  color: var(--bg);
}

.bajaj-btn--primary:hover {
  background: #ffd447;
}

.bajaj-btn--outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.bajaj-btn--outline:hover {
  background: var(--accent);
  color: var(--bg);
}

.bajaj-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-left: 6px solid var(--accent);
}

.bajaj-intro {
  background: var(--white);
  padding: 100px 0;
  color: var(--bg);
}

.bajaj-intro__grid {
  display: grid;
  grid-template-columns: 7fr 4fr;
  gap: 30px;
  align-items: start;
}

.bajaj-intro__text {
  font-size: 18px;
  line-height: 1.7;
  color: #444444;
}

.bajaj-intro__text p {
  margin: 0 0 24px;
}

.bajaj-intro__text p:last-child {
  margin-bottom: 0;
}

.bajaj-sidebar__card {
  position: sticky;
  top: 100px;
  background: var(--bg);
  padding: 30px;
  color: var(--white);
}

.bajaj-sidebar__list {
  margin: 0 0 20px;
  padding-left: 18px;
  line-height: 1.6;
}

.bajaj-sidebar__btn {
  background: var(--accent);
  color: var(--bg);
  padding: 12px 24px;
  font-weight: 600;
  display: inline-block;
}

.bajaj-sidebar__btn:hover {
  background: #ffd447;
}

.bajaj-h2 {
  margin: 0 0 60px;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--bg);
  text-align: center;
}

.bajaj-h2--dark {
  color: var(--white);
  text-align: left;
  margin-bottom: 30px;
}

.bajaj-parts {
  background: #f7f7f7;
  padding: 100px 0;
}

.bajaj-parts__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.bajaj-why {
  background: var(--bg);
  padding: 100px 0;
}

.bajaj-why__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: center;
}

.bajaj-why__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  color: #cccccc;
  font-size: 16px;
  line-height: 1.6;
}

.bajaj-why__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.bajaj-why__list li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--accent);
  margin-top: 8px;
  flex: 0 0 auto;
}

.bajaj-why__image {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.bajaj-models {
  background: var(--white);
  padding: 100px 0;
  color: var(--bg);
}

.bajaj-models__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.bajaj-model {
  border: 1px solid #eeeeee;
  padding: 25px;
  text-align: center;
  background: var(--white);
}

.bajaj-model__name {
  font-size: 16px;
  font-weight: 600;
  color: var(--bg);
}

.bajaj-mfg {
  background: #f7f7f7;
  padding: 100px 0;
  text-align: center;
  color: var(--bg);
}

.bajaj-mfg__container {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

.bajaj-mfg__text {
  margin: -30px 0 30px;
  font-size: 18px;
  line-height: 1.7;
  color: #444444;
}

.bajaj-mfg__btn {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  padding: 14px 28px;
  font-weight: 600;
}

.bajaj-mfg__btn:hover {
  background: #ffd447;
}

.bajaj-final {
  background: var(--bg);
  padding: 100px 0;
  text-align: center;
}

.bajaj-final__container {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

.bajaj-final__text {
  margin: 0 0 30px;
  font-size: 18px;
  color: #cccccc;
  line-height: 1.6;
}

.bajaj-final__actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.bajaj-final__btn {
  padding: 15px 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  border: 2px solid transparent;
}

.bajaj-final__btn--primary {
  background: var(--accent);
  color: var(--bg);
}

.bajaj-final__btn--primary:hover {
  background: #ffd447;
}

.bajaj-final__btn--outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.bajaj-final__btn--outline:hover {
  background: var(--accent);
  color: var(--bg);
}

.tvs-hero {
  background: var(--bg);
  padding: 100px 0;
  min-height: 65vh;
  display: flex;
  align-items: center;
}

.tvs-hero__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: center;
}

.tvs-crumb {
  font-size: 14px;
  color: #cccccc;
  margin-bottom: 15px;
}

.tvs-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 20px;
}

.tvs-title {
  margin: 0 0 20px;
  font-size: 48px;
  line-height: 1.2;
  color: var(--white);
  max-width: 720px;
}

.tvs-sub {
  margin: 0 0 30px;
  font-size: 18px;
  color: #cccccc;
  line-height: 1.6;
  max-width: 680px;
}

.tvs-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.tvs-btn {
  display: inline-block;
  padding: 15px 28px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
}

.tvs-btn--primary {
  background: var(--accent);
  color: var(--bg);
}

.tvs-btn--primary:hover {
  background: #ffd447;
}

.tvs-btn--outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.tvs-btn--outline:hover {
  background: var(--accent);
  color: var(--bg);
}

.tvs-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-left: 6px solid var(--accent);
}

.tvs-intro {
  background: var(--white);
  padding: 100px 0;
  color: var(--bg);
}

.tvs-intro__grid {
  display: grid;
  grid-template-columns: 7fr 4fr;
  gap: 30px;
  align-items: start;
}

.tvs-intro__text {
  font-size: 18px;
  line-height: 1.7;
  color: #444444;
}

.tvs-intro__text p {
  margin: 0 0 24px;
}

.tvs-intro__text p:last-child {
  margin-bottom: 0;
}

.tvs-sidebar__card {
  position: sticky;
  top: 100px;
  background: var(--bg);
  padding: 30px;
  color: var(--white);
}

.tvs-sidebar__list {
  margin: 0 0 20px;
  padding-left: 18px;
  line-height: 1.6;
}

.tvs-sidebar__btn {
  background: var(--accent);
  color: var(--bg);
  padding: 12px 24px;
  font-weight: 600;
  display: inline-block;
}

.tvs-sidebar__btn:hover {
  background: #ffd447;
}

.tvs-h2 {
  margin: 0 0 60px;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--bg);
  text-align: center;
}

.tvs-h2--dark {
  color: var(--white);
  text-align: left;
  margin-bottom: 30px;
}

.tvs-parts {
  background: #f7f7f7;
  padding: 100px 0;
}

.tvs-parts__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.tvs-why {
  background: var(--bg);
  padding: 100px 0;
}

.tvs-why__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: center;
}

.tvs-why__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  color: #cccccc;
  font-size: 16px;
  line-height: 1.6;
}

.tvs-why__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.tvs-why__list li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--accent);
  margin-top: 8px;
  flex: 0 0 auto;
}

.tvs-why__image {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.tvs-models {
  background: var(--white);
  padding: 100px 0;
  color: var(--bg);
}

.tvs-models__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.tvs-model {
  border: 1px solid #eeeeee;
  padding: 25px;
  text-align: center;
  background: var(--white);
}

.tvs-model__name {
  font-size: 16px;
  font-weight: 600;
  color: var(--bg);
}

.tvs-mfg {
  background: #f7f7f7;
  padding: 100px 0;
  text-align: center;
  color: var(--bg);
}

.tvs-mfg__container {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

.tvs-mfg__text {
  margin: -30px 0 30px;
  font-size: 18px;
  line-height: 1.7;
  color: #444444;
}

.tvs-mfg__btn {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  padding: 14px 28px;
  font-weight: 600;
}

.tvs-mfg__btn:hover {
  background: #ffd447;
}

.tvs-final {
  background: var(--bg);
  padding: 100px 0;
  text-align: center;
}

.tvs-final__container {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

.tvs-final__text {
  margin: 0 0 30px;
  font-size: 18px;
  color: #cccccc;
  line-height: 1.6;
}

.tvs-final__actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.tvs-final__btn {
  padding: 15px 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  border: 2px solid transparent;
}

.tvs-final__btn--primary {
  background: var(--accent);
  color: var(--bg);
}

.tvs-final__btn--primary:hover {
  background: #ffd447;
}

.tvs-final__btn--outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.tvs-final__btn--outline:hover {
  background: var(--accent);
  color: var(--bg);
}

@media (max-width: 1024px) {
  :root {
    --h1: 42px;
    --section-py: 80px;
  }

  .primary-nav {
    gap: 16px;
  }

  .hero-copy,
  .hero-media {
    grid-column: span 12;
  }

  .hero-image {
    margin-left: 0;
    height: 52vh;
  }

  .trust-item {
    grid-column: span 6;
  }

  .about {
    padding: 80px 0;
  }

  .about-media,
  .about-content {
    grid-column: span 12;
  }

  .about-content {
    order: 2;
  }

  .about-media {
    order: 1;
  }

  .about-media__main {
    height: 460px;
  }

  .categories {
    padding: 80px 0;
  }

  .category-card {
    grid-column: span 6;
  }

  .why {
    padding: 80px 0;
  }

  .why-content,
  .why-media {
    grid-column: span 12;
  }

  .why-image {
    min-height: 520px;
  }

  .brands {
    padding: 80px 0;
  }

  .brands-grid {
    gap: 28px;
  }

  .brand-card {
    grid-column: span 12;
  }

  .wholesale-cta {
    padding: 80px 0;
  }

  .stat-item {
    grid-column: span 6;
  }

  .contact-left,
  .contact-right {
    grid-column: span 12;
  }

  .contact-right {
    padding-left: 22px;
  }

  .faq-left,
  .faq-right {
    grid-column: span 12;
  }

  .footer-col {
    grid-column: span 6;
  }

  .footer-bottom__left,
  .footer-bottom__right,
  .footer-bottom__links {
    grid-column: span 12;
    justify-self: center;
    text-align: center;
  }

  .about-hero__title {
    font-size: 48px;
  }

  .story-text,
  .story-media {
    grid-column: span 12;
  }

  .story-media {
    margin-top: 40px;
  }

  .exist-left,
  .exist-right {
    grid-column: span 12;
  }

  .exist-right {
    margin-top: 20px;
  }

  .different-title {
    margin-bottom: 44px;
  }

  .different-card {
    grid-column: span 6;
  }

  .different-card:nth-child(4),
  .different-card:nth-child(5) {
    grid-column: span 6;
  }

  .serve-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-hero__title {
    font-size: 36px;
  }

  .products-grid-title,
  .products-brand__title,
  .products-wholesale__title,
  .products-final__title {
    font-size: 32px;
  }

  .products-brand__grid {
    grid-template-columns: 1fr;
  }

  .bajaj-title {
    font-size: 36px;
  }

  .bajaj-hero__grid {
    grid-template-columns: 1fr;
  }

  .bajaj-image {
    height: 380px;
  }

  .tvs-title {
    font-size: 36px;
  }

  .tvs-hero__grid {
    grid-template-columns: 1fr;
  }

  .tvs-image {
    height: 380px;
  }

  .tvs-parts__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tvs-models__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tvs-h2 {
    font-size: 32px;
  }

  .bajaj-parts__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bajaj-models__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bajaj-h2 {
    font-size: 32px;
  }
}

@media (max-width: 720px) {
  .primary-nav {
    display: none;
  }

  .brand {
    grid-column: span 9;
  }

  .header-cta {
    grid-column: span 3;
  }

  .header-cta .btn--primary {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding: 56px 0 48px;
    min-height: auto;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-item {
    grid-column: span 6;
  }

  .categories-header {
    margin-bottom: 44px;
  }

  .categories-title {
    font-size: 34px;
  }

  .category-card {
    grid-column: span 12;
  }

  .why-title {
    font-size: 34px;
  }

  .why-image {
    min-height: 440px;
  }

  .brands-title {
    font-size: 34px;
  }

  .brand-card__content {
    padding: 30px;
  }

  .wholesale-title {
    font-size: 34px;
  }

  .wholesale-actions .btn {
    width: 100%;
  }

  .stat-item {
    grid-column: span 12;
  }

  .contact-title {
    font-size: 34px;
  }

  .contact-cta {
    width: 100%;
  }

  .faq {
    padding: 80px 0;
  }

  .faq-title {
    font-size: 34px;
  }

  .map {
    min-height: 320px;
  }

  .footer-col {
    grid-column: span 12;
  }

  .about-hero__inner {
    padding: 80px 0;
    text-align: center;
  }

  .breadcrumbs {
    justify-content: center;
  }

  .about-hero__title {
    font-size: 36px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-hero__sub {
    margin-left: auto;
    margin-right: auto;
  }

  .ops {
    padding: 80px 0;
  }

  .ops-title {
    font-size: 34px;
  }

  .ops-list {
    grid-template-columns: 1fr;
  }

  .exist {
    padding: 80px 0;
  }

  .exist-title {
    font-size: 34px;
  }

  .different {
    padding: 80px 0;
  }

  .different-title {
    font-size: 34px;
  }

  .different-card {
    grid-column: span 12;
    padding: 32px;
  }

  .different-card:nth-child(4),
  .different-card:nth-child(5) {
    grid-column: span 12;
  }

  .operation {
    padding: 80px 0;
  }

  .operation-media,
  .operation-content {
    grid-column: span 12;
  }

  .operation-title {
    font-size: 34px;
  }

  .serve {
    padding: 80px 0;
  }

  .serve-title {
    font-size: 34px;
  }

  .serve-grid {
    grid-template-columns: 1fr;
  }

  .positioning {
    padding: 80px 0;
  }

  .positioning-title {
    font-size: 32px;
  }

  .trust {
    padding: 80px 0;
  }

  .trust .trust-title {
    font-size: 34px;
  }

  .trust .trust-grid {
    grid-template-columns: 1fr;
  }

  .supplier {
    padding: 80px 0;
  }

  .supplier-title {
    font-size: 30px;
  }

  .supplier-list--cols {
    grid-template-columns: 1fr;
  }

  .final-cta {
    padding: 80px 0;
  }

  .final-cta__title {
    font-size: 32px;
  }

  .products-hero__inner {
    padding: 80px 0;
    text-align: center;
  }

  .products-hero__title {
    font-size: 36px;
    margin-left: auto;
    margin-right: auto;
  }

  .products-hero__sub {
    margin-left: auto;
    margin-right: auto;
  }

  .products-intro {
    padding: 80px 0;
  }

  .products-grid-section {
    padding: 80px 0;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .products-hero {
    min-height: auto;
  }

  .products-brand {
    padding: 80px 0;
  }

  .products-brand__card {
    padding: 40px;
  }

  .products-wholesale {
    padding: 80px 0;
  }

  .products-wholesale__list {
    grid-template-columns: 1fr;
  }

  .products-final {
    padding: 80px 0;
  }

  .products-final__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .products-final__btn {
    width: 100%;
  }

  .bajaj-hero {
    padding: 80px 0;
    min-height: auto;
  }

  .bajaj-hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bajaj-title {
    font-size: 36px;
    margin-left: auto;
    margin-right: auto;
  }

  .bajaj-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .bajaj-actions {
    justify-content: center;
  }

  .bajaj-btn {
    width: 100%;
  }

  .tvs-hero {
    padding: 80px 0;
    min-height: auto;
  }

  .tvs-hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tvs-title {
    font-size: 36px;
    margin-left: auto;
    margin-right: auto;
  }

  .tvs-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .tvs-actions {
    justify-content: center;
  }

  .tvs-btn {
    width: 100%;
  }

  .tvs-intro {
    padding: 80px 0;
  }

  .tvs-intro__grid {
    grid-template-columns: 1fr;
  }

  .tvs-sidebar__card {
    position: static;
    top: auto;
    margin-top: 30px;
  }

  .tvs-parts {
    padding: 80px 0;
  }

  .tvs-parts__grid {
    grid-template-columns: 1fr;
  }

  .tvs-why {
    padding: 80px 0;
  }

  .tvs-why__grid {
    grid-template-columns: 1fr;
  }

  .tvs-h2--dark {
    text-align: center;
  }

  .tvs-why__image {
    height: 360px;
  }

  .tvs-models {
    padding: 80px 0;
  }

  .tvs-models__grid {
    grid-template-columns: 1fr;
  }

  .tvs-mfg {
    padding: 80px 0;
  }

  .tvs-final {
    padding: 80px 0;
  }

  .tvs-final__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .tvs-final__btn {
    width: 100%;
  }

  .bajaj-intro {
    padding: 80px 0;
  }

  .bajaj-intro__grid {
    grid-template-columns: 1fr;
  }

  .bajaj-sidebar__card {
    position: static;
    top: auto;
    margin-top: 30px;
  }

  .bajaj-parts {
    padding: 80px 0;
  }

  .bajaj-parts__grid {
    grid-template-columns: 1fr;
  }

  .bajaj-why {
    padding: 80px 0;
  }

  .bajaj-why__grid {
    grid-template-columns: 1fr;
  }

  .bajaj-h2--dark {
    text-align: center;
  }

  .bajaj-why__image {
    height: 360px;
  }

  .bajaj-models {
    padding: 80px 0;
  }

  .bajaj-models__grid {
    grid-template-columns: 1fr;
  }

  .bajaj-mfg {
    padding: 80px 0;
  }

  .bajaj-final {
    padding: 80px 0;
  }

  .bajaj-final__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .bajaj-final__btn {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .trust-item {
    grid-column: span 12;
  }

  .bajaj-title {
    font-size: 32px;
  }

  .bajaj-h2 {
    font-size: 28px;
  }

  .tvs-title {
    font-size: 32px;
  }

  .tvs-h2 {
    font-size: 28px;
  }

  .about {
    padding: 70px 0;
  }

  .about-title {
    font-size: 34px;
  }

  .about-media__stack {
    padding: 14px;
  }

  .about-media__main {
    height: 380px;
  }

  .about-media__secondary {
    width: 58%;
    height: 200px;
    transform: translate(10px, 10px);
  }
}

.page-wholesale-importer {
  --accent: #f7c600;
}

.page-contact {
  --accent: #f7c600;
}

.page-contact .btn {
  border-radius: 4px;
  padding: 16px 28px;
}

.page-contact .btn--primary {
  background: #f7c600;
  color: #000000;
}

.page-contact .btn--primary:hover {
  background: #e6b700;
}

.contact-hero {
  background: #1a1a1a;
  color: #ffffff;
  min-height: 40vh;
  padding: 80px 0;
  display: flex;
  align-items: center;
  text-align: center;
}

.contact-hero__title {
  margin: 0 0 16px;
  font-size: 52px;
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
}

.contact-hero__sub {
  margin: 0 auto 16px;
  max-width: 720px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.contact-hero__body {
  margin: 0 auto;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.contact-two-col {
  background: #ffffff;
  padding: 80px 0;
  color: #111111;
}

.contact-two-col__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
}

.contact-two-col__left {
  grid-column: span 5;
}

.contact-two-col__right {
  grid-column: span 7;
}

.contact-shop__img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(17, 17, 17, 0.1);
}

.contact-details {
  margin-top: 22px;
  background: #f7f7f7;
  border-left: 6px solid #f7c600;
  border-radius: 12px;
  padding: 18px 18px;
  display: grid;
  gap: 12px;
}

.contact-details__row {
  display: grid;
  gap: 4px;
}

.contact-details__k {
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(17, 17, 17, 0.82);
}

.contact-details__v {
  font-size: 16px;
  line-height: 1.6;
  color: #111111;
}

.contact-details__note {
  margin-top: 6px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(17, 17, 17, 0.78);
}

.contact-form-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-card__title {
  margin: 0 0 10px;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  color: #111111;
}

.contact-form-card__body {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(17, 17, 17, 0.85);
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.contact-field--full {
  grid-column: 1 / -1;
}

.contact-label {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #111111;
}

.contact-input,
.contact-textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  padding: 14px 14px;
  font-size: 16px;
  line-height: 1.4;
  font-family: inherit;
  color: #111111;
  background: #ffffff;
}

.contact-textarea {
  resize: vertical;
}

.contact-input:focus-visible,
.contact-textarea:focus-visible {
  outline: 2px solid #f7c600;
  outline-offset: 3px;
}

.contact-microcopy {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(17, 17, 17, 0.72);
}

.contact-success {
  margin-top: 12px;
  background: rgba(247, 198, 0, 0.18);
  border: 1px solid rgba(247, 198, 0, 0.45);
  color: #111111;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 16px;
  line-height: 1.6;
}

.contact-map {
  background: #ffffff;
  padding: 80px 0 0;
  color: #111111;
}

.contact-map__title {
  margin: 0 0 10px;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  color: #111111;
  text-align: center;
}

.contact-map__body {
  margin: 0 auto 26px;
  max-width: 780px;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  color: rgba(17, 17, 17, 0.85);
}

.contact-map__bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.contact-map__frame {
  position: relative;
  border-top: 6px solid #f7c600;
  height: 400px;
  overflow: hidden;
  background: #f7f7f7;
}

.contact-map__iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-map__pin {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: #f7c600;
  color: #000000;
  padding: 10px 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
}

.contact-nationwide {
  background: #f7f7f7;
  padding: 70px 0;
  color: #111111;
  text-align: center;
}

.contact-nationwide__title {
  margin: 0 0 12px;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  color: #111111;
}

.contact-nationwide__copy {
  margin: 0 auto 24px;
  max-width: 840px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(17, 17, 17, 0.88);
}

.contact-nationwide__copy p {
  margin: 0 0 16px;
}

.contact-nationwide__copy p:last-child {
  margin-bottom: 0;
}

.contact-nationwide__links a {
  text-decoration: underline;
}

.contact-nationwide__cta {
  display: flex;
  justify-content: center;
}

.page-faq {
  --accent: #f7c600;
}

.page-faq .btn {
  border-radius: 4px;
  padding: 16px 28px;
}

.page-faq .btn--primary:hover {
  background: #e6b700;
}

.faq-hero {
  background: #1a1a1a;
  color: #ffffff;
  min-height: 34vh;
  padding: 70px 0;
  display: flex;
  align-items: center;
  text-align: center;
}

.faq-hero__title {
  margin: 0 0 14px;
  font-size: 52px;
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
}

.faq-hero__sub {
  margin: 0 auto;
  max-width: 820px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
}

.faq-section {
  background: #ffffff;
  padding: 80px 0;
  color: #111111;
}

.faq-search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.faq-search__label {
  font-size: 16px;
  font-weight: 600;
  color: rgba(17, 17, 17, 0.85);
  flex: 0 0 auto;
}

.faq-search__input {
  width: 100%;
  max-width: 520px;
  border-radius: 12px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  padding: 14px 14px;
  font-size: 16px;
  line-height: 1.4;
  font-family: inherit;
  color: #111111;
  background: #ffffff;
}

.faq-search__input:focus-visible {
  outline: 2px solid #f7c600;
  outline-offset: 3px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.faq-q {
  width: 100%;
  appearance: none;
  border: 0;
  background: transparent;
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: #111111;
}

.faq-q__text {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
}

.faq-q__icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.faq-ico {
  width: 18px;
  height: 18px;
  position: relative;
  display: inline-block;
  color: rgba(17, 17, 17, 0.85);
}

.faq-ico::before {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 8px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.faq-ico--plus::after {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 8px;
  width: 2px;
  background: currentColor;
  border-radius: 2px;
}

.faq-ico--minus {
  display: none;
}

.faq-q[aria-expanded="true"] .faq-ico--plus {
  display: none;
}

.faq-q[aria-expanded="true"] .faq-ico--minus {
  display: inline-block;
}

.faq-a {
  overflow: hidden;
  transition: height 260ms ease;
}

.faq-a__inner {
  padding: 0 20px 20px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(17, 17, 17, 0.88);
}

.faq-a__inner a {
  text-decoration: underline;
}

.faq-cta {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  display: grid;
  gap: 12px;
  align-items: center;
  justify-items: center;
}

.faq-cta__text {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600;
  color: rgba(17, 17, 17, 0.9);
}

.faq-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.faq-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #f7c600;
  color: #111111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  z-index: 90;
}

.wa-float:hover {
  background: #e6b700;
}

.page-blog .site-header {
  position: sticky;
  top: 0;
  z-index: 40;
}

.blog-hero {
  background: #1a1a1a;
  color: #fff;
  padding: 64px 0 44px;
}

.blog-hero__inner {
  max-width: 920px;
}

.blog-hero__title {
  margin: 0;
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.blog-hero__lead {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  max-width: 760px;
}

.blog-list {
  background: #f7f7f7;
  padding: 30px 0 56px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.blog-card {
  grid-column: span 4;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.blog-card__media {
  display: block;
  background: rgba(17, 17, 17, 0.06);
}

.blog-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.blog-card__img--placeholder {
  height: 220px;
  background: linear-gradient(135deg, rgba(245, 180, 0, 0.25), rgba(17, 17, 17, 0.05));
}

.blog-card__body {
  padding: 16px;
  display: grid;
  gap: 10px;
}

.blog-card__cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(245, 180, 0, 0.16);
  border: 1px solid rgba(245, 180, 0, 0.35);
  color: #111;
  font-weight: 800;
  font-size: 12px;
}

.blog-card__title {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

.blog-card__title a {
  color: #111;
  text-decoration: none;
}

.blog-card__excerpt {
  margin: 0;
  color: rgba(17, 17, 17, 0.75);
  line-height: 1.65;
  font-size: 14px;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(17, 17, 17, 0.7);
  font-size: 12px;
}

.blog-card__more {
  font-weight: 800;
  color: #111;
}

.blog-empty {
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.12);
  color: rgba(17, 17, 17, 0.75);
}

.blog-cta {
  background: #f7f7f7;
  padding: 0 0 64px;
}

.blog-cta__box {
  border-radius: 16px;
  background: #1a1a1a;
  color: #fff;
  padding: 22px;
  display: grid;
  gap: 10px;
  border: 1px solid rgba(245, 180, 0, 0.25);
}

.blog-cta__title {
  font-weight: 800;
  font-size: 20px;
}

.blog-cta__body {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.blog-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.blog-post-hero {
  background: #1a1a1a;
  color: #fff;
  padding: 54px 0 34px;
}

.blog-post-hero__inner {
  max-width: 980px;
}

.blog-post-hero__cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(245, 180, 0, 0.16);
  border: 1px solid rgba(245, 180, 0, 0.35);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  text-decoration: none;
}

.blog-post-hero__title {
  margin: 12px 0 0;
  font-size: clamp(28px, 4.6vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.blog-post-hero__meta {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-post-hero__sep {
  opacity: 0.75;
}

.blog-post-hero__tag {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
}

.blog-post {
  background: #f7f7f7;
  padding: 26px 0 58px;
}

.blog-post__featured {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #fff;
  aspect-ratio: 16 / 9;
}

.blog-post__featured picture {
  display: block;
  width: 100%;
  height: 100%;
}

.blog-post__featured img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.blog-post__content {
  margin-top: 18px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  padding: 22px;
  line-height: 1.8;
  color: rgba(17, 17, 17, 0.92);
}

.blog-post__content figure {
  margin: 18px 0;
}

.blog-post__content figure img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
}

.blog-post__content figcaption {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(17, 17, 17, 0.72);
  text-align: center;
}

.blog-post__content h2,
.blog-post__content h3 {
  color: #111;
  line-height: 1.35;
}

.blog-post__content a {
  color: #111;
  text-decoration: underline;
  text-decoration-color: rgba(245, 180, 0, 0.85);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.blog-related__title {
  margin: 22px 0 14px;
  font-size: 22px;
  font-weight: 800;
  color: #111;
}

@media (max-width: 980px) {
  .blog-card {
    grid-column: span 6;
  }
}

@media (max-width: 640px) {
  .blog-card {
    grid-column: span 12;
  }
  .blog-post__content {
    padding: 18px;
  }
}

.pillar-hero {
  background: #1a1a1a;
  min-height: 70vh;
  padding: 70px 0;
  display: flex;
  align-items: center;
}

.pillar-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
}

.pillar-hero__copy {
  max-width: 860px;
}

.pillar-badge {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(245, 180, 0, 0.14);
  border: 1px solid rgba(245, 180, 0, 0.35);
  color: #ffffff;
  font-weight: 800;
  font-size: 12px;
}

.pillar-title {
  margin: 18px 0 0;
  color: #ffffff;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.pillar-lead {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.8;
}

.pillar-hero__actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pillar-hero__frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.pillar-hero__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.pillar-hero__note {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}

.pillar {
  background: #f7f7f7;
  padding: 26px 0 58px;
  color: #111111;
}

.pillar-toc {
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 16px;
  padding: 16px;
  background: #ffffff;
}

.pillar-toc__title {
  font-weight: 800;
  font-size: 16px;
  color: #111111;
}

.pillar-toc__list {
  margin: 12px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.pillar-toc a {
  text-decoration: underline;
  text-decoration-color: rgba(245, 180, 0, 0.85);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.pillar-article {
  margin-top: 18px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  padding: 22px;
  line-height: 1.8;
  color: rgba(17, 17, 17, 0.92);
}

.pillar-article h2,
.pillar-article h3 {
  color: #111111;
  line-height: 1.35;
}

.pillar-article a {
  color: #111111;
  text-decoration: underline;
  text-decoration-color: rgba(245, 180, 0, 0.85);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.pillar-sec {
  padding: 78px 0;
}

.pillar-sec + .pillar-sec {
  border-top: 1px solid rgba(17, 17, 17, 0.10);
}

.pillar-sec__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: rgba(17, 17, 17, 0.68);
  text-transform: uppercase;
}

.pillar-sec__title {
  margin: 14px 0 0;
  position: relative;
  padding-top: 16px;
}

.pillar-sec__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent);
}

.pillar-stats {
  margin: 18px 0;
  padding: 16px;
  border-radius: 16px;
  background: rgba(17, 17, 17, 0.04);
  border: 1px solid rgba(17, 17, 17, 0.08);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
}

.pillar-stat {
  grid-column: span 6;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(17, 17, 17, 0.10);
  padding: 14px;
  position: relative;
  overflow: hidden;
}

.pillar-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 4px;
  border-radius: 999px;
  background: var(--accent);
}

.pillar-stat__title {
  font-weight: 900;
  color: #111111;
  padding-left: 10px;
}

.pillar-stat__body {
  margin-top: 6px;
  color: rgba(17, 17, 17, 0.78);
  padding-left: 10px;
}

.pillar-story {
  margin: 18px 0;
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.9);
  border-left: 6px solid var(--accent);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.pillar-story p {
  margin: 0;
  font-size: 18px;
  line-height: 1.85;
}

.pillar-cta--strong {
  background: rgba(245, 180, 0, 0.10);
}

.pillar-insight {
  margin: 12px 0 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(245, 180, 0, 0.10);
  border: 1px solid rgba(245, 180, 0, 0.32);
  font-weight: 900;
  color: rgba(17, 17, 17, 0.90);
}

.pillar-checklist {
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
}

.pillar-check {
  grid-column: span 6;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(17, 17, 17, 0.10);
  padding: 12px 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.pillar-check__icon {
  color: var(--accent);
  flex: 0 0 auto;
  margin-top: 2px;
}

.pillar-check__text {
  font-weight: 700;
  color: rgba(17, 17, 17, 0.86);
}

.pillar-conclusion {
  margin-top: 18px;
  font-weight: 800;
  color: rgba(17, 17, 17, 0.92);
}

.pillar-mini-cta {
  margin-top: 16px;
  border-radius: 16px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #ffffff;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.pillar-mini-cta__text {
  font-weight: 900;
  color: rgba(17, 17, 17, 0.90);
}

.container-860 {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

.article-section {
  padding: 100px 0;
}

.article-section.bg-light {
  background: #f7f7f7;
}

.section-header {
  display: grid;
  gap: 12px;
}

.accent-line {
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent);
}

.section-number {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: rgba(17, 17, 17, 0.68);
  text-transform: uppercase;
}

.section-header h2 {
  margin: 0;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111111;
  line-height: 1.18;
}

.section-intro {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(17, 17, 17, 0.78);
}

.content-body {
  margin-top: 28px;
}

.btn-yellow {
  background: var(--accent);
  color: #1a1a1a;
  border-color: transparent;
}

.btn-yellow:hover {
  background: #e0a800;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.tier-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 24px;
  transition: border-color 0.2s;
}

.tier-card.featured {
  border: 2px solid #f5b800;
  position: relative;
}

.tier-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -12px;
  right: 20px;
  background: #f5b800;
  color: #1a1a1a;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

.tier-header {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
}

.tier-header h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 700;
  color: #111111;
}

.tier-range {
  display: inline-block;
  background: #f7f7f7;
  color: #1a1a1a;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 14px;
}

.tier-description {
  font-size: 14px;
  color: #555;
  margin-bottom: 16px;
}

.tier-breakdown {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.tier-breakdown li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px dashed #eee;
}

.tier-breakdown li span {
  color: #666;
  flex: 0 0 auto;
}

.tier-focus {
  font-size: 13px;
  color: #444;
  background: #f7f7f7;
  padding: 12px;
  border-radius: 4px;
  margin: 0;
}

.funding-section {
  background: #fff;
  padding: 24px;
  border-radius: 4px;
  margin: 32px 0;
  border: 1px solid rgba(17, 17, 17, 0.10);
}

.funding-section h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #111111;
}

.funding-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
}

.funding-list li {
  position: relative;
  padding-left: 20px;
  color: rgba(17, 17, 17, 0.78);
}

.funding-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f5b800;
  font-weight: bold;
}

.funding-list a {
  color: #111111;
  text-decoration: underline;
  text-decoration-color: rgba(245, 180, 0, 0.85);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.info-card {
  background: #fff;
  border-left: 4px solid #f5b800;
  padding: 20px 24px;
  margin: 20px 0;
  border-radius: 4px;
  border-top: 1px solid rgba(17, 17, 17, 0.10);
  border-right: 1px solid rgba(17, 17, 17, 0.10);
  border-bottom: 1px solid rgba(17, 17, 17, 0.10);
}

.info-card h3 {
  margin: 0 0 12px 0;
  font-size: 18px;
  font-weight: 800;
  color: #111111;
}

.info-card p {
  margin: 0;
  color: rgba(17, 17, 17, 0.78);
  line-height: 1.8;
}

.info-card .checklist {
  margin: 12px 0 0 0;
  padding-left: 20px;
}

.info-card .checklist li {
  margin: 6px 0;
  font-size: 15px;
  color: rgba(17, 17, 17, 0.80);
}

.callout-box.warning {
  background: #fff9e6;
  border: 1px solid #f5b800;
  border-left: 4px solid #f5b800;
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 15px;
  color: rgba(17, 17, 17, 0.86);
  border-radius: 4px;
}

.closing-note {
  margin: 18px 0 0;
  color: rgba(17, 17, 17, 0.86);
  font-weight: 700;
}

.inline-cta {
  text-align: center;
  padding: 24px;
  margin: 32px 0 0;
  border-radius: 4px;
}

.inline-cta.light {
  background: #f7f7f7;
}

.inline-cta.dark {
  background: #1a1a1a;
  color: #fff;
}

.inline-cta.dark p {
  margin: 0 0 16px 0;
  font-size: 18px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .tier-grid {
    grid-template-columns: 1fr;
  }
  .funding-list {
    grid-template-columns: 1fr;
  }
}

.brand-comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin: 40px 0;
}

.brand-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.brand-header {
  background: #f7f7f7;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid #f5b800;
}

.brand-header h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #111111;
}

.brand-badge {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

.brand-badge.established {
  background: #1a1a1a;
  color: #f5b800;
}

.brand-badge.growing {
  background: #f5b800;
  color: #1a1a1a;
}

.brand-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #f0f0f0;
}

.brand-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-content {
  padding: 24px;
}

.brand-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.brand-features li {
  padding: 8px 0;
  border-bottom: 1px dashed #eee;
  font-size: 15px;
  color: rgba(17, 17, 17, 0.86);
}

.brand-features li:last-child {
  border-bottom: none;
}

.brand-summary {
  background: #f7f7f7;
  padding: 16px;
  border-radius: 4px;
  margin: 0;
}

.brand-summary p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(17, 17, 17, 0.78);
}

.decision-guide {
  background: #fff;
  border-left: 4px solid #f5b800;
  padding: 28px 32px;
  margin: 32px 0;
  border-radius: 4px;
  border-top: 1px solid rgba(17, 17, 17, 0.10);
  border-right: 1px solid rgba(17, 17, 17, 0.10);
  border-bottom: 1px solid rgba(17, 17, 17, 0.10);
}

.decision-guide h3 {
  margin: 0 0 16px 0;
  font-size: 20px;
  font-weight: 800;
  color: #111111;
}

.guide-content p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 16px 0;
  color: rgba(17, 17, 17, 0.78);
}

.guide-highlight {
  background: #fff9e6;
  border: 1px solid #f5b800;
  padding: 16px 20px;
  border-radius: 4px;
  margin-top: 16px;
}

.guide-highlight p {
  margin: 0;
  font-weight: 600;
  color: rgba(17, 17, 17, 0.86);
}

.text-light {
  color: #ffffff;
}

.bg-dark {
  background: #1a1a1a;
}

.bg-dark .section-number {
  color: rgba(255, 255, 255, 0.72);
}

.bg-dark .section-intro {
  color: rgba(255, 255, 255, 0.80);
}

.section-header h2.text-light {
  color: #ffffff;
}

.bg-dark .section-header h2 {
  color: #ffffff;
}

.bg-dark .section-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  padding-bottom: 32px;
}

.sourcing-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.sourcing-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: transform 0.2s;
}

.sourcing-card.featured {
  border: 3px solid #f5b800;
  transform: scale(1.02);
}

.sourcing-card.featured:hover {
  transform: scale(1.04);
}

.recommended-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #f5b800;
  color: #1a1a1a;
  font-weight: 700;
  font-size: 12px;
  padding: 8px 16px;
  border-bottom-left-radius: 4px;
  z-index: 10;
}

.sourcing-header {
  background: #1a1a1a;
  color: #fff;
  padding: 20px 24px;
  position: relative;
}

.sourcing-header .option-number {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 36px;
  font-weight: 700;
  opacity: 0.2;
}

.sourcing-header h3 {
  margin: 0 0 8px 0;
  font-size: 20px;
  font-weight: 700;
}

.location-tag {
  font-size: 13px;
  color: #f5b800;
  font-weight: 600;
}

.sourcing-body {
  padding: 24px;
}

.sourcing-verdict {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 14px;
}

.sourcing-verdict.risky {
  background: #fff3cd;
  color: #856404;
}

.sourcing-verdict.moderate {
  background: #e7f3ff;
  color: #004085;
}

.sourcing-verdict.best {
  background: #d4edda;
  color: #155724;
}

.verdict-icon {
  font-size: 18px;
}

.sourcing-body p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 16px 0;
  color: rgba(17, 17, 17, 0.80);
}

.sourcing-problems {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.sourcing-problems li {
  padding: 6px 0;
  font-size: 14px;
  color: rgba(17, 17, 17, 0.82);
}

.sourcing-benefits {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.sourcing-benefits li {
  padding: 8px 0;
  font-size: 14px;
  color: #155724;
}

.sourcing-reality {
  background: #f7f7f7;
  padding: 12px 16px;
  border-radius: 4px;
  margin-top: 16px;
}

.sourcing-reality p {
  margin: 0;
  font-size: 14px;
  font-style: italic;
}

.gstar-advantage {
  background: #fff9e6;
  border: 2px solid #f5b800;
  padding: 20px;
  border-radius: 4px;
  margin-top: 20px;
}

.gstar-advantage p {
  margin: 0 0 12px 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(17, 17, 17, 0.84);
}

.gstar-advantage p:last-child {
  margin: 0;
}

.section-image-wide {
  margin: 40px 0;
  text-align: center;
}

.section-image-wide img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.image-caption {
  margin: 12px 0 0 0;
  font-size: 14px;
  color: rgba(17, 17, 17, 0.72);
  font-style: italic;
}

.bg-dark .image-caption {
  color: rgba(255, 255, 255, 0.78);
}

.inline-cta.centered {
  text-align: center;
  margin: 40px 0;
}

.btn-large {
  padding: 16px 36px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .brand-comparison-grid {
    grid-template-columns: 1fr;
  }
  .sourcing-options-grid {
    grid-template-columns: 1fr;
  }
  .sourcing-card.featured {
    transform: none;
    order: -1;
  }
  .sourcing-card.featured:hover {
    transform: none;
  }
  .brand-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .section-image-wide img {
    max-height: 300px;
    object-fit: cover;
  }
}

.parts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.parts-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}

.parts-card.high-turn {
  border-top: 4px solid #22c55e;
}

.parts-card.medium-turn {
  border-top: 4px solid #f5b800;
}

.parts-card.low-turn {
  border-top: 4px solid #3b82f6;
}

.parts-header {
  background: #f7f7f7;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.parts-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #111111;
}

.turn-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: uppercase;
}

.turn-badge.highest {
  background: #22c55e;
  color: #fff;
}

.turn-badge.medium {
  background: #f5b800;
  color: #1a1a1a;
}

.turn-badge.lower {
  background: #3b82f6;
  color: #fff;
}

.restock-note {
  font-size: 12px;
  color: rgba(17, 17, 17, 0.64);
  font-weight: 600;
}

.parts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.parts-list li {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px dashed #eee;
  font-size: 15px;
  color: rgba(17, 17, 17, 0.86);
}

.parts-list li:last-child {
  border-bottom: none;
}

.part-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #f7f7f7;
  color: #1a1a1a;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  margin-right: 12px;
  flex: 0 0 auto;
}

.category-note {
  background: #f7f7f7;
  padding: 12px 20px;
  font-size: 14px;
  color: rgba(17, 17, 17, 0.70);
}

.category-note p {
  margin: 0;
}

.strategy-callout {
  background: #fff9e6;
  border-left: 4px solid #f5b800;
  padding: 20px 24px;
  margin: 32px 0;
  border-radius: 0 4px 4px 0;
}

.strategy-callout p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(17, 17, 17, 0.82);
}

.strategy-callout a {
  color: #111111;
  text-decoration: underline;
  text-decoration-color: rgba(245, 180, 0, 0.85);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.section-image {
  margin: 40px 0;
  text-align: center;
}

.section-image img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
  display: block;
  margin: 0 auto;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.location-card {
  background: #fff;
  padding: 20px;
  border-radius: 4px;
  text-align: center;
  border: 1px solid #e0e0e0;
}

.location-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 12px;
}

.location-card h4 {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}

.location-card p {
  margin: 0;
  font-size: 14px;
  color: rgba(17, 17, 17, 0.64);
}

.location-principle {
  background: #fff;
  border-left: 4px solid #f5b800;
  padding: 16px 20px;
  margin: 24px 0;
  border-radius: 4px;
  border-top: 1px solid rgba(17, 17, 17, 0.10);
  border-right: 1px solid rgba(17, 17, 17, 0.10);
  border-bottom: 1px solid rgba(17, 17, 17, 0.10);
}

.location-principle p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(17, 17, 17, 0.78);
}

.setup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 24px 0;
}

.setup-item {
  background: #fff;
  padding: 20px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
}

.setup-item.full-width {
  grid-column: 1 / -1;
}

.setup-item h4 {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}

.setup-item p {
  margin: 0;
  font-size: 14px;
  color: rgba(17, 17, 17, 0.70);
  line-height: 1.6;
}

.professional-callout {
  background: #1a1a1a;
  color: #fff;
  padding: 20px 24px;
  border-radius: 4px;
  margin: 32px 0;
}

.professional-callout p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
}

.pricing-framework {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.pricing-card {
  background: #fff;
  padding: 24px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  position: relative;
}

.pricing-card.foundation {
  border-top: 4px solid #f5b800;
  background: #fff9e6;
}

.pricing-card.warning-card {
  border: 2px solid #dc2626;
  background: #fef2f2;
}

.pricing-icon {
  font-size: 24px;
  margin-bottom: 12px;
}

.pricing-card h3 {
  margin: 0 0 12px 0;
  font-size: 18px;
  font-weight: 800;
  color: #111111;
}

.pricing-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(17, 17, 17, 0.78);
}

.pricing-card a {
  color: #111111;
  text-decoration: underline;
  text-decoration-color: rgba(245, 180, 0, 0.85);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.pricing-visual {
  background: #f7f7f7;
  padding: 24px;
  border-radius: 4px;
  margin: 32px 0;
  border: 1px solid rgba(17, 17, 17, 0.10);
}

.margin-comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}

.margin-bar {
  position: relative;
  height: 48px;
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 16px;
}

.margin-bar.retail {
  background: linear-gradient(90deg, #f5b800 0%, #f5b800 40%, #e0e0e0 40%);
}

.margin-bar.wholesale {
  background: linear-gradient(90deg, #f5b800 0%, #f5b800 20%, #e0e0e0 20%);
}

.margin-label {
  font-weight: 700;
  font-size: 14px;
  color: #1a1a1a;
  z-index: 2;
}

.margin-value {
  position: absolute;
  right: 16px;
  font-weight: 800;
  font-size: 16px;
  color: #1a1a1a;
  background: #fff;
  padding: 4px 12px;
  border-radius: 20px;
}

.visual-note {
  margin: 0;
  font-size: 14px;
  color: rgba(17, 17, 17, 0.64);
  font-style: italic;
}

@media (max-width: 768px) {
  .parts-grid,
  .location-grid,
  .setup-grid,
  .pricing-framework {
    grid-template-columns: 1fr;
  }
  .parts-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .margin-bar {
    height: 56px;
  }
}

.marketing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.marketing-card {
  background: #fff;
  padding: 24px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  position: relative;
}

.marketing-card.featured {
  border-top: 4px solid #f5b800;
}

.marketing-card.full-width {
  grid-column: 1 / -1;
}

.marketing-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.marketing-card h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 800;
  color: #111111;
}

.channel-badge {
  display: inline-block;
  background: #f5b800;
  color: #1a1a1a;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.marketing-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(17, 17, 17, 0.78);
  margin: 0 0 12px 0;
}

.marketing-impact {
  background: #fff9e6;
  padding: 12px 16px;
  border-radius: 4px;
  margin-top: 12px;
}

.marketing-impact p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: rgba(17, 17, 17, 0.82);
}

.setup-checklist {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.setup-checklist li {
  padding: 4px 0;
  font-size: 14px;
  color: rgba(17, 17, 17, 0.70);
}

.marketing-note p {
  margin: 0;
  font-size: 13px;
  color: rgba(17, 17, 17, 0.62);
  font-style: italic;
}

.reputation-warning {
  background: #1a1a1a;
  color: #fff;
  padding: 12px 16px;
  border-radius: 4px;
  margin-top: 12px;
}

.reputation-warning p {
  margin: 0;
  font-weight: 700;
  color: #fff;
}

.action-checklist {
  background: #fff;
  padding: 24px;
  border-radius: 4px;
  margin: 32px 0;
  border-left: 4px solid #f5b800;
  border-top: 1px solid rgba(17, 17, 17, 0.10);
  border-right: 1px solid rgba(17, 17, 17, 0.10);
  border-bottom: 1px solid rgba(17, 17, 17, 0.10);
}

.action-checklist h3 {
  margin: 0 0 16px 0;
  font-size: 18px;
  font-weight: 800;
  color: #111111;
}

.numbered-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step-counter;
}

.numbered-checklist li {
  counter-increment: step-counter;
  padding: 10px 0 10px 36px;
  position: relative;
  font-size: 15px;
  border-bottom: 1px dashed #eee;
  color: rgba(17, 17, 17, 0.82);
}

.numbered-checklist li:last-child {
  border-bottom: none;
}

.numbered-checklist li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: #f5b800;
  color: #1a1a1a;
  font-weight: 800;
  font-size: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .marketing-grid {
    grid-template-columns: 1fr;
  }
}

.financial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.financial-card {
  background: #fff;
  padding: 24px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
}

.financial-card.warning {
  border-top: 4px solid #f5b800;
}

.financial-card.critical {
  border: 2px solid #dc2626;
  background: #fef2f2;
}

.financial-card.growth {
  border-top: 4px solid #22c55e;
}

.financial-card.full-width {
  grid-column: 1 / -1;
}

.financial-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.financial-card h3 {
  margin: 0 0 12px 0;
  font-size: 18px;
  font-weight: 800;
  color: #111111;
}

.financial-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(17, 17, 17, 0.78);
  margin: 0 0 12px 0;
}

.tracking-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.tracking-list li {
  padding: 4px 0;
  font-size: 14px;
  color: rgba(17, 17, 17, 0.70);
}

.action-step {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f7f7f7;
  padding: 12px 16px;
  border-radius: 4px;
  margin-top: 12px;
}

.action-step .step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #1a1a1a;
  color: #f5b800;
  font-weight: 800;
  font-size: 12px;
  border-radius: 4px;
  flex: 0 0 auto;
}

.cashflow-tip,
.credit-rule {
  background: #f7f7f7;
  padding: 10px 14px;
  border-radius: 4px;
  margin-top: 12px;
}

.cashflow-tip p,
.credit-rule p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: rgba(17, 17, 17, 0.86);
}

.reinvest-timeline {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.timeline-item {
  flex: 1;
  min-width: 150px;
  background: #f7f7f7;
  padding: 12px;
  border-radius: 4px;
  text-align: center;
}

.timeline-month {
  display: block;
  font-weight: 800;
  font-size: 14px;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.timeline-item span:last-child {
  font-size: 13px;
  color: rgba(17, 17, 17, 0.68);
}

.financial-callout {
  background: #1a1a1a;
  color: #fff;
  padding: 20px 24px;
  border-radius: 4px;
  margin: 32px 0 0;
}

.financial-callout p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
}

.scaling-readiness {
  background: #fff;
  padding: 24px;
  border-radius: 4px;
  margin: 32px 0;
}

.scaling-readiness h3 {
  margin: 0 0 20px 0;
  font-size: 20px;
  font-weight: 800;
  color: #111111;
}

.readiness-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.readiness-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(17, 17, 17, 0.78);
}

.check-icon {
  color: #22c55e;
  font-weight: 900;
  font-size: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
}

.wholesale-comparison {
  margin: 40px 0;
}

.wholesale-comparison h3 {
  margin: 0 0 24px 0;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.comparison-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.comparison-card {
  background: #fff;
  padding: 24px;
  border-radius: 4px;
  position: relative;
}

.comparison-card.retail {
  border: 1px solid #e0e0e0;
}

.comparison-card.wholesale {
  border: 3px solid #f5b800;
}

.comparison-card .scale-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #f5b800;
  color: #1a1a1a;
  font-weight: 800;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 20px;
}

.comparison-card h4 {
  margin: 0 0 16px 0;
  font-size: 18px;
  font-weight: 800;
  color: #111111;
}

.comparison-metric {
  margin: 16px 0;
  text-align: center;
  padding: 16px;
  background: #f7f7f7;
  border-radius: 4px;
}

.metric-value {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: #1a1a1a;
}

.metric-label {
  font-size: 13px;
  color: rgba(17, 17, 17, 0.62);
}

.comparison-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
}

.comparison-card li {
  padding: 6px 0;
  font-size: 14px;
  color: rgba(17, 17, 17, 0.70);
  border-bottom: 1px dashed #eee;
}

.comparison-card li:last-child {
  border-bottom: none;
}

.network-builder {
  margin: 40px 0;
}

.network-builder h3 {
  margin: 0 0 24px 0;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.network-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.network-step {
  background: rgba(255, 255, 255, 0.10);
  padding: 20px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.20);
}

.network-step .step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #f5b800;
  color: #1a1a1a;
  font-weight: 900;
  font-size: 14px;
  border-radius: 50%;
  margin-bottom: 12px;
}

.network-step h4 {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.network-step p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.6;
}

.gstar-pathway {
  background: #fff;
  padding: 32px;
  border-radius: 4px;
  margin: 40px 0;
  border: 2px solid #f5b800;
}

.pathway-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.pathway-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: #111111;
}

.pathway-badge {
  background: #1a1a1a;
  color: #f5b800;
  font-weight: 800;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
}

.pathway-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.pathway-node {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  background: #f7f7f7;
  padding: 16px;
  border-radius: 4px;
  text-align: center;
}

.pathway-node.active {
  background: #fff9e6;
  border: 2px solid #f5b800;
}

.pathway-node.supplier {
  background: #1a1a1a;
  color: #fff;
}

.pathway-node.supplier .node-detail {
  color: rgba(255, 255, 255, 0.80);
}

.node-label {
  display: block;
  font-weight: 900;
  font-size: 15px;
  margin-bottom: 8px;
}

.node-detail {
  display: block;
  font-size: 12px;
  color: rgba(17, 17, 17, 0.62);
  line-height: 1.5;
}

.pathway-arrow {
  font-size: 24px;
  color: #f5b800;
  font-weight: 900;
}

.pathway-benefit {
  background: #f7f7f7;
  padding: 16px 20px;
  border-radius: 4px;
  margin-top: 20px;
}

.pathway-benefit p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(17, 17, 17, 0.78);
}

@media (max-width: 768px) {
  .financial-grid,
  .readiness-grid,
  .comparison-cards,
  .network-steps {
    grid-template-columns: 1fr;
  }
  .pathway-diagram {
    flex-direction: column;
  }
  .pathway-arrow {
    transform: rotate(90deg);
  }
  .reinvest-timeline {
    flex-direction: column;
  }
  .comparison-card.wholesale {
    order: -1;
  }
}

.risk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.risk-card {
  background: #fff;
  padding: 24px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  position: relative;
}

.risk-card.critical {
  border: 2px solid #dc2626;
  background: #fef2f2;
}

.risk-card.warning {
  border-top: 4px solid #f5b800;
}

.risk-card.full-width {
  grid-column: 1 / -1;
}

.risk-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.risk-card h3 {
  margin: 0 0 12px 0;
  font-size: 18px;
  font-weight: 800;
  color: #111111;
}

.risk-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(17, 17, 17, 0.78);
  margin: 0 0 12px 0;
}

.risk-card a {
  color: #111111;
  text-decoration: underline;
  text-decoration-color: rgba(245, 180, 0, 0.85);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.risk-solution {
  background: #f7f7f7;
  padding: 12px 16px;
  border-radius: 4px;
  margin-top: 12px;
}

.risk-solution p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: rgba(17, 17, 17, 0.82);
}

.security-checklist {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.security-checklist li {
  padding: 4px 0;
  font-size: 14px;
  color: rgba(17, 17, 17, 0.70);
}

.risk-warning {
  background: #fff9e6;
  border: 1px solid #f5b800;
  padding: 12px 16px;
  border-radius: 4px;
  margin-top: 12px;
}

.risk-warning p {
  margin: 0;
  font-weight: 700;
  font-size: 14px;
  color: rgba(17, 17, 17, 0.86);
}

.risk-principle {
  background: #1a1a1a;
  color: #fff;
  padding: 20px 24px;
  border-radius: 4px;
  margin: 32px 0 0;
}

.risk-principle p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
}

.partnership-section {
  background: #1a1a1a;
}

.partnership-section .section-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  padding-bottom: 32px;
}

.partnership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.benefit-card {
  background: #fff;
  padding: 24px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
}

.benefit-card.featured {
  border: 2px solid #f5b800;
  position: relative;
}

.benefit-card.featured::before {
  content: "Most Valuable";
  position: absolute;
  top: -12px;
  right: 20px;
  background: #f5b800;
  color: #1a1a1a;
  font-size: 11px;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 20px;
}

.benefit-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.benefit-card h3 {
  margin: 0 0 12px 0;
  font-size: 18px;
  font-weight: 800;
  color: #1a1a1a;
}

.benefit-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(17, 17, 17, 0.78);
  margin: 0;
}

.partnership-statement {
  background: rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-radius: 4px;
  margin: 32px 0;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.partnership-statement p {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.partnership-statement .statement-sub {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.80);
  font-weight: 500;
}

.partnership-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0 0;
}

.btn-outline {
  background: transparent;
  color: #f5b800;
  border: 2px solid #f5b800;
}

.btn-outline:hover {
  background: #f5b800;
  color: #1a1a1a;
}

@media (max-width: 768px) {
  .risk-grid,
  .partnership-grid {
    grid-template-columns: 1fr;
  }
  .risk-card.full-width {
    grid-column: 1;
  }
  .partnership-cta {
    flex-direction: column;
    align-items: stretch;
  }
}

.final-cta-section {
  text-align: center;
  padding: 60px 0;
}

.final-cta-content h2 {
  color: #fff;
  font-size: 32px;
  margin: 0 0 16px 0;
}

.final-cta-section .cta-intro {
  color: rgba(255, 255, 255, 0.90);
  font-size: 18px;
  margin: 0 0 32px 0;
}

.final-cta-section .onboarding-steps {
  list-style: none;
  padding: 0;
  margin: 0 auto 32px auto;
  text-align: left;
  max-width: 600px;
}

.final-cta-section .onboarding-steps li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.90);
  font-size: 15px;
}

.final-cta-section .onboarding-steps li:last-child {
  border-bottom: none;
}

.final-cta-section .step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #f5b800;
  color: #1a1a1a;
  font-weight: 900;
  font-size: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.final-cta-section .step-text {
  flex: 1;
}

.final-cta-section .contact-details {
  margin: 32px 0;
  color: rgba(255, 255, 255, 0.80);
  font-size: 15px;
  line-height: 2;
}

.final-cta-section .contact-details a {
  color: #f5b800;
  text-decoration: none;
}

.final-cta-section .contact-details a:hover {
  text-decoration: underline;
}

.final-cta-section .final-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: #fff;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 800;
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}

.faq-question:hover {
  background: #f7f7f7;
}

.faq-toggle {
  font-size: 24px;
  color: #f5b800;
  font-weight: 300;
  transition: transform 0.2s;
}

.faq-question[aria-expanded="true"] .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 20px 24px;
  color: rgba(17, 17, 17, 0.78);
  font-size: 15px;
  line-height: 1.7;
}

.faq-answer p {
  margin: 0;
}

.authority-footer-block {
  background: #f7f7f7;
  padding: 40px 0;
  border-top: 1px solid #e0e0e0;
  margin-top: 60px;
}

.authority-content {
  text-align: center;
}

.authority-badge {
  display: inline-block;
  background: #1a1a1a;
  color: #f5b800;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.authority-text {
  font-size: 18px;
  color: #1a1a1a;
  margin: 0 0 20px 0;
}

.authority-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
}

.authority-list li {
  font-size: 14px;
  color: rgba(17, 17, 17, 0.78);
}

@media (max-width: 768px) {
  .final-cta-content h2 {
    font-size: 26px;
  }
  .final-cta-section .onboarding-steps li {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .final-cta-section .final-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .final-cta-section .final-cta-buttons .btn-large {
    width: 100%;
    max-width: 320px;
  }
  .authority-list {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}

.pillar-callout {
  margin: 16px 0;
  padding: 14px;
  border-radius: 16px;
  background: rgba(245, 180, 0, 0.12);
  border: 1px solid rgba(245, 180, 0, 0.35);
  font-weight: 800;
}

.pillar-cta {
  margin-top: 16px;
  border-radius: 16px;
  border: 1px solid rgba(245, 180, 0, 0.35);
  background: rgba(245, 180, 0, 0.08);
  padding: 14px;
}

.pillar-cta__title {
  font-weight: 900;
  font-size: 16px;
  color: #111111;
}

.pillar-cta__body {
  margin-top: 6px;
  color: rgba(17, 17, 17, 0.78);
}

.pillar-cta__actions {
  margin-top: 12px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pillar-figure {
  margin: 18px 0;
}

.pillar-figure img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.pillar-figure--mini img {
  border-radius: 12px;
}

.pillar-figure figcaption {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(17, 17, 17, 0.72);
  text-align: center;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  margin: 14px 0;
}

.pillar-grid--2 > * {
  grid-column: span 6;
}

.pillar-grid--3 > * {
  grid-column: span 4;
}

.pillar-card {
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 16px;
  padding: 14px;
  background: #ffffff;
}

.pillar-card--accent {
  border-color: rgba(245, 180, 0, 0.35);
  background: rgba(245, 180, 0, 0.10);
}

.pillar-card__title {
  font-weight: 900;
  color: #111111;
}

.pillar-card__p {
  margin: 10px 0 0;
}

.pillar-card__list {
  margin: 10px 0 0;
}

.pillar-tier {
  margin-top: 6px;
  color: rgba(17, 17, 17, 0.75);
  font-weight: 800;
}

.pillar-warning {
  margin: 16px 0;
  padding: 14px;
  border-radius: 16px;
  background: rgba(176, 0, 32, 0.08);
  border: 1px solid rgba(176, 0, 32, 0.22);
  font-weight: 900;
}

.pillar-final {
  background: #1a1a1a;
  padding: 70px 0;
}

.pillar-final__inner {
  text-align: center;
  color: #ffffff;
}

.pillar-final__title {
  font-weight: 900;
  font-size: clamp(28px, 4vw, 40px);
}

.pillar-final__text {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.8;
}

.pillar-final__actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.pillar-final__meta {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  display: grid;
  gap: 6px;
}

.pillar-final__meta a {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: rgba(245, 180, 0, 0.85);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.pillar-faq {
  margin-top: 10px;
  display: grid;
  gap: 10px;
}

.pillar-faq__item {
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 16px;
  padding: 12px 14px;
  background: #ffffff;
}

.pillar-faq__item summary {
  cursor: pointer;
  font-weight: 900;
}

.pillar-faq__a {
  margin-top: 10px;
  color: rgba(17, 17, 17, 0.78);
  line-height: 1.8;
}

@media (max-width: 980px) {
  .pillar-hero__grid {
    grid-template-columns: 1fr;
  }
  .pillar-hero__img {
    height: 280px;
  }
  .pillar-sec {
    padding: 64px 0;
  }
  .pillar-grid--2 > * {
    grid-column: span 12;
  }
  .pillar-grid--3 > * {
    grid-column: span 12;
  }
}

@media (max-width: 640px) {
  .pillar-article {
    padding: 18px;
  }
  .pillar-sec {
    padding: 56px 0;
  }
  .pillar-stat {
    grid-column: span 12;
  }
  .pillar-check {
    grid-column: span 12;
  }
  .pillar-story p {
    font-size: 16px;
  }
}

.page-wholesale-importer .btn {
  border-radius: 4px;
}

.page-wholesale-importer .btn--primary {
  background: #f7c600;
  color: #000000;
}

.page-wholesale-importer .btn--primary:hover {
  background: #e6b700;
}

.wh-hero {
  background-color: #1a1a1a;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://placehold.co/1920x1080/1A1A1A/FFFFFF?text=Shipping+Containers+%2F+Port");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 70vh;
  padding: 100px 0;
  display: flex;
  align-items: center;
}

.wh-hero__wrap {
  max-width: 820px;
}

.wh-hero__badge {
  display: inline-block;
  background: #f7c600;
  color: #000000;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 18px;
}

.wh-hero__title {
  margin: 0 0 18px;
  font-size: 52px;
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
  max-width: 760px;
}

.wh-hero__sub {
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.6;
  color: #cccccc;
  max-width: 720px;
}

.wh-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.wh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  border: 2px solid transparent;
}

.wh-btn--primary {
  background: #f7c600;
  color: #000000;
}

.wh-btn--primary:hover {
  background: #e6b700;
}

.wh-btn--secondary {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.wh-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.wh-quote {
  background: #ffffff;
  padding: 100px 0;
  color: #111111;
}

.wh-quote__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.wh-quote__box {
  grid-column: span 6;
}

.wh-quote__text {
  background: #f7c600;
  color: #111111;
  padding: 40px;
  border-radius: 4px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
}

.wh-quote__content {
  grid-column: span 6;
}

.wh-quote__p {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.6;
  color: #111111;
}

.wh-quote__p:last-child {
  margin-bottom: 0;
}

.wh-section__header {
  margin-bottom: 36px;
}

.wh-section__header--center {
  text-align: center;
}

.wh-h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  color: #111111;
}

.wh-h2--light {
  color: #ffffff;
}

.wh-btn--block {
  width: 100%;
}

.wh-sectors {
  background: #f7f7f7;
  padding: 100px 0;
  color: #111111;
}

.wh-sectors__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
}

.wh-card {
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.wh-card__img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.wh-card__title {
  margin: 18px 18px 10px;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 600;
  color: #111111;
}

.wh-card__text {
  margin: 0 18px 22px;
  font-size: 18px;
  line-height: 1.6;
  color: #111111;
}

.wh-sectors__cta {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

.wh-cap {
  background: #1a1a1a;
  padding: 100px 0;
  color: #ffffff;
}

.wh-cap__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.wh-cap__copy {
  grid-column: span 6;
}

.wh-cap__list {
  list-style: none;
  padding: 0;
  margin: 22px 0 18px;
  display: grid;
  gap: 14px;
}

.wh-cap__li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.wh-cap__icon {
  width: 22px;
  height: 22px;
  border-radius: 50px;
  background: #f7c600;
  flex: 0 0 auto;
  position: relative;
  margin-top: 3px;
}

.wh-cap__icon::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  width: 6px;
  height: 10px;
  border-right: 2px solid #111111;
  border-bottom: 2px solid #111111;
  transform: rotate(45deg);
}

.wh-cap__note {
  margin: 16px 0 24px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.wh-cap__media {
  grid-column: span 6;
}

.wh-collage {
  position: relative;
  display: grid;
  gap: 16px;
}

.wh-collage__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: #f7c600;
  color: #000000;
  padding: 8px 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
}

.wh-collage__img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: block;
}

.wh-steps {
  background: #ffffff;
  padding: 100px 0;
  color: #111111;
}

.wh-steps__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  position: relative;
}

.wh-steps__list::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: rgba(247, 198, 0, 0.35);
}

.wh-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.wh-step__icon {
  width: 46px;
  height: 46px;
  border-radius: 50px;
  background: #f7f7f7;
  border: 1px solid rgba(17, 17, 17, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f7c600;
}

.wh-step__label {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  color: #111111;
}

.wh-offer {
  background: #f7f7f7;
  padding: 100px 0;
  color: #111111;
}

.wh-offer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 40px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.wh-offer__item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  padding: 18px 18px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
}

.wh-offer__icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid #f7c600;
  position: relative;
  flex: 0 0 auto;
}

.wh-offer__icon::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  width: 8px;
  height: 12px;
  border-right: 2px solid #f7c600;
  border-bottom: 2px solid #f7c600;
  transform: rotate(45deg);
}

.wh-partner {
  background: #ffffff;
  padding: 100px 0;
  color: #111111;
}

.wh-partner__text {
  margin: 0 auto 34px;
  max-width: 920px;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  color: #111111;
}

.wh-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.wh-badge-card {
  background: #f7f7f7;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 4px;
  padding: 18px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #111111;
}

.wh-contact {
  background: #ffffff;
  padding: 100px 0;
  color: #111111;
}

.wh-contact__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
}

.wh-contact__info {
  grid-column: span 5;
  background: #f7f7f7;
  border-radius: 4px;
  padding: 26px 24px;
  border-left: 6px solid #f7c600;
}

.wh-contact__details {
  margin-top: 22px;
  display: grid;
  gap: 16px;
}

.wh-contact__row {
  display: grid;
  gap: 6px;
}

.wh-contact__k {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.85);
}

.wh-contact__v {
  font-size: 18px;
  line-height: 1.6;
  color: #111111;
  text-decoration: none;
}

.wh-contact__v:hover {
  text-decoration: underline;
}

.wh-contact__form-card {
  grid-column: span 7;
  background: #ffffff;
  border-radius: 4px;
  padding: 28px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.wh-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.wh-field--full {
  grid-column: 1 / -1;
}

.wh-label {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
  color: #111111;
}

.wh-input,
.wh-textarea {
  width: 100%;
  border-radius: 4px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  padding: 14px 14px;
  font-size: 16px;
  line-height: 1.4;
  font-family: inherit;
  color: #111111;
  background: #ffffff;
}

.wh-textarea {
  resize: vertical;
}

.wh-input:focus-visible,
.wh-textarea:focus-visible {
  outline: 2px solid #f7c600;
  outline-offset: 3px;
}

.wh-final {
  background: #1a1a1a;
  padding: 100px 0;
  color: #ffffff;
}

.wh-final__inner {
  text-align: center;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.wh-final__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

@media (max-width: 1024px) {
  .wh-sectors__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wh-cap__copy,
  .wh-cap__media {
    grid-column: span 12;
  }

  .wh-steps__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .wh-steps__list::before {
    display: none;
  }

  .wh-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .wh-hero {
    padding: 60px 0;
    min-height: auto;
  }

  .wh-hero__wrap {
    margin-left: auto;
    margin-right: auto;
  }

  .wh-hero__title {
    font-size: 36px;
    margin-left: auto;
    margin-right: auto;
  }

  .wh-hero__sub {
    margin-left: auto;
    margin-right: auto;
  }

  .wh-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .wh-btn {
    width: 100%;
  }

  .wh-quote {
    padding: 60px 0;
  }

  .wh-quote__grid {
    grid-template-columns: 1fr;
  }

  .wh-quote__box,
  .wh-quote__content {
    grid-column: span 12;
  }

  .wh-sectors {
    padding: 60px 0;
  }

  .wh-sectors__grid {
    grid-template-columns: 1fr;
  }

  .wh-cap {
    padding: 60px 0;
  }

  .wh-collage__img {
    height: 160px;
  }

  .wh-steps {
    padding: 60px 0;
  }

  .wh-steps__list {
    grid-template-columns: 1fr;
  }

  .wh-steps__list::before {
    display: none;
  }

  .wh-offer {
    padding: 60px 0;
  }

  .wh-offer__grid {
    grid-template-columns: 1fr;
  }

  .wh-partner {
    padding: 60px 0;
  }

  .wh-badges {
    grid-template-columns: 1fr;
  }

  .wh-contact {
    padding: 60px 0;
  }

  .wh-contact__info,
  .wh-contact__form-card {
    grid-column: span 12;
  }

  .wh-form__grid {
    grid-template-columns: 1fr;
  }

  .wh-final {
    padding: 60px 0;
  }

  .contact-hero {
    padding: 60px 0;
    min-height: auto;
  }

  .contact-hero__title {
    font-size: 36px;
  }

  .contact-two-col {
    padding: 60px 0;
  }

  .contact-two-col__left,
  .contact-two-col__right {
    grid-column: span 12;
  }

  .contact-shop__img {
    height: 280px;
  }

  .contact-form-card {
    padding: 22px;
  }

  .contact-form-card__title {
    font-size: 28px;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-map {
    padding: 60px 0 0;
  }

  .contact-map__title {
    font-size: 28px;
  }

  .contact-nationwide__title {
    font-size: 28px;
  }

  .faq-hero {
    padding: 60px 0;
    min-height: auto;
  }

  .faq-hero__title {
    font-size: 36px;
  }

  .faq-section {
    padding: 60px 0;
  }

  .faq-search {
    display: none;
  }
}

@media (max-width: 520px) {
  .wh-hero__title {
    font-size: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu {
    transition: none;
  }
}
