/* ==========================================================================
   BRN GLOBAL v2, Premium Enterprise Design System
   Deep navy + crimson red accent + crisp white
   ========================================================================== */

:root {
  /* Brand */
  --red:        #C8102E;
  --red-dark:   #A00D24;
  --red-light:  #FEE2E2;
  --navy:       #0B1F3A;
  --navy-mid:   #132948;
  --navy-light: #1E3A5F;
  --white:      #FFFFFF;
  --off-white:  #F7F9FC;
  --gray-100:   #F1F5F9;
  --gray-200:   #E2E8F0;
  --gray-400:   #94A3B8;
  --gray-600:   #475569;
  --gray-800:   #1E293B;
  --text:       #0F172A;

  /* Gradients */
  --grad-red:   linear-gradient(135deg, #C8102E 0%, #A00D24 100%);
  --grad-navy:  linear-gradient(135deg, #0B1F3A 0%, #1E3A5F 100%);
  --grad-hero:  linear-gradient(135deg, #0B1F3A 0%, #132948 60%, #1E3A5F 100%);

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 100px;

  /* Type */
  --font-display: 'Sora', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-data:    'Space Grotesk', sans-serif;

  /* Radius */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;

  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  --shadow-xl:  0 24px 64px rgba(0,0,0,0.16), 0 4px 16px rgba(0,0,0,0.08);
  --shadow-red: 0 8px 28px rgba(200,16,46,0.35);
}

/* ---- Reset / Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:visited { color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* ---- Buttons ---- */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-weight: 700; border-radius: var(--r-md); transition: all 0.25s ease; white-space: nowrap; text-decoration: none; border: none; cursor: pointer; letter-spacing: 0.01em; }
.btn-lg { padding: 15px 28px; font-size: 0.95rem; }
.btn-md { padding: 11px 22px; font-size: 0.875rem; }
.btn-sm { padding: 8px 16px; font-size: 0.8rem; }

.btn-red { background: var(--grad-red); color: #fff; box-shadow: var(--shadow-red); }
.btn-red:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(200,16,46,0.45); }
.btn-red svg { width: 16px; height: 16px; transition: transform 0.25s; }
.btn-red:hover svg { transform: translateX(3px); }

.btn-white { background: #fff; color: var(--navy); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

.btn-outline-red { background: transparent; color: var(--red); border: 2px solid var(--red); }
.btn-outline-red:hover { background: var(--red); color: #fff; }

/* ---- Section utilities ---- */
.section { padding: var(--space-2xl) 0; }
.section-sm { padding: 60px 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--red); border-radius: 2px; flex-shrink: 0; }

.section-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 3rem); letter-spacing: -0.03em; line-height: 1.12;
  color: var(--text);
}
.section-title.on-dark { color: #fff; }
.section-subtitle { font-size: 1.05rem; color: var(--gray-600); line-height: 1.72; margin-top: 14px; max-width: 620px; }
.section-subtitle.on-dark { color: rgba(255,255,255,0.65); }
.section-head { margin-bottom: var(--space-xl); }
.section-head.center { text-align: center; }
.section-head.center .section-subtitle { margin-left: auto; margin-right: auto; }
.section-head.center .eyebrow { justify-content: center; }

/* ---- Scroll reveal ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s cubic-bezier(.4,0,.2,1), transform 0.6s cubic-bezier(.4,0,.2,1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }

/* ==========================================================================
   HEADER / NAV, v2
   ========================================================================== */
.v2-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 76px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: height 0.3s ease, box-shadow 0.3s ease;
}
.v2-header.scrolled { height: 68px; box-shadow: var(--shadow-md); }
.v2-nav { display: flex; align-items: center; height: 100%; gap: 0; justify-content: space-between; }

/* Logo */
.v2-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.v2-logo img { height: 56px; width: auto; }
.v2-header.scrolled .v2-logo img { height: 50px; }

/* Nav list */
.v2-nav-list { display: flex; align-items: stretch; gap: 0; height: 76px; list-style: none; }
.v2-header.scrolled .v2-nav-list { height: 68px; }
.v2-nav-list > li { display: flex; align-items: center; position: static; }

.v2-nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 0 15px; height: 100%;
  font-size: 0.875rem; font-weight: 600; color: var(--gray-800);
  position: relative; transition: color 0.2s;
  white-space: nowrap;
}
.v2-nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 15px; right: 15px;
  height: 3px; background: var(--red);
  transform: scaleX(0); transition: transform 0.25s ease;
}
.v2-nav-link:hover { color: var(--red); }
.v2-nav-link:hover::after,
.v2-nav-link.active::after { transform: scaleX(1); }
.v2-nav-link.active { color: var(--red); }
.v2-nav-link:visited { color: var(--gray-800); }
.v2-nav-link.active:visited { color: var(--red); }
.v2-nav-link svg { width: 12px; height: 12px; color: var(--gray-400); transition: transform 0.25s; }
.v2-nav-list > li.has-dd:hover .v2-nav-link svg { transform: rotate(180deg); color: var(--red); }

/* Mega dropdown */
.v2-dropdown {
  position: fixed; top: 76px; left: 0; right: 0;
  background: #fff;
  border-top: 3px solid var(--red);
  box-shadow: var(--shadow-xl);
  padding: 36px 0 40px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
  z-index: 999;
}
.v2-header.scrolled .v2-dropdown { top: 68px; }
.has-dd:hover .v2-dropdown,
.has-dd:focus-within .v2-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transition: opacity 0.2s ease, visibility 0s;
}
.v2-dropdown-inner { max-width: 1240px; margin: 0 auto; padding: 0 24px; display: grid; gap: 48px; }
.v2-dropdown-inner.cols2 { grid-template-columns: 1fr 1fr; }
.v2-dropdown-inner.cols1 { grid-template-columns: 260px; }

.v2-dd-heading {
  font-size: 0.67rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gray-400);
  padding-bottom: 10px; margin-bottom: 8px;
  border-bottom: 1px solid var(--gray-100);
}
.v2-dd-link {
  display: block; padding: 8px 10px 8px 12px;
  font-size: 0.875rem; font-weight: 500; color: var(--gray-600);
  border-left: 2px solid transparent;
  border-radius: 0 6px 6px 0;
  transition: all 0.15s ease;
}
.v2-dd-link:hover { color: var(--red); background: var(--red-light); border-left-color: var(--red); }
.v2-dd-link:visited { color: var(--gray-600); }

/* Compact company dropdown */
.v2-dropdown.compact {
  position: absolute; top: 76px; left: auto; right: 0;
  width: 240px; border-radius: 0 0 14px 14px;
}
.v2-header.scrolled .v2-dropdown.compact { top: 68px; }

/* Nav CTA */
.v2-nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.v2-phone {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 700; color: var(--gray-800);
  padding: 8px 14px; border-radius: 8px; border: 1.5px solid var(--gray-200);
  transition: all 0.2s;
}
.v2-phone:hover { border-color: var(--red); color: var(--red); }
.v2-phone svg { width: 14px; height: 14px; color: var(--red); }
.v2-cta-btn {
  padding: 11px 22px; background: var(--grad-red); color: #fff;
  font-size: 0.875rem; font-weight: 700; border-radius: 10px;
  box-shadow: var(--shadow-red); transition: all 0.2s;
  white-space: nowrap; text-decoration: none;
}
.v2-cta-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 32px rgba(200,16,46,0.45); }

/* Hamburger */
.v2-hamburger {
  display: none; width: 44px; height: 44px; border-radius: 8px;
  align-items: center; justify-content: center;
  background: var(--gray-100); border: 1.5px solid var(--gray-200);
  cursor: pointer; transition: all 0.2s;
}
.v2-hamburger:hover { background: var(--red-light); border-color: var(--red); }
.v2-ham-icon { width: 20px; display: flex; flex-direction: column; gap: 5px; }
.v2-ham-line { width: 100%; height: 2px; background: var(--gray-600); border-radius: 2px; transition: all 0.3s ease; transform-origin: center; }
.v2-hamburger.open .v2-ham-line { background: var(--red); }
.v2-hamburger.open .v2-ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.v2-hamburger.open .v2-ham-line:nth-child(2) { opacity: 0; }
.v2-hamburger.open .v2-ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile panel */
.v2-mobile-overlay { position: fixed; inset: 0; top: 76px; background: rgba(11,31,58,0.5); z-index: 998; opacity: 0; visibility: hidden; transition: all 0.3s; }
.v2-mobile-overlay.open { opacity: 1; visibility: visible; }
.v2-mobile-panel {
  position: fixed; top: 76px; left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 999;
  overflow-y: auto; display: flex; flex-direction: column;
  transform: translateX(100%); visibility: hidden;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), visibility 0s linear 0.35s;
}
.v2-mobile-panel.open { transform: translateX(0); visibility: visible; transition: transform 0.35s cubic-bezier(.4,0,.2,1); }
.v2-mob-list { padding: 8px 20px; flex: 1; }
.v2-mob-item { border-bottom: 1px solid var(--gray-100); }
.v2-mob-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 4px; font-size: 1rem; font-weight: 600; color: var(--gray-800);
}
.v2-mob-link:hover, .v2-mob-link.active-mob { color: var(--red); }
.v2-mob-link svg { width: 16px; height: 16px; color: var(--gray-400); transition: transform 0.25s; }
.v2-mob-group.open .v2-mob-link svg { transform: rotate(180deg); color: var(--red); }
.v2-mob-group.open > .v2-mob-link { color: var(--red); }
.v2-mob-sub { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; background: var(--gray-100); border-radius: 10px; margin: 4px 0 8px; }
.v2-mob-group.open .v2-mob-sub { max-height: 600px; }
.v2-mob-sub a { display: block; padding: 10px 16px; font-size: 0.88rem; font-weight: 500; color: var(--gray-600); border-bottom: 1px solid var(--gray-200); }
.v2-mob-sub a:last-child { border-bottom: none; }
.v2-mob-sub a:hover { color: var(--red); background: var(--red-light); border-radius: 6px; }
.v2-mob-cta { padding: 16px 20px; border-top: 1px solid var(--gray-100); display: flex; flex-direction: column; gap: 10px; }
.v2-mob-phone { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px; border: 1.5px solid var(--gray-200); border-radius: 10px; font-size: 0.9rem; font-weight: 700; color: var(--gray-800); }
.v2-mob-phone:hover { border-color: var(--red); color: var(--red); }
.v2-mob-phone svg { width: 16px; height: 16px; color: var(--red); }
.v2-mob-cta-btn { display: flex; align-items: center; justify-content: center; padding: 14px; background: var(--grad-red); color: #fff; border-radius: 10px; font-size: 0.95rem; font-weight: 700; box-shadow: var(--shadow-red); }

/* Breakpoints */
@media (max-width: 1140px) { .v2-nav-list { display: none; } .v2-phone { display: none; } .v2-hamburger { display: flex; } }
@media (max-width: 1280px) and (min-width: 1141px) { .v2-nav-link { padding: 0 11px; font-size: 0.82rem; } }

/* ==========================================================================
   HERO v2, Full-viewport, navy gradient, real photo right side
   ========================================================================== */
.v2-hero {
  min-height: 100vh; padding-top: 76px;
  background: var(--grad-hero);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
/* Subtle grid texture */
.v2-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
/* Red accent glow */
.v2-hero::after {
  content: ''; position: absolute;
  width: 500px; height: 500px;
  top: -100px; right: 10%;
  background: radial-gradient(circle, rgba(200,16,46,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.v2-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
@media (max-width: 900px) { .v2-hero-grid { grid-template-columns: 1fr; gap: 40px; } }

/* Left, copy */
.v2-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 100px;
  background: rgba(200,16,46,0.15); border: 1px solid rgba(200,16,46,0.3);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em;
  color: #FCA5A5; text-transform: uppercase; margin-bottom: 24px;
}
.v2-hero-badge .pulse { width: 7px; height: 7px; border-radius: 50%; background: #FCA5A5; animation: heroPulse 2s ease infinite; }
@keyframes heroPulse { 0%,100%{box-shadow:0 0 0 0 rgba(252,165,165,0.5)} 50%{box-shadow:0 0 0 6px rgba(252,165,165,0)} }

.v2-hero-h1 {
  font-family: var(--font-display); font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 800; line-height: 1.07; letter-spacing: -0.04em;
  color: #fff; margin-bottom: 22px;
}
.v2-hero-h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #FCA5A5 0%, #fff 60%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.v2-hero-sub { font-size: 1.08rem; color: rgba(255,255,255,0.68); line-height: 1.74; margin-bottom: 36px; max-width: 500px; }
.v2-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

/* Trust row */
.v2-trust-row { display: flex; align-items: center; gap: 16px; }
.v2-trust-avs { display: flex; }
.v2-trust-avs span {
  width: 36px; height: 36px; border-radius: 50%; border: 2.5px solid var(--navy);
  background: linear-gradient(135deg, var(--red-dark), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 800; color: #fff;
  margin-left: -10px;
}
.v2-trust-avs span:first-child { margin-left: 0; }
.v2-trust-text { font-size: 0.84rem; color: rgba(255,255,255,0.55); }
.v2-trust-text strong { color: #fff; display: block; font-size: 0.88rem; }

/* Right, photo card */
.v2-hero-photo-wrap { position: relative; }
.v2-hero-photo-card {
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.v2-hero-photo-card img { width: 100%; height: 420px; object-fit: cover; display: block; }
@media (max-width: 900px) { .v2-hero-photo-card img { height: 280px; } }

/* Photo overlay with stats bar */
.v2-photo-stats {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(11,31,58,0.95) 0%, rgba(11,31,58,0.5) 70%, transparent 100%);
  padding: 40px 24px 20px;
  display: flex; gap: 0;
}
.v2-ps-item { flex: 1; text-align: center; }
.v2-ps-val { font-family: var(--font-data); font-size: 1.5rem; font-weight: 800; color: #fff; display: block; line-height: 1; }
.v2-ps-chg { font-size: 0.65rem; font-weight: 700; color: #34d399; display: block; margin-bottom: 3px; }
.v2-ps-lbl { font-size: 0.62rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.06em; }
.v2-ps-div { width: 1px; background: rgba(255,255,255,0.12); align-self: stretch; margin: 8px 0; flex-shrink: 0; }

/* Floating pill badges */
.v2-hero-pill {
  position: absolute; background: #fff;
  border-radius: 14px; padding: 10px 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
  z-index: 10;
}
.v2-hp-1 { top: -16px; left: -24px; animation: hpFloat1 7s ease-in-out infinite; }
.v2-hp-2 { bottom: 100px; right: -20px; animation: hpFloat2 9s ease-in-out infinite; }
@keyframes hpFloat1 { 0%,100%{transform:translateY(0) rotate(-2deg)} 50%{transform:translateY(-8px) rotate(1deg)} }
@keyframes hpFloat2 { 0%,100%{transform:translateY(0) rotate(2deg)} 50%{transform:translateY(-6px) rotate(-1deg)} }
.v2-hp-label { font-size: 0.65rem; color: var(--gray-400); margin-bottom: 3px; }
.v2-hp-value { font-family: var(--font-data); font-size: 1.1rem; font-weight: 800; color: var(--navy); line-height: 1; }
.v2-hp-delta { font-size: 0.65rem; font-weight: 700; color: var(--red); }

/* ==========================================================================
   LOGO STRIP, Red background
   ========================================================================== */
.v2-logos { background: var(--red); padding: 36px 0; }
.v2-logos-label { text-align: center; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 24px; }
.v2-logos-row { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.v2-logo-chip {
  padding: 8px 18px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.15);
  font-family: var(--font-display); font-size: 1rem; font-weight: 800;
  color: rgba(255,255,255,0.45); letter-spacing: -0.02em;
  transition: all 0.25s; cursor: default;
}
.v2-logo-chip:hover { color: #fff; border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.08); }

/* ==========================================================================
   STATS BAND
   ========================================================================== */
.v2-stats { background: var(--navy); padding: 70px 0; position: relative; overflow: hidden; }
.v2-stats::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(200,16,46,0.12) 0%, transparent 70%); }
.v2-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; z-index: 2; }
@media (max-width: 680px) { .v2-stats-grid { grid-template-columns: repeat(2,1fr); } }
.v2-stat { text-align: center; padding: 28px 20px; border-right: 1px solid rgba(255,255,255,0.08); }
.v2-stat:last-child { border-right: none; }
.v2-stat-icon { margin-bottom: 12px; display: flex; justify-content: center; }
.v2-stat-icon svg { width: 28px; height: 28px; }
.v2-stat-num {
  font-family: var(--font-data); font-size: 2.8rem; font-weight: 800;
  background: linear-gradient(135deg, #FCA5A5 0%, #fff 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; line-height: 1; margin-bottom: 8px;
  opacity: 1 !important; transform: none !important;
}
.v2-stat-lbl { font-size: 0.84rem; color: rgba(255,255,255,0.5); font-weight: 500; }

/* ==========================================================================
   SERVICES, White bg, bento layout
   ========================================================================== */
.v2-services { background: var(--white); }
.v2-bento { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 1000px) { .v2-bento { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px) { .v2-bento { grid-template-columns: 1fr; } }

.v2-scard {
  padding: 32px 28px; border-radius: var(--r-lg);
  background: var(--white); border: 1.5px solid var(--gray-200);
  transition: all 0.35s ease; position: relative; overflow: hidden;
  text-decoration: none; display: block; color: inherit;
}
.v2-scard::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--grad-red);
  transform: scaleX(0); transition: transform 0.35s ease; transform-origin: left;
}
.v2-scard:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: rgba(200,16,46,0.25); }
.v2-scard:hover::after { transform: scaleX(1); }
.v2-scard.featured { background: var(--navy); border-color: var(--navy); grid-column: span 2; }
@media (max-width: 580px) { .v2-scard.featured { grid-column: span 1; } }

.v2-sc-icon {
  width: 48px; height: 48px; border-radius: 14px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--red-light); transition: background 0.3s;
}
.v2-sc-icon svg { width: 22px; height: 22px; color: var(--red); transition: color 0.3s; }
.v2-scard:hover .v2-sc-icon { background: var(--red); }
.v2-scard:hover .v2-sc-icon svg { color: #fff; }
.v2-scard.featured .v2-sc-icon { background: rgba(200,16,46,0.25); }
.v2-scard.featured .v2-sc-icon svg { color: #FCA5A5; }

.v2-sc-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.v2-scard.featured .v2-sc-title { color: #fff; }
.v2-sc-desc { font-size: 0.86rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 18px; }
.v2-scard.featured .v2-sc-desc { color: rgba(255,255,255,0.6); }
.v2-sc-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.v2-sc-tag { font-size: 0.7rem; font-weight: 600; padding: 3px 9px; border-radius: 6px; background: var(--gray-100); color: var(--gray-600); }
.v2-scard.featured .v2-sc-tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); }
.v2-sc-arrow {
  position: absolute; bottom: 24px; right: 24px;
  width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.v2-sc-arrow svg { width: 14px; height: 14px; color: var(--gray-400); transition: all 0.3s; }
.v2-scard:hover .v2-sc-arrow { border-color: var(--red); background: var(--red); }
.v2-scard:hover .v2-sc-arrow svg { color: #fff; transform: translate(1px,-1px); }
.v2-scard.featured .v2-sc-arrow { border-color: rgba(255,255,255,0.2); }
.v2-scard.featured .v2-sc-arrow svg { color: rgba(255,255,255,0.5); }

/* ==========================================================================
   INDUSTRIES, dark bg, photo grid
   ========================================================================== */
.v2-industries { background: var(--navy-mid); }
.v2-ind-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
@media (max-width: 900px) { .v2-ind-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .v2-ind-grid { grid-template-columns: 1fr 1fr; gap: 10px; } }

.v2-ind-card {
  border-radius: var(--r-lg); overflow: hidden;
  position: relative; aspect-ratio: 3/4; display: block;
  text-decoration: none;
}
.v2-ind-card.wide { aspect-ratio: 16/9; grid-column: span 2; }
@media (max-width: 560px) { .v2-ind-card.wide { grid-column: span 2; aspect-ratio: 4/3; } }

.v2-ind-card img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.65); transition: transform 0.6s ease, filter 0.4s ease; }
.v2-ind-card:hover img { transform: scale(1.06); filter: brightness(0.45); }
.v2-ind-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,31,58,0.9) 0%, transparent 55%); transition: background 0.4s; }
.v2-ind-card:hover .v2-ind-overlay { background: linear-gradient(to top, rgba(200,16,46,0.85) 0%, rgba(200,16,46,0.2) 60%, transparent 100%); }
.v2-ind-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; }
.v2-ind-label { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.v2-ind-stat { font-size: 0.72rem; color: rgba(255,255,255,0.6); }
.v2-ind-badge {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px; padding: 6px 10px; backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
}
.v2-ind-badge svg { width: 16px; height: 16px; color: #fff; }
.v2-ind-cta {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(0.85);
  opacity: 0; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
  color: #fff; padding: 7px 18px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 700; backdrop-filter: blur(8px);
  transition: all 0.3s; white-space: nowrap;
}
.v2-ind-card:hover .v2-ind-cta { opacity: 1; transform: translate(-50%,-50%) scale(1); }

/* ==========================================================================
   WHY BRN, Off-white, 4-col features
   ========================================================================== */
.v2-why { background: var(--off-white); }
.v2-why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
@media (max-width: 1000px) { .v2-why-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px) { .v2-why-grid { grid-template-columns: 1fr; } }
.v2-why-card { padding: 28px 24px; background: #fff; border-radius: var(--r-lg); border: 1.5px solid var(--gray-200); transition: all 0.3s; }
.v2-why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(200,16,46,0.2); }
.v2-why-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--red-light); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; transition: background 0.3s; }
.v2-why-icon svg { width: 20px; height: 20px; color: var(--red); transition: color 0.3s; }
.v2-why-card:hover .v2-why-icon { background: var(--red); }
.v2-why-card:hover .v2-why-icon svg { color: #fff; }
.v2-why-title { font-weight: 700; font-size: 0.97rem; color: var(--text); margin-bottom: 8px; }
.v2-why-desc { font-size: 0.85rem; color: var(--gray-600); line-height: 1.65; }

/* ==========================================================================
   PORTFOLIO, Navy bg, white cards
   ========================================================================== */
.v2-portfolio { background: var(--navy); }
.v2-port-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 800px) { .v2-port-grid { grid-template-columns: 1fr; } }
.v2-port-card { background: #fff; border-radius: var(--r-xl); overflow: hidden; transition: all 0.4s ease; }
.v2-port-card:hover { transform: translateY(-6px); box-shadow: 0 32px 80px rgba(200,16,46,0.18), 0 8px 24px rgba(0,0,0,0.12); }

.v2-port-thumb { height: 220px; position: relative; overflow: hidden; }
.v2-port-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.v2-port-card:hover .v2-port-thumb img { transform: scale(1.04); }
.v2-port-thumb-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(200,16,46,0.6) 0%, rgba(30,64,175,0.4) 100%); opacity: 0; transition: opacity 0.4s; }
.v2-port-card:hover .v2-port-thumb-overlay { opacity: 1; }
.v2-port-logo { position: absolute; top: 20px; left: 20px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); border-radius: 10px; padding: 7px 14px; font-weight: 800; font-size: 1rem; color: #fff; backdrop-filter: blur(8px); }
.v2-port-type { position: absolute; top: 20px; right: 20px; background: rgba(200,16,46,0.85); border-radius: 100px; padding: 4px 12px; font-size: 0.7rem; font-weight: 700; color: #fff; }
.v2-port-ui { position: absolute; bottom: 16px; left: 16px; right: 16px; display: flex; gap: 8px; }
.v2-port-kpi { flex: 1; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.2); border-radius: 10px; padding: 8px 10px; text-align: center; backdrop-filter: blur(8px); transition: background 0.3s; }
.v2-port-card:hover .v2-port-kpi { background: rgba(200,16,46,0.35); }
.v2-port-kpi .kv { font-family: var(--font-data); font-size: 1rem; font-weight: 700; color: #fff; display: block; }
.v2-port-kpi .kl { font-size: 0.6rem; color: rgba(255,255,255,0.55); }

.v2-port-body { padding: 26px; }
.v2-port-co { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.v2-port-co-logo { width: 40px; height: 40px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem; color: #fff; flex-shrink: 0; }
.v2-port-co-name { font-weight: 700; font-size: 0.97rem; color: var(--text); }
.v2-port-co-type { font-size: 0.74rem; color: var(--gray-400); }
.v2-port-section { margin-bottom: 12px; }
.v2-port-lbl { font-size: 0.67rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-400); margin-bottom: 4px; }
.v2-port-text { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; }
.v2-port-stack { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 14px; }
.v2-port-tag { font-size: 0.69rem; font-weight: 600; padding: 3px 9px; border-radius: 6px; background: var(--off-white); color: var(--gray-600); border: 1px solid var(--gray-200); }
.v2-port-metrics { display: flex; gap: 0; padding-top: 14px; border-top: 1px solid var(--gray-100); }
.v2-port-metric { flex: 1; text-align: center; }
.v2-port-metric strong { display: block; font-family: var(--font-data); font-size: 1.4rem; font-weight: 800; background: var(--grad-red); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1.1; margin-bottom: 2px; }
.v2-port-metric span { font-size: 0.68rem; color: var(--gray-400); }

/* ==========================================================================
   TESTIMONIALS, Off-white, LinkedIn-style cards
   ========================================================================== */
.v2-testimonials { background: var(--off-white); }
.v2-tgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 960px) { .v2-tgrid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .v2-tgrid { grid-template-columns: 1fr; } }

.v2-tcard { background: #fff; border-radius: var(--r-lg); border: 1.5px solid var(--gray-200); padding: 28px; display: flex; flex-direction: column; transition: all 0.3s; position: relative; overflow: hidden; }
.v2-tcard::before { content: '"'; position: absolute; top: 10px; right: 18px; font-size: 6rem; font-family: Georgia, serif; color: rgba(200,16,46,0.06); line-height: 1; pointer-events: none; }
.v2-tcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(200,16,46,0.2); }
.v2-tcard.featured { background: linear-gradient(135deg, #FEF2F2, #FFF); border-color: rgba(200,16,46,0.2); }

.v2-tcard-head { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.v2-tcard-av { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem; color: #fff; flex-shrink: 0; position: relative; }
.v2-tcard-av img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.v2-tcard-check { position: absolute; bottom: -2px; right: -2px; width: 18px; height: 18px; background: var(--red); border-radius: 50%; border: 2px solid #fff; display: flex; align-items: center; justify-content: center; }
.v2-tcard-check svg { width: 9px; height: 9px; fill: #fff; }
.v2-tcard-name { font-weight: 700; color: var(--text); font-size: 0.93rem; }
.v2-tcard-role { font-size: 0.76rem; color: var(--gray-400); margin-bottom: 4px; }
.v2-tcard-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 0.68rem; font-weight: 700; padding: 2px 8px; border-radius: 6px; background: var(--red-light); color: var(--red); }

.v2-tcard-stars { display: flex; gap: 2px; margin-bottom: 14px; }
.v2-tcard-stars svg { width: 14px; height: 14px; fill: #F59E0B; }
.v2-tcard-quote { font-size: 0.9rem; color: var(--gray-600); line-height: 1.72; font-style: italic; flex: 1; margin-bottom: 18px; }
.v2-tcard.featured .v2-tcard-quote { font-size: 0.94rem; }

.v2-tcard-footer { padding-top: 14px; border-top: 1px solid var(--gray-100); display: flex; align-items: center; justify-content: space-between; }
.v2-tcard-co { font-weight: 800; font-size: 0.92rem; color: var(--red); }
.v2-tcard-date { font-size: 0.72rem; color: var(--gray-400); }

/* Metrics inside featured testimonial */
.v2-tcard-metrics { display: flex; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.v2-tm { padding: 10px 14px; border-radius: 10px; text-align: center; background: var(--red-light); flex: 1; min-width: 70px; }
.v2-tm strong { display: block; font-family: var(--font-data); font-size: 1.3rem; font-weight: 800; color: var(--red); line-height: 1; }
.v2-tm span { font-size: 0.68rem; color: var(--gray-600); }

/* ==========================================================================
   PROCESS, Navy bg
   ========================================================================== */
.v2-process { background: var(--navy-light); }
.v2-process-steps { display: grid; grid-template-columns: repeat(6,1fr); gap: 0; margin-top: var(--space-xl); position: relative; }
.v2-process-steps::before { content: ''; position: absolute; top: 27px; left: 8%; width: 84%; height: 1px; background: rgba(255,255,255,0.1); z-index: 0; }
@media (max-width: 900px) { .v2-process-steps { grid-template-columns: repeat(3,1fr); gap: 28px; } .v2-process-steps::before { display: none; } }
@media (max-width: 560px) { .v2-process-steps { grid-template-columns: repeat(2,1fr); } }
.v2-pstep { text-align: center; padding: 0 10px; position: relative; z-index: 1; }
.v2-pstep-num { width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-family: var(--font-data); font-size: 0.88rem; font-weight: 800; color: rgba(255,255,255,0.4); transition: all 0.3s; }
.v2-pstep:hover .v2-pstep-num { background: var(--red); color: #fff; border-color: var(--red); box-shadow: 0 6px 20px rgba(200,16,46,0.4); }
.v2-pstep-title { font-size: 0.88rem; font-weight: 700; color: #fff; margin-bottom: 7px; }
.v2-pstep-desc { font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.55; }

/* ==========================================================================
   CONTACT, Red gradient
   ========================================================================== */
.v2-contact { background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%); }
.v2-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 800px) { .v2-contact-grid { grid-template-columns: 1fr; gap: 36px; } }

.v2-contact-office { border-radius: var(--r-xl); overflow: hidden; position: relative; box-shadow: var(--shadow-xl); }
.v2-contact-office img { width: 100%; height: 380px; object-fit: cover; display: block; filter: brightness(0.8); }
.v2-contact-office-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,31,58,0.8) 0%, transparent 50%); }
.v2-contact-office-badge { position: absolute; top: 16px; right: 16px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: 100px; padding: 6px 14px; font-size: 0.72rem; font-weight: 700; color: #fff; backdrop-filter: blur(8px); display: flex; align-items: center; gap: 5px; }
.v2-contact-office-badge .live-dot { width: 6px; height: 6px; border-radius: 50%; background: #34d399; animation: livePulse 1.5s ease infinite; }
@keyframes livePulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.v2-contact-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; }
.v2-contact-info h4 { font-weight: 700; color: #fff; font-size: 0.95rem; margin-bottom: 4px; }
.v2-contact-info p { font-size: 0.78rem; color: rgba(255,255,255,0.65); }

.v2-contact-cards { display: flex; flex-direction: column; gap: 12px; }
.v2-contact-card { display: flex; align-items: center; gap: 14px; padding: 16px 20px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--r-md); text-decoration: none; color: #fff; transition: all 0.25s; backdrop-filter: blur(8px); }
.v2-contact-card:hover { background: rgba(255,255,255,0.18); transform: translateX(4px); }
.v2-contact-card-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.v2-contact-card-icon svg { width: 20px; height: 20px; color: #fff; }
.v2-contact-card-label { font-size: 0.72rem; color: rgba(255,255,255,0.55); margin-bottom: 2px; }
.v2-contact-card-value { font-weight: 700; font-size: 0.95rem; }
.v2-contact-card-sub { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 2px; }
.v2-contact-arrow { margin-left: auto; color: rgba(255,255,255,0.4); }
.v2-contact-arrow svg { width: 18px; height: 18px; }
.v2-contact-card:hover .v2-contact-arrow { color: #fff; }

/* WhatsApp */
.v2-wa-btn { background: linear-gradient(135deg, #25D366, #128C7E); }
.v2-wa-btn:hover { box-shadow: 0 8px 24px rgba(37,211,102,0.4); }

/* Booking widget */
.v2-book { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--r-lg); padding: 22px; backdrop-filter: blur(8px); margin-top: 4px; }
.v2-book h4 { font-weight: 700; color: #fff; font-size: 0.95rem; margin-bottom: 6px; }
.v2-book p { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.v2-time-slots { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.v2-slot { padding: 7px 14px; border-radius: 8px; font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); cursor: pointer; transition: all 0.2s; }
.v2-slot:hover, .v2-slot.sel { background: #fff; color: var(--red); border-color: #fff; }
.v2-book-btn { display: block; padding: 12px; background: #fff; color: var(--red); font-weight: 700; font-size: 0.9rem; border-radius: 10px; text-align: center; transition: all 0.25s; text-decoration: none; }
.v2-book-btn:hover { opacity: 0.92; transform: translateY(-1px); }

/* ==========================================================================
   FINAL CTA, Navy
   ========================================================================== */
.v2-cta-final { background: var(--navy); padding: var(--space-2xl) 0; text-align: center; position: relative; overflow: hidden; }
.v2-cta-final::before { content: ''; position: absolute; width: 800px; height: 400px; top: 50%; left: 50%; transform: translate(-50%,-50%); background: radial-gradient(ellipse, rgba(200,16,46,0.15) 0%, transparent 70%); }
.v2-cta-final-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.v2-cta-final h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; color: #fff; margin-bottom: 18px; }
.v2-cta-final p { font-size: 1.05rem; color: rgba(255,255,255,0.6); margin-bottom: 36px; }
.v2-cta-final-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   FOOTER, Dark navy
   ========================================================================== */
.v2-footer { background: #07121E; color: rgba(255,255,255,0.55); }
.v2-footer-top { padding: 70px 0 50px; }
.v2-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
@media (max-width: 1000px) { .v2-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 600px) { .v2-footer-grid { grid-template-columns: 1fr; } }

.v2-footer-logo { margin-bottom: 18px; }
.v2-footer-logo img { height: 52px; width: auto; }
.v2-footer-tagline { font-size: 0.88rem; line-height: 1.7; margin-bottom: 24px; max-width: 280px; }
.v2-footer-socials { display: flex; gap: 10px; }
.v2-footer-social { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.v2-footer-social:hover { background: var(--red); border-color: var(--red); }
.v2-footer-social svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.6); }
.v2-footer-social:hover svg { fill: #fff; }

.v2-footer-col h4 { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-bottom: 18px; }
.v2-footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.v2-footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.v2-footer-col a:hover { color: #fff; }
.v2-footer-col a:visited { color: rgba(255,255,255,0.45); }

.v2-footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; }
.v2-footer-contact-item svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.v2-footer-contact-item span { font-size: 0.84rem; line-height: 1.55; }
.v2-footer-contact-item a { color: rgba(255,255,255,0.55); }
.v2-footer-contact-item a:hover { color: #fff; }

.v2-footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.06); }
.v2-footer-bottom { padding: 22px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.v2-footer-bottom span { font-size: 0.8rem; }
.v2-footer-bottom-links { display: flex; gap: 20px; }
.v2-footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.v2-footer-bottom-links a:hover { color: #fff; }

/* Newsletter */
.v2-newsletter { margin-top: 24px; }
.v2-newsletter p { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-bottom: 10px; }
.v2-nl-form { display: flex; gap: 8px; }
.v2-nl-form input { flex: 1; padding: 9px 14px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; color: #fff; font-size: 0.84rem; outline: none; min-width: 0; }
.v2-nl-form input::placeholder { color: rgba(255,255,255,0.3); }
.v2-nl-form input:focus { border-color: rgba(200,16,46,0.4); }
.v2-nl-form button { padding: 9px 16px; background: var(--red); color: #fff; border-radius: 8px; font-size: 0.82rem; font-weight: 700; white-space: nowrap; transition: all 0.2s; }
.v2-nl-form button:hover { background: var(--red-dark); }

/* Floating call button */
.v2-float { position: fixed; bottom: 28px; right: 28px; z-index: 900; }
.v2-float-btn { width: 54px; height: 54px; border-radius: 50%; background: var(--grad-red); box-shadow: var(--shadow-red); display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.v2-float-btn:hover { transform: scale(1.1); box-shadow: 0 12px 36px rgba(200,16,46,0.5); }
.v2-float-btn svg { width: 22px; height: 22px; color: #fff; }
.v2-float-ping { position: absolute; inset: 0; border-radius: 50%; background: var(--red); opacity: 0.5; animation: ping 2s cubic-bezier(0,0,.2,1) infinite; }
@keyframes ping { 0%{transform:scale(1);opacity:0.5} 100%{transform:scale(1.8);opacity:0} }

/* Responsive utilities */
@media (max-width: 768px) { .section, .v2-services, .v2-why, .v2-portfolio, .v2-testimonials, .v2-process, .v2-contact, .v2-cta-final { padding-top: 64px; padding-bottom: 64px; } }
@media (max-width: 480px) { .container { padding: 0 16px; } }

/* ==========================================================================
   INDUSTRIES GRID, Responsive fixes for 3-row layout
   ========================================================================== */
@media (max-width: 900px) {
  .v2-industries [style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .v2-industries [style*="grid-template-columns:1fr 1fr 1fr 1fr"] {
    grid-template-columns: 1fr 1fr !important;
  }
  .v2-industries [style*="grid-template-columns:1fr 1fr 1fr;"] {
    grid-template-columns: 1fr 1fr !important;
  }
  .v2-industries [style*="grid-column:span 2"] {
    grid-column: span 2 !important;
    aspect-ratio: 16/9 !important;
  }
}
@media (max-width: 560px) {
  .v2-industries [style*="grid-template-columns:repeat(4,1fr)"],
  .v2-industries [style*="grid-template-columns:1fr 1fr 1fr 1fr"],
  .v2-industries [style*="grid-template-columns:1fr 1fr 1fr;"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }
  .v2-industries .v2-ind-card { aspect-ratio: 4/3 !important; }
  .v2-industries [style*="grid-column:span 2"] { grid-column: span 2 !important; aspect-ratio: 4/3 !important; }
  .v2-ind-label { font-size: 0.88rem !important; }
  .v2-ind-stat { font-size: 0.66rem !important; }
}

/* ==========================================================================
   HERO SLIDER — 3-slide auto carousel
   ========================================================================== */
.hero-slider-wrap { position: relative; }

.hero-slides {
  position: relative;
  overflow: hidden;
  /* Height must accommodate tallest slide.
     JS sets this dynamically, CSS provides fallback */
  min-height: 480px;
}
/* ALL slides absolutely positioned, stacked on top of each other */
.hero-slide {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.55s cubic-bezier(.4,0,.2,1),
              transform 0.55s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  /* NEVER use position:relative here — that breaks the stack */
}
/* Active slide: fully visible, no offset */
.hero-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  /* Keep position:absolute — height comes from .hero-slides min-height */
}
/* Exiting slide: fade+slide out left */
.hero-slide.exit {
  opacity: 0;
  transform: translateX(-30px);
  pointer-events: none;
}

/* Hero slides responsive height */
@media (max-width: 900px) { .hero-slides { min-height: 520px; } }
@media (max-width: 600px) { .hero-slides { min-height: 580px; } }

/* Slide tag */
.hero-slide-tag {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 14px; border-radius: 100px;
  background: rgba(200,16,46,0.18); border: 1px solid rgba(200,16,46,0.3);
  font-size: 0.73rem; font-weight: 700; letter-spacing: 0.05em;
  color: #FCA5A5; text-transform: uppercase; margin-bottom: 22px;
}

/* Dots */
.hero-dots {
  display: flex; gap: 8px; margin-top: 20px;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.25); border: none;
  cursor: pointer; transition: all 0.3s ease; padding: 0;
}
.hero-dot.active {
  width: 28px; border-radius: 4px;
  background: #C8102E;
}
.hero-dot:hover { background: rgba(255,255,255,0.5); }

/* ==========================================================================
   LOGO MARQUEE — infinite scroll
   ========================================================================== */
.v2-logos { overflow: hidden; background: var(--red); padding: 36px 0; }
.v2-logos-label {
  text-align: center; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); margin-bottom: 24px;
  padding: 0 24px;
}
.v2-marquee-outer {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.v2-marquee-track {
  display: flex; gap: 16px; width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.v2-marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.v2-logo-chip {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 22px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  font-family: var(--font-display); font-size: 0.97rem; font-weight: 800;
  color: rgba(255,255,255,0.5); letter-spacing: -0.02em;
  white-space: nowrap; flex-shrink: 0;
  transition: all 0.3s;
  background: rgba(255,255,255,0.06);
}
.v2-logo-chip:hover { color: #fff; background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.4); }

/* ==========================================================================
   SERVICES BENTO — fix grey cards, uniform 3-col grid
   ========================================================================== */
.v2-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 960px) { .v2-bento { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .v2-bento { grid-template-columns: 1fr; } }

/* Remove "featured" spanning — all cards equal now */
.v2-scard.featured {
  grid-column: span 1 !important;
  background: var(--navy) !important;
}

/* All non-featured cards: white bg, no grey */
.v2-scard {
  background: #fff !important;
  border: 1.5px solid var(--gray-200);
}

/* ==========================================================================
   NAV — Remove active underline from "What We Do" on homepage
   (Home page — index.html sets no nav item as .active)
   ========================================================================== */
/* The nav-link underline should only show on pages where the link IS the current page.
   The index.html sets class="v2-nav-link active" on "What We Do" because
   the page_active is set to '' — override: on homepage, nothing should be active */
body.page-home .v2-nav-link.active::after { transform: scaleX(0) !important; }
body.page-home .v2-nav-link.active { color: var(--gray-800) !important; }

/* ==========================================================================
   AI + HUMAN responsive fix
   ========================================================================== */
@media (max-width: 860px) {
  .ai-human-grid { grid-template-columns: 1fr !important; }
}

/* ==========================================================================
   VIDEO BACKGROUNDS — hero, sections
   ========================================================================== */

/* Hero video background */
.v2-hero-video-bg {
  position: absolute;
  inset: 0; z-index: 0;
  overflow: hidden;
}
.v2-hero-video-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.18) saturate(0.5);
  pointer-events: none;
}
.v2-hero-video-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,31,58,0.92) 0%, rgba(19,41,72,0.85) 55%, rgba(30,58,95,0.7) 100%);
}

/* Section video background */
.section-video-wrap {
  position: absolute;
  inset: 0; z-index: 0;
  overflow: hidden;
}
.section-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.section-video-wrap .vid-overlay {
  position: absolute; inset: 0;
}

/* Fade-in on video load */
video.vid-loaded { animation: vidFadeIn 1s ease; }
@keyframes vidFadeIn { from{opacity:0} to{opacity:1} }

/* ==========================================================================
   PREMIUM IMAGE CARDS — call center photo grid
   ========================================================================== */
.img-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
@media(max-width:860px){.img-feature-grid{grid-template-columns:1fr 1fr;}}
@media(max-width:540px){.img-feature-grid{grid-template-columns:1fr;}}

.img-feature-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.img-feature-card img {
  width:100%;height:100%;
  object-fit:cover;
  transition:transform 0.6s ease;
}
.img-feature-card:hover img{transform:scale(1.04);}
.img-feature-card-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to top,rgba(11,31,58,0.75) 0%,transparent 55%);
}
.img-feature-card-label{
  position:absolute;bottom:16px;left:16px;right:16px;
  font-size:.84rem;font-weight:700;color:#fff;
  display:flex;align-items:center;gap:8px;
}
.img-feature-card-label svg{width:16px;height:16px;color:#FCA5A5;flex-shrink:0;}

/* ==========================================================================
   WHY BRN — Blue gradient background upgrade
   ========================================================================== */
.v2-why.section {
  background: linear-gradient(135deg, #0B1F3A 0%, #132948 100%) !important;
}
.v2-why .section-title { color: #fff !important; }
.v2-why .section-subtitle { color: rgba(255,255,255,0.65) !important; }
.v2-why .eyebrow { color: #FCA5A5 !important; }
.v2-why .eyebrow::before { background: #FCA5A5 !important; }
.v2-why-card {
  background: rgba(255,255,255,0.06) !important;
  border-color: rgba(255,255,255,0.1) !important;
}
.v2-why-card:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(200,16,46,0.4) !important;
}
.v2-why-icon { background: rgba(200,16,46,0.25) !important; }
.v2-why-icon svg { color: #FCA5A5 !important; }
.v2-why-card:hover .v2-why-icon { background: var(--red) !important; }
.v2-why-card:hover .v2-why-icon svg { color: #fff !important; }
.v2-why-title { color: #fff !important; }
.v2-why-desc { color: rgba(255,255,255,0.55) !important; }

/* ==========================================================================
   CTA FINAL — Red gradient instead of navy
   ========================================================================== */
.v2-cta-final {
  background: linear-gradient(135deg,#991B1B 0%,#C8102E 50%,#991B1B 100%) !important;
}
.v2-cta-final::before {
  background: radial-gradient(ellipse,rgba(255,255,255,0.1) 0%,transparent 70%) !important;
}

/* ==========================================================================
   PROCESS — lighter navy with video support
   ========================================================================== */
.v2-process {
  position: relative;
  overflow: hidden;
}

/* ==========================================================================
   PREMIUM VIDEO BACKGROUNDS — all sections
   ========================================================================== */

/* Hero video */
.v2-hero { position: relative; overflow: hidden; }
.hero-vid-bg {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
.hero-vid-bg video {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: brightness(0.22) saturate(0.4);
  transition: opacity 1s ease;
}
.hero-vid-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(11,31,58,0.88) 0%,
    rgba(11,31,58,0.72) 50%,
    rgba(30,58,95,0.5) 100%);
  z-index: 1;
}
.v2-hero .container,
.v2-hero .v2-hero-grid { position: relative; z-index: 2; }

/* Reusable section video wrapper */
.sec-vid-bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden; pointer-events: none;
}
.sec-vid-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.12) saturate(0.3);
}
.sec-vid-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: inherit; /* set inline */
  z-index: 1;
}

/* Ensure all children of video-bg sections sit above */
.vid-section { position: relative; overflow: hidden; }
.vid-section > .container,
.vid-section > div:not(.sec-vid-bg):not(.hero-vid-bg) {
  position: relative; z-index: 2;
}

/* CTA final — video support */
.v2-cta-final { position: relative; overflow: hidden; }
.v2-cta-final .sec-vid-bg video { filter: brightness(0.15) saturate(0.2); }
.v2-cta-final > .container { position: relative; z-index: 2; }

/* Process section video */
.v2-process { position: relative; overflow: hidden; }
.v2-process > .container { position: relative; z-index: 2; }
.v2-process .v2-process-steps { position: relative; z-index: 2; }
.v2-process .section-head { position: relative; z-index: 2; }

/* Poster fallback when video not loaded */
.vid-poster-fallback {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.22) saturate(0.4);
  z-index: 0;
  transition: opacity 0.5s ease;
}

/* ==========================================================================
   COLOR THEME OVERHAUL — Replace all grey with blue brand palette
   Primary blue: #1E3A8A (dark) / #2563EB (mid) / #EFF6FF (light tint)
   Grey → Blue tint mapping:
     #F7F9FC / #F8FAFC / var(--off-white)  →  #EFF6FF  (blue-50)
     #F1F5F9 / var(--gray-100)             →  #DBEAFE  (blue-100)
     #E2E8F0 / var(--gray-200)             →  #BFDBFE  (blue-200) for borders
     #94A3B8 / var(--gray-400)             →  #60A5FA  (blue-400)
     #64748B / var(--gray-600)             →  #3B82F6  (blue-500) for muted text
   ========================================================================== */

/* Update CSS variables to blue tones */
:root {
  --off-white:  #EFF6FF;
  --gray-100:   #DBEAFE;
  --gray-200:   #BFDBFE;
  --gray-400:   #93C5FD;
  --gray-600:   #2563EB;
  --gray-800:   #1E293B;
  --brand-blue-tint: #EFF6FF;
  --brand-blue-light-border: #BFDBFE;
}

/* ── HEADER ── */
.v2-header {
  background: rgba(255,255,255,0.98) !important;
  border-bottom-color: #DBEAFE !important;
}
.v2-hamburger {
  background: #EFF6FF !important;
  border-color: #BFDBFE !important;
}
.v2-hamburger:hover { background: #DBEAFE !important; border-color: #93C5FD !important; }
.v2-mob-item { border-bottom-color: #DBEAFE !important; }
.v2-mob-sub { background: #EFF6FF !important; }
.v2-mob-sub a { color: #1E3A8A !important; border-bottom-color: #DBEAFE !important; }
.v2-mob-sub a:hover { color: var(--red) !important; background: #FEF2F2 !important; }
.v2-mob-cta { border-top-color: #DBEAFE !important; }
.v2-mob-phone { border-color: #BFDBFE !important; color: #1E3A8A !important; }
.v2-mob-phone:hover { border-color: var(--red) !important; color: var(--red) !important; }

/* ── SERVICES ── */
.v2-services { background: #EFF6FF !important; }
.v2-scard {
  background: #fff !important;
  border-color: #BFDBFE !important;
}
.v2-scard:hover { border-color: rgba(200,16,46,0.3) !important; box-shadow: 0 12px 40px rgba(37,99,235,0.12), 0 2px 8px rgba(0,0,0,0.06) !important; }
.v2-scard.featured { background: linear-gradient(135deg,#1E3A8A,#2563EB) !important; border-color: #2563EB !important; }
.v2-sc-tag { background: #DBEAFE !important; color: #1E40AF !important; border: none !important; }
.v2-scard.featured .v2-sc-tag { background: rgba(255,255,255,0.15) !important; color: rgba(255,255,255,0.8) !important; }
.v2-sc-arrow { border-color: #BFDBFE !important; }
.v2-sc-arrow svg { color: #2563EB !important; }
.v2-scard:hover .v2-sc-arrow { background: var(--red) !important; border-color: var(--red) !important; }
.v2-scard:hover .v2-sc-arrow svg { color: #fff !important; }

/* ── WHY BRN — keep dark navy (already overridden in previous CSS) ── */
/* Testimonials section */
.v2-testimonials { background: #EFF6FF !important; }
.v2-tcard { background: #fff !important; border-color: #BFDBFE !important; }
.v2-tcard:hover { border-color: rgba(200,16,46,0.25) !important; box-shadow: 0 12px 40px rgba(37,99,235,0.1) !important; }
.v2-tcard-footer { border-top-color: #DBEAFE !important; }
.v2-tcard-badge { background: #DBEAFE !important; color: #1E40AF !important; }
.v2-tcard.featured { background: linear-gradient(135deg,#EFF6FF,#fff) !important; border-color: rgba(37,99,235,0.25) !important; }
.v2-tm { background: #DBEAFE !important; }
.v2-tm strong { color: #1E40AF !important; }
.v2-tm span { color: #2563EB !important; }

/* ── PORTFOLIO tags ── */
.v2-port-tag { background: #DBEAFE !important; color: #1E40AF !important; border-color: #BFDBFE !important; }
.v2-port-metrics { border-top-color: #DBEAFE !important; }

/* ── CONTACT section ── keep red gradient, update cards ── */
.v2-contact-card { border-color: rgba(255,255,255,0.25) !important; }
.v2-contact-card:hover { border-color: rgba(255,255,255,0.6) !important; }

/* ── INDUSTRIES section ── stays dark navy ── */

/* ── STATS section ── stays dark navy ── */

/* ── PROCESS steps ── */
.v2-pstep-num {
  background: rgba(37,99,235,0.15) !important;
  border-color: rgba(37,99,235,0.3) !important;
  color: #93C5FD !important;
}
.v2-pstep:hover .v2-pstep-num { background: var(--red) !important; color: #fff !important; border-color: var(--red) !important; }
.v2-pstep-desc { color: rgba(255,255,255,0.5) !important; }

/* ── FOOTER ── */
.v2-footer { background: #0B1F3A !important; }
.v2-footer-social { background: rgba(37,99,235,0.15) !important; border-color: rgba(37,99,235,0.25) !important; }
.v2-footer-social:hover { background: var(--red) !important; border-color: var(--red) !important; }
.v2-footer-divider { border-top-color: rgba(37,99,235,0.15) !important; }
.v2-footer-col a:hover { color: #60A5FA !important; }
.v2-nl-form input { background: rgba(37,99,235,0.1) !important; border-color: rgba(37,99,235,0.2) !important; }
.v2-nl-form input:focus { border-color: rgba(37,99,235,0.5) !important; }
.v2-nl-form button { background: var(--red) !important; }
.v2-nl-form button:hover { background: #A00D24 !important; }

/* ── DROPDOWN ── */
.v2-dropdown { border-top-color: var(--red) !important; }
.v2-dd-link:hover { background: #EFF6FF !important; border-left-color: #2563EB !important; color: #1E40AF !important; }

/* ── HERO trust row border ── */
.v2-trust-row { border-top-color: rgba(37,99,235,0.2) !important; }

/* ── BUTTON STATES ── */
.btn-white { background: #fff !important; color: #1E3A8A !important; }
.btn-white:hover { background: #EFF6FF !important; }
.btn-outline-red:hover { background: var(--red) !important; color: #fff !important; }

/* ── AI SECTION feature rows ── */
/* The AI section inline styles use rgba(255,255,255,0.05/0.1) — keep as is on dark bg */

/* ── MOBILE nav links ── */
.v2-mob-link { color: #0F172A !important; }
.v2-mob-link:hover, .v2-mob-link.active-mob { color: var(--red) !important; }

/* ── SERVICE section eyebrow ── */
.v2-services .eyebrow { color: var(--red) !important; }
.v2-services .eyebrow::before { background: var(--red) !important; }
.v2-services .section-title { color: #0F172A !important; }
.v2-services .section-subtitle { color: #1E40AF !important; }

/* ── TESTIMONIALS eyebrow ── */
.v2-testimonials .eyebrow { color: var(--red) !important; }
.v2-testimonials .section-title { color: #0F172A !important; }
.v2-testimonials .section-subtitle { color: #1E40AF !important; }

/* ── WHY image strip captions ── */
.img-feature-card-label svg { color: #60A5FA !important; }

/* ── Floating phone button ── */
.v2-float-btn { background: var(--grad-red) !important; }

/* ── HERO pills ── */
.v2-hero-pill { background: #fff !important; border: 1.5px solid #BFDBFE !important; box-shadow: 0 8px 28px rgba(37,99,235,0.15) !important; }
.v2-hero-pill .mp-label, .v2-hp-label { color: #2563EB !important; }
.v2-hero-pill .mp-value, .v2-hp-value { color: #0F172A !important; }
.v2-hp-delta { color: var(--red) !important; }

/* ── STATS photo bar ── */
.v2-ps-chg { color: #34d399 !important; }

/* ── LOGO STRIP — keep red ── */
.v2-logos { background: var(--red) !important; }

/* ── CTA final — keep red gradient ── */
.v2-cta-final { background: linear-gradient(135deg, #991B1B 0%, #C8102E 50%, #991B1B 100%) !important; }

/* ── PORTFOLIO section stays dark navy ── */
.v2-portfolio { background: var(--navy) !important; }

/* ==========================================================================
   PREMIUM COLOR PALETTE REDESIGN
   Primary:   Navy  #0F2040  (deep trust, enterprise)
   Accent:    Red   #C8102E  (energy, action — brand kept)
   Highlight: Gold  #D4A017  (premium, warmth)
   Light bg:  Cream #F9F7F4  (warm white — replaces cold blue tint)
   Card bg:   White #FFFFFF
   Border:    Warm  #EDE9E3  (warm grey — replaces blue borders)
   Text:      Dark  #0F172A
   Muted:     Mid   #4A5568
   ========================================================================== */

:root {
  /* Override blue variables with premium warm palette */
  --off-white:  #F9F7F4 !important;
  --gray-100:   #EDE9E3 !important;
  --gray-200:   #D6CFC4 !important;
  --gray-400:   #9E9485 !important;
  --gray-600:   #4A5568 !important;
  --gray-800:   #1A202C !important;
  --brand-blue-tint: #F9F7F4 !important;
  --brand-blue-light-border: #D6CFC4 !important;
}

/* ── HEADER ── */
.v2-header {
  background: rgba(255,255,255,0.98) !important;
  border-bottom: 1px solid #EDE9E3 !important;
  box-shadow: 0 1px 8px rgba(15,32,64,0.06) !important;
}
.v2-hamburger {
  background: #F9F7F4 !important;
  border-color: #D6CFC4 !important;
}
.v2-hamburger:hover { background: #EDE9E3 !important; border-color: #9E9485 !important; }
.v2-dropdown { border-top: 3px solid #C8102E !important; box-shadow: 0 20px 60px rgba(15,32,64,0.12) !important; }
.v2-dd-link:hover { background: #F9F7F4 !important; border-left-color: #C8102E !important; color: #C8102E !important; }
.v2-mob-item { border-bottom-color: #EDE9E3 !important; }
.v2-mob-sub { background: #F9F7F4 !important; }
.v2-mob-sub a { color: #0F2040 !important; border-bottom-color: #EDE9E3 !important; }
.v2-mob-sub a:hover { color: #C8102E !important; background: #FEF2F2 !important; }
.v2-mob-cta { border-top-color: #EDE9E3 !important; }
.v2-mob-phone { border-color: #D6CFC4 !important; color: #0F2040 !important; }
.v2-mob-link { color: #0F172A !important; }
.v2-mob-link:hover { color: #C8102E !important; }
.v2-nav-link { color: #0F172A !important; }
.v2-nav-link:visited { color: #0F172A !important; }

/* ── SERVICES SECTION — warm cream bg ── */
.v2-services { background: #F9F7F4 !important; }
.v2-scard {
  background: #fff !important;
  border: 1.5px solid #EDE9E3 !important;
  box-shadow: 0 2px 8px rgba(15,32,64,0.04) !important;
}
.v2-scard:hover {
  border-color: rgba(200,16,46,0.3) !important;
  box-shadow: 0 12px 40px rgba(15,32,64,0.1), 0 2px 8px rgba(200,16,46,0.06) !important;
  transform: translateY(-5px) !important;
}
.v2-scard.featured { background: linear-gradient(135deg,#0F2040,#1a3360) !important; border-color: #0F2040 !important; }
.v2-sc-icon { background: #FEF2F2 !important; }
.v2-sc-icon svg { color: #C8102E !important; }
.v2-scard:hover .v2-sc-icon { background: #C8102E !important; }
.v2-scard:hover .v2-sc-icon svg { color: #fff !important; }
.v2-scard.featured .v2-sc-icon { background: rgba(200,16,46,0.2) !important; }
.v2-sc-tag { background: #F9F7F4 !important; color: #4A5568 !important; border: 1px solid #EDE9E3 !important; }
.v2-scard.featured .v2-sc-tag { background: rgba(255,255,255,0.12) !important; color: rgba(255,255,255,0.75) !important; border-color: rgba(255,255,255,0.15) !important; }
.v2-sc-title { color: #0F172A !important; }
.v2-scard.featured .v2-sc-title { color: #fff !important; }
.v2-sc-desc { color: #4A5568 !important; }
.v2-scard.featured .v2-sc-desc { color: rgba(255,255,255,0.7) !important; }
.v2-sc-arrow { border-color: #D6CFC4 !important; background: #F9F7F4 !important; }
.v2-sc-arrow svg { color: #4A5568 !important; }
.v2-scard:hover .v2-sc-arrow { background: #C8102E !important; border-color: #C8102E !important; }
.v2-scard:hover .v2-sc-arrow svg { color: #fff !important; }
.v2-scard.featured .v2-sc-arrow { border-color: rgba(255,255,255,0.2) !important; background: rgba(255,255,255,0.1) !important; }
/* Services eyebrow + headings */
.v2-services .eyebrow { color: #C8102E !important; }
.v2-services .eyebrow::before { background: #C8102E !important; }
.v2-services .section-title { color: #0F172A !important; }
.v2-services .section-subtitle { color: #4A5568 !important; }

/* ── TESTIMONIALS — warm cream ── */
.v2-testimonials { background: #F9F7F4 !important; }
.v2-tcard { background: #fff !important; border: 1.5px solid #EDE9E3 !important; }
.v2-tcard:hover { border-color: rgba(200,16,46,0.2) !important; box-shadow: 0 12px 40px rgba(15,32,64,0.08) !important; }
.v2-tcard.featured { background: linear-gradient(135deg,#FEF2F2,#fff) !important; border-color: rgba(200,16,46,0.2) !important; }
.v2-tcard-footer { border-top-color: #EDE9E3 !important; }
.v2-tcard-badge { background: #FEF2F2 !important; color: #C8102E !important; }
.v2-tcard-name { color: #0F172A !important; }
.v2-tcard-role { color: #4A5568 !important; }
.v2-tcard-quote { color: #374151 !important; }
.v2-tm { background: #FEF2F2 !important; }
.v2-tm strong { color: #C8102E !important; }
.v2-tm span { color: #4A5568 !important; }
.v2-testimonials .eyebrow { color: #C8102E !important; }
.v2-testimonials .section-title { color: #0F172A !important; }
.v2-testimonials .section-subtitle { color: #4A5568 !important; }

/* ── WHY BRN — Deep navy, gold accents ── */
.v2-why.section { background: linear-gradient(135deg,#0F2040 0%,#1a3360 100%) !important; }
.v2-why-card {
  background: rgba(255,255,255,0.05) !important;
  border: 1.5px solid rgba(255,255,255,0.1) !important;
}
.v2-why-card:hover {
  background: rgba(255,255,255,0.09) !important;
  border-color: rgba(200,16,46,0.4) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2) !important;
}
.v2-why-icon { background: rgba(200,16,46,0.2) !important; }
.v2-why-icon svg { color: #FCA5A5 !important; }
.v2-why-card:hover .v2-why-icon { background: #C8102E !important; }
.v2-why-card:hover .v2-why-icon svg { color: #fff !important; }
.v2-why-title { color: #fff !important; }
.v2-why-desc { color: rgba(255,255,255,0.55) !important; }
.v2-why .eyebrow { color: #D4A017 !important; }
.v2-why .eyebrow::before { background: #D4A017 !important; }
.v2-why .section-title { color: #fff !important; }
.v2-why .section-subtitle { color: rgba(255,255,255,0.65) !important; }

/* ── IMAGE FEATURE CARDS (Why BRN strip) ── */
.img-feature-card { border: none !important; box-shadow: 0 8px 32px rgba(15,32,64,0.15) !important; }
.img-feature-card-label svg { color: #D4A017 !important; }

/* ── PORTFOLIO ── */
.v2-port-tag { background: #EDE9E3 !important; color: #4A5568 !important; border-color: #D6CFC4 !important; }
.v2-port-metrics { border-top-color: #EDE9E3 !important; }
.v2-port-co-name { color: #0F172A !important; }
.v2-port-co-type { color: #9E9485 !important; }
.v2-port-lbl { color: #9E9485 !important; }
.v2-port-text { color: #4A5568 !important; }
.v2-port-metric span { color: #9E9485 !important; }

/* ── PROCESS (dark navy) ── */
.v2-pstep-num {
  background: rgba(212,160,23,0.15) !important;
  border-color: rgba(212,160,23,0.3) !important;
  color: #D4A017 !important;
}
.v2-pstep:hover .v2-pstep-num { background: #C8102E !important; color: #fff !important; border-color: #C8102E !important; }
.v2-pstep-title { color: #fff !important; }
.v2-pstep-desc { color: rgba(255,255,255,0.5) !important; }
.v2-process .section-title { color: #fff !important; }
.v2-process .eyebrow { color: #D4A017 !important; }
.v2-process .eyebrow::before { background: #D4A017 !important; }
/* Timeline connector */
.v2-process-steps::before { background: rgba(212,160,23,0.2) !important; }

/* ── FOOTER ── */
.v2-footer { background: #070F1E !important; }
.v2-footer-social { background: rgba(212,160,23,0.1) !important; border-color: rgba(212,160,23,0.2) !important; }
.v2-footer-social:hover { background: #C8102E !important; border-color: #C8102E !important; }
.v2-footer-divider { border-top-color: rgba(255,255,255,0.06) !important; }
.v2-footer-col h4 { color: rgba(255,255,255,0.9) !important; }
.v2-footer-col a { color: rgba(255,255,255,0.45) !important; }
.v2-footer-col a:hover { color: #D4A017 !important; }
.v2-footer-contact-item svg { color: #C8102E !important; }
.v2-footer-tagline { color: rgba(255,255,255,0.5) !important; }
.v2-nl-form input { background: rgba(255,255,255,0.06) !important; border-color: rgba(255,255,255,0.12) !important; }
.v2-nl-form input:focus { border-color: rgba(212,160,23,0.4) !important; }
.v2-nl-form button { background: #C8102E !important; }
.v2-nl-form button:hover { background: #991B1B !important; }

/* ── HERO pills ── */
.v2-hero-pill {
  background: rgba(255,255,255,0.97) !important;
  border: 1.5px solid #EDE9E3 !important;
  box-shadow: 0 8px 28px rgba(15,32,64,0.18) !important;
}
.v2-hp-label { color: #9E9485 !important; }
.v2-hp-value { color: #0F172A !important; }
.v2-hp-delta { color: #C8102E !important; }

/* ── STATS band ── keep deep navy, gold number gradient ── */
.v2-stats { background: linear-gradient(135deg,#0F2040 0%,#1a3360 100%) !important; }
.v2-stats::before { background: radial-gradient(ellipse, rgba(200,16,46,0.1) 0%, transparent 70%) !important; }
.v2-stat-num {
  background: linear-gradient(135deg, #D4A017 0%, #fff 100%) !important;
  -webkit-background-clip: text !important; background-clip: text !important; color: transparent !important;
}
.v2-stat-lbl { color: rgba(255,255,255,0.5) !important; }
.v2-stat-icon svg { stroke: rgba(212,160,23,0.7) !important; color: rgba(212,160,23,0.7) !important; }

/* ── INDUSTRIES — deep navy ── */
.v2-industries { background: #0F2040 !important; }
.v2-industries .section-title { color: #fff !important; }
.v2-industries .section-subtitle { color: rgba(255,255,255,0.65) !important; }
.v2-industries .eyebrow { color: #D4A017 !important; }
.v2-industries .eyebrow::before { background: #D4A017 !important; }
.v2-ind-card:hover .v2-ind-overlay {
  background: linear-gradient(to top, rgba(200,16,46,0.85) 0%, rgba(200,16,46,0.2) 60%, transparent 100%) !important;
}

/* ── HERO trust row ── */
.v2-trust-avs span { background: linear-gradient(135deg, #C8102E, #991B1B) !important; }
.v2-trust-text { color: rgba(255,255,255,0.55) !important; }
.v2-trust-text strong { color: #fff !important; }
.v2-trust-row { border-top-color: rgba(255,255,255,0.1) !important; }

/* ── HERO slide tag ── */
.hero-slide-tag {
  background: rgba(212,160,23,0.15) !important;
  border-color: rgba(212,160,23,0.3) !important;
  color: #D4A017 !important;
}
/* Hero headline gradient word */
.v2-hero-h1 em {
  background: linear-gradient(90deg, #D4A017 0%, #fff 70%) !important;
  -webkit-background-clip: text !important; background-clip: text !important; color: transparent !important;
}

/* ── CTA FINAL — deep navy with gold accent ── */
.v2-cta-final {
  background: linear-gradient(135deg,#0F2040 0%,#1a3360 100%) !important;
}
.v2-cta-final::before {
  background: radial-gradient(ellipse, rgba(212,160,23,0.12) 0%, transparent 70%) !important;
}
.v2-cta-final h2 { color: #fff !important; }
.v2-cta-final p { color: rgba(255,255,255,0.65) !important; }

/* ── CONTACT section — keep red gradient ── */
/* Already red — keep as-is */

/* ── LOGO STRIP ── */
.v2-logos { background: #C8102E !important; }

/* ── PHOTO STATS bar on hero image ── */
.v2-ps-val { color: #fff !important; }
.v2-ps-chg { color: #D4A017 !important; }
.v2-ps-lbl { color: rgba(255,255,255,0.45) !important; }
.v2-ps-div { background: rgba(255,255,255,0.15) !important; }
.v2-photo-stats { background: linear-gradient(to top, rgba(15,32,64,0.95) 0%, rgba(15,32,64,0.5) 70%, transparent 100%) !important; }

/* ── AI section inline text colors ── */
/* The AI section uses inline styles — target feature row icons */

/* ── HERO dots ── */
.hero-dot { background: rgba(255,255,255,0.3) !important; }
.hero-dot.active { background: #D4A017 !important; }

/* ── MARQUEE chips ── */
.v2-logo-chip { border-color: rgba(255,255,255,0.2) !important; color: rgba(255,255,255,0.5) !important; background: rgba(255,255,255,0.06) !important; }
.v2-logo-chip:hover { color: #fff !important; border-color: rgba(255,255,255,0.5) !important; background: rgba(255,255,255,0.14) !important; }

/* ── Float button ── */
.v2-float-btn { background: linear-gradient(135deg,#C8102E,#991B1B) !important; }
.v2-float-ping { background: #C8102E !important; }

/* ── Buttons ── */
.btn-outline-red { color: #C8102E !important; border-color: #C8102E !important; }
.btn-outline-red:hover { background: #C8102E !important; color: #fff !important; }
.btn-outline-white:hover { background: rgba(255,255,255,0.15) !important; }
