/*
 * NeweggBusiness — Why Business Account LP Refresh
 * All selectors prefixed: b2b-
 * BG: #ffe4c0 | Blue: #1e409b | Font: Black on Orange sections
 * Width: 1440px design, fluid
 * ============================================================ */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --b2b-bg:              #ffe4c0;   /* Page background (warm peach) */
  --b2b-orange:          #ff7a00;   /* Section orange BG */
  --b2b-orange-mid:      #f5a04a;   /* Mid tone accent */
  --b2b-blue:            #1e409b;   /* Primary blue / CTA / outline */
  --b2b-blue-dark:       #162f78;   /* Hover blue */
  --b2b-black:           #111111;
  --b2b-near-black:      #1a1f2e;
  --b2b-body-text:       #1e2433;
  --b2b-muted:           #5c6370;
  --b2b-white:           #ffffff;
  --b2b-card-bg:         #ffffff;
  --b2b-tag-bg:          rgba(30, 64, 155, 0.08);
  --b2b-tag-border:      rgba(30, 64, 155, 0.25);
  --b2b-section-orange-bg:  #f87b00;  /* solid orange for alternating sections */
  --b2b-photo-outline:   #1e409b;

  --b2b-radius-card:  14px;
  --b2b-radius-sm:     8px;
  --b2b-radius-btn:   50px;

  --b2b-shadow-card:  0 4px 24px rgba(0,0,0,.09);
  --b2b-shadow-photo: 0 8px 40px rgba(0,0,0,.18);

  --b2b-font-display: 'Barlow Condensed', sans-serif;
  --b2b-font-body:    'Inter', sans-serif;

  --b2b-max-width: 1320px;
  --b2b-sp-xs:   8px;
  --b2b-sp-sm:  16px;
  --b2b-sp-md:  32px;
  --b2b-sp-lg:  56px;
  --b2b-sp-xl:  80px;
}

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

.b2b-page {
  font-family: var(--b2b-font-body);
  background: var(--b2b-bg);
  color: var(--b2b-body-text);
  -webkit-font-smoothing: antialiased;
}

.b2b-page img {
  display: block;
  max-width: 100%;
  height: auto;
}

.b2b-page a {
  text-decoration: none;
  color: inherit;
}

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.b2b-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--b2b-font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--b2b-body-text);
  margin-bottom: 12px;
}

.b2b-eyebrow--blue {
  color: var(--b2b-blue);
}

.b2b-eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.b2b-section-label {
  font-family: var(--b2b-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--b2b-blue);
  margin-bottom: 10px;
}

.b2b-section-label--dark {
  color: var(--b2b-near-black);
}

/* ============================================================
   CTA BUTTON
   ============================================================ */
.b2b-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--b2b-radius-btn);
  font-family: var(--b2b-font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s;
  min-height: 48px;
}

.b2b-cta-btn--blue {
  background: var(--b2b-blue);
  color: var(--b2b-white);
}

.b2b-cta-btn--blue:hover {
  background: var(--b2b-blue-dark);
  transform: translateY(-1px);
}

.b2b-cta-btn:focus-visible {
  outline: 3px solid #f5a04a;
  outline-offset: 3px;
}

/* Tags */
.b2b-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.b2b-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1.5px solid var(--b2b-tag-border);
  background: var(--b2b-tag-bg);
  font-size: 12px;
  font-weight: 600;
  color: var(--b2b-body-text);
}

.b2b-feature--orange .b2b-tag {
  border-color: rgba(0,0,0,0.25);
  background: rgba(0,0,0,0.07);
  color: var(--b2b-black);
}

/* Phone link */
.b2b-phone-link {
  display: inline-block;
  font-family: var(--b2b-font-body);
  font-size: 22px;
  font-weight: 700;
  color: var(--b2b-blue);
  margin-top: 4px;
}

.b2b-feature--orange .b2b-phone-link {
  color: var(--b2b-near-black);
  text-decoration: underline;
}

.b2b-disclaimer-inline {
  font-size: 11px;
  color: var(--b2b-muted);
  margin-top: 12px;
  line-height: 1.5;
}

.b2b-feature--orange .b2b-disclaimer-inline {
  color: rgba(0,0,0,0.55);
}

/* Credit Key inline badge */
.b2b-ck-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 4px;
  background: #1565c0;
  color: white;
  font-size: 11px;
  font-weight: 700;
  margin-left: 8px;
}


/* ============================================================
   SECTION 1: CAROUSEL
   ============================================================ */
.b2b-carousel-section {
  width: 100%;
  background: var(--b2b-bg);
  overflow: hidden;
}

.b2b-carousel {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}

.b2b-carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.b2b-carousel-slide {
  min-width: 100%;
  width: 100%;
}

.b2b-carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* Arrows */
.b2b-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--b2b-near-black);
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  transition: background 0.2s, color 0.2s;
}

.b2b-carousel-arrow:hover {
  background: var(--b2b-blue);
  color: var(--b2b-white);
}

.b2b-carousel-arrow:focus-visible {
  outline: 3px solid var(--b2b-orange-mid);
  outline-offset: 3px;
}

.b2b-carousel-prev { left: 16px; }
.b2b-carousel-next { right: 16px; }

/* Dots */
.b2b-carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}

.b2b-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  border: 1.5px solid rgba(0,0,0,0.2);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}

.b2b-dot.active {
  background: var(--b2b-blue);
  border-color: var(--b2b-blue);
  transform: scale(1.25);
}

.b2b-dot:focus-visible {
  outline: 3px solid var(--b2b-orange-mid);
}


/* ============================================================
   FEATURE SECTIONS (Alternating)
   ============================================================ */
.b2b-feature-section {
  width: 100%;
  padding: var(--b2b-sp-xl) 20px;
}

.b2b-feature--cream {
  background: var(--b2b-bg);
}

/* Orange sections: orange BG, black text */
.b2b-feature--orange {
  background: var(--b2b-section-orange-bg);
  color: var(--b2b-black);
}

.b2b-feature--orange .b2b-eyebrow {
  color: var(--b2b-black);
}

.b2b-feature--orange .b2b-feature-headline {
  color: var(--b2b-black);
}

.b2b-feature--orange .b2b-feature-body {
  color: var(--b2b-black);
}

.b2b-feature-inner {
  max-width: var(--b2b-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 64px;
}

.b2b-feature-content {
  flex: 1;
  min-width: 0;
}

.b2b-feature-media {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: flex-end;
}

.b2b-feature-media--left {
  justify-content: flex-start;
  order: -1;
}

/* Flip layout for alternating */
.b2b-feature--flip .b2b-feature-inner {
  flex-direction: row-reverse;
}

.b2b-feature--flip .b2b-feature-media {
  justify-content: flex-start;
}

/* Photo frame with blue outline */
.b2b-photo-frame {
  position: relative;
  border-radius: var(--b2b-radius-card);
  overflow: hidden;
  width: 100%;
  max-width: 580px;
}

.b2b-photo-frame--blue {
  outline: 4px solid var(--b2b-blue);
  outline-offset: -4px;
  box-shadow: var(--b2b-shadow-photo);
}

.b2b-feature-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--b2b-radius-card);
}

/* Feature text */
.b2b-feature-headline {
  font-family: var(--b2b-font-display);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 0.95;
  color: var(--b2b-near-black);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.b2b-feature-body {
  font-family: var(--b2b-font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--b2b-body-text);
  max-width: 520px;
  margin-bottom: 28px;
}

.b2b-feature--orange .b2b-feature-body {
  color: var(--b2b-black);
}


/* ============================================================
   SECTION: WHO WE SERVE (Segments)
   ============================================================ */
.b2b-segments-section {
  background: var(--b2b-near-black);
  padding: var(--b2b-sp-xl) 20px;
}

.b2b-segments-inner {
  max-width: var(--b2b-max-width);
  margin: 0 auto;
  text-align: center;
}

.b2b-segments-inner .b2b-section-label {
  color: var(--b2b-orange-mid);
}

.b2b-segments-headline {
  font-family: var(--b2b-font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 900;
  color: var(--b2b-white);
  margin-bottom: 14px;
  line-height: 1;
}

.b2b-segments-sub {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  max-width: 640px;
  margin: 0 auto 48px;
}

.b2b-segments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.b2b-segment-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--b2b-radius-card);
  padding: 36px 28px;
  text-align: left;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.b2b-segment-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}

.b2b-segment-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(248, 123, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
  color: var(--b2b-orange-mid);
}

.b2b-segment-card h3 {
  font-family: var(--b2b-font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--b2b-white);
  margin-bottom: 10px;
}

.b2b-segment-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
}


/* ============================================================
   SECTION: VIDEO
   Orange BG, Black text, Blue button per Excel
   ============================================================ */
.b2b-video-section {
  background: var(--b2b-section-orange-bg);
  padding: var(--b2b-sp-xl) 20px;
}

.b2b-video-inner {
  max-width: var(--b2b-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 64px;
}

.b2b-video-text {
  flex: 0 0 400px;
  min-width: 0;
}

.b2b-video-headline {
  font-family: var(--b2b-font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 900;
  color: var(--b2b-black);
  line-height: 0.95;
  margin-bottom: 16px;
}

.b2b-video-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--b2b-black);
  margin-bottom: 28px;
}

.b2b-video-embed {
  flex: 1;
  min-width: 0;
}

.b2b-video-ratio {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--b2b-radius-card);
  box-shadow: var(--b2b-shadow-photo);
  border: 4px solid var(--b2b-blue);
}

.b2b-video-ratio iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}


/* ============================================================
   SECTION: STATS
   ============================================================ */
.b2b-stats-section {
  background: var(--b2b-bg);
  padding: var(--b2b-sp-xl) 20px;
  border-top: 1px solid rgba(30,64,155,0.1);
  border-bottom: 1px solid rgba(30,64,155,0.1);
}

.b2b-stats-inner {
  max-width: var(--b2b-max-width);
  margin: 0 auto;
  text-align: center;
}

.b2b-stats-headline {
  font-family: var(--b2b-font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--b2b-near-black);
  margin-bottom: 48px;
}

.b2b-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.b2b-stat-item {
  padding: 32px 20px;
  background: var(--b2b-white);
  border-radius: var(--b2b-radius-card);
  box-shadow: var(--b2b-shadow-card);
  transition: transform 0.2s;
}

.b2b-stat-item:hover {
  transform: translateY(-3px);
}

.b2b-stat-icon {
  font-size: 28px;
  color: var(--b2b-blue);
  margin-bottom: 14px;
}

.b2b-stat-number {
  font-family: var(--b2b-font-display);
  font-size: 44px;
  font-weight: 900;
  color: var(--b2b-near-black);
  line-height: 1;
  margin-bottom: 8px;
}

.b2b-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--b2b-muted);
  letter-spacing: 0.02em;
}


/* ============================================================
   SECTION: BECOME AN INSIDER
   Orange BG, black text, blue button per Excel
   ============================================================ */
.b2b-insider-section {
  background: var(--b2b-section-orange-bg);
  padding: var(--b2b-sp-xl) 20px;
}

.b2b-insider-inner {
  max-width: var(--b2b-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.b2b-insider-text {
  flex: 1;
  min-width: 0;
}

.b2b-insider-headline {
  font-family: var(--b2b-font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  line-height: 0.95;
  color: var(--b2b-black);
  margin-bottom: 16px;
}

.b2b-insider-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--b2b-black);
  max-width: 520px;
  margin-bottom: 28px;
}

.b2b-insider-form {
  max-width: 480px;
}

.b2b-insider-input-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.b2b-insider-email {
  flex: 1;
  height: 50px;
  padding: 0 18px;
  border-radius: var(--b2b-radius-btn);
  border: 2px solid rgba(0,0,0,0.25);
  background: rgba(255,255,255,0.7);
  font-family: var(--b2b-font-body);
  font-size: 14px;
  color: var(--b2b-near-black);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.b2b-insider-email:focus {
  border-color: var(--b2b-blue);
  background: var(--b2b-white);
}

.b2b-insider-submit {
  white-space: nowrap;
  flex-shrink: 0;
}

/* Insider visual */
.b2b-insider-visual {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.b2b-insider-badge {
  display: flex;
  align-items: center;
  justify-content: center;
}

.b2b-insider-badge-ring {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--b2b-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 0 0 8px rgba(30,64,155,0.2), 0 8px 32px rgba(30,64,155,0.35);
}

.b2b-insider-star {
  font-size: 40px;
  color: var(--b2b-white);
}

.b2b-insider-badge-text {
  font-family: var(--b2b-font-display);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.8);
}

.b2b-insider-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.b2b-perk-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--b2b-black);
}

.b2b-perk-item i {
  width: 20px;
  color: var(--b2b-blue);
  font-size: 14px;
}


/* ============================================================
   FOOTER
   ============================================================ */
.b2b-footer {
  background: var(--b2b-near-black);
  color: rgba(255,255,255,0.85);
}

.b2b-footer-inner {
  max-width: var(--b2b-max-width);
  margin: 0 auto;
  padding: var(--b2b-sp-lg) 20px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.b2b-footer-brand {
  flex: 0 0 220px;
}

.b2b-footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}

.b2b-footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

.b2b-footer-links {
  flex: 1;
  display: flex;
  gap: 48px;
}

.b2b-footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
}

.b2b-footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.b2b-footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  transition: color 0.15s;
}

.b2b-footer-col ul li a:hover {
  color: var(--b2b-orange-mid);
}

.b2b-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.b2b-footer-bottom-inner {
  max-width: var(--b2b-max-width);
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.b2b-footer-legal {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.b2b-footer-legal a {
  color: rgba(255,255,255,0.45);
  transition: color 0.15s;
}

.b2b-footer-legal a:hover {
  color: rgba(255,255,255,0.8);
}

.hero-banner { background-image:url('../b2b_banner_2.jpg');}


/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.b2b-page .will-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.b2b-page .will-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .b2b-page .will-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   REVISIONS
   ============================================================ */
#ornament, #ornament2 { background-color:#ffe4c0; }   
.c2a-container { background-color: #ff9100; }
.b2b-icons { margin:auto; text-align:center; }
.b2b-icons img { max-width:200px; width:100%; }
.h2-style, .hero-banner-main > .two-col > h3 { font-family:'Inter',sans-serif; line-height:1.2; }
.team-up > p { padding:0 10%; }
.swiper-v {
	max-width: 780px;
	height: 450px;
	
	}


@media only screen and (min-width: 1280px) {
   #just-jill { top:540px; left:0; }
   #bill-bubble { top:18px; left:56px; }
   .hero-banner { background-image:url('../b2b_banner_2.jpg'); }
   .why-newegg-business { background-image:url('../b2b_whyNewEgg_bg.jpg'); }
   #ornament { background-color:#ffe4c0; }
   .why-newegg-2 > .three-col { padding:2% 3%; }
   .why-newegg-2 > .three-col h3 { margin-top:5px; font-family:'Inter',sans-serif; }
   .why-newegg-2 > .three-col > p { font-size:16px; }
   .swiper { height:auto; }
   .swiper-v, .swiper-e { height:360px; }
  }

@media only screen and (min-width: 768px) and (max-width: 1279px) { 
  #ornament { background-color:#ffe4c0; }
  .why-newegg-business {
	background-image: url("../b2b_whyNewEgg_bg.jpg");
	background-image: cover;
	background-position: center center;
	background-repeat: no-repeat;
	align-items: center;
}
.swiper { height:auto; }
.swiper-v { height:390px; }
.swiper-e { height:200px; }
}




/* ============================================================
   RESPONSIVE — Tablet (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .b2b-feature-inner {
    gap: 40px;
  }

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

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

  .b2b-video-inner {
    flex-direction: column;
    gap: 40px;
  }

  .b2b-video-text {
    flex: none;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
  }

  .b2b-video-embed {
    width: 100%;
  }

  .b2b-insider-inner {
    gap: 48px;
  }

  .b2b-insider-visual {
    flex: 0 0 260px;
  }

  .b2b-footer-links {
    gap: 32px;
  }
}




/* ============================================================
   RESPONSIVE — Mobile (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --b2b-sp-xl: 56px;
    --b2b-sp-lg: 40px;
  }

  .swiper-v { height:400px; }
  .swiper-e { height:240px; }

  .b2b-feature-inner,
  .b2b-feature--flip .b2b-feature-inner {
    flex-direction: column;
    gap: 32px;
  }

  .b2b-feature-media,
  .b2b-feature-media--left {
    justify-content: center;
    order: 0;
    width: 100%;
  }

  .b2b-photo-frame {
    max-width: 100%;
  }

  .b2b-segments-grid {
    grid-template-columns: 1fr;
  }

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

  .b2b-insider-inner {
    flex-direction: column;
    gap: 40px;
  }

  .b2b-insider-visual {
    flex: none;
    width: 100%;
    align-items: center;
  }

  .b2b-insider-input-row {
    flex-direction: column;
    align-items: stretch;
  }

  .b2b-insider-email {
    width: 100%;
  }

  .b2b-footer-inner {
    flex-direction: column;
    gap: 36px;
  }

  .b2b-footer-links {
    flex-direction: column;
    gap: 28px;
  }
}


/* ============================================================
   RESPONSIVE — Small Mobile (≤550px)
   ============================================================ */
@media (max-width: 550px) {
  .b2b-carousel-arrow {
    display: none;
  }

  .b2b-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .b2b-stat-number {
    font-size: 36px;
  }

  .b2b-feature-headline {
    font-size: clamp(38px, 10vw, 52px);
  }

  .b2b-insider-headline {
    font-size: clamp(36px, 9vw, 52px);
  }

  #ornament2 { width:30px; height:40px; }
}
