/* ============================================================
   VISION & VIRTUE — Main Stylesheet
   ============================================================ */

/* ---------- Background image variables removed; images applied per section ---------- */

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

:root {
  --navy-900: #080f20;
  --navy-800: #0d1830;
  --navy-700: #112045;
  --navy-600: #1a2f5e;
  --navy-500: #1e3a72;
  --navy-400: #2c4f8c;
  --accent:   #3a6bc4;
  --accent-light: #5b8de0;
  --white:    #ffffff;
  --off-white: #f4f6fa;
  --gray-100: #e8ecf4;
  --gray-400: #8895b0;
  --gray-600: #4a5568;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-head: 'Raleway', system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  color: var(--navy-800);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ---------- Typography helpers ---------- */
.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.section-tag.dark {
  background: var(--navy-700);
  color: var(--white);
}

.section-tag:not(.dark) {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}

.section-title {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.1;
}

.section-title.light { color: var(--white); font-size: clamp(2rem, 5vw, 3.5rem); }
.section-title.dark  { color: var(--navy-800); font-size: clamp(2rem, 5vw, 3rem); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

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

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(58, 107, 196, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 2rem;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(8, 15, 32, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-v {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.logo-text {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--white);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1.4rem;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color var(--transition);
}

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

.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 0.4rem 1.25rem;
  border-radius: 3px;
  display: inline-flex !important;
  align-items: center;
  line-height: 1;
}

.nav-cta:hover { background: var(--accent-light) !important; }

/* ── Authorized Personnel nav button ── */
.nav-auth-wrap {
  position: relative;
}

.nav-auth-btn {
  background: rgba(130,80,200,0.18);
  color: #c99af0;
  padding: 0.4rem 1.1rem;
  border-radius: 3px;
  border: 1px solid rgba(130,80,200,0.35);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  line-height: 1;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.nav-auth-btn:hover,
.nav-auth-btn[aria-expanded="true"] {
  background: rgba(130,80,200,0.35);
  color: var(--white);
}

.auth-chevron {
  font-size: 0.65rem;
  transition: transform 0.2s;
}

.nav-auth-btn[aria-expanded="true"] .auth-chevron {
  transform: rotate(180deg);
}

/* ── Notification badge on Authorized Personnel button ─────── */
.nav-auth-btn { position: relative; }

.auth-notif-badge {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 10px;
  background: #d43d3d;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 18px;
  text-align: center;
  box-shadow: 0 0 0 2px var(--navy-900, #0a1226);
  animation: auth-notif-pulse 2s ease-in-out infinite;
  pointer-events: none;
}

.auth-notif-badge-mobile {
  position: relative;
  top: 0;
  right: 0;
  margin-left: 0.6rem;
  display: inline-block;
  vertical-align: middle;
  box-shadow: none;
}

@keyframes auth-notif-pulse {
  0%, 100% { box-shadow: 0 0 0 2px var(--navy-900, #0a1226), 0 0 0 0 rgba(212, 61, 61, 0.55); }
  50%      { box-shadow: 0 0 0 2px var(--navy-900, #0a1226), 0 0 0 6px rgba(212, 61, 61, 0); }
}

/* ── Dropdown panel ── */
.auth-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: var(--navy-900);
  border: 1px solid rgba(130,80,200,0.25);
  border-radius: 14px;
  padding: 1.5rem;
  min-width: 340px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 200;
}

.auth-dropdown.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.auth-drop-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* ── Auth cards (like wwd-card style) ── */
.auth-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 0.75rem;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  position: relative;
}

.auth-card:hover:not(.auth-card-locked) {
  background: rgba(91,141,224,0.1);
  border-color: rgba(91,141,224,0.4);
}

.auth-card-locked {
  opacity: 0.5;
  cursor: default;
}

.auth-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  transition: background 0.2s, border-color 0.2s;
}

.auth-card:hover:not(.auth-card-locked) .auth-card-icon {
  background: rgba(91,141,224,0.15);
  border-color: rgba(91,141,224,0.4);
}

.auth-card-icon svg {
  width: 26px;
  height: 26px;
  color: var(--accent-light);
}

.auth-card span:not(.auth-card-soon) {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  text-align: center;
  line-height: 1.3;
}

.auth-card-soon {
  position: absolute;
  top: 6px;
  right: 6px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-400);
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
  padding: 0.1rem 0.35rem;
}

/* ── Access Gate Modal ── */
.ap-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.ap-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.ap-modal {
  background: var(--navy-800);
  border: 1px solid rgba(91,141,224,0.25);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.ap-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--gray-400);
  font-size: 1rem;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  transition: color 0.2s;
}

.ap-close:hover { color: var(--white); }

.ap-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(91,141,224,0.3);
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.ap-input:focus { border-color: var(--accent-light); }

.ap-enter {
  margin-top: 0.5rem;
}

.mobile-link-agents {
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #c99af0;
  cursor: pointer;
  padding: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.mobile-menu.open { max-height: 520px; }

.mobile-link {
  display: block;
  padding: 1rem 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background var(--transition);
}

.mobile-link:hover { background: rgba(255,255,255,0.05); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, #1e3a72 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, #112045 0%, transparent 50%),
    linear-gradient(135deg, #080f20 0%, #0d1830 40%, #112045 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 50%, rgba(255,255,255,0.04) 0%, transparent 40%),
    radial-gradient(circle at 15% 20%, rgba(58,107,196,0.12) 0%, transparent 40%);
}

/* Subtle grid texture */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-left { display: flex; flex-direction: column; gap: 1.5rem; }

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-light);
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 440px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Ocean circle */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 460px;
}

.hero-circle {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 4px rgba(255,255,255,0.06),
    0 0 0 10px rgba(20,160,190,0.12),
    0 20px 80px rgba(20,160,190,0.45),
    0 0 60px rgba(255,255,255,0.06);
  background: #f0f8fd;
}

/* Sky layer — very pale almost-white at top, clear light blue, mid-blue near horizon */
.ocean-sky {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    #f0f8fd 0%,
    #e2f4fb 8%,
    #c8eaf6 18%,
    #9fd4e8 30%,
    #6fbedd 40%,
    #5aafd4 44%
  );
}

/* Horizon glowing white-teal line at ~44% */
.ocean-sky::after {
  content: '';
  position: absolute;
  bottom: 0; left: -10%; width: 120%; height: 14%;
  background: radial-gradient(
    ellipse at 50% 90%,
    rgba(255,255,255,0.96) 0%,
    rgba(180,235,248,0.7) 30%,
    rgba(120,210,235,0.25) 60%,
    transparent 85%
  );
  filter: blur(3px);
}

/* Water surface — bright teal-turquoise fading to rich ocean blue then dark deep */
.ocean-water {
  position: absolute;
  top: 46%; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    180deg,
    #1da8c4 0%,
    #18909e 12%,
    #0f7488 25%,
    #0d6080 38%,
    #0a4e68 55%,
    #074058 72%,
    #052e48 86%,
    #043a54 100%
  );
}

/* Wave-ripple texture — thin semi-transparent white horizontal lines */
.ocean-waves {
  position: absolute;
  top: 46%; left: 0; right: 0; bottom: 0;
  background:
    repeating-linear-gradient(
      180deg,
      transparent 0px, transparent 5px,
      rgba(255,255,255,0.07) 5px, rgba(255,255,255,0.07) 6px,
      transparent 6px, transparent 12px,
      rgba(255,255,255,0.05) 12px, rgba(255,255,255,0.05) 13px,
      transparent 13px, transparent 22px,
      rgba(255,255,255,0.035) 22px, rgba(255,255,255,0.035) 23px
    );
  animation: waveDrift 8s ease-in-out infinite alternate;
}

@keyframes waveDrift {
  0%   { transform: scaleX(1) translateY(0px); }
  50%  { transform: scaleX(1.04) translateY(-2px); }
  100% { transform: scaleX(0.97) translateY(1px); }
}

/* Sun-path reflection — vertical strip of white shimmer down center of water */
.ocean-reflection {
  position: absolute;
  top: 46%;
  left: 28%;
  width: 44%;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.55) 0%,
    rgba(255,255,255,0.28) 10%,
    rgba(200,240,250,0.14) 30%,
    rgba(150,220,240,0.07) 55%,
    transparent 80%
  );
  filter: blur(5px);
  animation: reflectionPulse 5s ease-in-out infinite alternate;
}

@keyframes reflectionPulse {
  0%   { opacity: 0.72; transform: scaleX(0.88); }
  50%  { opacity: 1;    transform: scaleX(1.12); }
  100% { opacity: 0.8;  transform: scaleX(0.94); }
}

@keyframes oceanShimmer {
  0%   { transform: translateX(0) skewX(0deg); opacity: 0.8; }
  50%  { transform: translateX(8px) skewX(0.5deg); opacity: 1; }
  100% { transform: translateX(-4px) skewX(-0.3deg); opacity: 0.85; }
}

.hero-v-mark {
  position: absolute;
  right: -10px;
  bottom: 20px;
  font-family: var(--font-head);
  font-size: 10rem;
  font-weight: 800;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(8px); opacity: 1; }
}

/* ============================================================
   WHAT IS IT
   ============================================================ */
.what-section {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  min-height: 680px;
}

.what-left {
  background: linear-gradient(160deg, var(--navy-800) 0%, var(--navy-700) 100%);
  padding: 5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.what-v-bg {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  font-family: var(--font-head);
  font-size: 14rem;
  font-weight: 800;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.what-right {
  background: linear-gradient(160deg, var(--navy-800) 0%, var(--navy-700) 100%);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 2.5rem;
}

.what-statement {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  font-weight: 300;
}

.what-statement strong {
  color: var(--white);
  font-weight: 700;
}

.what-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  border-left: 3px solid var(--accent-light);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  transition: transform var(--transition), box-shadow var(--transition);
}

.pillar:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.pillar-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--navy-700);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-icon svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.pillar h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
  letter-spacing: 0.03em;
}

.pillar p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* ============================================================
   WHAT WE DO
   ============================================================ */
.whatwedo-section {
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
  padding: 5rem 4rem 6rem;
}

.whatwedo-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.whatwedo-header .section-title {
  color: var(--white);
}

.whatwedo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.wwd-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.1rem;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.wwd-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.wwd-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  transition: background var(--transition), border-color var(--transition);
}

.wwd-card:hover .wwd-icon {
  background: rgba(91,141,224,0.15);
  border-color: rgba(91,141,224,0.4);
}

.wwd-icon svg {
  width: 38px;
  height: 38px;
  color: var(--accent-light);
}

.wwd-card p {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  line-height: 1.45;
  max-width: 150px;
}

/* ============================================================
   WHO WE ARE
   ============================================================ */
.who-section {
  padding: 6rem 2rem 7rem;
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
}

/* Adapt heading colours for dark background */
.who-section .section-tag.dark {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.who-section .section-title.dark { color: var(--white); }

.who-header {
  max-width: 1200px;
  margin: 0 auto 3.5rem;
}

.who-title-block {
  max-width: 500px;
}

.who-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.who-card {
  padding: 2.5rem;
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  opacity: 0;
  transform: translateY(24px);
}

.who-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow var(--transition), border-color var(--transition);
}

.who-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.09);
  border-color: var(--navy-400);
}

.who-icon {
  width: 56px;
  height: 56px;
  background: var(--navy-700);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.who-icon svg {
  width: 26px;
  height: 26px;
  color: var(--white);
}

.who-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 0.75rem;
}

.who-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================================
   HOW DO WE DO THAT
   ============================================================ */
.how-section {
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.how-v-bg {
  position: absolute;
  bottom: -4rem;
  right: 2rem;
  font-family: var(--font-head);
  font-size: 20rem;
  font-weight: 800;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.how-header {
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.how-intro {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  margin-top: 1rem;
  max-width: 480px;
}

.how-steps {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0;
  position: relative;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  padding-bottom: 0.5rem;
}

.step.visible {
  opacity: 1;
  transform: translateX(0);
}

.step-number-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-badge {
  width: 90px;
  height: 90px;
  background: var(--navy-800);
  border: 2px solid var(--navy-500);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 72%, 50% 100%, 0 72%);
  box-shadow: 0 4px 18px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.08);
}

.step-badge span {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  padding-bottom: 16px;
  letter-spacing: -0.02em;
}

/* Downward-pointing chevron connector arrow between steps */
.step-arrow-down {
  /* Align with the step badge column (120px wide) */
  width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 0;
}

.step-arrow-down::before {
  content: '';
  display: block;
  width: 52px;
  height: 30px;
  background: var(--navy-600);
  opacity: 0.8;
  clip-path: polygon(12% 0%, 88% 0%, 100% 50%, 88% 100%, 12% 100%, 0% 50%);
  /* chevron / downward-pointing shape using clip-path hexagon rotated 90° */
  clip-path: polygon(0 0, 100% 0, 100% 62%, 50% 100%, 0 62%);
}

.step-content {
  padding: 0.75rem 2rem 1.5rem 2rem;
}

.step-content h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.step-content p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 540px;
}

/* ============================================================
   WHAT SETS US APART
   ============================================================ */
.apart-section {
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
  padding: 6rem 2rem;
}

.apart-header {
  max-width: 1200px;
  margin: 0 auto 3.5rem;
}

.apart-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.apart-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
  opacity: 0;
  transform: translateY(24px);
}

.apart-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, background var(--transition), border-color var(--transition);
}

.apart-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.18);
}

/* Illustrated image blocks using CSS gradients to represent each category */
.apart-img {
  height: 160px;
  position: relative;
  overflow: hidden;
}

/* SVG illustrations are embedded directly in HTML */
.apart-img-1 { background: linear-gradient(135deg, #1a2f5e 0%, #0d1830 100%); }
.apart-img-2 { background: linear-gradient(135deg, #112045 0%, #1e3a72 100%); }
.apart-img-3 { background: linear-gradient(135deg, #0d1830 0%, #2c4f8c 100%); }
.apart-img-4 { background: linear-gradient(135deg, #1a2f5e 0%, #080f20 100%); }

/* Ensure inline SVGs fill their container and sit behind the overlay */
.apart-img > svg {
  display: block;
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 160px;
}

.apart-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.apart-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8,15,32,0.6) 100%);
}

.apart-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  padding: 1.25rem 1.25rem 0.5rem;
}

.apart-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  padding: 0 1.25rem 1.5rem;
  line-height: 1.65;
}

.apart-card p strong {
  color: rgba(255,255,255,0.9);
}

/* ============================================================
   MARKET FOCUS
   ============================================================ */
.market-section {
  display: grid;
  grid-template-columns: 380px 1fr;
  min-height: 560px;
}

.market-left {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}

.market-img-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,15,32,0.3) 0%, rgba(8,15,32,0.7) 100%),
    linear-gradient(135deg, #0d2a4a 0%, #1a3060 50%, #0d1830 100%);
}

/* City skyline silhouette */
.market-img-bg::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background:
    linear-gradient(to top, rgba(8,15,32,0.8) 0%, transparent 100%);
}

.market-img-bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background:
    /* Building silhouettes */
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.06) 0px, rgba(255,255,255,0.06) 30px,
      transparent 30px, transparent 50px,
      rgba(255,255,255,0.04) 50px, rgba(255,255,255,0.04) 80px,
      transparent 80px, transparent 110px,
      rgba(255,255,255,0.07) 110px, rgba(255,255,255,0.07) 150px,
      transparent 150px, transparent 180px
    );
}

.market-left-content {
  position: relative;
  z-index: 2;
  padding: 4rem 3rem;
}

.market-right {
  background-color: var(--white);
  background-image: linear-gradient(to bottom, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.86) 60%, rgba(255,255,255,0.80) 100%), url('bg_city.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 3.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.market-divider {
  width: 1px;
  background: var(--gray-100);
  margin: 0 2.5rem;
  align-self: stretch;
}

.market-col { display: flex; flex-direction: column; gap: 1.25rem; }

.market-icon {
  width: 52px;
  height: 52px;
  background: var(--off-white);
  border: 1.5px solid var(--gray-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.market-icon svg {
  width: 32px;
  height: 32px;
  color: var(--navy-600);
}

.market-col h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-800);
}

.market-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.market-list li {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.5;
  padding-left: 1.1rem;
  position: relative;
}

.market-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--navy-500);
  font-size: 1rem;
  line-height: 1.5;
}

/* ============================================================
   MEET THE TEAM
   ============================================================ */
.team-section {
  background-color: var(--off-white);
  background-image: linear-gradient(to bottom, rgba(244,246,250,0.93) 0%, rgba(244,246,250,0.88) 60%, rgba(244,246,250,0.82) 100%), url('bg_arrows.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 500px;
}

.team-header-col {
  background: linear-gradient(160deg, var(--navy-800) 0%, var(--navy-700) 100%);
  padding: 4rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.team-header-col::after {
  content: 'V';
  position: absolute;
  bottom: -2rem; right: -1.5rem;
  font-family: var(--font-head);
  font-size: 10rem;
  font-weight: 800;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}

.team-cards {
  padding: 3rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.team-card {
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--gray-100);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: transform var(--transition), box-shadow var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.team-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.team-avatar {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gray-100);
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.team-avatar-1 {
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-600) 100%);
}

.team-avatar-2 {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-500) 100%);
}

/* Solo team layout — used when only one partner card is rendered.
   Centers the single card, scales the avatar up to fill the freed
   visual space. */
.team-cards.team-cards-solo {
  grid-template-columns: 1fr;
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem 2.5rem 4rem;
}
.team-card.team-card-solo .team-header {
  align-items: center;
  padding: 2.5rem 2.5rem 1.5rem;
}
.team-card.team-card-solo .team-avatar {
  width: 200px;
  height: 200px;
  border-width: 4px;
}
.team-card.team-card-solo .team-header-text h3 {
  font-size: 1.5rem;
}
.team-card.team-card-solo .team-header-text .team-role {
  font-size: 1rem;
}

.avatar-initials {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.1em;
}

.team-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.team-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.5rem 0;
}

.team-header-text h3 {
  margin: 0;
  font-size: 1.05rem;
}

.team-header-text .team-role {
  display: block;
  margin-top: 0.2rem;
}

.team-info h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-800);
}

.team-role {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: -0.25rem;
}

.team-info p {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.65;
}

.team-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}

.team-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--navy-600);
  text-decoration: none;
  transition: color var(--transition);
}

.team-contact-item:hover { color: var(--accent); }

.team-contact-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  padding: 6rem 2rem;
  background-color: var(--off-white);
  background-image: linear-gradient(to bottom, rgba(244,246,250,0.93) 0%, rgba(244,246,250,0.88) 60%, rgba(244,246,250,0.82) 100%), url('bg_arrows.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.contact-sub {
  font-size: 1rem;
  color: var(--gray-600);
  margin-top: 1rem;
  line-height: 1.7;
  max-width: 380px;
}

.contact-info {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--navy-600);
  flex-shrink: 0;
}

/* Form */
.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy-700);
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-100);
  border-radius: 5px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--navy-800);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(58,107,196,0.12);
  background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-900);
  padding: 3rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-v {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
}

.footer-name {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--white);
}

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

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

.footer-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--transition);
}

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

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  margin-top: 0.5rem;
}

/* ============================================================
   SUCCESS STATE
   ============================================================ */
.form-success {
  text-align: center;
  padding: 2rem;
  color: var(--navy-700);
}

.form-success .success-icon {
  width: 56px;
  height: 56px;
  background: #eaf2e3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.form-success h3 { font-family: var(--font-head); margin-bottom: 0.5rem; }
.form-success p { font-size: 0.9rem; color: var(--gray-600); }

/* ============================================================
   THE METHODOLOGY
   ============================================================ */
.methodology-section {
  display: grid;
  grid-template-columns: 380px 1fr;
  min-height: 620px;
}

.meth-left {
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-700) 100%);
  padding: 5rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Constrain titles inside narrow left panels */
.meth-left .section-title,
.ripple-left .section-title,
.what-left .section-title,
.team-header-col .section-title {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: none;
}

.meth-v-bg {
  position: absolute;
  bottom: -2rem; right: -1.5rem;
  font-family: var(--font-head);
  font-size: 11rem;
  font-weight: 800;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}

.meth-right {
  background-color: var(--off-white);
  background-image: linear-gradient(to bottom, rgba(244,246,250,0.90) 0%, rgba(244,246,250,0.85) 60%, rgba(244,246,250,0.80) 100%), url('bg_city.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
}

.meth-wheel-wrap {
  position: relative;
  width: 500px;
  height: 500px;
  flex-shrink: 0;
}

/* SVG-based donut wheel */
.meth-wheel-svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

/* Annotation labels */
.meth-annotations {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.meth-ann {
  position: absolute;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy-700);
  max-width: 110px;
  line-height: 1.35;
  padding: 0.3rem 0;
  border-left: 2px solid var(--accent);
  padding-left: 0.5rem;
}

/* Positioned close to the diagonal corners of the donut ring (~22% inward) */
.meth-ann-tl { top: 18%; left: 2%; text-align: left; }
.meth-ann-tr { top: 18%; right: 2%; text-align: right; border-left: none; border-right: 2px solid var(--accent); padding-left: 0; padding-right: 0.5rem; }
.meth-ann-bl { bottom: 18%; left: 2%; text-align: left; }
.meth-ann-br { bottom: 18%; right: 2%; text-align: right; border-left: none; border-right: 2px solid var(--accent); padding-left: 0; padding-right: 0.5rem; }

/* ============================================================
   THE PILLAR FLOW
   ============================================================ */
.pillar-section {
  background-color: var(--white);
  background-image: linear-gradient(to bottom, rgba(255,255,255,0.90) 0%, rgba(255,255,255,0.85) 50%, rgba(255,255,255,0.80) 100%), url('bg_flow.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5rem 2rem 4rem;
}

.pillar-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.pillar-flow {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  align-items: start;
}

.pf-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  opacity: 0;
  transform: translateY(20px);
}

.pf-step.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.pf-pin {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-600);
  width: 38px;
  height: 38px;
  border: 2px solid var(--navy-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  position: relative;
  z-index: 2;
  margin-bottom: -1px;
}

/* chevron shape */
.pf-chevron {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--white);
  text-align: center;
  padding: 0.7rem 1.5rem 0.7rem 2rem;
  width: 100%;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%, 14px 50%);
}

.pf-step:first-child .pf-chevron {
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
  padding-left: 1.5rem;
}

.pf-c1 { background: #1e3a72; }
.pf-c2 { background: #2c5090; }
.pf-c3 { background: #3a6bc4; }
.pf-c4 { background: #5a85c4; }
.pf-c5 { background: #2a8a7a; }

.pf-icon {
  width: 64px;
  height: 64px;
  background: var(--off-white);
  border: 1.5px solid var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0 0.75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.pf-icon svg {
  width: 26px;
  height: 26px;
  color: var(--navy-600);
}

.pf-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
  padding: 0 0.5rem;
}

.pf-items li {
  font-size: 0.78rem;
  color: var(--gray-600);
  text-align: center;
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--gray-100);
  border-radius: 4px;
  background: var(--off-white);
  line-height: 1.35;
}

/* ============================================================
   RIPPLE EFFECT
   ============================================================ */
.ripple-section {
  display: grid;
  grid-template-columns: 260px 1fr;
  background: linear-gradient(160deg, var(--off-white) 0%, var(--gray-100) 60%, var(--off-white) 100%);
  min-height: 500px;
  position: relative;
  overflow: hidden;
}

/* Water-ripple rings overlay */
.ripple-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 120% 80% at 60% 50%, transparent 18%, rgba(58,107,196,0.09) 18.8%, transparent 19.6%),
    radial-gradient(ellipse 120% 80% at 60% 50%, transparent 30%, rgba(58,107,196,0.07) 30.8%, transparent 31.6%),
    radial-gradient(ellipse 120% 80% at 60% 50%, transparent 43%, rgba(58,107,196,0.06) 43.8%, transparent 44.6%),
    radial-gradient(ellipse 120% 80% at 60% 50%, transparent 57%, rgba(42,138,122,0.05) 57.8%, transparent 58.6%),
    radial-gradient(ellipse 120% 80% at 60% 50%, transparent 71%, rgba(42,138,122,0.04) 71.8%, transparent 72.6%),
    radial-gradient(ellipse 120% 80% at 60% 50%, transparent 86%, rgba(30,58,114,0.05) 86.8%, transparent 87.6%);
  pointer-events: none;
  z-index: 0;
}

/* Override heading colours for light ripple background */
.ripple-section .section-tag {
  background: rgba(58,107,196,0.12);
  color: var(--navy-700);
  border: 1px solid rgba(58,107,196,0.2);
}
.ripple-section .section-title {
  color: var(--navy-800);
}

.ripple-left,
.ripple-right {
  position: relative;
  z-index: 1;
}

.ripple-left {
  padding: 5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(0,0,0,0.08);
}

.ripple-v-bg {
  position: absolute;
  bottom: -2rem; right: -1rem;
  font-family: var(--font-head);
  font-size: 10rem;
  font-weight: 800;
  color: rgba(0,0,0,0.05);
  line-height: 1;
  pointer-events: none;
}

.ripple-right {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ripple-caption {
  font-size: 0.9rem;
  color: var(--gray-600);
  max-width: 560px;
  line-height: 1.7;
  font-style: italic;
}

.ripple-diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: center;
  flex: 1;
}

.ripple-inputs,
.ripple-outputs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ripple-node {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.85rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.rn-num {
  font-size: 0.65rem;
  font-weight: 700;
  opacity: 0.75;
  min-width: 18px;
}

/* Input node colors */
.ri-blue   { background: rgba(58, 107, 196, 0.5); border: 1px solid rgba(58,107,196,0.4); }
.ri-gray   { background: rgba(100, 116, 139, 0.4); border: 1px solid rgba(100,116,139,0.3); }
.ri-teal   { background: rgba(42, 138, 122, 0.45); border: 1px solid rgba(42,138,122,0.35); }
.ri-purple { background: rgba(130, 80, 200, 0.45); border: 1px solid rgba(130,80,200,0.35); }

/* Output node colors */
.ro-blue   { background: rgba(58, 107, 196, 0.7); border: 1px solid rgba(58,107,196,0.5); }
.ro-gray   { background: rgba(100, 116, 139, 0.55); border: 1px solid rgba(100,116,139,0.4); }
.ro-navy   { background: rgba(30, 58, 114, 0.65); border: 1px solid rgba(30,58,114,0.5); }
.ro-teal   { background: rgba(42, 138, 122, 0.65); border: 1px solid rgba(42,138,122,0.5); }
.ro-purple { background: rgba(130, 80, 200, 0.6); border: 1px solid rgba(130,80,200,0.45); }

.ripple-center-col {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 0.5rem;
}

.ripple-hub {
  background: rgba(58, 107, 196, 0.12);
  border: 2px solid rgba(58, 107, 196, 0.4);
  border-radius: 8px;
  padding: 1.25rem 1rem;
  text-align: center;
  min-width: 120px;
  backdrop-filter: blur(4px);
}

.ripple-hub strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--navy-700);
  margin-bottom: 0.4rem;
}

.ripple-hub p {
  font-size: 0.68rem;
  color: var(--gray-600);
  line-height: 1.4;
}

.ripple-lines-left,
.ripple-lines-right {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
  align-items: center;
  justify-content: space-around;
  min-height: 200px;
}

.ripple-lines-left span,
.ripple-lines-right span {
  display: block;
  height: 1px;
  width: 28px;
  background: rgba(91, 141, 224, 0.35);
}

/* ============================================================
   VISION & INSIGHTS SECTION
   ============================================================ */
.vi-section {
  background-color: var(--off-white);
  background-image: linear-gradient(to bottom, rgba(244,246,250,0.88) 0%, rgba(244,246,250,0.82) 60%, rgba(244,246,250,0.75) 100%), url('bg_binary.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5rem 2rem;
}

.vi-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.vi-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.vi-card {
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--gray-100);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  opacity: 0;
  transform: translateY(20px);
}

.vi-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.vi-card-header {
  padding: 2rem 2rem 1.25rem;
  border-bottom: 1px solid var(--gray-100);
}

.vi-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
  margin-bottom: 0.75rem;
  background: var(--navy-700);
  color: var(--white);
}

.vi-tag-insights {
  background: #2a8a7a;
}

.vi-card-header h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-800);
}

.vi-detail {
  padding: 1.25rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vi-lead {
  font-size: 0.9rem;
  color: var(--navy-700);
  line-height: 1.65;
  padding: 1.25rem 2rem 0;
}

.vi-detail p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Budget hierarchy chain */
.vi-hierarchy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
  background: var(--off-white);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  border: 1px solid var(--gray-100);
}

.vi-hierarchy span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy-700);
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
}

.vi-hierarchy svg {
  width: 12px;
  height: 12px;
  color: var(--gray-400);
  flex-shrink: 0;
}

.vi-example {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
}

.vi-label {
  font-weight: 600;
  color: var(--navy-700);
}

.vi-example code {
  font-family: 'Courier New', monospace;
  font-size: 0.82rem;
  background: var(--navy-800);
  color: #7dd3ba;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.vi-cta-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-600);
  border-top: 1px solid var(--gray-100);
  padding-top: 0.75rem;
}

/* CF Bullets */
.vi-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vi-bullets li {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.65;
  padding-left: 1.25rem;
  position: relative;
}

.vi-bullets li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--navy-500);
  font-size: 1rem;
}

.vi-bullets li strong { color: var(--navy-700); }

.vi-purpose {
  background: var(--off-white);
  border-left: 3px solid var(--accent);
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--navy-700);
  border-radius: 0 4px 4px 0;
}

.vi-purpose strong { color: var(--navy-900); }

.vi-metrics {
  display: flex;
  gap: 0.75rem;
}

.vi-metric {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 5px;
}

.vm-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy-700);
}

.vm-icon {
  font-size: 1rem;
  font-weight: 700;
  color: #2a8a7a;
}

/* contact info link style */
.contact-info a {
  color: var(--gray-600);
  text-decoration: none;
  transition: color var(--transition);
}
.contact-info a:hover { color: var(--accent); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .apart-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .market-section {
    grid-template-columns: 1fr;
  }

  .market-left {
    min-height: 220px;
    align-items: flex-end;
  }

  .market-right {
    grid-template-columns: 1fr auto 1fr;
  }

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

  .pillar-flow {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .pf-chevron {
    clip-path: none !important;
    border-radius: 4px;
    padding: 0.7rem 1rem !important;
  }

  .methodology-section {
    grid-template-columns: 1fr;
  }

  .meth-left { padding: 3rem 2rem; min-height: unset; }

  .meth-right { padding: 3rem 2rem; }

  .ripple-section {
    grid-template-columns: 1fr;
  }

  .ripple-left {
    padding: 3rem 2rem;
    min-height: unset;
  }

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

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

  .what-section {
    grid-template-columns: 1fr;
  }

  .what-left { padding: 3.5rem 2rem; min-height: unset; }
  .what-right { padding: 3.5rem 2rem; }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .team-header-col {
    padding: 3rem 2rem;
    min-height: unset;
  }

  .team-cards {
    padding: 2rem;
    grid-template-columns: 1fr 1fr;
  }

  .market-right {
    padding: 3rem 2rem;
    grid-template-columns: 1fr;
  }

  .market-divider {
    width: auto;
    height: 1px;
    margin: 1.5rem 0;
  }

  .contact-sub { max-width: 100%; }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-left { align-items: center; }
  .hero-subtitle { text-align: center; }
  .hero-right { height: 280px; }
  .hero-circle { width: 230px; height: 230px; }
  .hero-v-mark { display: none; }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .how-steps { padding: 0; }
  .step { grid-template-columns: 80px 1fr; }
  .step-badge { width: 50px; height: 50px; }
  .step-badge span { font-size: 1.1rem; }
  .step-content { padding: 0 1rem 2.5rem; }

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

  .whatwedo-grid { grid-template-columns: repeat(2, 1fr); }
  .whatwedo-section { padding: 4rem 2rem 5rem; }

  .team-cards { grid-template-columns: 1fr; padding: 1.5rem; }

  .pillar-flow { grid-template-columns: 1fr 1fr; gap: 1rem; }

  .ripple-diagram { grid-template-columns: 1fr; gap: 1rem; }
  .ripple-center-col { flex-direction: column; }
  .ripple-lines-left, .ripple-lines-right { flex-direction: row; min-height: unset; }
  .ripple-lines-left span, .ripple-lines-right span { width: 1px; height: 16px; }

  .vi-metrics { flex-direction: column; }

  .meth-wheel-wrap { width: 320px; height: 320px; }
  .meth-wheel { width: 280px; height: 280px; }
  .mw-center { width: 80px; height: 80px; }
  .mw-center svg { width: 36px; height: 36px; }
  .meth-ann { font-size: 0.7rem; max-width: 90px; }

  .form-row { grid-template-columns: 1fr; }

  .footer-links { gap: 1.25rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .btn { width: 100%; justify-content: center; }
  .whatwedo-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   AOP SECTION 1 — OBJECTIVES / KPIs / ACTION ITEMS
   ============================================================ */
.aop-section {
  background-color: var(--off-white);
  background-image: linear-gradient(to bottom, rgba(244,246,250,0.93) 0%, rgba(244,246,250,0.88) 60%, rgba(244,246,250,0.82) 100%), url('bg_city.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5rem 2rem 6rem;
}

.aop-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.aop-intro-text {
  max-width: 780px;
  margin-top: 1.25rem;
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.aop-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.aop-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  padding: 2.25rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  opacity: 0;
  transform: translateY(20px);
}

.aop-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.aop-card-icon {
  width: 52px;
  height: 52px;
  background: var(--navy-700);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.aop-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.aop-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-800);
}

.aop-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.65;
}

.aop-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.25rem;
}

.aop-list li {
  font-size: 0.83rem;
  color: var(--navy-700);
  padding: 0.3rem 0.6rem 0.3rem 1rem;
  border-left: 2px solid var(--navy-500);
  background: var(--off-white);
  border-radius: 0 3px 3px 0;
}

/* ============================================================
   AOP SECTION 2 — STRUCTURE & FRAMEWORK
   ============================================================ */
.aop-struct-section {
  background-color: var(--white);
  background-image: linear-gradient(to bottom, rgba(255,255,255,0.93) 0%, rgba(255,255,255,0.88) 60%, rgba(255,255,255,0.82) 100%), url('bg_diamond.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5rem 2rem 6rem;
}

.aop-struct-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.aop-struct-body {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}

.aop-struct-left p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.aop-struct-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.5rem;
}

.aop-struct-list li {
  font-size: 0.85rem;
  color: var(--navy-700);
  padding: 0.4rem 0.75rem;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 4px;
  position: relative;
  padding-left: 1.5rem;
}

.aop-struct-list li::before {
  content: '›';
  position: absolute;
  left: 0.6rem;
  color: var(--accent);
  font-weight: 700;
}

.fw-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 1rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fw-table-wrap {
  overflow-x: auto;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

.fw-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.83rem;
  background: var(--white);
}

.fw-table thead tr {
  background: var(--navy-700);
  color: var(--white);
}

.fw-table th {
  padding: 0.85rem 1rem;
  text-align: left;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.fw-table td {
  padding: 0.75rem 1rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
  vertical-align: top;
}

/* ============================================================
   VISIBILITY DEMO — Play button + Video modal
   ============================================================ */

/* Make the offering image a positioning context */
.offering-img {
  position: relative;
}

/* Play button — circular overlay on the card image */
.offering-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(10, 14, 30, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
  animation: vplay-pulse 2.8s ease-in-out infinite;
  z-index: 2;
}

.offering-play-btn svg {
  width: 20px;
  height: 20px;
  margin-left: 3px; /* optical centering of play triangle */
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4));
}

.offering-play-btn:hover,
.offering-play-btn:focus-visible {
  background: rgba(91, 141, 224, 0.72);
  border-color: rgba(255, 255, 255, 0.85);
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 0 22px rgba(91, 141, 224, 0.55);
  animation: none;
  outline: none;
}

@keyframes vplay-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(91, 141, 224, 0.45); }
  55%       { box-shadow: 0 0 0 11px rgba(91, 141, 224, 0); }
}

/* ── Modal overlay ── */
.vdemo-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 7, 18, 0.92);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.vdemo-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

/* ── Modal box ── */
.vdemo-inner {
  position: relative;
  width: min(94vw, 1140px);
  background: #070b18;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(91, 141, 224, 0.22);
  box-shadow: 0 0 90px rgba(0,0,0,0.85), 0 0 45px rgba(91, 141, 224, 0.12);
  transform: scale(0.91) translateY(12px);
  transition: transform 0.3s cubic-bezier(0.34, 1.3, 0.64, 1);
}

.vdemo-overlay.is-open .vdemo-inner {
  transform: scale(1) translateY(0);
}

/* ── Close button ── */
.vdemo-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s ease;
}

.vdemo-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.vdemo-close svg {
  width: 17px;
  height: 17px;
}

/* ── Video element ── */
#vdemoVideo {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  /* native controls include fullscreen — no extra button needed */
}

.fw-obj-cell {
  font-weight: 600;
  color: var(--navy-700) !important;
  background: var(--off-white);
}

.fw-table tr:last-child td {
  border-bottom: none;
}

.fw-table td ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.fw-table td ul li {
  font-size: 0.8rem;
  padding-left: 0.9rem;
  position: relative;
}

.fw-table td ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ============================================================
   FINANCIAL MODEL SECTION
   ============================================================ */
.finmodel-section {
  background-color: var(--off-white);
  background-image: linear-gradient(to bottom, rgba(244,246,250,0.93) 0%, rgba(244,246,250,0.88) 60%, rgba(244,246,250,0.82) 100%), url('bg_arrows.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5rem 2rem 6rem;
}

.finmodel-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.finmodel-body {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.finmodel-intro p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.finmodel-keypoints h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 1.25rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.finmodel-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.finmodel-list li {
  font-size: 0.88rem;
  color: var(--navy-700);
  padding: 0.5rem 0.75rem 0.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-left: 3px solid var(--navy-500);
  border-radius: 0 5px 5px 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.fm-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE — new sections
   ============================================================ */
@media (max-width: 1100px) {
  .aop-grid { grid-template-columns: 1fr 1fr; }
  .aop-struct-body { grid-template-columns: 1fr; gap: 2rem; }
  .finmodel-body { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 700px) {
  .aop-grid { grid-template-columns: 1fr; }
  .fw-table { font-size: 0.75rem; }
}

/* ============================================================
   OUR OFFERINGS
   ============================================================ */
.offerings-section {
  background: var(--white);
}

.offerings-banner {
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
  padding: 3.5rem 2rem;
  text-align: center;
}

.offerings-banner-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.06em;
  margin: 0;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
  gap: 2rem;
}

.offering-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offering-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.13);
}

.offering-img {
  width: 100%;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--navy-700);
}

.offering-body {
  padding: 1.4rem 1.25rem 1.75rem;
  flex: 1;
}

.offering-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-800);
  margin: 0 0 0.75rem;
}

.offering-desc {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

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

@media (max-width: 560px) {
  .offerings-grid { grid-template-columns: 1fr; padding: 2rem 1.25rem 3rem; }
}

/* ============================================================
   LEGAL — Footer links, disclaimer, cookie banner
   ============================================================ */

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.75rem 0 0;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-legal-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-sep { color: rgba(255,255,255,0.25); font-size: 0.8rem; }

.footer-disclaimer {
  max-width: 680px;
  margin: 1.25rem auto 0;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.65;
  text-align: center;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 2rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.cookie-banner.show { transform: translateY(0); }

.cookie-banner-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
  line-height: 1.6;
}

.cookie-banner-text a { color: rgba(255,255,255,0.85); }

.cookie-banner-btn {
  background: var(--navy-500);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 0.55rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.cookie-banner-btn:hover { background: var(--navy-400); }

/* Contact form consent */
.form-consent { margin-top: 0.25rem; }

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
}

.consent-label input[type="checkbox"] {
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--navy-600);
}

.consent-label span {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.consent-label a { color: var(--navy-600); }

/* Data processing notice in agents.html */
.data-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: #e8f4fd;
  border: 1px solid #b3d4ef;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  color: #1a4a6b;
  line-height: 1.55;
}

.data-notice svg {
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: #1a6ea8;
}

.data-notice a { color: #1a4a6b; font-weight: 600; }

/* =====================================================================
   OFFERINGS — "Already a customer?" CTA with beeping blue dot
   ===================================================================== */
.offering-card { position: relative; }

.offering-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: absolute;
  bottom: 0.85rem;
  right: 0.85rem;
  background: rgba(58, 107, 196, 0.08);
  border: 1px solid rgba(58, 107, 196, 0.25);
  color: var(--accent, #3a6bc4);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem 0.35rem 0.55rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, transform 0.15s;
}

.offering-cta:hover {
  background: rgba(58, 107, 196, 0.16);
  border-color: rgba(58, 107, 196, 0.45);
  transform: translateY(-1px);
}

.offering-cta:active { transform: translateY(0); }

.offering-cta.is-disabled {
  cursor: not-allowed;
  opacity: 0.55;
}
.offering-cta.is-disabled:hover {
  background: rgba(58, 107, 196, 0.08);
  border-color: rgba(58, 107, 196, 0.25);
  transform: none;
}

.offering-cta-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent, #3a6bc4);
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(58, 107, 196, 0.6);
  animation: offering-beep 1.5s ease-out infinite;
}

.offering-cta.is-disabled .offering-cta-dot {
  background: var(--gray-400, #9ca3af);
  animation: none;
  box-shadow: none;
}

@keyframes offering-beep {
  0%   { box-shadow: 0 0 0 0   rgba(58, 107, 196, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(58, 107, 196, 0); }
  100% { box-shadow: 0 0 0 0   rgba(58, 107, 196, 0); }
}

/* On very small screens, drop the text and just show the pulsing dot */
@media (max-width: 480px) {
  .offering-cta-text { display: none; }
  .offering-cta {
    padding: 0.4rem;
    border-radius: 50%;
  }
}
