/**
 * =====================================================================
 * HORLU CONSULTING INC. — MAIN DESIGN SYSTEM & STYLESHEET
 * Scoped for Astra Theme & Elementor Integration
 * =====================================================================
 */

/* =====================================================================
   0. DESIGN SYSTEM TOKENS & ROOT VARIABLES
===================================================================== */
:root,
.horlu-home {
  /* Brand Color Tokens - Signature Orange, Deep Charcoal & Warm Ivory */
  --horlu-navy: #12151A;
  --horlu-navy-dark: #0B0D10;
  --horlu-navy-light: #E8821C;
  --horlu-charcoal: #12151A;
  --horlu-charcoal-muted: #2D3748;
  --horlu-orange: #E8821C;
  --horlu-orange-hover: #D46E0E;
  --horlu-orange-soft: #FFF4EB;
  --horlu-orange-subtle: rgba(232, 130, 28, 0.08);
  --horlu-orange-glow: rgba(232, 130, 28, 0.16);

  --horlu-ivory: #FAF7F2;
  --horlu-ivory-light: #FDFBF7;
  --horlu-bg: #FFFFFF;
  --horlu-bg-card: #FFFFFF;
  --horlu-bg-alt: #FAF7F2;
  --horlu-bg-muted: #FFF5EC;

  --horlu-text: #1F242E;
  --horlu-heading: #12151A;
  --horlu-muted: #5B6575;
  --horlu-light-text: #FFFFFF;
  --horlu-border: #E8E4DD;
  --horlu-border-light: #F2EFE9;

  /* Typography */
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows & Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 24px 50px rgba(0, 0, 0, 0.08);
  --shadow-orange: 0 10px 30px -5px rgba(232, 130, 28, 0.18);

  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.horlu-home {
  font-family: var(--font-body);
  color: var(--horlu-text);
  background-color: var(--horlu-bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  overflow-x: hidden;
}

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

/* Force text-decoration reset to override theme defaults */
.horlu-home a,
.horlu-home a:hover,
.horlu-home a:focus,
.horlu-home a:visited,
.horlu-btn,
.horlu-card a,
.horlu-solutions-card a {
  text-decoration: none !important;
  outline: none;
}

.horlu-home h1,
.horlu-home h2,
.horlu-home h3,
.horlu-home h4,
.horlu-home h5,
.horlu-home h6 {
  font-family: var(--font-head);
  color: var(--horlu-heading);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.horlu-home a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.horlu-home img {
  max-width: 100%;
  height: auto;
  display: block;
}

.horlu-home ul {
  list-style: none;
}

/* Container Utility */
.horlu-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* Section Header Reusable Utility */
.horlu-section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(40px, 6vw, 64px);
}

.horlu-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background-color: var(--horlu-orange-soft);
  color: var(--horlu-orange);
  border: 1px solid rgba(232, 130, 28, 0.25);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.horlu-badge-navy {
  background-color: #FFFFFF;
  color: var(--horlu-orange);
  border-color: rgba(232, 130, 28, 0.2);
}

.horlu-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--horlu-orange);
}

.horlu-section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
  color: var(--horlu-navy);
}

.horlu-section-subtitle {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--horlu-muted);
  line-height: 1.65;
}

/* Buttons */
.horlu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.horlu-btn-primary {
  background-color: var(--horlu-orange);
  color: #FFFFFF !important;
  box-shadow: var(--shadow-orange);
}

.horlu-btn-primary:hover {
  background-color: var(--horlu-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(232, 130, 28, 0.35);
}

.horlu-btn-secondary {
  background-color: var(--horlu-navy);
  color: #FFFFFF !important;
  box-shadow: var(--shadow-sm);
}

.horlu-btn-secondary:hover {
  background-color: #000000;
  transform: translateY(-2px);
}

.horlu-btn-outline {
  background-color: transparent;
  border-color: var(--horlu-orange);
  color: var(--horlu-orange) !important;
}

.horlu-btn-outline:hover {
  background-color: var(--horlu-orange);
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

.horlu-btn-outline-navy {
  background-color: transparent;
  border-color: var(--horlu-navy);
  color: var(--horlu-navy) !important;
}

.horlu-btn-outline-navy:hover {
  background-color: var(--horlu-navy);
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

.horlu-btn-outline-white {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: #FFFFFF !important;
}

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

.horlu-btn-white {
  background-color: #FFFFFF;
  color: var(--horlu-orange) !important;
  box-shadow: var(--shadow-sm);
}

.horlu-btn-white:hover {
  background-color: var(--horlu-orange-soft);
  transform: translateY(-2px);
}

/* SVG Icon Helpers */
.horlu-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* =====================================================================
   1. NAVIGATION HEADER
===================================================================== */
.horlu-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--horlu-border-light);
  padding: 16px 0;
}

.horlu-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.horlu-brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none !important;
  line-height: 1;
}

.horlu-brand-logo img,
.horlu-brand-logo svg {
  width: 135px;
  max-width: 140px;
  height: auto;
  display: block;
  object-fit: contain;
}

.horlu-nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.horlu-nav-item {
  position: relative;
  padding: 6px 0;
}

.horlu-nav-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--horlu-navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.horlu-nav-link svg {
  width: 14px;
  height: 14px;
  transition: var(--transition);
}

.horlu-nav-item:hover > .horlu-nav-link {
  color: var(--horlu-orange);
}

.horlu-nav-item:hover > .horlu-nav-link svg {
  transform: rotate(180deg);
  color: var(--horlu-orange);
}

/* CSS Dropdown Styling */
.horlu-dropdown {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 280px;
  background: #FFFFFF;
  border: 1px solid var(--horlu-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1100;
}

.horlu-nav-item:hover .horlu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.horlu-dropdown-link {
  display: flex;
  flex-direction: column;
  padding: 10px 20px;
  text-decoration: none;
  transition: var(--transition);
}

.horlu-dropdown-link:hover {
  background-color: var(--horlu-bg);
}

.horlu-dropdown-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--horlu-navy);
  margin-bottom: 2px;
}

.horlu-dropdown-link:hover .horlu-dropdown-title {
  color: var(--horlu-orange);
}

.horlu-dropdown-desc {
  font-size: 13px;
  color: var(--horlu-muted);
  line-height: 1.4;
}

.horlu-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.horlu-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--horlu-navy);
  cursor: pointer;
  padding: 6px;
}

/* =====================================================================
   2. EXECUTIVE HERO SECTION (Slideshow & Deep Cinematic Overlay)
===================================================================== */
@keyframes horluFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.horlu-hero {
  position: relative;
  min-height: clamp(600px, 85vh, 760px);
  display: flex;
  align-items: center;
  background-color: #0B0E14;
  overflow: hidden;
  border-bottom: 1px solid rgba(232, 130, 28, 0.2);
  padding: clamp(60px, 7vw, 96px) 0 clamp(64px, 7vw, 100px);
}

/* Executive Office Architectural Slideshow Carousel */
.horlu-hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.horlu-hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center right;
  opacity: 0;
  filter: contrast(1.08) brightness(0.85) saturate(0.95);
  transition: opacity 1.8s ease-in-out;
}

.horlu-hero-slide.active {
  opacity: 1;
  animation: horluKenBurns 28s infinite alternate ease-in-out;
}

@keyframes horluKenBurns {
  0% {
    transform: scale(1.02) translate(0, 0);
  }
  50% {
    transform: scale(1.08) translate(-0.8%, 0.4%);
  }
  100% {
    transform: scale(1.02) translate(0.5%, -0.3%);
  }
}

/* Multi-layered Cinematic Gradient Overlay - Deep & Rich */
.horlu-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 70% at 75% 45%, rgba(232, 130, 28, 0.2) 0%, rgba(232, 130, 28, 0.04) 50%, transparent 75%),
    linear-gradient(90deg,
      rgba(11, 14, 20, 0.94) 0%,
      rgba(11, 14, 20, 0.88) 35%,
      rgba(11, 14, 20, 0.62) 65%,
      rgba(11, 14, 20, 0.42) 82%,
      rgba(11, 14, 20, 0.72) 100%),
    linear-gradient(0deg, rgba(11, 14, 20, 0.65) 0%, transparent 25%);
}

/* Micro Dot Matrix Texture */
.horlu-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1.2px, transparent 1.2px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 2;
}

.horlu-hero-grid {
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  align-items: center;
  gap: clamp(36px, 5vw, 68px);
  position: relative;
  z-index: 3;
  width: 100%;
}

.horlu-hero-content {
  text-align: left;
  max-width: 620px;
  z-index: 2;
}

/* Canadian Kicker */
.horlu-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 22px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  animation: horluFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.horlu-kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--horlu-orange);
  box-shadow: 0 0 8px var(--horlu-orange);
}

/* Editorial Headline */
.horlu-hero-title {
  font-family: var(--font-head);
  font-size: clamp(38px, 4.4vw, 56px);
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: -0.025em;
  color: #FFFFFF !important;
  margin-bottom: 22px;
  animation: horluFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
  opacity: 0;
}

.horlu-hero-title .horlu-highlight {
  color: #FF9E36;
  font-style: italic;
}

.horlu-hero-subtitle {
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.82) !important;
  margin-bottom: 34px;
  max-width: 580px;
  animation: horluFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
  opacity: 0;
}

.horlu-hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 38px;
  animation: horluFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  opacity: 0;
}

.horlu-hero-cta-primary {
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  background-color: var(--horlu-orange);
  color: #FFFFFF !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 26px -4px rgba(232, 130, 28, 0.5);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease;
}

.horlu-hero-cta-primary:hover {
  background-color: var(--horlu-orange-hover);
  transform: translateY(-2.5px);
  box-shadow: 0 12px 32px -4px rgba(232, 130, 28, 0.65);
}

.horlu-hero-cta-primary .horlu-btn-arrow {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.horlu-hero-cta-primary:hover .horlu-btn-arrow {
  transform: translateX(4px);
}

.horlu-hero-cta-secondary {
  padding: 16px 30px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF !important;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--horlu-transition);
}

.horlu-hero-cta-secondary:hover {
  background-color: #FFFFFF;
  color: #12151A !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.horlu-hero-trust-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(14px, 2.5vw, 24px);
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  animation: horluFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
  opacity: 0;
}

.horlu-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
}

.horlu-trust-pill svg {
  width: 16px;
  height: 16px;
  color: var(--horlu-orange);
  flex-shrink: 0;
}

/* Right Column Visual: AI Adoption Map */
.horlu-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 480px;
  animation: horluFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
  opacity: 0;
  z-index: 2;
}

.horlu-visual-canvas-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Desktop Cursor Follower Glow */
.horlu-cursor-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 130, 28, 0.22) 0%, rgba(232, 130, 28, 0.04) 55%, transparent 75%);
  filter: blur(16px);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.35s ease;
}

.horlu-map-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  position: relative;
  z-index: 2;
  pointer-events: none;
}

/* Connecting flow path animations */
.horlu-flow-path {
  stroke-dasharray: 6 8;
  animation: horluFlowDash 16s linear infinite;
}

.horlu-flow-path-fast {
  stroke-dasharray: 4 6;
  animation: horluFlowDash 11s linear infinite;
}

@keyframes horluFlowDash {
  to {
    stroke-dashoffset: -120;
  }
}

/* Soft pulse animations for AI map nodes */
@keyframes horluNodePulseSlow {
  0% {
    r: 9;
    opacity: 0.75;
  }
  50% {
    r: 20;
    opacity: 0.15;
  }
  100% {
    r: 9;
    opacity: 0.75;
  }
}

.horlu-pulse-ring {
  transform-origin: center;
  animation: horluNodePulseSlow 3.6s ease-in-out infinite;
}

.horlu-pulse-ring-delayed {
  transform-origin: center;
  animation: horluNodePulseSlow 3.6s ease-in-out 1.8s infinite;
}

/* Floating Translucent Glass Insight Card */
.horlu-insight-card {
  position: absolute;
  bottom: 8px;
  right: 0px;
  width: clamp(240px, 80%, 270px);
  padding: 16px 18px;
  background: rgba(14, 18, 26, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(232, 130, 28, 0.35);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(232, 130, 28, 0.16);
  z-index: 4;
  animation: horluFloat 4.8s ease-in-out infinite;
  pointer-events: auto;
  text-decoration: none !important;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

@keyframes horluFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

.horlu-insight-card:hover {
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.55), 0 0 0 1.5px var(--horlu-orange);
}

.horlu-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FF9E36;
  margin-bottom: 6px;
}

.horlu-card-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--horlu-orange);
  box-shadow: 0 0 6px var(--horlu-orange);
}

.horlu-card-desc {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  margin-bottom: 8px;
}

.horlu-card-action {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 700;
  color: #FF9E36;
  text-decoration: none !important;
  transition: transform 0.2s ease;
}

.horlu-card-action:hover {
  color: #FFFFFF;
  transform: translateX(3px);
}

/* Card Image Utility Classes */
.horlu-card-img-header {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  transition: var(--transition);
}

.horlu-card-img-wrap {
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  margin: -32px -32px 24px -32px;
  position: relative;
}

.horlu-card-img-wrap-sol {
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  margin: -36px -30px 24px -30px;
  position: relative;
}

.horlu-card-img-wrap-ind {
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  margin: -30px -30px 20px -30px;
  position: relative;
}

.horlu-card-img-wrap-step {
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  margin: -32px -24px 20px -24px;
  position: relative;
}

.horlu-problem-card:hover .horlu-card-img-header,
.horlu-solution-card:hover .horlu-card-img-header,
.horlu-industry-card:hover .horlu-card-img-header,
.horlu-step-card:hover .horlu-card-img-header {
  transform: scale(1.06);
}

.horlu-card-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.horlu-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #CBD5E1;
}

.horlu-card-list li svg {
  color: var(--horlu-orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.horlu-card-metric {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.horlu-metric-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--horlu-orange);
  font-family: var(--font-head);
}

.horlu-metric-label {
  font-size: 13px;
  color: #94A3B8;
  text-align: right;
}

/* =====================================================================
   3. EXECUTIVE AI BRIEFINGS SECTION (Learning Library)
===================================================================== */
.horlu-videos-section {
  position: relative;
  padding: clamp(52px, 6vw, 84px) 0;
  background-color: #FAF8F5;
  background-image: radial-gradient(rgba(232, 130, 28, 0.05) 1px, transparent 1px),
                    radial-gradient(rgba(18, 21, 26, 0.03) 1px, #FAF8F5 1px);
  background-size: 32px 32px;
  background-position: 0 0, 16px 16px;
  border-top: 1px solid rgba(230, 225, 216, 0.8);
  border-bottom: 1px solid rgba(230, 225, 216, 0.8);
  overflow: hidden;
}

/* Subtle AI Network Line Background Overlay */
.horlu-videos-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='800' height='600' viewBox='0 0 800 600' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M100 150L250 80L420 180L580 90L720 220' stroke='%23E8821C' stroke-width='1.2' stroke-opacity='0.045' stroke-dasharray='4 6'/%3E%3Cpath d='M80 420L220 340L380 460L560 380L740 500' stroke='%23E8821C' stroke-width='1.2' stroke-opacity='0.045' stroke-dasharray='4 6'/%3E%3Cpath d='M250 80L220 340M420 180L380 460M580 90L560 380' stroke='%23E8821C' stroke-width='1' stroke-opacity='0.035'/%3E%3Ccircle cx='250' cy='80' r='3.5' fill='%23E8821C' fill-opacity='0.06'/%3E%3Ccircle cx='420' cy='180' r='3.5' fill='%23E8821C' fill-opacity='0.06'/%3E%3Ccircle cx='580' cy='90' r='3.5' fill='%23E8821C' fill-opacity='0.06'/%3E%3Ccircle cx='220' cy='340' r='3.5' fill='%23E8821C' fill-opacity='0.06'/%3E%3Ccircle cx='380' cy='460' r='3.5' fill='%23E8821C' fill-opacity='0.06'/%3E%3Ccircle cx='560' cy='380' r='3.5' fill='%23E8821C' fill-opacity='0.06'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 800px 600px;
  pointer-events: none;
  opacity: 0.9;
  z-index: 0;
}

.horlu-videos-container {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* --- Section Header (Editorial & Left-Aligned) --- */
.horlu-briefings-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: clamp(32px, 4vw, 44px);
  flex-wrap: wrap;
}

.horlu-briefings-header-main {
  max-width: 780px;
}

.horlu-eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #D46E0E;
  margin-bottom: 12px;
}

.horlu-eyebrow-tag::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  background-color: var(--horlu-orange);
  border-radius: 2px;
}

.horlu-briefings-title {
  font-family: var(--font-head);
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 700;
  color: var(--horlu-heading);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0 0 12px 0;
}

.horlu-briefings-subtitle {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.3vw, 17px);
  color: #4A5568;
  line-height: 1.6;
  margin: 0;
}

.horlu-briefings-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background-color: #FFFFFF;
  border: 1px solid #E6E1D8;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: #333C4D;
  box-shadow: 0 2px 8px rgba(18, 21, 26, 0.04);
  white-space: nowrap;
}

.horlu-briefings-meta-badge svg {
  width: 16px;
  height: 16px;
  stroke: var(--horlu-orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.horlu-briefings-meta-badge strong {
  color: var(--horlu-navy);
}

.horlu-meta-dot {
  color: #A0AEC0;
}

/* --- Section Layout Grid (Dominant 62% Video, 38% Curriculum) --- */
.horlu-briefings-grid,
.horlu-video-widget-grid {
  display: grid;
  grid-template-columns: minmax(320px, 38%) 1fr;
  gap: clamp(24px, 3vw, 36px);
  align-items: stretch;
  margin-bottom: clamp(36px, 4vw, 48px);
}

@media (max-width: 1023px) {
  .horlu-briefings-grid,
  .horlu-video-widget-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* --- Left Column: Curriculum Navigator Panel --- */
.horlu-curriculum-panel,
.horlu-playlist-menu {
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  border: 1px solid #E6E1D8;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 32px rgba(18, 21, 26, 0.05);
  overflow: hidden;
  height: 100%;
}

.horlu-curriculum-panel-header {
  padding: 18px 24px 14px;
  background-color: #FAF8F5;
  border-bottom: 1px solid #EDE8E1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.horlu-curriculum-panel-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #718096;
}

.horlu-curriculum-panel-count {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: #D46E0E;
}

.horlu-curriculum-list {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Individual Lesson Row */
.horlu-curriculum-row,
.horlu-playlist-item {
  position: relative;
  width: 100%;
  padding: 22px 24px;
  border: none;
  border-bottom: 1px solid #EDE8E1;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.25s ease,
              border-color 0.25s ease;
  outline: none;
  box-sizing: border-box;
}

.horlu-curriculum-row:last-child,
.horlu-playlist-item:last-child {
  border-bottom: none;
}

.horlu-curriculum-row:hover,
.horlu-playlist-item:hover {
  background-color: #F8F5EE;
  transform: translateX(3px);
}

.horlu-curriculum-row:focus-visible,
.horlu-playlist-item:focus-visible {
  outline: 2px solid var(--horlu-orange);
  outline-offset: -2px;
  background-color: #FFF9F3;
}

/* Active State */
.horlu-curriculum-row.active,
.horlu-playlist-item.active {
  background-color: #FFF8F0;
}

/* Left 4px Orange Active Accent */
.horlu-curriculum-row::before,
.horlu-playlist-item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background-color: var(--horlu-orange);
  opacity: 0;
  transform: scaleY(0.4);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.horlu-curriculum-row.active::before,
.horlu-playlist-item.active::before {
  opacity: 1;
  transform: scaleY(1);
}

/* Number Circle Indicator */
.horlu-curriculum-num-wrap,
.horlu-playlist-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(232, 130, 28, 0.08);
  border: 1px solid rgba(232, 130, 28, 0.2);
  color: #C96608;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.horlu-curriculum-row.active .horlu-curriculum-num-wrap,
.horlu-playlist-item.active .horlu-playlist-num {
  background-color: var(--horlu-orange);
  border-color: var(--horlu-orange);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(232, 130, 28, 0.35);
}

/* Row Content Area */
.horlu-curriculum-content,
.horlu-playlist-meta {
  flex-grow: 1;
  min-width: 0;
}

.horlu-curriculum-meta-top,
.horlu-playlist-tag-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.horlu-curriculum-label,
.horlu-playlist-item-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #D46E0E;
}

.horlu-curriculum-status {
  display: none;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border-radius: 4px;
  background-color: rgba(232, 130, 28, 0.15);
  color: #A34E00;
}

.horlu-curriculum-row.active .horlu-curriculum-status {
  display: inline-block;
}

.horlu-curriculum-title,
.horlu-playlist-meta h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--horlu-navy);
  line-height: 1.38;
  margin: 0 0 6px 0;
  transition: color 0.2s ease;
}

.horlu-curriculum-row.active .horlu-curriculum-title,
.horlu-playlist-item.active .horlu-playlist-meta h4 {
  font-weight: 700;
  color: #12151A;
}

.horlu-curriculum-meta-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
}

.horlu-curriculum-duration,
.horlu-playlist-item-duration {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: #64748B;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Arrow / Play Chevron on Right */
.horlu-curriculum-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #CBD5E1;
  flex-shrink: 0;
  transition: color 0.25s ease, transform 0.25s ease;
}

.horlu-curriculum-arrow svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.horlu-curriculum-row:hover .horlu-curriculum-arrow,
.horlu-curriculum-row.active .horlu-curriculum-arrow {
  color: var(--horlu-orange);
  transform: translateX(2px);
}

/* --- Right Column: Featured Dominant Video Panel --- */
.horlu-featured-video-panel,
.horlu-main-player {
  position: relative;
  background-color: #12151A;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 48px -12px rgba(18, 21, 26, 0.22),
              0 0 0 1px rgba(18, 21, 26, 0.08);
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

@media (max-width: 1023px) {
  .horlu-featured-video-panel,
  .horlu-main-player {
    order: -1;
  }
}

.horlu-featured-video-panel:hover,
.horlu-main-player:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 60px -15px rgba(18, 21, 26, 0.3),
              0 0 0 1px rgba(232, 130, 28, 0.2);
}

.horlu-video-aspect-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: #0E1015;
}

/* Video Thumbnail Poster */
.horlu-video-poster,
.horlu-player-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transform: scale(1);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.35s ease;
  z-index: 1;
}

.horlu-featured-video-panel:hover .horlu-video-poster,
.horlu-main-player:hover .horlu-player-bg {
  transform: scale(1.02);
  filter: brightness(0.95);
}

/* Upward Dark Gradient Overlay for Maximum Readability */
.horlu-video-gradient-overlay,
.horlu-player-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14, 16, 21, 0.95) 0%,
    rgba(14, 16, 21, 0.65) 42%,
    rgba(14, 16, 21, 0.2) 75%,
    rgba(14, 16, 21, 0.45) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Top Header Bar inside Video */
.horlu-video-top-bar {
  position: absolute;
  top: clamp(16px, 2.5vw, 24px);
  left: clamp(16px, 2.5vw, 28px);
  right: clamp(16px, 2.5vw, 28px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
  pointer-events: none;
}

.horlu-video-badge-tag,
.horlu-player-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
  background-color: rgba(18, 21, 26, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.horlu-video-badge-tag::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--horlu-orange);
}

.horlu-video-badge-duration {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: #FFFFFF;
  background-color: rgba(18, 21, 26, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.horlu-video-badge-duration svg {
  width: 14px;
  height: 14px;
  stroke: var(--horlu-orange);
  fill: none;
  stroke-width: 2;
}

/* Center Horlu Orange Play Button */
@keyframes horluPlayPulseRing {
  0% {
    box-shadow: 0 0 0 0 rgba(232, 130, 28, 0.7);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(232, 130, 28, 0);
    transform: scale(1.04);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(232, 130, 28, 0);
    transform: scale(1);
  }
}

.horlu-video-play-btn,
.horlu-player-play-btn {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 4;
  outline: none;
  padding: 0;
  text-decoration: none;
}

.horlu-play-btn-circle {
  width: clamp(68px, 7vw, 84px);
  height: clamp(68px, 7vw, 84px);
  border-radius: 50%;
  background-color: var(--horlu-orange);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 36px rgba(232, 130, 28, 0.45);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.3s ease,
              box-shadow 0.3s ease;
}

.horlu-play-icon {
  width: clamp(24px, 2.6vw, 30px);
  height: clamp(24px, 2.6vw, 30px);
  fill: #FFFFFF;
  margin-left: 4px;
}

.horlu-play-btn-label,
.horlu-player-preview-text {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  opacity: 0.95;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.horlu-featured-video-panel:hover .horlu-play-btn-circle,
.horlu-main-player:hover .horlu-player-play-btn {
  background-color: #FFFFFF;
  box-shadow: 0 16px 44px rgba(232, 130, 28, 0.4);
  animation: horluPlayPulseRing 1.8s infinite;
}

.horlu-featured-video-panel:hover .horlu-play-icon,
.horlu-main-player:hover .horlu-player-play-btn svg {
  fill: var(--horlu-orange);
}

.horlu-video-play-btn:focus-visible .horlu-play-btn-circle {
  outline: 3px solid #FFFFFF;
  outline-offset: 4px;
}

/* Bottom Caption Area in Video */
.horlu-video-caption-area,
.horlu-player-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(20px, 3vw, 32px) clamp(20px, 3.5vw, 36px);
  z-index: 3;
  text-align: left;
  box-sizing: border-box;
}

.horlu-video-caption-title,
.horlu-player-title {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  color: #FFFFFF !important;
  line-height: 1.25;
  margin: 0 0 8px 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.horlu-video-caption-desc {
  font-family: var(--font-body);
  font-size: clamp(13px, 1.2vw, 15px);
  color: #E2DDD5;
  line-height: 1.5;
  margin: 0;
  max-width: 680px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}

/* --- Section Footer: Intentional Action Bar --- */
.horlu-briefings-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  background-color: #FFFFFF;
  border: 1px solid #E6E1D8;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(18, 21, 26, 0.04);
  flex-wrap: wrap;
}

.horlu-briefings-footer-text {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 500;
  color: #2D3748;
}

.horlu-check-icon {
  width: 20px;
  height: 20px;
  stroke: var(--horlu-orange);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.horlu-briefings-footer-action {
  flex-shrink: 0;
}

.horlu-btn-explore-briefings {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background-color: var(--horlu-orange, #E8821C);
  color: #FFFFFF !important;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(232, 130, 28, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
}

.horlu-btn-explore-briefings span {
  color: #FFFFFF !important;
}

.horlu-btn-explore-briefings svg {
  width: 16px;
  height: 16px;
  stroke: #FFFFFF;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s ease;
}

.horlu-btn-explore-briefings:hover {
  background-color: var(--horlu-orange-hover, #D46E0E);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 130, 28, 0.42);
}

.horlu-btn-explore-briefings:hover span {
  color: #FFFFFF !important;
}

.horlu-btn-explore-briefings:hover svg {
  transform: translateX(4px);
  stroke: #FFFFFF;
}

.horlu-btn-explore-briefings:focus-visible {
  outline: 2px solid var(--horlu-navy, #12151A);
  outline-offset: 3px;
}

@media (max-width: 767px) {
  .horlu-briefings-footer {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    text-align: center;
  }

  .horlu-briefings-footer-text {
    justify-content: center;
  }

  .horlu-btn-explore-briefings {
    justify-content: center;
    width: 100%;
  }
}

/* --- Accessibility: Prefers Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  .horlu-curriculum-row,
  .horlu-playlist-item,
  .horlu-featured-video-panel,
  .horlu-main-player,
  .horlu-video-poster,
  .horlu-player-bg,
  .horlu-curriculum-arrow,
  .horlu-btn-explore-briefings,
  .horlu-play-btn-circle {
    transition: none !important;
    transform: none !important;
    animation: none !important;
  }
}

/* =====================================================================
   4. FREE DOWNLOADS & LEAD CAPTURE
===================================================================== */
.horlu-downloads-section {
  padding: clamp(44px, 5vw, 64px) 0;
  background-color: var(--horlu-bg-alt);
  position: relative;
}

.horlu-downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 56px;
}

.horlu-download-card {
  background: var(--horlu-bg-card);
  border: 1px solid var(--horlu-border);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.horlu-download-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--horlu-orange);
}

.horlu-download-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background-color: var(--horlu-orange-soft);
  color: var(--horlu-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.horlu-download-title {
  font-size: 20px;
  margin-bottom: 12px;
}

.horlu-download-text {
  font-size: 14px;
  color: var(--horlu-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

/* Lead Form Inline Box & Grid Banner */
.horlu-lead-box {
  background: linear-gradient(135deg, #12151A 0%, #0B0D10 100%);
  color: #FFFFFF;
  border: 1px solid rgba(232, 130, 28, 0.35);
  border-radius: var(--radius-lg, 16px);
  padding: clamp(32px, 5vw, 48px);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.35);
  width: 100%;
}

.horlu-lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  width: 100%;
}

.horlu-lead-box:not(:has(.horlu-lead-grid)) {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.horlu-lead-info h3 {
  color: #FFFFFF;
  font-family: var(--font-head, 'Playfair Display', serif);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
}

.horlu-lead-info p {
  color: #CBD5E1;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

.horlu-lead-form {
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100%;
}

.horlu-lead-input {
  flex: 1;
  min-width: 0;
  padding: 15px 20px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 15px;
  outline: none;
  transition: all 0.25s ease;
}

.horlu-lead-input::placeholder {
  color: #94A3B8;
  opacity: 0.85;
}

.horlu-lead-input:focus {
  border-color: var(--horlu-orange, #E8821C);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 3px rgba(232, 130, 28, 0.2);
}

.horlu-lead-form .horlu-btn {
  white-space: nowrap;
  padding: 15px 26px;
  border-radius: 9999px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .horlu-lead-grid,
  .horlu-lead-box:not(:has(.horlu-lead-grid)) {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .horlu-lead-form {
    flex-direction: column;
  }

  .horlu-lead-input,
  .horlu-lead-form .horlu-btn {
    width: 100%;
  }
}

/* =====================================================================
   5. CORPORATE TRAINING SPOTLIGHT
===================================================================== */
.horlu-training-section {
  padding: clamp(44px, 5vw, 64px) 0;
  background-color: var(--horlu-bg-card);
}

.horlu-training-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: flex-start;
}

.horlu-training-content .horlu-section-title {
  text-align: left;
}

.horlu-training-hero-banner {
  position: relative;
  width: 100%;
  height: 240px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 24px 0 28px;
  border: 1px solid var(--horlu-border-light);
  box-shadow: var(--shadow-md);
}

.horlu-training-hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.horlu-training-hero-banner:hover img {
  transform: scale(1.05);
}

.horlu-training-badge-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(17, 26, 46, 0.88);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(232, 130, 28, 0.4);
}

.horlu-training-badge-overlay span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--horlu-orange);
}

.horlu-card-img-wrap-training {
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin: -40px -40px 24px -40px;
  height: 210px;
  position: relative;
}

.horlu-card-img-wrap-training img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.horlu-training-card:hover .horlu-card-img-wrap-training img {
  transform: scale(1.05);
}

.horlu-training-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0 36px;
}

.horlu-training-feature-item {
  display: flex;
  gap: 16px;
}

.horlu-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--horlu-orange-soft);
  color: var(--horlu-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.horlu-feature-text h4 {
  font-size: 17px;
  margin-bottom: 4px;
}

.horlu-feature-text p {
  font-size: 14px;
  color: var(--horlu-muted);
}

.horlu-training-card {
  background: var(--horlu-bg);
  border: 1px solid var(--horlu-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.horlu-workshop-pill {
  display: inline-block;
  padding: 6px 14px;
  background: var(--horlu-orange);
  color: #FFFFFF;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.horlu-training-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.horlu-training-card-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.horlu-training-card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--horlu-text);
}

.horlu-training-card-list li svg {
  color: var(--horlu-orange);
}

/* =====================================================================
   6. THE PROBLEM (AI Adoption Friction)
===================================================================== */
.horlu-problem-section {
  padding: clamp(44px, 5vw, 64px) 0;
  background-color: var(--horlu-bg);
  color: var(--horlu-text);
  border-top: 1px solid var(--horlu-border-light);
}

.horlu-problem-section .horlu-section-title {
  color: var(--horlu-heading);
}

.horlu-problem-section .horlu-section-subtitle {
  color: var(--horlu-muted);
}

.horlu-problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.horlu-problem-card {
  background: var(--horlu-bg-card);
  border: 1px solid var(--horlu-border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.horlu-problem-card:hover {
  background: var(--horlu-bg-card);
  border-color: var(--horlu-orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.horlu-problem-num {
  font-size: 14px;
  font-weight: 800;
  color: var(--horlu-orange);
  margin-bottom: 16px;
  font-family: var(--font-head);
}

.horlu-problem-card h3 {
  color: var(--horlu-heading);
  font-size: 20px;
  margin-bottom: 12px;
}

.horlu-problem-card p {
  color: var(--horlu-text);
  font-size: 14px;
  line-height: 1.6;
}

/* =====================================================================
   7. FOUR CORE SOLUTIONS (Services Overview Slider)
===================================================================== */
.horlu-solutions-section {
  padding: clamp(44px, 5vw, 64px) 0;
  background-color: var(--horlu-bg);
  position: relative;
}

.horlu-solutions-slider-wrap {
  overflow: hidden;
  position: relative;
  padding: 12px 4px 24px;
  margin: 0 -4px;
}

.horlu-solutions-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.horlu-solution-card {
  background: var(--horlu-bg-card);
  border: 1px solid var(--horlu-border);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 0 0 calc(33.333% - 19px);
  min-width: 280px;
}

.horlu-solution-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--horlu-orange);
}

.horlu-solution-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background-color: var(--horlu-navy);
  color: var(--horlu-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}

.horlu-solution-card:hover .horlu-solution-icon {
  background-color: var(--horlu-orange);
  color: #FFFFFF;
}

.horlu-solution-title {
  font-size: 21px;
  margin-bottom: 12px;
}

.horlu-solution-desc {
  font-size: 14px;
  color: var(--horlu-muted);
  margin-bottom: 24px;
  line-height: 1.65;
  flex-grow: 1;
}

.horlu-solution-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--horlu-orange);
}

.horlu-solution-card:hover .horlu-solution-link {
  color: var(--horlu-navy);
}

.horlu-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.horlu-slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--horlu-bg-card);
  border: 1px solid var(--horlu-border);
  color: var(--horlu-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.horlu-slider-arrow:hover {
  background-color: var(--horlu-orange);
  color: #FFFFFF;
  border-color: var(--horlu-orange);
  transform: scale(1.08);
}

.horlu-slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.horlu-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--horlu-border);
  cursor: pointer;
  transition: var(--transition);
}

.horlu-slider-dot.active {
  background-color: var(--horlu-orange);
  width: 24px;
  border-radius: var(--radius-full);
}

/* =====================================================================
   8. AI ADOPTION FRAMEWORK (4-Step Process)
===================================================================== */
.horlu-framework-section {
  padding: clamp(44px, 5vw, 64px) 0;
  background-color: var(--horlu-bg-card);
  border-top: 1px solid var(--horlu-border-light);
  border-bottom: 1px solid var(--horlu-border-light);
}

.horlu-framework-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  position: relative;
}

.horlu-step-card {
  background: var(--horlu-bg);
  border: 1px solid var(--horlu-border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  position: relative;
}

.horlu-step-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--horlu-orange);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-family: var(--font-head);
}

.horlu-step-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.horlu-step-card p {
  font-size: 14px;
  color: var(--horlu-muted);
  line-height: 1.6;
}

/* =====================================================================
   9. INDUSTRY VERTICALS GRID
===================================================================== */
.horlu-industries-section {
  padding: clamp(44px, 5vw, 64px) 0;
  background-color: var(--horlu-bg-alt);
}

.horlu-industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.horlu-industry-card {
  background: var(--horlu-bg-card);
  border: 1px solid var(--horlu-border);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: var(--transition);
}

.horlu-industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--horlu-orange);
}

.horlu-industry-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.horlu-industry-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background-color: var(--horlu-orange-soft);
  color: var(--horlu-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.horlu-industry-card h3 {
  font-size: 19px;
}

.horlu-industry-card p {
  font-size: 14px;
  color: var(--horlu-muted);
  line-height: 1.6;
}

/* =====================================================================
   10. AI READINESS SCORECARD CTA BANNER
===================================================================== */
.horlu-scorecard-section {
  padding: clamp(40px, 5vw, 52px) 0;
  background-color: var(--horlu-bg);
}

.horlu-scorecard-banner {
  background: linear-gradient(135deg, var(--horlu-orange) 0%, var(--horlu-orange-hover) 100%);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 64px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.horlu-scorecard-banner::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.horlu-scorecard-content h2 {
  color: #FFFFFF;
  font-size: clamp(26px, 3.5vw, 38px);
  margin-bottom: 16px;
}

.horlu-scorecard-content p {
  color: #FFFFFF;
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 28px;
  opacity: 0.9;
}

.horlu-scorecard-action {
  display: flex;
  justify-content: flex-end;
}

/* =====================================================================
   11. WHY HORLU (Core Differentiators)
===================================================================== */
.horlu-why-section {
  padding: clamp(48px, 6vw, 66px) 0 clamp(40px, 5vw, 60px);
  background-color: var(--horlu-bg-card);
  position: relative;
  border-top: 1px solid var(--horlu-border);
}

.horlu-emblem-divider-wrap {
  position: absolute;
  top: -90px;
  right: clamp(20px, 10vw, 160px);
  z-index: 10;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.horlu-emblem-svg {
  width: 100%;
  height: 100%;
  animation: horluRotateEmblem 14s linear infinite;
}

@keyframes horluRotateEmblem {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.horlu-emblem-dot {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--horlu-orange);
  box-shadow: 0 0 28px rgba(232, 130, 28, 0.65);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.horlu-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.horlu-why-card {
  text-align: center;
  padding: 32px 24px;
}

.horlu-why-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--horlu-orange-soft);
  color: var(--horlu-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.horlu-why-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.horlu-why-card p {
  font-size: 14px;
  color: var(--horlu-muted);
  line-height: 1.65;
}

/* =====================================================================
   12. LATEST BLOG INSIGHTS & ARTICLES
===================================================================== */
.horlu-blog-section {
  padding: clamp(44px, 5vw, 64px) 0;
  background-color: var(--horlu-bg);
  border-bottom: 1px solid var(--horlu-border-light);
}

.horlu-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.horlu-blog-card {
  background-color: var(--horlu-bg-card);
  border: 1px solid var(--horlu-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: var(--horlu-transition);
}

.horlu-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(232, 130, 28, 0.08);
  border-color: rgba(232, 130, 28, 0.2);
}

.horlu-blog-img-wrap {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  background-color: var(--horlu-navy);
}

.horlu-blog-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.horlu-blog-card:hover .horlu-blog-img-wrap img {
  transform: scale(1.06);
}

.horlu-blog-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--horlu-orange);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 9999px;
  z-index: 2;
}

.horlu-blog-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.horlu-blog-meta {
  font-size: 13px;
  color: var(--horlu-muted);
  margin-bottom: 12px;
  font-weight: 500;
}

.horlu-blog-content h3 {
  font-family: var(--font-head);
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 12px;
  font-weight: 700;
}

.horlu-blog-content h3 a {
  color: var(--horlu-navy);
  text-decoration: none;
  transition: var(--horlu-transition);
}

.horlu-blog-content h3 a:hover {
  color: var(--horlu-orange);
}

.horlu-blog-content p {
  font-size: 15px;
  color: var(--horlu-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.horlu-blog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--horlu-orange) !important;
  text-decoration: none;
  transition: var(--horlu-transition);
}

.horlu-blog-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.horlu-blog-link:hover svg {
  transform: translateX(4px);
}

/* =====================================================================
   13. FINAL CTA & SITE FOOTER
===================================================================== */
.horlu-footer {
  background-color: var(--horlu-navy-dark);
  color: #FFFFFF;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.horlu-footer-cta {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.horlu-footer-cta h2 {
  color: #FFFFFF;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 18px;
}

.horlu-footer-cta p {
  color: #E2E8F0;
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 32px;
}

.horlu-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 60px;
}

.horlu-footer-brand p {
  color: #E2E8F0;
  font-size: 15px;
  margin-top: 16px;
  line-height: 1.65;
}

.horlu-footer-title {
  color: #FFFFFF !important;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 22px;
  opacity: 1 !important;
}

.horlu-footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.horlu-footer-links a {
  color: #E2E8F0;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.horlu-footer-links a:hover {
  color: var(--horlu-orange);
}

.horlu-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #E2E8F0;
  font-size: 15px;
  line-height: 1.5;
}

.horlu-contact-icon {
  color: var(--horlu-orange);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.horlu-contact-item a {
  color: #E2E8F0;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.horlu-contact-item a:hover {
  color: var(--horlu-orange);
}

.horlu-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
  color: #E2E8F0;
  opacity: 0.8;
}

/* =====================================================================
   14. MODAL POPUPS (Lead Capture & Video Player)
===================================================================== */
.horlu-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 99999;
}

.horlu-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.horlu-modal-content {
  background: #FFFFFF;
  border: 1px solid rgba(232, 130, 28, 0.15);
  border-radius: var(--radius-lg);
  padding: 40px clamp(20px, 5vw, 48px);
  max-width: 480px;
  width: 90%;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
  transform: scale(0.95) translateY(10px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.horlu-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--horlu-muted);
  cursor: pointer;
  line-height: 1;
  transition: var(--horlu-transition);
}

.horlu-modal-close:hover {
  color: var(--horlu-navy);
  transform: rotate(90deg);
}

.horlu-modal-input:focus {
  border-color: var(--horlu-orange) !important;
  box-shadow: 0 0 0 3px rgba(232, 130, 28, 0.12);
}

.horlu-modal-box {
  width: 100%;
  max-width: 800px;
  background: #000000;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.horlu-modal-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.horlu-modal-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* =====================================================================
   15. RESPONSIVE BREAKPOINTS & MOBILE NAVIGATION
===================================================================== */
@media (max-width: 1024px) {
  .horlu-video-widget-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .horlu-playlist-menu {
    order: 2;
    border-right: none;
    border-top: 1px solid var(--horlu-border-light);
  }

  .horlu-main-player {
    order: 1;
    width: 100%;
    min-height: auto;
  }

  .horlu-hero-grid,
  .horlu-training-container,
  .horlu-lead-box,
  .horlu-scorecard-banner {
    grid-template-columns: 1fr;
  }

  .horlu-scorecard-action {
    justify-content: flex-start;
  }

  .horlu-solution-card {
    flex: 0 0 calc(50% - 14px);
  }

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

@media (max-width: 991px) {
  .horlu-hero {
    padding: clamp(48px, 6vw, 68px) 0;
    min-height: auto;
  }

  .horlu-hero-overlay {
    background:
      radial-gradient(circle at 50% 80%, rgba(232, 130, 28, 0.18) 0%, transparent 60%),
      linear-gradient(180deg, rgba(11, 14, 20, 0.94) 0%, rgba(11, 14, 20, 0.86) 55%, rgba(11, 14, 20, 0.96) 100%);
  }

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

  .horlu-hero-content {
    text-align: center;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .horlu-hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .horlu-hero-ctas {
    justify-content: center;
  }

  .horlu-hero-trust-bar {
    justify-content: center;
    width: 100%;
  }

  .horlu-hero-visual {
    min-height: auto;
    max-width: 500px;
    margin: 0 auto;
    flex-direction: column;
    gap: 18px;
  }

  .horlu-visual-canvas-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    height: auto;
  }

  .horlu-map-svg {
    width: 100%;
    max-width: 440px;
    height: auto;
    min-height: 260px;
  }

  .horlu-insight-card {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 360px;
    margin: 16px auto 0;
    animation: none;
    text-align: left;
  }
}

.horlu-mobile-menu {
  display: none;
}

@media (max-width: 768px) {
  .horlu-nav-menu,
  .horlu-header-actions .horlu-btn {
    display: none;
  }

  .horlu-mobile-toggle {
    display: block;
  }

  .horlu-mobile-menu {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid var(--horlu-border-light);
    margin-top: 16px;
  }

  .horlu-mobile-menu.active {
    display: flex;
  }

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

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

@media (max-width: 640px) {
  .horlu-solution-card {
    flex: 0 0 100%;
  }
}

@media (max-width: 480px) {
  .horlu-hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .horlu-hero-cta-primary,
  .horlu-hero-cta-secondary {
    width: 100%;
    text-align: center;
  }

  .horlu-hero-trust-bar {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

/* =====================================================================
   16. ACCESSIBILITY — REDUCED MOTION SUPPORT
===================================================================== */
@media (prefers-reduced-motion: reduce) {
  .horlu-hero-kicker,
  .horlu-hero-title,
  .horlu-hero-subtitle,
  .horlu-hero-ctas,
  .horlu-hero-trust-bar,
  .horlu-hero-visual,
  .horlu-insight-card,
  .horlu-flow-path,
  .horlu-flow-path-fast,
  .horlu-pulse-ring,
  .horlu-pulse-ring-delayed,
  .horlu-hero-slide.active,
  .horlu-emblem-svg {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =====================================================================
   17. FOUNDER SPOTLIGHT SECTION (ABOUT PAGE)
===================================================================== */
.horlu-founder-section {
  padding: clamp(48px, 6vw, 72px) 0;
  background-color: var(--horlu-bg, #FAF8F5);
}

.horlu-founder-card {
  background: #FFFFFF;
  border: 1px solid var(--horlu-border, #E4E7EC);
  border-radius: var(--radius-lg, 24px);
  padding: clamp(36px, 5vw, 56px);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-md, 0 10px 30px rgba(0, 0, 0, 0.05));
  position: relative;
}

.horlu-founder-avatar-wrap {
  width: 100%;
  height: 280px;
  background: #FFFFFF;
  border-radius: var(--radius-md, 16px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.horlu-founder-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  background-color: #FFFFFF;
  mix-blend-mode: multiply;
  border-radius: var(--radius-md, 16px);
  display: block;
}

.horlu-founder-info h3 {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: 28px;
  margin-bottom: 6px;
  color: var(--horlu-navy, #12151A);
}

.horlu-founder-role {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--horlu-orange, #E8821C);
  margin-bottom: 16px;
}

.horlu-founder-bio {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 15px;
  color: var(--horlu-muted, #555E68);
  line-height: 1.7;
  margin-bottom: 24px;
}

@media (max-width: 1024px) {
  .horlu-founder-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .horlu-founder-avatar-wrap {
    max-width: 280px;
    margin: 0 auto;
  }

  .horlu-founder-card .horlu-btn {
    margin: 0 auto;
  }
}

