/* FRONTIER VERTEX — hand-written layout/component CSS.
   Complements the purged Tailwind build in app.css (whose utility set can't
   be regenerated here without a build pipeline). Uses the same design
   tokens as app.css: navy #0A1628, blue #007bff -> green #00c853 gradient,
   DM Sans (body) / Montserrat (headings) — no serif font on the original site. */

:root {
  --fv-navy: #0A1628;
  --fv-navy-light: #101f36;
  --fv-blue: #007bff;
  --fv-green: #00c853;
  --fv-gradient: linear-gradient(90deg, var(--fv-blue), var(--fv-green));
}

/* app.css's .fv-btn-primary references the Vite-hashed asset path (/assets/buttongradient_*.webp),
   which doesn't exist here — point it at the de-hashed copy under resources/front/images/. */
.fv-btn-primary {
  background-image: url('/resources/front/images/buttongradient.webp');
}

body {
  font-family: "DM Sans", sans-serif;
  color: #1a1a1a;
}

/* Gradient accent bar */
.fv-accent-bar {
  height: 4px;
  background: var(--fv-gradient);
}

/* Header */
.fv-site-header {
  background: rgba(10, 22, 40, .95);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background .3s, box-shadow .3s, padding .3s;
}

.fv-site-header.is-scrolled {
  background: var(--fv-navy);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .25);
}

.fv-header-inner {
  max-width: 96rem;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}

.fv-logo img {
  height: 78px;
  width: auto;
  display: block;
}

.fv-header-inner .navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.fv-header-inner .navbar-brand img {
  height: 42px;
  width: auto;
  display: block;
}

.fv-header-inner .navbar-brand .logo_dark {
  color: #fff;
  margin: 0;
  font-size: 1.25rem;
}

/* Nav toggle (mobile hamburger) */
.fv-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1300;
}

.fv-nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  transition: transform .3s, opacity .3s;
}

.fv-nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.fv-nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.fv-nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav menu */
.fv-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.fv-nav-list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.fv-nav-list .fv-nav-link {
  color: rgba(255, 255, 255, .8);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: color .2s;
}

.fv-nav-list .fv-nav-link:hover { color: #fff; }
.fv-nav-list .fv-nav-link.is-active { color: var(--fv-green); }

.fv-nav-list .fv-nav-link.show-submenu {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
}

.fv-nav-caret {
  transition: transform .2s;
}

.fv-nav-list .submenu:hover > .fv-nav-link.show-submenu .fv-nav-caret,
.fv-nav-list .submenu.is-expanded > .fv-nav-link.show-submenu .fv-nav-caret {
  transform: rotate(180deg);
}

.fv-nav-list .submenu {
  position: relative;
}

.fv-nav-list .submenu > ul {
  list-style: none;
  margin: 0;
  padding: .5rem;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  width: max-content;
  max-width: 340px;
  background: var(--fv-navy);
  border: 1px solid rgba(0, 123, 255, .2);
  border-radius: .25rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s, transform .2s, visibility .2s;
}

.fv-nav-list .submenu:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fv-nav-list .submenu > ul a {
  display: block;
  padding: .6rem 1rem;
  border-radius: .25rem;
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  font-size: .875rem;
  white-space: nowrap;
}

.fv-nav-list .submenu > ul a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .05);
}

.fv-nav-list .submenu > ul .fv-nav-submenu__all {
  color: var(--fv-green);
  text-transform: uppercase;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  border-radius: 0;
  margin-bottom: .25rem;
  padding-bottom: .75rem;
}

.fv-nav-list .submenu > ul .fv-nav-submenu__all:hover {
  color: var(--fv-green);
  background: rgba(255, 255, 255, .05);
}

.fv-nav-secondary {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 1rem;
}

@media (min-width: 992px) {
  /* Original header has 3 flex children (logo / nav-links / lang+CTA) spread with
     justify-content:space-between — our nav-links and lang+CTA are nested one level
     deeper, so promote them to direct flex items of .fv-header-inner here. */
  .fv-nav {
    display: contents;
  }

  .fv-nav-secondary {
    margin-left: 0;
  }
}

.fv-nav-cta {
  font-size: .75rem;
  padding: .6rem 1.25rem;
  white-space: nowrap;
}

.fv-lang-switch {
  display: flex;
  align-items: center;
  gap: .25rem;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: .25rem;
  overflow: hidden;
  padding: .15rem;
}

.fv-lang-switch__link {
  display: block;
  padding: .3rem .6rem;
  border-radius: .2rem;
  color: rgba(255, 255, 255, .4);
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s, background .2s;
}

.fv-lang-switch__link:hover { color: rgba(255, 255, 255, .7); }
.fv-lang-switch__link.is-active {
  color: #fff;
  background: var(--fv-gradient);
}

@media (max-width: 991px) {
  .fv-nav-toggle { display: flex; }

  .fv-header-inner { height: 64px; }

  .fv-logo img { height: 56px; }

  .fv-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 85vw);
    background: var(--fv-navy);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 5rem 1.5rem 2rem;
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
  }

  .fv-nav.is-open { transform: translateX(0); }

  .fv-nav-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }

  .fv-nav-list .submenu {
    width: 100%;
  }

  .fv-nav-list .submenu > ul {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    border: none;
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height .3s ease;
  }

  .fv-nav-list .submenu.is-expanded > ul {
    max-height: 500px;
    padding: .25rem 0 .5rem 1rem;
  }

  .fv-nav-list .submenu > ul {
    width: auto;
    max-width: none;
  }

  .fv-nav-list .submenu > ul a {
    color: #fff;
    white-space: normal;
  }

  /* Original mobile menu lists pillars as a plain flat list, without the
     "Ariile de Expertiză Vertex →" heading link used in the desktop hover dropdown. */
  .fv-nav-list .submenu > ul .fv-nav-submenu__all {
    display: none;
  }

  .fv-nav-link {
    display: block;
    padding: .85rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .fv-nav-secondary {
    margin-top: 1.5rem;
    margin-left: 0;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 1rem;
  }

  .fv-nav-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
  }

  body.nav-open { overflow: hidden; }
}

/* Hero (slider override markup) */
.fv-hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  margin-top: -80px;
  display: flex;
  flex-direction: column;
}

.fv-hero__inner {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}

.fv-hero__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.fv-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .3);
}

.fv-hero__inner > .container {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  padding-bottom: 2rem;
}

.fv-hero__content {
  max-width: 768px;
  color: var(--fv-navy);
}

.fv-hero__eyebrow {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.fv-hero__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--fv-navy);
  font-size: clamp(2.25rem, 2rem + 3vw, 4.5rem);
  line-height: 1.25;
  margin-bottom: 2rem;
}

.fv-hero__title .fv-gradient-text { display: inline-block; }

.fv-hero__text {
  font-size: 1.25rem;
  line-height: 1.625;
  color: rgba(10, 22, 40, .75);
  margin-bottom: 2.5rem;
}

.fv-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}


.fv-hero__stats-bar {
  position: relative;
  z-index: 3;
  background: rgba(10, 22, 40, .85);
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.fv-hero__stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.fv-hero__stat {
  text-align: center;
  padding: 1.25rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, .15);
}

.fv-hero__stat:last-child { border-right: none; }

.fv-hero__stat-value {
  font-family: "Montserrat", sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  background: var(--fv-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: .25rem;
}

.fv-hero__stat-label {
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 500;
}

/* Reveal on scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Section shell */
.fv-section {
  padding: 5rem 0;
}

.fv-section--alt {
  background: #f6f8fb;
}

.fv-section--dark {
  background: var(--fv-navy);
  color: #fff;
}

.fv-page-hero {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 5rem;
  min-height: 380px;
}

@media (min-width: 768px) {
  .fv-page-hero { min-height: 460px; }
}

@media (min-width: 1024px) {
  .fv-page-hero { min-height: 520px; }
}

.fv-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, .8);
}

.fv-page-hero__accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--fv-gradient);
}

.fv-page-hero__content {
  position: relative;
  z-index: 1;
  color: #fff;
}

.fv-page-hero__label {
  margin-bottom: 1rem;
}

.fv-page-hero__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: clamp(2.25rem, 1.5rem + 3vw, 3.75rem);
  line-height: 1.2;
  max-width: 52rem;
  margin: 0 0 1.5rem;
}

.fv-page-hero__subtitle {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.125rem, 1rem + .5vw, 1.25rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, .7);
  max-width: 42rem;
  margin-bottom: 2rem;
}

.fv-page-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Outline button on dark backgrounds (hero secondary CTA, e.g. Investors "De ce Frontier Vertex?") */
.fv-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}

.fv-btn-outline:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .5);
  color: #fff;
}

.fv-breadcrumbs {
  display: flex;
  align-items: center;
  gap: .5rem;
  line-height: 1;
  margin-bottom: 2rem;
}

.fv-breadcrumbs__sep {
  color: rgba(255, 255, 255, .3);
  flex-shrink: 0;
  display: block;
}

.fv-breadcrumbs__link {
  color: rgba(255, 255, 255, .5);
  font-family: "DM Sans", sans-serif;
  font-size: .75rem;
  line-height: 1;
  text-decoration: none;
  transition: color .2s;
}

.fv-breadcrumbs__link:hover {
  color: rgba(255, 255, 255, .8);
}

.fv-breadcrumbs__current {
  font-family: "DM Sans", sans-serif;
  font-size: .75rem;
  line-height: 1;
}

.fv-section-header {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
}

.fv-section-header h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(1.875rem, 2.5vw + 1rem, 3rem);
  margin: .5rem 0 1rem;
}

.fv-section-header .fv-gold-line { margin-left: auto; margin-right: auto; }

.fv-section-header--left {
  max-width: none;
  margin: 0 0 1.5rem;
  text-align: left;
}

.fv-section-header--left .fv-gold-line { margin-left: 0; }

/* Grids */
.fv-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.fv-grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.fv-grid--5 { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }

.fv-card {
  background: #fff;
  border-radius: .75rem;
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(10, 22, 40, .08);
}

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

.fv-card__image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: .5rem;
  margin-bottom: 1rem;
}

.fv-card h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin: .5rem 0 .5rem;
  color: var(--fv-navy);
}

.fv-card p {
  font-size: .9rem;
  line-height: 1.55;
  color: #4a5568;
  margin: 0;
}

.fv-card--link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Team member detail page */
.fv-member-detail {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.fv-member-detail__photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--fv-navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fv-member-detail__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fv-member-detail__body h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(1.875rem, 2.5vw + 1rem, 3rem);
  color: var(--fv-navy);
  margin-bottom: .5rem;
}

.fv-member-detail .fv-card__tags { margin: 1rem 0; }
.fv-member-detail .fv-prose { margin: 1.5rem 0; }

@media (max-width: 640px) {
  .fv-member-detail {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

.fv-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: 1rem;
}

/* Team cards */
.fv-team-card {
  display: block;
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.fv-team-card__photo {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  background: var(--fv-gradient);
  border: 2px solid var(--fv-blue);
  box-shadow: 0 8px 20px rgba(10, 22, 40, .15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fv-team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fv-team-card__initials {
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
}

.fv-team-card h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--fv-navy);
  margin: 0 0 .25rem;
}

.fv-team-card__role {
  display: block;
  font-size: .7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .75rem;
}

.fv-team-card p {
  font-size: .85rem;
  line-height: 1.55;
  color: #718096;
  margin: 0;
}

.fv-team-card__link {
  display: inline-block;
  margin-top: .75rem;
  font-size: .8rem;
  color: var(--fv-blue);
  text-decoration: none;
  font-weight: 600;
}

/* Stat cards */
.fv-stat-card {
  text-align: center;
}

.fv-stat-card__value {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  background: var(--fv-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: .5rem;
}

/* Insight cards */
.fv-insight-card__meta {
  font-size: .75rem;
  color: #718096;
  margin-top: .75rem;
}

/* Footer */
.fv-site-footer {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--fv-navy);
}

.fv-footer-inner { padding: 4rem 0 3rem; }

.fv-footer-logo img {
  height: 42px;
  width: auto;
  display: block;
  margin-bottom: 1.5rem;
}

.fv-footer-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
}

@media (max-width: 991px) { .fv-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 639px) { .fv-footer-grid { grid-template-columns: 1fr; } }

.fv-footer-grid > div > p {
  font-size: .875rem;
  line-height: 1.6;
  color: rgba(10, 22, 40, .7);
  margin-bottom: 1.5rem;
}

.fv-footer-grid h4 {
  font-size: .7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1.5rem;
}

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

.fv-footer-grid ul li { margin-bottom: .75rem; }

.fv-footer-grid ul a {
  color: rgba(10, 22, 40, .7);
  text-decoration: none;
  font-size: .875rem;
  transition: color .2s;
}

.fv-footer-grid ul a:hover { color: var(--fv-blue); }

.fv-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: var(--fv-blue);
}

.fv-footer-contact li span,
.fv-footer-contact li a {
  color: rgba(10, 22, 40, .7);
  font-size: .875rem;
  text-decoration: none;
}

.fv-footer-contact li a:hover { color: var(--fv-blue); }
.fv-footer-contact { margin-bottom: 2rem !important; }

.fv-footer-social {
  width: 36px;
  height: 36px;
  margin-right: .75rem;
  border: 1px solid rgba(10, 22, 40, .3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fv-navy);
  text-decoration: none;
  transition: border-color .2s, color .2s;
}

.fv-footer-social:last-child { margin-right: 0; }

.fv-footer-social:hover { border-color: var(--fv-blue); color: var(--fv-blue); }

.fv-footer-bottom {
  border-top: 1px solid rgba(10, 22, 40, .15);
  padding: 1.25rem 0;
}

.fv-footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.fv-footer-bottom p {
  font-size: .75rem;
  color: rgba(10, 22, 40, .5);
  margin: 0;
}

.fv-footer-legal {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.fv-footer-legal a {
  font-size: .75rem;
  color: rgba(10, 22, 40, .5);
  text-decoration: none;
}

.fv-footer-legal a:hover { color: var(--fv-blue); }

/* Prose (About / Contact / Privacy / Cookies raw content) */
.fv-prose {
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.75;
  color: #2d3748;
}

.fv-prose p { margin-bottom: 1.25rem; }

.fv-prose.fv-prose--intro,
.fv-prose.fv-prose--tight {
  max-width: none;
  margin: 0;
  line-height: inherit;
  color: #4b5563;
}

.fv-prose--tight p:last-child { margin-bottom: 0; }

.fv-prose.fv-prose--dark {
  max-width: none;
  margin: 0;
  line-height: inherit;
  color: rgba(255, 255, 255, .7);
}

.fv-prose--dark p { margin-bottom: 0; }

/* Services list + detail pages */
.fv-pillar-icon {
  background: var(--fv-gradient);
  color: #fff;
}

.fv-pillar-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* About page: story, key quote, mission/vision/values, differentiators, architecture teaser */
.fv-about-story__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--fv-navy);
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.fv-about-story__body {
  max-width: none;
  margin: 0;
}

.fv-quote-box {
  background: var(--fv-navy);
  padding: 2.5rem;
}

.fv-quote-box__text {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.25rem, 1.1rem + .5vw, 1.5rem);
  line-height: 1.6;
  border-left: 2px solid var(--fv-blue);
  padding-left: 1.5rem;
  margin: 0;
}

.fv-mvv-card {
  background: #fff;
  padding: 2rem;
  border-top: 2px solid var(--fv-blue);
}

.fv-mvv-card h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--fv-navy);
  font-size: 1.25rem;
  margin: .5rem 0 1rem;
}

.fv-mvv-card__body {
  max-width: none;
  margin: 0;
  font-size: .9rem;
}

.fv-diff-card {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: #f6f8fb;
  border-left: 2px solid var(--fv-blue);
}

.fv-diff-card__num {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1;
  flex-shrink: 0;
}

.fv-diff-card h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--fv-navy);
  font-size: 1.125rem;
  margin-bottom: .75rem;
}

.fv-diff-card__body {
  max-width: none;
  margin: 0;
  font-size: .9rem;
}

.fv-arch-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--fv-navy);
  border: 1px solid rgba(255, 255, 255, .1);
  text-decoration: none;
  transition: border-color .2s;
}

.fv-arch-card:hover { border-color: rgba(0, 123, 255, .4); }

.fv-arch-card__badge {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--fv-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .8rem;
  flex-shrink: 0;
}

.fv-arch-card__badge svg { width: 1.125rem; height: 1.125rem; }

.fv-arch-card__title {
  display: block;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: .875rem;
  font-weight: 500;
  transition: color .2s;
}

.fv-arch-card:hover .fv-arch-card__title {
  background: var(--fv-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fv-arch-card__type {
  display: block;
  color: rgba(255, 255, 255, .4);
  font-family: "DM Sans", sans-serif;
  font-size: .75rem;
  margin-top: .15rem;
}

/* Leadership page: intro + detailed 2-column team cards */
.fv-leadership-intro {
  max-width: 42rem;
  font-family: "DM Sans", sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #4a5568;
}

.fv-leadership-intro p { margin: 0; }

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

@media (max-width: 767px) {
  .fv-grid--leadership { grid-template-columns: 1fr; }
}

.fv-team-detail-card {
  display: flex;
  gap: 2rem;
  padding: 2.5rem;
  background: #f8f8f8;
  transition: box-shadow .2s;
}

.fv-team-detail-card:hover { box-shadow: 0 8px 24px rgba(10, 22, 40, .08); }

.fv-team-detail-card__photo {
  flex-shrink: 0;
  width: 6rem;
  height: 6rem;
  border: 2px solid var(--fv-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fv-team-detail-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fv-team-detail-card__photo span {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--fv-gradient);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
}

.fv-team-detail-card__body { min-width: 0; flex: 1; }

.fv-team-detail-card__body h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--fv-navy);
  font-size: 1.25rem;
  margin-bottom: .25rem;
}

.fv-team-detail-card__role {
  font-family: "DM Sans", sans-serif;
  font-size: .75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  background: var(--fv-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.fv-team-detail-card__bio {
  font-family: "DM Sans", sans-serif;
  font-size: .9rem;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 1rem;
}

.fv-team-detail-card__bio p { margin: 0; }

.fv-team-detail-card__group { margin-bottom: 1rem; }

.fv-team-detail-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .5rem;
}

.fv-team-detail-card__tag {
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #4a5568;
  font-family: "DM Sans", sans-serif;
  font-size: .75rem;
  padding: .25rem .75rem;
}

.fv-team-detail-card__pillar-tag {
  font-family: "DM Sans", sans-serif;
  font-size: .75rem;
  padding: .25rem .75rem;
}

.fv-team-detail-card__pillar-tag span {
  background: var(--fv-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fv-team-detail-card__linkedin {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--fv-navy);
  font-family: "DM Sans", sans-serif;
  font-size: .875rem;
  text-decoration: none;
  transition: color .2s;
}

.fv-team-detail-card__linkedin:hover { color: var(--fv-blue); }

@media (max-width: 640px) {
  .fv-team-detail-card { flex-direction: column; padding: 1.75rem; }
}

/* Home: about teaser, closing CTA */
.fv-about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .fv-about-teaser-grid { grid-template-columns: 1fr; }
}

.fv-value-card {
  background: #F8F8F8;
  border-left: 2px solid var(--fv-blue);
  padding: 1.5rem;
}

.fv-value-card h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--fv-navy);
  margin-bottom: .5rem;
}

.fv-value-card p {
  font-size: .875rem;
  color: #718096;
  line-height: 1.55;
  margin: 0;
}

.fv-cta-section {
  background: var(--fv-navy, #0A1628);
  color: #fff;
}

.fv-cta-section h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(1.875rem, 2vw + 1.25rem, 2.5rem);
  color: #fff;
  max-width: 640px;
  margin: 1.5rem auto 1.25rem;
}

.fv-cta-section p {
  color: rgba(255, 255, 255, .7);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 2rem;
}

/* Home: services section with background image + filter tabs */
.fv-section--services {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.fv-section--services > .container { position: relative; z-index: 1; }

/* Original uses a fixed 2-column grid here (grid-cols-1 md:grid-cols-2 gap-5), not auto-fit */
.fv-section--services .fv-grid--2 { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }

@media (max-width: 767px) {
  .fv-section--services .fv-grid--2 { grid-template-columns: 1fr; }
}

/* Home: projects/portfolio teaser */
.fv-section--white { background: #fff; }

.fv-projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.fv-projects-header h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--fv-navy);
  font-size: clamp(1.875rem, 2vw + 1.25rem, 2.25rem);
  margin: .5rem 0 .75rem;
}

.fv-projects-count {
  color: #718096;
  font-size: .95rem;
}

.fv-projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 1279px) { .fv-projects-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 991px) { .fv-projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px) { .fv-projects-grid { grid-template-columns: 1fr; } }

.fv-project-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  min-width: 0;
  background: #fff;
  border: 1px solid #f1f5f9;
  padding: 1rem;
  text-decoration: none;
  transition: border-color .2s, box-shadow .2s;
}

.fv-project-card:hover {
  border-color: rgba(0, 123, 255, .4);
  box-shadow: 0 8px 20px rgba(10, 22, 40, .08);
}

.fv-project-card__thumb {
  width: 84px;
  height: 62px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  overflow: hidden;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
}

.fv-project-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: .25rem;
}

.fv-project-card__initials {
  font-size: .7rem;
  font-weight: 700;
  color: var(--fv-blue);
  text-transform: uppercase;
  letter-spacing: .03em;
  text-align: center;
  line-height: 1.2;
  padding: 0 .25rem;
}

.fv-project-card__body {
  flex: 1;
  min-width: 0;
}

.fv-project-card__label {
  display: block;
  font-size: .625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .25rem;
}

.fv-project-card__body h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: .875rem;
  line-height: 1.4;
  color: var(--fv-navy);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .2s;
}

.fv-project-card:hover .fv-project-card__body h3 { color: var(--fv-blue); }

.fv-project-card__body p {
  font-size: .75rem;
  color: #a0aec0;
  margin: .25rem 0 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fv-project-card__arrow {
  flex-shrink: 0;
  margin-top: .25rem;
  color: #d1d5db;
  transition: color .2s;
}

.fv-project-card:hover .fv-project-card__arrow { color: var(--fv-blue); }

/* Projects list page: filter tabs + case-study cards */
.fv-project-filter {
  padding: .5rem 1rem;
  font-family: "DM Sans", sans-serif;
  font-size: .75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: #fff;
  color: #4a5568;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  transition: background .2s, color .2s;
}

.fv-project-filter:hover { background: var(--fv-navy); color: #fff; }

.fv-project-filter.is-active {
  background: var(--fv-navy);
  color: #fff;
  border-color: transparent;
}

.fv-project-list-card__industry {
  background: var(--fv-navy);
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .25rem .75rem;
}

.fv-project-list-card__logo {
  width: 84px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: .25rem;
  overflow: hidden;
}

.fv-project-list-card__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: .25rem;
}

.fv-project-list-card__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--fv-navy);
  font-size: 1.125rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.group:hover .fv-project-list-card__title {
  background: var(--fv-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fv-project-list-card__excerpt {
  color: #718096;
  font-family: "DM Sans", sans-serif;
  font-size: .9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.fv-project-list-card__results {
  border-top: 1px solid #e2e8f0;
  padding-top: 1rem;
  margin-top: 1rem;
}

.fv-project-list-card__results p {
  color: #4a5568;
  font-family: "DM Sans", sans-serif;
  font-size: .9rem;
  line-height: 1.6;
}

.fv-project-list-card__more {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--fv-navy);
  font-family: "DM Sans", sans-serif;
  font-size: .9rem;
  font-weight: 500;
  margin-top: 1.5rem;
}

.group:hover .fv-project-list-card__more {
  background: var(--fv-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Project detail page: custom dark hero (not the shared page-hero) + content sections */
.fv-project-hero {
  position: relative;
  background: var(--fv-navy);
  padding: 8rem 0 5rem;
  overflow: hidden;
}

.fv-project-hero__accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--fv-blue);
}

.fv-project-hero__back {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255, 255, 255, .5);
  font-family: "DM Sans", sans-serif;
  font-size: .875rem;
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color .2s;
}

.fv-project-hero__back:hover { color: #fff; }

.fv-project-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.5rem;
}

.fv-project-hero__badge {
  border: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .6);
  font-family: "DM Sans", sans-serif;
  font-size: .75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .25rem .75rem;
}

.fv-project-hero__badge--filled {
  background: var(--fv-blue);
  border-color: transparent;
  color: var(--fv-navy);
}

.fv-project-hero__row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.fv-project-hero__title {
  flex: 1;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 1.3rem + 2vw, 3rem);
  line-height: 1.25;
  max-width: 48rem;
}

.fv-project-hero__logo {
  flex-shrink: 0;
  width: 145px;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: .25rem;
  overflow: hidden;
  margin-top: .25rem;
}

.fv-project-hero__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: .5rem;
}

@media (max-width: 640px) {
  .fv-project-hero__row { flex-direction: column; }
}

.fv-project-detail__heading {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
}

.fv-project-detail__heading h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--fv-navy);
  font-size: 1.25rem;
}

.fv-project-detail__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--fv-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fv-project-detail__icon--dark {
  border-radius: 0;
  background: rgba(0, 123, 255, .2);
  color: var(--fv-green);
}

.fv-project-detail__results {
  background: var(--fv-navy);
  padding: 2.5rem;
}

.fv-project-detail__sidebar-box {
  background: #f8f8f8;
  padding: 1.5rem;
}

.fv-project-detail__dl > div { margin-bottom: 1rem; }
.fv-project-detail__dl > div:last-child { margin-bottom: 0; }

.fv-project-detail__dl dt {
  color: #a0aec0;
  font-family: "DM Sans", sans-serif;
  font-size: .7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .25rem;
}

.fv-project-detail__dl dd {
  color: var(--fv-navy);
  font-family: "DM Sans", sans-serif;
  font-size: .875rem;
  font-weight: 500;
}

.fv-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}

.fv-filter-tab {
  padding: .5rem 1rem;
  font-size: .85rem;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  border-radius: 2px;
  border: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, .8);
  color: var(--fv-navy);
  cursor: pointer;
  transition: all .2s ease;
}

.fv-filter-tab:hover { background: #fff; }

.fv-filter-tab.is-active {
  color: #fff;
  border-color: transparent;
  background: var(--fv-gradient);
}

.fv-pillar-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.fv-pillar-card__badge {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--fv-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .8rem;
  flex-shrink: 0;
}

.fv-pillar-card__badge svg {
  width: 1.25rem;
  height: 1.25rem;
}

.fv-pillar-card__type {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: var(--fv-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fv-pillar-card__cta {
  display: inline-block;
  margin-top: 1rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--fv-navy);
}

.fv-pillar-card:hover .fv-pillar-card__cta {
  background: var(--fv-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Home: news/insights teaser */
.fv-section--news { background: #f8f8f8; }

.fv-grid--3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 991px) { .fv-grid--3 { grid-template-columns: 1fr; } }

.fv-news-card {
  display: block;
  background: #fff;
  border: 1px solid #f1f5f9;
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 3px rgba(10, 22, 40, .05);
  transition: box-shadow .2s;
}

.fv-news-card:hover { box-shadow: 0 12px 28px rgba(10, 22, 40, .1); }

.fv-news-card__meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
}

.fv-news-card__category {
  font-size: .7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.fv-news-card__readtime {
  color: #a0aec0;
  font-size: .7rem;
}

.fv-news-card h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
  color: var(--fv-navy);
  margin: 0 0 1rem;
  transition: color .2s;
}

.fv-news-card:hover h3 { color: var(--fv-blue); }

.fv-news-card p {
  font-size: .9rem;
  line-height: 1.6;
  color: #718096;
  margin: 0 0 1.5rem;
}

.fv-news-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fv-news-card__date {
  font-size: .75rem;
  color: #a0aec0;
}

.fv-news-card__link {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--fv-navy);
  transition: color .2s;
}

.fv-news-card:hover .fv-news-card__link { color: var(--fv-blue); }

/* News/Insights: article hero meta row, quote, author card, tags divider, comments */
.fv-news-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.fv-news-hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255, 255, 255, .6);
  font-family: "DM Sans", sans-serif;
  font-size: .875rem;
}

.fv-news-quote {
  border-left: 2px solid var(--fv-blue);
  padding-left: 1.5rem;
  margin: 0 0 2rem;
  color: #4a5568;
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.6;
}

.fv-news-divider {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 2.5rem 0 2rem;
}

.fv-news-author-card {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.fv-news-author-card__avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--fv-gradient);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fv-news-author-card span > strong {
  display: block;
  color: var(--fv-navy);
  font-family: "Montserrat", sans-serif;
  font-size: .95rem;
}

.fv-news-author-card span > span {
  color: #718096;
  font-size: .8rem;
}

.fv-comment {
  background: #f8f8f8;
  padding: 1.5rem;
}

.fv-comment__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .5rem;
}

.fv-comment__header strong {
  color: var(--fv-navy);
  font-family: "Montserrat", sans-serif;
  font-size: .95rem;
}

.fv-comment__date {
  display: block;
  color: #a0aec0;
  font-size: .75rem;
  margin-top: .15rem;
}

.fv-comment__reply {
  color: var(--fv-blue);
  font-size: .8rem;
  font-weight: 500;
  text-decoration: none;
  flex-shrink: 0;
}

.fv-comment__reply:hover { text-decoration: underline; }

.fv-comment p { color: #4a5568; font-size: .9rem; line-height: 1.6; margin: 0; }

.fv-comment__replies {
  margin: 1rem 0 0 1.5rem;
  padding-left: 1.5rem;
  border-left: 2px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fv-comment-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .fv-comment-form__row { grid-template-columns: 1fr; }
}

.fv-comment-form__field { margin-bottom: 1.5rem; }

.fv-comment-form__field label {
  display: block;
  color: var(--fv-navy);
  font-family: "DM Sans", sans-serif;
  font-size: .8rem;
  font-weight: 500;
  margin-bottom: .5rem;
}

.fv-comment-form__field label em {
  color: var(--fv-blue);
  font-style: normal;
  margin-left: .15rem;
}

.fv-comment-form__field input,
.fv-comment-form__field textarea {
  width: 100%;
  border: 1px solid #e2e8f0;
  padding: .75rem 1rem;
  font-family: "DM Sans", sans-serif;
  font-size: .9rem;
  color: var(--fv-navy);
  background: #fff;
}

.fv-comment-form__field input:focus,
.fv-comment-form__field textarea:focus {
  outline: none;
  border-color: var(--fv-blue);
}

.fv-comment-form__error {
  display: block;
  color: #e53e3e;
  font-size: .8rem;
  margin-top: .35rem;
}

.fv-comment-form__hint {
  color: #a0aec0;
  font-size: .8rem;
  margin-bottom: 1.5rem;
}

/* Investors page: stat label, representative-projects list, dark value-prop cards, CTA contact row */
.fv-stat-card__label {
  color: #718096;
  font-family: "DM Sans", sans-serif;
  font-size: .7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0;
}

.fv-investor-project {
  background: #fff;
  padding: 1.25rem 1.5rem;
  border-left: 2px solid var(--fv-blue);
}

.fv-investor-project__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .35rem;
}

.fv-investor-project__name {
  color: var(--fv-navy);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: .95rem;
}

.fv-investor-project__amount {
  color: var(--fv-blue);
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: .85rem;
  flex-shrink: 0;
}

.fv-investor-project p {
  color: #718096;
  font-size: .85rem;
  line-height: 1.5;
  margin: 0;
}

.fv-investor-value-card {
  background: var(--fv-navy-light);
  padding: 2rem;
}

.fv-investor-value-card h3 {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .75rem;
}

.fv-investor-cta__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  color: rgba(255, 255, 255, .7);
  font-family: "DM Sans", sans-serif;
  font-size: .9rem;
}

/* Contact page: info rows, areas box, form select + accept checkbox */
.fv-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.fv-contact-item__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--fv-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fv-contact-item__label {
  display: block;
  color: var(--fv-navy);
  font-family: "DM Sans", sans-serif;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .35rem;
}

.fv-contact-item__value {
  display: block;
  color: #4a5568;
  font-size: .9rem;
  text-decoration: none;
}

a.fv-contact-item__value:hover { color: var(--fv-blue); }

.fv-contact-areas-box {
  background: #f8f8f8;
  padding: 1.5rem;
}

.fv-contact-areas-box p {
  color: #718096;
  font-size: .875rem;
  margin: 0;
}

.fv-comment-form__field select {
  width: 100%;
  border: 1px solid #e2e8f0;
  padding: .75rem 1rem;
  font-family: "DM Sans", sans-serif;
  font-size: .9rem;
  color: var(--fv-navy);
  background: #fff;
}

.fv-comment-form__field select:focus { outline: none; border-color: var(--fv-blue); }

/* Shared front.partials.common.forms.checkbox partial (accept_terms/accept_policy), used as-is
   on the contact form — just fit its Bootstrap .form-check markup to the surrounding fv- form. */
.fv-comment-form .form-check {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  margin-bottom: 1rem;
  padding-left: 0;
}

.fv-comment-form .form-check-input {
  margin-top: .3rem;
  flex-shrink: 0;
}

.fv-comment-form .form-check-label {
  color: #718096;
  font-size: .85rem;
  line-height: 1.5;
}

/* Flash messages (front.partials.common.flashMessages) */
.fv-flash {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 1400;
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  max-width: 380px;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(10, 22, 40, 0.18);
  border-left: 4px solid var(--fv-blue);
  animation: fv-flash-in .35s ease;
}

@keyframes fv-flash-in {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

.fv-flash--success { border-left-color: var(--fv-green); }
.fv-flash--danger,
.fv-flash--error { border-left-color: #e53e3e; }
.fv-flash--warning { border-left-color: #f6ad55; }
.fv-flash--info { border-left-color: var(--fv-blue); }

.fv-flash__icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 123, 255, 0.1);
  color: var(--fv-blue);
}

.fv-flash--success .fv-flash__icon { background: rgba(0, 200, 83, 0.12); color: var(--fv-green); }
.fv-flash--danger .fv-flash__icon,
.fv-flash--error .fv-flash__icon { background: rgba(229, 62, 62, 0.12); color: #e53e3e; }
.fv-flash--warning .fv-flash__icon { background: rgba(246, 173, 85, 0.15); color: #dd8a1a; }

.fv-flash__content { flex: 1; min-width: 0; }

.fv-flash__title {
  margin: 0 0 .2rem;
  font-size: .95rem;
  font-weight: 700;
  color: var(--fv-navy);
}

.fv-flash__message {
  margin: 0;
  font-size: .85rem;
  line-height: 1.5;
  color: #718096;
}

.fv-flash__close {
  flex-shrink: 0;
  background: none;
  border: none;
  padding: .2rem;
  cursor: pointer;
  color: #a0aec0;
  line-height: 0;
  transition: color .2s ease;
}

.fv-flash__close:hover { color: var(--fv-navy); }

@media (max-width: 640px) {
  .fv-flash {
    left: 1rem;
    right: 1rem;
    top: 1rem;
    max-width: none;
  }
}
