/* ============================================
   Plutus Investment Group — Design System
   ============================================ */

:root {
  --plutus-navy: #050937;
  --plutus-navy-light: #151A4E;
  --plutus-navy-mid: #0B1042;
  --plutus-gold: #2F67D8;
  --plutus-gold-light: #DCE6FF;
  --plutus-gold-dark: #050937;
  --plutus-white: #F7F8FC;
  --plutus-white-pure: #FFFFFF;
  --plutus-gray: #7A8296;
  --plutus-gray-light: #DDE2EE;
  --plutus-gray-dark: #465068;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-med: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base Typography --- */
body {
  font-family: var(--font-body);
  color: var(--plutus-navy);
  background: var(--plutus-white-pure);
  overflow-x: hidden;
}

html,
body,
body.plutus-theme #page {
  max-width: 100%;
  overflow-x: hidden;
}

body.plutus-theme #content > .ast-container {
  display: block;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

body.plutus-theme #content > .ast-container::before,
body.plutus-theme #content > .ast-container::after {
  content: none;
}

body.plutus-theme .site-content section > .ast-container {
  display: block;
  width: 100%;
  max-width: var(--ast-normal-container-width, 1200px);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
}

/* --- Section Alternating Colors --- */
.section-dark {
  background-color: var(--plutus-navy);
  color: var(--plutus-white);
}
.section-dark h1, .section-dark h2, .section-dark h3 {
  color: var(--plutus-white);
}
.section-dark .gold-accent {
  color: var(--plutus-gold);
}

.section-light {
  background-color: var(--plutus-white);
  color: var(--plutus-navy);
}
.section-light h2 {
  color: var(--plutus-navy);
}

.about-philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-philosophy-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.12);
}

.about-philosophy-image img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}

/* --- Gold Separator --- */
.sep-gold {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--plutus-gold);
  margin: 1.5rem 0;
}
.sep-gold.center {
  margin: 1.5rem auto;
}
.sep-gold.light {
  background: var(--plutus-gold-light);
}

/* ============================================
   HERO SECTION
   ============================================ */
.plutus-hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--plutus-white-pure) 0%, #F8FAFF 48%, #EEF3FF 100%);
}

.plutus-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 9, 55, 0.05) 0%, transparent 44%),
    linear-gradient(180deg, rgba(47, 103, 216, 0.08) 0%, transparent 58%);
  z-index: 1;
}

.plutus-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
}

.plutus-hero .hero-tagline {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--plutus-gold-dark);
  margin-bottom: 1rem;
}

.plutus-hero .hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--plutus-navy);
  margin-bottom: 1.5rem;
}

.plutus-hero .hero-title .gold-text {
  color: var(--plutus-gold);
  font-style: italic;
}

.plutus-hero .hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--plutus-gray-dark);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.plutus-hero .hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--plutus-navy);
  color: var(--plutus-white-pure);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.plutus-hero .hero-cta:hover {
  background: var(--plutus-navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(5, 9, 55, 0.22);
}

/* Hero Floating Orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  display: none;
}
.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(47, 103, 216, 0.08) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: floatOrb 20s ease-in-out infinite;
}
.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(47, 103, 216, 0.06) 0%, transparent 70%);
  bottom: -50px;
  left: -50px;
  animation: floatOrb 25s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  top: 50%;
  right: 20%;
  animation: floatOrb 15s ease-in-out infinite;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(20px, 30px) scale(1.02); }
}

/* Hero scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--plutus-gray);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 1.5s both;
}

.hero-scroll-indicator .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--plutus-navy), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.5); }
}

/* ============================================
   VALUE CARDS
   ============================================ */
.value-card {
  padding: 2.5rem 2rem;
  background: var(--plutus-white-pure);
  border: 1px solid var(--plutus-gray-light);
  border-radius: 8px;
  transition: var(--transition-med);
  position: relative;
  overflow: hidden;
}

.section-dark .value-card {
  background: var(--plutus-navy-mid);
  border-color: rgba(220, 230, 255, 0.16);
}

.value-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--plutus-gold);
  transition: var(--transition-med);
}

.value-card:hover::after {
  height: 100%;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.1);
}

.section-dark .value-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border-color: rgba(220, 230, 255, 0.32);
}

.value-card .card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(5, 9, 55, 0.08);
}

.section-dark .value-card .card-icon {
  background: rgba(220, 230, 255, 0.14);
}

.value-card .card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--plutus-gold);
}

.value-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.value-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--plutus-gray-dark);
}

.section-dark .value-card p {
  color: var(--plutus-gray-light);
}

/* ============================================
   NEWS CARDS
   ============================================ */
.news-section {
  padding: 5rem 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.news-card {
  background: var(--plutus-white-pure);
  border: 1px solid var(--plutus-gray-light);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-med);
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.1);
}

.news-card-link {
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.5rem;
  text-decoration: none;
}

.news-card-link:hover,
.news-card-link:focus {
  color: inherit;
}

.news-meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}

.news-date {
  color: var(--plutus-gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.news-category {
  background: rgba(47, 103, 216, 0.12);
  border-radius: 999px;
  color: var(--plutus-navy);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
}

.news-card h3 {
  font-size: 1.2rem;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.news-card p {
  color: var(--plutus-gray-dark);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.news-source {
  color: var(--plutus-gold-dark);
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: auto;
}

/* ============================================
   STATS COUNTER
   ============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--plutus-gold);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.stat-number .stat-suffix {
  font-size: 0.6em;
  font-weight: 400;
  color: var(--plutus-gold-light);
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--plutus-gray-light);
  letter-spacing: 0.05em;
}

/* ============================================
   PORTFOLIO GRID
   ============================================ */
.plutus-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.portfolio-card {
  position: relative;
  background: var(--plutus-white-pure);
  border: 1px solid var(--plutus-gray-light);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-med);
  cursor: pointer;
}

.portfolio-card .card-image {
  width: 100%;
  height: 180px;
  object-fit: contain;
  padding: 1.5rem;
  background: #FAFAF7;
  border-bottom: 1px solid var(--plutus-gray-light);
}

.portfolio-card.logo-on-dark .card-image {
  background: var(--plutus-navy);
}

.portfolio-card .card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.portfolio-card .card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.tag-life-science { background: rgba(52, 199, 89, 0.1); color: #34C759; }
.tag-biotech { background: rgba(0, 122, 255, 0.1); color: #007AFF; }
.tag-fintech { background: rgba(255, 149, 0, 0.1); color: #FF9500; }
.tag-tech { background: rgba(90, 200, 250, 0.1); color: #5AC8FA; }
.tag-defense { background: rgba(132, 94, 247, 0.12); color: #7657D9; }

.portfolio-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.portfolio-card p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--plutus-gray-dark);
}

.portfolio-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--plutus-gold-dark);
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition-fast);
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.12);
}

.portfolio-card:hover .card-link {
  opacity: 1;
  transform: translateY(0);
}

/* Filter Buttons */
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  width: 100%;
}

.portfolio-filters button {
  padding: 0.6rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--plutus-gray-light);
  background: transparent;
  color: var(--plutus-gray-dark);
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.section-dark .portfolio-filters button {
  color: var(--plutus-gray-light);
  border-color: rgba(255, 255, 255, 0.15);
}

.portfolio-filters button:hover {
  border-color: var(--plutus-gold);
  color: var(--plutus-gold);
}

.portfolio-filters button.active {
  background: var(--plutus-gold);
  border-color: var(--plutus-gold);
  color: var(--plutus-navy);
}

/* ============================================
   TEAM CARDS
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.team-card {
  background: var(--plutus-white-pure);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-med);
  cursor: pointer;
}

.section-dark .team-card {
  background: var(--plutus-navy-mid);
}

.team-card .team-image-wrap {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.team-card .team-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-med);
}

.team-card:hover .team-image-wrap img {
  transform: scale(1.05);
}

.team-card .team-info {
  padding: 1.5rem;
}

.team-card .team-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.team-card .team-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--plutus-gold);
  margin-bottom: 0.75rem;
}

.team-card .team-bio-preview {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--plutus-gray-dark);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.section-dark .team-card .team-bio-preview {
  color: var(--plutus-gray-light);
}

.section-dark .team-card .team-bio-full,
.section-dark .team-card .team-bio-full p {
  color: var(--plutus-gray-light);
}

.section-dark .team-card .bio-toggle {
  color: var(--plutus-gold-light);
}

.team-card .team-bio-full {
  display: none;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--plutus-gray-dark);
  padding: 0 1.5rem 1.5rem;
}

.team-card.expanded .team-bio-preview {
  display: none;
}

.team-card.expanded .team-bio-full {
  display: block;
}

.team-card .bio-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--plutus-gold-dark);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-body);
  transition: var(--transition-fast);
}

.team-card .bio-toggle:hover {
  color: var(--plutus-gold);
}

.team-card .bio-toggle .toggle-icon {
  transition: var(--transition-fast);
}

.team-card.expanded .bio-toggle .toggle-icon {
  transform: rotate(180deg);
}

/* ============================================
   HOW WE HELP — Steps
   ============================================ */
.help-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(5, 9, 55, 0.12);
}

.help-step:last-child {
  border-bottom: none;
}

.help-step .step-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--plutus-gold);
  line-height: 1;
  min-width: 3rem;
}

.help-step .step-content h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.help-step .step-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--plutus-gray-dark);
}

.section-dark .help-step .step-content p {
  color: var(--plutus-gray-light);
}

/* ============================================
   LOGO MARQUEE
   ============================================ */
.logo-marquee {
  overflow: hidden;
  padding: 2rem 0;
  position: relative;
}

.logo-marquee::before,
.logo-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--plutus-navy), transparent);
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--plutus-navy), transparent);
}

.logo-marquee.dark-bg::before {
  background: linear-gradient(to right, var(--plutus-navy), transparent);
}
.logo-marquee.dark-bg::after {
  background: linear-gradient(to left, var(--plutus-navy), transparent);
}

.logo-marquee.light-bg::before {
  background: linear-gradient(to right, var(--plutus-white), transparent);
}
.logo-marquee.light-bg::after {
  background: linear-gradient(to left, var(--plutus-white), transparent);
}

.logo-marquee-track {
  display: flex;
  gap: 4rem;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.logo-marquee-track img,
.logo-marquee-track .marquee-logo {
  height: 40px;
  width: auto;
  opacity: 0.5;
  filter: brightness(0) invert(1);
  transition: var(--transition-fast);
}

.logo-marquee.light-bg .logo-marquee-track img,
.logo-marquee.light-bg .logo-marquee-track .marquee-logo {
  filter: none;
  opacity: 0.4;
}

.logo-marquee-track img:hover,
.logo-marquee-track .marquee-logo:hover {
  opacity: 1;
}

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

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--plutus-gray-dark);
}

.section-dark .section-header p {
  color: var(--plutus-gray-light);
}

.section-header.left {
  text-align: left;
  margin-left: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--plutus-navy) 0%, var(--plutus-navy-light) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0%, transparent 58%);
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--plutus-white);
  margin-bottom: 1rem;
  position: relative;
}

.cta-section p {
  color: var(--plutus-gray-light);
  max-width: 500px;
  margin: 0 auto 2rem;
  position: relative;
}

.cta-section .btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--plutus-gold);
  color: var(--plutus-white-pure);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: var(--transition-fast);
  position: relative;
}

.cta-section .btn-gold:hover {
  background: var(--plutus-gold-light);
  color: var(--plutus-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(47, 103, 216, 0.24);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children > .reveal,
.stagger-children > * > .reveal {
  transition-delay: calc(var(--i, 0) * 0.15s);
}

/* ============================================
   NAVBAR OVERRIDES
   ============================================ */
.plutus-site-header {
  background: rgba(255, 255, 255, 0.97) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(5, 9, 55, 0.1);
  box-shadow: 0 8px 24px rgba(5, 9, 55, 0.05);
  left: 0;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 999;
}

.admin-bar .plutus-site-header {
  top: 32px;
}

.plutus-header-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--ast-normal-container-width, 1200px);
  min-height: 78px;
  padding: 0 2rem;
  width: 100%;
}

.plutus-header-logo {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  text-decoration: none;
}

.plutus-header-logo img {
  height: auto;
  max-height: 70px;
  width: 70px;
}

.plutus-header-nav {
  align-items: center;
  display: flex;
  gap: 1.8rem;
}

.plutus-header-nav a {
  color: var(--plutus-navy-light);
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.plutus-header-nav a:hover,
.plutus-header-nav a:focus,
.plutus-header-nav a.is-active {
  color: var(--plutus-gold);
}

.plutus-header-nav .plutus-nav-cta {
  border: 1px solid rgba(5, 9, 55, 0.22);
  border-radius: 4px;
  color: var(--plutus-navy);
  padding: 0.65rem 1rem;
}

.plutus-header-nav .plutus-nav-cta:hover,
.plutus-header-nav .plutus-nav-cta:focus {
  background: var(--plutus-navy);
  color: var(--plutus-white-pure);
}

.plutus-nav-toggle {
  align-items: center;
  background: transparent !important;
  border: 0 !important;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

#masthead.plutus-site-header {
  background: rgba(255, 255, 255, 0.97) !important;
}

.plutus-nav-toggle span:not(.screen-reader-text) {
  background: var(--plutus-navy);
  display: block;
  height: 2px;
  transition: var(--transition-fast);
  width: 22px;
}

.plutus-mobile-menu-open .plutus-nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.plutus-mobile-menu-open .plutus-nav-toggle span:nth-child(2) {
  opacity: 0;
}

.plutus-mobile-menu-open .plutus-nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.plutus-theme .elementor-location-header,
body.plutus-theme .elementor-location-footer,
body.plutus-theme .hfe-header,
body.plutus-theme .hfe-footer,
body.plutus-theme .hfe-before-footer-wrap,
body.plutus-theme .site-above-footer-wrap,
body.plutus-theme .site-primary-footer-wrap,
body.plutus-theme .site-below-footer-wrap,
body.plutus-theme .ast-footer-copyright {
  display: none !important;
}

#masthead .ast-primary-header-bar,
.ast-primary-header,
.main-header-bar-wrap .main-header-bar,
.ast-desktop .ast-primary-header-bar.main-header-bar {
  background: rgba(255, 255, 255, 0.97) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(5, 9, 55, 0.1) !important;
}

#masthead,
.main-header-bar-wrap {
  background: transparent !important;
}

.site-header .main-header-container .widget,
.site-header .main-header-bar {
  background: transparent !important;
}

.ast-primary-header .main-header-menu > li > a,
.main-header-menu .menu-link {
  color: var(--plutus-navy-light) !important;
  font-family: var(--font-body);
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em;
  transition: var(--transition-fast);
}

.ast-primary-header .main-header-menu > li > a:hover,
.main-header-menu .menu-link:hover {
  color: var(--plutus-gold) !important;
}

.ast-primary-header .main-header-menu .current-menu-item > a,
.main-header-menu .current-menu-item > .menu-link {
  color: var(--plutus-gold) !important;
}

.ast-primary-header .ast-site-logo img,
.site-logo-img img {
  width: 180px;
}

.ast-header-break-point .main-header-bar,
.main-header-bar {
  background: rgba(255, 255, 255, 0.97) !important;
}

.ast-header-break-point .ast-primary-header-bar {
  background: rgba(255, 255, 255, 0.97) !important;
}

/* ============================================
   FOOTER
   ============================================ */
.plutus-footer {
  background: var(--plutus-white-pure);
  border-top: 1px solid rgba(5, 9, 55, 0.1);
  color: var(--plutus-gray-dark);
  padding: 4rem 0 2rem;
}

.plutus-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.plutus-footer .footer-brand img {
  height: 96px;
  margin-bottom: 1rem;
}

.plutus-footer .footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 280px;
}

.plutus-footer h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--plutus-navy);
  margin-bottom: 1.25rem;
}

.plutus-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plutus-footer ul li {
  margin-bottom: 0.75rem;
}

.plutus-footer ul li a {
  color: var(--plutus-gray-dark);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.plutus-footer ul li a:hover {
  color: var(--plutus-gold);
}

.plutus-footer .footer-address p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 0.25rem;
}

.plutus-footer .footer-bottom {
  border-top: 1px solid rgba(5, 9, 55, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--plutus-gray);
}

.plutus-footer .footer-bottom a {
  color: var(--plutus-navy);
  text-decoration: none;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-hero {
  padding: 8rem 0 4rem;
  background:
    linear-gradient(135deg, var(--plutus-white-pure) 0%, #F8FAFF 48%, #EEF3FF 100%);
  border-bottom: 1px solid rgba(5, 9, 55, 0.08);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 9, 55, 0.05) 0%, transparent 48%);
}

.page-hero .page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--plutus-navy);
  margin-bottom: 0.5rem;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--plutus-gray-dark);
  max-width: 600px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .plutus-header-nav {
    background: var(--plutus-white-pure);
    border-top: 1px solid rgba(5, 9, 55, 0.1);
    box-shadow: 0 20px 45px rgba(5, 9, 55, 0.12);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 0.75rem 2rem 1.25rem;
    position: absolute;
    right: 0;
    top: 100%;
  }

  .plutus-mobile-menu-open .plutus-header-nav {
    display: flex;
  }

  .plutus-header-nav a {
    display: block;
    padding: 0.85rem 0;
    text-align: center;
    width: 100%;
  }

  .plutus-header-nav .plutus-nav-cta {
    margin-top: 0.5rem;
    max-width: 240px;
  }

  .plutus-nav-toggle {
    display: inline-flex;
  }

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

@media (max-width: 768px) {
  .admin-bar .plutus-site-header {
    top: 46px;
  }

  .plutus-header-inner {
    min-height: 64px;
    padding: 0 1rem;
  }

  .plutus-header-logo img {
    width: 58px;
  }

  .about-philosophy-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .plutus-hero .hero-content {
    text-align: center;
  }
  .plutus-hero .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .plutus-hero .hero-cta {
    margin: 0 auto;
  }
  .hero-orb-1, .hero-orb-2, .hero-orb-3 {
    display: none;
  }
  .plutus-portfolio-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .partners-intro-grid {
    gap: 2rem !important;
    grid-template-columns: 1fr !important;
  }
  .sector-focus-grid {
    grid-template-columns: 1fr !important;
  }
  .plutus-footer .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .plutus-footer .footer-brand p {
    max-width: none;
  }
  .plutus-footer .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .plutus-hero {
    min-height: 90vh;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .portfolio-filters {
    justify-content: center;
  }
}
