/* ============================================
   TOP TEN TALENTS — Precision Modern
   Inspired by Precision AQ: geometric sans,
   magenta accent, dark navy, clean corporate
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --magenta: #2E4DA7;
  --magenta-dark: #233B82;
  --magenta-light: #5070CC;
  --navy: #0F1822;
  --navy-light: #1A2836;
  --charcoal: #2A3440;
  --gray-dark: #4A5568;
  --gray: #718096;
  --gray-light: #A0AEC0;
  --gray-rule: #E2E8F0;
  --bg: #FFFFFF;
  --bg-light: #F8F8F8;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(15, 24, 34, 0.06);
  --shadow-md: 0 4px 16px rgba(15, 24, 34, 0.08);
  --shadow-lg: 0 8px 32px rgba(15, 24, 34, 0.10);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-pill: 60px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Aliases for color-sampler.js compatibility */
  --crimson: var(--magenta);
  --crimson-dark: var(--magenta-dark);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--navy);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }

.container {
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 48px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  letter-spacing: 4px;
  font-weight: 500;
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--magenta);
  letter-spacing: 1.5px;
  font-weight: 600;
}

h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1rem; }

.section-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 14px;
  display: inline-block;
}

.section-title {
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-dark);
  max-width: 650px;
  line-height: 1.8;
}

.section-header {
  margin-bottom: 72px;
}

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-rule);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 12px rgba(15, 24, 34, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  max-width: 1540px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-icon {
  display: block;
  height: 38px;
  width: 44px;
  flex-shrink: 0;
  background: var(--magenta);
  -webkit-mask: url('../images/logo-mark.png') no-repeat center / contain;
  mask: url('../images/logo-mark.png') no-repeat center / contain;
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.header .logo-text {
  color: var(--magenta);
}

.header .logo-text span {
  color: var(--magenta);
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav-links a {
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--magenta);
}

.nav-links a.active {
  color: var(--magenta);
  font-weight: 600;
}

.nav-links .btn-contact {
  background: var(--magenta);
  color: var(--white);
  font-weight: 600;
  padding: 10px 28px;
  border-radius: var(--radius-pill);
  margin-left: 16px;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 1px;
}

.nav-links .btn-contact:hover {
  background: var(--magenta-dark);
}

.nav-links .btn-contact.active {
  background: var(--magenta);
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===================================
   HERO
   =================================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 140px 0 72px;
  background: var(--bg-light);
  overflow: hidden;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
}

.hero-content .section-label {
  margin-bottom: 12px;
  color: var(--gray-light);
}

.hero-content h1 {
  margin-bottom: 28px;
  font-size: clamp(2.4rem, 4.2vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: 1.5px;
  white-space: nowrap;
}

.hero-content h1 .h1-accent {
  color: var(--magenta);
}

.hero-content > p {
  color: var(--gray-dark);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 500px;
  text-transform: none;
}

.hero-cta {
  margin-bottom: 0;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-rule);
}

.hero-stat { text-align: left; }

.hero-stat .number {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--magenta);
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.hero-stat .label {
  font-size: 0.7rem;
  color: var(--gray);
  margin-top: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}

/* Hero portrait */
.hero-image {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-image-wrapper {
  position: relative;
  width: 500px;
  max-width: 100%;
  aspect-ratio: 500 / 620;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.hero-image-wrapper::before { display: none; }

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 61% 0%;
}

/* ===================================
   TRUSTED BY
   =================================== */
.trusted-by-bar {
  background: var(--white);
  border-top: 1px solid var(--gray-rule);
  border-bottom: 1px solid var(--gray-rule);
  padding: 56px 0;
}

.trusted-by-label {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 18px;
}

.trusted-by-names {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.trusted-by-names span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.5px;
  white-space: nowrap;
  padding: 8px 20px;
  border: 1px solid var(--gray-rule);
  border-radius: var(--radius-pill);
  transition: var(--transition);
}

.trusted-by-names span:hover {
  border-color: var(--magenta);
  box-shadow: 0 2px 8px rgba(46, 77, 167, 0.08);
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.btn-primary {
  background: var(--magenta);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--magenta-dark);
  box-shadow: 0 4px 20px rgba(46, 77, 167, 0.3);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--navy-light);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--gray-rule);
  border-radius: var(--radius-pill);
}

.btn-outline:hover {
  border-color: var(--magenta);
  color: var(--magenta);
}

/* ===================================
   VIDEO SECTION
   =================================== */
.video-section {
  padding: 120px 0;
  background: var(--navy);
  color: var(--white);
}

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

.video-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--charcoal);
  border-radius: var(--radius-md);
  cursor: pointer;
}

.video-wrapper video {
  width: 100%; height: 100%; object-fit: contain; border: none;
}

.video-thumbnail {
  position: absolute;
  inset: 0; z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.video-thumbnail img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

.video-play-btn {
  position: relative; z-index: 3;
  width: 64px; height: 64px;
  border: none; border-radius: 50%;
  background: var(--magenta);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 24px rgba(46, 77, 167, 0.4);
}
.video-play-btn svg { width: 20px; height: 24px; margin-left: 3px; }
.video-wrapper.playing .video-thumbnail { display: none; }

/* Video Modal */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-content {
  width: 90%;
  max-width: 960px;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.video-modal-overlay.active .video-modal-content {
  transform: scale(1);
}

.video-modal-content video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.video-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1.6rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 10;
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.video-text {
  max-width: 640px;
}

.video-text h2 { margin-bottom: 24px; color: var(--white); }
.video-text .section-label { color: var(--gray-light); }

.video-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ===================================
   AUDIENCE / WHO JOHN WORKS WITH
   =================================== */
.services-section {
  padding: 120px 0;
  background: var(--bg-light);
  border-top: 1px solid var(--gray-rule);
}

.services-section .section-header {
  text-align: center;
}

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

.audience-card {
  position: relative;
  padding: 44px 36px 44px;
  border: none;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(15, 24, 34, 0.06);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
  cursor: pointer;
}

.audience-card:hover {
  box-shadow: 0 8px 32px rgba(15, 24, 34, 0.10);
  transform: translateY(-3px);
}

.audience-card-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--navy);
}

.audience-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 1.25rem;
  letter-spacing: 0.3px;
}

.audience-arrow {
  display: inline-block;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--navy);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='%230F1822' stroke-width='1.5'%3E%3Cpath d='M1.5 4.5V1.5H4.5M7.5 1.5H10.5V4.5M10.5 7.5V10.5H7.5M4.5 10.5H1.5V7.5'/%3E%3C/svg%3E") no-repeat center center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease, background-image 0.3s ease;
}

.audience-card:hover .audience-arrow {
  border-color: var(--magenta);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='%232E4DA7' stroke-width='1.5'%3E%3Cpath d='M1.5 4.5V1.5H4.5M7.5 1.5H10.5V4.5M10.5 7.5V10.5H7.5M4.5 10.5H1.5V7.5'/%3E%3C/svg%3E");
}

.audience-card p {
  font-size: 0.92rem;
  color: var(--gray-dark);
  line-height: 1.8;
}

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonials-section {
  padding: 120px 0;
  background: var(--bg-light);
  border-top: 1px solid var(--gray-rule);
  position: relative;
  overflow: hidden;
}

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

/* Testimonial Spotlight Carousel */
.testimonial-slider {
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.testimonial-slider-viewport {
  overflow: visible;
}

.testimonial-slider-track {
  display: flex;
  align-items: center;
  gap: 28px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slider-track.no-transition {
  transition: none;
}

.testimonial-slide {
  min-width: 720px;
  max-width: 720px;
  flex-shrink: 0;
  padding: 44px 48px;
  position: relative;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(15, 24, 34, 0.07);
  opacity: 0.25;
  transform: scale(0.9);
  filter: blur(2px);
  transition: opacity 0.55s ease, transform 0.55s ease, filter 0.55s ease;
  user-select: none;
}

.testimonial-slide.active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
  box-shadow: 0 8px 40px rgba(15, 24, 34, 0.10);
}

.testimonial-slide::after {
  content: '\201D';
  position: absolute;
  top: 16px; right: 44px;
  font-family: 'Montserrat', sans-serif;
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--magenta);
  opacity: 0.06;
  pointer-events: none;
}

.testimonial-slide-result {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--magenta);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 14px;
  background: rgba(46, 77, 167, 0.07);
  border-radius: var(--radius-pill);
}

.testimonial-slide blockquote {
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.9;
  font-style: normal;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.testimonial-slide-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-slide-author img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-slide-name {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-slide-role {
  color: var(--gray);
  font-size: 0.8rem;
  margin-top: 2px;
}

/* Slider Navigation */
.testimonial-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.testimonial-slider-btn {
  position: absolute;
  top: 50%;
  z-index: 10;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: rgba(15, 24, 34, 0.35);
  transition: color 0.3s ease;
}

.testimonial-prev {
  left: calc((100% - 720px) / 4);
  transform: translate(-50%, -50%);
}
.testimonial-next {
  right: calc((100% - 720px) / 4);
  transform: translate(50%, -50%);
}

.testimonial-slider-btn:hover {
  color: var(--magenta);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--gray-light);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background: var(--magenta);
  width: 24px;
  border-radius: 4px;
}

/* ===================================
   LINKEDIN INSIGHTS
   =================================== */
.insights-section {
  padding: 120px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-rule);
  overflow-x: clip;
  overflow-y: visible;
}

.insights-carousel {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.insights-track {
  display: flex;
  gap: 20px;
  overflow: visible;
  align-items: stretch;
  padding: 24px 0;
  margin: -24px 0;
}

@keyframes insights-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.insights-track-inner {
  display: flex;
  gap: 20px;
  animation: insights-scroll 60s linear infinite;
  align-items: stretch;
  will-change: transform;
}

.insights-track-inner.js-driven {
  animation: none;
}

.insights-track-inner:hover {
  animation-play-state: paused;
}

.insight-card {
  flex: 0 0 300px;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  padding: 0;
  box-shadow: 0 2px 16px rgba(15, 24, 34, 0.08);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
  will-change: transform;
  display: flex;
  flex-direction: column;
}

.insight-card:hover {
  transform: scale(1.045);
  box-shadow: 0 8px 32px rgba(15, 24, 34, 0.14);
}

.insight-card-visual {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.insight-card-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Fallback gradient when no thumbnail */
.insight-card-visual:not(:has(img))::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
  opacity: 0.95;
}

.insight-card-visual:not(:has(img))::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--magenta);
  opacity: 0.08;
  top: -30px;
  right: -30px;
}

.insight-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
  z-index: 2;
  font-family: 'Montserrat', sans-serif;
}

.insight-play-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--magenta);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.insight-play-icon svg {
  margin-left: 3px;
}

.insight-card-body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.insight-card-body h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 6px;
  text-transform: none;
  letter-spacing: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insight-meta {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insights-footer {
  text-align: center;
  margin-top: 48px;
}

.insights-linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.insights-linkedin-link:hover {
  color: var(--navy);
}

.insights-linkedin-link svg {
  flex-shrink: 0;
}

/* Insight Video Modal */
.insight-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.insight-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.insight-modal-card {
  position: relative;
  width: 90%;
  max-width: 960px;
  aspect-ratio: 16/9;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.insight-modal-overlay.active .insight-modal-card {
  transform: scale(1);
}

.insight-modal-embed {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
}

.insight-modal-embed video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  display: block;
}

/* Modal navigation arrows */
.insight-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

.insight-modal-nav:hover {
  background: rgba(255, 255, 255, 0.25);
}

.insight-modal-nav:active {
  transform: translateY(-50%) scale(0.92);
}

.insight-modal-nav.disabled {
  opacity: 0.2;
  pointer-events: none;
}

.insight-modal-prev {
  left: -72px;
}

.insight-modal-next {
  right: -72px;
}

.insight-modal-counter {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif;
}

.insight-modal-title {
  position: absolute;
  bottom: -44px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Montserrat', sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity 0.25s ease;
}

.insight-modal-title.fading {
  opacity: 0;
}

/* ===================================
   CONTACT
   =================================== */
.contact-section {
  padding: 120px 0;
  background: var(--navy);
  color: var(--white);
}

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

.contact-info h2 { margin-bottom: 24px; color: var(--white); }

.contact-info > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-detail { padding: 10px 0; }
.contact-detail-text { font-weight: 500; color: rgba(255, 255, 255, 0.7); }
.contact-detail-text a { color: var(--white); font-weight: 600; }
.contact-detail-text a:hover { color: var(--magenta-light); }

.contact-form-wrapper {
  background: var(--white);
  padding: 44px;
  border-radius: var(--radius-md);
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-group select,
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-bottom: 2px solid var(--gray-rule);
  border-radius: 0;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  background: transparent;
  color: var(--navy);
}

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--magenta);
}

.form-group textarea { min-height: 100px; resize: vertical; }

.form-group .field-flash-wrap {
  position: relative;
  overflow: hidden;
}

.form-group .field-flash-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--magenta);
  transform: scaleX(0);
  transform-origin: left;
  animation: flash-line-in 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards,
             flash-shimmer 0.5s ease 0.35s forwards,
             flash-line-out 0.4s ease 0.9s forwards;
}

@keyframes flash-line-in {
  to { transform: scaleX(1); }
}

@keyframes flash-shimmer {
  0% { background: var(--magenta); filter: brightness(1); }
  50% { filter: brightness(1.6); }
  100% { filter: brightness(1); }
}

@keyframes flash-line-out {
  to { opacity: 0; }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.btn-submit {
  width: auto;
  padding: 16px 40px;
  background: var(--magenta);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  margin-top: 8px;
}

.btn-submit:hover {
  background: var(--magenta-dark);
  box-shadow: 0 4px 20px rgba(46, 77, 167, 0.3);
}

/* ===================================
   CONTACT MODAL
   =================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 24, 34, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  padding: 48px;
  width: 90%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(15, 24, 34, 0.2);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--gray);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s ease;
}

.modal-close:hover { color: var(--navy); }

.modal-card h2 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.modal-subtitle {
  color: var(--gray);
  font-size: 0.92rem;
  margin-bottom: 28px;
}

.modal-card .form-row { margin-bottom: 0; }

@media (max-width: 768px) {
  .modal-card { padding: 32px 24px; }
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: var(--navy);
  padding: 60px 0 30px;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer .logo-text { color: var(--white); }
.footer .logo-text span { color: var(--white); }
.footer .logo-icon { background: var(--magenta); }

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 30px;
}

.footer-brand .logo-text { font-size: 1.2rem; margin-bottom: 12px; }
.footer-brand p { font-size: 0.9rem; max-width: 300px; line-height: 1.7; }

.footer-nav { display: flex; gap: 32px; }
.footer-nav a { color: rgba(255,255,255,0.5); font-size: 0.88rem; font-weight: 500; }
.footer-nav a:hover { color: var(--magenta-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

/* ===================================
   PAGE HEADER (inner pages)
   =================================== */
.page-header {
  padding: 140px 0 60px;
  background: var(--bg-light);
}

.page-header h1 { color: var(--navy); }
.page-header .section-label { color: var(--gray-light); }

/* ===================================
   BIO PAGE
   =================================== */
.bio-section { padding: 80px 0; }

.bio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 760px;
}

.bio-text p {
  font-size: 1.05rem;
  color: var(--gray-dark);
  line-height: 1.9;
  margin-bottom: 20px;
}

.bio-highlight {
  background: var(--bg-light);
  border-left: 4px solid var(--magenta);
  padding: 28px 32px;
  margin: 30px 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.bio-highlight p {
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 500;
  margin: 0;
  font-style: italic;
  line-height: 1.6;
}

.bio-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.bio-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.bio-gallery-wide {
  grid-column: span 2;
}

.bio-gallery-item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bio-gallery-wide img {
  aspect-ratio: 2/1;
}

.bio-gallery-item:hover img { transform: scale(1.05); }

.bio-gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 20px 16px;
  background: linear-gradient(to top, rgba(15, 24, 34, 0.7), transparent);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.bio-gallery-item:hover .bio-gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.bio-section-heading {
  font-size: 1.4rem;
  color: var(--magenta);
  margin-top: 48px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--navy);
}

.bio-text .bio-section-heading:first-child { margin-top: 0; }

/* ===================================
   SERVICES PAGE
   =================================== */
.services-detail-section { padding: 80px 0; }

.services-detail-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: start;
}

.services-portrait {
  overflow: hidden;
  position: sticky;
  top: 100px;
  border-radius: var(--radius-md);
}

.services-portrait img { width: 100%; }

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: service-counter;
}

.service-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  background: transparent;
  border-radius: 0;
  border-bottom: 1px solid var(--gray-rule);
  counter-increment: service-counter;
}

.service-detail-item:first-child {
  border-top: 2px solid var(--navy);
}

.service-detail-item::before {
  content: counter(service-counter, decimal-leading-zero);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--magenta);
  min-width: 48px;
  line-height: 1.1;
}

.service-detail-text h3 { margin-bottom: 6px; }
.service-detail-text p { color: var(--gray-dark); font-size: 0.95rem; margin: 0; }

.services-cta {
  margin-top: 48px;
  padding: 36px;
  background: var(--navy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.services-cta p { color: var(--white); font-size: 1.1rem; margin: 0; }

.services-cta .phone {
  color: var(--magenta-light);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Services grid (if used) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.service-card-image { height: 200px; overflow: hidden; }
.service-card-image img { width: 100%; height: 100%; object-fit: cover; }
.service-card-body { padding: 24px; }
.service-card-body h3 { font-size: 1.15rem; margin-bottom: 12px; }
.service-card-body p { font-size: 0.92rem; color: var(--gray-dark); line-height: 1.7; }

/* ===================================
   TESTIMONIALS PAGE
   =================================== */
.testimonials-page-section { padding: 80px 0; }

.testimonials-page-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.testimonial-page-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  padding: 40px 0;
  background: transparent;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid var(--gray-rule);
  align-items: start;
}

.testimonial-page-card:first-child {
  border-top: 2px solid var(--navy);
}

.testimonial-page-card:nth-child(even) { grid-template-columns: 1fr auto; }
.testimonial-page-card:nth-child(even) .testimonial-page-avatar { order: 2; }

.testimonial-page-avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--magenta);
}

.testimonial-page-avatar img { width: 100%; height: 100%; object-fit: cover; }

.testimonial-page-content blockquote {
  font-style: normal;
  color: var(--gray-dark);
  font-size: 1.02rem;
  line-height: 1.9;
  margin-bottom: 20px;
  padding-left: 0;
  border-left: none;
}

.testimonial-page-name { font-weight: 700; color: var(--navy); font-size: 1rem; }
.testimonial-page-role { color: var(--gray); font-size: 0.9rem; }

.testimonial-result-summary {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--magenta);
  display: inline-block;
  margin-bottom: 12px;
}

/* ===================================
   CLIENTS PAGE
   =================================== */
.clients-section { padding: 80px 0; }

.clients-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.clients-intro p { color: var(--gray-dark); font-size: 1.05rem; }

.clients-stat {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.client-item {
  padding: 16px 20px;
  background: transparent;
  border-bottom: 1px solid var(--gray-rule);
  font-size: 0.92rem;
  color: var(--navy);
}

.client-item strong { color: var(--navy); }
.client-item .client-detail { color: var(--gray); font-size: 0.82rem; }

.client-item--featured {
  background: var(--bg-light);
}

.client-category { margin-bottom: 48px; }
.client-category:last-child { margin-bottom: 0; }

.client-category-heading {
  font-size: 1.3rem;
  color: var(--magenta);
  margin-bottom: 0;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--navy);
}

/* Unleash section */
.unleash-section { padding: 100px 0; background: var(--bg-light); }
.unleash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.unleash-content .benefits-list { margin-top: 30px; }
.benefit-item { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--gray-rule); }
.benefit-item:last-child { border-bottom: none; }
.benefit-icon { width: 44px; height: 44px; border-radius: var(--radius-md); background: rgba(46,77,167,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--magenta); }
.benefit-text { font-size: 1.05rem; }
.benefit-text strong { color: var(--navy); font-weight: 700; }

/* ===================================
   ANIMATIONS
   =================================== */
.animate-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.animate-up.visible { opacity: 1; transform: translateY(0); }

.animate-fade {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.animate-fade.visible { opacity: 1; }

.animate-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-scale.visible { opacity: 1; transform: scale(1); }

.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.animate-in.visible { opacity: 1; transform: translateY(0); }

/* ===================================
   ODOMETER ROLLING NUMBERS
   =================================== */
.odometer {
  display: inline-flex;
  align-items: flex-end;
  height: 1em;
  overflow: hidden;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.odometer-digit {
  display: inline-block;
  height: 1em;
  overflow: hidden;
}

.odometer-ribbon {
  display: flex;
  flex-direction: column;
}

.odometer-ribbon span {
  height: 1em;
  line-height: 1;
  display: block;
}

.odometer-static {
  display: inline-block;
  line-height: 1;
  height: 1em;
}

/* ===================================
   MARQUEE (Trusted By)
   =================================== */
.trusted-by-names.marquee {
  display: block;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 3%, black 97%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 3%, black 97%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 12px;
  will-change: transform;
}

/* ===================================
   TEXT REVEAL
   =================================== */
.text-reveal-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.05em;
}

.text-reveal-inner {
  display: block;
  transform: translateY(110%);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.text-reveal-line.visible .text-reveal-inner {
  transform: translateY(0);
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-content p { margin: 0 auto 28px; }
  .hero-stats { justify-content: center; }
  .hero-content h1 { white-space: normal; font-size: clamp(2rem, 6vw, 3rem); }
  .hero-image-wrapper { width: 320px; max-width: 100%; height: auto; aspect-ratio: 500 / 620; margin: 0 auto; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .services-detail-grid { grid-template-columns: 1fr; }
  .services-portrait { position: static; max-width: 400px; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-page-card,
  .testimonial-page-card:nth-child(even) { grid-template-columns: 1fr; text-align: center; }
  .testimonial-page-card:nth-child(even) .testimonial-page-avatar { order: 0; }
  .testimonial-page-avatar { margin: 0 auto; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); flex-direction: column; padding: 20px; gap: 4px;
    border-bottom: 1px solid var(--gray-rule);
  }
  .nav-links.active { display: flex; }
  .nav-toggle { display: flex; }
  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero-content h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .hero-image-wrapper { width: 100%; max-width: 280px; height: auto; aspect-ratio: 3/4; }
  .hero-stats { flex-wrap: wrap; gap: 32px; }
  .hero-stat .number { font-size: 2.2rem; }
  .unleash-grid, .video-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .audience-grid { grid-template-columns: 1fr; }
  .testimonial-featured { padding: 32px 24px; }
  .bio-gallery { grid-template-columns: 1fr 1fr; }
  .bio-gallery-wide { grid-column: 1 / -1; }
  .bio-gallery-wide img { aspect-ratio: 3/2; }
  .clients-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-nav { flex-wrap: wrap; gap: 16px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .services-cta { flex-direction: column; gap: 16px; text-align: center; }
  .services-section, .testimonials-section, .contact-section, .video-section, .insights-section { padding: 72px 0; }
  .insights-carousel { width: 100vw; margin-left: calc(-50vw + 50%); }
  .insight-card { flex: 0 0 260px; }
  .insight-modal-card { width: 100%; aspect-ratio: auto; max-height: 50vh; }
  .insight-modal-embed { border-radius: 0; }
  .insight-modal-prev { left: 8px; }
  .insight-modal-next { right: 8px; }
  .insight-modal-nav { background: rgba(0, 0, 0, 0.5); width: 40px; height: 40px; }
  .insight-modal-title { display: none; }
  .testimonial-slide { min-width: 85vw; max-width: 85vw; padding: 32px 28px; }
  .testimonial-slide blockquote { font-size: 0.95rem; }
  .testimonial-slide::after { font-size: 5rem; right: 20px; }
  .testimonial-slider-btn svg { width: 32px; height: 32px; }
  .testimonial-prev { left: 4px; transform: translateY(-50%); }
  .testimonial-next { right: 4px; transform: translateY(-50%); }
  .page-header { padding: 120px 0 40px; }
  h1 { letter-spacing: 2px; }
}
