/* ===== FLD Holdings - Global Styles ===== */
/* Inspired by Reference Site - Clean, Premium, Rounded */

/* === CSS Custom Properties === */
:root {
  /* Brand Colors */
  --primary: #334e87;
  --primary-light: #5777bb;
  --accent: #E7EAF4;
  --dark: #0c1019;
  --dark-light: #373e4e;
  --white: #ffffff;
  --gray-50: #f8f9fb;
  --gray-100: #f1f3f7;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-600: #6c757d;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 100px;
  --container-width: 1200px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* === Reset & Base === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--gray-50);
  line-height: 1.7;
  overflow-x: hidden;
  font-weight: 500;
}

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

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

ul {
  list-style: none;
}

/* === Typography === */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--dark);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
  font-size: 1.05rem;
  color: var(--dark-light);
  font-weight: 500;
}

.lead {
  font-size: 1.15rem;
  line-height: 1.8;
}

/* === Layout === */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: var(--section-padding) 0;
}

/* === Navigation === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(248, 249, 251, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all var(--transition-smooth);
}

.navbar.scrolled {
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.navbar .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

@media (max-width: 768px) {
  .navbar .container {
    display: flex;
    justify-content: space-between;
  }
}

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

.logo img {
  height: 36px;
  width: auto;
}

.logo span {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  grid-column: 2;
  justify-self: center;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-light);
}

.btn-header {
  grid-column: 3;
  justify-self: end;
  background: var(--primary-light);
  color: var(--white) !important;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: all var(--transition-smooth);
}

.btn-header:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(51, 78, 135, 0.2);
}

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

  .nav-links {
    display: flex;
    /* Restore flex for mobile menu */
    position: fixed;
    /* Keep existing mobile styles applied via other rules, but ensure display is flex */
  }
}

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

.nav-cta {
  background: var(--primary-light);
  color: var(--white) !important;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: all var(--transition-smooth);
}

.nav-cta:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all var(--transition-fast);
}

/* === Dropdown Menu === */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  background: var(--white);
  min-width: 300px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-fast);
  z-index: 1000;
  border: 1px solid var(--gray-200);
}

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

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  color: var(--dark-light);
  font-weight: 500;
  transition: all var(--transition-fast);
  font-size: 0.9rem;
}

.dropdown-menu a:hover {
  background: var(--gray-50);
  color: var(--primary);
  padding-left: 28px;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropdown-toggle::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.6;
}

/* Mobile Dropdown */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: block;
    max-height: 0;
    overflow: hidden;
    background: transparent;
    border: none;
    margin-top: 0;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), margin-top 0.4s ease;
  }

  .dropdown.active .dropdown-menu {
    max-height: 500px;
    margin-top: 10px;
  }

  .dropdown-menu a {
    padding: 12px 0 12px 20px;
    font-size: 0.9rem;
  }

  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }
}

/* === Hero Section === */
.hero {
  padding-top: 120px;
  padding-bottom: 60px;
  background: var(--gray-50);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  min-height: 500px;
}

.hero-content {
  background: var(--accent);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--dark-light);
  margin-bottom: 24px;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero p {
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--accent);
}

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

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

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

.btn-primary:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(87, 119, 187, 0.3);
}

.btn-outline {
  background: var(--white);
  color: var(--dark);
  border: 1px solid var(--gray-200);
}

.btn-outline:hover {
  background: var(--gray-100);
  border-color: var(--gray-300);
}

.btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* === Cards === */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all var(--transition-smooth);
  border: 1px solid transparent;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(51, 78, 135, 0.08);
  border-color: var(--accent);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

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

.card h3 {
  margin-bottom: 12px;
}

.card p {
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.card-link {
  font-weight: 600;
  color: var(--primary-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
}

.card-link:hover {
  color: var(--primary);
  gap: 10px;
}

/* === Section Headers === */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--dark-light);
  margin-bottom: 12px;
}

/* === Service Sections === */
.service-section {
  padding: 80px 0;
}

.service-section:nth-child(odd) {
  background: var(--white);
}

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

.service-text {
  position: sticky;
  top: 100px;
}

.service-text h2 {
  margin-bottom: 16px;
}

.service-text>p {
  margin-bottom: 32px;
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  transition: all var(--transition-smooth);
}

.feature-item:hover {
  background: var(--accent);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary-light);
}

.feature-text h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 0.9rem;
  margin: 0;
}

.service-sidebar {
  position: sticky;
  top: 100px;
}

.highlight-box {
  background: var(--primary);
  color: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
}

.highlight-box h3 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 1.25rem;
}

.highlight-box p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.highlight-box ul {
  margin-top: 16px;
}

.highlight-box ul li {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.highlight-box ul li::before {
  content: '✓';
  font-weight: 700;
}

.info-card {
  background: var(--accent);
  padding: 28px;
  border-radius: var(--radius-lg);
  margin-top: 16px;
}

.info-card h4 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.info-card p {
  font-size: 0.9rem;
}

.price-tag {
  display: inline-block;
  background: var(--white);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: 12px;
}

/* JV Revenue Share */
.jv-terms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.jv-box {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
}

.jv-box .percentage {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
}

.jv-box .label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

/* === Stats Section === */
.stats-section {
  background: var(--primary);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 4px;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

/* === CTA Section === */
.cta-section {
  text-align: center;
  background: var(--accent);
  padding: 80px 0;
  border-radius: var(--radius-lg);
  margin: 60px 24px;
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  max-width: 500px;
  margin: 0 auto 32px;
}

/* === About Page === */
.page-hero {
  padding-top: 180px;
  padding-bottom: 100px;
  background-color: var(--dark);
  background-size: cover;
  background-position: center;
  position: relative;
  color: var(--white);
  overflow: hidden;
  margin-bottom: 0;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(12, 16, 25, 0.9), rgba(12, 16, 25, 0.6));
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 16px;
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  font-size: 1.25rem;
}

.page-hero .section-tag {
  color: var(--primary-light);
  background: rgba(87, 119, 187, 0.1);
  padding: 6px 12px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  margin-bottom: 16px;
  display: inline-block;
}

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

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 16px;
}

.stat-box {
  background: var(--accent);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
}

.stat-box h3 {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-box p {
  font-size: 1.1rem;
  color: var(--dark);
}

.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 60px;
}

.vm-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
}

.vm-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

/* === Team Section === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.team-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  transition: all var(--transition-smooth);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(51, 78, 135, 0.08);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}

.team-card h4 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.team-card p {
  color: var(--primary-light);
  font-size: 0.9rem;
}

/* === Contact Page === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
}

.contact-form h3 {
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  transition: border-color var(--transition-fast);
  background: var(--gray-50);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  background: var(--white);
}

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

.contact-info h3 {
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
}

.contact-details h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-details p {
  font-size: 0.95rem;
}

.contact-details a {
  color: var(--dark-light);
}

.contact-details a:hover {
  color: var(--primary);
}

.hours-box {
  margin-top: 32px;
  padding: 24px;
  background: var(--accent);
  border-radius: var(--radius-md);
}

.hours-box h4 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.hours-box p {
  font-size: 0.9rem;
  margin-bottom: 6px;
}

/* === Footer === */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 32px;
  margin-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 16px;
  max-width: 280px;
  font-size: 0.9rem;
}

.footer h4 {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  padding: 6px 0;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

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

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

/* === Animations === */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Responsive Design === */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .hero-grid,
  .service-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-sidebar {
    position: relative;
    top: 0;
  }

  .service-text {
    position: static;
  }

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

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

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

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 100px 32px;
    gap: 20px;
    transition: right var(--transition-smooth);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    align-items: flex-start;
  }

  .nav-links.active {
    right: 0;
  }

  .menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-content {
    padding: 40px;
  }

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

  .contact-grid,
  .vision-mission {
    grid-template-columns: 1fr;
  }

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

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .jv-terms {
    grid-template-columns: 1fr;
  }

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

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

  .cta-section {
    margin: 40px 16px;
    padding: 60px 24px;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .btn-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-group .btn {
    width: 100%;
  }

  .card {
    padding: 32px 24px;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .highlight-box {
    padding: 28px;
  }
}

/* === Pro Max UI Enhancements === */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 20px;
  background: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(51, 78, 135, 0.1);
  backdrop-filter: blur(10px);
}

.page-hero .section-tag {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(51, 78, 135, 0.12);
}



/* === Pro Max Overrides === */
body {
  background-color: var(--gray-50);
  background-image: linear-gradient(180deg, #FAFAFA 0%, #EFF1F5 100%);
  font-weight: 400;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: overlay;
}

.card-icon {
  width: 58px;
  height: 58px;
  background: rgba(87, 119, 187, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-bottom: 24px;
  color: var(--primary);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover .card-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1) rotate(3deg);
  box-shadow: 0 10px 20px rgba(51, 78, 135, 0.2);
}


/* === Mobile Nav Fix === */
@media (max-width: 768px) {
  .nav-cta {
    display: none;
  }
}


/* === Dropdown Icon Fix === */
.dropdown-toggle::after {
  display: none !important;
}

.dropdown-icon {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.dropdown.active .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-toggle:hover .dropdown-icon path {
  stroke: var(--primary);
}

/* === Service Leadership Team === */
.team-section {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

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

.team-card {
  text-align: center;
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-smooth);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(51, 78, 135, 0.08);
  border-color: var(--primary-light);
}

.team-photo {
  width: 140px;
  height: 140px;
  margin: 0 auto 24px;
  position: relative;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
  border: 4px solid var(--gray-50);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
}

.team-photo-placeholder {
  width: 100%;
  height: 100%;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 2rem;
  border: 4px solid var(--gray-50);
}

.team-info h3 {
  color: var(--dark);
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.team-info p {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0;
}

/* === Revenue Share Box === */
.revenue-share-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--white);
}

.revenue-header {
  background: linear-gradient(135deg, #334e87, #5777bb);
  padding: 24px 24px 20px;
  text-align: center;
}

.revenue-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.15);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.revenue-header h3 {
  color: #fff;
  margin: 0 0 4px;
  font-size: 1.15rem;
  font-weight: 700;
}

.revenue-header p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-size: 0.78rem;
}

.revenue-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.revenue-note {
  font-size: 0.72rem;
  color: var(--gray-500);
  background: var(--gray-50);
  padding: 8px 12px;
  border-radius: 8px;
  line-height: 1.5;
  font-style: italic;
  margin: 0;
}

/* --- Rev Terms --- */
.rev-terms {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rev-term-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--gray-50);
  border-radius: 12px;
}

.rev-term-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  border: 1px solid var(--gray-200);
}

.rev-term-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.rev-term-value {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

/* --- Split Card --- */
.rev-split-card {
  padding: 16px;
  background: var(--gray-50);
  border-radius: 12px;
}

.split-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 10px;
}

.split-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
}

.split-ratio {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
}

.split-divider {
  color: var(--gray-400);
  font-weight: 400;
  margin: 0 1px;
}

/* --- Progress Bar --- */
.tier-bar {
  height: 10px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--gray-200);
}

.bar-fill {
  height: 100%;
  border-radius: 6px;
  transition: width 0.6s ease;
}

.rev-fill {
  background: linear-gradient(90deg, var(--primary), #5777bb);
}

.bar-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 6px;
  color: var(--gray-500);
}