@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ==========================================
   DESIGN TOKENS & RESET
   ========================================== */
:root {
  /* Color Palette - Updated to match logo exactly */
  --primary-navy: #002558;
  --primary-navy-dark: #00122B;
  --primary-navy-light: #003780;
  --secondary-cyan: #00AEEF;
  --secondary-cyan-light: #4CD1FF;
  --accent-gold: #D29C23;
  --accent-gold-light: #E9AF2B;
  
  /* Neutrals */
  --white: #FFFFFF;
  --bg-light: #F5FAFD;
  --bg-alt: #EDF7FB;
  --text-dark: #1F2937;
  --text-muted: #4B5563;
  --border-light: #E5E7EB;
  
  /* Layout & Spacing */
  --border-radius-lg: 24px;
  --border-radius-md: 16px;
  --border-radius-sm: 8px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --box-shadow-subtle: 0 4px 20px -2px rgba(0, 37, 88, 0.05);
  --box-shadow-hover: 0 10px 30px -5px rgba(0, 37, 88, 0.12);
  --box-shadow-premium: 0 20px 40px -15px rgba(0, 37, 88, 0.15);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--primary-navy);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

/* ==========================================
   UTILITY CLASSES & GRID
   ========================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

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

.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: rgba(22, 169, 224, 0.1);
  color: var(--primary-navy-light);
  border: 1px solid rgba(22, 169, 224, 0.2);
}

.badge-gold {
  background-color: rgba(220, 168, 45, 0.1);
  color: var(--accent-gold);
  border-color: rgba(220, 168, 45, 0.2);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 50px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

/* Glassmorphism Panel */
.glass-panel {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--box-shadow-subtle);
  transition: var(--transition-smooth);
}

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

.text-cyan {
  color: var(--secondary-cyan) !important;
}

.text-gradient-gold {
  background: linear-gradient(135deg, var(--accent-gold) 20%, var(--accent-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass-panel-gold {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(210, 156, 35, 0.2);
  box-shadow: 0 10px 30px -10px rgba(210, 156, 35, 0.08);
  transition: var(--transition-smooth);
}

.glass-panel-gold:hover {
  border-color: rgba(210, 156, 35, 0.45);
  box-shadow: 0 15px 35px -5px rgba(210, 156, 35, 0.15);
  transform: translateY(-6px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  font-size: 1rem;
  min-height: 48px;
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary-navy);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(15, 53, 102, 0.25);
}

.btn-primary:hover {
  background-color: var(--primary-navy-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 53, 102, 0.35);
}

.btn-secondary {
  background-color: var(--bg-alt);
  color: var(--primary-navy);
  border: 1px solid rgba(15, 53, 102, 0.1);
}

.btn-secondary:hover {
  background-color: rgba(22, 169, 224, 0.05);
  transform: translateY(-2px);
}

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

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

.btn-gold {
  background-color: var(--accent-gold);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(220, 168, 45, 0.3);
}

.btn-gold:hover {
  background-color: var(--accent-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 168, 45, 0.4);
}

/* ==========================================
   HEADER / NAVIGATION
   ========================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

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

.logo-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary-navy);
  letter-spacing: -0.02em;
}

.logo-text span {
  color: var(--secondary-cyan);
}

.main-nav {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-navy);
}

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

/* Mobile Nav Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1100;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--primary-navy);
  margin: 6px auto;
  transition: var(--transition-smooth);
}

/* Hide mobile navigation drawer on desktop screens */
.mobile-menu {
  display: none;
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  
  .nav-actions {
    display: none;
  }
  
  .menu-toggle {
    display: block;
  }

  /* Hamburger Active Transition */
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Mobile Fullscreen Nav Overlay */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
  }

  .mobile-menu.active {
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu .main-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .mobile-menu .nav-link {
    font-size: 1.5rem;
    font-weight: 600;
  }

  .mobile-menu .nav-actions {
    display: flex;
    flex-direction: column;
    width: 80%;
    gap: 16px;
  }
  
  .mobile-menu .nav-actions .btn {
    width: 100%;
  }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 80% 20%, var(--bg-alt) 0%, var(--white) 60%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 80px;
  overflow: hidden;
}

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

.hero-content {
  max-width: 540px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-title span.gradient-text {
  background: linear-gradient(135deg, var(--primary-navy) 20%, var(--secondary-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

/* Hero Trust Items */
.hero-trust-row {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  position: relative;
  padding-top: 28px;
}

/* Fading gradient top divider */
.hero-trust-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, var(--border-light) 20%, var(--border-light) 80%, rgba(255,255,255,0) 100%);
}

.hero-trust-col {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  transition: transform 0.3s ease;
}

.hero-trust-col:hover {
  transform: translateY(-2px);
}

.hero-trust-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: rgba(0, 174, 239, 0.06);
  border: 1px solid rgba(0, 174, 239, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-cyan);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.hero-trust-col:hover .hero-trust-icon-box {
  background-color: rgba(0, 174, 239, 0.12);
  border-color: var(--secondary-cyan);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 174, 239, 0.15);
}

.hero-trust-info {
  display: flex;
  flex-direction: column;
}

.hero-trust-info h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-navy);
  line-height: 1.25;
  margin-bottom: 2px;
  white-space: nowrap; /* Prevent ugly wrapping of titles */
  transition: color 0.3s ease;
}

.hero-trust-col:hover .hero-trust-info h4 {
  color: var(--secondary-cyan);
}

.hero-trust-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.3;
}


/* Hero Visual Composition */
.hero-visual-wrapper {
  position: relative;
  width: 100%;
  height: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-illustration-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  z-index: 2;
  mix-blend-mode: multiply;
}

.hero-bg-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(22, 169, 224, 0.12) 0%, rgba(22, 169, 224, 0) 70%);
  z-index: 1;
}

.floating-card {
  position: absolute;
  z-index: 4;
  padding: 12px 18px;
  border-radius: var(--border-radius-md);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 37, 88, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatSlow 6s ease-in-out infinite;
}

.floating-card-1 {
  top: 12%;
  left: -2%;
  animation-delay: 0s;
}

.floating-card-2 {
  bottom: 28%;
  left: -8%;
  animation-delay: 1.5s;
}

.floating-card-3 {
  top: 25%;
  right: -2%;
  animation-delay: 3s;
}

.floating-card-4 {
  bottom: 15%;
  right: -8%;
  animation-delay: 4.5s;
}

.floating-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-card-text {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.2;
}

.floating-card-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--primary-navy);
  margin-bottom: 2px;
  font-family: 'Outfit', sans-serif;
}

.floating-card-progress {
  width: 70px;
  height: 4px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 2px;
  margin-top: 5px;
  overflow: hidden;
}

.floating-card-progress-bar {
  height: 100%;
  border-radius: 2px;
}

.sparkle-gold {
  position: absolute;
  z-index: 3;
  color: var(--accent-gold);
  animation: pulseGlow 2.5s ease-in-out infinite;
}

.sparkle-1 {
  top: 20%;
  right: 20%;
  font-size: 1.5rem;
  animation-delay: 0.5s;
}

.sparkle-2 {
  bottom: 25%;
  left: 25%;
  font-size: 1.25rem;
  animation-delay: 1.5s;
}



@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.75;
    filter: drop-shadow(0 0 15px rgba(22, 169, 224, 0.2));
  }
  50% {
    transform: scale(1.03);
    opacity: 0.95;
    filter: drop-shadow(0 0 30px rgba(22, 169, 224, 0.45));
  }
}

@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(1deg);
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    gap: 40px;
  }
  .hero-title {
    font-size: 2.75rem;
  }
  .hero-visual-wrapper {
    height: 480px;
  }
  .hero-bottom-banner {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    padding: 20px !important;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 40px;
    padding-bottom: 120px !important;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }
  .hero-content {
    max-width: 100%;
    margin: 0 auto;
    order: 1;
  }
  .hero-visual-wrapper {
    order: 2;
    height: 400px;
    max-width: 450px;
    margin: 0 auto;
  }
  .hero-ctas {
    justify-content: center;
    flex-direction: column;
    gap: 12px;
  }
  .hero-ctas .btn {
    width: 100%;
  }
  .hero-trust-row {
    flex-direction: column;
    align-items: center;
    gap: 16px !important;
  }
  .hero-bottom-banner {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
    padding: 20px !important;
    margin-top: -30px !important;
    margin-bottom: 20px !important;
  }
  .floating-card {
    padding: 8px 12px !important;
    gap: 8px !important;
  }
  .floating-card-icon {
    width: 24px !important;
    height: 24px !important;
  }
  .floating-card-icon svg {
    width: 14px !important;
    height: 14px !important;
  }
  .floating-card-text strong {
    font-size: 0.8rem !important;
  }
  .floating-card-progress {
    width: 50px !important;
  }
}

/* ==========================================
   VALUE PROPOSITION SECTION
   ========================================== */
.value-section {
  background-color: var(--white);
}

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

.value-card {
  padding: 40px 32px;
  border-radius: var(--border-radius-lg);
  transition: var(--transition-smooth);
  border: 1px solid var(--border-light);
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(22, 169, 224, 0.2);
  box-shadow: var(--box-shadow-hover);
}

.value-card-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius-md);
  background-color: rgba(22, 169, 224, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary-navy-light);
}

.value-card-icon {
  width: 28px;
  height: 28px;
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .value-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ==========================================
   WHAT IS JARI TALENTA SECTION
   ========================================== */
.what-section {
  background-color: var(--bg-light);
}

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

.what-visual-container {
  position: relative;
  padding: 40px;
  border-radius: var(--border-radius-lg);
  background-color: var(--white);
  box-shadow: var(--box-shadow-subtle);
  border: 1px solid var(--border-light);
}

/* Flowchart Visual Component */
.flowchart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.flowchart-step {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 360px;
  padding: 16px 20px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-light);
  background-color: var(--bg-light);
  position: relative;
}

.flowchart-step.highlight {
  border-color: rgba(220, 168, 45, 0.4);
  background-color: rgba(220, 168, 45, 0.03);
}

.flowchart-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--primary-navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.flowchart-step.highlight .flowchart-step-num {
  background-color: var(--accent-gold);
}

.flowchart-step-content h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.flowchart-step-content p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.flowchart-arrow {
  color: var(--secondary-cyan);
  width: 24px;
  height: 24px;
}

.what-content h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  font-weight: 800;
}

.what-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.what-text:last-of-type {
  margin-bottom: 30px;
}

.data-privacy-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary-cyan);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.data-privacy-link:hover {
  color: var(--primary-navy-light);
}

@media (max-width: 1024px) {
  .what-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* ==========================================
   INSIGHT / BENEFIT GRID
   ========================================== */
.insight-section {
  background-color: var(--white);
}

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

.insight-card {
  padding: 32px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

.insight-card:hover {
  transform: translateY(-6px);
  border-color: rgba(210, 156, 35, 0.35);
  box-shadow: 0 12px 35px -5px rgba(210, 156, 35, 0.12);
}

.insight-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.insight-card-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius-sm);
  background-color: rgba(210, 156, 35, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
}

.insight-card-icon {
  width: 22px;
  height: 22px;
}

.insight-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.insight-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

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

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

/* ==========================================
   HOW IT WORKS (TIMELINE)
   ========================================== */
.how-section {
  background-color: var(--bg-light);
  overflow: hidden;
}

.timeline-container {
  position: relative;
  margin-top: 60px;
  padding: 20px 0;
}

.timeline-bar {
  position: absolute;
  top: 88px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--border-light);
  z-index: 1;
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--secondary-cyan) 0%, var(--accent-gold) 100%);
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.timeline-step-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.timeline-card-pill {
  display: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.timeline-node {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--white);
  border: 4px solid var(--border-light);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 30px;
  transition: var(--transition-smooth);
}

.timeline-step.active .timeline-node {
  border-color: var(--accent-gold);
  background-color: var(--primary-navy);
  color: var(--white);
  box-shadow: 0 0 0 6px rgba(210, 156, 35, 0.25);
}

.timeline-step-card {
  background-color: var(--white);
  padding: 24px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--box-shadow-subtle);
  width: 100%;
  flex-grow: 1;
}

.timeline-step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.timeline-step-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .timeline-bar {
    display: none;
  }
  .timeline-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
  }
  .timeline-grid::before {
    content: '';
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 23px;
    width: 2px;
    background: rgba(0, 37, 88, 0.12);
    z-index: 1;
  }
  .timeline-step {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    position: relative;
    z-index: 2;
  }
  .timeline-step-badge {
    display: none;
  }
  .timeline-card-pill {
    display: inline-block;
  }
  .timeline-node {
    margin-bottom: 0;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    font-size: 1.05rem;
    background-color: var(--white);
    border: 3px solid rgba(0, 37, 88, 0.15);
    color: var(--primary-navy);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  }
  .timeline-step.active .timeline-node {
    border-color: var(--accent-gold);
    background-color: var(--primary-navy);
    color: var(--white);
    box-shadow: 0 0 0 5px rgba(210, 156, 35, 0.2);
  }
  .timeline-step-card {
    flex-grow: 1;
    padding: 20px 22px;
    border-radius: var(--border-radius-md);
    background-color: var(--white);
    border: 1px solid rgba(0, 37, 88, 0.08);
    box-shadow: 0 4px 16px rgba(0, 37, 88, 0.04);
  }
  .timeline-step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--primary-navy);
  }
  .timeline-step-card p {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text-muted);
  }
}

/* ==========================================
   REPORT PREVIEW SECTION
   ========================================== */
.report-section {
  background-color: var(--white);
}

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

.report-visual-wrapper {
  position: relative;
  height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Mockup Document */
.report-mockup-doc {
  width: 300px;
  height: 420px;
  border-radius: var(--border-radius-md);
  background-color: var(--white);
  box-shadow: var(--box-shadow-premium);
  border: 1px solid var(--border-light);
  padding: 30px 24px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.report-mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.report-mockup-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary-navy);
}

.report-mockup-logo span {
  color: var(--secondary-cyan);
}

.report-mockup-badge {
  font-size: 0.65rem;
  padding: 4px 10px;
  background-color: rgba(22, 169, 224, 0.08);
  color: var(--primary-navy-light);
  border-radius: 20px;
  font-weight: 600;
}

.report-mockup-title-box {
  margin-bottom: 24px;
}

.report-mockup-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.report-mockup-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.report-mockup-divider {
  height: 2px;
  background-color: var(--bg-light);
  margin-bottom: 24px;
}

.report-mockup-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.report-mockup-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.report-mockup-row-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.report-mockup-bar-outer {
  width: 120px;
  height: 8px;
  background-color: var(--border-light);
  border-radius: 4px;
  overflow: hidden;
}

.report-mockup-bar-inner {
  height: 100%;
  background-color: var(--secondary-cyan);
  border-radius: 4px;
}

.report-mockup-bar-inner.gold {
  background-color: var(--accent-gold);
}

.report-mockup-chart {
  margin-top: 15px;
  height: 100px;
  border-bottom: 2px solid var(--border-light);
  border-left: 2px solid var(--border-light);
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  padding: 10px;
}

.report-mockup-bar-vertical {
  width: 20px;
  background-color: var(--primary-navy-light);
  border-radius: 4px 4px 0 0;
  transition: var(--transition-smooth);
}

.report-mockup-bar-vertical.v1 { height: 60%; }
.report-mockup-bar-vertical.v2 { height: 80%; background-color: var(--secondary-cyan); }
.report-mockup-bar-vertical.v3 { height: 45%; }
.report-mockup-bar-vertical.v4 { height: 90%; background-color: var(--accent-gold); }

/* Report floating cards */
.report-float-card {
  position: absolute;
  z-index: 3;
  padding: 12px 16px;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(210, 156, 35, 0.25);
  border-radius: var(--border-radius-md);
  box-shadow: 0 10px 25px -5px rgba(210, 156, 35, 0.12);
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: floatSlow 8s ease-in-out infinite;
}

.report-float-1 {
  top: 12%;
  left: 0;
  animation-delay: 0s;
}

.report-float-2 {
  top: 45%;
  right: 0;
  animation-delay: 2s;
}

.report-float-3 {
  bottom: 8%;
  left: 10%;
  animation-delay: 4s;
}

.report-float-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.report-float-val {
  font-size: 0.75rem;
  color: var(--secondary-cyan);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .report-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .report-visual-wrapper {
    max-width: 450px;
    margin: 0 auto;
  }
}

/* ==========================================
   WHO IS IT FOR SECTION
   ========================================== */
.who-section {
  background-color: var(--bg-light);
}

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

.who-card {
  display: flex;
  gap: 24px;
  padding: 32px;
  border-radius: var(--border-radius-lg);
  background-color: var(--white);
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

.who-card:hover {
  transform: translateY(-6px);
  border-color: rgba(22, 169, 224, 0.2);
  box-shadow: var(--box-shadow-hover);
}

.who-card-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-md);
  background-color: rgba(15, 53, 102, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-navy);
  flex-shrink: 0;
}

.who-card-icon {
  width: 24px;
  height: 24px;
}

.who-card-content h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.who-card-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .who-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .who-card {
    flex-direction: column;
    gap: 16px;
  }
}

/* ==========================================
   AGENT OPPORTUNITY TRANSITION
   ========================================== */
.agent-intro-section {
  background: linear-gradient(135deg, var(--primary-navy-dark) 0%, var(--primary-navy) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.agent-intro-bg-glow {
  position: absolute;
  top: -50%;
  left: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(22, 169, 224, 0.1) 0%, rgba(22, 169, 224, 0) 75%);
  z-index: 1;
}

.agent-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 2;
}

.agent-intro-content {
  max-width: 500px;
}

.agent-intro-content h2 {
  color: var(--white);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}

.agent-intro-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.agent-intro-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.agent-intro-visual {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow-premium);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: var(--primary-navy-dark);
}

.agent-vector-mockup {
  width: 100%;
  height: 380px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(15, 53, 102, 0.9) 0%, rgba(22, 169, 224, 0.1) 100%);
}

.agent-vector-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.agent-vector-pill {
  padding: 6px 12px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.agent-vector-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  height: 200px;
  position: relative;
}

.agent-vector-center::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary-cyan) 0%, var(--accent-gold) 100%);
  opacity: 0.3;
  z-index: 1;
}

.agent-vector-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--secondary-cyan);
  background-color: #051d3b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 0 20px rgba(22, 169, 224, 0.3);
  position: relative;
  z-index: 2;
}

.agent-vector-scanner {
  width: 90px;
  height: 90px;
  border-radius: var(--border-radius-md);
  border: 2px dashed var(--accent-gold);
  background-color: #051d3b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  position: relative;
  z-index: 2;
  animation: pulseGlow 3s ease-in-out infinite;
}

.agent-vector-scan-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-gold);
  box-shadow: 0 0 10px var(--accent-gold);
  animation: scanVertically 2s ease-in-out infinite;
}

.agent-vector-footer {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

@keyframes scanVertically {
  0%, 100% { top: 10%; }
  50% { top: 90%; }
}

@media (max-width: 1024px) {
  .agent-intro-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .agent-intro-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .agent-intro-content h2 {
    font-size: 2.25rem;
  }
  .agent-intro-ctas {
    flex-direction: column;
    gap: 12px;
  }
  .agent-intro-ctas .btn {
    width: 100%;
  }
}

/* ==========================================
   AGENT OPPORTUNITY BENEFITS
   ========================================== */
.agent-opp-section {
  background-color: var(--white);
}

.agent-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.agent-benefit-card {
  padding: 30px 24px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
  background-color: var(--bg-light);
}

.agent-benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(220, 168, 45, 0.3);
  box-shadow: var(--box-shadow-hover);
  background-color: var(--white);
}

.agent-benefit-card-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-sm);
  background-color: rgba(220, 168, 45, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.agent-benefit-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.agent-benefit-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

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

@media (max-width: 768px) {
  .agent-benefit-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   AGENT JOURNEY TIMELINE
   ========================================== */
.agent-journey-section {
  background-color: var(--bg-light);
  overflow: hidden;
}

.agent-journey-timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 60px 0;
  position: relative;
}

.agent-journey-line {
  position: absolute;
  top: 30px;
  left: 10%;
  width: 80%;
  height: 2px;
  background-color: var(--border-light);
  z-index: 1;
}

.agent-journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  flex: 1;
  text-align: center;
}

.agent-journey-node {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--white);
  border: 3px solid var(--border-light);
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 16px;
  box-shadow: var(--box-shadow-subtle);
  transition: var(--transition-smooth);
}

.agent-journey-step:hover .agent-journey-node {
  border-color: var(--accent-gold);
  transform: scale(1.1);
  box-shadow: 0 0 0 6px rgba(220, 168, 45, 0.15);
}

.agent-journey-step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-navy);
}

@media (max-width: 768px) {
  .agent-journey-timeline {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    margin: 40px 0;
  }
  .agent-journey-line {
    top: 0;
    left: 30px;
    width: 2px;
    height: 90%;
  }
  .agent-journey-step {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    text-align: left;
    width: 100%;
  }
  .agent-journey-node {
    margin-bottom: 0;
  }
}

/* ==========================================
   FINAL CTA
   ========================================== */
.final-cta-section {
  background-color: var(--white);
}

.final-cta-card {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
  color: var(--white);
  padding: 80px 40px;
  border-radius: var(--border-radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--box-shadow-premium);
}

.final-cta-bg-fingerprint {
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 350px;
  height: 420px;
  opacity: 0.1;
  fill: var(--white);
  z-index: 1;
}

.final-cta-sparkle {
  position: absolute;
  color: var(--accent-gold);
  opacity: 0.8;
  z-index: 1;
  animation: pulseGlow 3s ease-in-out infinite;
}

.final-cta-sparkle-1 { top: 20%; left: 10%; font-size: 1.5rem; }
.final-cta-sparkle-2 { bottom: 20%; right: 20%; font-size: 1.25rem; animation-delay: 1.5s; }

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 0 auto;
}

.final-cta-card h2 {
  color: var(--white);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.final-cta-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  margin-bottom: 40px;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .final-cta-card {
    padding: 60px 24px;
  }
  .final-cta-card h2 {
    font-size: 2.25rem;
  }
  .final-cta-actions {
    flex-direction: column;
    gap: 12px;
  }
  .final-cta-actions .btn {
    width: 100%;
  }
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
  background-color: var(--primary-navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-brand-desc {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links-col h3 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-link:hover {
  color: var(--secondary-cyan);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.85rem;
}

.footer-socials {
  display: flex;
  gap: 20px;
}

.footer-social-link {
  color: rgba(255, 255, 255, 0.65);
}

.footer-social-link:hover {
  color: var(--secondary-cyan);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* ==========================================
   SCROLL REVEAL ANIMATIONS
   ========================================== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.is-in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    .scroll-reveal {
      animation: reveal-in auto linear forwards;
      animation-timeline: view();
      animation-range: entry 5% cover 30%;
    }
    
    @keyframes reveal-in {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
  }
}

/* ==========================================
   ANIMATIONS & CTA PULSE
   ========================================== */
@keyframes cta-pulse-anim {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(245, 158, 11, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
  }
}

.cta-pulse {
  animation: cta-pulse-anim 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.cta-pulse:hover {
  animation: none;
}

/* ==========================================
   SLIM FLOATING AGENT FINDER BAR (HOME)
   ========================================== */
.sticky-agent-finder-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(140%);
  width: calc(100% - 32px);
  max-width: 520px;
  background: rgba(0, 24, 60, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 32px -4px rgba(0, 18, 43, 0.5);
  border-radius: 50px;
  padding: 8px 10px 8px 18px;
  z-index: 9999;
  box-sizing: border-box;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.sticky-agent-finder-bar.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.finder-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.finder-left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.finder-pin-icon {
  font-size: 1.05rem;
  flex-shrink: 0;
  line-height: 1;
}

.finder-text {
  color: #FFFFFF;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.finder-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 800;
  background: #D29C23;
  color: #00122B;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(210, 156, 35, 0.35);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.finder-btn:hover {
  background: #E9AF2B;
  transform: scale(1.03);
}

@media (max-width: 480px) {
  .sticky-agent-finder-bar {
    width: calc(100% - 24px);
    bottom: 12px;
    padding: 7px 8px 7px 14px;
    border-radius: 50px;
  }

  .finder-text {
    font-size: 0.84rem;
  }

  .finder-btn {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
}


