@import "./variables.css";

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--bf-font);
  color: var(--bf-text);
  background: var(--bf-bg);
  line-height: 1.6;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--bf-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { padding-left: 1.25rem; }
h1, h2, h3, h4 { line-height: 1.2; color: var(--bf-text); }
p { margin: 0 0 1rem; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  padding: 8px 16px; background: var(--bf-primary); color: #fff;
}
.skip-link:focus { left: 8px; top: 8px; }

.container {
  width: 100%; max-width: var(--bf-max-width);
  margin: 0 auto; padding: 0 1.25rem;
}
.container--wide { max-width: 1400px; }
@media (min-width: 768px) {
  .container--wide { padding-left: 3.875rem; padding-right: 3.875rem; }
}
.section { padding: 4rem 0; }
.section--soft { background: var(--bf-bg-soft); }
.section--alt { background: var(--bf-bg-alt); }
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: -0.02em; margin: 0 0 1rem;
  text-align: center;
}
.section-subtitle {
  text-align: center; color: var(--bf-text-muted);
  max-width: 720px; margin: 0 auto 2.5rem;
  font-size: 1.125rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.65rem 1.5rem; border-radius: 30px;
  font-weight: 600; font-size: 1rem; border: 1px solid transparent;
  cursor: pointer; text-decoration: none; transition: 0.2s;
}
.btn:hover { text-decoration: none; transform: scale(1.02); }
.btn-primary { background: var(--bf-primary); color: #fff; }
.btn-primary:hover { background: var(--bf-primary-hover); color: #fff; }
.btn-outline-white {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); color: #fff; }
.btn-outline-red {
  background: transparent; color: var(--bf-primary);
  border-color: var(--bf-primary);
}
.btn-outline-red:hover { background: var(--bf-primary); color: #fff; }

.hero__actions .btn {
  min-height: 48px;
  padding: 0.75rem 1.6rem;
}
.hero__actions .btn-primary {
  box-shadow: 0 8px 24px rgba(192, 20, 0, 0.35);
}
.hero__actions .btn-primary:hover {
  box-shadow: 0 10px 28px rgba(192, 20, 0, 0.45);
}
.hero__actions .btn-outline-white {
  border-width: 1.5px;
  border-color: rgba(255, 255, 255, 0.85);
}

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--bf-header-height); display: flex; align-items: center;
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header--dark { background: #fff; border-bottom: 1px solid rgba(0,0,0,0.06); box-shadow: 0 8px 24px rgba(15,23,42,0.08); }
.site-header--transparent { background: transparent; border-bottom: 1px solid transparent; }
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--bf-max-width); margin: 0 auto; padding: 0 1.25rem;
}
.site-header__logo img { height: 44px; width: auto; }
.site-header--transparent .site-nav > .site-nav__item > a { color: #fff; }
.site-header--transparent .site-nav > .site-nav__item > a:hover { color: rgba(255,255,255,0.75); }
.site-header--transparent .site-nav__arrow { filter: brightness(0) invert(1); }
.site-header--transparent .site-nav__dropdown a { color: rgba(0, 0, 0, 0.85); }
.site-header--transparent .site-nav__dropdown a:hover { color: var(--bf-primary); }
.site-header--transparent .btn-outline-red,
.site-header--transparent .btn-outline-white { border-color: rgba(255,255,255,0.6); color: #fff; }
.site-header--transparent .btn-outline-red:hover { background: rgba(255,255,255,0.1); color: #fff; }
.site-header__cta {
  gap: 0.4rem;
  min-height: 36px;
  padding: 0.4rem 0.95rem 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(192, 20, 0, 0.22);
}
.site-header__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(192, 20, 0, 0.28);
}
.site-header__cta-icon {
  display: block;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
}
.site-header__cta-text {
  display: block;
  white-space: nowrap;
}
.site-header--transparent .site-header__cta.btn-primary {
  background: rgba(255, 255, 255, 0.96);
  color: var(--bf-primary);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}
.site-header--transparent .site-header__cta.btn-primary:hover {
  background: #fff;
  color: var(--bf-primary-hover);
}
.site-header--dark .site-nav a { color: #333; }
.site-header--dark .site-nav a:hover { color: var(--bf-primary); }
.mobile-nav__actions .site-header__cta {
  width: 100%;
  justify-content: center;
  min-height: 42px;
  font-size: 0.875rem;
}

.site-nav { display: none; align-items: center; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.site-nav a { font-size: 0.875rem; text-decoration: none; }
.site-nav__item--has-dropdown > a {
  display: inline-flex; align-items: center; gap: 0.375rem;
}
.site-nav__arrow { display: block; flex-shrink: 0; }
.site-nav__item { position: relative; }
.site-nav__dropdown {
  display: none; position: absolute; top: 100%; left: 0; min-width: 240px;
  padding-top: 10px; z-index: 100;
  background: transparent; border: none; box-shadow: none;
}
.site-nav__dropdown::after {
  content: ''; position: absolute; top: 10px; left: 0; right: 0; bottom: 0;
  background: #fff; border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08); border: 1px solid rgba(0,0,0,0.05);
  z-index: -1;
}
.site-nav__item:hover .site-nav__dropdown,
.site-nav__dropdown:hover { display: block; }
.site-nav__dropdown a {
  position: relative; z-index: 1;
  display: flex; align-items: flex-start; gap: 0.5rem;
  padding: 0.625rem 1rem; color: rgba(0, 0, 0, 0.85); font-size: 0.875rem;
  line-height: 1.4;
}
.site-nav__dropdown a::before {
  content: ''; flex-shrink: 0; width: 6px; height: 1px;
  margin-top: 0.55em; background: var(--bf-primary);
}
.site-nav__dropdown a:hover { color: var(--bf-primary); text-decoration: none; }
.site-header__actions { display: none; gap: 0.5rem; margin-left: 2rem; }

.menu-toggle {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: 1px solid var(--bf-primary); border-radius: 8px;
  padding: 7px; cursor: pointer;
}
.menu-toggle span { display: block; width: 20px; height: 2px; background: var(--bf-primary); }
.site-header--transparent .menu-toggle { border-color: rgba(255,255,255,0.6); }
.site-header--transparent .menu-toggle span { background: #fff; }

.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: rgba(0,0,0,0.2);
}
.mobile-nav.is-open { display: block; }
.mobile-nav__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(320px, 100%);
  background: #fff; padding: 1rem; overflow-y: auto;
  transform: translateX(100%); transition: transform 0.3s;
}
.mobile-nav.is-open .mobile-nav__panel { transform: translateX(0); }
.mobile-nav a { display: block; padding: 1rem; color: #545454; text-decoration: none; border-bottom: 1px solid rgba(0,0,0,0.08); }
.mobile-nav a:hover { color: var(--bf-primary); }

@media (min-width: 1024px) {
  .site-nav, .site-header__actions { display: flex; }
  .menu-toggle { display: none; }
  .site-header__logo img { height: 58px; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(159deg, var(--bf-purple-mid) 0%, #ad94de 40%, var(--bf-purple-light) 100%);
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}
.hero__video--mobile { display: block; }
.hero__video--desktop { display: none; }
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(179deg, rgba(80, 24, 249, 0.35) 54%, transparent 99%);
  pointer-events: none;
}
.hero__glow {
  display: none;
  position: absolute;
  right: -180px;
  top: -160px;
  width: 980px;
  height: 1080px;
  rotate: -12deg;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.26) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  min-height: 640px;
  max-width: var(--bf-max-width);
  margin: 0 auto;
  padding: 6.5rem 1.25rem 0;
}
.hero__content {
  position: relative;
  z-index: 3;
  max-width: 640px;
}
.hero__title {
  margin: 0 0 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
}
.hero__title-mobile {
  display: block;
  font-size: clamp(2.75rem, 11vw, 4.5rem);
  line-height: 0.95;
}
.hero__title-desktop { display: none; }
.hero__subtitle {
  margin: 0 0 1.5rem;
  font-size: clamp(1rem, 2.8vw, 1.625rem);
  line-height: 1.15;
  max-width: 36rem;
  opacity: 0.95;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero__btn-contact { display: none; }
.hero__figure {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}
.hero__figure--mobile {
  margin-top: 1.5rem;
}
.hero__figure--desktop { display: none; }

@media (min-width: 1024px) {
  .hero__video--mobile { display: none; }
  .hero__video--desktop { display: block; }
  .hero__glow { display: block; }
  .hero__inner {
    min-height: 780px;
    padding: 9.5rem 2rem 0;
    text-align: center;
  }
  .hero__content {
    max-width: 1024px;
    margin: 0 auto;
  }
  .hero__title-mobile { display: none; }
  .hero__title-desktop {
    display: block;
    font-size: clamp(2.625rem, 4vw, 3.5rem);
  }
  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    max-width: 942px;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__btn-contact { display: inline-flex; }
  .hero__figure--mobile { display: none; }
  .hero__figure--desktop {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    height: 50%;
    width: 100%;
    object-fit: contain;
    object-position: bottom center;
    margin: 0;
  }
}

.hero-banner {
  min-height: 285px; display: flex; align-items: center; color: #fff;
  background-size: cover; background-position: center;
}
.hero-banner h1 { color: #fff; font-size: clamp(1.5rem, 4vw, 2.625rem); margin: 0 0 0.5rem; }
.hero-banner p { color: #fff; margin: 0; opacity: 0.9; }
.hero-banner--blue {
  background: linear-gradient(90deg, #1d18e2 0%, #1e8be6 52%, #23d7e4 100%);
}
.hero-banner__eyebrow {
  margin: 0 0 0.75rem; font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.9);
}

/* ===== Cards & Grids ===== */
.card-grid { display: grid; gap: 1.5rem; }
.card-grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card-grid--3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card-grid--4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

.card {
  background: #fff; border: 1px solid var(--bf-border);
  border-radius: var(--bf-radius); padding: 1.5rem;
  box-shadow: var(--bf-shadow);
}
.card h3 { margin: 0 0 0.75rem; font-size: 1rem; text-transform: uppercase; }
.card p { color: var(--bf-text-muted); font-size: 0.875rem; margin: 0; }
.card img { width: 48px; height: 48px; margin-bottom: 1rem; }
.card--horizontal {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem;
}
.card--horizontal img { margin: 0; flex-shrink: 0; }
.card--horizontal h3 { text-transform: none; font-size: 0.875rem; line-height: 1.2; }

.feature-row {
  display: grid; gap: 2rem; align-items: center;
}
@media (min-width: 992px) {
  .feature-row { grid-template-columns: 1fr 1fr; }
  .feature-row--reverse .feature-row__media { order: 2; }
}

.split-block { display: grid; overflow: hidden; }
@media (min-width: 992px) { .split-block { grid-template-columns: 1fr 1fr; } }
.split-block__media img { width: 100%; height: 100%; object-fit: cover; min-height: 220px; }
.split-block__text {
  padding: 2.5rem; display: flex; align-items: center;
  background: var(--bf-primary); color: #fff;
}
.split-block__text p { color: #fff; margin-bottom: 1rem; }
.split-block__text p:last-child { margin-bottom: 0; }

/* ===== About Us ===== */
.about-wrap {
  width: 100%; max-width: 1185px; margin: 0 auto;
  padding-left: 1.25rem; padding-right: 1.25rem;
}
@media (min-width: 768px) {
  .about-wrap { padding-left: 10px; padding-right: 10px; }
}

.about-hero {
  display: flex; align-items: center; width: 100%;
  min-height: 170px; color: #fff;
  background-position: center; background-repeat: no-repeat; background-size: cover;
}
@media (min-width: 768px) { .about-hero { min-height: 285px; } }

.about-hero h1 {
  margin: 0 0 1.25rem; text-align: left; font-weight: 700; color: #fff;
  font-size: 20px; line-height: 28px;
}
@media (min-width: 768px) {
  .about-hero h1 { font-size: 42px; line-height: 58.8px; }
}

.about-hero__breadcrumb {
  margin: 0; text-align: left; font-weight: 500; color: #fff;
  font-size: 14px; line-height: 22.572px;
}
@media (min-width: 768px) {
  .about-hero__breadcrumb { font-size: 15px; line-height: 24.75px; }
}

.blog-hero {
  display: flex; align-items: center; width: 100%;
  min-height: 170px; color: #fff;
  background-position: center; background-repeat: no-repeat; background-size: cover;
}
@media (min-width: 768px) { .blog-hero { min-height: 230px; } }
@media (min-width: 1024px) { .blog-hero { min-height: 285px; } }

.blog-hero__inner {
  width: 100%; max-width: 1200px; margin: 0 auto;
  padding-left: 10px; padding-right: 10px;
}

.blog-hero h1 {
  margin: 0 0 1.25rem; text-align: left; font-weight: 700; color: #fff;
  font-size: 20px; line-height: 28px;
}
@media (min-width: 768px) {
  .blog-hero h1 { font-size: 30px; line-height: 42px; }
}
@media (min-width: 1024px) {
  .blog-hero h1 { font-size: 42px; line-height: 58.8px; }
}

.blog-hero__breadcrumb {
  margin: 0; text-align: left; font-weight: 500; color: #fff;
  font-size: 14px; line-height: 22.5px;
}
@media (min-width: 768px) {
  .blog-hero__breadcrumb { font-size: 15px; line-height: 24.75px; }
}

/* ===== Our Services ===== */
.services-hero {
  display: flex; align-items: center; width: 100%;
  min-height: 170px; color: #fff;
  background-position: center; background-repeat: no-repeat; background-size: cover;
}
@media (min-width: 768px) { .services-hero { min-height: 285px; } }

.services-hero__inner {
  width: 100%; max-width: 1200px; margin: 0 auto;
  padding-left: 10px; padding-right: 10px;
}

.services-hero h1 {
  margin: 0 0 1.25rem; text-align: left; font-weight: 700; color: #fff;
  font-size: 20px; line-height: 28px;
}
@media (min-width: 768px) {
  .services-hero h1 { font-size: 42px; line-height: 58.8px; }
}

.services-hero__breadcrumb {
  margin: 0; text-align: left; font-weight: 500; color: #fff;
  font-size: 14px; line-height: 22.572px;
}
@media (min-width: 768px) {
  .services-hero__breadcrumb { font-size: 15px; line-height: 24.75px; }
}

.services-body {
  width: 100%; background: #fff;
  padding: 2.5rem 0;
}
@media (min-width: 768px) {
  .services-body { padding-top: 84px; padding-bottom: 5rem; }
}

.services-body__inner {
  width: 100%; max-width: 1200px; margin: 0 auto;
  padding-left: 12px; padding-right: 12px;
}
@media (min-width: 768px) {
  .services-body__inner { padding-left: 10px; padding-right: 10px; }
}

.services-grid {
  display: flex; flex-direction: column; gap: 1.5rem;
}
@media (min-width: 1024px) {
  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  }
}

.services-col {
  display: flex; flex-direction: column; gap: 1.5rem;
}

.service-card {
  border-radius: 28px; background: #fff; text-align: center;
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.08);
}

.service-card__link {
  display: block; padding: 2.5rem 2rem;
  color: inherit; text-decoration: none;
}
.service-card__link:hover { text-decoration: none; }

.service-card__icon {
  position: relative; display: flex;
  width: 150px; height: 150px; margin: 0 auto;
  align-items: flex-start; justify-content: flex-start;
}

.service-card__icon-bg {
  position: absolute; left: 28px; top: 14px;
  width: 98px; height: 98px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 239, 239, 0.9) 0%, rgba(227, 114, 91, 0.55) 100%);
}

.service-card__icon img {
  position: relative; z-index: 1;
  width: 73px; height: 73px; object-fit: contain;
}

.service-card h2 {
  margin: 0.25rem 0 0; font-size: 18px; font-weight: 600;
  line-height: 1.25; color: #2d2d2d;
  transition: color 0.2s;
}
@media (min-width: 640px) {
  .service-card h2 { min-height: 52px; font-size: 24px; }
}

.service-card__link:hover h2 { color: var(--bf-primary); }

.service-card p {
  margin: 1rem 0 0; font-size: 13px; line-height: 1.9; color: #787878;
}
@media (min-width: 640px) {
  .service-card p { font-size: 15px; }
}

/* ===== China Sourcing Agent ===== */
.sourcing-wrap {
  width: 100%; max-width: 1200px; margin: 0 auto;
  padding-left: 20px; padding-right: 20px;
}
@media (min-width: 768px) {
  .sourcing-wrap { padding-left: 40px; padding-right: 40px; }
}

.sourcing-heading {
  margin: 0 0 2.5rem; text-align: center;
  font-size: 24px; font-weight: 700; line-height: 1.2;
  letter-spacing: -0.01em; color: #252525;
}
@media (min-width: 768px) {
  .sourcing-heading { font-size: 30px; }
}

.sourcing-cta {
  display: inline-flex; min-height: 48px; align-items: center; justify-content: center;
  padding: 0 1.75rem; background: var(--bf-primary); color: #fff;
  font-size: 0.875rem; font-weight: 600; text-decoration: none;
  transition: background 0.2s;
}
.sourcing-cta:hover { background: #ab1200; color: #fff; text-decoration: none; transform: none; }

.sourcing-hero {
  padding: 2.5rem 0 3.5rem;
}
@media (min-width: 768px) {
  .sourcing-hero { padding-top: 3.5rem; padding-bottom: 4rem; }
}

.sourcing-hero__grid {
  display: grid; gap: 2rem; align-items: start;
}
@media (min-width: 1024px) {
  .sourcing-hero__grid { grid-template-columns: 0.95fr 1fr; gap: 3rem; }
}

.sourcing-hero__media {
  overflow: hidden; border-radius: 24px;
  border: 1px solid #f0f0f0; background: #fff;
}
.sourcing-hero__media img { width: 100%; height: auto; object-fit: cover; }

.sourcing-hero__content {
  display: flex; flex-direction: column; gap: 1.25rem; padding-top: 0.25rem;
}
.sourcing-hero__content h1 {
  margin: 0; font-size: 34px; font-weight: 600; line-height: 1.14; color: #252525;
}
@media (min-width: 768px) {
  .sourcing-hero__content h1 { font-size: 48px; line-height: 1.18; }
}
.sourcing-hero__content p {
  margin: 0; max-width: 560px; font-size: 15px; line-height: 1.75; color: #5a5a5a;
}
@media (min-width: 768px) {
  .sourcing-hero__content p { font-size: 16px; line-height: 1.75; }
}

.sourcing-benefits {
  position: relative; overflow: hidden;
  padding: 3.5rem 0; background: #f8f8f8;
}
@media (min-width: 768px) { .sourcing-benefits { padding: 4rem 0; } }
.sourcing-benefits::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at top, #fff 0%, #fbfbfb 38%, #f3f3f3 100%);
  pointer-events: none;
}
.sourcing-benefits .sourcing-wrap { position: relative; }

.sourcing-icon-grid {
  display: grid; gap: 2.5rem 2rem;
}
@media (min-width: 768px) {
  .sourcing-icon-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1280px) {
  .sourcing-icon-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.sourcing-icon-card {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 1rem; text-align: center;
}
.sourcing-icon-card img {
  width: 84px; height: 84px; object-fit: contain;
}
.sourcing-icon-card h3 {
  margin: 1rem 0 0; font-size: 19px; font-weight: 600;
  line-height: 1.35; color: #252525;
}
@media (min-width: 768px) { .sourcing-icon-card h3 { font-size: 20px; } }
.sourcing-icon-card p {
  margin: 0.75rem 0 0; font-size: 14px; line-height: 1.5; color: #6a6a6a;
}

.sourcing-services { padding: 3rem 0; }
@media (min-width: 768px) { .sourcing-services { padding: 3.5rem 0; } }

.sourcing-media-grid {
  display: grid; gap: 1.5rem;
}
@media (min-width: 768px) {
  .sourcing-media-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1280px) {
  .sourcing-media-grid { grid-template-columns: repeat(3, 1fr); }
}

.sourcing-media-card {
  display: flex; flex-direction: column; text-align: center;
}
.sourcing-media-card img {
  width: 100%; height: 210px; object-fit: cover;
}
.sourcing-media-card__body {
  display: flex; flex: 1; flex-direction: column; gap: 0.75rem;
  padding: 1rem 0.75rem 0.25rem;
}
.sourcing-media-card h3 {
  margin: 0; font-size: 19px; font-weight: 600; line-height: 1.35; color: #252525;
}
@media (min-width: 768px) { .sourcing-media-card h3 { font-size: 20px; } }
.sourcing-media-card p {
  margin: 0; font-size: 14px; line-height: 1.5; color: #6a6a6a;
}

.sourcing-cta-bar { padding: 0.5rem 0 3rem; }
.sourcing-cta-bar__inner { display: flex; justify-content: center; }

.sourcing-procedure {
  padding: 3.5rem 0; background: #f5f5f5;
}
@media (min-width: 768px) { .sourcing-procedure { padding: 4rem 0; } }

.sourcing-steps {
  display: grid; gap: 1.5rem;
}
@media (min-width: 768px) {
  .sourcing-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1280px) {
  .sourcing-steps { grid-template-columns: repeat(4, 1fr); }
}

.sourcing-step {
  position: relative; display: flex; min-height: 158px; flex-direction: column;
  align-items: center; padding: 2.25rem 1.25rem 1.5rem; text-align: center;
  background: #fff;
}
.sourcing-step__num {
  position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  display: flex; width: 40px; height: 40px; align-items: center; justify-content: center;
  border-radius: 50%; background: #cf220a; color: #fff;
  font-size: 13px; font-weight: 700;
}
.sourcing-step h3 {
  margin: 0; font-size: 15px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: #2c2c2c;
}
@media (min-width: 768px) { .sourcing-step h3 { font-size: 16px; } }
.sourcing-step p {
  margin: 0.75rem 0 0; font-size: 13px; line-height: 1.5; color: #666;
}

.sourcing-fees { padding: 3.5rem 0; }
@media (min-width: 768px) { .sourcing-fees { padding: 4rem 0; } }
.sourcing-fees__intro {
  margin: -1.5rem 0 2rem; text-align: center;
  font-size: 14px; line-height: 1.5; color: #7a7a7a;
}

.sourcing-reviews {
  padding: 3.5rem 0; background: #f5f5f5;
}
@media (min-width: 768px) { .sourcing-reviews { padding: 4rem 0; } }

.sourcing-reviews__inner {
  display: flex; flex-direction: column; gap: 2.5rem;
}
.sourcing-reviews__title { margin-bottom: 0; }

.sourcing-reviews__grid {
  display: grid; gap: 1.5rem;
}
@media (min-width: 768px) {
  .sourcing-reviews__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1280px) {
  .sourcing-reviews__grid { grid-template-columns: repeat(4, 1fr); }
}

.sourcing-review {
  display: flex; height: 100%; flex-direction: column; background: #fff;
  padding: 1.25rem 1.25rem 0; box-shadow: 0 10px 30px rgba(37, 37, 37, 0.05);
}
.sourcing-review::after {
  content: ''; display: block; height: 5px; width: 100%;
  margin-top: 1.25rem; background: #d61900;
}
.sourcing-review__head {
  display: flex; align-items: flex-start; gap: 0.75rem;
}
.sourcing-review__head img,
.sourcing-review__avatar {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 50%; object-fit: cover;
}
.sourcing-review__avatar {
  display: flex; align-items: center; justify-content: center;
  background: #d9d9d9; font-size: 12px; font-weight: 600; color: #4f4f4f;
}
.sourcing-review__head h3 {
  margin: 0; font-size: 13px; font-weight: 600; color: #2c2c2c;
}
.sourcing-review__stars {
  display: flex; align-items: center; gap: 0.25rem; margin-top: 0.5rem;
}
.sourcing-review__score {
  font-size: 11px; font-weight: 600; line-height: 1; color: #cf220a;
}
.sourcing-review__star {
  display: inline-flex; width: 16px; height: 16px; align-items: center; justify-content: center;
  background: #00b67a; font-size: 10px; font-weight: 700; line-height: 1; color: #fff;
}
.sourcing-review__title {
  margin: 1rem 0 0; font-size: 20px; font-weight: 600; line-height: 1.3; color: #252525;
}
.sourcing-review > p:last-child,
.sourcing-review > p:not(.sourcing-review__title):only-of-type {
  margin: 0.75rem 0 0; flex: 1; font-size: 13px; line-height: 1.5; color: #676767;
}
.sourcing-review > p.sourcing-review__title + p {
  margin: 0.75rem 0 0; flex: 1; font-size: 13px; line-height: 1.5; color: #676767;
}
.sourcing-reviews__more {
  display: flex; justify-content: center;
}
.sourcing-load-more {
  min-height: 40px; padding: 0 1.25rem; border: none; background: #000; color: #fff;
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  cursor: pointer;
}
.sourcing-load-more:hover { background: #222; }

/* ===== 1688 Agent ===== */
.a1688-intro {
  max-width: 820px; margin: -1.5rem auto 2.5rem; text-align: center;
  font-size: 15px; line-height: 1.75; color: #666;
}

.a1688-platforms,
.a1688-stores {
  padding: 3rem 0;
}
.a1688-stores { background: #f8f8f8; }

.a1688-logos {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.5rem 2rem;
}
.a1688-logos img {
  height: auto; max-width: 120px; object-fit: contain;
}
.a1688-logos--stores img { max-width: 140px; max-height: 48px; }

.a1688-process {
  padding: 3.5rem 0; background: #f5f5f5;
}
@media (min-width: 768px) { .a1688-process { padding: 4rem 0; } }

.a1688-process__grid {
  display: grid; gap: 2rem;
}
@media (min-width: 768px) {
  .a1688-process__grid { grid-template-columns: repeat(3, 1fr); }
}

.a1688-process__card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.a1688-process__media {
  display: flex; width: 100%; height: 168px; align-items: center; justify-content: center;
  overflow: hidden; border: 1px dashed #e18d84; border-radius: 12px; background: #fff; padding: 0 1.25rem;
}
@media (min-width: 640px) { .a1688-process__media { height: 188px; } }
.a1688-process__media img { max-height: 100%; width: 100%; object-fit: contain; }
.a1688-process__num {
  display: inline-flex; width: 40px; height: 40px; margin-top: -20px; align-items: center; justify-content: center;
  border-radius: 50%; background: #c01400; color: #fff;
  font-size: 17px; font-weight: 800; box-shadow: 0 12px 25px rgba(192, 20, 0, 0.3);
}
.a1688-process__card h3 {
  margin: 15px 0 0; font-size: 16px; font-weight: 700; line-height: 1.25; color: #333;
}
@media (min-width: 640px) { .a1688-process__card h3 { font-size: 20px; } }
.a1688-process__card p {
  margin: 0.5rem 0 0; font-size: 13px; line-height: 1.85; color: #6f6f6f;
}
@media (min-width: 640px) { .a1688-process__card p { font-size: 14px; } }

.a1688-fees { padding: 3.5rem 0; }
@media (min-width: 768px) { .a1688-fees { padding: 4rem 0; } }

.a1688-fee-table-wrap {
  max-width: 720px; margin: 0 auto; overflow-x: auto;
}
.a1688-fee-table {
  width: 100%; border-collapse: collapse; background: #fff;
  box-shadow: 0 10px 30px rgba(37, 37, 37, 0.05);
}
.a1688-fee-table th,
.a1688-fee-table td {
  padding: 1rem 1.25rem; border: 1px solid #efefef; text-align: left;
  font-size: 14px; line-height: 1.5; color: #333;
}
.a1688-fee-table th {
  background: #fafafa; font-weight: 700;
}
.a1688-fee-table a { color: var(--bf-primary); font-weight: 600; }

.a1688-faq { padding-bottom: 3rem; }
.a1688-faq__cta { padding-top: 2rem; }

/* ===== Agent service pages (Taobao / AliExpress) ===== */
.agent-svc-process__grid {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .agent-svc-process__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1280px) {
  .agent-svc-process__grid { grid-template-columns: repeat(4, 1fr); }
}

.agent-svc-cta-band {
  padding: 2.5rem 0 3rem; background: #f5f5f5; text-align: center;
}
.agent-svc-cta-band p {
  margin: 0 0 1.25rem; font-size: 18px; font-weight: 600; color: #252525;
}

.agent-svc-why {
  padding: 3.5rem 0; background: #fff;
}
@media (min-width: 768px) { .agent-svc-why { padding: 4rem 0; } }
.agent-svc-why__list {
  max-width: 720px; margin: 0 auto 1.5rem; padding-left: 1.25rem;
  font-size: 15px; line-height: 1.85; color: #555;
}
.agent-svc-why__list li { margin-bottom: 0.35rem; }
.agent-svc-why__fee {
  margin: 0; text-align: center; font-size: 16px; font-weight: 700; color: #c01400;
}

.sourcing-media-grid--2 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .sourcing-media-grid--2 { grid-template-columns: repeat(2, 1fr); }
}
.amz-supplier-fees { background: #f8f8f8; }
.amz-supplier-process { background: #f5f5f5; padding-top: 3.5rem; padding-bottom: 3.5rem; }

/* ===== Product Inspection ===== */
.inspection-page { padding-bottom: 4rem; }
@media (min-width: 768px) { .inspection-page { padding-bottom: 5rem; } }

.inspection-wrap {
  width: 100%; max-width: 1200px; margin: 0 auto;
  padding-left: 20px; padding-right: 20px;
}
@media (min-width: 768px) {
  .inspection-wrap { padding-left: 40px; padding-right: 40px; }
}

.inspection-btn {
  display: inline-flex; min-height: 46px; align-items: center; justify-content: center;
  padding: 0 1.5rem; border-radius: 4px; background: #c01700; color: #fff;
  font-size: 14px; font-weight: 600; text-align: center; text-decoration: none;
  transition: background 0.2s;
}
.inspection-btn:hover { background: #a91400; color: #fff; text-decoration: none; transform: none; }

.inspection-hero { padding: 2.5rem 0; }
@media (min-width: 768px) { .inspection-hero { padding: 3rem 0 4rem; } }

.inspection-split {
  display: grid; gap: 2.5rem; align-items: center;
}
@media (min-width: 768px) {
  .inspection-split { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.inspection-hero__content {
  display: flex; flex-direction: column; gap: 1.25rem; text-align: center;
}
@media (min-width: 768px) {
  .inspection-hero__content { text-align: left; }
}
.inspection-hero__content h1 {
  margin: 0; font-size: 34px; font-weight: 700; line-height: 1.18; color: #252525;
}
@media (min-width: 768px) {
  .inspection-hero__content h1 { font-size: 48px; }
}
.inspection-hero__content p {
  margin: 0; font-size: 16px; line-height: 1.75; color: #54595f;
}
.inspection-hero__content .inspection-btn {
  width: 100%;
}
@media (min-width: 640px) {
  .inspection-hero__content .inspection-btn { width: auto; }
}
@media (min-width: 768px) {
  .inspection-hero__content .inspection-btn { align-self: flex-start; }
}

.inspection-hero__video {
  overflow: hidden; border-radius: 4px; background: #000;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}
.inspection-hero__video video { display: block; width: 100%; height: auto; }

.inspection-section { padding: 4rem 0; }
@media (min-width: 768px) { .inspection-section { padding: 5rem 0; } }
.inspection-section--gray { background: #f7f7f7; }

.inspection-copy {
  display: flex; flex-direction: column; gap: 1.25rem;
}
.inspection-copy h2 {
  margin: 0; font-size: 30px; font-weight: 700; line-height: 1.2; color: #252525;
}
@media (min-width: 768px) {
  .inspection-copy h2 { font-size: 40px; }
}
.inspection-copy h3 {
  margin: 0; font-size: 18px; font-weight: 600; color: #252525;
}
.inspection-copy p {
  margin: 0; font-size: 16px; line-height: 1.75; color: #54595f;
}
.inspection-copy .inspection-btn { align-self: flex-start; width: 100%; }
@media (min-width: 640px) {
  .inspection-copy .inspection-btn { width: auto; }
}

.inspection-media {
  margin: 0 auto; width: 100%; max-width: 450px;
}
.inspection-media--narrow { max-width: 560px; }
.inspection-media img {
  width: 100%; height: auto; object-fit: contain;
}
.inspection-split:not(.inspection-split--media-left) .inspection-media img {
  border-radius: 4px; object-fit: cover;
}

.inspection-table-wrap {
  margin-top: 3rem; overflow-x: auto;
}
.inspection-table {
  width: 100%; min-width: 980px; border-collapse: collapse;
  table-layout: fixed; background: #fff; text-align: left;
}
.inspection-table th {
  height: 56px; padding: 12px 14px; border: 1px solid #cf1600;
  background: #cf1600; text-align: center;
  font-size: 15px; font-weight: 600; color: #fff;
}
.inspection-table td {
  height: 56px; padding: 12px 14px; border: 1px solid #ddd;
  font-size: 15px; line-height: 1.75; color: #252525;
}

.inspection-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.inspection-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 15px; line-height: 1.75; color: #54595f;
}
.inspection-list li::before {
  content: ''; flex-shrink: 0; width: 10px; height: 10px;
  margin-top: 10px; border-radius: 50%; background: #cf1600;
}

.inspection-cost {
  margin: 0; font-size: 22px; font-weight: 600; color: #252525;
}
.inspection-cost span { color: #46a853; }

.inspection-faq.faq-page {
  padding: 2.5rem 20px; background: #fff;
}
@media (min-width: 768px) {
  .inspection-faq.faq-page { padding: 4rem 40px; }
}
.inspection-faq__title {
  margin: 0 0 2rem; text-align: center;
  font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em;
  text-transform: uppercase; color: rgba(0, 0, 0, 0.85);
}
@media (min-width: 768px) {
  .inspection-faq__title { font-size: 2.25rem; margin-bottom: 4rem; }
}
@media (min-width: 1024px) {
  .inspection-faq__title { font-size: 3.5rem; }
}
.inspection-faq__grid {
  display: grid; gap: 1.5rem;
}
@media (min-width: 1024px) {
  .inspection-faq__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

.inspection-cta-bar {
  padding: 1rem 0 0;
}
.inspection-cta-bar .inspection-wrap {
  display: flex; justify-content: center;
}

/* ===== 3PL Fulfillment ===== */
.fulfillment-page {
  overflow: hidden; background: #fff;
}

.fulfillment-wrap {
  width: 100%; max-width: 1200px; margin: 0 auto;
  padding-left: 20px; padding-right: 20px;
}
.fulfillment-wrap--wide { max-width: 1280px; }
@media (min-width: 768px) {
  .fulfillment-wrap { padding-left: 10px; padding-right: 10px; }
}

.fulfillment-heading {
  margin: 0 auto 3rem; max-width: 820px; text-align: center;
  font-size: 22px; font-weight: 700; line-height: 1; color: #333333;
}
@media (min-width: 640px) {
  .fulfillment-heading { font-size: 30px; }
}
@media (min-width: 1024px) {
  .fulfillment-heading { font-size: 36px; }
}

.fulfillment-btn {
  display: inline-flex; min-height: 44px; align-items: center; justify-content: center;
  padding: 0 1.5rem; background: #c01400; color: #fff;
  font-size: 14px; font-weight: 700; text-align: center; text-decoration: none;
  transition: background 0.2s;
}
.fulfillment-btn:hover { background: #a61000; color: #fff; text-decoration: none; transform: none; }

.fulfillment-hero {
  padding: 2.5rem 0 4rem;
}
@media (min-width: 640px) {
  .fulfillment-hero { padding-bottom: 5rem; }
}
@media (min-width: 1024px) {
  .fulfillment-hero { padding-top: 3.5rem; padding-bottom: 6rem; }
}

.fulfillment-hero__grid {
  display: grid; gap: 2.5rem; align-items: center;
}
@media (min-width: 768px) {
  .fulfillment-hero__grid { grid-template-columns: 0.95fr 1.05fr; gap: 1.5rem; }
}
@media (min-width: 1024px) {
  .fulfillment-hero__grid { gap: 2.5rem; }
}

.fulfillment-hero__media {
  margin: 0 auto; width: 100%; max-width: 520px;
}
.fulfillment-hero__media img { width: 100%; height: auto; object-fit: contain; }

.fulfillment-hero__content {
  max-width: 560px; margin: 0 auto; text-align: center;
}
@media (min-width: 768px) {
  .fulfillment-hero__content { margin: 0; text-align: left; }
}
.fulfillment-hero__content h1 {
  margin: 0; font-size: 40px; font-weight: 700; line-height: 1.05; color: #333333;
}
@media (min-width: 640px) {
  .fulfillment-hero__content h1 { font-size: 48px; }
}
@media (min-width: 1024px) {
  .fulfillment-hero__content h1 { font-size: 56px; }
}
.fulfillment-hero__content p {
  margin: 1.25rem 0 0; font-size: 14px; line-height: 1.9; color: #666666;
}
@media (min-width: 640px) {
  .fulfillment-hero__content p { font-size: 15px; }
}
.fulfillment-hero__content .fulfillment-btn {
  margin-top: 1.25rem; width: 100%;
}
@media (min-width: 640px) {
  .fulfillment-hero__content .fulfillment-btn { width: auto; }
}

.fulfillment-why {
  padding: 4rem 0; background: #f6f6f6;
}
@media (min-width: 640px) {
  .fulfillment-why { padding: 5rem 0; }
}

.fulfillment-services {
  padding: 4rem 0;
}
@media (min-width: 640px) {
  .fulfillment-services { padding: 5rem 0; }
}

.fulfillment-icon-grid {
  display: grid; gap: 3.5rem 2rem;
}
@media (min-width: 768px) {
  .fulfillment-icon-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1280px) {
  .fulfillment-icon-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.fulfillment-icon-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.fulfillment-icon-card--sm img {
  width: 72px; height: 72px; margin-bottom: 15px; object-fit: contain;
}
@media (min-width: 640px) {
  .fulfillment-icon-card--sm img { width: 78px; height: 78px; }
}
.fulfillment-icon-card--lg img {
  width: 116px; height: 116px; margin-bottom: 15px; object-fit: contain;
}
@media (min-width: 640px) {
  .fulfillment-icon-card--lg img { width: 132px; height: 132px; }
}
.fulfillment-icon-card h3 {
  margin: 0.5rem 0 0; font-size: 16px; font-weight: 700;
  line-height: 1.25; color: #333333;
}
.fulfillment-icon-card--sm h3 {
  min-height: 42px;
}
@media (min-width: 640px) {
  .fulfillment-icon-card h3 { font-size: 20px; }
  .fulfillment-icon-card--sm h3 { min-height: 50px; }
  .fulfillment-icon-card--lg h3 { min-height: 48px; }
}
.fulfillment-icon-card--lg h3 { min-height: 38px; }
.fulfillment-icon-card p {
  margin: 0.5rem 0 0; font-size: 13px; line-height: 1.85; color: #6f6f6f;
}
@media (min-width: 640px) {
  .fulfillment-icon-card p { font-size: 14px; }
}

.fulfillment-process {
  padding: 4rem 0; background: #f3f3f3;
}
@media (min-width: 640px) {
  .fulfillment-process { padding: 5rem 0; }
}

.fulfillment-steps {
  display: grid; gap: 2rem;
}
@media (min-width: 1024px) {
  .fulfillment-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1280px) {
  .fulfillment-steps { grid-template-columns: repeat(4, 1fr); }
}

.fulfillment-step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.fulfillment-step__media {
  display: flex; width: 100%; height: 168px; align-items: center; justify-content: center;
  overflow: hidden; padding: 0 1.25rem; border: 1px dashed #e18d84;
  border-radius: 12px; background: #fff;
}
@media (min-width: 640px) {
  .fulfillment-step__media { height: 188px; }
}
.fulfillment-step__media img {
  width: 100%; height: auto; max-height: 100%; object-fit: contain;
}
.fulfillment-step__num {
  display: inline-flex; width: 40px; height: 40px; margin-top: -20px;
  align-items: center; justify-content: center; border-radius: 50%;
  background: #c01400; color: #fff;
  font-size: 17px; font-weight: 900;
  box-shadow: 0 12px 25px rgba(192, 20, 0, 0.3);
}
.fulfillment-step h3 {
  margin: 15px 0 0; font-size: 16px; font-weight: 700;
  line-height: 1.25; color: #333333;
}
@media (min-width: 640px) {
  .fulfillment-step h3 { font-size: 20px; }
}
.fulfillment-step p {
  margin: 0.5rem 0 0; font-size: 13px; line-height: 1.85; color: #6f6f6f;
}
@media (min-width: 640px) {
  .fulfillment-step p { font-size: 14px; }
}

.fulfillment-process__cta {
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
  margin-top: 3rem;
}
.fulfillment-process__cta img {
  width: 92px; height: auto;
}
@media (min-width: 640px) {
  .fulfillment-process__cta img { width: 112px; }
}

.fulfillment-fees {
  padding: 4rem 0;
}
@media (min-width: 640px) {
  .fulfillment-fees { padding: 5rem 0; }
}
.fulfillment-fees__intro {
  margin: -2rem auto 0; max-width: 820px; text-align: center;
  font-size: 15px; line-height: 1.75; color: #777777;
}
.fulfillment-fees__grid {
  display: grid; gap: 2.5rem; margin-top: 3rem;
}
@media (min-width: 768px) {
  .fulfillment-fees__grid { grid-template-columns: repeat(3, 1fr); }
}

.fulfillment-fee-card {
  text-align: center;
}
.fulfillment-fee-card img {
  width: 62px; height: auto; margin: 0 auto; object-fit: contain;
}
@media (min-width: 640px) {
  .fulfillment-fee-card img { width: 78px; }
}
.fulfillment-fee-card h3 {
  margin: 15px 0 0; font-size: 16px; font-weight: 700;
  line-height: 1.25; color: #333333;
}
@media (min-width: 640px) {
  .fulfillment-fee-card h3 { font-size: 20px; }
}
.fulfillment-fee-card p {
  margin: 0.5rem 0 0; font-size: 13px; line-height: 1.85; color: #6f6f6f;
}
@media (min-width: 640px) {
  .fulfillment-fee-card p { font-size: 14px; }
}

.fulfillment-reviews {
  padding: 4rem 0; background: #f5f5f5;
}
@media (min-width: 640px) {
  .fulfillment-reviews { padding: 5rem 0; }
}

.fulfillment-reviews__grid {
  display: grid; gap: 2rem;
}
@media (min-width: 768px) {
  .fulfillment-reviews__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1280px) {
  .fulfillment-reviews__grid { grid-template-columns: repeat(3, 1fr); }
}

.fulfillment-review {
  padding: 1.75rem 1.75rem 2rem; border-radius: 14px;
  background: #fff; text-align: center;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.04);
}
.fulfillment-review img {
  width: 72px; height: 72px; margin: 0 auto; border-radius: 50%; object-fit: cover;
}
.fulfillment-review h3 {
  margin: 15px 0 0; font-size: 16px; font-weight: 700;
  line-height: 1.25; color: #333333;
}
@media (min-width: 640px) {
  .fulfillment-review h3 { font-size: 20px; }
}
.fulfillment-review p {
  margin: 0.5rem 0 0; font-size: 13px; line-height: 1.85; color: #7a7a7a;
}
@media (min-width: 640px) {
  .fulfillment-review p { font-size: 14px; }
}

/* ===== Product Branding ===== */
.branding-page { background: #fff; }

.branding-wrap {
  width: 100%; max-width: 1180px; margin: 0 auto;
  padding-left: 20px; padding-right: 20px;
}
@media (min-width: 768px) {
  .branding-wrap { padding-left: 0; padding-right: 0; }
}

.branding-btn {
  display: inline-flex; min-height: 40px; align-items: center; justify-content: center;
  padding: 12px 24px; background: #c01400; color: #fff;
  font-size: 13px; font-weight: 700; line-height: 1; text-align: center; text-decoration: none;
  transition: background 0.2s;
}
.branding-btn:hover { background: #a61000; color: #fff; text-decoration: none; transform: none; }

.branding-intro {
  max-width: 1080px; margin: 0 auto; text-align: center;
}
.branding-intro--narrow { max-width: 1080px; }
.branding-intro h2 {
  margin: 0; font-size: 22px; font-weight: 800;
  line-height: 1.15; letter-spacing: -0.01em; color: #333333;
}
@media (min-width: 768px) {
  .branding-intro h2 { font-size: 32px; }
}
.branding-intro p {
  margin: 1rem auto 0; max-width: 980px;
  font-size: 12px; line-height: 1.75; color: #777777;
}
@media (min-width: 768px) {
  .branding-intro p { font-size: 13px; }
}

.branding-cta-bar {
  display: flex; justify-content: center; margin-top: 2.75rem;
}

.branding-hero {
  padding: 0 0 3.375rem; background: #fff;
}
@media (min-width: 768px) {
  .branding-hero { padding-top: 2.375rem; padding-bottom: 4rem; }
}

.branding-hero__grid {
  display: grid; gap: 1.25rem; align-items: center;
}
@media (min-width: 768px) {
  .branding-hero__grid { grid-template-columns: 580px 1fr; gap: 1.5rem; }
}

.branding-hero__image {
  width: 100%; height: auto; border-radius: 4px; object-fit: cover;
}

.branding-hero__content { text-align: left; }
.branding-hero__content h1 {
  margin: 0; font-size: 24px; font-weight: 800;
  line-height: 1.08; letter-spacing: -0.02em; color: #333333;
}
@media (min-width: 768px) {
  .branding-hero__content h1 { font-size: 40px; line-height: 1.1; }
}
.branding-hero__content p {
  margin: 1rem 0 0; font-size: 12px; line-height: 1.72; color: #777777;
}
@media (min-width: 768px) {
  .branding-hero__content p { font-size: 13px; }
}
.branding-hero__content .branding-btn {
  margin-top: 22px; width: 100%;
}
@media (min-width: 640px) {
  .branding-hero__content .branding-btn { width: auto; }
}

.branding-worth {
  padding: 3.625rem 0; background: #f7f7f7;
}
@media (min-width: 768px) {
  .branding-worth { padding: 4.125rem 0; }
}

.branding-worth__grid {
  display: grid; gap: 3rem 4rem; margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .branding-worth__grid { grid-template-columns: repeat(3, 1fr); margin-top: 3rem; }
}

.branding-icon-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.branding-icon-card img {
  width: 82px; height: auto; object-fit: contain;
}
@media (min-width: 768px) {
  .branding-icon-card img { width: 92px; }
}
.branding-icon-card h3 {
  margin: 18px 0 0; font-size: 16px; font-weight: 800;
  line-height: 1.25; color: #333333;
}
@media (min-width: 768px) {
  .branding-icon-card h3 { font-size: 18px; }
}
.branding-icon-card p {
  margin: 10px 0 0; max-width: 260px;
  font-size: 12px; line-height: 1.65; color: #777777;
}

.branding-help {
  padding: 3.625rem 0; background: #fff;
}
@media (min-width: 768px) {
  .branding-help { padding-top: 3.375rem; padding-bottom: 4.125rem; }
}

.branding-video {
  aspect-ratio: 16 / 9; width: 100%; max-width: 1135px;
  margin: 1rem auto 0; overflow: hidden; background: #000;
}
@media (min-width: 768px) {
  .branding-video { margin-top: 15px; }
}
.branding-video iframe {
  display: block; width: 100%; height: 100%; border: 0;
}

.branding-help__grid {
  display: grid; gap: 3rem 1.25rem; margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .branding-help__grid { grid-template-columns: repeat(4, 1fr); margin-top: 3rem; }
}

.branding-media-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.branding-media-card img {
  width: 100%; max-width: 280px; height: 155px; object-fit: cover;
}
@media (min-width: 768px) {
  .branding-media-card img { height: 170px; }
}
.branding-media-card h3 {
  margin: 18px 0 0; font-size: 16px; font-weight: 800;
  line-height: 1.25; color: #333333;
}
@media (min-width: 768px) {
  .branding-media-card h3 { font-size: 18px; }
}
.branding-media-card p {
  margin: 10px 0 0; max-width: 260px;
  font-size: 12px; line-height: 1.65; color: #777777;
}

.branding-fees {
  padding: 3.375rem 0 4.375rem; background: #fff;
}
@media (min-width: 768px) {
  .branding-fees { padding: 4.375rem 0; }
}

.branding-table {
  margin-top: 2rem; overflow: hidden; border: 1px solid #e4e4e4;
}
.branding-table__head {
  display: grid; grid-template-columns: 92px 1fr;
  background: #c01400; color: #fff;
  font-size: 12px; font-weight: 700;
}
@media (min-width: 768px) {
  .branding-table__head { grid-template-columns: 200px 1fr; }
}
.branding-table__head div {
  padding: 1rem 0.75rem;
}
.branding-table__head div:first-child {
  border-right: 1px solid #e07a70;
}
.branding-table__row {
  display: grid; grid-template-columns: 92px 1fr;
  border-top: 1px solid #e4e4e4;
  font-size: 11px; line-height: 1.65; color: #333333;
}
@media (min-width: 768px) {
  .branding-table__row { grid-template-columns: 200px 1fr; font-size: 12px; }
}
.branding-table__label {
  padding: 1rem 0.75rem; border-right: 1px solid #e4e4e4;
  font-weight: 700; color: #c01400;
}
.branding-table__row > div:last-child {
  padding: 1rem 0.75rem;
}

.branding-reviews {
  padding: 3.625rem 0 4.5rem; background: #f5f5f5;
}
@media (min-width: 768px) {
  .branding-reviews { padding: 4.5rem 0; }
}

.branding-reviews__grid {
  display: grid; gap: 1.25rem; margin-top: 2.25rem;
}
@media (min-width: 768px) {
  .branding-reviews__grid { grid-template-columns: repeat(3, 1fr); }
}

.branding-review {
  min-height: 228px; padding: 2rem; background: #fff; text-align: center;
}
.branding-review img {
  width: 73px; height: 73px; margin: 0 auto; border-radius: 50%; object-fit: cover;
}
.branding-review h3 {
  margin: 1rem 0 0; font-size: 16px; font-weight: 500;
  line-height: 1.2; color: #333333;
}
.branding-review p {
  margin: 0.75rem auto 0; max-width: 270px;
  font-size: 12px; line-height: 1.55; color: #777777;
}

/* ===== Private Label Dropshipping ===== */
.plabel-page { background: #fff; }

.plabel-wrap {
  width: 100%; max-width: 1200px; margin: 0 auto;
  padding-left: 20px; padding-right: 20px;
}
@media (min-width: 768px) {
  .plabel-wrap { padding-left: 10px; padding-right: 10px; }
}

.plabel-btn {
  display: inline-flex; min-height: 54px; align-items: center; justify-content: center;
  padding: 0 1.25rem; background: #c01400; color: #fff;
  font-size: 14px; font-weight: 700; text-align: center; text-decoration: none;
  transition: background 0.2s;
}
.plabel-btn:hover { background: #252525; color: #fff; text-decoration: none; transform: none; }

.plabel-cta-bar {
  display: flex; justify-content: center; padding-top: 0.25rem;
}
.plabel-cta-bar--faq { padding-top: 2rem; }

.plabel-hero {
  padding: 2.5rem 0 1.875rem;
}
@media (min-width: 768px) {
  .plabel-hero { padding-top: 2.375rem; padding-bottom: 1.25rem; }
}

.plabel-hero__grid {
  display: grid; gap: 2rem; align-items: center;
}
@media (min-width: 768px) {
  .plabel-hero__grid { grid-template-columns: 40.167% 59.833%; gap: 0; }
}
.plabel-hero__grid > img { width: 100%; height: auto; }

.plabel-hero__content { text-align: center; }
@media (min-width: 768px) {
  .plabel-hero__content { padding-left: 35px; text-align: left; }
}
.plabel-hero__content h1 {
  margin: 0; font-size: 20px; font-weight: 700; line-height: 1.4; color: #252525;
}
@media (min-width: 768px) {
  .plabel-hero__content h1 { font-size: 40px; }
}
.plabel-hero__content p {
  margin: 1.25rem 0 0; font-size: 14px; line-height: 1.65; color: #7a7a7a;
}
@media (min-width: 768px) {
  .plabel-hero__content p { margin-top: 1rem; font-size: 16px; }
}
.plabel-hero__content .plabel-btn {
  margin-top: 1.25rem; width: 100%;
}
@media (min-width: 768px) {
  .plabel-hero__content .plabel-btn { margin-top: 2.5rem; width: auto; }
}

.plabel-band {
  padding: 1.25rem 0; background: #fff;
}
@media (min-width: 768px) {
  .plabel-band { padding: 3.125rem 0; }
}
.plabel-band__inner {
  padding: 1.5rem 1.25rem; background: #f5f5f5; text-align: center;
}
@media (min-width: 768px) {
  .plabel-band__inner { padding: 2.875rem 3.75rem; }
}
.plabel-band__inner h2 {
  margin: 0; font-size: 20px; font-weight: 700; line-height: 1.5; color: #252525;
}
@media (min-width: 768px) {
  .plabel-band__inner h2 { font-size: 32px; line-height: 1.4; }
}
.plabel-band__inner p {
  margin: 1.25rem auto 0; max-width: 980px;
  font-size: 14px; line-height: 1.65; color: #7a7a7a;
}
@media (min-width: 768px) {
  .plabel-band__inner p { font-size: 16px; }
}

.plabel-section {
  padding: 1.875rem 0;
}
@media (min-width: 768px) {
  .plabel-section { padding: 2.5rem 0; }
}
.plabel-section--process {
  padding-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .plabel-section--process { padding-top: 2rem; padding-bottom: 2.5rem; }
}

.plabel-cards {
  display: grid; gap: 2rem 2.5rem;
}
@media (min-width: 768px) {
  .plabel-cards--2 { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 2.5rem; }
  .plabel-cards--3 { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 2.5rem; }
}
@media (min-width: 1280px) {
  .plabel-cards--3 { grid-template-columns: repeat(3, 1fr); }
}

.plabel-card img { width: 100%; height: auto; }
.plabel-card h3 {
  margin: 15px 0 0; font-size: 16px; font-weight: 700;
  line-height: 1.3; color: #252525;
}
@media (min-width: 768px) {
  .plabel-card h3 { font-size: 20px; }
}
.plabel-card p {
  margin: 0.5rem 0 0; font-size: 14px; line-height: 1.65; color: #7a7a7a;
}
@media (min-width: 768px) {
  .plabel-card p { font-size: 16px; }
}
@media (min-width: 768px) {
  .plabel-card--center {
    grid-column: span 2; max-width: 520px; margin: 0 auto;
  }
}
@media (min-width: 1280px) {
  .plabel-card--center {
    grid-column: 2; max-width: none; margin: 0;
  }
}

.plabel-reviews {
  padding: 3.125rem 0; background: #f5f5f5;
}
@media (min-width: 768px) {
  .plabel-reviews { padding: 3.125rem 0; }
}
.plabel-reviews__title {
  margin: 0; text-align: center; font-size: 26px; font-weight: 700;
  text-transform: capitalize; color: #252525;
}
@media (min-width: 768px) {
  .plabel-reviews__title { font-size: 32px; }
}
.plabel-reviews__grid {
  display: grid; gap: 1.25rem; margin-top: 2rem;
}
@media (min-width: 768px) {
  .plabel-reviews__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1280px) {
  .plabel-reviews__grid { grid-template-columns: repeat(4, 1fr); }
}

.plabel-review {
  position: relative; display: flex; height: 100%; flex-direction: column;
  padding: 1rem 1rem 1.5rem; border: 1px solid #efefef; background: #fff;
}
.plabel-review::after {
  content: ''; position: absolute; inset-inline: 0; bottom: 0; height: 4px;
  background: #c01400;
}
.plabel-review__head {
  display: flex; align-items: flex-start; gap: 0.75rem;
}
.plabel-review__head img,
.plabel-review__avatar {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 50%; object-fit: cover;
}
.plabel-review__avatar {
  display: flex; align-items: center; justify-content: center;
  background: #d9d9d9; font-size: 12px; font-weight: 600; color: #4f4f4f;
}
.plabel-review__head h3 {
  margin: 0; font-size: 12px; font-weight: 700; line-height: 1; color: #252525;
}
.plabel-review__stars {
  display: flex; align-items: center; gap: 0.25rem; margin-top: 0.5rem;
}
.plabel-review__score {
  font-size: 11px; font-weight: 500; line-height: 1; color: #c01400;
}
.plabel-review__star {
  display: inline-flex; width: 16px; height: 16px; align-items: center; justify-content: center;
  background: #00b67a; font-size: 10px; line-height: 1; color: #fff;
}
.plabel-review__lead {
  margin: 1rem 0 0; font-size: 14px; font-weight: 600;
  line-height: 1.35; color: #252525;
}
.plabel-review > p:last-child,
.plabel-review > p:not(.plabel-review__lead):only-of-type {
  margin: 0.75rem 0 0; font-size: 12px; line-height: 1.65; color: #666666;
}
.plabel-review > p.plabel-review__lead + p {
  margin: 0.75rem 0 0; font-size: 12px; line-height: 1.65; color: #666666;
}

.plabel-faq.faq-page {
  padding: 3.125rem 1.25rem 2.5rem; background: #fff;
}
@media (min-width: 768px) {
  .plabel-faq.faq-page { padding: 3.125rem 10px 2.5rem; }
}
.plabel-faq__title {
  margin: 0; width: 100%; text-align: center;
  font-size: 22px; font-weight: 700; line-height: 1.4; color: #252525;
}
@media (min-width: 768px) {
  .plabel-faq__title { font-size: 32px; }
}
.plabel-faq .faq-list--page { width: 100%; }
.plabel-faq .faq-item__icon svg { display: block; }

/* ===== 1v1 Customer Service ===== */
.cs-page { background: #fff; }

.cs-wrap {
  width: 100%; max-width: 1200px; margin: 0 auto;
  padding-left: 20px; padding-right: 20px;
}
@media (min-width: 640px) {
  .cs-wrap { padding-left: 32px; padding-right: 32px; }
}
@media (min-width: 1024px) {
  .cs-wrap { padding-left: 40px; padding-right: 40px; }
}

.cs-btn {
  display: inline-flex; min-height: 40px; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem; border-radius: 8px; background: #c81901; color: #fff;
  font-size: 17px; font-weight: 500; text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.cs-btn:hover { background: #a71400; color: #fff; text-decoration: none; transform: none; }
.cs-btn--sm { margin-top: 1.5rem; width: fit-content; font-size: 17px; }

.cs-kicker {
  margin: 0; font-size: 20px; font-weight: 500; line-height: 1.2; color: #7b7a84;
}
@media (min-width: 768px) {
  .cs-kicker { font-size: 24px; }
}
.cs-kicker--green { font-weight: 600; color: #4d8f61; text-transform: lowercase; }

@keyframes cs-aurora-slow {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(18px, -18px, 0) scale(1.08); }
}
@keyframes cs-aurora-medium {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-14px, 16px, 0) scale(1.05); }
}
@keyframes cs-aurora-fast {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(12px, 14px, 0) scale(1.1); }
}
@keyframes cs-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -14px, 0); }
}
@keyframes cs-float-alt {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, 12px, 0); }
}

.cs-hero__aurora {
  position: absolute; border-radius: 46%; background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}
.cs-hero__aurora--slow {
  left: -120px; bottom: auto; top: auto; width: 180px; height: 180px;
  animation: cs-aurora-slow 10s ease-in-out infinite;
}
.cs-hero__aurora--fast {
  right: 12%; top: 18%; width: 160px; height: 180px;
  background: rgba(255, 255, 255, 0.12);
  animation: cs-aurora-fast 5.8s ease-in-out infinite;
}
.cs-hero__aurora--medium {
  right: 4%; bottom: 8%; width: 220px; height: 220px; border-radius: 42%;
  animation: cs-aurora-medium 7s ease-in-out infinite;
}

.cs-float { animation: cs-float 6.8s ease-in-out infinite; }
.cs-float--alt { animation: cs-float-alt 7.4s ease-in-out infinite; }

.cs-hero {
  position: relative; overflow: hidden;
  padding: 3.5rem 0 4rem;
  background: linear-gradient(90deg, #1d18e2 0%, #1e8be6 52%, #23d7e4 100%);
}
@media (min-width: 1024px) {
  .cs-hero { padding-top: 4.5rem; padding-bottom: 5rem; }
}
.cs-hero__wave {
  position: absolute; inset-inline: 0; bottom: 0; height: 4rem; color: #fff;
}
.cs-hero__wave svg { width: 100%; height: 100%; }

.cs-hero__grid {
  position: relative; z-index: 1;
  display: grid; gap: 2.5rem; align-items: center;
}
@media (min-width: 768px) {
  .cs-hero__grid { grid-template-columns: 0.95fr 1.05fr; gap: 3.5rem; }
}

.cs-hero__content {
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
@media (min-width: 768px) {
  .cs-hero__content { align-items: flex-start; text-align: left; }
}
.cs-hero__eyebrow {
  margin: 0; font-size: 20px; font-weight: 500; line-height: 1.2; color: rgba(255, 255, 255, 0.8);
}
@media (min-width: 768px) {
  .cs-hero__eyebrow { font-size: 24px; }
}
.cs-hero__content h1 {
  margin: 1rem 0 0; font-size: 42px; font-weight: 600; line-height: 1.08; color: #fff;
}
@media (min-width: 768px) {
  .cs-hero__content h1 { font-size: 56px; }
}
.cs-hero__content > p {
  margin: 1.25rem 0 0; max-width: 560px;
  font-size: 16px; line-height: 1.75; color: rgba(255, 255, 255, 0.85);
}
@media (min-width: 768px) {
  .cs-hero__content > p { font-size: 18px; }
}
.cs-hero__content .cs-btn { margin-top: 2rem; }

.cs-hero__media {
  margin: 0 auto; width: 100%; max-width: 580px;
}
.cs-hero__media .cs-float {
  overflow: hidden; border-radius: 56px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 40px rgba(5, 24, 109, 0.22);
}
@media (min-width: 768px) {
  .cs-hero__media .cs-float { border-radius: 72px; }
}
.cs-hero__media img { width: 100%; height: auto; object-fit: cover; }

.cs-intro {
  position: relative; overflow: hidden; padding: 4rem 0; background: #fff;
}
@media (min-width: 1024px) {
  .cs-intro { padding: 5rem 0; }
}
.cs-intro__blob {
  position: absolute; border-radius: 44%; pointer-events: none;
}
.cs-intro__blob--left {
  left: -120px; top: 18%; width: 260px; height: 360px; background: #dff6ff;
}
.cs-intro__blob--bottom {
  left: 28%; bottom: -40px; width: 160px; height: 160px; border-radius: 42%; background: #eeedff;
}
.cs-intro__grid {
  position: relative; z-index: 1;
  display: grid; gap: 2.5rem; align-items: center;
}
@media (min-width: 768px) {
  .cs-intro__grid { grid-template-columns: 0.92fr 1.08fr; gap: 3.5rem; }
}
.cs-intro__media {
  margin: 0 auto; width: 100%; max-width: 560px;
}
.cs-intro__media .cs-float {
  overflow: hidden; border-radius: 56px;
}
@media (min-width: 768px) {
  .cs-intro__media .cs-float { border-radius: 72px; }
}
.cs-intro__media img { width: 100%; height: auto; object-fit: contain; }

.cs-intro__content h2 {
  margin: 1rem 0 0; font-size: 34px; font-weight: 600;
  line-height: 1.12; color: #bab2ff;
}
@media (min-width: 768px) {
  .cs-intro__content h2 { font-size: 46px; }
}
.cs-intro__content > p {
  margin: 1.25rem 0 0; max-width: 560px;
  font-size: 16px; line-height: 1.75; color: #54595f;
}
.cs-intro__content ol {
  margin: 1.25rem 0 0; padding-left: 1.25rem;
  font-size: 16px; line-height: 2; color: #54595f;
}
.cs-intro__content .cs-btn { margin-top: 2rem; }

.cs-services {
  padding: 4rem 0; background: #fff;
}
@media (min-width: 1024px) {
  .cs-services { padding: 5rem 0; }
}
.cs-services__head {
  display: flex; flex-direction: column; gap: 1.25rem;
}
@media (min-width: 768px) {
  .cs-services__head {
    flex-direction: row; align-items: flex-end; justify-content: space-between;
  }
}
.cs-services__head h2 {
  margin: 1rem 0 0; font-size: 34px; font-weight: 700;
  line-height: 1.1; text-transform: lowercase; color: #252525;
}
@media (min-width: 768px) {
  .cs-services__head h2 { font-size: 46px; }
}

.cs-services__grid {
  display: grid; gap: 1.5rem; margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .cs-services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1280px) {
  .cs-services__grid { grid-template-columns: repeat(3, 1fr); }
}

.cs-service-card {
  display: flex; min-height: 400px; flex-direction: column;
  padding: 2rem; border: 1px solid #eef2fb; border-radius: 40px; background: #fff;
  box-shadow: 0 24px 70px rgba(75, 91, 128, 0.08);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms ease, border-color 320ms ease;
}
@media (min-width: 768px) {
  .cs-service-card { min-height: 430px; }
}
.cs-service-card:hover {
  transform: translate3d(0, -10px, 0);
  border-color: #d7e5dc;
  box-shadow: 0 24px 60px rgba(32, 58, 41, 0.14);
}
.cs-service-card__icon {
  position: relative; width: 104px; height: 78px; flex-shrink: 0;
}
.cs-service-card__glow {
  position: absolute; left: 0; top: 0; width: 64px; height: 64px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(116, 96, 255, 0.12), rgba(116, 96, 255, 0.08) 55%, rgba(116, 96, 255, 0.03) 100%);
}
.cs-service-card__icon img {
  position: absolute; left: 32px; top: 8px; width: 52px; height: auto; object-fit: contain;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}
.cs-service-card:hover .cs-service-card__icon img { transform: scale(1.05); }
.cs-service-card h3 {
  margin: 1rem 0 0; font-size: 22px; font-weight: 500;
  line-height: 1.2; letter-spacing: -0.02em; color: #3f4965;
}
.cs-service-card > p {
  margin: 1.25rem 0 0; flex: 1;
  font-size: 17px; line-height: 1.65; letter-spacing: -0.01em; color: #6d7590;
}

.cs-channels {
  padding: 3rem 0 4rem; background: #fff;
}
@media (min-width: 1024px) {
  .cs-channels { padding: 4rem 0; }
}
.cs-channels h2 {
  margin: 0; text-align: center; font-size: 34px; font-weight: 700;
  line-height: 1.12; color: #252525;
}
@media (min-width: 768px) {
  .cs-channels h2 { font-size: 44px; }
}
.cs-channels__grid {
  display: grid; gap: 1.5rem; margin-top: 2rem;
}
@media (min-width: 768px) {
  .cs-channels__grid { grid-template-columns: repeat(3, 1fr); }
}

.cs-channel-card {
  overflow: hidden; border-radius: 24px; background: #fff;
  box-shadow: 0 12px 32px rgba(21, 56, 39, 0.08);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms ease;
}
.cs-channel-card:hover {
  transform: translate3d(0, -8px, 0);
  box-shadow: 0 22px 52px rgba(21, 56, 39, 0.16);
}
.cs-channel-card img {
  width: 100%; height: 220px; object-fit: cover;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), filter 320ms ease;
}
.cs-channel-card:hover img { transform: scale(1.06); filter: saturate(1.08); }
.cs-channel-card h3 {
  margin: 0; padding: 2rem 1.5rem; text-align: center;
  font-size: 20px; font-weight: 500; color: #19c3ff;
}
@media (min-width: 768px) {
  .cs-channel-card h3 { font-size: 22px; }
}

.cs-faq-link {
  padding: 2.5rem 0 3rem; background: #fff;
}
@media (min-width: 1024px) {
  .cs-faq-link { padding: 3rem 0; }
}
.cs-faq-link__inner {
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.cs-faq-link h2 {
  margin: 0; text-align: center; font-size: 34px; font-weight: 700;
  line-height: 1.12; color: #252525;
}
@media (min-width: 768px) {
  .cs-faq-link h2 { font-size: 44px; }
}

.cs-reviews {
  padding: 4rem 0; background: linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
}
@media (min-width: 1024px) {
  .cs-reviews { padding: 5rem 0; }
}
.cs-reviews__grid {
  display: grid; gap: 2.5rem;
}
@media (min-width: 1024px) {
  .cs-reviews__grid { grid-template-columns: 320px minmax(0, 1fr); align-items: start; }
}
.cs-reviews__intro h2 {
  margin: 1rem 0 0; font-size: 34px; font-weight: 700;
  line-height: 1.08; text-transform: lowercase; color: #252525;
}
@media (min-width: 768px) {
  .cs-reviews__intro h2 { font-size: 46px; }
}
.cs-reviews__cards {
  display: grid; gap: 1.5rem;
}
@media (min-width: 768px) {
  .cs-reviews__cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1280px) {
  .cs-reviews__cards { grid-template-columns: repeat(3, 1fr); }
}

.cs-review-card {
  display: flex; height: 100%; flex-direction: column;
  padding: 1.5rem; border: 1px solid #e9efea; border-radius: 6px; background: #fff;
  box-shadow: 0 14px 36px rgba(28, 55, 40, 0.08);
}
.cs-review-card--featured {
  border-color: #dce7e0;
  box-shadow: 0 22px 50px rgba(25, 58, 41, 0.14);
}
.cs-review-card > p {
  margin: 0; font-size: 16px; line-height: 1.75; color: #54595f;
}
.cs-review-card__author {
  display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem;
}
.cs-review-card__author img {
  width: 56px; height: 56px; border-radius: 50%; object-fit: cover;
}
.cs-review-card__author h3 {
  margin: 0; font-size: 18px; font-weight: 600; color: #252525;
}
.cs-review-card__author p {
  margin: 0; font-size: 14px; letter-spacing: 0.08em;
  text-transform: uppercase; color: #6b7c70;
}

.cs-cta {
  position: relative; overflow: hidden;
  padding: 4rem 0; background: linear-gradient(90deg, #1d18e2 0%, #1e8be6 52%, #23d7e4 100%);
}
@media (min-width: 1024px) {
  .cs-cta { padding: 4.5rem 0; }
}
.cs-cta__wave {
  position: absolute; inset-inline: 0; top: 0; height: 4rem;
  color: #fff; transform: rotate(180deg);
}
.cs-cta__wave svg { width: 100%; height: 100%; }
.cs-cta__aurora--left { left: 2%; bottom: -20px; top: auto; width: 140px; height: 260px; border-radius: 44%; }
.cs-cta__aurora--right { right: 8%; top: 30px; width: 280px; height: 210px; border-radius: 42%; background: rgba(255, 255, 255, 0.12); }
.cs-cta__aurora--bottom { right: 16%; bottom: -80px; width: 260px; height: 260px; border-radius: 44%; }

.cs-cta__grid {
  position: relative; z-index: 1;
  display: grid; gap: 2.5rem; align-items: center;
}
@media (min-width: 768px) {
  .cs-cta__grid { grid-template-columns: 1fr 380px; gap: 3.5rem; }
}
.cs-cta__content h2 {
  margin: 1rem 0 0; font-size: 34px; font-weight: 500;
  line-height: 1.08; text-transform: lowercase; color: #fff;
}
@media (min-width: 768px) {
  .cs-cta__content h2 { font-size: 46px; }
}
.cs-cta__content .cs-btn { margin-top: 2rem; }
.cs-cta__media {
  margin: 0 auto; width: 100%; max-width: 320px;
}
.cs-cta__media img {
  width: 100%; height: auto; border-radius: 50%; object-fit: cover;
  box-shadow: 0 22px 50px rgba(5, 24, 109, 0.22);
}

@media (prefers-reduced-motion: reduce) {
  .cs-hero__aurora,
  .cs-float,
  .cs-float--alt {
    animation: none !important;
  }
  .cs-service-card,
  .cs-service-card__icon img,
  .cs-channel-card,
  .cs-channel-card img {
    transition: none !important;
    transform: none !important;
  }
}

/* ===== After-Sale Service ===== */
.ass-page { background: #fff; color: #0f172a; }

.ass-wrap {
  width: 100%; max-width: 1200px; margin: 0 auto;
  padding-left: 24px; padding-right: 24px;
}
@media (min-width: 640px) {
  .ass-wrap { padding-left: 32px; padding-right: 32px; }
}
@media (min-width: 1024px) {
  .ass-wrap { padding-left: 40px; padding-right: 40px; }
}

.ass-hero {
  position: relative; isolation: isolate; overflow: hidden;
  background-position: center; background-size: cover; color: #fff;
}
.ass-hero__wave {
  position: absolute; inset-inline: 0; bottom: 0; height: 4rem; color: #fff;
}
.ass-hero__wave svg { width: 100%; height: 100%; }
.ass-hero__inner {
  display: flex; min-height: 500px; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 4rem 0 7rem; text-align: center;
}
.ass-hero__inner h1 {
  margin: 0; max-width: 920px;
  font-size: 42px; font-weight: 600; line-height: 1.1; letter-spacing: -0.03em;
}
@media (min-width: 768px) {
  .ass-hero__inner h1 { font-size: 60px; }
}
.ass-hero__inner > p {
  margin: 1.25rem 0 0; font-size: 20px; font-weight: 300; line-height: 2; color: rgba(255, 255, 255, 0.9);
}
@media (min-width: 768px) {
  .ass-hero__inner > p { font-size: 22px; }
}

.ass-cards {
  position: relative; overflow: hidden; padding: 5rem 0;
  background-position: center top; background-repeat: no-repeat; background-size: cover;
}
@media (min-width: 640px) {
  .ass-cards { padding: 6rem 0; }
}
.ass-cards__grid {
  display: grid; gap: 2.5rem;
}
@media (min-width: 1024px) {
  .ass-cards__grid { grid-template-columns: 1fr 1fr 380px; gap: 2rem; align-items: start; }
}

.ass-card {
  padding: 2rem; border-radius: 36px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(8px);
}
.ass-card h2 {
  margin: 0; font-size: 36px; font-weight: 600; line-height: 1.2;
}
.ass-card:first-child h2 { color: #4632da; }
.ass-card:nth-child(2) h2 { color: #00dafc; }
.ass-card ul {
  margin: 2rem 0 0; padding-left: 1.5rem;
  list-style: disc;
}
.ass-card li {
  padding-left: 0.5rem; font-size: 16px; line-height: 1.75; color: #334155;
}
.ass-card li::marker { color: #c01400; }

.ass-cards__media {
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto; width: 100%; max-width: 380px;
}
@media (min-width: 1024px) {
  .ass-cards__media { max-width: none; margin: 0; }
}

.ass-photo {
  overflow: hidden; box-shadow: 0 20px 50px rgba(15, 23, 42, 0.16);
}
.ass-photo--main {
  border-radius: 200px 100px 100px 100px;
}
.ass-photo--team {
  border-radius: 300px 100px 100px 100px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}
.ass-photo img { width: 100%; height: auto; object-fit: cover; }

.ass-team {
  position: relative; isolation: isolate; overflow: hidden;
  padding: 5rem 0; background-position: center; background-size: cover; color: #fff;
}
@media (min-width: 640px) {
  .ass-team { padding: 6rem 0; }
}
.ass-team__wave {
  position: absolute; inset-inline: 0; top: 0; height: 4rem;
  color: #fff; transform: rotate(180deg);
}
.ass-team__wave svg { width: 100%; height: 100%; }

.ass-team__grid {
  position: relative; z-index: 1;
  display: grid; gap: 3rem;
}
@media (min-width: 1024px) {
  .ass-team__grid { grid-template-columns: 0.92fr 1.08fr; align-items: end; gap: 3rem; }
}

.ass-team__content {
  display: flex; flex-direction: column; align-items: flex-start; padding-top: 1rem;
}
.ass-team__label {
  margin: 0; font-size: 45px; font-weight: 600;
  line-height: 1.15; letter-spacing: -0.03em;
}
.ass-team__content h2 {
  margin: 1.25rem 0 0; font-size: 20px; font-weight: 400; line-height: 1.75; color: rgba(255, 255, 255, 0.9);
}

.ass-btn {
  display: inline-flex; align-items: center; gap: 0.75rem;
  margin-top: 3rem; padding: 1rem 2rem; border-radius: 999px;
  background: #c01400; color: #00dafc;
  font-size: 15px; font-weight: 600; text-decoration: none;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s;
}
.ass-btn:hover {
  transform: translateY(-2px); color: #00dafc; text-decoration: none;
}

.ass-team__media {
  margin: 0 auto; width: 100%; max-width: 600px;
}
@media (min-width: 1024px) {
  .ass-team__media { margin: 0 0 0 auto; }
}

/* ===== Free Product Photo ===== */
.fpp-page { background: #fff; padding-bottom: 4rem; color: #252525; }

.fpp-wrap {
  width: 100%; max-width: 1200px; margin: 0 auto;
  padding-left: 20px; padding-right: 20px;
}
@media (min-width: 768px) {
  .fpp-wrap { padding-left: 40px; padding-right: 40px; }
}

.fpp-btn {
  display: inline-flex; min-height: 40px; align-items: center; justify-content: center; gap: 0.75rem;
  font-size: 16px; font-weight: 600; text-decoration: none; transition: background 0.2s;
}
.fpp-btn--pill {
  margin-top: 2rem; padding: 0 1.5rem; border-radius: 999px;
  background: #c01400; color: #fff;
}
.fpp-btn--pill:hover { background: #a91300; color: #fff; text-decoration: none; transform: none; }
.fpp-btn--outline {
  margin-top: 2rem; padding: 0 1.25rem; border: 1px solid #fff;
  background: #d52f14; color: #fff;
}
.fpp-btn--outline:hover { background: #bb270f; color: #fff; text-decoration: none; transform: none; }

.fpp-hero { padding: 4rem 0 0; }
.fpp-hero__grid {
  display: flex; flex-direction: column; gap: 2rem;
}
@media (min-width: 768px) {
  .fpp-hero__grid { flex-direction: row; align-items: center; gap: 3rem; }
}
.fpp-hero__content { width: 100%; }
.fpp-hero__content h1 {
  margin: 0; font-size: 34px; font-weight: 600;
  line-height: 1.12; letter-spacing: -0.04em; color: #252525;
}
@media (min-width: 768px) {
  .fpp-hero__content h1 { font-size: 50px; }
}
.fpp-hero__content > p {
  margin: 1.5rem 0 0; font-size: 13px; line-height: 2; color: #8a8a8a;
}
.fpp-hero__media {
  flex: 1; min-width: 40%; overflow: hidden; border-radius: 2px;
  box-shadow: 0 24px 54px rgba(37, 37, 37, 0.18);
}
.fpp-hero__media img { width: 100%; height: auto; object-fit: cover; }

.fpp-intro {
  margin-top: 3.5rem; padding: 2.5rem 0;
  background: linear-gradient(90deg, rgba(255, 234, 240, 0.72) 0%, rgba(234, 255, 245, 0.8) 100%);
}
@media (min-width: 768px) {
  .fpp-intro { margin-top: 4rem; }
}
.fpp-intro__inner {
  display: flex; justify-content: flex-end;
}
.fpp-intro__copy { max-width: 520px; color: #252525; }
.fpp-intro__copy > p {
  margin: 0.5rem 0 0; font-size: 12px; line-height: 1.25; color: #666;
}
.fpp-intro__name {
  margin-right: 0.25rem; font-size: 13px; font-weight: 600; font-style: italic; color: #333;
}
.fpp-intro__label {
  margin: 1.25rem 0 0; font-size: 13px; font-weight: 600; color: #444;
}
.fpp-intro__copy ul {
  margin: 0.75rem 0 0; padding: 0; list-style: none;
}
.fpp-intro__copy li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  margin-top: 0.5rem; font-size: 12px; line-height: 1.25; color: #666;
}
.fpp-intro__bullet {
  font-size: 16px; font-weight: 600; line-height: 1; color: #7ab66b;
}

.fpp-gallery { padding: 3rem 0; }
@media (min-width: 768px) {
  .fpp-gallery { padding: 4rem 0; }
}
.fpp-gallery__grid {
  display: grid; gap: 1.5rem;
}
@media (min-width: 640px) {
  .fpp-gallery__grid { grid-template-columns: repeat(2, 1fr); }
}
.fpp-gallery__item {
  overflow: hidden; border-radius: 2px; background: #fff;
}
.fpp-gallery__item img {
  aspect-ratio: 1 / 1; width: 100%; height: auto; object-fit: cover;
}

.fpp-branding {
  overflow: hidden; padding: 3.5rem 0;
  background: linear-gradient(90deg, #d1a3ef 0%, #7e7cef 52%, #4f61eb 100%); color: #fff;
}
@media (min-width: 768px) {
  .fpp-branding { padding: 4rem 0; }
}
.fpp-branding__inner { max-width: 960px; margin: 0 auto; text-align: center; }
.fpp-branding h2 {
  margin: 0; line-height: 1; letter-spacing: 1px; color: #fff;
}
.fpp-branding h2 span:first-child {
  display: block; font-size: 34px; font-weight: 700;
}
.fpp-branding h2 span:last-child {
  display: block; margin-top: 0.25rem; font-size: 32px; font-weight: 200;
}
@media (min-width: 768px) {
  .fpp-branding h2 span:first-child { font-size: 50px; }
  .fpp-branding h2 span:last-child { font-size: 48px; }
}
.fpp-branding p {
  margin: 1.25rem auto 0; max-width: 720px;
  padding-top: 1.25rem; font-size: 16px; line-height: 1.75; color: rgba(255, 255, 255, 0.9);
}

.fpp-stats {
  padding: 3.5rem 0; background: #f7f7f7;
}
@media (min-width: 768px) {
  .fpp-stats { padding: 4rem 0; }
}
.fpp-stats__grid {
  display: grid; gap: 2.5rem;
}
@media (min-width: 768px) {
  .fpp-stats__grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
}
.fpp-stat { text-align: center; }
.fpp-stat__value {
  margin: 0 0 0.5rem; font-size: 52px; font-weight: 200;
  line-height: 1; color: #de3418;
}
@media (min-width: 768px) {
  .fpp-stat__value { font-size: 68px; }
}
.fpp-stat__label {
  margin: 1rem 0 0; font-size: 16px; font-weight: 500; color: #2a2a2a;
}

.fpp-team { padding: 3.5rem 0; }
@media (min-width: 768px) {
  .fpp-team { padding: 4rem 0; }
}
.fpp-team__grid {
  display: grid; gap: 2.5rem; align-items: center;
}
@media (min-width: 768px) {
  .fpp-team__grid { grid-template-columns: minmax(380px, 1fr) minmax(0, 1fr); }
}
.fpp-team__media {
  margin: 0 auto; width: 100%; max-width: 520px;
}
.fpp-team__media img { width: 100%; height: auto; object-fit: contain; }
.fpp-team__content { max-width: 470px; }
.fpp-team__content h2 {
  margin: 0; font-size: 42px; font-weight: 500; line-height: 1.1; color: #111;
}
@media (min-width: 768px) {
  .fpp-team__content h2 { font-size: 58px; }
}
.fpp-team__content > p {
  margin: 2rem 0 0; font-size: 16px; line-height: 2; color: #7f7f7f;
}
.fpp-team__divider {
  width: 6rem; height: 1px; margin-top: 2rem; background: #e6b0dc;
}
.fpp-team__social {
  display: flex; align-items: center; gap: 2rem; margin-top: 2.5rem;
}
.fpp-team__social a {
  font-size: 22px; color: #111; transition: color 0.2s;
}
.fpp-team__social a:hover { color: #de3418; }

/* ===== Dropshipping Agent Hub ===== */
.dsa-page { background: #fff; color: #111827; }

.dsa-wrap {
  width: 100%; max-width: 1280px; margin: 0 auto;
  padding-left: 24px; padding-right: 24px;
}

.dsa-main { padding: 3rem 0; }
@media (min-width: 1024px) {
  .dsa-main { padding: 3rem 0 0; }
}

.dsa-feature__hero {
  position: relative; overflow: hidden; height: 400px;
  margin-bottom: 2rem; border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .dsa-feature__hero { height: 500px; }
}
.dsa-feature__hero > img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.dsa-feature__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3), transparent);
}
.dsa-feature__content {
  position: absolute; inset-inline: 0; bottom: 0;
  padding: 2rem; color: #fff;
}
@media (min-width: 768px) {
  .dsa-feature__content { padding: 3rem; }
}
.dsa-badge {
  display: inline-block; margin-bottom: 1rem;
  padding: 0.375rem 1rem; border-radius: 999px;
  background: #dc2626; font-size: 0.875rem; font-weight: 600;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.dsa-feature__content h1 {
  margin: 0; color: #fff; text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; line-height: 1.15;
}
.dsa-meta {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  margin-top: 1rem; font-size: 0.875rem; color: #e5e7eb;
}
.dsa-meta time,
.dsa-meta span { display: inline-flex; align-items: center; gap: 0.5rem; }

.dsa-summary {
  padding: 2rem; border-left: 4px solid #3b82f6; border-radius: 0.75rem;
  background: linear-gradient(to bottom right, #eff6ff, #eef2ff);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.dsa-summary h2 {
  display: flex; align-items: center; gap: 0.5rem;
  margin: 0 0 1rem; font-size: 1.25rem; font-weight: 700; color: #111827;
}
.dsa-summary h2::before {
  content: ''; width: 6px; height: 24px; border-radius: 999px; background: #3b82f6;
}
.dsa-summary p {
  margin: 0; font-size: 1rem; line-height: 1.75; color: #374151;
}

.dsa-related {
  padding: 4rem 0;
  background: linear-gradient(to bottom right, #f9fafb, #fff);
}
.dsa-related__title {
  display: flex; align-items: center; gap: 0.75rem;
  margin: 0 0 2rem; font-size: 1.5rem; font-weight: 700; color: #111827;
}
.dsa-related__title::before {
  content: '↗'; font-size: 1.5rem; color: #dc2626;
}
.dsa-related__grid {
  display: grid; gap: 1.5rem;
}
@media (min-width: 768px) {
  .dsa-related__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .dsa-related__grid { grid-template-columns: repeat(3, 1fr); }
}

.dsa-card {
  overflow: hidden; border: 1px solid #f3f4f6; border-radius: 0.75rem; background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s, border-color 0.3s;
}
.dsa-card:hover {
  border-color: #fecaca;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.dsa-card__media {
  display: block; overflow: hidden; height: 12rem; background: #f3f4f6;
}
.dsa-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.dsa-card:hover .dsa-card__media img { transform: scale(1.05); }
.dsa-card__body { padding: 1.25rem; }
.dsa-card__body > a:first-of-type { text-decoration: none; }
.dsa-card__body h3 {
  margin: 0; font-size: 1rem; font-weight: 600; line-height: 1.4; color: #111827;
  transition: color 0.2s;
}
.dsa-card:hover h3 { color: #dc2626; }
.dsa-card__body > p {
  margin: 0.75rem 0 1rem; font-size: 0.875rem; line-height: 1.5; color: #4b5563;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.dsa-card__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.dsa-card__foot time { font-size: 0.75rem; color: #6b7280; }
.dsa-card__more {
  display: inline-flex; align-items: center; gap: 0.25rem;
  font-size: 0.875rem; font-weight: 500; color: #dc2626; text-decoration: none;
  transition: gap 0.2s;
}
.dsa-card__more:hover { gap: 0.5rem; text-decoration: none; color: #dc2626; }

.about-story {
  width: 100%; background: #fff;
  padding: 3rem 0;
}
@media (min-width: 768px) { .about-story { padding: 4rem 0; } }

.about-story__inner {
  display: flex; flex-direction: column; gap: 2.5rem;
}

.about-story__intro h2,
.about-mission__content h2 {
  margin: 0 0 1.25rem; font-weight: 700; color: #252525;
  font-size: 30px; line-height: 1.2;
}
@media (min-width: 768px) {
  .about-story__intro h2,
  .about-mission__content h2 { font-size: 37px; line-height: 37px; }
}

.about-prose {
  display: flex; flex-direction: column; gap: 1.25rem;
  font-size: 16px; line-height: 27.2px; color: var(--bf-text-muted);
}
.about-prose p { margin: 0; }
.about-prose--light { color: #fff; }
.about-prose--light p { color: #fff; }
.about-prose--mission { line-height: 24.75px; }

.about-story__intro,
.about-story__block { padding: 0; }
@media (min-width: 768px) {
  .about-story__intro,
  .about-story__block { padding: 0 10px; }
}

.about-story__william {
  display: grid; align-items: center; gap: 2rem;
}
@media (min-width: 1024px) {
  .about-story__william {
    grid-template-columns: minmax(0, 1fr) 320px; gap: 2.5rem;
  }
}

.about-story__william-text { padding: 0; }
@media (min-width: 768px) {
  .about-story__william-text { padding: 0 10px; }
}

.about-story__portrait {
  margin: 0 auto; width: 100%; max-width: 320px;
}
.about-story__portrait img {
  display: block; width: 100%; height: auto; object-fit: cover;
  border-left: 6px solid var(--bf-primary);
  border-radius: 0 0 20px 20px;
}

.about-split {
  display: grid; overflow: hidden;
}
@media (min-width: 1024px) {
  .about-split { grid-template-columns: 1fr 1fr; }
}

.about-split__media {
  position: relative; aspect-ratio: 16 / 10; width: 100%;
}
@media (min-width: 1024px) {
  .about-split__media { aspect-ratio: auto; min-height: 340px; height: 100%; }
}

.about-split--reverse .about-split__media { order: 1; }
.about-split--reverse .about-split__panel { order: 2; }
@media (min-width: 1024px) {
  .about-split--reverse .about-split__media { order: 2; }
  .about-split--reverse .about-split__panel { order: 1; }
}

.about-split__media img {
  display: block; width: 100%; height: 100%; object-fit: cover;
}

.about-split__panel {
  display: flex; align-items: center;
  min-height: 220px; padding: 2.5rem 2rem;
  background-color: rgba(192, 20, 0, 0.95);
  background-position: center; background-repeat: no-repeat; background-size: cover;
}
@media (min-width: 1024px) {
  .about-split__panel { min-height: 340px; padding: 3rem; }
}

.about-split__panel--line1 {
  background-image:
    linear-gradient(0deg, rgba(192, 20, 0, 0.95), rgba(192, 20, 0, 0.95)),
    url('https://goship.com/about-us/line-1.png');
}
.about-split__panel--line2 {
  background-image:
    linear-gradient(0deg, rgba(192, 20, 0, 0.95), rgba(192, 20, 0, 0.95)),
    url('https://goship.com/about-us/line-2.png');
}

.about-mission {
  width: 100%; background: #f5f5f5;
  padding: 3rem 0;
}
@media (min-width: 768px) { .about-mission { padding: 4rem 0; } }

.about-mission__inner {
  display: grid; align-items: center; gap: 2rem;
}
@media (min-width: 1024px) {
  .about-mission__inner { grid-template-columns: 1fr 1fr; gap: 0; }
}

.about-mission__figure {
  margin: 0 auto; width: 100%; max-width: 563px;
}
@media (min-width: 1024px) {
  .about-mission__figure { padding-right: 10px; }
}
.about-mission__figure img {
  display: block; width: 100%; height: auto; object-fit: contain;
}

.about-mission__content {
  display: flex; flex-direction: column; gap: 1rem; text-align: left;
}
@media (min-width: 1024px) {
  .about-mission__content { padding: 0 10px; }
}

.about-mission__label {
  margin: 0; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.3em; color: var(--bf-primary);
}

.about-mission__content h2 { margin: 0; }

/* ===== About Team / Stories ===== */
.about-section-head {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  max-width: 42rem;
}
.about-section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  align-items: center;
  max-width: 46rem;
}
.about-section-head--row {
  max-width: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .about-section-head--row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.about-section-head__copy {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 42rem;
}
.about-section-head__label {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bf-primary);
}
.about-section-head__title {
  margin: 0;
  font-weight: 700;
  color: #252525;
  font-size: 30px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .about-section-head__title { font-size: 37px; line-height: 1.1; }
}
.about-section-head__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--bf-text-muted);
}

.about-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}
.about-carousel__track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  flex: 1;
  min-width: 0;
  padding: 0.25rem 0 0.75rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.about-carousel__track::-webkit-scrollbar { display: none; }
.about-carousel__slide {
  scroll-snap-align: start;
  flex-shrink: 0;
}
.about-carousel__nav {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.about-carousel__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  background: #fff;
  color: #252525;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.about-carousel__btn:hover {
  background: var(--bf-primary);
  border-color: var(--bf-primary);
  color: #fff;
}
.about-carousel__btn--side {
  display: none;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .about-carousel__btn--side { display: inline-flex; }
}
.about-carousel__dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.5rem;
}
.about-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}
.about-carousel__dot[aria-current="true"] {
  width: 22px;
  background: var(--bf-primary);
}

.about-team {
  background: #f7f8fa;
  padding: 3rem 0 3.5rem;
}
@media (min-width: 768px) {
  .about-team { padding: 4.5rem 0 5rem; }
}
.about-team .about-carousel__slide {
  flex: 0 0 min(280px, 82vw);
  width: min(280px, 82vw);
}
@media (min-width: 768px) {
  .about-team .about-carousel__slide {
    /* Exactly 2 per page */
    flex-basis: calc((100% - 1.25rem) / 2);
    width: calc((100% - 1.25rem) / 2);
  }
}
@media (min-width: 1024px) {
  .about-team .about-carousel__slide {
    /* Exactly 3 per page → 4 members = 2 pages */
    flex-basis: calc((100% - 2.5rem) / 3);
    width: calc((100% - 2.5rem) / 3);
  }
}
.about-team.about-carousel--static .about-carousel__nav,
.about-team.about-carousel--static .about-carousel__dots,
.about-stories.about-carousel--static .about-carousel__btn--side,
.about-stories.about-carousel--static .about-carousel__dots {
  display: none;
}
.about-team-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.about-team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(17, 20, 27, 0.1);
}
.about-team-card__photo {
  margin: 0;
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, #eceff3 0%, #d9dee6 100%);
  overflow: hidden;
}
.about-team-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-team-card__initial {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(192, 20, 0, 0.35);
  letter-spacing: -0.04em;
}
.about-team-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.15rem 1.15rem 1.35rem;
}
.about-team-card__name {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #252525;
}
.about-team-card__role {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bf-primary);
}
.about-team-card__bio {
  margin: 0.4rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--bf-text-muted);
}

.about-stories {
  background: #fff;
  padding: 3rem 0 4rem;
}
@media (min-width: 768px) {
  .about-stories { padding: 4.5rem 0 5.5rem; }
}
.about-stories .about-carousel__slide {
  flex: 0 0 min(320px, 88vw);
  width: min(320px, 88vw);
}
@media (min-width: 768px) {
  .about-stories .about-carousel__slide {
    /* Exactly 2 per page → 3 stories = 2 pages */
    flex-basis: calc((100% - 1.25rem) / 2);
    width: calc((100% - 1.25rem) / 2);
  }
}
.about-story-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 260px;
  height: 100%;
  padding: 1.75rem 1.5rem;
  background: #11141b;
  color: #fff;
  border-left: 4px solid var(--bf-primary);
  box-sizing: border-box;
}
.about-story-card__quote {
  margin: 0;
}
.about-story-card__quote p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}
.about-story-card__quote p::before {
  content: "“";
  color: var(--bf-primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 0.15rem;
}
.about-story-card__meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.about-story-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #2a303c;
}
.about-story-card__avatar--fallback {
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
  background: var(--bf-primary);
}
.about-story-card__who {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.about-story-card__who strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}
.about-story-card__who span {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ===== Home Features ===== */
.home-features { padding-top: 2rem; padding-bottom: 3rem; }
@media (min-width: 1024px) {
  .home-features { padding-top: 5rem; padding-bottom: 5rem; }
}

/* Mobile carousel */
.feature-carousel { margin-top: 1.5rem; }
@media (min-width: 1024px) { .feature-carousel { display: none; } }

.feature-carousel__track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 -1.25rem;
  padding: 0 1.25rem 0.5rem;
}
.feature-carousel__track::-webkit-scrollbar { display: none; }

.feature-card {
  flex: 0 0 100%;
  scroll-snap-align: center;
  background: #fff;
  padding: 1.5rem 0.75rem 0;
}
.feature-card__brand { height: 24px; width: auto; margin-bottom: 0.75rem; }
.feature-card__heading {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.25;
  margin: 0 0 1rem;
  color: var(--bf-text);
}
.feature-card__cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
}
.feature-card__cta .btn { padding: 0.5rem 1rem; font-size: 0.875rem; min-height: auto; }
.feature-card__btn--blue { background: #1a4ad0; }
.feature-card__btn--blue:hover { background: #153da8; }
.feature-card__btn--mint { background: #28ffb6; color: var(--bf-text); }
.feature-card__btn--mint:hover { background: #1fe0a0; color: var(--bf-text); }
.feature-card__btn--orange { background: #ff6531; }
.feature-card__btn--orange:hover { background: #e55525; }
.feature-card__shot {
  width: 100%;
  border-radius: var(--bf-radius-lg);
  margin-bottom: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.feature-card__quote {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.5rem;
}
.feature-card__quote img { flex-shrink: 0; width: 40px; height: 40px; }
.feature-card__quote p { margin: 0; font-size: 0.875rem; line-height: 1.5; color: rgba(0,0,0,0.85); }

.feature-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.375rem;
  padding: 1rem 0;
}
.feature-carousel__dots button {
  width: 6px; height: 6px; padding: 0; border: none; border-radius: 50%;
  background: rgba(0,0,0,0.25); cursor: pointer;
}
.feature-carousel__dots button[aria-current="true"] { background: var(--bf-primary); }

/* Desktop showcase */
.feature-showcase--desktop { display: none; margin-top: 2.5rem; }
@media (min-width: 1024px) {
  .feature-showcase--desktop {
    display: flex;
    align-items: flex-start;
    gap: 1.75rem;
  }
  .feature-showcase__media {
    flex: 1;
    min-width: 0;
    max-width: 996px;
    align-self: flex-start;
  }
  .feature-showcase__sidebar {
    width: 400px;
    flex-shrink: 0;
  }
}
.feature-showcase__region {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.feature-showcase__shape {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 1rem;
  opacity: 0;
  transform: scale(0.85);
  pointer-events: none;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.feature-showcase__shape.is-active {
  opacity: 1;
  pointer-events: auto;
}
.feature-showcase__shape[data-feature-shape="0"] {
  background-color: #c01400;
  clip-path: polygon(0% 32%, 2% 97%, 56% 100%, 56% 96%, 100% 96%, 100% 0%, 55.5% 2%, 56.5% 18%, 56.5% 18%, 56.5% 18%);
}
.feature-showcase__shape[data-feature-shape="1"] {
  background-color: #1a4ad0;
  clip-path: polygon(0% 1%, 100% 0%, 100% 33%, 55% 33%, 55% 100%, 3% 96%, 2% 32%, 0% 32%, 0% 32%, 0% 32%);
}
.feature-showcase__shape[data-feature-shape="2"] {
  background-color: #28ffb6;
  clip-path: polygon(0% 41%, 8% 41%, 10% 21%, 65% 13%, 67% 3%, 100% 0%, 98% 27%, 100% 27%, 100% 100%, 0% 98%);
}
.feature-showcase__shape[data-feature-shape="3"] {
  background-color: #ff6531;
  clip-path: polygon(0% 32%, 2% 97%, 56% 100%, 56% 96%, 100% 96%, 100% 0%, 55.5% 2%, 56.5% 18%, 56.5% 18%, 56.5% 18%);
}
.feature-showcase__viewport {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 522px;
  border-radius: 1rem;
  overflow: hidden;
}
.feature-showcase__panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template: "main" 1fr / 1fr;
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
  transition: opacity 0.35s ease-out, transform 0.35s ease-out;
}
.feature-showcase__panel.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.feature-showcase__panel[hidden] { display: none; }
.feature-showcase__panel-img {
  grid-area: main;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  border-radius: 1rem;
}
.feature-showcase__icon {
  grid-area: main;
  object-fit: contain;
  border-radius: 12px;
}
.feature-showcase__icon--tl {
  align-self: start;
  justify-self: start;
}
.feature-showcase__icon--br {
  align-self: end;
  justify-self: end;
  margin: 0 16px 16px 0;
}
.feature-showcase__icon--s40 { width: 40px; height: 40px; }
.feature-showcase__icon--s50 { width: 50px; height: 50px; }
.feature-showcase__icon--s55 { width: 55px; height: 55px; }
.feature-showcase__icon--s113 { width: 113px; height: 113px; }
.feature-showcase__icon--s117 { width: 117px; height: 117px; }
.feature-showcase__icon--s148 { width: 148px; height: 148px; }
.feature-showcase__icon--square { border-radius: 0; }
.feature-showcase__icon--flush { margin: 0; border-radius: 12px; }
.feature-showcase__sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 400px;
  flex-shrink: 0;
}
.feature-showcase__brand {
  width: 121px;
  height: 37px;
  object-fit: contain;
}
.feature-tabs {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}
.feature-tab-item {
  position: relative;
  width: 100%;
  height: 80px;
}
.feature-tab-item.is-active {
  height: 203px;
}
.feature-tab-item__bg,
.feature-tab-item__gradient {
  display: none;
  position: absolute;
  inset: 0;
  border-radius: 4px;
  pointer-events: none;
}
.feature-tab-item.is-active .feature-tab-item__bg {
  display: block;
  background: #fff;
}
.feature-tab-item.is-active .feature-tab-item__gradient {
  display: block;
  background: linear-gradient(
    rgba(248, 250, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.2) 35.096%,
    rgba(255, 152, 118, 0.12) 100%
  );
}
.feature-tab {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 80px;
  padding: 0 26px;
  border: none;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}
.feature-tab-item.is-active .feature-tab {
  background: transparent;
  box-shadow: none;
}
.feature-tab__main {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 700;
}
.feature-tab__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  filter: grayscale(1) brightness(0.55);
  transition: filter 0.2s;
}
.feature-tab-item.is-active .feature-tab__icon {
  filter: none;
}
.feature-tab__label {
  font-size: 1rem;
  line-height: normal;
  color: #8c8c8c;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s;
}
.feature-tab-item.is-active .feature-tab__label {
  color: var(--tab-accent, #c01400);
}
.feature-tab__arrow {
  width: 15px;
  height: 10px;
  flex-shrink: 0;
  object-fit: contain;
  transition: transform 0.2s ease;
}
.feature-tab-item.is-active .feature-tab__arrow {
  transform: rotate(180deg);
}
.feature-tab-quote {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 20;
  width: 100%;
  height: 203px;
  pointer-events: none;
}
.feature-tab-item.is-active .feature-tab-quote {
  display: block;
}
.feature-tab-quote__avatar {
  position: absolute;
  left: 31.69px;
  top: 62px;
  width: 50px;
  height: 50px;
  object-fit: cover;
}
.feature-tab-quote__bubble {
  position: absolute;
  left: 85.08px;
  top: 70px;
  width: 261.608px;
  height: 119px;
}
.feature-tab-quote__shape {
  position: absolute;
  left: 0;
  top: 3px;
  width: 261.608px;
  height: 113px;
  object-fit: contain;
}
.feature-tab-quote__mark {
  position: absolute;
  width: 16.996px;
  height: 15px;
  object-fit: contain;
}
.feature-tab-quote__mark--tl {
  left: 48.61px;
  top: 0;
}
.feature-tab-quote__mark--br {
  left: 224.61px;
  top: 104px;
  transform: rotate(180deg);
}
.feature-tab-quote__text {
  position: absolute;
  left: 33.61px;
  top: 14px;
  width: 210px;
  margin: 0;
  font-size: 0.875rem;
  line-height: normal;
  font-weight: 700;
  color: #262626;
}

/* ===== Home · Platforms ===== */
.home-platforms {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 220px;
  padding: 2.5rem 0.75rem;
  margin-bottom: 3.5rem;
  overflow: visible;
}
@media (min-width: 640px) {
  .home-platforms {
    margin-top: 5rem;
    margin-bottom: 5rem;
    padding: 4rem 1rem;
  }
}
@media (min-width: 1024px) {
  .home-platforms {
    margin-top: 0;
    margin-bottom: 3.5rem;
    height: 240px;
    padding: 5rem 0;
    background: #f3f7fa;
  }
}
.home-platforms__wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 1200px;
  height: 100%;
}
@media (min-width: 1024px) {
  .home-platforms__wrap {
    flex-direction: row;
    gap: 0.625rem;
    width: 1200px;
    height: auto;
  }
}
.home-platforms__content {
  order: 2;
  flex: 1;
  width: 100%;
  min-width: 0;
  padding-top: 100px;
  text-align: center;
}
@media (min-width: 1024px) {
  .home-platforms__content {
    order: 1;
    padding-top: 0;
    text-align: left;
  }
}
.home-platforms__text {
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
  line-height: normal;
  letter-spacing: -0.02em;
  color: #262626;
  text-transform: uppercase;
}
.home-platforms__text span {
  display: inline;
}
@media (min-width: 640px) {
  .home-platforms__text {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .home-platforms__text {
    font-size: 2rem;
    line-height: normal;
  }
}
.home-platforms__media {
  order: 1;
  position: absolute;
  top: -85%;
  width: 100%;
  max-width: 280px;
  height: 200px;
  aspect-ratio: 1;
  flex-shrink: 0;
  border-radius: 1rem;
  overflow: visible;
  transform: translateY(-0.5rem);
  pointer-events: none;
}
@media (min-width: 640px) {
  .home-platforms__media {
    max-width: 320px;
  }
}
@media (min-width: 1024px) {
  .home-platforms__media {
    order: 2;
    position: relative;
    top: auto;
    width: 400px;
    height: 400px;
    max-width: none;
    aspect-ratio: auto;
    border-radius: 0;
    overflow: hidden;
    transform: none;
    background: transparent;
    box-shadow: none;
  }
}
.home-platforms__media-inner {
  position: absolute;
  inset: 0;
  overflow: visible;
  border-radius: 1rem;
}
@media (min-width: 1024px) {
  .home-platforms__media-inner {
    border-radius: 0;
    overflow: hidden;
  }
}
.home-platforms__image-frame {
  position: absolute;
  left: 50%;
  top: 45%;
  width: 80%;
  height: 140%;
  transform: translate(-50%, -50%);
}
@media (min-width: 1024px) {
  .home-platforms__image-frame {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: none;
  }
}
.home-platforms__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  color: transparent;
}

/* ===== Home · Supports ===== */
.home-supports {
  width: 100%;
  background: #fff;
  padding-block: clamp(0px, 6%, 60px);
  overflow: hidden;
}
.home-supports__desktop {
  display: none;
}
.home-supports__mobile {
  display: block;
}
@media (min-width: 1024px) {
  .home-supports__desktop {
    display: block;
  }
  .home-supports__mobile {
    display: none;
  }
}
.home-supports__desktop-inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.home-supports__header {
  display: flex;
  flex-direction: column;
  gap: 17px;
  width: 100%;
  max-width: 1216px;
  margin: 0 auto;
  text-align: center;
  color: rgba(0, 0, 0, 0.85);
}
.home-supports__title {
  margin: 0;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 4rem;
  letter-spacing: -1.68px;
  text-transform: uppercase;
}
.home-supports__lead {
  margin: 0;
  font-size: 1.5rem;
  line-height: normal;
}
.home-supports__row {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: center;
  margin-top: 6rem;
}
.home-supports__cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  max-width: 470px;
  flex-shrink: 0;
}
.home-supports__card {
  display: flex;
  min-height: 120px;
  align-items: center;
  justify-content: center;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  background: #fff;
  padding: 1rem 9px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.home-supports__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.home-supports__card-inner {
  display: flex;
  width: 100%;
  max-width: 410px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.home-supports__card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1rem;
  letter-spacing: normal;
  text-transform: uppercase;
  color: #262626;
}
.home-supports__card p {
  margin: 0.75rem 0 0;
  max-width: 349px;
  font-size: 0.875rem;
  line-height: normal;
  color: #262626;
}
.home-supports__card img {
  flex-shrink: 0;
  color: transparent;
}
.home-supports__media {
  position: relative;
  width: 100%;
  max-width: 1000px;
  flex-shrink: 1;
}
.home-supports__media-frame {
  position: relative;
  margin-left: 4%;
  width: 100%;
  aspect-ratio: 1000 / 728;
}
.home-supports__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  color: transparent;
}
.home-supports__video {
  position: absolute;
  left: 15.6%;
  top: 23%;
  z-index: 3;
  width: 74.5%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  object-fit: cover;
}

/* Mobile */
.home-supports__mobile-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 673px;
  margin: 0 auto;
  padding: 0 0.75rem;
}
.home-supports__mobile-header {
  text-align: center;
}
.home-supports__mobile-title {
  margin: 0;
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: normal;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.85);
}
.home-supports__mobile-hero {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  margin-top: 14px;
}
.home-supports__mobile-deco {
  width: 100%;
  height: auto;
  margin-top: 10%;
  margin-bottom: 8%;
  color: transparent;
}
.home-supports__mobile-stage {
  position: absolute;
  right: -28%;
  top: 90px;
  width: 110%;
  height: 110%;
  overflow: hidden;
}
.home-supports__mobile-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  z-index: 1;
  color: transparent;
}
.home-supports__mobile-video-wrap {
  position: absolute;
  left: 4%;
  top: 12%;
  z-index: 3;
  width: 68%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 30px;
}
.home-supports__mobile-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 90%;
  object-fit: cover;
  border-radius: 30px;
}
.home-supports__mobile-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 4px;
}
.home-supports__mobile-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 6px;
  min-height: 100%;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  background: #fff;
  padding: 22px 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.home-supports__mobile-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.home-supports__mobile-card--wide {
  grid-column: span 2;
}
.home-supports__mobile-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4px;
}
.home-supports__mobile-card h3 {
  margin: 0;
  font-size: clamp(14px, 4.2vw, 18px);
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  color: #262626;
}
.home-supports__mobile-card img {
  flex-shrink: 0;
  color: transparent;
}
.home-supports__mobile-card p {
  margin: 0;
  width: 100%;
  font-size: 12px;
  line-height: normal;
  text-align: left;
  color: #262626;
}

/* ===== Home · Partners ===== */
@keyframes bf-partners-glow {
  from { box-shadow: 0 0 0 rgba(0, 0, 0, 0); }
  to { box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12); }
}
.home-partners {
  position: relative; overflow: hidden; background: #eee;
  padding-top: 3.75rem; padding-bottom: 3.75rem;
}
.home-partners__bg {
  position: absolute; inset: 0; pointer-events: none;
}
.home-partners__bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.2;
}
.home-partners__inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 4rem;
  max-width: 1796px;
}
.home-partners__header { width: 100%; }
.home-partners__subtitle {
  max-width: none; margin-bottom: 0; white-space: pre-line;
  color: rgba(0, 0, 0, 0.85);
}
@media (min-width: 1024px) {
  .home-partners__subtitle { font-size: 1.5rem; line-height: 1.33; }
}
.partners-carousel {
  display: flex; align-items: center; gap: 17px; width: 100%;
}
.partners-carousel__track {
  display: flex; gap: 28px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; flex: 1; min-width: 0; padding-bottom: 0.75rem;
  scrollbar-width: none;
}
.partners-carousel__track::-webkit-scrollbar { display: none; }
.partner-card {
  position: relative; flex: 0 0 373.745px; width: 373.745px; height: 328.715px;
  border-radius: 20px; overflow: hidden; scroll-snap-align: start; flex-shrink: 0;
  transition: box-shadow 0.3s ease-out;
}
.partner-card--active { animation: bf-partners-glow 650ms ease-out; }
.partner-card__surface {
  position: absolute; left: 0; top: 12.76px;
  width: 373.745px; height: 315.957px; border-radius: 20px; background: #fff;
}
.partner-card__ellipse {
  position: absolute; left: -30px; top: 20px;
  width: calc(100% + 30px); height: 100%; object-fit: contain; pointer-events: none;
}
.partner-card__photo-wrap {
  position: absolute; inset: 0; width: 373.745px; overflow-x: hidden; overflow-y: visible;
}
.partner-card__photo-frame {
  position: absolute; border-radius: 20px; overflow: hidden;
  width: var(--photo-w); height: var(--photo-h); left: var(--photo-x); top: var(--photo-y);
}
/* mask SVG omitted: identical rounded rects; file:// blocks external mask-image (CORS) */
.partner-card[data-mask="a"] .partner-card__photo-frame,
.partner-card[data-mask="b"] .partner-card__photo-frame,
.partner-card[data-mask="c"] .partner-card__photo-frame {
  border-radius: 20px;
}
.partner-card__photo {
  width: 100%; height: 100%; object-fit: cover;
}
.partner-card__text {
  position: absolute; left: 20px; top: 63px; width: 193px; z-index: 2;
}
.partner-card__name {
  margin: 0; font-size: 1.5rem; font-weight: 700; line-height: normal;
  color: rgba(0, 0, 0, 0.85);
}
.partner-card__title {
  margin: 5px 0 0; font-size: 0.875rem; line-height: normal;
  color: rgba(0, 0, 0, 0.85);
}
.partner-card__excerpt {
  margin: 100px 0 0; width: 128px; font-size: 0.875rem; line-height: normal;
  color: #a4a4a3;
  display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden;
}
.partner-card__overlay {
  position: absolute; bottom: 0; left: 0; right: 0; height: 186px;
  padding: 10px 12px; border-radius: 10px; z-index: 3;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s; pointer-events: none;
}
.partner-card[data-hover="red"] .partner-card__overlay {
  background: linear-gradient(90deg, #f98080 0%, #d95b5b 100%);
}
.partner-card[data-hover="purple"] .partner-card__overlay {
  background: linear-gradient(90deg, #d0b8ff 0%, #a78bfa 100%);
}
.partner-card__overlay p {
  margin: 0; font-size: 0.875rem; line-height: 1.35; color: #fff;
}
.partner-card:hover .partner-card__overlay {
  opacity: 1; transform: translateY(0);
}
.partners-carousel__nav {
  display: none; align-items: center; justify-content: center;
  width: 48px; height: 48px; flex-shrink: 0; padding: 0; border: none; border-radius: 50%;
  background: #fff; color: #262626;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
.partners-carousel__nav svg { display: block; flex-shrink: 0; }
.partners-carousel__nav:hover { background-color: var(--bf-primary); color: #fff; }
@media (min-width: 1024px) { .partners-carousel__nav { display: flex; } }
.partners-carousel__dots {
  display: flex; align-items: center; gap: 8px;
}
.partners-carousel__dot {
  width: 8px; height: 8px; padding: 0; border: none; border-radius: 999px;
  background: #d1d5dc; cursor: pointer; transition: width 0.2s, background-color 0.2s;
}
.partners-carousel__dot[aria-current="true"] {
  width: 32px; background: var(--bf-primary);
}
@media (max-width: 767px) {
  .partner-card {
    flex: 0 0 min(100%, 320px); width: min(100%, 320px); height: auto; min-height: 280px;
  }
  .partner-card__surface { width: 100%; height: calc(100% - 12px); }
  .partner-card__photo-wrap { width: 100%; }
}

/* ===== Home · Testimonials ===== */
.home-testimonials {
  width: 100%; overflow: hidden; background: #fff;
  padding-inline: 0.75rem;
}
@media (min-width: 40rem) {
  .home-testimonials { padding-inline: 1.5rem; }
}
@media (min-width: 64rem) {
  .home-testimonials { padding-inline: 2rem; }
}
.home-testimonials__header {
  width: 100%; max-width: 1200px; margin: 0 auto 2.5rem;
}
.home-testimonials__track-wrap {
  width: 100%; overflow: hidden;
}
.testimonial-track {
  display: flex; width: max-content; will-change: transform;
  animation: testimonial-scroll 50s linear infinite;
}
.testimonial-track__group {
  display: flex; gap: 1.5rem; flex-shrink: 0;
}
.testimonial-track__group::after {
  content: ""; flex-shrink: 0; width: 1.5rem;
}
@media (min-width: 40rem) {
  .testimonial-track__group { gap: 2.5rem; }
  .testimonial-track__group::after { width: 2.5rem; }
}
@keyframes testimonial-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .testimonial-track { animation: none; overflow-x: auto; width: 100%; scrollbar-width: none; }
  .testimonial-track::-webkit-scrollbar { display: none; }
}
[data-testimonials-carousel].is-paused .testimonial-track { animation-play-state: paused; }
.testimonial-card {
  flex: 0 0 240px; width: 240px;
  background: #fff; border: 1px solid #eee; border-radius: 8px; overflow: hidden;
}
@media (min-width: 40rem) {
  .testimonial-card { flex: 0 0 320px; width: 320px; }
}
@media (min-width: 64rem) {
  .testimonial-card { flex: 0 0 400px; width: 400px; }
}
.testimonial-card__cover { width: 100%; height: 180px; object-fit: cover; }
@media (min-width: 40rem) {
  .testimonial-card__cover { height: 260px; }
}
@media (min-width: 64rem) {
  .testimonial-card__cover { height: 300px; }
}
.testimonial-card blockquote { margin: 0; padding: 0.625rem 0.625rem 0.5rem; font-size: 0.875rem; }
@media (min-width: 40rem) {
  .testimonial-card blockquote { padding: 1rem 1rem 0.5rem; }
}
.testimonial-card blockquote p {
  margin: 0; color: var(--bf-text); line-height: 1.625;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.testimonial-card footer {
  display: flex; align-items: center; gap: 0.5rem; padding: 0 0.625rem 0.75rem;
  font-size: 0.875rem;
}
@media (min-width: 40rem) {
  .testimonial-card footer { gap: 1rem; padding: 0 1rem 1rem; }
}
.testimonial-card footer strong { display: block; }
.testimonial-card footer span { color: var(--bf-text-muted); }

/* ===== Home · Logistics ===== */
.home-logistics { overflow: hidden; }
.home-logistics__header {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 2rem;
}
.home-logistics__header-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  max-width: 1200px;
  padding: 0 30px;
}
@media (min-width: 640px) {
  .home-logistics__header-inner { gap: 1rem; }
}
@media (min-width: 1024px) {
  .home-logistics__header-inner { align-items: center; }
}
.home-logistics__heading {
  width: 100%;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.85);
  text-align: left;
}
@media (min-width: 640px) {
  .home-logistics__heading { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .home-logistics__heading {
    font-size: 3.5rem;
    line-height: 4rem;
    letter-spacing: -1.68px;
    text-align: center;
  }
}
.home-logistics__title-line { margin: 0; }
.home-logistics__lead-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 0.25rem 0.5rem;
}
@media (min-width: 640px) {
  .home-logistics__lead-wrap { padding: 0.25rem 0.75rem; }
}
@media (min-width: 1024px) {
  .home-logistics__lead-wrap { justify-content: center; }
}
.home-logistics__lead {
  margin: 0;
  font-size: 13px;
  line-height: normal;
  color: #262626;
  text-align: left;
}
@media (min-width: 640px) {
  .home-logistics__lead { font-size: 1.25rem; }
}
@media (min-width: 1024px) {
  .home-logistics__lead {
    font-size: 1.5rem;
    text-align: center;
  }
}
.home-logistics__stats {
  display: none;
}
@media (min-width: 1024px) {
  .home-logistics__stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
    width: 100%;
    padding: 3rem;
  }
}
.home-logistics__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(0, 0, 0, 0.85);
}
.home-logistics__stat-value {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #c01400;
}
.home-logistics__stat-num {
  font-size: 3.5rem;
  line-height: 1;
}
.home-logistics__stat-suffix {
  font-size: 3rem;
  line-height: 1;
}
.home-logistics__stat-label {
  margin: 0.5rem 0 0;
  font-size: 1.125rem;
  line-height: normal;
  color: rgba(0, 0, 0, 0.85);
  opacity: 0.9;
}
.logistics-gallery {
  width: 100%; display: flex; flex-direction: column; gap: 1rem;
}
@media (min-width: 40rem) {
  .logistics-gallery { gap: 1.5rem; }
}
.logistics-marquee {
  width: 100%; overflow: hidden;
}
.logistics-marquee--bottom {
  background: linear-gradient(to bottom, #fff 0%, #fff 50%, #ffe9e9 100%);
}
@media (min-width: 64rem) {
  .logistics-marquee--bottom { background: #fff; }
}
.logistics-marquee__track {
  display: flex; width: max-content; will-change: transform;
  animation: logistics-scroll-left 45s linear infinite;
}
.logistics-marquee--right .logistics-marquee__track {
  animation-name: logistics-scroll-right;
}
.logistics-marquee__group {
  display: flex; align-items: center; gap: 1rem; flex-shrink: 0;
}
.logistics-marquee__group::after {
  content: ""; flex-shrink: 0; width: 1rem;
}
@media (min-width: 40rem) {
  .logistics-marquee__group { gap: 1.5rem; }
  .logistics-marquee__group::after { width: 1.5rem; }
}
.logistics-marquee__item {
  flex-shrink: 0; width: 240px; height: 150px;
  border-radius: 8px; overflow: hidden;
}
@media (min-width: 40rem) {
  .logistics-marquee__item { width: 280px; height: 180px; }
}
@media (min-width: 64rem) {
  .logistics-marquee__item { width: 320px; height: 200px; }
}
.logistics-marquee__item img {
  width: 100%; height: 100%; object-fit: cover;
}
@keyframes logistics-scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes logistics-scroll-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .logistics-marquee__track { animation: none; }
}
.logistics-gallery.is-paused .logistics-marquee__track { animation-play-state: paused; }

/* ===== Home · Hiring ===== */
.home-hiring {
  background: #fff; padding-inline: 0.75rem;
}
@media (min-width: 40rem) {
  .home-hiring { padding-inline: 1.5rem; }
}
@media (min-width: 64rem) {
  .home-hiring { padding-inline: 2rem; }
}
.home-hiring__wrap {
  width: 100%; max-width: 640px; margin: 0 auto;
}
@media (min-width: 48rem) {
  .home-hiring__wrap { max-width: 1200px; }
}
.home-hiring__card {
  position: relative; min-height: 260px; overflow: hidden;
  border-radius: 4px; padding: 2.5rem 1.25rem;
}
@media (min-width: 40rem) {
  .home-hiring__card { padding: 3.125rem 3.4375rem; }
}
.home-hiring__bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.home-hiring__bg-img {
  position: absolute; right: 0; top: 0; width: 100%; height: 100%;
  max-width: none; object-fit: cover; object-position: top right;
}
.home-hiring__bg-img--desktop { display: none; }
@media (min-width: 48rem) {
  .home-hiring__bg-img--mobile { display: none; }
  .home-hiring__bg-img--desktop { display: block; }
}
.home-hiring__bg-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.18) 100%);
}
.home-hiring__inner {
  position: relative; z-index: 1; color: #fff; text-align: center;
}
.home-hiring__title {
  margin: 0; font-size: clamp(1.8rem, 4.2vw, 3.5rem); font-weight: 700;
  text-transform: uppercase; line-height: 1; letter-spacing: -0.03em; color: #fff;
}
.home-hiring__lead {
  margin: 0.8rem 0 0; font-size: 0.875rem; font-style: italic; line-height: normal;
}
@media (min-width: 40rem) {
  .home-hiring__lead { font-size: 1rem; }
}
.home-hiring__email {
  color: #fff; font-weight: 900; font-style: normal; text-decoration: none;
}
.home-hiring__email:hover { text-decoration: underline; }
.home-hiring__roles {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem;
  list-style: none; padding: 0; margin: 3rem auto 0; max-width: 524px;
}
@media (min-width: 48rem) {
  .home-hiring__roles {
    margin-top: 2.125rem; max-width: 1090px;
    grid-template-columns: repeat(4, 1fr); gap: 1.875rem;
  }
}
.home-hiring__roles li {
  display: flex; align-items: center; justify-content: center;
  min-height: 45px; padding: 0 1.5rem; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.75rem; font-weight: 600; line-height: 1.5;
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.7), inset 0 0 32px rgba(187, 155, 255, 0.4);
  backdrop-filter: blur(6px) saturate(140%);
}
@media (min-width: 40rem) {
  .home-hiring__roles li { font-size: 1rem; }
}

/* ===== Home · Services expander ===== */
.home-services {
  background: #fff; overflow: hidden;
  padding: 2rem 0.75rem;
}
@media (min-width: 40rem) {
  .home-services { padding: 0; margin-top: 2.5rem; }
}
.services-expander {
  display: flex; flex-direction: column; align-items: stretch;
  width: 100%; min-height: 320px; overflow: hidden; gap: 0;
}
@media (min-width: 40rem) {
  .services-expander {
    flex-direction: row; min-height: 400px; height: 516px;
  }
}
.service-panel {
  position: relative; flex: 1 1 0; min-width: 0; min-height: 200px;
  overflow: hidden; cursor: pointer;
  transition: flex 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              max-width 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}
@media (min-width: 40rem) {
  .service-panel {
    min-height: 0; height: 100%; min-width: 120px; max-width: 240px;
  }
}
.service-panel--active {
  flex: 2 1 0; z-index: 10;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
@media (min-width: 40rem) {
  .service-panel--active { max-width: 90%; }
}
.service-panel__media {
  position: absolute; inset: 0; pointer-events: none;
}
.service-panel__media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1);
  transition: transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-panel--active .service-panel__media img { transform: scale(1.05); }
.service-panel__overlay {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: background-color 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-panel--active .service-panel__overlay { background: rgba(0, 0, 0, 0.3); }
.service-panel__content {
  position: relative; z-index: 1; display: flex; flex-direction: column;
  height: 100%; padding: 1rem; text-align: left;
}
@media (min-width: 40rem) {
  .service-panel__content { padding: 2rem; }
}
.service-panel__title {
  margin: 0; color: #fff; font-weight: 700; text-transform: uppercase;
  font-size: 1.25rem; line-height: 1.4;
  transition: font-size 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              line-height 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-panel--active .service-panel__title { line-height: 1.5; }
@media (min-width: 40rem) {
  .service-panel:not(.service-panel--active) .service-panel__title {
    writing-mode: vertical-rl; transform: rotate(180deg);
    align-self: flex-start; max-height: calc(100% - 2rem);
    white-space: nowrap; line-height: 1.3;
  }
}
.service-panel__body {
  margin-top: 1rem; overflow: hidden;
  max-height: 0; opacity: 0; transform: translateY(-8px);
  transition: max-height 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-panel--active .service-panel__body {
  max-height: 1200px; opacity: 1; transform: translateY(0);
}
.service-panel__body p {
  margin: 0 0 0.75rem; color: #fff; font-size: 1rem; line-height: 1.375; opacity: 0.9;
}
.service-panel__body p:last-child { margin-bottom: 0; }

/* ===== Home · Bottom CTA ===== */
.home-cta {
  background-size: cover; background-position: center; color: #fff;
  text-align: center; padding: 4rem 1.25rem; position: relative;
}
@media (max-width: 767px) {
  .home-cta { background-image: url('../image/home/cta-bg-mobile.jpg') !important; }
}
.home-cta::before {
  content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.45);
}
.home-cta__inner { position: relative; z-index: 1; }
.home-cta h2 {
  margin: 0 0 0.5rem; color: #fff; font-size: clamp(1.75rem, 4vw, 3rem);
  text-transform: uppercase; letter-spacing: -0.02em;
}
.home-cta__lead { margin: 0 0 0.5rem; font-size: 1.125rem; font-weight: 600; }
.home-cta__sub { margin: 0 0 1.5rem; opacity: 0.9; max-width: 560px; margin-left: auto; margin-right: auto; }
.home-cta__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem; text-align: center;
}
.stat-item strong {
  display: block; font-size: 2rem; color: var(--bf-primary);
}
.stat-item span { font-size: 0.875rem; color: var(--bf-text-muted); }

/* ===== FAQ ===== */
.home-faq {
  width: 100%; background: #fff; overflow: hidden;
  padding: 2.5rem 0.75rem;
}
@media (min-width: 40rem) {
  .home-faq { padding: 4rem 1.5rem; }
}
@media (min-width: 64rem) {
  .home-faq { padding: 4.375rem 2rem; }
}
.home-faq__inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 2rem; width: 100%; max-width: 1200px; margin: 0 auto;
}
@media (min-width: 40rem) {
  .home-faq__inner { gap: 4rem; }
}
@media (min-width: 64rem) {
  .home-faq__inner { gap: 6rem; }
}
.home-faq__title {
  width: 100%; margin-bottom: 0;
  color: rgba(0, 0, 0, 0.85);
}
@media (min-width: 64rem) {
  .home-faq__title {
    font-size: 3.5rem; letter-spacing: -0.03em; line-height: normal;
  }
}
.home-faq .faq-list--two-col {
  display: flex; flex-direction: column; gap: 1.5rem;
  width: 100%; max-width: none; margin: 0;
}
@media (min-width: 64rem) {
  .home-faq .faq-list--two-col { flex-direction: row; gap: 2.5rem; }
}
.home-faq .faq-list__col {
  flex: 1; display: flex; flex-direction: column; gap: 1rem; min-width: 0;
}
@media (min-width: 40rem) {
  .home-faq .faq-list__col { gap: 1.25rem; }
}
.home-faq .faq-item {
  border-radius: 8px; background: #fff; overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease;
}
.home-faq .faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.home-faq .faq-item__toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 0.625rem 0.75rem; border: none; background: #fff;
  cursor: pointer; text-align: left;
}
@media (min-width: 40rem) {
  .home-faq .faq-item__toggle { padding: 0.75rem 1rem; }
}
.home-faq .faq-item__question {
  flex: 1; margin: 0; padding-right: 0.5rem;
  font-size: 0.875rem; line-height: normal; font-weight: 400;
  color: rgba(0, 0, 0, 0.85);
}
@media (min-width: 40rem) {
  .home-faq .faq-item__question { font-size: 1rem; }
}
.home-faq .faq-item__icon {
  display: flex; flex-shrink: 0; width: 20px; height: 20px;
  color: #1a1a1a; transition: transform 0.3s ease;
}
.home-faq .faq-item.is-open .faq-item__icon { transform: rotate(90deg); }
.home-faq .faq-item__panel {
  display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease;
}
.home-faq .faq-item.is-open .faq-item__panel { grid-template-rows: 1fr; }
.home-faq .faq-item__answer {
  display: block; overflow: hidden; padding: 0 1rem 0; color: rgba(0, 0, 0, 0.65);
  font-size: 0.875rem; line-height: 1.625;
}
.home-faq .faq-item.is-open .faq-item__answer { padding: 0 1rem 1rem; }
.home-faq .faq-item__answer p { margin: 0 0 0.5rem; }
.home-faq .faq-item__answer p:last-child { margin-bottom: 0; }

/* Generic FAQ fallback (other pages) */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item button {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.25rem 0; font-size: 1rem; font-weight: 600; cursor: pointer;
}
:not(.home-faq):not(.faq-page) .faq-item__answer { display: none; padding-bottom: 1.25rem; color: var(--bf-text-muted); }
:not(.home-faq):not(.faq-page) .faq-item.is-open .faq-item__answer { display: block; }

/* ===== FAQ Page ===== */
.faq-page {
  width: 100%; background: #fff;
  padding: 3rem 1.25rem;
}
@media (min-width: 768px) { .faq-page { padding: 4rem 10px; } }

.faq-page__inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 2rem;
}

.faq-list--page {
  width: 100%; max-width: 1120px; margin: 0;
  display: flex; flex-direction: column; gap: 1rem;
}

.faq-page .faq-item {
  overflow: hidden; border: 1px solid #ebebeb; border-radius: 0;
  background: #fff; transition: box-shadow 0.2s ease;
}
.faq-page .faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.faq-page .faq-item__toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 0.625rem 0.75rem; border: none; background: #fff;
  cursor: pointer; text-align: left;
}
@media (min-width: 640px) {
  .faq-page .faq-item__toggle { padding: 0.75rem 1rem; }
}

.faq-page .faq-item__question {
  flex: 1; margin: 0; padding-right: 0.5rem;
  font-size: 15px; font-weight: 600; line-height: 1.7; color: #252525;
}
@media (min-width: 768px) {
  .faq-page .faq-item__question { font-size: 16px; }
}

.faq-page .faq-item__icon {
  display: flex; flex-shrink: 0; width: 20px; height: 20px;
  margin-left: 1rem; color: #1a1a1a; transition: transform 0.3s ease;
}
.faq-page .faq-item.is-open .faq-item__icon { transform: rotate(90deg); }

.faq-page .faq-item__panel {
  display: grid; grid-template-rows: 0fr; overflow: hidden;
  transition: grid-template-rows 0.3s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 0;
}
.faq-page .faq-item.is-open .faq-item__panel {
  grid-template-rows: 1fr; opacity: 1;
}

.faq-page .faq-item__answer {
  min-height: 0; overflow: hidden;
  padding: 0 1rem 0; font-size: 15px; line-height: 1.75; color: #6b6b6b;
}
@media (min-width: 768px) {
  .faq-page .faq-item__answer { padding: 0 1.25rem 0; }
}
.faq-page .faq-item.is-open .faq-item__answer {
  padding: 0.25rem 1rem 1.25rem;
}
@media (min-width: 768px) {
  .faq-page .faq-item.is-open .faq-item__answer { padding: 0.25rem 1.25rem 1.25rem; }
}
.faq-page .faq-item__answer p { margin: 0 0 0.5rem; }
.faq-page .faq-item__answer p:last-child { margin-bottom: 0; }

.faq-page__cta {
  width: 100%; padding: 1.5rem 1.25rem 4rem; background: #fff;
}
@media (min-width: 768px) { .faq-page__cta { padding: 1.5rem 1.25rem 5rem; } }

.faq-page__cta-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
  text-align: center;
}

.faq-page__cta h2 {
  margin: 0; font-size: 32px; font-weight: 700; line-height: 1.2; color: #252525;
}
@media (min-width: 768px) { .faq-page__cta h2 { font-size: 40px; } }

.faq-page__cta-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0.75rem 2rem; border-radius: 6px;
  background: var(--bf-primary); color: #fff;
  font-size: 15px; font-weight: 600; text-decoration: none;
  transition: background 0.2s;
}
.faq-page__cta-btn:hover { background: #a71100; color: #fff; text-decoration: none; }

/* ===== Partners / Reviews ===== */
.review-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.review-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: var(--bf-shadow);
}
.review-card img { width: 100%; height: 200px; object-fit: cover; }
.review-card__body { padding: 1.25rem; }
.review-card cite { display: block; margin-top: 0.75rem; font-style: normal; font-weight: 700; }

/* ===== Forms ===== */
.form { display: grid; gap: 1rem; }
.form-row { display: grid; gap: 1rem; }
@media (min-width: 768px) { .form-row--2 { grid-template-columns: 1fr 1fr; } }
.form label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 0.35rem; }
.form input, .form textarea, .form select {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--bf-border);
  border-radius: var(--bf-radius); font: inherit;
}
.form textarea { min-height: 120px; resize: vertical; }
.checkbox-group { display: grid; gap: 0.5rem; }
.checkbox-group label { font-weight: 400; display: flex; gap: 0.5rem; align-items: center; }

/* ===== Blog / Article ===== */
/* ===== Blog ===== */
.blog-search {
  width: 100%; padding: 2rem 1rem;
}
@media (min-width: 768px) {
  .blog-search { padding: 2.5rem 1.25rem; }
}

.blog-search__inner {
  max-width: 1188px; margin: 0 auto;
}

.blog-search__form {
  display: flex; align-items: stretch; min-height: 57px;
  overflow: hidden; border-radius: 8px;
  background: #fff; border: 1px solid var(--bf-border);
}

.blog-search__form input[type="search"] {
  flex: 1; min-width: 0; padding: 0 19px; border: none; outline: none;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 15px; color: var(--bf-text-muted); background: #fff;
}
.blog-search__form input[type="search"]::placeholder {
  color: var(--bf-text-muted);
}

.blog-search__form button {
  min-width: 57px; padding: 0 19px; border: none;
  background: var(--bf-primary); color: #fff;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px; font-weight: 400; line-height: 1;
  cursor: pointer; transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.blog-search__form button:hover {
  background: var(--bf-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(192, 20, 0, 0.24);
}

.blog-list { padding-top: 0; }
.blog-list .container { padding-left: 0; padding-right: 0; }

.blog-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.blog-card.is-hidden { display: none; }
.blog-card {
  border: 1px solid var(--bf-border); border-radius: var(--bf-radius-lg);
  overflow: hidden; background: #fff; transition: box-shadow 0.2s;
}
.blog-card:hover { box-shadow: var(--bf-shadow); text-decoration: none; }
.blog-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.blog-card__body { padding: 1.25rem; }
.blog-card h3 { font-size: 1rem; margin: 0 0 0.5rem; color: var(--bf-text); }
.blog-card time { font-size: 0.75rem; color: var(--bf-text-muted); }

.article-layout { display: grid; gap: 2rem; padding: 2rem 0 4rem; }
@media (min-width: 992px) {
  .article-layout { grid-template-columns: 240px 1fr; align-items: start; }
}
.article-toc {
  position: sticky; top: 100px; background: var(--bf-bg-soft);
  padding: 1.25rem; border-radius: var(--bf-radius); font-size: 0.875rem;
}
.article-toc ol { margin: 0; padding-left: 1.25rem; }
.article-toc a { color: var(--bf-text); }
.article-body h2 { margin: 2rem 0 1rem; font-size: 1.5rem; }
.article-body h3 { margin: 1.5rem 0 0.75rem; font-size: 1.125rem; }
.article-body li { margin: 0 0 0.5rem 1.25rem; list-style: disc; }
.article-meta { color: var(--bf-text-muted); font-size: 0.875rem; margin-bottom: 2rem; }
.article-hero img { width: 100%; border-radius: var(--bf-radius-lg); margin-bottom: 2rem; }

/* ===== Article page (rich blog post) ===== */
.article-page {
  background: #fff;
  color: var(--bf-text);
}
.article-page__progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: 4px;
  background: #e5e7eb;
}
.article-page__progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(to right, #dc2626, #b91c1c);
  transition: width 0.15s ease;
}
.article-page__share {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: none;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 1024px) {
  .article-page__share { display: flex; }
}
.article-page__share a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  transition: transform 0.2s, opacity 0.2s;
}
.article-page__share a:hover { transform: scale(1.08); text-decoration: none; }
.article-page__share-wrap {
  background: #fff;
  border-radius: 999px;
  padding: 6px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
.article-page__share--fb { background: #3b5998; }
.article-page__share--fb:hover { background: #2d4373; }
.article-page__share--x { background: #1da1f2; }
.article-page__share--x:hover { background: #0c85d0; }
.article-page__share--in { background: #0077b5; }
.article-page__share--in:hover { background: #005885; }
.article-page__shell {
  max-width: 80rem;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.article-page__grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .article-page__grid { grid-template-columns: 300px 1fr; align-items: start; }
}
.article-page__toc {
  display: none;
}
@media (min-width: 1024px) {
  .article-page__toc { display: block; }
}
.article-page__toc-inner {
  position: sticky;
  top: 6rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  overflow: hidden;
}
.article-page__toc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: linear-gradient(to right, #f9fafb, #fff);
  border-bottom: 1px solid #f3f4f6;
  font-weight: 600;
  color: #1f2937;
  gap: 0.5rem;
}
.article-page__toc-head svg { color: #dc2626; flex-shrink: 0; }
.article-page__toc nav { padding: 1rem; }
.article-page__toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.article-page__toc a {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  color: #374151;
  font-size: 0.875rem;
  line-height: 1.5;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.article-page__toc a:hover,
.article-page__toc a.is-active {
  background: #fef2f2;
  color: #dc2626;
  text-decoration: none;
}
.article-page__toc-num {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f3f4f6;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4b5563;
}
.article-page__toc a:hover .article-page__toc-num,
.article-page__toc a.is-active .article-page__toc-num {
  background: #fee2e2;
  color: #dc2626;
}
.article-page__featured {
  margin-bottom: 3rem;
}
.article-page__hero {
  position: relative;
  height: 400px;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
@media (min-width: 768px) {
  .article-page__hero { height: 500px; }
}
.article-page__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-page__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}
.article-page__hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  color: #fff;
}
@media (min-width: 768px) {
  .article-page__hero-content { padding: 3rem; }
}
.article-page__badge {
  display: inline-block;
  background: #dc2626;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.375rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(220,38,38,0.4);
}
.article-page__hero h1 {
  color: #fff;
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.article-page__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: #e5e7eb;
}
.article-page__meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.article-page__summary {
  background: linear-gradient(to bottom right, #eff6ff, #eef2ff);
  border-radius: 0.75rem;
  padding: 2rem;
  border-left: 4px solid #3b82f6;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.article-page__summary h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 1rem;
}
.article-page__summary-bar {
  width: 6px;
  height: 1.5rem;
  background: #3b82f6;
  border-radius: 999px;
}
.article-page__summary p {
  margin: 0;
  color: #374151;
  line-height: 1.7;
}
.article-page__section { margin-bottom: 3rem; }
.article-page__chapter-head { margin-bottom: 2rem; scroll-margin-top: 6rem; }
.article-page__chapter-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.article-page__chapter-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: linear-gradient(to bottom right, #ef4444, #dc2626);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 12px rgba(220,38,38,0.35);
}
.article-page__chapter-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #dc2626;
  margin: 0 0 0.25rem;
  letter-spacing: 0.02em;
}
.article-page__chapter-title h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
}
.article-page__chapter-rule {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(to right, #dc2626, #f87171, transparent);
}
.article-page__prose {
  color: #374151;
  line-height: 1.75;
}
.article-page__prose h3 {
  margin: 2rem 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
}
.article-page__prose p { margin: 0 0 1rem; }
.article-page__prose ul {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
}
.article-page__prose li { margin-bottom: 0.5rem; }
.article-page__prose strong { font-weight: 600; }
.article-page__prose a { color: #dc2626; text-decoration: underline; }
.article-page__prose img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1.5rem auto;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.article-page__related {
  padding: 4rem 1.5rem;
  background: linear-gradient(to bottom right, #f9fafb, #fff);
}
.article-page__related-inner {
  max-width: 80rem;
  margin: 0 auto;
}
.article-page__related h2 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 2rem;
}
.article-page__related h2 svg { color: #dc2626; }
.article-page__related-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .article-page__related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .article-page__related-grid { grid-template-columns: repeat(3, 1fr); }
}
.article-page__card {
  background: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s, border-color 0.3s;
}
.article-page__card > a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.article-page__card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-color: #fecaca;
}
.article-page__card-img {
  position: relative;
  height: 12rem;
  overflow: hidden;
  background: #f3f4f6;
}
.article-page__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.article-page__card:hover .article-page__card-img img { transform: scale(1.05); }
.article-page__card-body { padding: 1.25rem; }
.article-page__card h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-page__card:hover h3 { color: #dc2626; }
.article-page__card p {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-page__card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.article-page__card time { font-size: 0.75rem; color: #6b7280; }
.article-page__card-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #dc2626;
  text-decoration: none;
}
.article-page__card-link:hover { text-decoration: underline; }
.article-page__comments {
  padding: 3rem 1.5rem;
  background: #fff;
}
.article-page__comments-inner {
  max-width: 56rem;
  margin: 0 auto;
}
.article-page__comments-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}
.article-page__comments-head h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
}
.article-page__comments-head svg { color: #dc2626; font-size: 2rem; }
.article-page__comment-form-wrap {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}
.article-page__comment-form-wrap h3 {
  margin: 0 0 1rem;
  font-weight: 600;
  color: #111827;
}
.article-page__comment-form .form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .article-page__comment-form .form-row { grid-template-columns: repeat(3, 1fr); }
}
.article-page__comment-form label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}
.article-page__comment-form input,
.article-page__comment-form textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  padding: 0.625rem 1rem;
  font: inherit;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.article-page__comment-form input:focus,
.article-page__comment-form textarea:focus {
  outline: none;
  border-color: transparent;
  box-shadow: 0 0 0 2px #dc2626;
}
.article-page__comment-form textarea { resize: vertical; min-height: 120px; }
.article-page__comment-form .required { color: #dc2626; }
.article-page__comment-submit {
  display: flex;
  justify-content: flex-end;
}
.article-page__comment-submit button {
  background: #dc2626;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 2rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: background 0.2s;
}
.article-page__comment-submit button:hover { background: #b91c1c; }

/* ===== Events ===== */
.events-hero {
  position: relative; width: 100%; overflow: hidden;
  height: min(133.333vw, 500px); color: #fff;
}
@media (min-width: 768px) { .events-hero { height: 775px; } }

.events-hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  max-width: none; object-fit: cover;
}
.events-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(38.721deg, rgba(192, 20, 0, 0.85) 25.392%, rgba(192, 20, 0, 0) 40.673%);
}
@media (min-width: 768px) {
  .events-hero__overlay {
    background: linear-gradient(to right, rgba(220, 22, 37, 0.68), rgba(220, 22, 37, 0.16), transparent);
  }
}

.events-hero__content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end;
  height: 100%; max-width: 1920px; margin: 0 auto;
  padding: 0 clamp(12px, 3.2vw, 24px) clamp(20px, 5.333vw, 40px);
}
@media (min-width: 768px) {
  .events-hero__content { justify-content: center; padding: 0 4rem; }
}
@media (min-width: 1280px) { .events-hero__content { padding: 0 128px; } }

.events-hero__content h1 {
  margin: 0; max-width: min(82.64vw, 620px);
  font-size: clamp(32px, 8.533vw, 64px); font-weight: 700;
  text-transform: uppercase; line-height: 0.93;
  letter-spacing: clamp(1.6px, 0.427vw, 3.2px);
}
@media (min-width: 768px) {
  .events-hero__content h1 { max-width: 754px; font-size: 82px; letter-spacing: 4px; }
}
@media (min-width: 1280px) {
  .events-hero__content h1 { font-size: 100px; letter-spacing: 5px; }
}
.events-hero__accent { color: #611919; }

.events-hero__line {
  margin-top: clamp(8.5px, 2.267vw, 17px);
  width: clamp(30px, 8.05vw, 60px);
  border-top: 2px solid #fff;
}
@media (min-width: 768px) {
  .events-hero__line { margin-top: 2rem; width: 60px; border-top-width: 4px; }
}

.events-hero__tagline {
  margin: clamp(8.5px, 2.267vw, 17px) 0 0;
  font-size: 3.467vw; line-height: 0.93; letter-spacing: 0.173vw;
}
@media (min-width: 768px) {
  .events-hero__tagline { margin-top: 17px; font-size: 25px; letter-spacing: 1.25px; }
}

@keyframes bf-events-arrow-pulse {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(3px); }
}

.events-hero__cta {
  display: inline-flex; align-items: center; justify-content: center;
  gap: clamp(4px, 1.2vw, 9px);
  margin-top: clamp(12.5px, 3.333vw, 25px);
  width: 41.6vw; max-width: 312px;
  padding: clamp(8px, 2.133vw, 16px) clamp(8.5px, 2.267vw, 17px);
  border: none; border-radius: clamp(2px, 0.533vw, 4px);
  background: #fff; color: #dc1625;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: clamp(10px, 2.667vw, 20px); font-weight: 700; text-transform: uppercase;
  line-height: 0.93; letter-spacing: clamp(0.5px, 0.133vw, 1px);
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: background 0.2s ease-out, box-shadow 0.2s ease-out, transform 0.2s ease-out, color 0.2s;
}
.events-hero__cta:hover,
.events-hero__cta:focus-visible {
  background: #fff5f4; color: #dc1625;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}
@media (min-width: 768px) {
  .events-hero__cta {
    margin-top: 2.5rem; width: fit-content;
    padding: 16px 17px; border-radius: 4px;
    font-size: 20px; letter-spacing: 1px; gap: 9px;
  }
}

.events-hero__cta-text { white-space: nowrap; }

.events-hero__cta-icon {
  flex-shrink: 0;
  width: clamp(16px, 2.667vw, 20px);
  height: clamp(16px, 2.667vw, 20px);
  max-width: 20px; max-height: 20px;
  animation: bf-events-arrow-pulse 1.8s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .events-hero__cta-icon { animation: none; }
}

.events-calendar {
  scroll-margin-top: 5rem; background: #fff;
}
@media (min-width: 768px) { .events-calendar { scroll-margin-top: 6rem; } }

.events-calendar__inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 0 2.133vw;
}
@media (min-width: 768px) {
  .events-calendar__inner { padding: 3rem; display: flex; flex-direction: column; gap: 2.5rem; }
}

.events-calendar__head { display: flex; flex-direction: column; gap: 0; }
@media (min-width: 768px) { .events-calendar__head { gap: 1.25rem; } }

.events-calendar__head-row {
  position: relative;
  display: flex; align-items: flex-start; justify-content: flex-end;
  height: 10.8vw; max-height: 81px;
  padding: 1.067vw 2.667vw 0;
}
@media (min-width: 768px) {
  .events-calendar__head-row {
    height: auto; max-height: none; justify-content: space-between;
    gap: 1.25rem; padding: 0;
  }
}

.events-calendar__title {
  display: none; margin: 0; font-weight: 700; text-transform: uppercase;
  color: #000; letter-spacing: -0.25px;
  font-size: clamp(15px, 3.733vw, 28px);
  line-height: clamp(21px, 5.6vw, 42px);
}
@media (min-width: 768px) {
  .events-calendar__title {
    display: block; font-size: 56px; line-height: 64px; letter-spacing: -1.68px;
  }
}

.events-calendar__badge {
  position: relative; flex-shrink: 0;
  width: 9.733vw; height: 9.733vw; max-width: 73px; max-height: 73px;
  border: 1px solid #000; background: #fff;
}
@media (min-width: 768px) {
  .events-calendar__badge {
    position: absolute; top: 0; right: 0;
    width: 40px; height: 40px; max-width: none; max-height: none;
  }
}
@media (min-width: 1024px) {
  .events-calendar__badge { width: 100px; height: 100px; }
}
.events-calendar__badge span {
  position: absolute; top: 0; left: 0;
  padding: 1.333vw 1.4vw; background: #fff;
  font-size: 1.733vw; font-weight: 500; color: #000; line-height: normal;
}
@media (min-width: 1024px) {
  .events-calendar__badge span { padding: 10px 18px; font-size: 13px; }
}

.events-calendar__filters { display: none; flex-wrap: wrap; gap: 0.75rem; }
@media (min-width: 768px) { .events-calendar__filters { display: flex; } }

.events-filter {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.5rem 1.25rem; border: 1px solid #000; border-radius: 999px;
  background: #fff; color: #000;
  font-size: 20px; font-weight: 400; text-transform: uppercase; line-height: 1.2;
  cursor: pointer; transition: background 0.2s, color 0.2s, transform 0.2s;
}
.events-filter:hover { background: #000; color: #fff; transform: translateY(-2px); }
.events-filter.is-active { background: #000; color: #fff; font-weight: 700; }
.events-filter.is-active:hover { background: #2a2a2a; }

.events-section-title {
  margin: 0; font-weight: 700; text-transform: uppercase;
  color: #0b0b0f; letter-spacing: -0.25px;
  font-size: 4vw; line-height: 6vw;
}
@media (min-width: 768px) {
  .events-section-title { font-size: 40px; line-height: 60px; letter-spacing: -0.8px; }
}

.events-upcoming {
  display: flex; flex-direction: column; gap: 2vw;
  padding: 3.2vw 2.667vw; scroll-margin-top: 5rem;
}
@media (min-width: 768px) {
  .events-upcoming { gap: 1rem; padding: 0; scroll-margin-top: 6rem; }
}

.events-upcoming__grid {
  display: grid; gap: 2.133vw;
}
@media (min-width: 768px) { .events-upcoming__grid { gap: 1.5rem; } }
@media (min-width: 1024px) { .events-upcoming__grid { grid-template-columns: repeat(2, 1fr); } }

.events-card {
  display: flex; flex-direction: column; min-width: 0; overflow: hidden;
  border: 1px solid #e5e5e5; border-radius: 4px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.events-card--upcoming {
  height: 54vw; max-height: 405px;
}
@media (min-width: 768px) {
  .events-card--upcoming { height: auto; max-height: none; padding-bottom: 1rem; gap: 0.75rem; }
}
.events-card:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12); }

.events-card__media {
  position: relative; flex-shrink: 0; overflow: hidden;
  height: 33.333vw; max-height: 250px; background: #dcdcdc;
}
@media (min-width: 768px) {
  .events-card__media { height: 220px; max-height: none; border-radius: 4px; }
}
.events-card__media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 24%;
  transition: transform 0.7s ease-out;
}
.events-card:hover .events-card__media img { transform: scale(1.035); }

.events-card__date-badge {
  position: absolute; left: clamp(6px, 1.6vw, 12px); top: clamp(6px, 1.6vw, 12px);
  display: flex; flex-direction: column; align-items: flex-start;
  background: #000; color: #fff;
  padding: clamp(5px, 0.8vw, 6px) clamp(8px, 1.333vw, 10px) clamp(5px, 0.933vw, 7px);
}
@media (min-width: 768px) {
  .events-card__date-badge { left: 12px; top: 12px; height: 50px; padding: 6px 10px 7px; }
}
.events-card__date-badge span:first-child {
  font-size: clamp(12px, 2.133vw, 16px); line-height: 1;
}
.events-card__date-badge span:last-child {
  margin-top: 2px; color: #aaa;
  font-size: clamp(12px, 2.133vw, 16px); line-height: 1;
}
@media (min-width: 768px) {
  .events-card__date-badge span:last-child { margin-top: 8px; font-size: 14px; }
}

.events-card__body {
  flex-shrink: 0; display: flex; flex-direction: column; gap: 6px;
  padding: 1.6vw 2.133vw 1.067vw;
}
@media (min-width: 768px) { .events-card__body { padding: 0 1rem; } }
.events-card__body h3 {
  margin: 0; font-weight: 700; color: #000;
  font-size: 3.467vw; line-height: 3.24vw;
}
@media (min-width: 768px) { .events-card__body h3 { font-size: 20px; line-height: 1; } }
.events-card__body p {
  margin: 0; color: #777;
  font-size: 3.467vw; line-height: 2.52vw;
}
@media (min-width: 768px) { .events-card__body p { font-size: 16px; line-height: 1; } }

.events-card__action {
  margin-top: auto; display: flex; align-items: center; justify-content: center;
  width: 100%; min-height: 51px;
  background: #000; color: #fff; border: none; text-decoration: none;
  font-size: 3.2vw; line-height: 3.6vw;
  transition: background 0.2s, transform 0.2s;
}
@media (min-width: 768px) {
  .events-card__action { min-height: auto; padding: 0.75rem 1rem; font-size: 20px; line-height: 1; }
}
.events-card__action:hover { background: #c42b3c; color: #fff; transform: translateY(-2px); }
.events-card__action--disabled {
  opacity: 0.6; cursor: not-allowed;
}
.events-card__action--disabled:hover { background: #000; transform: none; }

.events-past {
  display: flex; flex-direction: column; gap: 2.667vw;
  padding: 3.2vw 2.667vw 0; scroll-margin-top: 5rem;
}
@media (min-width: 768px) {
  .events-past { gap: 0.75rem; padding: 0; scroll-margin-top: 6rem; }
}

.events-past__head {
  display: flex; align-items: center; justify-content: space-between; gap: 0.5rem;
}
@media (min-width: 768px) { .events-past__head { gap: 1rem; } }

.events-past__subtitle {
  margin: 0; max-width: 94.667vw; color: #666;
  font-size: 3.467vw; line-height: 4vw;
}
@media (min-width: 768px) { .events-past__subtitle { max-width: none; font-size: 16px; line-height: 1.5; } }

.events-past__plan {
  display: block; flex-shrink: 0; object-fit: contain; max-width: none;
  width: clamp(22px, 4.8vw, 36px); height: clamp(22px, 4.8vw, 36px);
}
@media (min-width: 768px) {
  .events-past__plan { width: 51px; height: 51px; }
}

.events-past__list {
  display: flex; gap: 0; margin-top: 0.25rem;
  overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; scrollbar-width: none;
}
.events-past__list::-webkit-scrollbar { display: none; }
@media (min-width: 768px) {
  .events-past__list {
    flex-direction: column; gap: 0.75rem; overflow: visible; scroll-snap-type: none;
  }
  .events-past__list > .events-past-card + .events-past-card { margin-top: -1px; }
}

.events-past-card {
  flex: 0 0 100%; scroll-snap-align: start;
  display: grid; grid-template-columns: 1fr;
  overflow: hidden; border: 1px solid #dbdbdb; border-radius: 4px;
  background: #fff; min-height: 0;
  transition: box-shadow 0.3s, transform 0.3s;
}
@media (min-width: 768px) {
  .events-past-card {
    flex: none; scroll-snap-align: none;
    grid-template-columns: 180px minmax(0, 1fr) 412px;
    min-height: 309px; overflow: visible;
  }
  .events-past-card:first-child { min-height: 333px; }
}
.events-past-card:hover {
  z-index: 2; transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
}

.events-past-card__sidebar {
  display: flex; flex-direction: row; align-items: center; justify-content: space-between;
  background: #0b0b0f; color: #fff;
  padding: clamp(8px, 2.133vw, 16px) clamp(10px, 2.667vw, 20px);
  min-height: clamp(41px, 10.983vw, 82px);
}
@media (min-width: 768px) {
  .events-past-card__sidebar {
    flex-direction: column; align-items: flex-start; justify-content: flex-start;
    gap: 1.5rem; min-height: 190px; width: 180px; padding: 2rem;
  }
}

.events-past-card__year { display: flex; flex-direction: column; gap: 1px; }
.events-past-card__year span {
  font-size: clamp(12px, 2.933vw, 22px); line-height: 1.1;
}
@media (min-width: 768px) {
  .events-past-card__year span { font-size: 32px; line-height: 32px; }
}

.events-past-card__divider {
  flex: 1; height: 1px; margin: 0 0.5rem; background: rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
  .events-past-card__divider { flex: none; width: 116px; margin: 0; }
}

.events-past-card__location {
  display: flex; align-items: center; gap: clamp(4px, 1.067vw, 8px);
  font-size: clamp(12px, 2.133vw, 16px); line-height: 1.2; white-space: nowrap;
}
@media (min-width: 768px) {
  .events-past-card__location { gap: 8px; font-size: 14px; line-height: 20px; }
}
.events-past-card__location img {
  display: block; flex-shrink: 0; object-fit: contain; max-width: none;
  width: clamp(14px, 2.4vw, 18px); height: clamp(14px, 2.4vw, 18px);
}
@media (min-width: 768px) {
  .events-past-card__location img { width: 14px; height: 14px; }
}

.events-past-card__content {
  order: 3; display: flex; flex-direction: column; align-items: flex-start;
  gap: 3.333vw; padding: 2.667vw;
}
@media (min-width: 768px) {
  .events-past-card__content { order: unset; gap: 15px; padding: 2.5rem; }
}

.events-past-card__label {
  margin: 0; font-weight: 700; text-transform: uppercase; color: #c42b3c;
  font-size: 2.133vw; line-height: 2vw; letter-spacing: 0.147vw;
}
@media (min-width: 768px) {
  .events-past-card__label { font-size: 11px; line-height: 16.5px; letter-spacing: 1.1px; }
}

.events-past-card__content h3 {
  margin: 0; font-weight: 700; color: #0b0b0f;
  font-size: 3.467vw; line-height: 3.2vw;
}
@media (min-width: 768px) {
  .events-past-card__content h3 { font-size: 26px; line-height: 32.5px; }
}

.events-past-card__desc {
  margin: 0; color: #666;
  min-height: 16vw; max-width: 89.067vw;
  font-size: 3.2vw; line-height: 4vw;
}
@media (min-width: 768px) {
  .events-past-card__desc { min-height: 0; max-width: 672px; font-size: 16px; line-height: 24.5px; }
}

.events-past-card__stats {
  display: flex; flex-wrap: wrap;
  gap: 1.067vw 2.667vw;
}
@media (min-width: 768px) { .events-past-card__stats { gap: 8px 20px; } }
.events-past-card__stats span {
  display: inline-flex; align-items: center; gap: 0.8vw;
  white-space: nowrap; font-weight: 500; color: #0b0b0f;
  font-size: 2.133vw; line-height: 2.4vw;
}
@media (min-width: 768px) {
  .events-past-card__stats span { gap: 8px; font-size: 13px; line-height: 19.5px; }
}
.events-past-card__stats img {
  display: block; flex-shrink: 0; object-fit: contain; max-width: none;
  width: clamp(12px, 2.133vw, 16px); height: clamp(12px, 2.133vw, 16px);
}
@media (min-width: 768px) {
  .events-past-card__stats img { width: 16px; height: 16px; }
}

.events-past-card__recap {
  display: inline-flex; align-items: center; justify-content: center; gap: 1.067vw;
  margin-top: auto; padding: 0 2.933vw;
  height: 5.867vw; width: 25.467vw;
  border: 1px solid #c42b3c; border-radius: 0.533vw;
  color: #c42b3c; font-weight: 600; text-decoration: none;
  font-size: 2.667vw; line-height: 2.6vw;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
@media (min-width: 768px) {
  .events-past-card__recap {
    height: 43.5px; width: auto; gap: 8px;
    padding: 0 1.25rem; border-width: 2px; border-radius: 4px;
    font-size: 13px; line-height: 19.5px;
  }
}
.events-past-card__recap:hover { background: #c42b3c; color: #fff; transform: translateY(-2px); }
.events-past-card__recap img {
  display: block; flex-shrink: 0; object-fit: contain; max-width: none;
  width: clamp(12px, 2.533vw, 16px); height: clamp(12px, 2.533vw, 16px);
  transition: filter 0.2s;
}
@media (min-width: 768px) {
  .events-past-card__recap img { width: 16px; height: 16px; }
}
.events-past-card__recap:hover img { filter: brightness(0) invert(1); }

.events-past-card__media {
  order: 2; margin-top: -1px; overflow: hidden; background: #f3f4f6;
  height: 38.533vw; max-height: 289px;
}
@media (min-width: 768px) {
  .events-past-card__media {
    order: unset; margin-top: 0; height: 100%; max-height: none; min-height: 309px;
  }
  .events-past-card:first-child .events-past-card__media { min-height: 333px; }
}
.events-past-card__media img {
  display: block; width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform 0.7s ease-out;
}
.events-past-card:hover .events-past-card__media img { transform: scale(1.035); }

.events-past__dots {
  display: flex; align-items: center; justify-content: center;
  gap: 4vw; margin-top: 1.467vw;
}
@media (min-width: 768px) { .events-past__dots { display: none; } }

.events-past__dot {
  width: 1.467vw; height: 1.467vw; padding: 0; border: none; border-radius: 50%;
  background: #cecece; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.events-past__dot.is-active { background: #000; }
.events-past__dot:hover { transform: translateY(-2px); }

/* ===== Contact ===== */
.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;
}

.contact-info { padding: 2.5rem 0; }
@media (min-width: 768px) {
  .contact-info { padding-top: 5rem; padding-bottom: 2.5rem; }
}

.contact-info__grid {
  display: grid; gap: 1.25rem; grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .contact-info__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1280px) {
  .contact-info__grid { grid-template-columns: repeat(4, 1fr); }
}

.contact-info-card {
  padding: 1rem;
  border: 3px solid rgba(70, 168, 83, 0.11);
  border-radius: 5px;
  background: transparent;
  transition: background-color 0.2s;
  min-height: 111px;
}
@media (min-width: 768px) {
  .contact-info-card { padding: 1.875rem; min-height: 120px; }
}
.contact-info-card:hover { background: var(--bf-primary); }
@media (min-width: 1280px) {
  .contact-info-card--wide { grid-column: span 2; }
}

.contact-info-card__inner {
  display: flex; align-items: flex-start; gap: 1rem;
}
@media (min-width: 768px) {
  .contact-info-card__inner { gap: 1.25rem; }
}

.contact-info-card__icon {
  flex-shrink: 0; margin-top: 0.125rem;
  font-size: 25px; color: #252525;
  transition: color 0.2s;
}
@media (max-width: 767px) {
  .contact-info-card__icon { font-size: 28px; }
}
.contact-info-card:hover .contact-info-card__icon { color: #fff; }

.contact-info-card h3 {
  margin: 0; font-weight: 600; color: #252525;
  font-size: 15px; line-height: 15px;
  transition: color 0.2s;
}
@media (min-width: 768px) {
  .contact-info-card h3 { font-size: 20px; line-height: 24px; }
}
.contact-info-card:hover h3 { color: #fff; }

.contact-info-card__value {
  margin: 6px 0 0; word-break: break-word;
  color: var(--bf-text-muted);
  font-size: 13.68px; line-height: 22.572px;
  transition: color 0.2s;
}
@media (min-width: 768px) {
  .contact-info-card__value { font-size: 15px; line-height: 24.75px; }
}
.contact-info-card:hover .contact-info-card__value,
.contact-info-card:hover .contact-info-card__value a { color: #fff; }
.contact-info-card__value a { color: inherit; text-decoration: none; }

.contact-touch { padding: 0 0 2.5rem; }
@media (min-width: 768px) { .contact-touch { padding-bottom: 5rem; } }

.contact-touch__header { max-width: 1160px; margin: 0 auto; text-align: center; }
.contact-touch__header h2 {
  margin: 0; font-weight: 700; color: #252525;
  font-size: 22px; line-height: 22px;
}
@media (min-width: 768px) {
  .contact-touch__header h2 { font-size: 37px; line-height: 37px; }
}
.contact-touch__header p {
  margin: 1.5rem 0 0; color: var(--bf-text-muted);
  font-size: 15px; line-height: 22.5px;
}
@media (min-width: 768px) {
  .contact-touch__header p { font-size: 16px; line-height: 24.75px; }
}

.contact-touch__layout {
  margin-top: 2.5rem; display: grid; gap: 1.25rem;
}
@media (min-width: 1024px) {
  .contact-touch__layout {
    grid-template-columns: minmax(0, 555px) minmax(0, 575px);
    justify-content: space-between;
  }
}

.contact-map { overflow: hidden; border-radius: 10px; }
.contact-map iframe {
  display: block; width: 100%; min-height: 215px; border: 0;
}
@media (min-width: 768px) {
  .contact-map iframe { min-height: 415px; }
}

.contact-form-panel {
  background: #fff; padding: 1.25rem;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
}
@media (min-width: 768px) {
  .contact-form-panel { padding: 2.8125rem; }
}

.contact-form { display: grid; gap: 14px 10px; }
@media (min-width: 768px) {
  .contact-form { grid-template-columns: 1fr 1fr; gap: 15px 10px; }
  .contact-form__full { grid-column: span 2; }
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; min-height: 47px;
  padding: 6px 16px;
  border: 1px solid #e0e0e0; border-radius: 4px;
  font-size: 16px; font-weight: 400; line-height: 22.4px;
  color: var(--bf-text-muted); background: #fff; outline: none;
  font-family: inherit;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--bf-text-muted); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--bf-primary); }
.contact-form textarea { min-height: 104px; resize: vertical; }

.contact-form__submit {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 40px; width: 258px; max-width: 100%;
  padding: 0 1.5rem; border: none; border-radius: 26px;
  background: var(--bf-primary); color: #fff;
  font-size: 15px; font-weight: 600; line-height: 15px;
  cursor: pointer; transition: background 0.2s;
}
.contact-form__submit:hover { background: #ab1100; }
.contact-form__submit:disabled { background: #d17164; cursor: wait; }

/* ===== Footer ===== */
.site-footer {
  position: relative; width: 100%; color: var(--bf-text-light);
  margin-top: auto; overflow: hidden;
}
.site-footer__bg { position: absolute; inset: 0; z-index: 0; }
.site-footer__bg-color { position: absolute; inset: 0; background: var(--bf-footer-bg); }
.site-footer__bg-image {
  position: absolute; inset: 0; opacity: 0.06; overflow: hidden;
}
.site-footer__bg-image img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.site-footer__inner {
  position: relative; z-index: 1;
  width: 100%; max-width: var(--bf-max-width); margin: 0 auto;
  padding: 1.5rem 1.25rem 2rem;
  display: flex; flex-direction: column; gap: 1.5rem;
}
@media (min-width: 640px) {
  .site-footer__inner { padding: 2rem 1.5rem 2.5rem; gap: 2rem; }
}
@media (min-width: 992px) {
  .site-footer__inner {
    flex-direction: row; align-items: flex-start; gap: 2rem;
    padding: 3rem 2rem;
  }
}
.site-footer__col { display: flex; flex-direction: column; gap: 0.75rem; min-width: 0; width: 100%; }
@media (min-width: 992px) {
  .site-footer__col--brand,
  .site-footer__col--articles,
  .site-footer__col--contact { flex: 0 0 262px; max-width: 262px; }
  .site-footer__col--pages { flex: 1 1 auto; }
}
.site-footer a { color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.2s; }
.site-footer a:hover { color: #fff; }
.site-footer h4 {
  color: #fff; margin: 0; font-size: 1rem; font-weight: 600; line-height: 1.5;
}
@media (min-width: 992px) {
  .site-footer h4 { font-size: 1.125rem; font-weight: 500; }
}
.site-footer p { margin: 0; font-size: 0.875rem; line-height: 1.5; color: rgba(255,255,255,0.8); }
.site-footer__intro { display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer__intro strong { color: #fff; font-weight: 700; }
.site-footer__logo { height: 60px; overflow: hidden; width: 104px; }
.site-footer__logo img { display: block; width: 104px; height: auto; }
.site-footer__logo--invert img { filter: brightness(0) invert(1); }
.site-footer__articles-text { line-height: 1.375; }
.site-footer__links {
  display: flex; flex-direction: column; gap: 0.5rem;
}
.site-footer__links a { font-size: 0.875rem; line-height: 1.5; }
.site-footer__newsletter { display: flex; flex-direction: column; gap: 0.75rem; width: 100%; }
.site-footer__newsletter-fields { display: flex; flex-direction: column; gap: 0.75rem; width: 100%; }
.site-footer__newsletter input {
  width: 100%; padding: 0.875rem 1rem;
  background: transparent; border: 1px solid rgba(255,255,255,0.4);
  border-radius: 0.5rem; color: #fff; font-size: 0.875rem; outline: none;
}
@media (min-width: 992px) {
  .site-footer__newsletter input { border-radius: 4px; padding: 1rem; }
}
.site-footer__newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.site-footer__newsletter input:focus { border-color: rgba(255,255,255,0.6); }
.site-footer__newsletter button {
  width: 100%; padding: 0.75rem 1rem; border: 0; border-radius: 0.5rem;
  background: var(--bf-primary); color: #fff; font-size: 0.875rem; font-weight: 700;
  cursor: pointer; transition: background 0.2s;
}
@media (min-width: 992px) {
  .site-footer__newsletter button { border-radius: 4px; }
}
.site-footer__newsletter button:hover { background: #a01000; }
.site-footer__contact-block,
.site-footer__useful { display: flex; flex-direction: column; gap: 0.75rem; width: 100%; }
.site-footer__contact-item {
  display: flex; gap: 0.75rem; align-items: flex-start; width: 100%;
}
.site-footer__contact-item img { flex-shrink: 0; margin-top: 0.15rem; }
.site-footer__contact-item a,
.site-footer__contact-item p { font-size: 0.875rem; line-height: 1.625; margin: 0; }
.site-footer__useful-head {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%;
}
.site-footer__social { display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; }
.site-footer__social img { display: block; width: 32px; height: 32px; }
@media (min-width: 992px) {
  .site-footer__useful-head { display: block; }
  .site-footer__useful-head h4 { margin-bottom: 1rem; }
  .site-footer__social { margin-bottom: 1rem; }
}
.site-footer__links--useful { gap: 1rem; }
.site-footer__links--desktop { display: none; }
@media (min-width: 992px) {
  .site-footer__links--mobile-top,
  .site-footer__links--mobile-bottom { display: none; }
  .site-footer__links--desktop { display: flex; }
}
@media (max-width: 991px) {
  .site-footer__inner { gap: 1.5rem; }
  .site-footer__col--articles { order: 2; }
  .site-footer__col--pages { order: 3; }
  .site-footer__col--contact { order: 4; }
  .site-footer__useful-head h4 { margin: 0; }
  .site-footer__links--mobile-top,
  .site-footer__links--mobile-bottom { gap: 0.5rem; margin-top: 0.5rem; }
  .site-footer__social a {
    display: inline-flex; align-items: center; justify-content: center;
    background: #fff; border-radius: 0.5rem; padding: 0.25rem;
  }
  .site-footer__social img { width: 24px; height: 24px; }
}
.site-footer__bar {
  position: relative; z-index: 1;
  background: var(--bf-footer-bar); text-align: center;
  padding: 1rem; font-size: 0.75rem; color: rgba(255,255,255,0.7);
}

/* ===== CTA Banner ===== */
.cta-banner {
  position: relative; min-height: 320px; display: flex; align-items: center;
  justify-content: center; text-align: center; color: #fff;
  background-size: cover; background-position: center;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
}
.cta-banner__content { position: relative; z-index: 1; padding: 2rem; }
.cta-banner h2 { color: #fff; font-size: clamp(1.5rem, 4vw, 2.5rem); text-transform: uppercase; }

/* ===== Process steps ===== */
.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; }
.steps li {
  counter-increment: step; position: relative; padding-left: 3rem; margin-bottom: 1.5rem;
}
.steps li::before {
  content: counter(step); position: absolute; left: 0; top: 0;
  width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--bf-primary); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700;
}

/* ===== Utilities ===== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.page-main { padding-top: var(--bf-header-height); min-height: 60vh; }
.page-main--home { padding-top: 0; }

/*
 * Full-bleed first banners sit under the fixed header so the hero
 * background meets the header edge with no white seam.
 */
.page-main > .about-hero,
.page-main > .blog-hero,
.page-main > .events-hero,
.page-main > .hero-banner,
.page-main > .services-hero,
.page-main > .quote-hero,
.page-main > .videos-hero {
  margin-top: calc(var(--bf-header-height) * -1);
}

/* Keep banner titles/copy below the opaque header bar. */
.page-main > .about-hero,
.page-main > .blog-hero,
.page-main > .hero-banner,
.page-main > .services-hero,
.page-main > .videos-hero {
  padding-top: var(--bf-header-height);
}

.badge { display: inline-block; background: var(--bf-primary); color: #fff; font-size: 0.75rem; padding: 0.2rem 0.5rem; border-radius: 4px; }

/* ===== Get a Free Quote page (aligned to bestfulfill.com) ===== */
.quote-page { width: 100%; }

.quote-hero {
  position: relative; width: 100%;
  background-size: cover; background-position: center;
}
.quote-hero__shade { position: absolute; inset: 0; background: rgba(0,0,0,0.75); }
.quote-hero__inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  padding: 2.5rem 1rem;
  display: grid; gap: 2rem; align-items: start;
}
@media (min-width: 768px) {
  .quote-hero__inner { padding: 4.375rem 0.625rem; }
}
@media (min-width: 1024px) {
  .quote-hero__inner {
    grid-template-columns: minmax(0, 1fr) 405px;
    gap: 2.5rem;
  }
}
.quote-hero__copy { display: flex; align-items: center; }
@media (min-width: 1024px) {
  .quote-hero__copy { min-height: 380px; }
}
.quote-hero__copy h1 {
  margin: 0; max-width: 720px;
  color: #fff; font-size: 1.75rem; font-weight: 700; line-height: 1.18;
}
@media (min-width: 768px) {
  .quote-hero__copy h1 { font-size: 2.5rem; line-height: 1.4; }
}

.quote-card {
  border-radius: 6px; background: #fff;
  padding: 1.25rem 1rem;
  box-shadow: 0 18px 38px rgba(0,0,0,0.22);
}
@media (min-width: 768px) {
  .quote-card { padding: 1.5rem 1.75rem; }
}
.quote-card--wide { box-shadow: 0 18px 38px rgba(0,0,0,0.16); }
@media (min-width: 768px) {
  .quote-card--wide { padding: 1.75rem 1.5rem; }
}
.quote-card h2 {
  margin: 0; text-align: center;
  font-size: 1.5625rem; font-weight: 700; line-height: 1; color: #000;
}
@media (min-width: 768px) {
  .quote-card h2 { font-size: 2.3125rem; }
}

.quote-form { display: grid; gap: 0.75rem; margin-top: 1.25rem; }
.quote-form__row { display: grid; gap: 0.75rem; }
@media (min-width: 768px) {
  .quote-form__row { grid-template-columns: 1fr 1fr; }
}
.quote-form__control {
  width: 100%; min-height: 36px;
  border: 1px solid #ececec; background: #fff;
  padding: 0 0.75rem; font-size: 0.75rem; color: #7a7a7a;
  outline: none; border-radius: 0;
}
.quote-form__control:focus { border-color: var(--bf-primary); }
.quote-form__control--textarea {
  min-height: 92px; padding: 0.5rem 0.75rem; resize: vertical;
}
.quote-form__label {
  margin: 0 0 0.5rem; font-size: 0.75rem; font-weight: 600; color: #54595f;
}
.quote-form__checks {
  display: flex; flex-wrap: wrap; gap: 0.25rem 0.75rem;
}
.quote-form__checks label {
  display: inline-flex; align-items: center; gap: 0.25rem;
  font-size: 0.6875rem; font-weight: 400; color: #7a7a7a; margin: 0;
}
.quote-form__checks input { width: 12px; height: 12px; }
.quote-form__hint {
  margin: 0.5rem 0 0; font-size: 0.625rem; line-height: 1.5; color: #a9a9a9;
}
.quote-form__notice { color: #c01400; margin: 0 0 0.5rem; font-size: 0.8125rem; }
.quote-form__captcha { margin-top: 0.25rem; }
.quote-form__submit-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem; padding-top: 0.25rem;
}
.quote-form__submit-wrap--narrow .quote-form__submit { max-width: 370px; }
.quote-form__submit {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; min-height: 40px; padding: 0 1rem;
  border: 0; border-radius: 2px; cursor: pointer;
  background: var(--bf-primary); color: #fff !important;
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.02em;
  line-height: 1.15; white-space: nowrap; transition: background 0.2s;
}
.quote-form__submit:hover { background: #a61000; color: #fff; }
@media (min-width: 768px) {
  .quote-form__control { min-height: 42px; }
  .quote-form__submit { min-height: 48px; }
}

.quote-video {
  width: 100%; background: var(--bf-primary);
  background-size: cover; background-position: center;
  padding: 1.75rem 1rem;
}
@media (min-width: 768px) {
  .quote-video { padding: 2.25rem 0.625rem; }
}
.quote-video__frame {
  width: 100%; max-width: 580px; margin: 0 auto 0 auto;
  overflow: hidden; border-radius: 6px; background: #000;
  box-shadow: 0 16px 30px rgba(0,0,0,0.22);
}
@media (min-width: 768px) {
  .quote-video__frame { margin-left: auto; margin-right: max(0px, calc((100% - 1180px) / 2)); }
}
.quote-video__frame iframe { display: block; width: 100%; aspect-ratio: 16 / 9; border: 0; }

.quote-stats {
  position: relative; z-index: 2; width: 100%;
  background: #fff; padding: 0 1rem;
}
@media (min-width: 768px) {
  .quote-stats { padding: 0 0.625rem; }
}
.quote-stats__panel {
  max-width: 1180px; margin: -78px auto 0;
  background: #fff; padding: 2rem 1.25rem;
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 0;
}
@media (min-width: 768px) {
  .quote-stats__panel {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    grid-auto-flow: column;
    gap: 0; padding: 2.75rem 2.5rem;
  }
}
.quote-stats__cell { display: flex; justify-content: center; }
@media (min-width: 768px) {
  .quote-stats__cell {
    min-height: 132px; padding: 1.25rem 1.5rem;
    border-right: 1px solid #efefef;
  }
  .quote-stats__cell:nth-child(1),
  .quote-stats__cell:nth-child(3),
  .quote-stats__cell:nth-child(5) { border-bottom: 1px solid #efefef; }
  .quote-stats__cell:nth-child(5),
  .quote-stats__cell:nth-child(6) { border-right: 0; }
}
.quote-stat {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 0.25rem; text-align: center; width: 100%;
}
.quote-stat__value {
  font-size: 1.875rem; font-weight: 600; line-height: 1; color: var(--bf-primary);
}
@media (min-width: 768px) {
  .quote-stat__value { font-size: 2.8125rem; }
}
.quote-stat__label {
  margin: 0; max-width: 120px;
  font-size: 0.75rem; line-height: 1.8; color: #7a7a7a;
}
@media (min-width: 768px) {
  .quote-stat__label { max-width: 190px; font-size: 0.9375rem; line-height: 1.9; }
}

.quote-solutions {
  width: 100%; background-size: cover; background-position: center;
  padding: 4.375rem 1rem;
}
@media (min-width: 768px) {
  .quote-solutions { padding: 4.375rem 0.625rem; }
}
.quote-solutions__inner { max-width: 1180px; margin: 0 auto; }
.quote-solutions__head { text-align: center; }
.quote-solutions__eyebrow {
  margin: 0; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--bf-primary);
}
.quote-solutions__head h2 {
  margin: 0.5rem 0 0; font-size: 1.875rem; font-weight: 700;
  line-height: 1; color: #252525;
}
@media (min-width: 768px) {
  .quote-solutions__head h2 { font-size: 2.3125rem; }
}
.quote-solutions__grid {
  margin-top: 2.5rem;
  display: grid; gap: 1.25rem;
}
@media (min-width: 768px) {
  .quote-solutions__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1280px) {
  .quote-solutions__grid { grid-template-columns: repeat(3, 1fr); }
}
.quote-service-card {
  border-radius: 12px; background: #fff;
  padding: 1.5rem 1.5rem 1.75rem;
  text-align: center;
  box-shadow: 0 14px 34px rgba(0,0,0,0.04);
}
.quote-service-card__icon {
  margin: 0 auto 1.25rem;
  width: 92px; height: 92px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 30% 30%, #ffecec, #f3a6a0);
}
.quote-service-card__icon img { width: 42px; height: auto; }
.quote-service-card h3 {
  margin: 0; font-size: 1rem; font-weight: 700; line-height: 1.3; color: #252525;
}
.quote-service-card p {
  margin: 0.75rem 0 0; font-size: 0.75rem; line-height: 1.7; color: #7a7a7a;
}
.quote-solutions__cta { margin-top: 2rem; display: flex; justify-content: center; }
.quote-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 36px; padding: 0 1rem; border-radius: 2px;
  background: var(--bf-primary); color: #fff !important;
  font-size: 0.6875rem; font-weight: 600; line-height: 1.1;
  text-decoration: none; white-space: nowrap; transition: background 0.2s;
}
.quote-btn:hover { background: #a61000; color: #fff; text-decoration: none; }

.quote-process {
  width: 100%; background: var(--bf-primary);
  background-size: cover; background-position: center;
  padding: 4.375rem 1rem;
}
@media (min-width: 768px) {
  .quote-process { padding: 4.375rem 0.625rem; }
}
.quote-process__inner { max-width: 1180px; margin: 0 auto; }
.quote-process__inner > h2 {
  margin: 0; text-align: center;
  font-size: 1.875rem; font-weight: 700; line-height: 1; color: #fff;
}
@media (min-width: 768px) {
  .quote-process__inner > h2 { font-size: 2.3125rem; }
}
.quote-process__steps {
  margin-top: 2.5rem;
  display: flex; flex-direction: column; gap: 2rem;
}
@media (min-width: 768px) {
  .quote-process__steps {
    flex-direction: row; align-items: flex-start;
    justify-content: space-between; gap: 0;
  }
}
.quote-process__col {
  flex: 1; display: flex; align-items: flex-start; justify-content: center; gap: 1rem;
}
.quote-process__card {
  width: 100%; max-width: 374px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.quote-process__card img { width: 50px; height: 50px; }
.quote-process__card h3 {
  margin: 1rem 0 0; font-size: 1.375rem; font-weight: 700; line-height: 1.3; color: #fff;
}
.quote-process__card p {
  margin: 0.75rem 0 0; font-size: 0.875rem; line-height: 1.6; color: #fff;
}
@media (min-width: 768px) {
  .quote-process__card p { font-size: 1rem; line-height: 1.55; }
}
.quote-process__arrow { display: none; flex-shrink: 0; align-items: center; padding-top: 1rem; }
@media (min-width: 768px) {
  .quote-process__arrow { display: flex; }
}
.quote-process__arrow img { width: 112px; height: auto; }

.quote-reviews {
  width: 100%; background: #f5f5f5; padding: 3.75rem 1rem;
}
@media (min-width: 768px) {
  .quote-reviews { padding: 3.75rem 0.625rem; }
}
.quote-reviews__inner { max-width: 1180px; margin: 0 auto; }
.quote-reviews__inner > h2 {
  margin: 0; text-align: center;
  font-size: 1.625rem; font-weight: 700; text-transform: capitalize; color: #252525;
}
@media (min-width: 768px) {
  .quote-reviews__inner > h2 { font-size: 2rem; }
}
.quote-reviews__grid {
  margin-top: 2rem;
  display: grid; gap: 1.25rem;
}
@media (min-width: 768px) {
  .quote-reviews__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1280px) {
  .quote-reviews__grid { grid-template-columns: repeat(4, 1fr); }
}
.quote-review-card {
  position: relative; display: flex; flex-direction: column; height: 100%;
  border: 1px solid #efefef; background: #fff;
  padding: 1rem 1rem 1.5rem;
}
.quote-review-card__head { display: flex; align-items: flex-start; gap: 0.75rem; }
.quote-review-card__head img {
  width: 42px; height: 42px; border-radius: 999px; object-fit: cover;
}
.quote-review-card__head h3 {
  margin: 0; font-size: 0.75rem; font-weight: 700; line-height: 1; color: #252525;
}
.quote-review-card__stars {
  margin-top: 0.5rem; display: flex; align-items: center; gap: 0.25rem; height: 1rem;
}
.quote-review-card__score {
  font-size: 0.6875rem; font-weight: 500; color: var(--bf-primary);
}
.quote-review-card__stars span:not(.quote-review-card__score) {
  display: inline-flex; width: 1rem; height: 1rem;
  align-items: center; justify-content: center;
  background: #00b67a; color: #fff; font-size: 0.625rem; line-height: 1;
}
.quote-review-card__title {
  margin: 1rem 0 0; font-size: 0.875rem; font-weight: 600; line-height: 1.35; color: #252525;
}
.quote-review-card__body {
  margin: 0.75rem 0 0; font-size: 0.75rem; line-height: 1.65; color: #666;
}
.quote-review-card::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
  background: var(--bf-primary);
}
.quote-reviews__more { margin-top: 2rem; display: flex; justify-content: center; }
.quote-reviews__more-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 32px; padding: 0 1.25rem;
  border: 0; border-bottom: 4px solid var(--bf-primary);
  background: #000; color: #fff !important;
  font-size: 0.625rem; font-weight: 500; cursor: pointer; white-space: nowrap;
}
.quote-reviews__more-btn[hidden] { display: none; }

.quote-bottom {
  position: relative; width: 100%;
  background-size: cover; background-position: center;
  padding: 3.4375rem 1rem;
}
@media (min-width: 768px) {
  .quote-bottom { padding: 4.375rem 0.625rem; }
}
.quote-bottom__shade { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.quote-bottom__inner {
  position: relative; z-index: 1;
  max-width: 1180px; margin: 0 auto;
}

