html { scroll-behavior: smooth; overflow-x: hidden; }

/* ===== RESET & BASE ===== */
.b2b-page *, .b2b-page *::before, .b2b-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.b2b-page {
  overflow-x: hidden;
  font-family: 'PT Root UI', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2B2D33;
  background: #FFFFFF;
}

/* ===== CSS VARIABLES ===== */
.b2b-page {
  --dark: #2B2D33;
  --light: #FFFFFF;
  --muted: #6B6F76;
  --bg-light: #F7F7F7;
  --bg-dark: #1A1C20;
  --accent: #2B2D33;
  --max-w: 1200px;
  --section-py: 80px;
  --section-py-sm: 48px;
}

/* ===== TYPOGRAPHY ===== */
.b2b-page h1 { font-size: clamp(36px, 6vw, 72px); font-weight: 700; line-height: 1.1; }
.b2b-page h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 700; line-height: 1.2; }
.b2b-page h3 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 600; line-height: 1.3; }
.b2b-page p  { font-size: clamp(15px, 1.5vw, 18px); line-height: 1.7; }

/* ===== LAYOUT UTILITIES ===== */
.b2b-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.b2b-section {
  padding: var(--section-py) 0;
}

.b2b-section--dark {
  background: var(--bg-dark);
  color: var(--light);
}

.b2b-section--light {
  background: var(--bg-light);
}

/* ===== BUTTON ===== */
.b2b-btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: #FFFFFF;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--accent);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.b2b-btn:hover {
  background: transparent;
  color: var(--accent);
}

.b2b-btn--outline {
  background: transparent;
  color: var(--light);
  border-color: var(--light);
}

.b2b-btn--outline:hover {
  background: var(--light);
  color: var(--dark);
}

@media (max-width: 768px) {
  .b2b-page { --section-py: var(--section-py-sm); }
}

/* ===== HEADER ===== */
.b2b-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FFFFFF;
  border-bottom: 1px solid #E8E8E8;
  padding: 0;
}

.b2b-header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

.b2b-header__logo img {
  display: block;
  max-height: 44px;
  width: auto;
}

.b2b-header__nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.b2b-header__nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  transition: opacity 0.2s;
}

.b2b-header__nav a:hover { opacity: 0.6; }

.b2b-header__contacts {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.b2b-header__phone {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  white-space: nowrap;
}

.b2b-header__cta {
  padding: 10px 20px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .b2b-header__nav { display: none; }
  .b2b-header__phone { display: none; }
  .b2b-header__inner { gap: 12px; }
  .b2b-header__contacts { margin-left: auto; }
  .b2b-header__logo img { max-height: 28px; }
  .b2b-header__cta { padding: 8px 14px; font-size: 13px; }
}

/* ===== HERO ===== */
.b2b-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.b2b-hero__media {
  position: absolute;
  inset: 0;
}

.b2b-hero__video,
.b2b-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.b2b-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(0,0,0,0.70) 0%,
    rgba(0,0,0,0.45) 38%,
    rgba(0,0,0,0.10) 65%,
    rgba(0,0,0,0.05) 100%
  );
}

.b2b-hero__content {
  position: relative;
  z-index: 1;
  color: #FFFFFF;
  padding-top: 68px;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
  padding-bottom: 160px;
  /* Убираем центрирование контейнера — текст всегда слева */
  max-width: none !important;
  margin: 0 !important;
  padding-left: 6% !important;
  padding-right: 6% !important;
}

.b2b-hero__text {
  max-width: 420px;
}

.b2b-hero__title {
  font-size: clamp(32px, 3.2vw, 50px);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  line-height: 1.15;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.b2b-hero__subtitle {
  font-size: clamp(14px, 1.2vw, 17px);
  margin-bottom: 40px;
  opacity: 0.88;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .b2b-hero { min-height: 90vh; }
}

/* ===== FLOATING STONES ===== */
@keyframes b2b-float-1 {
  0%, 100% { transform: translateY(0px) rotate(-2deg); filter: drop-shadow(0 12px 24px rgba(0,0,0,0.18)); }
  50%       { transform: translateY(-22px) rotate(-1deg); filter: drop-shadow(0 28px 40px rgba(0,0,0,0.08)); }
}
@keyframes b2b-float-2 {
  0%, 100% { transform: translateY(0px) rotate(1deg); filter: drop-shadow(0 16px 32px rgba(0,0,0,0.20)); }
  50%       { transform: translateY(-28px) rotate(2deg); filter: drop-shadow(0 36px 48px rgba(0,0,0,0.09)); }
}
@keyframes b2b-float-3 {
  0%, 100% { transform: translateY(0px) rotate(3deg); filter: drop-shadow(0 10px 20px rgba(0,0,0,0.16)); }
  50%       { transform: translateY(-18px) rotate(2deg); filter: drop-shadow(0 24px 36px rgba(0,0,0,0.07)); }
}

.b2b-stones__grid {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  max-width: 1200px;
  width: 100%;
  margin: 40px auto 0;
  padding: 20px 24px 60px;
}

.b2b-stones__item {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.b2b-stones__item img {
  width: 100%;
  max-width: 340px;
  height: auto;
  object-fit: contain;
  will-change: transform, filter;
}

.b2b-stones__item:nth-child(1) img {
  animation: b2b-float-1 5.2s ease-in-out infinite;
  animation-delay: 0s;
  max-width: 280px;
  margin-bottom: 40px;
}

.b2b-stones__item:nth-child(2) img {
  animation: b2b-float-2 6.0s ease-in-out infinite;
  animation-delay: -2.1s;
  max-width: 340px;
}

.b2b-stones__item:nth-child(3) img {
  animation: b2b-float-3 5.6s ease-in-out infinite;
  animation-delay: -1.0s;
  max-width: 290px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .b2b-about { min-height: unset; }
  .b2b-stones__grid { gap: 0; padding: 20px 24px 40px; justify-content: center; }
  .b2b-stones__item:nth-child(1),
  .b2b-stones__item:nth-child(3) { display: none; }
  .b2b-stones__item:nth-child(2) { flex: unset; width: 100%; }
  .b2b-stones__item:nth-child(2) img { max-width: 260px; margin-bottom: 0; }
}

/* ===== BRAND STORY + STONES ===== */
.b2b-about {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 0;
}

.b2b-about__title {
  margin-bottom: 48px;
  font-size: clamp(32px, 4vw, 56px);
}

.b2b-about__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 0;
}

.b2b-about__cols p {
  color: var(--muted);
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.85;
}

/* МЕСТО СИЛЫ */
.b2b-place {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.b2b-place__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.b2b-place__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.b2b-place__content {
  position: relative;
  z-index: 1;
  color: #FFFFFF;
  max-width: 640px;
  padding: var(--section-py) 24px;
}

.b2b-place__content h2 { margin-bottom: 28px; font-size: clamp(32px, 4vw, 56px); }
.b2b-place__content p  { font-size: clamp(16px, 1.3vw, 20px); opacity: 0.9; line-height: 1.8; }

@media (max-width: 768px) {
  .b2b-about__cols { grid-template-columns: 1fr; gap: 16px; }
  .b2b-hero__content { padding-bottom: 48px; }
}

/* ===== PURIFICATION ===== */
.b2b-purification {
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.b2b-purification__title {
  text-align: center;
  margin-bottom: 64px;
}

.b2b-purification__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
}

.b2b-purification__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.b2b-purification__icon svg {
  width: 56px;
  height: 56px;
}

.b2b-purification__step h3 { margin-bottom: 16px; font-size: clamp(18px, 1.6vw, 22px); }
.b2b-purification__step p  { color: var(--muted); font-size: clamp(14px, 1.1vw, 17px); line-height: 1.75; }

/* ===== COMPOSITION ===== */
.b2b-composition__title    { text-align: center; margin-bottom: 12px; }
.b2b-composition__subtitle { text-align: center; color: var(--muted); margin-bottom: 40px; }

.b2b-composition__table-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.b2b-composition__table {
  width: 100%;
  border-collapse: collapse;
}

.b2b-composition__table th,
.b2b-composition__table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid #E8E8E8;
  font-size: 16px;
}

.b2b-composition__table th {
  font-weight: 700;
  background: var(--bg-light);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.b2b-composition__table tbody tr:hover { background: #FAFAFA; }

.b2b-composition__table td:last-child {
  font-weight: 600;
  text-align: right;
}

@media (max-width: 768px) {
  .b2b-purification__steps { grid-template-columns: 1fr; gap: 32px; }
  .b2b-composition__table th,
  .b2b-composition__table td { padding: 12px 16px; font-size: 14px; }
}

/* ===== BOTTLE ===== */
.b2b-bottle__title { text-align: center; margin-bottom: 48px; }

.b2b-bottle__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: center;
}

.b2b-bottle__card {
  display: flex;
  justify-content: center;
}

.b2b-bottle__img {
  max-height: 480px;
  object-fit: contain;
}

.b2b-bottle__features {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.b2b-bottle__feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.b2b-bottle__num {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.1em;
  min-width: 28px;
  padding-top: 4px;
}

.b2b-bottle__feature h3 { margin-bottom: 8px; }
.b2b-bottle__feature p  { color: var(--muted); font-size: 15px; }

/* ===== ДЕКЛАРАЦИЯ ===== */
.b2b-composition__cert {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 40px auto 0;
  padding-top: 32px;
  border-top: 1px solid #E8E8E8;
  max-width: 640px;
}

.b2b-composition__cert svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.b2b-composition__cert span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.b2b-composition__cert a {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: opacity 0.2s;
}

.b2b-composition__cert a:hover { opacity: 0.55; }

/* ===== ФОРМАТЫ ===== */
.b2b-formats { --section-py: 52px; }
.b2b-formats__title    { margin-bottom: 10px; color: var(--light); font-size: clamp(24px, 3vw, 36px); }
.b2b-formats__subtitle { color: rgba(255,255,255,0.5); font-size: 14px; margin-bottom: 32px; letter-spacing: 0.03em; }

.b2b-formats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  align-items: stretch;
  gap: 1px;
  background: rgba(255,255,255,0.08);
}

.b2b-formats__card {
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  align-self: stretch;
  min-width: 0; /* фикс для grid + flex */
  transition: background 0.25s;
}

.b2b-formats__card:hover { background: #202328; }

/* фото упаковки */
.b2b-formats__img {
  width: 100%;
  height: 160px; /* фиксированная высота — одинакова для всех карточек */
  flex-shrink: 0;
  overflow: hidden;
  background: #1A1C20;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}


.b2b-formats__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.4s ease;
}

.b2b-formats__card:hover .b2b-formats__img img {
  transform: scale(1.04);
}

/* информация под фото */
.b2b-formats__body {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.b2b-formats__card .b2b-formats__brand {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 10px 14px 2px;
  line-height: 1.3;
}

.b2b-formats__card .b2b-formats__channel {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  padding: 0 14px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  line-height: 1.3;
}

.b2b-formats__card .b2b-formats__dims {
  font-size: 10px;
  line-height: 1.3;
}

/* таблица как на старом сайте */
.b2b-formats__table {
  width: 100%;
  border-collapse: collapse;
}

.b2b-formats__table th {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  padding: 8px 14px 5px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  line-height: 1.3;
  width: 50%;
}

.b2b-formats__table th:first-child {
  border-right: 1px solid rgba(255,255,255,0.08);
}

.b2b-formats__table th em {
  display: block;
  font-style: normal;
  font-size: 9px;
  color: rgba(255,255,255,0.25);
  margin-top: 1px;
}

.b2b-formats__row--vol td {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  padding: 8px 14px 4px;
  letter-spacing: -0.01em;
}

.b2b-formats__row--vol td:first-child {
  border-right: 1px solid rgba(255,255,255,0.08);
}

.b2b-formats__row--sku {
  background: rgba(0,0,0,0.25);
}

.b2b-formats__row--sku td {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  padding: 6px 14px;
  letter-spacing: 0.02em;
}

.b2b-formats__row--sku td:first-child {
  border-right: 1px solid rgba(255,255,255,0.08);
}

.b2b-formats__dims {
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
  padding: 7px 14px 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 1024px) {
  .b2b-formats__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .b2b-formats__grid { grid-template-columns: 1fr; }
}

/* ===== ТОРГОВЫЕ СЕТИ ===== */
.b2b-retailers {
  padding: 52px 0;
  border-bottom: 1px solid #EFEFEF;
  overflow: hidden;
}

.b2b-retailers__label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 36px;
  text-align: center;
}

/* Бесшовный маркер */
.b2b-marquee {
  overflow: hidden;
  /* fade-маски по краям */
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.b2b-marquee__track {
  display: flex;
  width: max-content;
  animation: b2b-marquee-scroll 50s linear infinite;
}

.b2b-marquee__track:hover {
  animation-play-state: paused;
}

.b2b-marquee__list {
  display: flex;
  align-items: center;
  gap: 0;
}

.b2b-marquee__list img {
  height: 32px;
  width: auto;
  object-fit: contain;
  opacity: 0.45;
  padding: 0 44px;
  filter: grayscale(1);
  transition: opacity 0.3s, filter 0.3s;
}

.b2b-marquee__list img:hover {
  opacity: 1;
  filter: grayscale(0);
}

@keyframes b2b-marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .b2b-marquee__track { animation: none; }
}

/* ===== TRIPLE ALTAI ===== */
.b2b-triple {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.b2b-triple__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.b2b-triple__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.b2b-triple__content {
  position: relative;
  z-index: 1;
  color: #FFFFFF;
  max-width: 640px;
  padding: var(--section-py) 24px;
}

.b2b-triple__content h2 { margin-bottom: 24px; }
.b2b-triple__content p  { margin-bottom: 16px; opacity: 0.85; font-size: 18px; }
.b2b-triple__content p:last-child { margin-bottom: 0; }

@media (max-width: 768px) {
  .b2b-bottle__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== ORDER FORM ===== */
.b2b-order__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.b2b-order__info h2   { margin-bottom: 20px; }
.b2b-order__info > p  { color: var(--muted); margin-bottom: 28px; }

.b2b-order__benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.b2b-order__benefits li {
  padding-left: 24px;
  position: relative;
  font-size: 15px;
  color: var(--muted);
}

.b2b-order__benefits li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--dark);
  font-weight: 700;
}

.b2b-form {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.b2b-form__field {
  margin-bottom: 20px;
}

.b2b-form__field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
}

.b2b-form__req { color: #D0021B; }

.b2b-form__field input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #D8D8D8;
  border-radius: 6px;
  font-family: inherit;
  font-size: 16px;
  color: var(--dark);
  background: #FFFFFF;
  transition: border-color 0.2s;
  outline: none;
}

.b2b-form__field input:focus { border-color: var(--accent); }

.b2b-form__submit {
  width: 100%;
  margin-top: 4px;
  padding: 16px;
}

.b2b-form__note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

.b2b-form__note a {
  color: var(--muted);
  text-decoration: underline;
}

/* Success state */
.b2b-order__success {
  background: #FFFFFF;
  padding: 48px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  text-align: center;
}

.b2b-order__success svg  { margin-bottom: 20px; }
.b2b-order__success h3   { margin-bottom: 12px; }
.b2b-order__success p    { color: var(--muted); }

@media (max-width: 768px) {
  .b2b-order__inner { grid-template-columns: 1fr; gap: 32px; }
  .b2b-form { padding: 24px; }
}

/* ===== FOOTER ===== */
.b2b-footer {
  background: var(--bg-dark);
  color: #FFFFFF;
}

.b2b-footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-top: 56px;
  padding-bottom: 48px;
}

.b2b-footer__logo img { display: block; }
.b2b-footer__tagline  { margin-top: 12px; font-size: 14px; opacity: 0.5; letter-spacing: 0.08em; text-transform: uppercase; }

.b2b-footer__phone      { display: block; font-size: 20px; font-weight: 700; color: #FFFFFF; text-decoration: none; margin-bottom: 4px; }
.b2b-footer__phone-note { font-size: 13px; opacity: 0.5; margin-bottom: 16px; }

.b2b-footer__messengers {
  display: flex;
  gap: 16px;
}

.b2b-footer__messengers a {
  display: flex;
  align-items: center;
  color: #FFFFFF;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.b2b-footer__messengers a:hover { opacity: 1; }

.b2b-footer__biz-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}

.b2b-footer__biz-address {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
  line-height: 1.5;
}

.b2b-footer__biz-email {
  display: inline-block;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  transition: border-color 0.2s, color 0.2s;
}

.b2b-footer__biz-email:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}

.b2b-footer__social-label {
  font-size: 13px;
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.b2b-footer__social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.b2b-footer__social-links a {
  color: #FFFFFF;
  opacity: 0.7;
  text-decoration: none;
  font-size: 15px;
  transition: opacity 0.2s;
}

.b2b-footer__social-links a:hover { opacity: 1; }

.b2b-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}

.b2b-footer__bottom .b2b-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.b2b-footer__bottom p { font-size: 13px; opacity: 0.4; }
.b2b-footer__bottom a { font-size: 13px; opacity: 0.4; color: #FFFFFF; text-decoration: underline; }
.b2b-footer__bottom a:hover { opacity: 0.7; }

@media (max-width: 768px) {
  .b2b-footer__inner { grid-template-columns: 1fr; gap: 32px; padding-top: 40px; padding-bottom: 32px; }
  .b2b-footer__bottom .b2b-container { flex-direction: column; gap: 8px; text-align: center; }
}
