/*
Theme Name: Grandview Edge
Theme URI: https://grandviewcorp.com
Author: Grandview Engineering & Antigravity
Author URI: https://grandviewcorp.com
Description: Enterprise WordPress Theme built on the GrandView Landing Page Module Framework (LP-01 to LP-34), featuring authentic leadership portraits, living magazine thought leadership, 2-column certified vendor alliances with prominent active partner logos and frameless content bubbles, Section 02 Enterprise Pain Points Interactive Timeline with custom polygonal architectural frame, and 3-stage delivery model.
Version: 5.0.0
Text Domain: grandview-edge
*/

:root {
  /* Grandview Corp Canonical Tokens */
  --color-1: #000000;
  --color-2: #666666;
  --color-3: #FFFFFF;
  --color-4: #2EA3F2;  /* Electric Blue CTA & Active Highlights */
  --color-5: #333333;  /* Body Text */
  --color-6: #263655;  /* Primary Deep Navy */
  --color-7: #253656;  /* Secondary Dark Navy */
  --color-8: #111111;
  --color-9: #4993C2;  /* Tech Steel Blue */
  --color-10: #222222; /* Headings Graphite */
  --color-11: #0073AA; /* Link Blue */
  --color-12: #EEEEEE;
  --color-13: #323232;
  --color-14: #EDEDED; /* Border & Subtle BG */
  --color-15: #EFEFEF; /* Page Background */

  /* Framework Semantic Variables */
  --gv-bg-body: #F4F6F9;
  --gv-bg-card: var(--color-3);
  --gv-bg-subtle: #EAF0F8;
  --gv-navy: var(--color-6);
  --gv-navy-dark: #131c2e;
  --gv-navy-deep: #080e18;
  --gv-blue: var(--color-4);
  --gv-steel-blue: var(--color-9);
  --gv-link: var(--color-11);
  --gv-border: #D5DFED;
  --gv-border-dark: rgba(255, 255, 255, 0.12);
  --gv-text-heading: var(--color-10);
  --gv-text-body: var(--color-5);
  --gv-text-muted: var(--color-2);

  /* Strict Sharp Swiss Geometry & Layout Units */
  --radius-none: 0px;
  --max-width: 1320px;
  --max-width-narrow: 960px;
  --header-height: 76px;
  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--gv-bg-body);
  color: var(--gv-text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

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

a {
  color: var(--gv-blue);
  text-decoration: none;
  transition: all 0.15s ease;
}
a:hover {
  color: var(--gv-navy);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--gv-text-heading);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

.container-narrow {
  width: 100%;
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

.section-header-edge {
  margin-bottom: 48px;
}

.section-eyebrow {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gv-blue);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.section-eyebrow::before {
  content: "✦";
  color: var(--gv-blue);
  font-size: 11px;
}

.section-title {
  font-size: clamp(30px, 3.8vw, 44px);
  color: var(--gv-navy);
  letter-spacing: -0.03em;
}

/* Header & Navigation */
.site-header {
  background-color: #0e1726;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.site-logo {
  display: inline-flex;
  align-items: center;
}

.site-logo img {
  height: 38px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-12);
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: var(--radius-none);
  transition: all 0.14s ease;
}

.nav-link:hover, .nav-item:hover .nav-link {
  color: var(--color-3);
  background-color: rgba(255, 255, 255, 0.08);
}

.nav-link svg {
  transition: transform 0.2s ease;
  opacity: 0.7;
}

.nav-item:hover .nav-link svg {
  transform: rotate(180deg);
  opacity: 1;
}

/* Buttons */
.btn {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 26px;
  border-radius: var(--radius-none);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.18s ease;
  border: 1px solid transparent;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background-color: var(--gv-blue);
  color: var(--color-3);
  border-color: var(--gv-blue);
}

.btn-primary:hover {
  background-color: var(--color-3);
  color: var(--gv-navy);
  border-color: var(--color-3);
  box-shadow: 0 8px 24px rgba(46, 163, 242, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--gv-navy);
  border-color: var(--gv-navy);
}

.btn-secondary:hover {
  background-color: var(--gv-navy);
  color: var(--color-3);
}

.btn-white {
  background-color: var(--color-3);
  color: var(--gv-navy);
  border-color: var(--color-3);
}

.btn-white:hover {
  background-color: transparent;
  color: var(--color-3);
  border-color: var(--color-3);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--color-3);
  border-color: rgba(255, 255, 255, 0.3);
}

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

/* ============================================================== */
/* Mega Menu Dropdowns (Clean, Open Architectural Layout) */
/* ============================================================== */
.mega-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #0B1320;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(46, 163, 242, 0.1);
  padding: 24px 28px;
  display: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease;
  transform: translateY(6px);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1001;
  overflow: hidden;
}

/* Subtle Technical Precision Grid Overlay in Dropdown Background */
.mega-menu::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(to right, rgba(46, 163, 242, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(46, 163, 242, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: 0 0;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 30%, transparent 95%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 30%, transparent 95%);
  pointer-events: none;
  z-index: 1;
}

.nav-item:hover .mega-menu {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Solutions Mega Menu: 4 Open Columns */
.mega-menu--solutions {
  width: 1060px;
  left: -200px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.nav-item:hover .mega-menu--solutions { display: grid; }

/* Industries Mega Menu: 2 Open Columns */
.mega-menu--industries {
  width: 680px;
  left: -120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.nav-item:hover .mega-menu--industries { display: grid; }

/* Simple Dropdowns (Insights, About) */
.mega-menu--simple {
  width: 380px;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
}
.nav-item:hover .mega-menu--simple { display: flex; }

/* Clean Column without box wrapping */
.menu-col {
  background: transparent;
  padding: 0;
  border: none;
  position: relative;
  z-index: 2;
}

.mega-menu--simple a {
  position: relative;
  z-index: 2;
}

.menu-col-title {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gv-blue);
  margin-bottom: 14px;
  padding-bottom: 0;
  border: none;
}

.menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Clean interactive item links without boxy card borders */
.menu-card-link {
  text-decoration: none;
  background: transparent;
  border: 1px solid transparent;
  padding: 8px 10px;
  margin: 0 -10px;
  border-radius: 4px;
  display: block;
  transition: all 0.15s ease;
}

.menu-card-link:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.menu-card-title {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  color: #FFFFFF;
  display: block;
  margin-bottom: 3px;
  transition: color 0.15s ease;
}

.menu-card-link:hover .menu-card-title {
  color: var(--gv-blue);
}

.menu-card-desc {
  font-size: 11.5px;
  color: #8C9EB5;
  font-weight: 400;
  display: block;
  line-height: 1.45;
}

/* Sub-links in Industries */
.menu-sub-link {
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  padding: 8px 10px;
  margin: 0 -10px;
  border-radius: 4px;
  display: block;
  transition: all 0.15s ease;
  border: 1px solid transparent;
  background: transparent;
}

.menu-sub-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--gv-blue);
  border-color: rgba(255, 255, 255, 0.08);
}

.menu-sub-desc {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: #8C9EB5;
  font-weight: 400;
  display: block;
  margin-top: 3px;
  line-height: 1.45;
}

/* ============================================================== */
/* [LP-01] HERO: AMBITIOUS POSTURE + STEVE JOHNSON SILHOUETTE */
/* ============================================================== */

.lp01-hero {
  position: relative;
  background-color: #0a111e;
  background-image: 
    radial-gradient(ellipse 70% 55% at 75% 35%, rgba(46, 163, 242, 0.14) 0%, rgba(14, 23, 38, 0.6) 60%, transparent 80%),
    linear-gradient(to bottom, #090f1a 0%, #0e1726 50%, #152238 85%, #0e1726 100%);
  color: var(--color-3);
  padding: 85px 0 65px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lp01-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 85%);
  pointer-events: none;
}

.lp01-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: flex-end;
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}

.hero-text-col {
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gv-blue);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-eyebrow::before {
  content: "✦";
  color: var(--gv-blue);
  font-size: 13px;
}

.lp01-hero h1 {
  color: var(--color-3);
  font-size: clamp(34px, 4.3vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 22px;
}

.lp01-hero h1 span {
  color: var(--gv-blue);
  display: inline;
}

.lp01-lead {
  font-size: clamp(16px, 1.6vw, 19px);
  color: #C0CBE0;
  line-height: 1.68;
  margin-bottom: 34px;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Right: Steve Johnson Large Silhouette Stage */
.hero-person-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 520px;
}

.hero-person-glow {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(46, 163, 242, 0.28) 0%, rgba(38, 54, 85, 0.45) 50%, transparent 75%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

.hero-person-silhouette {
  position: relative;
  z-index: 2;
  height: 500px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.7));
  display: block;
}

/* Highlighted Executive Nameplate & Quote */
.hero-person-card {
  position: absolute;
  bottom: -5px;
  left: -10px;
  right: -10px;
  z-index: 3;
  background: rgba(10, 17, 30, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  padding: 18px 22px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
}

.hero-person-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.hero-person-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--color-3);
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero-person-title {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gv-blue);
}

.hero-person-quote-text {
  font-size: 13px;
  color: #CBD5E1;
  line-height: 1.5;
  font-style: italic;
}

.hero-person-quote-text span {
  color: var(--color-3);
  font-style: normal;
  font-weight: 700;
}

/* ============================================================== */
/* HERO BOTTOM: CERTIFIED TECHNOLOGY ECOSYSTEM (ABOVE THE FOLD) */
/* ============================================================== */

.hero-ecosystem-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.hero-ecosystem-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7E8EA8;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-ecosystem-logos {
  display: flex;
  align-items: center;
  gap: 44px;
  flex-wrap: wrap;
}

.hero-ecosystem-item {
  display: inline-flex;
  align-items: center;
  opacity: 0.85;
  transition: all 0.2s ease;
}
.hero-ecosystem-item:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.hero-ecosystem-item img {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* ============================================================== */
/* SYSTEMIC STEPPED BOOKMARK ARCHITECTURE (BORDERLESS SEAMLESS) */
/* ============================================================== */

.stepped-section {
  position: relative;
  z-index: 10;
}

/* Stepped Bookmark Wrapper */
.stepped-bookmark-wrapper {
  display: flex;
  position: relative;
  top: -38px;
  margin-bottom: -38px;
  z-index: 20;
}

.stepped-bookmark-wrapper--left {
  justify-content: flex-start;
}

.stepped-bookmark-wrapper--right {
  justify-content: flex-end;
}

/* Bookmark Tab Box - 100% Borderless Solid Seamless Geometry (Zero Shadows, Zero Seams) */
.stepped-bookmark-tab {
  padding: 16px 28px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  max-width: 520px;
  border: none !important;
  box-shadow: none !important;
  position: relative;
  z-index: 25;
}

/* Tab Variants: Dark vs Light (Pure Fill, Zero Borders, Zero Shadows - 100% Fused into Section BG) */
.stepped-bookmark-tab--dark {
  background-color: var(--gv-navy-deep);
  border: none !important;
  box-shadow: none !important;
}

.stepped-bookmark-tab--navy {
  background-color: var(--gv-navy-deep);
  border: none !important;
  box-shadow: none !important;
}

.stepped-bookmark-tab--light {
  background-color: var(--color-3);
  border: none !important;
  box-shadow: none !important;
}

.stepped-bookmark-tab--subtle {
  background-color: var(--gv-bg-body);
  border: none !important;
  box-shadow: none !important;
}

/* Tab Content Typography */
.stepped-bookmark-text {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.45;
}

.stepped-bookmark-tab--dark .stepped-bookmark-text,
.stepped-bookmark-tab--navy .stepped-bookmark-text {
  color: #7E8EA8;
}
.stepped-bookmark-tab--dark .stepped-bookmark-text span,
.stepped-bookmark-tab--navy .stepped-bookmark-text span {
  color: var(--color-3);
  display: block;
}

.stepped-bookmark-tab--light .stepped-bookmark-text,
.stepped-bookmark-tab--subtle .stepped-bookmark-text {
  color: var(--gv-text-muted);
}
.stepped-bookmark-tab--light .stepped-bookmark-text span,
.stepped-bookmark-tab--subtle .stepped-bookmark-text span {
  color: var(--gv-navy);
  display: block;
}

.stepped-bookmark-badge {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  color: var(--color-3);
  background-color: var(--gv-blue);
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Alternating Offset Architectural Statements */
.stepped-statement-wrap {
  display: flex;
  margin-bottom: 40px;
}

.stepped-statement-wrap--right {
  justify-content: flex-end;
  text-align: left;
}

.stepped-statement-wrap--left {
  justify-content: flex-start;
  text-align: left;
}

.stepped-statement-text {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.9vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
  max-width: 860px;
  text-transform: uppercase;
}

.stepped-statement-text--dark {
  color: var(--color-3);
}
.stepped-statement-text--dark span {
  color: var(--gv-blue);
}

.stepped-statement-text--light {
  color: var(--gv-navy);
}
.stepped-statement-text--light span {
  color: var(--gv-blue);
}

/* ============================================================== */
/* 01 / 2-COLUMN CERTIFIED VENDOR ECOSYSTEM (LIGHT WHITE BG) */
/* ============================================================== */

.section-partnerships {
  background-color: var(--color-3);
  color: var(--gv-text-body);
  padding-bottom: 105px;
  position: relative;
  z-index: 5;
}

.section-partnerships-body {
  padding-top: 95px;
}

.partnerships-split-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 48px;
  align-items: start;
}

.partnerships-lead-col {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  padding-right: 16px;
}

.partnerships-headline {
  font-size: clamp(26px, 3.2vw, 38px);
  color: var(--gv-navy);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.partnerships-lead-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gv-text-body);
  margin-bottom: 28px;
}

.partnerships-lead-text strong {
  color: var(--gv-navy);
  font-weight: 700;
}

.partnerships-cards-col {
  display: flex;
  flex-direction: column;
}

/* Interactive Stage: Vertical Drum Switcher + Large Active Logo + Top-Aligned Dark Bubble */
.partnerships-interactive-stage {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 36px;
  align-items: start; /* Top-aligned flush with headline on the left */
  min-height: 320px;
}

.partner-vertical-switcher {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  user-select: none;
  width: 100%;
  padding-top: 24px; /* Centers the active logo vertically with bubble */
}

.partner-nav-arrow {
  background: none;
  border: none;
  color: #94A3B8;
  cursor: pointer;
  padding: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.18s ease;
  line-height: 1;
  border-radius: var(--radius-none);
}

.partner-nav-arrow:hover {
  color: var(--gv-blue);
  transform: translateY(-2px);
}
.partner-nav-arrow--next:hover {
  transform: translateY(2px);
}

.partner-logo-slot {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  width: 100%;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: var(--radius-none);
}

.partner-logo-slot--prev, .partner-logo-slot--next {
  opacity: 0.35;
  transform: scale(0.68);
  filter: grayscale(1);
  min-height: 40px;
}

.partner-logo-slot--prev:hover, .partner-logo-slot--next:hover {
  opacity: 0.85;
  transform: scale(0.78);
  filter: grayscale(0);
}

/* Significantly Enlarged Active Logo Slot */
.partner-logo-slot--active {
  opacity: 1;
  transform: scale(1);
  filter: none;
  min-height: 80px;
  pointer-events: none;
}

.slot-logo-img {
  filter: none;
  object-fit: contain;
  transition: all 0.28s ease;
}

.slot-logo-img--large {
  max-height: 60px;
  max-width: 150px;
}

/* High-Contrast Dark Speech Bubble (#0E1726) on White Section Background */
.partner-bubble-viewport {
  position: relative;
  width: 100%;
  min-height: 310px;
  display: flex;
  align-items: flex-start;
}

.partner-single-bubble {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0E1726;
  border: none !important;
  padding: 36px 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  overflow: visible;
}

/* Subtle Technical Precision Grid Overlay on Dark Background */
.partner-single-bubble::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: 0 0;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 40%, transparent 95%);
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 40%, transparent 95%);
  pointer-events: none;
  z-index: 1;
}

.partner-single-bubble.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  box-shadow: 0 20px 50px rgba(14, 23, 38, 0.28);
}

/* Solid Dark Pointer Arrow */
.partner-single-bubble::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -8px;
  transform: translateY(-50%) rotate(45deg);
  width: 16px;
  height: 16px;
  background: #0E1726;
  border: none !important;
  z-index: 2;
}

.partner-bubble-head,
.partner-bubble-desc,
.partner-bubble-chips {
  position: relative;
  z-index: 3;
}

.partner-bubble-head {
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.partner-bubble-tier {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gv-blue);
}

.partner-bubble-title {
  font-size: 20px;
  color: var(--color-3);
  font-weight: 700;
  line-height: 1.25;
}

.partner-bubble-desc {
  font-size: 14.5px;
  color: #CBD5E1;
  line-height: 1.7;
  margin-bottom: 20px;
}

.partner-bubble-chips {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}

.partner-bubble-chips span {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #C0CBE0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5px 10px;
}

/* ============================================================== */
/* 02 / [LP-04/05/06] ENTERPRISE PAIN POINTS & POLYGONAL VISUALS (v5.7.0) */
/* ============================================================== */

.section-painpoints {
  background-color: #080E18; /* Deep Midnight Navy #080E18 */
  color: var(--color-3);
  padding-bottom: 110px;
  position: relative;
  z-index: 10;
}

.section-painpoints-body {
  padding-top: 95px;
}

.painpoints-master-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 48px;
  align-items: stretch;
}

.painpoints-content-col {
  display: flex;
  flex-direction: column;
}

/* Section Header Block */
.painpoints-header-block {
  margin-bottom: 30px;
}

.painpoints-eyebrow-tag {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gv-blue);
  margin-bottom: 12px;
  display: block;
}

.painpoints-main-headline {
  font-size: clamp(30px, 3.6vw, 42px);
  color: var(--color-3);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.accent-dot {
  color: var(--gv-blue);
}

.painpoints-lead-paragraph {
  font-size: 14.5px;
  color: #A4B3CB;
  line-height: 1.65;
  max-width: 640px;
  margin: 0;
}

.painpoints-link-highlight {
  color: var(--gv-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}
.painpoints-link-highlight:hover {
  color: var(--color-3);
}

/* Stepped Timeline Stage with Connecting Nodes */
.painpoints-timeline-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-left: 56px;
  margin-bottom: 0;
}

.timeline-vertical-rail {
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 36px;
  width: 2px;
  background: rgba(46, 163, 242, 0.25);
  z-index: 1;
}

.painpoints-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.painpoint-item {
  position: relative;
}

/* Node Indicator (Crisp zero-neon) */
.painpoint-node-indicator {
  position: absolute;
  left: -56px;
  top: 18px;
  display: flex;
  align-items: center;
  z-index: 2;
}

.node-number {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: #7E8EA8;
  width: 22px;
  text-align: right;
  margin-right: 7px;
  transition: color 0.2s ease;
}

.node-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid rgba(46, 163, 242, 0.35);
  background: #080E18;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s ease;
}

.node-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #7E8EA8;
  transition: background 0.2s ease;
}

.node-arm {
  width: 20px;
  height: 2px;
  background: rgba(46, 163, 242, 0.25);
  transition: background 0.2s ease;
}

/* Node Active State (Matches Photo Frame Border Exactly: rgba(46, 163, 242, 0.45)) */
.painpoint-item.is-active .node-number {
  color: var(--gv-blue);
}

.painpoint-item.is-active .node-dot {
  border-color: rgba(46, 163, 242, 0.45);
}

.painpoint-item.is-active .node-dot::after {
  background: rgba(46, 163, 242, 0.7);
}

.painpoint-item.is-active .node-arm {
  background: rgba(46, 163, 242, 0.45);
}

/* Accordion Card (Stable Exact Heights - Zero Vertical Layout Shift) */
.painpoint-card {
  position: relative;
  background: #0d1627;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-none);
  transition: border-color 0.2s ease, background 0.2s ease, height 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  height: 60px; /* Uniform collapsed height */
}

/* Subtle Technical Grid Overlay on Active Card (Perfect 24px Squares) */
.painpoint-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(to right, rgba(46, 163, 242, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(46, 163, 242, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: 0 0;
  mask-image: radial-gradient(ellipse 95% 85% at 50% 40%, black 40%, transparent 95%);
  -webkit-mask-image: radial-gradient(ellipse 95% 85% at 50% 40%, black 40%, transparent 95%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 1;
}

/* Active Card Border (Matches Photo Frame Exactly: rgba(46, 163, 242, 0.45)) */
.painpoint-item.is-active .painpoint-card {
  border: 1px solid rgba(46, 163, 242, 0.45);
  background: #0d172a;
  box-shadow: none;
  height: 250px; /* Uniform active height across all cards - ZERO JUMP */
}

.painpoint-item.is-active .painpoint-card::after {
  opacity: 1;
}

.painpoint-card-trigger {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--color-3);
  border-radius: var(--radius-none);
}

.trigger-icon-box {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9AA8C0;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.painpoint-item.is-active .trigger-icon-box {
  background: rgba(46, 163, 242, 0.08);
  border-color: rgba(46, 163, 242, 0.45);
  color: var(--gv-blue);
  box-shadow: none;
}

.trigger-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-3);
  flex-grow: 1;
  margin: 0;
  line-height: 1.25;
}

.trigger-toggle-icon {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #7E8EA8;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.painpoint-item.is-active .trigger-toggle-icon {
  color: var(--gv-blue);
}

/* Accordion Content Body (Uniform 2-Column Layout - Problem + High-Impact Outcomes) */
.painpoint-card-content {
  display: none;
  padding: 0 24px 20px;
  border-top: none;
  height: 180px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.painpoint-item.is-active .painpoint-card-content {
  display: block;
}

.card-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding-top: 14px;
  align-items: start;
  height: 100%;
}

.content-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.content-col--problem {
  padding-right: 16px;
  border-right: none;
}

.content-kicker {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gv-blue);
  margin-bottom: 10px;
  display: block;
  line-height: 1;
}

.content-text {
  font-size: 13px;
  line-height: 1.65;
  color: #CBD5E1;
  margin: 0;
}

.content-text strong {
  color: var(--color-3);
  font-weight: 700;
}

/* Hero Outcome Single Metric Display */
.content-col--hero-outcome {
  padding-left: 4px;
}

.hero-outcome-stat {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 800;
  color: var(--color-3);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-top: 2px;
  margin-bottom: 6px;
}

.hero-outcome-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #A4B3CB;
  margin-bottom: 12px;
}

.hero-outcome-divider {
  width: 130px;
  height: 2px;
  background: rgba(46, 163, 242, 0.6);
  margin-bottom: 12px;
}

.hero-outcome-sub {
  font-size: 12.5px;
  line-height: 1.55;
  color: #9AA8C0;
  margin: 0;
}

/* Dynamic Bottom-Left CTA Bar Anchored Directly Over Photo */
.painpoint-photo-cta-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 15;
  background: rgba(8, 14, 24, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: none;
  border-left: none;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(12px);
  max-width: 92%;
}

.painpoint-photo-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gv-blue);
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding-right: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.painpoint-photo-cta-btn:hover {
  color: var(--color-3);
}

.cta-icon-circle {
  width: 24px;
  height: 24px;
  background: var(--gv-blue);
  color: var(--color-3);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
}

.painpoint-photo-cta-desc {
  font-size: 11px;
  color: #9AA8C0;
  line-height: 1.35;
}

/* ============================================================== */
/* RIGHT COLUMN: FULL-HEIGHT CUSTOM POLYGONAL ARCHITECTURAL FRAME */
/* ============================================================== */

.painpoints-visual-col {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.polygonal-visual-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.polygonal-frame-box {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 680px;
  overflow: hidden;
  flex-grow: 1;
}

.polygonal-svg-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.polygonal-image-viewport {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  clip-path: polygon(115px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 210px, 115px 115px, 115px 0%);
  -webkit-clip-path: polygon(115px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 210px, 115px 115px, 115px 0%);
  background-color: #070d17;
}

.polygonal-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.35s ease-in-out;
  filter: contrast(1.05) brightness(0.9);
}

.polygonal-photo.is-active {
  opacity: 1;
}

.polygonal-photo-vignette {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(8, 14, 24, 0.7) 0%, transparent 60%);
  pointer-events: none;
  z-index: 2;
}

.reality-grid-patch {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 160px;
  background-image: 
    linear-gradient(to right, rgba(46, 163, 242, 0.22) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(46, 163, 242, 0.22) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 95% 95% at 100% 100%, black 35%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 95% 95% at 100% 100%, black 35%, transparent 85%);
  z-index: 8;
  pointer-events: none;
}

/* ============================================================== */
/* 03 / USE CASES & PROVEN SCENARIOS (v7.0.0) */
/* ============================================================== */

.section-usecases {
  background-color: var(--color-3); /* Crisp White #FFFFFF */
  padding-bottom: 110px;
  position: relative;
  z-index: 15;
  overflow: visible;
}

.section-usecases-body {
  padding-top: 95px;
}

.usecases-header-block {
  margin-bottom: 36px;
}

.usecases-eyebrow-tag {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gv-blue);
  margin-bottom: 12px;
  display: block;
}

.usecases-main-headline {
  font-size: clamp(32px, 3.8vw, 44px);
  font-weight: 800;
  color: #0A111E;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.usecases-main-headline .accent-blue {
  color: var(--gv-blue);
}

.usecases-lead-paragraph {
  font-size: 15px;
  color: #475569;
  line-height: 1.65;
  max-width: 680px;
  margin: 0;
}

/* Top Horizontal Category Tabs */
.usecases-tabs-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #D5DFEB;
  border-bottom: none;
  background: #FFFFFF;
}

.usecases-tab-btn {
  padding: 18px 20px;
  background: #FFFFFF;
  border: none;
  border-right: 1px solid #D5DFEB;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #475569;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  position: relative;
  border-radius: var(--radius-none);
}

.usecases-tab-btn:last-child {
  border-right: none;
}

.usecases-tab-btn:hover {
  color: var(--gv-blue);
  background: #F8FAFC;
}

.usecases-tab-btn.is-active {
  color: var(--gv-blue);
  background: #FFFFFF;
}

.usecases-tab-btn.is-active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gv-blue);
  z-index: 2;
}

/* Main Display Card (2-Column Architecture: Visual on Left, Copy on Right) */
.usecases-display-card {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  border: 1px solid #D5DFEB;
  background: #FFFFFF;
  min-height: 540px;
  box-shadow: 0 10px 30px rgba(10, 17, 30, 0.04);
}

.usecases-content-col {
  padding: 44px 44px 36px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.usecase-active-kicker {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gv-blue);
  margin-bottom: 12px;
  display: block;
}

.usecase-active-title {
  font-size: 26px;
  font-weight: 800;
  color: #0A111E;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  min-height: 65px;
}

.usecase-points-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
}

.usecase-point-row {
  display: flex;
  gap: 18px;
  padding: 13px 0;
  border-top: 1px solid #EEF2F6;
  align-items: flex-start;
}

.usecase-point-row:first-child {
  border-top: none;
}

.usecase-point-num {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: var(--gv-blue);
  width: 22px;
  flex-shrink: 0;
  padding-top: 1px;
}

.usecase-point-body {
  flex-grow: 1;
}

.usecase-point-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: #0A111E;
  line-height: 1.35;
  margin-bottom: 3px;
}

.usecase-point-desc {
  font-size: 12.5px;
  line-height: 1.55;
  color: #64748B;
  margin: 0;
}

.usecase-actions-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: auto;
  padding-top: 16px;
}

.usecase-primary-btn {
  background: var(--gv-blue);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 24px;
  border-radius: var(--radius-none);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.usecase-primary-btn:hover {
  background: #1b8bd6;
  color: #FFFFFF;
  transform: translateY(-1px);
}

.usecase-all-link {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0A111E;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.usecase-all-link:hover {
  color: var(--gv-blue);
}

/* Visual Column with Floating Dark Outcome Badge */
.usecases-visual-col {
  position: relative;
  overflow: hidden;
  background: #0A111E;
}

.usecase-image-wrapper {
  width: 100%;
  height: 100%;
}

.usecase-display-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.25s ease;
}

.usecase-floating-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 88%;
  background: #0E1726;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: none;
  border-left: none;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 24px;
  backdrop-filter: blur(12px);
  z-index: 10;
  overflow: hidden;
}

/* Subtle Technical Precision Grid Overlay on Floating Dark Badge */
.usecase-floating-badge::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(to right, rgba(46, 163, 242, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(46, 163, 242, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: 0 0;
  mask-image: radial-gradient(ellipse 95% 85% at 50% 50%, black 40%, transparent 95%);
  -webkit-mask-image: radial-gradient(ellipse 95% 85% at 50% 50%, black 40%, transparent 95%);
  pointer-events: none;
  z-index: 1;
}

.badge-stat-box {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  padding-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.badge-desc-box {
  position: relative;
  z-index: 2;
  flex-grow: 1;
}

.badge-kicker {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gv-blue);
  margin-bottom: 4px;
  display: block;
}

.badge-stat-val {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  color: var(--color-3);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.badge-stat-lbl {
  font-family: var(--font-heading);
  font-size: 9.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9AA8C0;
}

.badge-desc-box {
  flex-grow: 1;
}

.badge-desc-text {
  font-size: 13px;
  line-height: 1.55;
  color: #CBD5E1;
  margin: 0;
}

.mag-feed-item h4 {
  font-size: 17px;
  color: var(--gv-navy);
  margin-bottom: 8px;
  line-height: 1.35;
  transition: color 0.15s ease;
}
.mag-feed-item:hover h4 {
  color: var(--gv-blue);
}

.mag-feed-item p {
  font-size: 13px;
  color: var(--gv-text-body);
  line-height: 1.55;
}

/* ============================================================== */
/* 04 / [LP-20/21] PROVEN OUTCOMES & CREDIBILITY */
/* ============================================================== */

.section-outcomes {
  background-color: var(--gv-navy-dark);
  color: var(--color-3);
  padding-bottom: 110px;
}

.section-outcomes-body {
  padding-top: 95px;
}

.metrics-row-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.metric-stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 38px 30px;
  display: flex;
  flex-direction: column;
}

.metric-stat-number {
  font-family: var(--font-heading);
  font-size: clamp(48px, 5.5vw, 64px);
  font-weight: 800;
  color: var(--gv-blue);
  line-height: 0.95;
  margin-bottom: 14px;
  letter-spacing: -0.04em;
}

.metric-stat-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-3);
  margin-bottom: 8px;
}

.metric-stat-desc {
  font-size: 13px;
  color: #C0CBE0;
  line-height: 1.6;
}

.spotlight-quote-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 44px 40px;
  display: grid;
  grid-template-columns: 0.3fr 1.7fr;
  gap: 40px;
  align-items: center;
}

.spotlight-quote-avatar {
  width: 100px;
  height: 100px;
  border: 1px solid rgba(46, 163, 242, 0.4);
  object-fit: cover;
  object-position: center 15%;
}

.spotlight-quote-body {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  color: var(--color-3);
  line-height: 1.45;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.spotlight-quote-body span {
  color: var(--gv-blue);
}

.spotlight-quote-author {
  font-size: 14px;
  font-weight: 700;
  color: var(--gv-blue);
}
.spotlight-quote-role {
  font-size: 12px;
  color: #9AA8C0;
}

/* ============================================================== */
/* 05 / [LP-09] WHAT WE DO: CAPABILITIES */
/* ============================================================== */

.section-capabilities {
  background-color: var(--gv-bg-body);
  padding-bottom: 110px;
}

.section-capabilities-body {
  padding-top: 95px;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.capability-card {
  background-color: var(--color-3);
  border: 1px solid var(--gv-border);
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
  overflow: hidden;
  text-decoration: none;
}
.capability-card:hover {
  border-color: var(--gv-blue);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(38, 54, 85, 0.08);
}

.cap-img-wrap {
  width: 100%;
  height: 190px;
  background: var(--gv-navy);
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--gv-border);
}

.cap-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.capability-card:hover .cap-img {
  transform: scale(1.04);
}

.cap-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(14, 23, 38, 0.9);
  color: var(--gv-blue);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  border: 1px solid rgba(46, 163, 242, 0.3);
}

.cap-body {
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.cap-body h3 {
  font-size: 20px;
  color: var(--gv-navy);
  margin-bottom: 10px;
  transition: color 0.15s ease;
}
.capability-card:hover .cap-body h3 {
  color: var(--gv-blue);
}

.cap-body p {
  font-size: 14px;
  color: var(--gv-text-body);
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

.cap-footer {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gv-navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}
.capability-card:hover .cap-footer {
  color: var(--gv-blue);
}

/* ============================================================== */
/* 06 / [LP-12] INDUSTRIES WE SERVE */
/* ============================================================== */

.section-industries {
  background-color: var(--color-3);
  padding-bottom: 110px;
}

.section-industries-body {
  padding-top: 95px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.industry-card {
  background: var(--gv-bg-body);
  border: 1px solid var(--gv-border);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all 0.18s ease;
}
.industry-card:hover {
  background: var(--color-3);
  border-color: var(--gv-blue);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(38, 54, 85, 0.06);
}

.industry-icon-tag {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  color: var(--gv-blue);
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}

.industry-card h3 {
  font-size: 19px;
  color: var(--gv-navy);
  margin-bottom: 10px;
  line-height: 1.25;
}

.industry-card p {
  font-size: 13px;
  color: var(--gv-text-body);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.industry-link {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gv-navy);
  margin-top: auto;
}
.industry-card:hover .industry-link {
  color: var(--gv-blue);
}

/* ============================================================== */
/* 07 / [LP-25] LEADERSHIP & SENIOR PODS */
/* ============================================================== */

.section-leadership {
  background-color: var(--gv-bg-body);
  padding-bottom: 110px;
}

.section-leadership-body {
  padding-top: 95px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--color-3);
  border: 1px solid var(--gv-border);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.18s ease;
}
.team-card:hover {
  border-color: var(--gv-blue);
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(38, 54, 85, 0.08);
}

.team-card-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gv-border);
}

.team-card-avatar {
  width: 74px;
  height: 74px;
  border: 1px solid var(--gv-border);
  object-fit: cover;
  object-position: center 15%;
  flex-shrink: 0;
  background: var(--gv-bg-subtle);
}

.team-card-info {
  flex-grow: 1;
}

.team-card-name {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--gv-navy);
  margin-bottom: 2px;
}

.team-card-role {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gv-blue);
}

.team-card-bio {
  font-size: 13px;
  color: var(--gv-text-body);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.team-card-spec {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  color: var(--gv-text-muted);
  background: var(--gv-bg-subtle);
  border: 1px solid var(--gv-border);
  padding: 6px 10px;
  display: block;
}

/* ============================================================== */
/* 08 / [LP-16/18] DELIVERY MODEL */
/* ============================================================== */

.section-delivery {
  background-color: var(--color-3);
  padding-bottom: 110px;
}

.section-delivery-body {
  padding-top: 95px;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.delivery-card {
  background-color: var(--gv-bg-body);
  border: 1px solid var(--gv-border);
  padding: 42px 34px;
  display: flex;
  flex-direction: column;
  transition: all 0.18s ease;
}
.delivery-card:hover {
  border-color: var(--gv-blue);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(38, 54, 85, 0.08);
}

.delivery-step-tag {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gv-blue);
  margin-bottom: 18px;
}

.delivery-card h3 {
  font-size: 24px;
  color: var(--gv-navy);
  margin-bottom: 14px;
}

.delivery-card p {
  font-size: 14px;
  color: var(--gv-text-body);
  line-height: 1.7;
  margin-bottom: 26px;
  flex-grow: 1;
}

/* ============================================================== */
/* [LP-33] FINAL CONVERSION */
/* ============================================================== */

.lp33-cta-section {
  background-color: #090f1a;
  color: var(--color-3);
  padding: 110px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lp33-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(46, 163, 242, 0.12) 0%, transparent 60%);
}

.cta-banner-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.lp33-cta-section h2 {
  color: var(--color-3);
  font-size: clamp(32px, 4.4vw, 48px);
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.lp33-cta-section p {
  color: #C0CBE0;
  font-size: 18px;
  margin-bottom: 38px;
  line-height: 1.65;
}

.cta-dual-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Footer */
.site-footer {
  background-color: #070d17;
  color: var(--color-12);
  padding: 80px 0 34px;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-brand p {
  margin-top: 16px;
  max-width: 340px;
  color: #9AA8C0;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-3);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: #C0CBE0;
  font-size: 13px;
}
.footer-col a:hover {
  color: var(--gv-blue);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #7E8EA8;
  font-size: 12px;
}

/* Responsive */
@media (max-width: 1080px) {
  .lp01-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-person-stage { min-height: 440px; }
  .hero-person-silhouette { height: 420px; }
  .hero-person-card { position: static; margin-top: -30px; width: 100%; }
  .hero-ecosystem-bar { flex-direction: column; align-items: flex-start; gap: 18px; }
  .hero-ecosystem-logos { gap: 28px; }
  
  .partnerships-split-layout { grid-template-columns: 1fr; gap: 36px; }
  .partnerships-lead-col { position: static; padding-right: 0; }
  
  .painpoints-master-grid { grid-template-columns: 1fr; gap: 40px; }
  .painpoints-visual-col { position: static; }
  .polygonal-frame-box { height: 440px; }

  .stepped-bookmark-wrapper--right { justify-content: flex-start; }
  .stepped-statement-wrap--right, .stepped-statement-wrap--left { justify-content: flex-start; text-align: left; }
  .stepped-statement-text { max-width: 100%; }

  .magazine-grid { grid-template-columns: 1fr; }
  .metrics-row-grid { grid-template-columns: 1fr; }
  .spotlight-quote-box { grid-template-columns: 1fr; }
  .capabilities-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .delivery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .hero-person-stage { min-height: 360px; }
  .hero-person-silhouette { height: 340px; }
  .hero-ecosystem-logos { gap: 20px; }
  .stepped-bookmark-wrapper { top: -24px; margin-bottom: -24px; }
  .stepped-bookmark-tab { padding: 12px 18px; gap: 16px; }
  .section-partnerships-body, .section-painpoints-body, .section-magazine-body, .section-outcomes-body,
  .section-capabilities-body, .section-industries-body, .section-leadership-body,
  .section-delivery-body { padding-top: 60px; }
  
  .partnerships-interactive-stage { grid-template-columns: 1fr; gap: 20px; }
  .partner-vertical-switcher { flex-direction: row; justify-content: center; gap: 16px; }
  .partner-nav-arrow { display: none; }
  .partner-single-bubble::before { display: none; }
  .partner-single-bubble { padding: 22px 20px; position: static; height: auto; display: none; }
  .partner-single-bubble.is-active { display: flex; }
  .partner-bubble-viewport { min-height: auto; }
  
  .painpoints-timeline-stage { padding-left: 0; }
  .timeline-vertical-rail, .painpoint-node-indicator { display: none; }
  .card-content-grid { grid-template-columns: 1fr; gap: 16px; }
  .painpoints-bottom-cta { margin-left: 0; flex-direction: column; align-items: flex-start; gap: 10px; }
  .painpoint-cta-btn { border-right: none; padding-right: 0; }
  .polygonal-frame-box { height: 340px; }

  .capabilities-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
