﻿/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   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-business {
  border: 1.5px solid var(--navy) !important;
  color: var(--navy) !important;
  padding: 8px 20px !important;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background 0.2s, border-color 0.2s, color 0.2s !important;
}

.nav-business:hover {
  background: #fbd249 !important;
  border-color: #fbd249 !important;
  color: var(--navy) !important;
}

.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);
}

/* â”€â”€ BUSINESS BANNER â”€â”€ */
.biz-banner {
  position: absolute;
  left: 50%;
  bottom: 60px;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  max-width: 640px;
  width: max-content;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
}

.biz-banner-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.biz-banner-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.biz-banner-text {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.biz-banner-text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.biz-banner-text span {
  font-size: 12.5px;
  color: var(--ink-muted);
}

.biz-banner-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  padding: 9px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.biz-banner-btn:hover {
  background: #fbd249;
  border-color: #fbd249;
  color: var(--navy);
}

.biz-banner-close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: var(--ink-muted);
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

#biz-banner-close {
  align-self: flex-start;
}

#biz-banner-close svg {
  width: 20px;
  height: 20px;
}

.biz-banner-close:hover {
  color: var(--ink);
  background: var(--surface);
}

@media (max-width: 768px) {
  .biz-banner {
    width: 92vw;
    max-width: 92vw;
    flex-wrap: wrap;
    padding: 14px;
  }

  .biz-banner-btn {
    order: 3;
    margin-left: 52px;
  }
}

/* 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);
}

@media (max-width: 1170px) {
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }
}

/* 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);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.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 {
  position: relative;
  height: 85vh;
  width: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  --ink: #fff;
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 0 5vw;
}

.hero-subtitle {
  max-width: 70%;
  color: #fff;
  text-align: center;
  z-index: 99;
  font-size: 18px;
}

.hero-search-tags {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 96%;

  padding-inline: 6px;
}

.hero-search-tag {
  z-index: 99;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  padding: 8px 18px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  background: transparent;
  cursor: default;
}

@media (max-width: 1024px) {
  .hero-search-tags {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .hero-search-tags {
    gap: 8px;
  }

  .hero-search-tag {
    padding: 6px 14px;
    font-size: 13px;
  }
}

.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: 1;
}

.hero-bottom-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .15s;
  z-index: 2;
  opacity: 0.7;
}

.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: #ffffff;
  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;
}

.what-we-do .hero-sub {
  color: var(--navy-dk);
}

.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;
}

.services-grid--4col {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card--accent {
  background: linear-gradient(135deg, var(--navy) 0%, #2747C9 100%);
  border-color: transparent;
  color: #fff;
}

.service-card--accent h3 {
  color: #fff;
}

.service-card--accent p {
  color: rgba(255, 255, 255, 0.82);
}

.service-card--accent .service-card-icon {
  color: rgba(255, 255, 255, 0.9);
}

.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: url('../assets/gradient-bg/gradient-1.png') no-repeat center center / cover;
  background-color: var(--navy-lt);
}

.tms-header {
  text-align: center;
  margin-bottom: 56px;
}

.tms-header .section-sub {
  margin: 0 auto;
  color: var(--navy-dk);
}

.tms-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tms-carousel-viewport {
  flex: 1;
  overflow: hidden;
}

.tms-grid {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.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);
}

@media (max-width: 768px) {
  .tms-carousel-wrap {
    position: relative;
    gap: 0;
    margin-bottom: 52px;
  }

  .tms-carousel-viewport {
    width: 100%;
  }

  .tms-arrow {
    position: absolute;
    top: 100%;
    margin-top: 16px;
    z-index: 5;
    width: 36px;
    height: 36px;
  }

  .tms-arrow-prev {
    left: 4px;
  }

  .tms-arrow-next {
    right: 4px;
  }
}

.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: 96px;
  height: 96px;
  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;
}

/* Center-focus testimonial carousel â€” build your team page */
#testimonials .tms-header h2 {
  color: var(--navy-dk);
}

#testimonials .tcard {
  flex-shrink: 0;
  opacity: 0.45;
  transform: scale(0.91);
  transition: opacity 0.4s, transform 0.4s, box-shadow 0.4s;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: none;
}

#testimonials .tcard.active {
  opacity: 1;
  transform: scale(1);
  background: linear-gradient(135deg, #FBD249 0%, #2747C9 100%);
  border: none;
  box-shadow: 0 12px 48px rgba(39, 71, 201, 0.35);
}

#testimonials .tcard:hover {
  transform: scale(0.93);
}

#testimonials .tcard.active:hover {
  transform: scale(1.02);
}

#testimonials .tcard-q {
  color: var(--navy);
  opacity: 0.25;
}

#testimonials .tcard-text {
  color: var(--ink-mid);
}

#testimonials .tcard-name {
  color: var(--ink);
}

#testimonials .tcard-role {
  color: var(--ink-faint);
}

#testimonials .tcard-stars {
  color: var(--gold-dk);
}

#testimonials .tcard-av {
  background: var(--navy-lt);
  color: var(--navy);
}

#testimonials .tcard.active .tcard-q {
  color: #fff;
  opacity: 0.35;
}

#testimonials .tcard.active .tcard-text {
  color: #fff;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

#testimonials .tcard.active .tcard-name {
  color: #fff;
}

#testimonials .tcard.active .tcard-role {
  color: rgba(255, 255, 255, 0.75);
}

#testimonials .tcard.active .tcard-stars {
  color: #FFD166;
}

#testimonials .tcard.active .tcard-av {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.45);
}

/* â”€â”€ 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;
  margin-top: 32px;
}

/* â”€â”€ 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: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%;
  }
}

.ai-partner-logo-break {
  display: none;
}

@media (max-width: 640px) {
  .ai-partner-logos-row {
    flex-wrap: wrap;
    gap: 10px;
  }

  .ai-partner-logo-divider {
    display: none;
  }

  .ai-partner-logo-break {
    display: block;
    flex-basis: 100%;
    height: 0;
  }
}

/* â”€â”€ 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('../gradient-bg/gradient-1.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 48px 44px 72px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  position: relative;
  overflow-y: auto;
}

#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;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 44px;
}

#tnp-dl-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

#tnp-dl-card h4 {
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 900;
  color: var(--navy-dk);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 12px;
}

#tnp-dl-card>p {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.6;
  margin: 0 0 32px;
}

.tnp-dl-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tnp-dl-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #111;
  color: #fff;
  border-radius: 14px;
  padding: 13px 20px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  flex: 1;
  min-width: 130px;
}

.tnp-dl-btn:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
}

.tnp-dl-btn-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tnp-dl-btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.tnp-dl-btn-sub {
  font-size: 10px;
  font-weight: 400;
  opacity: 0.7;
  line-height: 1;
  margin-bottom: 2px;
}

.tnp-dl-btn-store {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

@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: 960px;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
  animation: modal-in 0.25s var(--ease) both;
  display: flex;
}

.schedule-modal-left {
  flex: 0 0 380px;
  background: url('../assets/gradient-bg/gradient-1.png') no-repeat center center / cover;
  background-color: var(--navy-lt);
  padding: 48px 36px;
  border-radius: 24px 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow-y: auto;
}

.sml-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--navy);
}

.sml-heading {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.sml-desc {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.65;
}

.sml-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0e2044;
}

.sml-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sml-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}

.sml-bullets li::before {
  content: '';
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: rgba(39, 71, 201, 0.12);
  border: 1.5px solid var(--navy);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%232747C9' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  margin-top: 2px;
  flex-shrink: 0;
}

.sml-bullets--svg li::before {
  display: none;
}

.sml-bullets--svg li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

@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 {
  flex: 1;
  overflow-y: auto;
  min-width: 0;
}

.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,
  .services-grid--4col,
  .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;
  }

  #services {
    margin-top: 70px;
  }

  .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;
}

/* â”€â”€ 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;
  }

  .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-overlay {
    gap: 20px;
  }

  .hero-title {
    flex-direction: column;
    gap: 8px;
  }

  .hero-title a {
    font-size: 44px;
  }

  .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;
  }

  .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;
  margin: 0 4px;
  padding-right: 6px;
  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: var(--navy);
  border: 1.5px solid var(--navy);
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  cursor: default;
}

.role-tag:hover,
.role-tag.highlight {
  background: var(--navy-dk);
  border-color: var(--navy-dk);
  color: #fff;
}

/* 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-break {
  display: none;
}

@media (max-width: 768px) {
  .cta-hero-title {
    white-space: normal;
    text-align: center;
  }

  .cta-break {
    display: block;
  }
}

.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);
  }

  .services-grid--4col {
    grid-template-columns: repeat(2, 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('../teknoy career.png') no-repeat center center / cover;
  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.7) 0%, rgba(230, 240, 255, 0.5) 45%, rgba(39, 71, 201, 0.12) 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);
  }
}



/* â”€â”€ Single post / article page â”€â”€ */
main.article-page {
  padding: 100px 5vw 120px;
  max-width: 1080px;
  margin: 0 auto;
  color: var(--ink);
}

.article-article {
  background: #fff;
}

.article-hero {
  display: grid;
  gap: 24px;
  margin-bottom: 42px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--ink-faint);
  letter-spacing: 0.01em;
}

.article-meta .article-category {
  font-weight: 700;
  color: var(--navy);
}

.article-hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 800;
  color: #111;
  margin: 0;
}

.article-excerpt {
  max-width: 820px;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.75;
  color: var(--ink-mid);
  margin: 0;
}

.article-featured-image {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
}

.article-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.article-featured-image figcaption {
  margin-top: 14px;
  font-size: 0.92rem;
  color: var(--ink-faint);
  line-height: 1.6;
}

.article-content {
  display: grid;
  gap: 0;
  line-height: 1.5;
  color: var(--ink-mid);
  overflow-x: hidden;
}

/* Neutralize Bootstrap grid classes injected by post content */
.article-content .row,
.article-content .container,
.article-content .container-fluid {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

.article-content [class*="col-lg-"],
.article-content [class*="col-md-"],
.article-content [class*="col-sm-"],
.article-content [class*="col-xs-"],
.article-content [class*=" col-"] {
  float: none !important;
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
  color: #111;
  font-family: var(--font);
  margin: 1.6em 0 0.5em;
  line-height: 1.15;
}

.article-content h1 {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
}

.article-content h2 {
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 800;
}

.article-content h3 {
  font-size: clamp(22px, 2.7vw, 30px);
  font-weight: 700;
}

.article-content p,
.article-content li,
.article-content dd {
  font-size: clamp(17px, 1.1vw, 18px);
  color: var(--ink-mid);
  line-height: 1.5;
  margin: 0 0 0.85em;
}

.article-content p+h2,
.article-content p+h3 {
  margin-top: 1.2em;
}

.article-content ul,
.article-content ol {
  padding-left: 1.4rem;
  margin: 0;
}

.article-content li {
  margin-bottom: 0.85em;
}

.article-content blockquote {
  border-left: 4px solid var(--navy);
  padding: 24px 26px;
  background: #f6f8ff;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0;
}

.article-content img,
.article-content figure,
.article-content video,
.article-content table {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.article-content iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
}

.article-content .wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.article-content .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
}

.article-content figure {
  margin: 0;
}

.article-content pre {
  overflow-x: auto;
  background: #f5f7fb;
  border-radius: 16px;
  padding: 22px;
}

.article-content {
  margin-bottom: 42px;
}

.article-content table {
  border-collapse: collapse;
}

.article-content table th,
.article-content table td {
  padding: 14px 16px;
  border: 1px solid rgba(27, 32, 34, 0.1);
}

.article-content a {
  color: var(--navy);
  text-decoration: underline;
}

.article-content a:hover {
  color: var(--navy-dk);
}

.article-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  background: transparent;
  padding: 0;
  border-top: none;
}

.article-footer:has(.article-tags) {
  padding-top: 40px;
  border-top: 1px solid rgba(27, 32, 34, 0.1);
}

.article-tags {
  font-size: 0.95rem;
  color: var(--ink-faint);
}

.article-tags span {
  font-weight: 700;
  color: var(--ink);
}

.article-share-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 32px;
  margin: 0 0 32px;
  border-radius: 32px;
  background: linear-gradient(135deg, #1f3ec9 0%, #1e46ab 40%, #365ee7 100%);
  box-shadow: 0 28px 90px rgba(18, 46, 113, 0.16);
}

.article-share-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  flex: 1 1 min(60%, 700px);
  margin: 0;
  color: #f2f7ff;
  font-size: 0.95rem;
}

.article-share-bar .article-share-buttons {
  flex: 1 1 auto;
}

.article-subscribe-btn {
  width: auto;
  min-width: 280px;
}

.article-share-label {
  font-weight: 800;
  color: #ffffff;
}

.article-share-buttons {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.article-share-btn {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(39, 71, 201, 0.12);
  background-color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.article-share-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(39, 71, 201, 0.28);
  box-shadow: inset 0 0 0 1px rgba(39, 71, 201, 0.12);
}

.article-share-icon {
  width: 28px;
  height: 28px;
  display: block;
}

.article-subscribe-btn {
  padding: 18px 38px;
  border-radius: 999px;
  font-size: 1rem;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, #F5C518 0%, #ffd84d 100%);
  color: #2747C9;
  box-shadow: 0 18px 40px rgba(245, 197, 24, 0.35);
  border: none;
}

.article-subscribe-btn:hover {
  background: linear-gradient(135deg, #d4a800 0%, #F5C518 100%);
}

@media (max-width: 900px) {
  main.article-page {
    padding: 80px 4vw 90px;
  }

  .article-content {
    gap: 28px;
  }

  .article-share-panel {
    padding: 24px 22px;
  }
}

@media (max-width: 640px) {
  .article-hero {
    gap: 18px;
  }

  .article-share-panel {
    flex-direction: column;
    align-items: stretch;
  }

  .article-share-bar {
    justify-content: flex-start;
    width: 100%;
  }

  .article-share-buttons {
    gap: 8px;
  }

  .article-subscribe-btn {
    width: 100%;
    justify-content: center;
  }

  .article-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* â”€â”€ Single podcast page â”€â”€ */
main.podcast-page {
  padding: 100px 5vw 120px;
  max-width: 1080px;
  margin: 0 auto;
  color: var(--ink);
  overflow-x: hidden;
}

.podcast-article {
  background: #fff;
}

.podcast-hero {
  display: grid;
  gap: 24px;
  margin-bottom: 42px;
}

.podcast-hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 800;
  color: #111;
  margin: 0;
}

.podcast-featured-image {
  position: relative;
  display: block;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
}

.podcast-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.video-play-now {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.video-play-now .play-btn {
  width: 80px;
  height: 80px;
  display: block;
  transition: transform 0.2s, opacity 0.2s;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.4));
}

.video-play-now:hover .play-btn {
  transform: scale(1.1);
  opacity: 0.9;
}

.podcast-content {
  display: grid;
  gap: 0;
  line-height: 1.5;
  color: var(--ink-mid);
  margin-bottom: 42px;
  overflow-x: hidden;
}

/* Neutralize Bootstrap grid classes injected by post content */
.podcast-content .row,
.podcast-content .container,
.podcast-content .container-fluid {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

.podcast-content [class*="col-lg-"],
.podcast-content [class*="col-md-"],
.podcast-content [class*="col-sm-"],
.podcast-content [class*="col-xs-"],
.podcast-content [class*=" col-"] {
  float: none !important;
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.podcast-content h1,
.podcast-content h2,
.podcast-content h3,
.podcast-content h4,
.podcast-content h5,
.podcast-content h6 {
  color: #111;
  font-family: var(--font);
  margin: 1.6em 0 0.5em;
  line-height: 1.15;
}

.podcast-content h1 {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
}

.podcast-content h2 {
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 800;
}

.podcast-content h3 {
  font-size: clamp(22px, 2.7vw, 30px);
  font-weight: 700;
}

.podcast-content p,
.podcast-content li,
.podcast-content dd {
  font-size: clamp(17px, 1.1vw, 18px);
  color: var(--ink-mid);
  line-height: 1.5;
  margin: 0 0 0.85em;
  text-align: left;
}

.podcast-content p+h2,
.podcast-content p+h3 {
  margin-top: 1.2em;
}

.podcast-content ul,
.podcast-content ol {
  padding-left: 1.4rem;
  margin: 0;
}

.podcast-content li {
  margin-bottom: 0.85em;
}

.podcast-content blockquote {
  border-left: 4px solid var(--navy);
  padding: 24px 26px;
  background: #f6f8ff;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0;
}

.podcast-content img,
.podcast-content figure,
.podcast-content video,
.podcast-content table {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.podcast-content iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
}

.podcast-content .wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.podcast-content .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
}

.podcast-content figure {
  margin: 0;
}

.podcast-content pre {
  overflow-x: auto;
  background: #f5f7fb;
  border-radius: 16px;
  padding: 22px;
}

.podcast-content table {
  border-collapse: collapse;
}

.podcast-content table th,
.podcast-content table td {
  padding: 14px 16px;
  border: 1px solid rgba(27, 32, 34, 0.1);
}

.podcast-content a {
  color: var(--navy);
  text-decoration: underline;
}

.podcast-content a:hover {
  color: var(--navy-dk);
}

.podcast-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  background: transparent;
  padding: 0;
  border-top: none;
}

.podcast-share-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 32px;
  margin: 0 0 32px;
  border-radius: 32px;
  background: linear-gradient(135deg, #1f3ec9 0%, #1e46ab 40%, #365ee7 100%);
  box-shadow: 0 28px 90px rgba(18, 46, 113, 0.16);
}

.podcast-share-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  flex: 1 1 min(60%, 700px);
  margin: 0;
  color: #f2f7ff;
  font-size: 0.95rem;
}

.podcast-share-bar .podcast-share-buttons {
  flex: 1 1 auto;
}

.podcast-share-label {
  font-weight: 800;
  color: #ffffff;
}

.podcast-share-buttons {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.podcast-share-btn {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(39, 71, 201, 0.12);
  background-color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.podcast-share-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(39, 71, 201, 0.28);
  box-shadow: inset 0 0 0 1px rgba(39, 71, 201, 0.12);
}

.podcast-share-icon {
  width: 28px;
  height: 28px;
  display: block;
}

.podcast-subscribe-btn {
  width: auto;
  min-width: 280px;
  padding: 18px 38px;
  border-radius: 999px;
  font-size: 1rem;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, #F5C518 0%, #ffd84d 100%);
  color: #2747C9;
  box-shadow: 0 18px 40px rgba(245, 197, 24, 0.35);
  border: none;
}

.podcast-subscribe-btn:hover {
  background: linear-gradient(135deg, #d4a800 0%, #F5C518 100%);
}

@media (max-width: 900px) {
  main.podcast-page {
    padding: 80px 4vw 90px;
  }

  .podcast-content {
    gap: 28px;
  }

  .podcast-share-panel {
    padding: 24px 22px;
  }
}

@media (max-width: 640px) {
  .podcast-hero {
    gap: 18px;
  }

  .podcast-share-panel {
    flex-direction: column;
    align-items: stretch;
  }

  .podcast-share-bar {
    justify-content: flex-start;
    width: 100%;
  }

  .podcast-share-buttons {
    gap: 8px;
  }

  .podcast-subscribe-btn {
    width: 100%;
    justify-content: center;
  }

  .podcast-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── CULTURE FEATURE SECTION ── */
.culture-feature-section {
  position: relative;
  padding: 100px 5vw;
  overflow: hidden;
  background: #111;
}

.culture-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  pointer-events: none;
}

.culture-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(10, 20, 90, 0.82) 0%,
      rgba(10, 20, 90, 0.65) 50%,
      rgba(10, 20, 90, 0.25) 100%);
  pointer-events: none;
}

.culture-feature-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.culture-tag {
  background: var(--gold) !important;
  color: var(--navy-dk) !important;
  font-weight: 800 !important;
}

.culture-headline {
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 16px 0 20px;
}

.culture-gold {
  color: var(--gold);
  font-style: italic;
}

.culture-subheadline {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
  margin-bottom: 28px;
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
}

.culture-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.culture-body p {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.culture-lead {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: #fff !important;
}

.culture-feature-video .clients-video-wrap {
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
  border: 3px solid rgba(245, 197, 24, 0.4);
  border-radius: 20px;
}

@media (max-width: 900px) {
  .culture-feature-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}