.elementor-14629 .elementor-element.elementor-element-14e6115a{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-451e603 *//* ════════════════════════════════════════════════════════════════════
   VALOR & MEDIA — BRAND IDENTITY | CSS
   Prefix: "bi-"
   Palette: Navy + Gold (matches Valor brand) + Sage/Terracotta/Lavender cards
════════════════════════════════════════════════════════════════════ */


:root {
  --bi-ink:           #1a1a1a;
  --bi-ink-2:         #0e0f11;
  --bi-dark:          #17171a;
  --bi-dark-2:        #1f1f23;
  --bi-navy:          #1a2e4a;
  --bi-navy-2:        #243a5c;
  --bi-text:          #3a3a3d;
  --bi-text-dim:      #6b6d72;
  --bi-gold:          #c2a374;
  --bi-gold-dark:     #a88857;

  --bi-hero-bg:       #1a2e4a;
  --bi-sage:          #d9dfc7;
  --bi-terracotta:    #efc8b0;
  --bi-lavender:      #d8d4e6;
  --bi-peach-bg:      #f5ecd9;
  --bi-beige:         #f5f0e8;
  --bi-ivory:         #f0ebe0;

  --bi-line:          rgba(0,0,0,0.08);
  --bi-white:         #ffffff;

  --bi-font:          'Poppins', sans-serif;
  --bi-font-serif:    'Fraunces', 'Playfair Display', Georgia, serif;
  --bi-radius:        20px;
  --bi-radius-lg:     28px;
  --bi-max:           1200px;
  --bi-ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --bi-ease-smooth:   cubic-bezier(0.16, 1, 0.3, 1);
}


/* ─── ANIMATIONS ─── */
@keyframes biFadeUp { 0% { opacity: 0; transform: translateY(30px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes biFadeIn { 0% { opacity: 0; } 100% { opacity: 1; } }
@keyframes biScaleIn { 0% { opacity: 0; transform: scale(0.94); } 100% { opacity: 1; transform: scale(1); } }
@keyframes biSlideRight { 0% { opacity: 0; transform: translateX(-24px); } 100% { opacity: 1; transform: translateX(0); } }
@keyframes biFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes biPulseRing { 0% { box-shadow: 0 0 0 0 rgba(194,163,116,0.4); } 100% { box-shadow: 0 0 0 12px rgba(194,163,116,0); } }
@keyframes biPulseDot { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: 0.6; } }
@keyframes biTileReveal { 0% { opacity: 0; transform: translateY(20px) scale(0.9); } 100% { opacity: 1; transform: translateY(0) scale(1); } }


/* ─── BASE ─── */
section[class^="bi-"] *,
section[class^="bi-"] *::before,
section[class^="bi-"] *::after {
  box-sizing: border-box;
}

section[class^="bi-"] {
  font-family: var(--bi-font);
  color: var(--bi-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  width: 100%;
}

.bi-container {
  max-width: var(--bi-max);
  margin: 0 auto;
  padding: 0 5%;
}


/* ════════════════════════════════════════════════════
   HERO SECTION — Navy premium
════════════════════════════════════════════════════ */
.bi-hero {
  padding: 40px 5% 60px;
  background: var(--bi-white);
}

.bi-hero-card {
  max-width: var(--bi-max);
  margin: 0 auto;
  background: var(--bi-hero-bg);
  border-radius: var(--bi-radius-lg);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  overflow: hidden;
  position: relative;
  min-height: 560px;
  align-items: stretch;
  animation: biScaleIn 0.9s var(--bi-ease-smooth) both;
}

.bi-hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(194,163,116,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(194,163,116,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.bi-hero-left {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  animation: biSlideRight 0.9s var(--bi-ease-smooth) 0.2s both;
}

.bi-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(194,163,116,0.15);
  border: 1px solid rgba(194,163,116,0.35);
  border-radius: 100px;
  color: var(--bi-gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  width: fit-content;
}

.bi-pulse {
  width: 6px;
  height: 6px;
  background: var(--bi-gold);
  border-radius: 50%;
  animation: biPulseDot 2s ease-in-out infinite;
}

.bi-hero-left h1 {
  font-family: var(--bi-font-serif);
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 600;
  line-height: 1.02;
  color: var(--bi-white);
  margin: 0 0 20px 0;
  letter-spacing: -1.5px;
}

.bi-hero-left h1 em {
  font-style: italic;
  color: var(--bi-gold);
  font-weight: 500;
}

.bi-hero-left p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  margin: 0 0 32px 0;
  max-width: 480px;
}

.bi-hero-stats {
  display: flex;
  gap: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.bi-stat { display: flex; flex-direction: column; }

.bi-stat-num {
  font-family: var(--bi-font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--bi-gold);
  line-height: 1;
  letter-spacing: -1px;
}

.bi-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
  font-weight: 500;
}


/* Hero visual: Brand system grid */
.bi-hero-visual {
  position: relative;
  padding: 20px;
  animation: biFadeIn 1.2s var(--bi-ease-smooth) 0.3s both;
}

.bi-system-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 100%;
  min-height: 500px;
}

.bi-system-tile {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--bi-radius);
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--bi-ease-smooth);
  opacity: 0;
  animation: biTileReveal 0.8s var(--bi-ease-smooth) forwards;
  display: flex;
  flex-direction: column;
}

.bi-system-tile:nth-child(1) { animation-delay: 0.5s; }
.bi-system-tile:nth-child(2) { animation-delay: 0.7s; }
.bi-system-tile:nth-child(3) { animation-delay: 0.9s; }
.bi-system-tile:nth-child(4) { animation-delay: 1.1s; }

.bi-system-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(194,163,116,0.1) 100%);
  opacity: 0;
  transition: opacity 0.5s var(--bi-ease-smooth);
}

.bi-system-tile:hover {
  border-color: rgba(194,163,116,0.5);
  transform: translateY(-4px);
  background: rgba(255,255,255,0.06);
}

.bi-system-tile:hover::before { opacity: 1; }

.bi-tile-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bi-gold);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

/* Tile 1: Logo */
.bi-logo-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.bi-logo-display svg {
  width: 68px;
  height: 68px;
}

.bi-logo-name {
  font-family: var(--bi-font-serif);
  font-size: 13px;
  font-weight: 700;
  color: var(--bi-white);
  letter-spacing: 4px;
}

/* Tile 2: Color Palette */
.bi-palette {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.bi-swatch {
  border-radius: 8px;
  display: flex;
  align-items: flex-end;
  padding: 6px;
  font-family: 'Courier New', monospace;
  font-size: 8px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  transition: transform 0.3s var(--bi-ease-smooth);
  min-height: 48px;
}

.bi-swatch:hover { transform: scale(1.04); }

.bi-sw-1 { background: #1a2e4a; }
.bi-sw-2 { background: #c2a374; color: #1a1a1a; }
.bi-sw-3 { background: #f0ebe0; color: #1a2e4a; }
.bi-sw-4 { background: #8b2e1a; }

.bi-swatch small {
  letter-spacing: 0.5px;
  opacity: 0.85;
}

/* Tile 3: Typography */
.bi-type-display {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.bi-type-serif {
  font-family: var(--bi-font-serif);
  font-size: 56px;
  font-weight: 700;
  color: var(--bi-white);
  line-height: 1;
  letter-spacing: -2px;
}

.bi-type-specs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 10px;
  color: rgba(255,255,255,0.7);
}

.bi-type-specs strong {
  color: var(--bi-gold);
  font-weight: 600;
  margin-right: 4px;
}

/* Tile 4: Brand Application */
.bi-apply-card {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.bi-apply-card svg {
  width: 100%;
  max-width: 150px;
  height: auto;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  border-radius: 6px;
}

/* Hero floating card */
.bi-hero-float-card {
  position: absolute;
  bottom: 32px;
  right: 32px;
  background: var(--bi-white);
  padding: 14px 20px 14px 14px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  animation: biFloat 4s ease-in-out infinite;
  z-index: 10;
}

.bi-float-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, #c2a374 0%, #8b6f3f 100%);
  color: var(--bi-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.bi-float-name {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--bi-text-dim);
  letter-spacing: 0.3px;
}

.bi-float-meta {
  font-size: 14px;
  font-weight: 700;
  color: var(--bi-ink);
  font-family: var(--bi-font-serif);
}


/* ════════════════════════════════════════════════════
   BRAND COMPONENTS STRIP
════════════════════════════════════════════════════ */
.bi-platforms {
  background: var(--bi-beige);
  padding: 36px 0;
  border-top: 1px solid var(--bi-line);
  border-bottom: 1px solid var(--bi-line);
}

.bi-platforms-label {
  text-align: center;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--bi-text-dim);
  margin: 0 0 22px 0;
  letter-spacing: 0.3px;
}

.bi-platforms-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.bi-platform {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--bi-text-dim);
  transition: color 0.3s var(--bi-ease-smooth), transform 0.3s var(--bi-ease-smooth);
  cursor: default;
}

.bi-platform:hover { color: var(--bi-ink); transform: translateY(-2px); }
.bi-platform i { font-size: 20px; color: var(--bi-gold); }
.bi-platform span { font-size: 13px; font-weight: 600; }


/* ════════════════════════════════════════════════════
   WHY CARDS — with unique brand system visuals
════════════════════════════════════════════════════ */
.bi-why {
  padding: 80px 0 90px;
  background: var(--bi-white);
}

.bi-why-title {
  font-family: var(--bi-font-serif);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--bi-ink);
  margin: 0 0 50px 0;
  letter-spacing: -0.8px;
  animation: biFadeUp 0.8s var(--bi-ease-smooth) both;
}

.bi-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bi-why-card {
  border-radius: var(--bi-radius);
  padding: 0 0 32px 0;
  transition: transform 0.5s var(--bi-ease-smooth), box-shadow 0.5s var(--bi-ease-smooth);
  display: flex;
  flex-direction: column;
  opacity: 0;
  animation: biFadeUp 0.8s var(--bi-ease-smooth) forwards;
  overflow: hidden;
}

.bi-why-card:nth-child(1) { animation-delay: 0.1s; }
.bi-why-card:nth-child(2) { animation-delay: 0.25s; }
.bi-why-card:nth-child(3) { animation-delay: 0.4s; }

.bi-why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.bi-card-sage       { background: var(--bi-sage); }
.bi-card-terracotta { background: var(--bi-terracotta); }
.bi-card-lavender   { background: var(--bi-lavender); }

.bi-why-visual {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s var(--bi-ease-smooth);
}

.bi-why-card:hover .bi-why-visual {
  transform: scale(1.04);
}

/* Visual 1: Brand System Network */
.bi-visual-system {
  background: #eef1e5;
  position: relative;
}

.bi-node-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bi-node {
  background: var(--bi-white);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--bi-ink);
  position: absolute;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  z-index: 1;
}

.bi-node-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bi-navy);
  color: var(--bi-white);
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 1px;
}

.bi-node-1 { top: 18%; left: 15%; }
.bi-node-2 { top: 18%; right: 15%; }
.bi-node-3 { bottom: 18%; left: 15%; }
.bi-node-4 { bottom: 18%; right: 15%; }

/* Visual 2: Strategy Document */
.bi-visual-strategy {
  background: #fbe8d9;
  padding: 20px;
}

.bi-strategy-doc {
  background: var(--bi-white);
  width: 70%;
  max-width: 200px;
  padding: 18px 16px;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transform: rotate(-2deg);
}

.bi-doc-line {
  height: 4px;
  background: rgba(0,0,0,0.15);
  border-radius: 2px;
  margin-bottom: 6px;
}

.bi-doc-header {
  height: 8px;
  background: var(--bi-navy);
  width: 60%;
  margin-bottom: 10px;
}

.bi-doc-sub {
  width: 85%;
  background: rgba(0,0,0,0.25);
  margin-bottom: 14px;
  height: 5px;
}

.bi-doc-short { width: 50%; }
.bi-doc-med { width: 75%; }

.bi-doc-highlight {
  background: rgba(194,163,116,0.2);
  border-left: 2px solid var(--bi-gold);
  padding: 6px 8px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  font-weight: 600;
  color: var(--bi-navy);
}

.bi-doc-highlight i {
  color: var(--bi-gold);
  font-size: 8px;
}

/* Visual 3: Guidelines Pages */
.bi-visual-guidelines {
  background: #ebe8f0;
  position: relative;
  padding: 20px;
}

.bi-guide-page {
  position: absolute;
  background: var(--bi-white);
  border-radius: 4px;
  padding: 14px 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  width: 90px;
  height: 110px;
}

.bi-page-1 {
  top: 30px;
  left: 15%;
  transform: rotate(-8deg);
  z-index: 1;
}

.bi-page-2 {
  top: 40px;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
  z-index: 3;
}

.bi-page-3 {
  top: 30px;
  right: 15%;
  transform: rotate(8deg);
  z-index: 2;
}

.bi-guide-logo {
  width: 22px;
  height: 22px;
  background: var(--bi-navy);
  border-radius: 5px;
  color: var(--bi-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--bi-font-serif);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
}

.bi-guide-line-1 {
  height: 3px;
  background: rgba(0,0,0,0.2);
  width: 80%;
  border-radius: 2px;
  margin-bottom: 4px;
}

.bi-guide-line-2 {
  height: 3px;
  background: rgba(0,0,0,0.12);
  width: 60%;
  border-radius: 2px;
}

.bi-guide-swatches {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}

.bi-guide-swatches span {
  flex: 1;
  height: 16px;
  border-radius: 3px;
}

.bi-guide-swatches span:nth-child(1) { background: #1a2e4a; }
.bi-guide-swatches span:nth-child(2) { background: #c2a374; }
.bi-guide-swatches span:nth-child(3) { background: #8b2e1a; }

.bi-guide-text {
  font-family: var(--bi-font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--bi-navy);
  line-height: 1;
  margin-bottom: 6px;
}

.bi-why-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px 36px;
  font-size: 22px;
  color: var(--bi-ink);
  background: rgba(255,255,255,0.6);
  border-radius: 14px;
  transition: transform 0.4s var(--bi-ease-smooth), background 0.4s var(--bi-ease-smooth);
}

.bi-why-card:hover .bi-why-icon {
  transform: rotate(-6deg) scale(1.05);
  background: var(--bi-white);
}

.bi-why-card h3 {
  font-family: var(--bi-font);
  font-size: 18px;
  font-weight: 700;
  color: var(--bi-ink);
  margin: 0 36px 12px 36px;
  letter-spacing: -0.2px;
  line-height: 1.3;
}

.bi-why-card p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--bi-text);
  margin: 0 36px;
}


/* ════════════════════════════════════════════════════
   BRAND SYSTEM SHOWCASE — 4 component visualizations
════════════════════════════════════════════════════ */
.bi-showcase {
  padding: 80px 0;
  background: var(--bi-beige);
}

.bi-showcase-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}

.bi-badge-light {
  display: inline-block;
  padding: 6px 16px;
  background: var(--bi-white);
  border: 1px solid var(--bi-line);
  border-radius: 100px;
  color: var(--bi-text);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.bi-showcase-head h2 {
  font-family: var(--bi-font-serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  color: var(--bi-ink);
  margin: 0 0 12px 0;
  letter-spacing: -0.6px;
  line-height: 1.2;
}

.bi-showcase-head p {
  font-size: 14px;
  color: var(--bi-text-dim);
  line-height: 1.65;
  margin: 0;
}

.bi-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.bi-showcase-item {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--bi-radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.5s var(--bi-ease-smooth);
}

.bi-showcase-item:hover {
  transform: translateY(-6px);
}

.bi-show-canvas {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  transition: transform 1.3s var(--bi-ease-smooth);
}

.bi-showcase-item:hover .bi-show-canvas {
  transform: scale(1.04);
}

/* Item 1: Color Palette stack */
.bi-show-1 { background: var(--bi-ivory); }
.bi-color-stack {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bi-color-block {
  padding: 14px 14px;
  border-radius: 8px;
  color: var(--bi-white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Item 2: Typography stack */
.bi-show-2 { background: #f5ecd9; }
.bi-type-stack {
  width: 100%;
  text-align: left;
}

.bi-type-row {
  margin-bottom: 10px;
  color: var(--bi-ink);
}

.bi-type-h1 {
  font-family: var(--bi-font-serif);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.05;
}

.bi-type-h2 {
  font-family: var(--bi-font-serif);
  font-size: 16px;
  font-weight: 600;
  font-style: italic;
  color: var(--bi-gold-dark);
}

.bi-type-body {
  font-family: var(--bi-font);
  font-size: 10px;
  font-weight: 400;
  color: var(--bi-text);
  line-height: 1.5;
}

.bi-type-caption {
  font-family: var(--bi-font);
  font-size: 8px;
  font-weight: 600;
  color: var(--bi-text-dim);
  letter-spacing: 2px;
  margin-top: 6px;
}

/* Item 3: Brand Voice */
.bi-show-3 { background: linear-gradient(135deg, #1a2e4a 0%, #0e1a2c 100%); color: var(--bi-white); }

.bi-voice-card {
  text-align: left;
  width: 100%;
}

.bi-voice-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bi-gold);
  margin-bottom: 12px;
}

.bi-voice-value {
  font-family: var(--bi-font-serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--bi-white);
  line-height: 1.45;
  margin-bottom: 16px;
}

.bi-voice-value em {
  font-style: italic;
  color: rgba(255,255,255,0.9);
}

.bi-voice-attrs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.bi-voice-attrs span {
  padding: 3px 8px;
  background: rgba(194,163,116,0.2);
  border: 1px solid rgba(194,163,116,0.4);
  border-radius: 100px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--bi-gold);
}

/* Item 4: Brand System Combined */
.bi-show-4 { background: linear-gradient(135deg, #2a2a2e 0%, #1a1a1a 100%); }
.bi-brand-mock svg {
  width: 130px;
  height: 110px;
}

.bi-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(14,15,17,0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 22px;
  color: var(--bi-white);
  transition: background 0.4s var(--bi-ease-smooth);
  pointer-events: none;
}

.bi-showcase-item:hover .bi-showcase-overlay {
  background: linear-gradient(180deg, rgba(14,15,17,0.3) 0%, rgba(14,15,17,0.92) 100%);
}

.bi-showcase-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--bi-white);
  margin-bottom: 10px;
  align-self: flex-start;
}

.bi-showcase-overlay h4 {
  font-family: var(--bi-font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--bi-white);
  margin: 0;
  letter-spacing: -0.2px;
}


/* ════════════════════════════════════════════════════
   DELIVERABLES
════════════════════════════════════════════════════ */
.bi-deliverables {
  padding: 90px 0;
  background: var(--bi-white);
}

.bi-deliv-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.bi-deliv-left {
  position: sticky;
  top: 100px;
}

.bi-deliv-left h2 {
  font-family: var(--bi-font-serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
  color: var(--bi-ink);
  margin: 0 0 18px 0;
  letter-spacing: -0.6px;
  line-height: 1.2;
}

.bi-deliv-left p {
  font-size: 14.5px;
  color: var(--bi-text-dim);
  line-height: 1.75;
  margin: 0;
  max-width: 380px;
}

.bi-deliv-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.bi-deliv-item {
  background: var(--bi-beige);
  border-radius: var(--bi-radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.4s var(--bi-ease-smooth);
  border: 1px solid transparent;
}

.bi-deliv-item:hover {
  background: var(--bi-white);
  border-color: var(--bi-gold);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(194,163,116,0.15);
}

.bi-deliv-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(194,163,116,0.15);
  color: var(--bi-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform 0.4s var(--bi-ease-smooth);
}

.bi-deliv-item:hover .bi-deliv-icon {
  transform: rotate(-6deg) scale(1.05);
}

.bi-deliv-item h4 {
  font-family: var(--bi-font);
  font-size: 15px;
  font-weight: 700;
  color: var(--bi-ink);
  margin: 0 0 6px 0;
  letter-spacing: -0.2px;
  line-height: 1.3;
}

.bi-deliv-item p {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--bi-text-dim);
  margin: 0;
}


/* ════════════════════════════════════════════════════
   SERVICES (Dark Section) — Navy gradient
════════════════════════════════════════════════════ */
.bi-services {
  background: var(--bi-navy);
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(194,163,116,0.12) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(194,163,116,0.08) 0%, transparent 50%);
}

.bi-services::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25px 25px, rgba(255,255,255,0.02) 1.5px, transparent 1.5px);
  background-size: 50px 50px;
  pointer-events: none;
}

.bi-services .bi-container { position: relative; z-index: 1; }

.bi-services-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  color: var(--bi-white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-bottom: 20px;
  animation: biFadeUp 0.7s var(--bi-ease-smooth) both;
}

.bi-services-title {
  font-family: var(--bi-font-serif);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 600;
  color: var(--bi-white);
  margin: 0 0 14px 0;
  letter-spacing: -0.8px;
  line-height: 1.2;
  animation: biFadeUp 0.8s var(--bi-ease-smooth) 0.1s both;
}

.bi-services-sub {
  font-size: 14.5px;
  color: rgba(255,255,255,0.6);
  margin: 0 0 50px 0;
  line-height: 1.65;
  max-width: 580px;
  animation: biFadeUp 0.8s var(--bi-ease-smooth) 0.2s both;
}

.bi-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.bi-service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--bi-radius);
  padding: 36px 36px;
  transition: border-color 0.4s var(--bi-ease-smooth),
              transform 0.4s var(--bi-ease-smooth),
              background 0.4s var(--bi-ease-smooth);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: biFadeUp 0.8s var(--bi-ease-smooth) forwards;
}

.bi-service-card:nth-child(1) { animation-delay: 0.1s; }
.bi-service-card:nth-child(2) { animation-delay: 0.2s; }
.bi-service-card:nth-child(3) { animation-delay: 0.3s; }
.bi-service-card:nth-child(4) { animation-delay: 0.4s; }

.bi-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--bi-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--bi-ease-smooth);
}

.bi-service-card:hover {
  border-color: rgba(194,163,116,0.5);
  transform: translateY(-5px);
  background: rgba(255,255,255,0.06);
}

.bi-service-card:hover::before { transform: scaleX(1); }

.bi-service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(194,163,116,0.15);
  color: var(--bi-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 22px;
  transition: transform 0.4s var(--bi-ease-smooth), background 0.4s var(--bi-ease-smooth);
}

.bi-service-card:hover .bi-service-icon {
  transform: rotate(-6deg) scale(1.05);
  background: rgba(194,163,116,0.25);
}

.bi-service-card h3 {
  font-family: var(--bi-font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--bi-white);
  margin: 0 0 14px 0;
  letter-spacing: -0.3px;
  line-height: 1.3;
  transition: color 0.3s var(--bi-ease-smooth);
}

.bi-service-card:hover h3 { color: var(--bi-gold); }

.bi-service-card p {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin: 0;
}


/* ════════════════════════════════════════════════════
   PROCESS
════════════════════════════════════════════════════ */
.bi-process {
  padding: 90px 0;
  background: var(--bi-white);
}

.bi-process-wrap {
  max-width: var(--bi-max);
  margin: 0 auto;
  background: var(--bi-peach-bg);
  background-image:
    radial-gradient(circle at 15px 15px, rgba(0,0,0,0.025) 1px, transparent 1px);
  background-size: 30px 30px;
  border-radius: var(--bi-radius-lg);
  padding: 50px 50px 70px;
  position: relative;
  overflow: hidden;
}

.bi-process-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}

.bi-badge-dark {
  display: inline-block;
  padding: 6px 16px;
  background: var(--bi-white);
  border: 1px solid var(--bi-line);
  border-radius: 100px;
  color: var(--bi-text);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.bi-process-header h2 {
  font-family: var(--bi-font-serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  color: var(--bi-ink);
  margin: 0;
  letter-spacing: -0.5px;
  max-width: 540px;
  line-height: 1.2;
}

.bi-process-deco {
  width: 160px;
  height: 120px;
  flex-shrink: 0;
  animation: biFloat 4s ease-in-out infinite;
}

.bi-process-deco svg {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.bi-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.bi-process-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: rgba(26,26,26,0.15);
  z-index: 0;
}

.bi-process-step {
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: biFadeUp 0.8s var(--bi-ease-smooth) forwards;
}

.bi-process-step:nth-child(1) { animation-delay: 0.1s; }
.bi-process-step:nth-child(2) { animation-delay: 0.25s; }
.bi-process-step:nth-child(3) { animation-delay: 0.4s; }
.bi-process-step:nth-child(4) { animation-delay: 0.55s; }

.bi-process-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--bi-ink);
  margin-bottom: 14px;
}

.bi-process-pin {
  width: 32px;
  height: 32px;
  background: var(--bi-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--bi-white);
  font-size: 14px;
  box-shadow: 0 4px 14px rgba(194,163,116,0.3);
  animation: biFloat 3s ease-in-out infinite;
  transition: transform 0.3s var(--bi-ease-smooth);
}

.bi-process-step:nth-child(2) .bi-process-pin { animation-delay: 0.3s; }
.bi-process-step:nth-child(3) .bi-process-pin { animation-delay: 0.6s; }
.bi-process-step:nth-child(4) .bi-process-pin { animation-delay: 0.9s; }

.bi-process-step:hover .bi-process-pin {
  transform: scale(1.15);
  animation: biPulseRing 1.2s ease-out infinite;
}

.bi-process-card {
  background: var(--bi-white);
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.4s var(--bi-ease-smooth),
              box-shadow 0.4s var(--bi-ease-smooth);
}

.bi-process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.1);
}

.bi-process-card h3 {
  font-family: var(--bi-font);
  font-size: 15px;
  font-weight: 700;
  color: var(--bi-ink);
  margin: 0 0 10px 0;
  letter-spacing: -0.2px;
  line-height: 1.3;
}

.bi-process-card p {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--bi-text-dim);
  margin: 0;
}


/* ════════════════════════════════════════════════════
   CTA SECTION — Navy gradient
════════════════════════════════════════════════════ */
.bi-cta {
  padding: 90px 5% 110px;
  background: var(--bi-navy);
  text-align: center;
  position: relative;
  overflow: hidden;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(194,163,116,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(194,163,116,0.1) 0%, transparent 50%);
}

.bi-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25px 25px, rgba(255,255,255,0.02) 1.5px, transparent 1.5px);
  background-size: 50px 50px;
  pointer-events: none;
}

.bi-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(194,163,116,0.25);
  border-radius: var(--bi-radius-lg);
  padding: 60px 40px;
  position: relative;
  z-index: 1;
  animation: biFadeUp 0.8s var(--bi-ease-smooth) both;
}

.bi-cta-inner h2 {
  font-family: var(--bi-font-serif);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--bi-white);
  margin: 0 0 16px 0;
  letter-spacing: -0.8px;
}

.bi-cta-inner h2 em {
  font-style: italic;
  color: var(--bi-gold);
  font-weight: 500;
}

.bi-cta-inner p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin: 0 0 32px 0;
}

.bi-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 8px 16px 30px;
  background: var(--bi-gold);
  color: var(--bi-navy);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s var(--bi-ease-smooth);
  box-shadow: 0 8px 24px rgba(194,163,116,0.3);
  position: relative;
  overflow: hidden;
}

.bi-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.7s var(--bi-ease-smooth);
}

.bi-cta-btn:hover {
  background: var(--bi-gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(194,163,116,0.5);
  color: var(--bi-navy);
}

.bi-cta-btn:hover::before { left: 100%; }

.bi-cta-arrow {
  width: 36px;
  height: 36px;
  background: var(--bi-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bi-gold);
  font-size: 12px;
  transition: transform 0.4s var(--bi-ease-smooth);
  position: relative;
  z-index: 1;
}

.bi-cta-btn:hover .bi-cta-arrow { transform: rotate(45deg); }


/* ════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .bi-hero-card { grid-template-columns: 1fr; min-height: auto; }
  .bi-hero-left { padding: 50px 40px 30px; }
  .bi-hero-visual { padding: 20px 20px 70px; }
  .bi-system-grid { min-height: 420px; }
  .bi-hero-float-card { right: 20px; bottom: 20px; }
  .bi-why-grid,
  .bi-showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .bi-why-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
  .bi-services-grid { grid-template-columns: 1fr; }
  .bi-deliv-grid { grid-template-columns: 1fr; gap: 40px; }
  .bi-deliv-left { position: static; }
  .bi-process-header { flex-direction: column; align-items: flex-start; }
  .bi-process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .bi-process-grid::before { display: none; }
  .bi-process-wrap { padding: 40px 30px 50px; }
  .bi-platforms-grid { gap: 28px; }
}

@media (max-width: 640px) {
  .bi-hero { padding: 24px 5% 40px; }
  .bi-hero-left { padding: 40px 28px 20px; }
  .bi-hero-visual { padding: 10px 10px 60px; }
  .bi-system-grid { min-height: 380px; gap: 10px; }
  .bi-system-tile { padding: 16px 14px; }
  .bi-logo-display svg { width: 52px; height: 52px; }
  .bi-logo-name { font-size: 11px; letter-spacing: 3px; }
  .bi-type-serif { font-size: 42px; }
  .bi-hero-stats { gap: 20px; }
  .bi-stat-num { font-size: 24px; }
  .bi-platforms { padding: 26px 0; }
  .bi-platforms-grid { gap: 20px; }
  .bi-platform i { font-size: 18px; }
  .bi-platform span { font-size: 12px; }
  .bi-why { padding: 60px 0 70px; }
  .bi-why-grid,
  .bi-showcase-grid { grid-template-columns: 1fr; gap: 18px; }
  .bi-why-card:last-child { grid-column: auto; max-width: none; }
  .bi-why-visual { height: 180px; }
  .bi-why-icon { margin-left: 28px; }
  .bi-why-card h3,
  .bi-why-card p { margin-left: 28px; margin-right: 28px; }
  .bi-showcase { padding: 60px 0; }
  .bi-showcase-item { aspect-ratio: 16/10; }
  .bi-type-h1 { font-size: 22px; }
  .bi-deliverables { padding: 60px 0; }
  .bi-deliv-right { grid-template-columns: 1fr; }
  .bi-services { padding: 60px 0 70px; }
  .bi-service-card { padding: 28px 26px; }
  .bi-process { padding: 60px 0; }
  .bi-process-wrap { padding: 32px 22px 40px; border-radius: var(--bi-radius); }
  .bi-process-grid { grid-template-columns: 1fr; gap: 28px; }
  .bi-process-deco { display: none; }
  .bi-cta { padding: 60px 5% 80px; }
  .bi-cta-inner { padding: 44px 26px; }
  .bi-cta-btn { padding: 14px 6px 14px 24px; font-size: 13px; gap: 10px; }
  .bi-cta-arrow { width: 32px; height: 32px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  section[class^="bi-"] *,
  section[class^="bi-"] *::before,
  section[class^="bi-"] *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.2s !important;
  }
}/* End custom CSS */