/* =============================================
   ALP - Anne Lauvergeon Partners
   Global Stylesheet
   ============================================= */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

:root {
  --marine: #023b47;
  --marine-light: #05778f;
  --gold: #c5a55a;
  --gold-light: #d4ba7e;
  --teal: #0695b3; /* primary brand teal */
  --teal-dark: #057a93;
  --white: #ffffff;
  --heading: #18181b; /* near-black for body headings */
  --light-gray: #f4f4f5;
  --mid-gray: #d1d1d6;
  --text-gray: #70707b;
  --dark-text: #3f3f46;
  --font: "Poppins", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
}
h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}
h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--teal-dark);
}

/* =============================================
   LAYOUT
   ============================================= */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

.section-lg {
  padding: 7rem 0;
}

/* =============================================
   BUTTONS
   ============================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--teal-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--teal);
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: var(--marine);
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--marine);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--marine);
  border: 2px solid var(--marine);
}
.btn-outline:hover {
  background: var(--marine);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline-teal:hover {
  background: var(--teal);
  color: var(--white);
}

/* =============================================
   NAVIGATION
   ============================================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s;
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.nav.scrolled {
  background: var(--white);
  padding: 0.75rem 0;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo img {
  height: 42px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  color: var(--dark-text);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal);
  background: rgba(6, 149, 179, 0.08);
}

.nav-links .dropdown {
  position: relative;
}

.nav-links .dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: 8px;
  padding: 0.5rem;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  list-style: none;
}

.nav-links .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-links .dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: 4px;
  color: var(--dark-text);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-lang {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-gray);
  font-size: 0.8rem;
  font-weight: 500;
}

.nav-lang a {
  color: var(--text-gray);
  font-size: 0.8rem;
}
.nav-lang a:hover,
.nav-lang a.active {
  color: var(--teal);
}
.nav-lang span {
  color: var(--mid-gray);
}

.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 0.6rem 1.25rem !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--teal-dark) !important;
  color: var(--white) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-text);
  transition: all 0.3s;
}

/* =============================================
   HERO SECTIONS
   ============================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, var(--marine) 0%, #011f28 100%);
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-img-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-img-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(2, 59, 71, 0.92) 0%,
    rgba(2, 59, 71, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 0 6rem;
}

.hero-eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1,
.hero-home h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero h1 .accent,
.hero-home h1 .accent {
  color: var(--teal);
}

.hero h1 .gold,
.hero-home h1 .gold {
  color: var(--gold);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 650px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Sub-hero (for inner pages) */

.page-hero {
  background: var(--marine);
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    #011f28 0%,
    var(--marine) 60%,
    var(--marine-light) 100%
  );
}

.page-hero .hero-geo {
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(197, 165, 90, 0.2);
}

.page-hero .hero-geo-2 {
  position: absolute;
  right: -50px;
  top: -50px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  border: 1px solid rgba(6, 149, 179, 0.2);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.page-hero .subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  max-width: 700px;
  font-weight: 300;
}

.page-hero .breadcrumb {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
}
.page-hero .breadcrumb a:hover {
  color: var(--gold);
}

.page-hero .breadcrumb .sep {
  margin: 0 0.5rem;
}

/* =============================================
   STATS STRIP
   ============================================= */

.stats-strip {
  background: var(--teal);
  padding: 2.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  color: var(--white);
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.9;
  font-weight: 400;
}

/* =============================================
   SECTION HEADERS
   ============================================= */

.section-header {
  margin-bottom: 3rem;
}

.section-header.centered {
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  color: var(--heading);
  margin-bottom: 1rem;
}

.section-header .lead {
  color: var(--text-gray);
  font-size: 1.1rem;
  max-width: 650px;
}

.section-header.centered .lead {
  margin: 0 auto;
}

.divider {
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin: 1.25rem 0;
}

.section-header.centered .divider {
  margin: 1.25rem auto;
}

/* =============================================
   CARDS
   ============================================= */

.cards-grid {
  display: grid;
  gap: 1.5rem;
}

.cards-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.cards-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.cards-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid var(--mid-gray);
  transition: all 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26, 39, 68, 0.1);
  border-color: var(--teal);
}

.card-icon {
  width: 50px;
  height: 50px;
  background: rgba(6, 149, 179, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.card h3 {
  color: var(--heading);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.card p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

/* Pole cards */
.pole-card {
  display: block;
  background: var(--marine);
  border-radius: 8px;
  padding: 2.5rem;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.pole-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.pole-card:hover::before {
  transform: scaleX(1);
}

.pole-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(26, 39, 68, 0.3);
}

.pole-card .pole-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  display: block;
}

.pole-card h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.pole-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.pole-card .arrow {
  color: var(--gold);
  font-size: 1.2rem;
  transition: transform 0.2s;
}

.pole-card:hover .arrow {
  transform: translateX(4px);
}

/* =============================================
   ABOUT / CONTENT SECTIONS
   ============================================= */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col.reversed {
  direction: rtl;
}
.two-col.reversed > * {
  direction: ltr;
}

.content-img {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.content-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.img-frame {
  position: relative;
}

.img-frame::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 2px solid var(--gold);
  border-radius: 8px;
  z-index: -1;
}

/* =============================================
   PILLAR TABS (ALP Sport)
   ============================================= */

.pillar-tabs {
  border: 1px solid var(--mid-gray);
  border-radius: 8px;
  overflow: hidden;
}

.pillar-tab-nav {
  display: flex;
  border-bottom: 1px solid var(--mid-gray);
  background: var(--light-gray);
}

.pillar-tab-btn {
  flex: 1;
  padding: 1rem;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-gray);
  transition: all 0.2s;
  text-align: center;
}

.pillar-tab-btn:hover {
  color: var(--heading);
  background: var(--mid-gray);
}

.pillar-tab-btn.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
  background: var(--white);
}

.pillar-tab-content {
  display: none;
  padding: 2.5rem;
}

.pillar-tab-content.active {
  display: block;
}

.pillar-tab-content h3 {
  color: var(--heading);
  margin-bottom: 1rem;
}

.pillar-tab-content p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

.use-case {
  background: var(--light-gray);
  border-left: 3px solid var(--teal);
  padding: 1.25rem 1.5rem;
  border-radius: 0 4px 4px 0;
  margin-bottom: 1rem;
}

.use-case-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.use-case p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin: 0;
  font-style: italic;
}

/* Accordion (mobile pillar) */
.accordion {
  border: 1px solid var(--mid-gray);
  border-radius: 8px;
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid var(--mid-gray);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: var(--light-gray);
  font-weight: 600;
  color: var(--heading);
  transition: all 0.2s;
}

.accordion-header:hover {
  background: var(--mid-gray);
}

.accordion-header .acc-icon {
  color: var(--teal);
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.accordion-item.open .accordion-header .acc-icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-body-inner {
  padding: 1.5rem;
}

/* =============================================
   TEAM SECTION
   ============================================= */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  text-align: center;
}

.team-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  overflow: hidden;
  border: 3px solid var(--mid-gray);
  background: var(--marine);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  color: var(--heading);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.team-card .team-role {
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.team-card p {
  color: var(--text-gray);
  font-size: 0.875rem;
}

/* =============================================
   KSP / DIFFERENTIATORS
   ============================================= */

.ksp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ksp-item {
  padding: 2rem;
  border-radius: 8px;
  background: var(--light-gray);
  border-top: 4px solid var(--gold);
}

.ksp-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.ksp-item h3 {
  color: var(--heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.ksp-item p {
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* =============================================
   PORTFOLIO
   ============================================= */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.portfolio-item {
  background: var(--light-gray);
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid var(--mid-gray);
  transition: all 0.2s;
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.portfolio-item:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 16px rgba(6, 149, 179, 0.1);
}

.portfolio-item h4 {
  color: var(--heading);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

a.portfolio-item:visited h4 {
  color: var(--heading);
}

.portfolio-item .portfolio-sector {
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 600;
}

/* =============================================
   NEWS SECTION
   ============================================= */

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.news-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--mid-gray);
  transition: all 0.3s;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26, 39, 68, 0.1);
}

.news-thumb {
  height: 220px;
  overflow: hidden;
  background: var(--marine);
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.news-card:hover .news-thumb img {
  transform: scale(1.05);
}

.news-body {
  padding: 1.5rem;
}

.news-tag {
  display: inline-block;
  background: rgba(6, 149, 179, 0.1);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-body h3 {
  color: var(--heading);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.news-body p {
  color: var(--text-gray);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.news-date {
  color: var(--text-gray);
  font-size: 0.8rem;
}

.news-link {
  display: inline-block;
  color: var(--teal);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 0.5rem;
}

.news-link:hover {
  text-decoration: underline;
}

/* ---- FA Icon colours inside icon containers ---- */
.card-icon i,
.cta-card-icon i {
  color: var(--teal);
  font-size: 1.5rem;
}

.ksp-icon i {
  color: var(--teal);
  font-size: 2rem;
}

.sector-item .s-icon i {
  color: var(--teal);
  font-size: 1.25rem;
}

.pole-card .pole-icon i {
  color: var(--gold);
  font-size: 1.75rem;
}

/* ---- Geo dot (world map list) ---- */
.geo-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* ---- Team Carousel ---- */
.team-carousel {
  position: relative;
  overflow: hidden;
}

.team-carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.team-carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
}

.team-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mid-gray);
  cursor: pointer;
  transition: background 0.2s;
}

.team-carousel-dot.active {
  background: var(--teal);
}

/* =============================================
   ALLIANCE / PARTNERSHIP
   ============================================= */

.alliance-box {
  background: var(--marine);
  border-radius: 12px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.alliance-text h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.alliance-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.alliance-visual {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.alliance-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.alliance-logos .alp-logo {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
}

.alliance-plus {
  color: var(--gold);
  font-size: 2rem;
  font-weight: 700;
}

.alliance-logos .wmh-logo {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.alliance-tag {
  display: inline-block;
  margin-top: 1rem;
  background: rgba(197, 165, 90, 0.2);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* =============================================
   REFERENCES
   ============================================= */

.references-list {
  list-style: none;
}

.references-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--mid-gray);
  font-size: 0.95rem;
  color: var(--dark-text);
}

.references-list li:last-child {
  border-bottom: none;
}

.ref-bullet {
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* =============================================
   CONTACT / CTA BLOCKS
   ============================================= */

.cta-block {
  background: var(--teal);
  padding: 5rem 0;
  text-align: center;
}

.cta-block h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-block p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-block .ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--mid-gray);
  border-radius: 6px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--dark-text);
  background: var(--white);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(6, 149, 179, 0.1);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-info h3 {
  color: var(--heading);
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-detail .icon {
  width: 40px;
  height: 40px;
  background: rgba(6, 149, 179, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail p {
  font-size: 0.95rem;
  color: var(--dark-text);
  margin: 0;
}

.contact-detail a {
  color: var(--teal);
}

/* =============================================
   MAP / GEOGRAPHY
   ============================================= */

.geo-section {
  background: var(--light-gray);
}

.geo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.geo-map {
  background: var(--marine);
  border-radius: 12px;
  overflow: hidden;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.geo-map svg {
  width: 100%;
  height: 100%;
}

.geo-regions {
  list-style: none;
}

.geo-regions li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--mid-gray);
  font-size: 0.95rem;
}

.geo-regions li:last-child {
  border-bottom: none;
}

.geo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: #023b47;
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 1rem;
  filter: brightness(2);
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--teal);
  color: var(--white);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* =============================================
   5PM STUDIO - Dark Theme Override
   ============================================= */

body.studio-dark {
  background: #0d0d12;
}

body.studio-dark .nav {
  background: rgba(13, 13, 18, 0.95);
}

.studio-hero {
  background: #0d0d12;
  min-height: 100vh;
}

.studio-section {
  background: #0d0d12;
  color: rgba(255, 255, 255, 0.85);
  padding: 5rem 0;
}

.studio-section h2 {
  color: var(--white);
}

.studio-section p {
  color: rgba(255, 255, 255, 0.7);
}

.studio-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 2rem;
}

.studio-card h3 {
  color: var(--white);
}

.studio-card p {
  color: rgba(255, 255, 255, 0.65);
}

.studio-video-embed {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16/9;
}

.studio-video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* =============================================
   TAGS & BADGES
   ============================================= */

.tag {
  display: inline-block;
  background: rgba(6, 149, 179, 0.1);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tag-gold {
  background: rgba(197, 165, 90, 0.15);
  color: var(--gold);
}

.tag-marine {
  background: rgba(2, 59, 71, 0.1);
  color: var(--marine);
}

/* =============================================
   MISSION TYPES
   ============================================= */

.missions-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.missions-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--light-gray);
  border-radius: 6px;
  border-left: 3px solid var(--teal);
}

.missions-list .mission-bullet {
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}

.missions-list p {
  font-size: 0.9rem;
  color: var(--dark-text);
  margin: 0;
}

/* =============================================
   WHAT INSPIRES / CHECK LIST
   ============================================= */

.check-list {
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 0.95rem;
  color: var(--dark-text);
  border-bottom: 1px solid var(--mid-gray);
}

.check-list li:last-child {
  border-bottom: none;
}

.check-list .check {
  color: var(--teal);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* =============================================
   SECTORS
   ============================================= */

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.sector-item {
  padding: 1.25rem;
  background: var(--light-gray);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--heading);
}

.sector-item .s-icon {
  font-size: 1.25rem;
}

/* =============================================
   HIGHLIGHT BOX
   ============================================= */

.highlight-box {
  background: rgba(6, 149, 179, 0.06);
  border: 1px solid rgba(6, 149, 179, 0.2);
  border-radius: 8px;
  padding: 2rem;
}

.highlight-box-gold {
  background: rgba(197, 165, 90, 0.08);
  border: 1px solid rgba(197, 165, 90, 0.25);
  border-radius: 8px;
  padding: 2rem;
}

/* =============================================
   STEP / PROCESS
   ============================================= */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-item {
  text-align: center;
  padding: 2rem 1.5rem;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.step-item h3 {
  color: var(--heading);
  margin-bottom: 0.75rem;
}

.step-item p {
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* =============================================
   ABOUT SECTION
   ============================================= */

.about-box {
  background: var(--teal);
  border-radius: 12px;
  padding: 3.5rem;
  color: var(--white);
}

.about-box h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.about-box p {
  color: rgba(255, 255, 255, 0.8);
}

/* =============================================
   MOBILE RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .cards-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-lang,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--mid-gray);
    padding: 1.5rem 1rem;
    gap: 0.25rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    text-align: center;
  }

  .nav-links.open > li {
    width: 100%;
    text-align: center;
  }

  .nav-links.open > li > a {
    display: block;
    padding: 0.6rem 1rem;
  }

  .nav-links.open .dropdown > a {
    cursor: default;
    pointer-events: none;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-gray);
    margin-top: 0.5rem;
    padding-bottom: 0.25rem;
  }

  .nav-links.open .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    border: none;
    padding: 0;
    min-width: 0;
    width: 100%;
    text-align: center;
  }

  .nav-links.open .dropdown-menu a {
    display: block;
    padding: 0.4rem 1rem;
  }

  .nav-mobile-cta {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
  }

  .nav-mobile-cta .nav-cta {
    display: inline-block;
    background: var(--teal) !important;
    color: var(--white) !important;
  }

  .two-col,
  .contact-grid,
  .alliance-box,
  .geo-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .two-col.reversed {
    direction: ltr;
  }

  .cards-grid-3,
  .cards-grid-2 {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .ksp-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .pillar-tabs {
    border-radius: 0;
  }

  .pillar-tab-nav {
    flex-direction: column;
    border-bottom: none;
  }

  .pillar-tab-btn {
    border-bottom: 1px solid var(--mid-gray);
    border-left: 3px solid transparent;
    text-align: left;
  }

  .pillar-tab-btn.active {
    border-bottom-color: var(--mid-gray);
    border-left-color: var(--teal);
    background: var(--white);
  }

  .pillar-tab-content {
    padding: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .missions-list {
    grid-template-columns: 1fr;
  }

  .sectors-grid {
    grid-template-columns: 1fr;
  }

  .alliance-box {
    padding: 1rem;
  }

  .alliance-logos {
    flex-direction: column;
    gap: 0.75rem;
  }

  .alliance-visual {
    padding: 1.25rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 769px) {
  .accordion {
    display: none;
  }
}

/* =============================================
   UTILITIES
   ============================================= */

.text-center {
  text-align: center;
}
.text-white {
  color: var(--white) !important;
}
.text-teal {
  color: var(--teal) !important;
}
.text-gold {
  color: var(--gold) !important;
}
.text-marine {
  color: var(--marine) !important;
}
.text-gray {
  color: var(--text-gray) !important;
}

.bg-light {
  background: var(--light-gray);
}
.bg-marine {
  background: var(--marine);
}
.bg-teal {
  background: var(--teal);
}

.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}

.d-flex {
  display: flex;
}
.gap-1 {
  gap: 0.5rem;
}
.gap-2 {
  gap: 1rem;
}
.align-center {
  align-items: center;
}
.flex-wrap {
  flex-wrap: wrap;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.2s;
}
.delay-3 {
  animation-delay: 0.3s;
}
.delay-4 {
  animation-delay: 0.4s;
}

@media (min-width: 1025px) {
  .nav-mobile-cta,
  .hide-desktop {
    display: none !important;
  }
}
