/* ═══════════════════════════════════════════════════
   styles.css — Tahche Unified Stylesheet
   Covers: index.html, build-your-team.html, technology.html
   ═══════════════════════════════════════════════════ */

/* ── RESET + ROOT ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #2747C9;
  --navy-dk: #1a32a0;
  --navy-lt: #e8f0fe;
  --gold: #F5C518;
  --gold-dk: #d4a800;
  --gold-lt: #fef9e0;
  --ink: #1b2022;
  --ink-mid: #2f3537;
  --ink-muted: #5a6368;
  --ink-faint: #9ba4a8;
  --surface: #f9f9fa;
  --white: #ffffff;
  --border: rgba(27, 32, 34, 0.08);
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --r: 14px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 70px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

nav.scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.09);
}

.nav-logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 36px;
  display: block;
}

a.cert-badge {
  text-decoration: none;
  cursor: pointer;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #2747C9 0%, #7B3FE4 50%, #F5C518 100%);
  border-radius: 20px;
  padding: 5px 13px 5px 9px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(123, 63, 228, 0.35);
  transition: opacity 0.2s, transform 0.2s;
}

.cert-badge:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.cert-badge svg path {
  fill: #fff;
}

@media (max-width: 768px) {
  .cert-badge {
    display: none;
  }
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
}

.nav-cta {
  background: var(--navy) !important;
  color: white !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  font-weight: 700 !important;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--navy-dk) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 301;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav panel */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 400;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-nav-overlay.open {
  display: block;
  opacity: 1;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  max-width: 88vw;
  background: #fff;
  z-index: 401;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 0;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 70px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.mobile-nav-header img {
  height: 30px;
}

.mobile-nav-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
}

.mobile-nav-close:hover {
  background: var(--surface);
  color: var(--ink);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 16px 24px;
  flex: 1;
}

.mobile-nav-links li a {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-nav-links li:last-child a {
  border-bottom: none;
}

.mobile-nav-links li a:hover {
  color: var(--navy);
}

.mobile-nav-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}

.mobile-nav-footer a {
  display: block;
  text-align: center;
  background: var(--navy);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s;
}

.mobile-nav-footer a:hover {
  background: var(--navy-dk);
}

/* ── HERO (index) ── */
#hero {
  background: var(--navy-lt);
  padding: 130px 5vw 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#hero-video-section {
  position: relative;
  overflow: hidden;
}

#hero-video {
  height: 85vh;
  width: 100%;
  object-fit: cover;
}

.hero-overlay {
  --ink: #fff;
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title {
  display: flex;
  justify-content: center;
}

.hero-title a {
  transition: 0.3s;
  color: #fff;
  text-align: center;
  text-decoration: none;
  z-index: 3;
}

.hero-title a:hover {
  color: var(--gold);
  z-index: 3;
}

img.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .15s;
  opacity: 0;
}

.hero-bottom-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .15s;
  z-index: 2;
}

.hero-bottom-gradient.flipped {
  transform: scale(-1, 1);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-lt);
  border: 1px solid var(--gold);
  color: #7a5f00;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-dk);
  animation: blink 2s ease infinite;
}

.what-we-do {
  display: flex;
  align-items: center;
  background: var(--navy-lt);
  padding: 60px 5vw;
  position: relative;
  overflow: hidden;
}

.what-we-do .hero-left {
  flex-basis: 50%;
  padding-bottom: 24px;
  text-align: left;
  z-index: 3;
}

.hero-left h1 {
  --ink: var(--navy-dk);
}

.hero-left .hero-cta-group {
  justify-content: flex-start;
}

.what-we-do .hero-right {
  flex-basis: 50%;
  z-index: 3;
}

.hero-right video {
  width: 100%;
  border-radius: 24px;
}

/* ── CAROUSEL ── */
.hero-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}

.hero-carousel .carousel-track {
  display: flex;
  height: 100%;
  gap: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hero-carousel .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: background 0.2s;
}

.carousel-btn:hover {
  background: #fff;
}

.carousel-btn.prev {
  left: 12px;
}

.carousel-btn.next {
  right: 12px;
}

.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.carousel-dot.active {
  background: #fff;
  transform: scale(1.25);
}

/* ── KEYFRAMES ── */
@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

/* ── TYPOGRAPHY ── */
h1 {
  --ink: var(--navy-dk);
  font-size: clamp(38px, 6vw, 70px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 20px;
}

h2 {
  --ink: var(--navy-dk);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 16px;
}

h2 em {
  font-style: italic;
  color: var(--navy);
}

.hero-sub {
  font-size: 18px;
  color: #fff;
  max-width: 580px;
  margin: 0 0 36px;
  line-height: 1.75;
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  background: var(--navy-lt);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-tag.white {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.section-sub {
  font-size: 17px;
  color: var(--ink-muted);
  max-width: 520px;
  line-height: 1.75;
  font-weight: 400;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

section.pad {
  padding: 96px 5vw;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.section-header h2.white {
  color: #fff;
}

.section-header p {
  font-size: 17px;
  color: var(--ink-muted);
  margin-top: 12px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.section-header p.white {
  color: rgba(255, 255, 255, 0.55);
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: white;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(39, 71, 201, 0.3);
}

.btn-primary:hover {
  background: var(--navy-dk);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--navy);
  padding: 15px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--navy);
  transition: background 0.2s, transform 0.2s;
}

.btn-outline:hover {
  background: var(--navy-lt);
  transform: translateY(-2px);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ── HERO PHOTOS ── */
.hero-photos {
  display: flex;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.hero-photo {
  width: 155px;
  height: 195px;
  border-radius: 100px 100px 14px 14px;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid white;
  box-shadow: 0 8px 28px rgba(27, 32, 34, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.hero-photo:nth-child(2) {
  margin-top: -18px;
}

.hero-photo:nth-child(3) {
  border-color: var(--gold);
  margin-top: 12px;
}

.hero-photo:nth-child(4) {
  margin-top: -8px;
}

.hero-photo:nth-child(5) {
  margin-top: 20px;
}

/* ── STATS BAND ── */
.stats-band {
  background: var(--navy-dk);
  padding: 42px 5vw;
  display: flex;
  justify-content: center;
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
  flex-wrap: wrap;
  gap: 0;
}

.stat-item {
  flex: 1;
  max-width: 220px;
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* ── CLIENTS ── */
#clients {
  padding: 52px 5vw;
  background: white;
}

.clients-label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 28px;
}

.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.logo-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  transition: border-color 0.2s, transform 0.2s;
  height: 60px;
  min-width: 120px;
}

.logo-pill:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
}

.logo-pill img {
  height: 26px;
  width: auto;
  filter: grayscale(80%);
  opacity: 0.65;
  transition: filter 0.2s, opacity 0.2s;
}

.logo-pill:hover img {
  filter: none;
  opacity: 1;
}

/* ── SERVICES (index) ── */
#services {
  background: white;
}

.services-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

.services-header .section-sub {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 18px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--r) var(--r) 0 0;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.service-card:hover {
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(39, 71, 201, 0.1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.service-card-icon {
  font-size: 24px;
  margin-bottom: 10px;
  display: block;
}

.service-card p {
  font-size: 12px;
  color: var(--ink-muted);
  line-height: 1.6;
}

.service-intro {
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.service-features {
  list-style: none;
  margin-bottom: 32px;
}

.service-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--ink-muted);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li::before {
  content: '✦';
  color: var(--navy);
  font-size: 10px;
  margin-top: 4px;
  flex-shrink: 0;
}

.service-features li strong {
  color: var(--ink);
  display: block;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 2px;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
}

.sbn {
  background: var(--navy);
  color: white;
  box-shadow: 0 4px 16px rgba(39, 71, 201, 0.25);
}

.sbn:hover {
  background: var(--navy-dk);
  transform: translateY(-1px);
}

.sbo {
  background: white;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.sbo:hover {
  background: var(--navy-lt);
}

/* ── ROLES (index embedded) ── */
#roles {
  background: var(--surface);
}

#roles .roles-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}

#roles .roles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

#roles .role-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 20px;
  text-decoration: none;
  display: block;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

#roles .role-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(39, 71, 201, 0.1);
  border-color: var(--navy);
}

.role-emoji {
  font-size: 26px;
  margin-bottom: 12px;
  display: block;
}

.role-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 4px;
}

.role-desc {
  font-size: 12px;
  color: var(--ink-faint);
  line-height: 1.5;
}

/* ── WHY ── */
#why {
  background: var(--navy);
}

#why .section-tag {
  color: var(--gold);
  background: transparent;
  border: none;
  padding: 0;
}

#why h2 {
  color: white;
}

#why .section-sub {
  color: rgba(255, 255, 255, 0.6);
}

.why-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--r);
  overflow: hidden;
}

.benefit-item {
  background: var(--navy);
  padding: 40px 32px;
  transition: background 0.2s;
}

.benefit-item:hover {
  background: var(--navy-dk);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}

.benefit-title {
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.benefit-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* ── TESTIMONIALS ── */
#testimonials {
  background: white;
}

.tms-header {
  text-align: center;
  margin-bottom: 56px;
}

.tms-header .section-sub {
  margin: 0 auto;
}

.tms-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tms-carousel-viewport {
  flex: 1;
  overflow: hidden;
}

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

.tms-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, opacity 0.2s;
}

.tms-arrow:hover {
  background: var(--navy-lt);
  border-color: var(--navy);
}

.tms-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.tms-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.tms-dot.active {
  background: var(--navy);
  transform: scale(1.3);
}

.tcard {
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.tcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(27, 32, 34, 0.08);
}

.tcard-q {
  font-size: 52px;
  line-height: 0.8;
  color: var(--navy);
  margin-bottom: 14px;
  font-weight: 800;
  opacity: 0.25;
}

.tcard-text {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tcard-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-lt);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
}

.tcard-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tcard-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}

.tcard-role {
  font-size: 12px;
  color: var(--ink-faint);
}

.tcard-stars {
  color: var(--gold-dk);
  font-size: 13px;
  margin-top: 2px;
}

/* Gradient testimonial cards — build your team page */
#testimonials .tcard {
  background: url('assets/gradient-bg/gradient-4.png') no-repeat center center / cover;
  border: none;
}

#testimonials .tcard-q {
  color: var(--navy);
  opacity: 0.3;
}

#testimonials .tcard-text {
  color: var(--navy);
  font-weight: 600;
}

#testimonials .tcard-name {
  color: var(--navy);
}

#testimonials .tcard-role {
  color: #1b3a8a;
}

#testimonials .tcard-stars {
  color: #b45309;
}

#testimonials .tcard-av {
  background: rgba(39, 71, 201, 0.15);
  color: var(--navy);
}

/* ── PODCAST ── */
#podcast {
  background: var(--surface);
}

.podcast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.podcast-video {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(27, 32, 34, 0.15);
}

.podcast-video img {
  width: 100%;
  display: block;
}

.podcast-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
  align-items: center;
}

.podcast-badges img {
  height: 34px;
  width: auto;
}

/* ── FAQ ── */
#faq {
  background: var(--navy-lt);
}

.faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  transition: background 0.2s;
}

.faq-q:hover {
  background: var(--navy-lt);
}

.faq-q-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-q img {
  width: 20px;
  height: 20px;
  opacity: 0.5;
}

.faq-a {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.75;
  display: none;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-chevron {
  transition: transform 0.3s;
  font-size: 13px;
  color: var(--navy);
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

/* ── FINAL CTA (index) ── */
#cta-final {
  padding: 96px 5vw;
  text-align: center;
  background: url('assets/gradient-bg/gradient-3.png') no-repeat center center / cover;
}

.cta-logo {
  margin: 0 auto 28px;
  display: block;
  width: 80px;
}

#cta-final h2 {
  margin-bottom: 8px;
}

.cta-tagline {
  font-size: 15px;
  color: var(--ink-faint);
  font-style: italic;
  margin-bottom: 40px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── AI PARTNERSHIP ── */
#ai-partnership {
  padding: 96px 5vw;
  background: url('assets/gradient-bg/gradient-3.png') no-repeat center center / cover, linear-gradient(135deg, #0f1a5e 0%, #1a0a3e 45%, #1a2022 100%);
  position: relative;
  overflow: hidden;
}

#ai-partnership::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(39, 71, 201, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(123, 63, 228, 0.2) 0%, transparent 55%),
    radial-gradient(ellipse at 60% 80%, rgba(245, 197, 24, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.ai-partner-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ai-partner-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ai-partner-badge-lg {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(90deg, #2747C9, #7B3FE4, #F5C518);
  border-radius: 20px;
  padding: 5px 14px 5px 10px;
  margin-bottom: 20px;
  width: fit-content;
}

.ai-partner-content h2 {
  color: #fff;
  margin-bottom: 12px;
}

.ai-partner-access-title {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 700;
  color: #F5C518;
  margin-bottom: 16px;
  line-height: 1.3;
}

.ai-partner-desc {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 36px;
}

.ai-partner-desc strong {
  color: #F5C518;
}

.ai-partner-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ai-partner-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.ai-partner-benefit-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-partner-benefit-icon svg {
  width: 28px;
  height: 28px;
}

.ai-partner-benefit-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #F5C518;
  margin-bottom: 3px;
}

.ai-partner-benefit-text span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.ai-partner-logos {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(123, 159, 255, 0.2);
}

.ai-partner-logos-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.75);
  display: block;
  margin-bottom: 14px;
  font-weight: 600;
}

.ai-partner-logos-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ai-partner-logo-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(123, 159, 255, 0.15), rgba(123, 159, 255, 0.05));
  border: 1px solid rgba(123, 159, 255, 0.35);
  border-radius: 10px;
  padding: 10px 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 0 16px rgba(123, 159, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.ai-partner-logo-chip svg {
  opacity: 0.9;
}

.ai-partner-logo-divider {
  width: 1px;
  height: 28px;
  background: rgba(123, 159, 255, 0.25);
}

.ai-partner-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 20px;
  background: linear-gradient(135deg, rgba(123, 159, 255, 0.1), rgba(80, 120, 255, 0.04));
  border: 1px solid rgba(123, 159, 255, 0.25);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 24px rgba(123, 159, 255, 0.1);
}

.ai-partner-stat {
  flex: 1;
  padding: 18px 16px;
  text-align: center;
}

.ai-partner-stat strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: #F5C518;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.ai-partner-stat span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.ai-partner-stat-divider {
  width: 1px;
  background: rgba(123, 159, 255, 0.2);
  flex-shrink: 0;
  align-self: stretch;
}

.ai-partner-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ai-partner-right .ai-partner-access-title {
  margin-bottom: 0;
}

.ai-partner-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
  background: var(--gold);
  color: var(--navy-dk);
  font-size: 17px;
  font-weight: 800;
  padding: 20px 40px;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 24px rgba(245, 197, 24, 0.35);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.ai-partner-cta-btn::after {
  content: '→';
  font-size: 18px;
}

.ai-partner-cta-btn:hover {
  background: var(--gold-dk);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(245, 197, 24, 0.45);
}

.ai-partner-form-wrap {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 400px;
}

.ai-partner-form-wrap iframe {
  width: 100%;
  border: none;
  display: block;
}

@media (max-width: 960px) {
  .ai-partner-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ai-partner-right {
    width: 100%;
  }
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 5vw;
}

.footer-slim {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-slim>span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-slim-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-slim-socials a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  transition: border-color 0.2s, opacity 0.2s;
  opacity: 0.8;
}

.footer-slim-socials a:hover {
  opacity: 1;
  border-color: #fff;
}

@media (max-width: 768px) {
  .footer-slim {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}

/* ── NEWSLETTER POPUP ── */
#tnp-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 600;
  background: rgba(10, 18, 60, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

#tnp-overlay.open {
  display: flex;
}

#tnp-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  width: 100%;
  max-width: 920px;
  height: min(90vh, 680px);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
  animation: tnp-in 0.3s var(--ease) both;
  position: relative;
}

@keyframes tnp-in {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(16px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

#tnp-left {
  background-color: #e8eef8;
  background-image: url('assets/gradient-bg/gradient-4.png');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  position: relative;
}

#tnp-left::before {
  display: none;
}

#tnp-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: background 0.2s;
}

#tnp-close:hover {
  background: rgba(0, 0, 0, 0.15);
}

.tnp-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0e2044;
  display: inline-block;
  align-self: flex-start;
  position: relative;
}

#tnp-left h3 {
  font-size: clamp(32px, 3.8vw, 46px);
  font-weight: 900;
  color: #2747C9;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0;
  position: relative;
}

#tnp-left > p {
  font-size: 14px;
  color: #1b2022;
  line-height: 1.65;
  margin: 0;
  position: relative;
}

.tnp-what {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0e2044;
  margin-top: 4px;
}

.tnp-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tnp-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #1b2022;
}

.tnp-bullets li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.tnp-bullets strong {
  color: #0e2044;
}

#tnp-right {
  background: #fff;
  overflow-y: auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

#tnp-right-header {
  padding: 36px 36px 0;
}

#tnp-right-header h4 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 10px;
}

#tnp-right-header p {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.6;
  margin: 0;
}

#tnp-right iframe {
  display: block;
  width: 100%;
  border: none;
  flex: 1;
  min-height: 0;
}

@media (max-width: 768px) {
  #tnp-card {
    grid-template-columns: 1fr;
  }

  #tnp-left {
    padding: 36px 28px 28px;
  }

  #tnp-left h3 {
    font-size: clamp(20px, 6vw, 28px);
  }

  #tnp-right-header {
    padding: 24px 24px 0;
  }
}

/* ── SCHEDULE MODAL (shared) ── */
.schedule-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(10, 18, 60, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.schedule-modal-overlay.open {
  display: flex;
}

.schedule-modal-card {
  background: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
  animation: modal-in 0.25s var(--ease) both;
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(16px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.schedule-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.07);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  transition: background 0.2s, color 0.2s;
}

.schedule-modal-close:hover {
  background: rgba(0, 0, 0, 0.14);
  color: var(--ink);
}

.schedule-modal-body iframe {
  display: block;
  width: 100%;
  border: none;
  min-height: 680px;
}

/* ── ANIMATIONS ── */
.anim {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.anim.vis {
  opacity: 1;
  transform: none;
}

.anim.visible {
  opacity: 1;
  transform: none;
}

.anim-d1 {
  transition-delay: 0.1s;
}

.anim-d2 {
  transition-delay: 0.2s;
}

.anim-d3 {
  transition-delay: 0.3s;
}

.anim-d4 {
  transition-delay: 0.4s;
}

/* ── RESPONSIVE (base) ── */
@media(max-width:1024px) {

  .services-grid,
  .why-header,
  .podcast-grid,
  .roles-header {
    grid-template-columns: 1fr;
  }

  #roles .roles-header {
    grid-template-columns: 1fr;
  }

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

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:768px) {
  nav {
    padding: 0 6vw;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .stats-band {
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 0 0 50%;
    max-width: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .stat-item:nth-child(2n) {
    border-right: none;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .hero-photo:nth-child(n+5) {
    display: none;
  }
}

@media(max-width:480px) {
  .roles-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-photos {
    gap: 6px;
  }

  .hero-photo {
    width: 120px;
    height: 155px;
  }
}

/* ═══════════════ NEW SECTION STYLES ═══════════════ */

/* Services 3-col */
.svc-intro-section {
  background: white;
  padding: 80px 5vw;
  position: relative;
}

.svc-intro-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 4;
}

.svc-intro-header {
  text-align: center;
  margin-bottom: 48px;
}

.services-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.svc-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.svc-card:hover {
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(39, 71, 201, .1);
}

.svc-card.featured {
  background: var(--navy);
  border-color: var(--navy);
}

.svc-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: var(--gold-lt);
  color: #7a5f00;
  padding: 4px 12px;
  border-radius: 50px;
}

.svc-card.featured .svc-tag {
  background: rgba(245, 197, 24, .2);
  color: var(--gold);
}

.svc-icon {
  font-size: 36px;
}

.svc-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}

.svc-card.featured .svc-title {
  color: white;
}

.svc-desc {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.75;
  flex: 1;
}

.svc-card.featured .svc-desc {
  color: rgba(255, 255, 255, .75);
}

.svc-cta {
  text-align: center;
}

/* Verticals */
.verticals-section {
  position: relative;
  padding: 80px 5vw;
  z-index: 3;
}

.verticals-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.verticals-header {
  text-align: center;
  margin-bottom: 48px;
}

.verticals-network {
  font-size: 16px;
  color: var(--navy);
  font-weight: 700;
  margin-top: 10px;
}

.verticals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.vertical-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.vertical-card:hover {
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(39, 71, 201, .1);
}

.vertical-icon {
  font-size: 28px;
  width: 52px;
  height: 52px;
  background: var(--navy-lt);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vertical-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
}

.vertical-desc {
  font-size: 12px;
  color: var(--ink-muted);
}

.vertical-arrow {
  color: var(--navy);
  font-size: 18px;
  margin-left: auto;
}

/* Social Proof */
.social-proof-section {
  position: relative;
  padding: 80px 5vw;
  background: white;
}

.sp-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sp-header {
  text-align: center;
  margin-bottom: 56px;
}

.sp-trusted {
  font-size: 12px;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  margin-bottom: 8px;
}

.sp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 64px;
}

.sp-stat {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.sp-stat:last-child {
  border-right: none;
}

.sp-stat-num {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.03em;
}

.sp-stat-label {
  font-size: 14px;
  color: var(--ink-muted);
  font-weight: 500;
}

/* ── Roles We Fill ────────────────────── */
.roles-section {
  padding: 96px 0;
  background: url('assets/gradient-bg/gradient-4.png') no-repeat center center / cover;
}

.roles-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.roles-header {
  text-align: center;
  margin-bottom: 56px;
}

.roles-header .section-tag {
  color: var(--navy);
  background: rgba(39, 71, 201, 0.1);
  border-color: rgba(39, 71, 201, 0.2);
}

.roles-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-top: 12px;
}

.roles-header h2 em {
  color: var(--navy);
  font-style: normal;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 10px;
  justify-content: center;
}

.role-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(39, 71, 201, 0.15);
  border-radius: 50px;
  text-decoration: none;
  color: inherit;
  transition: background .2s, transform .2s, border-color .2s, box-shadow .2s;
  backdrop-filter: blur(8px);
  white-space: nowrap;
  flex-shrink: 0;
}

.role-card:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(39, 71, 201, 0.15);
}

.role-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.role-icon svg {
  width: 32px;
  height: 32px;
}

.role-card strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.role-card p {
  display: none;
}

.roles-cta {
  text-align: center;
  margin-top: 48px;
}

.btn-link-arrow {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -.01em;
  transition: opacity .2s;
}

.btn-link-arrow:hover {
  opacity: .75;
}

@media (max-width: 600px) {
  .roles-grid {
    grid-template-columns: repeat(2, auto);
  }

  .role-card {
    padding: 9px 14px;
  }

  .role-card strong {
    font-size: 13px;
  }
}

.carousel-section {
  margin-bottom: 64px;
}

.clients-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.clients-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.carousel-section h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 32px;
  text-align: center;
  letter-spacing: -.02em;
}

.two-videos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 64px;
}

.two-video-item h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: -.02em;
  color: var(--navy);
}

@media (max-width: 768px) {
  .two-videos-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.carousel-outer {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform .5s var(--ease);
}

.carousel-track .tcard {
  min-width: 360px;
  flex-shrink: 0;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.carousel-btn {
  background: white;
  border: 1.5px solid var(--border);
  color: var(--ink);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
}

.carousel-btn:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

.video-block {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--ink);
  position: relative;
  box-shadow: 0 20px 60px rgba(27, 32, 34, .15);
}

.video-overlay-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  z-index: 2;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(135deg, var(--navy-dk), var(--navy));
  padding: 40px;
}

.video-play-btn {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, .3);
  transition: background .2s;
}

.video-play-btn:hover {
  background: rgba(255, 255, 255, .35);
}

.video-title-txt {
  color: white;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}

.video-sub-txt {
  color: rgba(255, 255, 255, .6);
  font-size: 14px;
}

/* Culture */
.culture-section {
  background: var(--surface);
  padding: 80px 5vw;
}

.culture-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.culture-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.culture-text h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.15;
}

.culture-text p {
  font-size: 16px;
  color: var(--ink-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.culture-quote {
  background: white;
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  font-size: 15px;
  font-style: italic;
  color: var(--ink);
  box-shadow: 0 4px 16px rgba(27, 32, 34, .06);
}

.culture-quote cite {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-style: normal;
  color: var(--ink-muted);
  font-weight: 600;
}

.culture-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.culture-highlight {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color .2s, transform .2s;
}

.culture-highlight:hover {
  border-color: var(--navy);
  transform: translateX(4px);
}

.ch-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  background: var(--navy-lt);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ch-text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  display: block;
  margin-bottom: 2px;
}

.ch-text span {
  font-size: 13px;
  color: var(--ink-muted);
}

.culture-photos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}

.culture-photo-ph {
  aspect-ratio: 1;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 36px;
}

.culture-photo-ph span {
  font-size: 11px;
  color: var(--ink-muted);
  font-weight: 600;
}

/* Tech Preview */
.tech-preview-section {
  padding: 80px 5vw;
  background: var(--navy);
  --ink: #fff;
  --ink-muted: rgba(255, 255, 255, 0.7);
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
}

.tech-preview-section h2 {
  --ink: #fff;
}

.tech-preview-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.tech-preview-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.tp-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: border-color .2s, transform .2s;
}

.tp-card:hover {
  border-color: var(--navy);
  transform: translateY(-4px);
}

.tp-icon {
  font-size: 48px;
  margin-bottom: 14px;
  display: block;
}

.tp-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.tp-desc {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* Section Footer */
.section-footer {
  background: var(--ink);
  padding: 72px 5vw 56px;
  text-align: center;
}

.sf-logo img {
  height: 40px;
  filter: brightness(10);
  margin-bottom: 20px;
}

.sf-tagline {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
  letter-spacing: -.02em;
}

.sf-powered {
  font-size: 14px;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 32px;
}

.sf-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto;
  border-radius: 2px;
}

/* ── BUILD YOUR TEAM (embedded pricing in index) ── */
#build-your-team {
  scroll-margin-top: 70px;
}

.pricing-hero {
  padding: 100px 5vw 64px;
  text-align: center;
  background: var(--navy-lt);
}

.pricing-hero h2 {
  font-size: clamp(32px, 4.5vw, 54px);
}

.pricing-hero p {
  font-size: 18px;
  color: var(--ink-muted);
  max-width: 580px;
  margin: 16px auto 0;
}

.pricing-section {
  padding: 72px 5vw;
  background: white;
}

.pricing-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pricing-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 24px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(27, 32, 34, .1);
}

.pricing-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 20px 60px rgba(39, 71, 201, .3);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink-muted);
  margin-bottom: 8px;
}

.pricing-card.featured .pricing-tier {
  color: rgba(255, 255, 255, .5);
}

.pricing-name {
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -.02em;
}

.pricing-card.featured .pricing-name {
  color: white;
}

.pricing-price {
  font-size: 44px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -.03em;
}

.pricing-card.featured .pricing-price {
  color: var(--gold);
}

.pricing-note {
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 28px;
}

.pricing-card.featured .pricing-note {
  color: rgba(255, 255, 255, .5);
}

.pf-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  margin-bottom: 32px;
}

.pf-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.5;
}

.pricing-card.featured .pf-list li {
  color: rgba(255, 255, 255, .8);
}

.pf-list li::before {
  content: '✓';
  color: var(--navy);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card.featured .pf-list li::before {
  color: var(--gold);
}

.pricing-btn {
  display: block;
  text-align: center;
  padding: 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform .2s, background .2s;
  border: none;
  cursor: pointer;
  font-family: var(--font);
}

.pb-solid {
  background: var(--navy);
  color: white;
  box-shadow: 0 4px 20px rgba(39, 71, 201, .3);
}

.pb-solid:hover {
  background: var(--navy-dk);
  transform: translateY(-2px);
}

.pricing-card.featured .pb-solid {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 4px 20px rgba(245, 197, 24, .4);
}

.pb-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.pb-outline:hover {
  background: var(--navy-lt);
  transform: translateY(-2px);
}

/* ── PAYMENT + CALENDAR ── */
.payment-section {
  padding: 72px 5vw;
  background: var(--surface);
}

.payment-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.payment-header {
  text-align: center;
  margin-bottom: 56px;
}

.payment-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.form-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 44px;
}

.form-box h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}

.form-sub {
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 32px;
}

.fgrp {
  margin-bottom: 20px;
}

.fgrp label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-muted);
  margin-bottom: 6px;
}

.fgrp input,
.fgrp select,
.fgrp textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--ink);
  background: var(--surface);
  transition: border-color .2s;
  outline: none;
}

.fgrp input:focus,
.fgrp select:focus,
.fgrp textarea:focus {
  border-color: var(--navy);
  background: white;
}

.fgrp textarea {
  resize: vertical;
  min-height: 110px;
}

.frow2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--navy);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .2s;
  font-family: var(--font);
  margin-top: 8px;
  box-shadow: 0 4px 20px rgba(39, 71, 201, .3);
}

.form-submit-btn:hover {
  background: var(--navy-dk);
  transform: translateY(-2px);
}

.cal-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 44px;
  display: flex;
  flex-direction: column;
}

.cal-box h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}

.cal-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0;
}

.cal-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.cal-step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.cal-step-text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  display: block;
}

.cal-step-text span {
  font-size: 12px;
  color: var(--ink-muted);
}

.cal-embed {
  flex: 1;
  background: var(--surface);
  border-radius: 16px;
  border: 2px dashed var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 48px;
  min-height: 260px;
}

.cal-embed-icon {
  font-size: 48px;
}

.cal-embed p {
  font-size: 14px;
  color: var(--ink-muted);
  text-align: center;
  max-width: 240px;
  line-height: 1.6;
}

.cal-embed-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background .2s;
}

.cal-embed-btn:hover {
  background: var(--navy-dk);
}

/* ── COMPARISON TABLE ── */
.comparison-section {
  padding: 72px 5vw;
  background: white;
}

.comparison-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.comparison-header {
  text-align: center;
  margin-bottom: 48px;
}

.ctable-wrap {
  overflow-x: auto;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  box-shadow: 0 8px 32px rgba(27, 32, 34, .06);
  background: #fff;
}

.ctable {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.ctable thead th {
  padding: 20px 24px;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  background: var(--ink);
  color: white;
}

.ctable thead th.tc-col {
  background: var(--navy);
  color: var(--gold);
}

.ctable thead th.feat-col {
  color: rgba(255, 255, 255, .5);
  font-size: 13px;
}

.ctable tbody td {
  padding: 15px 24px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

.ctable tbody tr:last-child td {
  border-bottom: none;
}

.ctable tbody tr:nth-child(even) td {
  background: var(--surface);
}

.ctable td.fname {
  font-weight: 600;
  color: var(--ink);
}

.c-yes {
  color: #16a34a;
  font-size: 20px;
}

.c-no {
  color: #dc2626;
  font-size: 20px;
}

.c-partial {
  color: var(--gold-dk);
  font-weight: 600;
  font-size: 13px;
}

/* ── TECHNOLOGY (embedded section in index) ── */
#technology {
  scroll-margin-top: 70px;
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
}

.tech-page-hero {
  padding: 100px 5vw 64px;
  text-align: center;
  background: linear-gradient(135deg, var(--navy-dk), var(--navy));
}

.tech-page-hero .section-tag {
  color: rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
}

.tech-page-hero h2 {
  color: white;
}

.tech-page-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, .7);
  max-width: 560px;
  margin: 12px auto 0;
}

.product-section {
  padding: 100px 5vw;
}

.product-section.alt-bg,
.product-section.alt {
  background: var(--surface);
}

.product-section img[alt*="Dashboard"],
.product-section img[alt*="Career"] {
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(39, 71, 201, 0.18), 0 8px 24px rgba(0, 0, 0, 0.10);
  transition: transform 0.3s;
}

.product-section img[alt*="Dashboard"]:hover,
.product-section img[alt*="Career"]:hover {
  transform: translateY(-6px);
}

.product-section.dark {
  background: linear-gradient(135deg, #060b1e 0%, #0e1a5e 70%, #060b1e 100%);
}

.product-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.product-layout.flip {
  direction: rtl;
}

.product-layout.flip>* {
  direction: ltr;
}

.tahche-app {
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.product-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--navy);
  background: var(--navy-lt);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.product-label.dark-label {
  color: #7B9FFF;
  background: rgba(39, 71, 201, 0.15);
  border: 1px solid rgba(39, 71, 201, 0.3);
}

.product-info h2 {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.product-info h2.white {
  color: #fff;
}

.product-info p {
  font-size: 16px;
  color: var(--ink-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.product-info p.white {
  color: rgba(255, 255, 255, 0.65);
}

.product-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.product-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pfl-icon {
  width: 34px;
  height: 34px;
  background: var(--navy-lt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--navy);
  font-size: 16px;
}

.pfl-icon.dark-icon {
  background: rgba(39, 71, 201, 0.2);
  color: #7B9FFF;
}

.pfl-text strong {
  font-weight: 700;
  color: var(--ink);
  display: block;
  margin-bottom: 2px;
  font-size: 14px;
}

.pfl-text strong.white {
  color: #fff;
}

.pfl-text span {
  font-size: 13px;
  color: var(--ink-muted);
}

.pfl-text span.white {
  color: rgba(255, 255, 255, 0.55);
}

.app-screens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.app-screen-ph {
  border-radius: 20px;
  aspect-ratio: 9/19;
  background: linear-gradient(160deg, var(--navy-lt), var(--navy));
  border: 2px solid rgba(255, 255, 255, .2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
}

.app-screen-ph .scr-icon {
  font-size: 32px;
}

.app-screen-ph .scr-lbl {
  font-size: 10px;
  color: rgba(255, 255, 255, .7);
  text-align: center;
  font-weight: 600;
  line-height: 1.4;
}

.dashboard-screens-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dashboard-ph {
  border-radius: 16px;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--navy-lt), #c5cae9);
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
}

.dashboard-ph .dash-icon {
  font-size: 32px;
}

.dashboard-ph .dash-lbl {
  font-size: 11px;
  color: var(--ink-muted);
  font-weight: 600;
  text-align: center;
}

.dl-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: white;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: background .2s, transform .2s;
}

.dl-btn:hover {
  background: #333;
  transform: translateY(-2px);
}

.dl-btn-icon {
  font-size: 22px;
}

.dl-btn-sub {
  font-size: 10px;
  opacity: .6;
  display: block;
}

.dl-btn-store {
  font-size: 14px;
  font-weight: 700;
  display: block;
}

.qr-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--border);
}

.qr-box {
  width: 76px;
  height: 76px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--ink-muted);
  text-align: center;
  padding: 6px;
  font-weight: 600;
  flex-shrink: 0;
}

.qr-info {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ── BUSINESS INSIGHTS ── */
#business-insights {
  scroll-margin-top: 70px;
}

.insights-hero {
  padding: 100px 5vw 64px;
  text-align: center;
  background: var(--gold);
}

.insights-hero h2 {
  margin-bottom: 12px;
}

.insights-hero p {
  font-size: 18px;
  color: var(--ink-muted);
  max-width: 560px;
  margin: 0 auto;
}

.podcast-section-wrap {
  padding: 64px 5vw;
  max-width: 1200px;
  margin: 0 auto;
}

.podcast-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  background: var(--navy);
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 48px;
}

.podcast-art {
  width: 110px;
  height: 110px;
  border-radius: 18px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  border: 3px solid rgba(255, 255, 255, .2);
  flex-shrink: 0;
}

.podcast-banner-meta h3 {
  font-size: 22px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.podcast-banner-meta p {
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  max-width: 500px;
  line-height: 1.6;
}

.podcast-listen-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.listen-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .1);
  color: white;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: background .2s;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, .15);
}

.listen-btn:hover {
  background: rgba(255, 255, 255, .2);
}

.episodes-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}

.episode-list {
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.episode-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--border);
  background: white;
  transition: background .2s;
}

.episode-item:last-child {
  border-bottom: none;
}

.episode-item:hover {
  background: var(--surface);
}

.ep-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  background: var(--navy-lt);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ep-info {
  flex: 1;
  min-width: 0;
}

.ep-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.4;
}

.ep-meta {
  font-size: 12px;
  color: var(--ink-muted);
}

.ep-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1.5px solid var(--border);
  color: var(--navy);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, border-color .2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.ep-view-btn:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

.resources-callout {
  background: var(--gold-lt);
  border: 1.5px solid var(--gold);
  border-radius: 20px;
  padding: 36px 40px;
  margin-top: 48px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.rc-icon {
  font-size: 36px;
  flex-shrink: 0;
  line-height: 1;
}

.rc-content h4 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.rc-content p {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.rc-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1.5px solid var(--gold-dk);
  color: var(--ink);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s;
}

.rc-link:hover {
  background: var(--gold);
}

/* ── CONTACT ── */
#contact {
  scroll-margin-top: 70px;
  padding: 100px 5vw 80px;
  background: var(--surface);
}

.contact-inner {
  max-width: 960px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 56px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}

.contact-info h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cdi {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-muted);
}

.cdi-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.cdi a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
}

.cdi a:hover {
  text-decoration: underline;
}

.contact-form-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
}

/* ── RESPONSIVE (new) ── */
@media(max-width:1024px) {
  .services-3col {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .sp-stats .sp-stat:nth-child(2) {
    border-right: none;
  }

  .sp-stats .sp-stat:nth-child(3) {
    border-top: 1px solid var(--border);
  }

  .sp-stats .sp-stat:nth-child(4) {
    border-top: 1px solid var(--border);
  }

  .tech-preview-cards {
    grid-template-columns: 1fr 1fr;
  }

  .culture-layout {
    grid-template-columns: 1fr;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .payment-layout {
    grid-template-columns: 1fr;
  }

  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-layout.flip {
    direction: ltr;
  }

  .podcast-banner {
    grid-template-columns: auto 1fr;
  }

  .podcast-listen-btns {
    flex-direction: row;
    grid-column: span 2;
    flex-wrap: wrap;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media(max-width:768px) {
  .what-we-do {
    flex-direction: column;
    padding: 40px 5vw;
    gap: 0;
  }

  .what-we-do .hero-left {
    width: 100%;
    flex-basis: auto;
    padding-bottom: 32px;
  }

  .what-we-do .hero-right {
    width: 100%;
    flex-basis: auto;
  }

  .hero-title {
    flex-direction: column;
    gap: 24px;
  }

  .hero-title a {
    font-size: 57px;
  }

  .services-3col {
    grid-template-columns: 1fr;
  }

  .verticals-grid {
    grid-template-columns: 1fr;
  }

  .carousel-track .tcard {
    min-width: 300px;
  }

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

  .tech-preview-cards {
    grid-template-columns: 1fr;
  }

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

  .dashboard-screens-grid {
    grid-template-columns: 1fr;
  }

  .podcast-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .podcast-art {
    margin: 0 auto;
  }

  .podcast-listen-btns {
    justify-content: center;
  }

  .episode-item {
    flex-wrap: wrap;
  }

  .resources-callout {
    flex-direction: column;
  }

  .contact-form-box {
    padding: 32px 24px;
  }

  .payment-section {
    padding: 48px 4vw;
  }

  .form-box,
  .cal-box {
    padding: 24px 20px;
  }

  .frow2 {
    grid-template-columns: 1fr;
  }

  .cal-embed {
    padding: 28px 16px;
  }
}

/* ══════════════════════════════════════════════
   BUILD-YOUR-TEAM PAGE — unique styles
   ══════════════════════════════════════════════ */
.byt-hero {
  padding: 130px 5vw 80px;
  text-align: center;
  background: var(--navy-lt);
  position: relative;
  overflow: hidden;
}

.byt-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 0%, rgba(39, 71, 201, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.byt-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.byt-hero h1 {
  --ink: var(--navy-dk);
  font-size: clamp(30px, 5.5vw, 64px);
  white-space: nowrap;
}

.byt-hero p {
  font-size: 20px;
  color: var(--ink-muted);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.byt-page .byt-hero p {
  max-width: none;
  white-space: nowrap;
}

.industry-page .byt-hero p {
  white-space: normal;
  max-width: 640px;
}

.gold-hover {
  font-style: italic;
  transition: color 0.2s;
}

.gold-hover:hover {
  color: var(--gold) !important;
}

/* BYT Process */
.process-section {
  padding: 96px 5vw;
  background: url('assets/gradient-bg/gradient-4.png') no-repeat center center / cover;
}

.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.process-header {
  text-align: center;
  margin-bottom: 56px;
}

.process-header .section-sub {
  margin: 0 auto;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

.process-row {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.process-step {
  flex: 1;
  background: var(--sc, #2747C9);
  border: none;
  border-radius: 20px;
  padding: 24px 18px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%, 18px 50%);
  margin-right: -1px;
  min-width: 0;
}

.process-row .process-step:first-child {
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%);
}

.process-row .process-step:last-child {
  clip-path: polygon(18px 0, 100% 0, 100% 100%, 0 100%, 18px 50%);
  margin-right: 0;
}

.process-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.step-num {
  font-size: 36px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}

.step-time {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: 50px;
  margin-bottom: 10px;
  margin-left: 1em;
}

.process-step h3 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
  letter-spacing: -0.01em;
  padding-inline: 1em;
}

.process-step p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  padding-inline: 1em;
}

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  flex-shrink: 0;
  z-index: 2;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.3));
}

.process-cta {
  text-align: center;
}

/* ── Industry Pages ───────────────────── */
.industry-roles-section {
  padding: 96px 5vw;
  background: white;
}

.industry-roles-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.industry-roles-header {
  text-align: center;
  margin-bottom: 56px;
}

.industry-roles-header h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-top: 12px;
}

.industry-roles-header h2 em {
  color: var(--navy);
  font-style: normal;
}

.industry-roles-header .section-sub {
  max-width: 560px;
  margin: 16px auto 0;
}

.industry-roles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.industry-role-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.industry-role-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(39, 71, 201, 0.1);
  border-color: var(--navy);
}

.industry-role-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.industry-role-icon svg {
  width: 40px;
  height: 40px;
}

.industry-role-card-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.industry-role-card strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.industry-role-card p {
  font-size: 13px;
  color: var(--ink-muted);
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .industry-roles-grid {
    grid-template-columns: 1fr;
  }
}

/* BYT Roles */
.byt-page .roles-section {
  padding: 96px 5vw;
  background: var(--surface);
}

.byt-page .roles-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.byt-page .roles-header {
  text-align: center;
  margin-bottom: 48px;
}

.byt-page .roles-header .section-sub {
  margin: 0 auto;
}

.roles-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.role-tag {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-mid);
  cursor: default;
}

.role-tag:hover,
.role-tag.highlight {
  background: white;
  border-color: var(--border);
  color: var(--ink-mid);
}

/* BYT Full Service */
.fullservice-section {
  padding: 96px 5vw;
  background: url('assets/gradient-bg/gradient-2.png') no-repeat center center / cover;
}

.fullservice-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.fullservice-header {
  text-align: center;
  margin-bottom: 56px;
}

.fullservice-header .section-sub {
  margin: 0 auto;
}

/* BYT Pricing extras */
.pricing-breakdown {
  background: var(--surface);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-card.featured .pricing-breakdown {
  background: rgba(255, 255, 255, 0.08);
}

.pricing-breakdown div {
  font-size: 14px;
  color: var(--ink-muted);
}

.pricing-card.featured .pricing-breakdown div {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-breakdown div strong {
  color: var(--navy);
  font-weight: 700;
}

.pricing-card.featured .pricing-breakdown div strong {
  color: var(--gold);
}

.pricing-desc {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.75;
  margin-bottom: 24px;
  flex: 1;
}

.pricing-card.featured .pricing-desc {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-footnote {
  text-align: center;
  font-size: 13px;
  color: var(--ink-faint);
  font-style: italic;
}

/* BYT CTA extras */
.cta-hero-title {
  font-size: clamp(24px, 3.8vw, 52px);
  white-space: nowrap;
}

.cta-word {
  transition: color 0.3s;
  cursor: default;
}

.cta-word:hover {
  color: var(--gold) !important;
}

/* BYT Team Photos */
.photos-section {
  padding: 80px 5vw;
  background: var(--ink);
}

.photos-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.photos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.photos-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  transition: transform 0.3s, box-shadow 0.3s;
}

.photos-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

/* BYT override: pricing grid 2-col */
.byt-page .pricing-section {
  padding: 96px 5vw;
}

.byt-page .pricing-inner {
  max-width: 960px;
}

.byt-page .pricing-grid {
  grid-template-columns: 1fr 1fr;
  margin-top: 0;
  margin-bottom: 32px;
}

.byt-page .pricing-grid .pricing-card {
  padding: 44px 36px;
}

.byt-page .pricing-name {
  font-size: 26px;
  margin-bottom: 16px;
}

/* BYT responsive */
@media (max-width: 1024px) {
  .process-row {
    flex-direction: column;
    gap: 8px;
  }

  .process-step {
    clip-path: none !important;
    margin-right: 0;
    border-radius: 16px;
  }

  .process-arrow {
    display: none;
  }

  .byt-page .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .tms-grid {
    grid-template-columns: 1fr;
  }

  .tms-carousel-wrap {
    gap: 8px;
  }

  .photos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .byt-hero {
    padding: 100px 6vw 60px;
  }

  .byt-hero h1 {
    white-space: normal;
  }

  .byt-hero p {
    white-space: normal;
    max-width: 580px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .stat-item {
    padding: 20px;
  }
}

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

  .roles-tags {
    gap: 8px;
  }
}

/* ══════════════════════════════════════════════
   TECHNOLOGY PAGE — standalone styles
   ══════════════════════════════════════════════ */

/* Tech Hero */
.tech-hero {
  min-height: 100vh;
  background: url('assets/everet.jpg') no-repeat center center / 120% auto;
  display: flex;
  align-items: center;
  padding: 120px 5vw 80px;
  position: relative;
  overflow: hidden;
}

.tech-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.92) 0%, rgba(230, 240, 255, 0.75) 45%, rgba(39, 71, 201, 0.2) 75%, transparent 100%);
  pointer-events: none;
}

.tech-hero::after {
  display: none;
}

.tech-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.tech-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(39, 71, 201, 0.1);
  border: 1px solid rgba(39, 71, 201, 0.25);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.tech-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.tech-hero h1 em {
  font-style: normal;
  color: var(--navy);
  -webkit-text-fill-color: var(--navy);
}

.tech-hero-desc {
  font-size: 18px;
  color: var(--ink-muted);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Tech page CTA section button */
.cta-section .btn-primary {
  background: var(--gold);
  color: var(--ink);
  padding: 14px 32px;
  font-size: 14px;
  box-shadow: 0 4px 20px rgba(245, 197, 24, 0.35);
}

.cta-section .btn-primary:hover {
  background: #e6b800;
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(245, 197, 24, 0.5);
}

/* Hero Visual */
.tech-hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 28px 24px;
  backdrop-filter: blur(12px);
  transition: transform 0.3s, border-color 0.3s;
}

.hero-stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(39, 71, 201, 0.5);
}

.hero-stat-card.accent {
  background: linear-gradient(135deg, rgba(39, 71, 201, 0.3), rgba(39, 71, 201, 0.1));
  border-color: rgba(39, 71, 201, 0.4);
}

.hero-stat-card.span-2 {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 20px;
}

.hsc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(39, 71, 201, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.hsc-icon svg {
  color: #7B9FFF;
}

.hsc-num {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hsc-num.gold {
  color: var(--gold);
}

.hsc-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  font-weight: 500;
}

.hsc-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* App Mockup */
.app-mockup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-frame {
  width: 260px;
  height: 520px;
  background: linear-gradient(160deg, #0e1a5e, #2747C9);
  border-radius: 40px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 0 0 8px 8px;
}

.phone-screen-icon {
  font-size: 48px;
  margin-bottom: 8px;
}

.phone-screen-row {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.psr-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.psr-line {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.psr-line.short {
  max-width: 60%;
}

.phone-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  font-size: 12px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-float-card.top-right {
  top: 40px;
  right: -40px;
}

.phone-float-card.bottom-left {
  bottom: 60px;
  left: -40px;
}

.pfc-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.pfc-icon.green {
  background: #d1fae5;
}

.pfc-icon.blue {
  background: var(--navy-lt);
}

.pfc-label {
  font-weight: 700;
  font-size: 11px;
  display: block;
  color: var(--ink);
}

.pfc-sub {
  font-size: 10px;
  color: var(--ink-muted);
}

/* Dashboard Mockup */
.dashboard-mockup {
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.dash-topbar {
  background: var(--navy);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dash-dots {
  display: flex;
  gap: 6px;
}

.dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dash-dot.r {
  background: #ff5f57;
}

.dash-dot.y {
  background: #febc2e;
}

.dash-dot.g {
  background: #28c840;
}

.dash-title {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 600;
  margin-left: 8px;
}

.dash-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dash-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.dash-stat-box {
  background: var(--surface);
  border-radius: 10px;
  padding: 14px 12px;
  text-align: center;
  border: 1px solid var(--border);
}

.dash-stat-box strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
}

.dash-stat-box span {
  font-size: 10px;
  color: var(--ink-muted);
  font-weight: 500;
}

.dash-bar-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dash-bar-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dash-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dash-bar-name {
  font-size: 11px;
  color: var(--ink-muted);
  width: 80px;
  flex-shrink: 0;
}

.dash-bar-track {
  flex: 1;
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.dash-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--navy);
}

.dash-bar-fill.gold {
  background: var(--gold);
}

.dash-bar-pct {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  width: 30px;
  text-align: right;
}

/* Employee Mockup */
.emp-mockup {
  background: linear-gradient(160deg, #060b1e, #0e1a5e);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.emp-topbar {
  background: rgba(255, 255, 255, 0.05);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.emp-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
}

.emp-greeting {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.emp-date {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
}

.emp-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.emp-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px;
}

.emp-card-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 8px;
}

.emp-card-val {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.emp-card-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

.emp-chip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.emp-chip {
  background: rgba(39, 71, 201, 0.25);
  color: #7B9FFF;
  border: 1px solid rgba(39, 71, 201, 0.35);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
}

.emp-chip.gold {
  background: rgba(245, 197, 24, 0.15);
  color: var(--gold);
  border-color: rgba(245, 197, 24, 0.3);
}

.emp-progress {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.emp-progress-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.emp-progress-name {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  width: 90px;
  flex-shrink: 0;
}

.emp-progress-track {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.emp-progress-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, #2747C9, #7B9FFF);
}

.emp-progress-fill.gold {
  background: linear-gradient(90deg, var(--gold-dk), var(--gold));
}

/* Security Section */
.security-section {
  padding: 100px 5vw;
  background: linear-gradient(135deg, #060b1e 0%, #0e1a5e 70%, #060b1e 100%);
}

.security-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sec-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s;
}

.sec-card:hover {
  border-color: rgba(39, 71, 201, 0.5);
  transform: translateY(-4px);
}

.sec-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(39, 71, 201, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #7B9FFF;
}

.sec-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.sec-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

.sec-uptime {
  font-size: 28px;
  font-weight: 800;
  color: #34d399;
  display: block;
  margin-bottom: 4px;
}

/* Integrations */
.integrations-section {
  padding: 100px 5vw;
  background: var(--surface);
}

.integrations-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.int-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.int-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.int-card:hover {
  border-color: var(--navy);
  box-shadow: 0 8px 32px rgba(39, 71, 201, 0.1);
  transform: translateY(-3px);
}

.int-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.int-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.int-desc {
  font-size: 11px;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* Calculator Section (technology page) */
.calc-section {
  padding: 100px 5vw;
  background: url('assets/gradient-bg/gradient-4.png') no-repeat center center / cover;
  position: relative;
  overflow: hidden;
}

.calc-section::before {
  display: none;
}

.calc-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.calc-heading {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.calc-desc {
  font-size: 17px;
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: 32px;
}

.calc-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.calc-features li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.calc-feat-icon {
  width: 36px;
  height: 36px;
  background: rgba(39, 71, 201, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}

.calc-features strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

.calc-features span {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.5;
}

.calc-stats {
  display: flex;
  gap: 24px;
}

.calc-stat {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(39, 71, 201, 0.15);
  border-radius: 14px;
  padding: 14px 24px;
}

.calc-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.calc-stat span {
  font-size: 12px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.calc-right {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(39, 71, 201, 0.12);
  border-radius: 20px;
  overflow: hidden;
}

.calc-form-header {
  padding: 28px 28px 0;
}

.calc-form-accent {
  width: 36px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  margin-bottom: 14px;
}

.calc-form-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.calc-form-header p {
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 0;
}

.calc-form-wrap {
  padding: 16px 0 0;
}

.calc-cta-card {
  padding: 40px 36px 44px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.calc-cta-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.calc-cta-card p {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 36px;
}

.calc-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 28px;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 8px 24px rgba(39, 71, 201, 0.25);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.calc-cta-btn:hover {
  background: var(--navy-dk);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(39, 71, 201, 0.35);
}

@media (max-width: 960px) {
  .calc-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* CTA Section (technology page) */
.cta-section {
  padding: 100px 5vw;
  background: linear-gradient(135deg, #0e1a5e 0%, #2747C9 50%, #0e1a5e 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-inner p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
  line-height: 1.7;
}

/* Technology page responsive */
@media (max-width: 1024px) {
  .int-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .tech-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .tech-hero-visual {
    display: none;
  }

  .security-grid {
    grid-template-columns: 1fr;
  }

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

/* ── MUSIC BUTTON ── */
#music-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(39, 71, 201, 0.35);
  transition: background 0.2s, transform 0.15s;
  outline: none;
}

#music-btn:hover {
  background: var(--navy-dk);
  transform: scale(1.08);
}

#music-btn svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

#music-btn.muted svg.icon-on {
  display: none;
}

#music-btn.muted svg.icon-off {
  display: block;
}

#music-btn:not(.muted) svg.icon-on {
  display: block;
}

#music-btn:not(.muted) svg.icon-off {
  display: none;
}

/* ══════════════════════════════════════
   BUSINESS INSIGHTS PAGE
══════════════════════════════════════ */

/* Hero */
.bi-hero {
  padding: 140px 5vw 100px;
  background: url('../bryan-cover.jpg') no-repeat right top / cover;
  position: relative;
  overflow: hidden;
}

.bi-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.92) 0%, rgba(230, 240, 255, 0.75) 45%, rgba(39, 71, 201, 0.25) 75%, rgba(245, 197, 24, 0.15) 100%);
  pointer-events: none;
}

.bi-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.bi-hero-text h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.bi-hero-text h1 em {
  font-style: normal;
  color: var(--navy);
}

.bi-hero-desc {
  font-size: 18px;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}

/* Host card */
.bi-host-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.bi-host-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.bi-host-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bi-host-info strong {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}

.bi-host-info span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

/* Stat cards */
.bi-stat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.bi-stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bi-stat-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.bi-stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

/* Section shell */
.bi-section-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5vw;
}

.bi-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.bi-section-header h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-top: 12px;
  margin-bottom: 16px;
}

.bi-section-cta {
  text-align: center;
  margin-top: 48px;
}

/* Podcast section */
.bi-podcast-section {
  padding: 100px 0;
  background: #fff;
}

/* Featured embed */
.bi-featured-embed {
  margin-bottom: 48px;
}

.bi-embed-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.bi-embed-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Episode grid */
.bi-episodes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 0;
}

.bi-episode-card {
  background: #fff;
  border: 1px solid #e8eaf0;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.bi-episode-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.bi-ep-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.bi-ep-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.bi-episode-card:hover .bi-ep-thumb img {
  transform: scale(1.04);
}

.bi-ep-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.2s;
}

.bi-episode-card:hover .bi-ep-play {
  opacity: 1;
}

.bi-ep-play svg {
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}

.bi-ep-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.bi-ep-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}

.bi-ep-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  margin: 0;
  flex: 1;
}

.bi-ep-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 4px;
}

/* Articles section */
.bi-articles-section {
  padding: 100px 0;
  background: var(--surface);
}

.bi-articles-section .bi-section-header h2 {
  color: var(--ink);
}

.bi-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bi-article-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  border: 1px solid #e8eaf0;
  transition: transform 0.2s, box-shadow 0.2s;
}

.bi-article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.bi-article-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.bi-article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.bi-article-card:hover .bi-article-img img {
  transform: scale(1.04);
}

.bi-article-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.bi-article-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.bi-article-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.45;
  margin: 0;
  flex: 1;
}

.bi-article-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

/* Case Studies section */
.bi-case-section {
  padding: 100px 0;
  background: url('assets/gradient-bg/gradient-1.png') no-repeat center center / cover;
  position: relative;
  overflow: hidden;
}

.bi-case-section::before {
  display: none;
}

.bi-case-section .bi-section-inner {
  position: relative;
  z-index: 1;
}

.bi-case-section h2 {
  color: var(--navy) !important;
}

.bi-case-section .section-tag {
  color: var(--navy);
  border-color: var(--navy);
  background: rgba(39, 71, 201, 0.1);
}

.bi-cs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.bi-cs-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(39, 71, 201, 0.2);
  border-radius: 20px;
  padding: 36px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  backdrop-filter: blur(8px);
}

.bi-cs-card:hover {
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(39, 71, 201, 0.2);
}

.bi-cs-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}

.bi-cs-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  margin: 0;
  flex: 1;
}

.bi-cs-company {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.bi-cs-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--navy);
  border: 1px solid rgba(39, 71, 201, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.bi-cs-company>div strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.bi-cs-company>div span {
  font-size: 12px;
  color: var(--ink-muted);
}

.bi-cs-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.2s;
}

.bi-cs-card:hover .bi-cs-cta {
  color: var(--navy);
}

/* Newsletter section */
.bi-newsletter-section {
  padding: 100px 5vw;
  background: url('assets/gradient-bg/gradient-3.png') no-repeat center center / cover;
  position: relative;
  overflow: hidden;
}

.bi-newsletter-section::before {
  display: none;
}

.bi-newsletter-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.bi-newsletter-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.bi-newsletter-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-dk);
  background: rgba(255, 255, 255, 0.9);
  padding: 5px 14px;
  border-radius: 20px;
}

.bi-newsletter-text h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0;
}

.bi-newsletter-text p {
  font-size: 17px;
  color: var(--ink);
  line-height: 1.7;
  margin: 0;
}

.bi-newsletter-form-wrap {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  background: #fff;
}

/* Business Insights responsive */
@media (max-width: 1024px) {
  .bi-episodes-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bi-articles-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .bi-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .bi-newsletter-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bi-newsletter-text {
    align-items: center;
    text-align: center;
  }

  .bi-hero-visual {
    display: none;
  }

  .bi-stat-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .bi-episodes-grid {
    grid-template-columns: 1fr;
  }

  .bi-articles-grid {
    grid-template-columns: 1fr;
  }

  .bi-cs-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Article tabs ── */
.bi-tabs-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.bi-tabs {
  display: inline-flex;
  gap: 4px;
  background: #eef0f6;
  border-radius: 12px;
  padding: 4px;
}

.bi-tab-btn {
  padding: 10px 36px;
  border: none;
  border-radius: 9px;
  background: transparent;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #8891ad;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.bi-tab-btn.active {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
}

.bi-tab-panel {
  display: none;
}

.bi-tab-panel.active {
  display: block;
}

/* ── Empty state ── */
.bi-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 80px 24px;
  color: var(--ink-muted);
  text-align: center;
}

.bi-empty-state svg {
  opacity: 0.35;
}

.bi-empty-state p {
  font-size: 16px;
  margin: 0;
}