@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,400;1,700&display=swap');

/* ── CSS Variables ──────────────────────────────────────── */
:root {
  --blue1: #025b93;
  --blue2: #009dcc;
  --charcoal: #374048;
  --soft-gray: #ebecee;
  --explore: #025b93;
  --excite: #8dbd3e;
  --examine: #ebd314;
  --execute: #f05a22;
  --evaluate: #650fad;
  --text-mid: #6a7380;
  --text-body: #5a6370;
  --page-gray: #f6f8fa;
  --dark-navy: rgb(1, 30, 50);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; color: var(--charcoal); line-height: 1.6; }
a { text-decoration: none; }
button { font-family: 'Lato', sans-serif; cursor: pointer; border: none; background: none; }
img { max-width: 100%; height: auto; }
summary { list-style: none; }
summary::-webkit-details-marker { display: none; }

/* ── Layout ─────────────────────────────────────────────── */
.container    { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 780px;  margin: 0 auto; padding: 0 24px; }
.container-xs { max-width: 680px;  margin: 0 auto; padding: 0 24px; }

/* ── Navigation ─────────────────────────────────────────── */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.98);
  transition: all 0.3s ease;
}
#main-nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 40px; width: auto; }
.nav-logo-text { line-height: 1.1; }
.nav-logo-name { font-weight: 900; font-size: 18px; color: var(--charcoal); letter-spacing: 2px; }
.nav-logo-name sup { font-size: 9px; }
.nav-logo-sub { font-size: 8.5px; color: var(--blue2); letter-spacing: 1.5px; font-weight: 600; }
.nav-logo-sub sup { font-size: 6px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 14px; font-weight: 600; font-size: 14px; color: var(--charcoal);
  border-bottom: 2px solid transparent; transition: all 0.2s;
  white-space: nowrap; display: inline-block;
}
.nav-link:hover { color: var(--blue1); border-bottom-color: var(--blue2); }
.nav-link.active { color: var(--blue1); border-bottom-color: var(--blue2); }
.nav-ctas { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-divider { width: 1px; height: 28px; background: #ddd; }
.btn-login {
  padding: 8px 18px; border: 2px solid var(--blue1); border-radius: 6px;
  font-weight: 700; font-size: 13px; color: var(--blue1); background: transparent;
  transition: all 0.2s; white-space: nowrap; display: inline-block;
  font-family: 'Lato', sans-serif;
}
.btn-login:hover { background: var(--blue1); color: white; }
.btn-demo-nav {
  padding: 8px 18px; background: var(--blue1); border: 2px solid var(--blue1);
  border-radius: 6px; font-weight: 700; font-size: 13px; color: white;
  transition: all 0.2s; white-space: nowrap; display: inline-block;
  font-family: 'Lato', sans-serif;
}
.btn-demo-nav:hover { background: var(--blue2); border-color: var(--blue2); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px; background: var(--charcoal);
  border-radius: 2px; transition: all 0.3s;
}
#mobile-menu {
  display: none; flex-direction: column; background: white;
  border-top: 1px solid var(--soft-gray); padding: 16px 24px;
}
#mobile-menu.open { display: flex; }
#mobile-menu .nav-link {
  padding: 12px 0; border-bottom: 1px solid var(--soft-gray) !important;
  border-left: none; border-right: none; border-top: none;
  font-size: 15px; display: block; width: 100%;
}
.mobile-ctas { padding-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.mobile-ctas .btn-login, .mobile-ctas .btn-demo-nav { text-align: center; display: block; }

/* ── Sections ────────────────────────────────────────────── */
.section    { padding: 96px 24px; }
.section-sm { padding: 80px 24px; }
.section-white     { background: white; }
.section-gray      { background: var(--page-gray); }
.section-soft-gray { background: var(--soft-gray); }
.section-dark      { background: var(--charcoal); }
.section-navy      { background: linear-gradient(160deg, rgb(1,61,99) 0%, rgb(1,40,68) 100%); }
.section-blue      { background: linear-gradient(135deg, var(--blue1) 0%, var(--blue2) 100%); }

/* ── Section Headers ─────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header-lg { margin-bottom: 64px; }
.section-eyebrow {
  display: inline-block; font-weight: 700; font-size: 12px; letter-spacing: 2px;
  color: var(--blue2); text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-weight: 900; font-size: clamp(28px, 3.5vw, 42px);
  color: var(--charcoal); line-height: 1.2; margin-bottom: 16px;
}
.section-title span { color: var(--execute); }
.section-title .hl-blue { color: var(--blue2); }
.section-body { font-size: 17px; color: var(--text-mid); line-height: 1.7; max-width: 560px; margin: 0 auto; }
.section-title-lg { font-size: clamp(32px, 5vw, 48px); }
.section-title-white { color: #fff; }

/* ── Grids ───────────────────────────────────────────────── */
.grid-2col       { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.grid-2col-start { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.grid-2col-md    { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-auto-3     { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-auto-3-wide{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-auto-6     { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.flex-center     { display: flex; align-items: center; justify-content: center; }
.flex-wrap-center{ display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: white; border-radius: 16px; padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06); position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.card-border { background: white; border-radius: 16px; padding: 32px; border: 2px solid #edf0f2; transition: all 0.2s; overflow: hidden; height: 100%; box-sizing: border-box; }
.card-border:hover { border-color: var(--blue2); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,157,204,0.1); }
.card-dark { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 32px; }
.card-accent { position: absolute; bottom: 0; left: 0; right: 0; height: 4px; }
.card-accent-blue   { background: var(--blue2); }
.card-accent-orange { background: var(--execute); }
.card-accent-green  { background: var(--excite); }
.card-accent-purple { background: var(--evaluate); }
.card-featured {
  background: linear-gradient(135deg, rgba(101,15,173,0.07), rgba(101,15,173,0.03)) !important;
  border: 2px solid rgba(101,15,173,0.25) !important;
  box-shadow: 0 8px 32px rgba(101,15,173,0.12) !important;
}
.card-badge {
  position: absolute; top: 8px; left: 24px;
  background: var(--evaluate); color: white;
  font-size: 11px; font-weight: 700; padding: 3px 12px;
  border-radius: 20px; letter-spacing: 1px; font-family: 'Lato', sans-serif;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 8px; font-weight: 700; font-size: 15px;
  transition: all 0.3s; cursor: pointer; border: 2px solid transparent;
  text-decoration: none; font-family: 'Lato', sans-serif;
}
.btn-primary { background: var(--blue1); color: white; border-color: var(--blue1); }
.btn-primary:hover { background: var(--blue2); border-color: var(--blue2); transform: translateY(-2px); }
.btn-secondary { background: var(--blue2); color: white; border-color: var(--blue2); }
.btn-secondary:hover { background: var(--blue1); border-color: var(--blue1); transform: translateY(-2px); }
.btn-outline { background: transparent; color: white; border-color: rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: rgba(255,255,255,0.7); }
.btn-white { background: white; color: var(--blue1); border-color: white; box-shadow: 0 8px 32px rgba(0,0,0,0.15); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }
.btn-text { color: var(--blue1); font-weight: 700; font-size: 13px; display: inline-flex; align-items: center; gap: 6px; }
.btn-text:hover { color: var(--blue2); }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-sm { padding: 8px 18px; font-size: 14px; }

/* ── Icon Containers ─────────────────────────────────────── */
.icon-circle {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue1), var(--blue2));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.icon-circle-sm { width: 36px; height: 36px; border-radius: 8px; font-size: 17px; flex-shrink: 0; }
.icon-circle-lg { width: 52px; height: 52px; border-radius: 14px; font-size: 24px; flex-shrink: 0; }
.icon-round { border-radius: 50%; }
.icon-tint {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(160deg, #0d7ab5 0%, #025b93 40%, #013d63 75%, rgb(1,30,50) 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 70px;
}
.hero-bg-radial {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 75% 40%, rgba(0,157,204,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(2,91,147,0.25) 0%, transparent 50%);
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 80px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; position: relative; z-index: 1; width: 100%;
}
.hero-content { flex: 1; max-width: 580px; }
.hero-badge {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.5);
  border-radius: 20px; padding: 6px 16px; margin-bottom: 24px;
}
.hero-badge span { font-size: 13px; color: #fff; font-weight: 600; }
.hero-title {
  font-weight: 900; font-size: clamp(38px, 5.5vw, 64px);
  color: white; line-height: 1.1; margin-bottom: 20px;
}
.gradient-text {
  background: linear-gradient(90deg, var(--blue2), var(--excite));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub  { font-size: 20px; color: rgba(255,255,255,0.8); margin-bottom: 12px; font-weight: 600; }
.hero-desc { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 40px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 48px; }
.hero-stat-value { font-weight: 900; font-size: 28px; color: var(--blue2); }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.hero-petal  { flex: 0 0 auto; display: flex; justify-content: center; }

/* ── Page Hero (non-home) ────────────────────────────────── */
.page-hero { padding: 120px 24px 96px; text-align: center; }
.page-hero-blue { background: linear-gradient(135deg, var(--blue1) 0%, #013a5e 100%); }
.page-hero-dark { background: linear-gradient(135deg, var(--charcoal) 0%, #1e2a34 100%); }
.page-hero h1 { font-weight: 900; font-size: clamp(34px, 5vw, 56px); color: white; margin-bottom: 20px; line-height: 1.15; }
.page-hero p  { font-size: 19px; color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto 40px; line-height: 1.7; }
.page-hero .btn { margin-top: 0; }
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); border-radius: 20px;
  padding: 6px 16px; margin-bottom: 24px;
  font-size: 13px; color: white; font-weight: 600;
}

/* ── Social Proof Bar ────────────────────────────────────── */
.trust-bar { background: var(--soft-gray); padding: 28px 24px; border-bottom: 1px solid #dde0e4; }
.trust-bar-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: clamp(20px, 4vw, 56px); flex-wrap: wrap;
}
.trust-label { font-size: 12px; font-weight: 700; letter-spacing: 1px; color: #9aa0a8; text-transform: uppercase; }
.trust-brand { font-weight: 900; font-size: 13px; color: #b0b8c4; letter-spacing: 1px; text-transform: uppercase; }

/* ── Petal SVG ───────────────────────────────────────────── */
.petal-wrap { position: relative; display: inline-block; }
#petal-tooltip {
  position: absolute; bottom: -44px; left: 50%; transform: translateX(-50%);
  background: var(--charcoal); color: white;
  padding: 4px 12px; border-radius: 6px; font-size: 13px;
  white-space: nowrap; pointer-events: none;
  opacity: 0; transition: opacity 0.2s; z-index: 10;
  font-family: 'Lato', sans-serif;
}
#petal-tooltip.visible { opacity: 1; }
.petal-circle { transition: opacity 0.2s; }
.petal-interactive .petal-circle { cursor: pointer; }
.petal-interactive .petal-circle:hover { opacity: 1 !important; }

@keyframes petal-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
.petal-animated { animation: petal-pulse 3s ease-in-out infinite; opacity: 0.92; }

/* ── How It Works Steps ──────────────────────────────────── */
.step-card {
  background: white; border-radius: 16px; padding: 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06); position: relative; overflow: hidden;
  height: 100%; box-sizing: border-box;
}
.step-num {
  position: absolute; top: 16px; right: 16px;
  font-weight: 900; font-size: 48px; color: var(--soft-gray); line-height: 1;
}
.step-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue1), var(--blue2));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}
.step-title { font-weight: 700; font-size: 18px; color: var(--charcoal); margin-bottom: 10px; }
.step-desc  { font-size: 15px; color: var(--text-mid); line-height: 1.7; }

/* ── Visual Journey (Platform page) ─────────────────────── */
.journey-row { display: flex; justify-content: center; gap: 0; position: relative; max-width: 1100px; margin: 0 auto; }
.journey-step { flex: 1; text-align: center; padding: 0 20px; position: relative; }
.journey-step:not(:last-child)::after {
  content: ''; position: absolute; top: 28px; left: 60%; right: -20%;
  height: 2px; background: linear-gradient(90deg, var(--blue2), var(--blue1));
}
.journey-circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue1), var(--blue2));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; position: relative; z-index: 1;
  box-shadow: 0 4px 20px rgba(0,157,204,0.4);
  font-weight: 900; font-size: 20px; color: white;
}
.journey-title { font-weight: 700; font-size: 16px; color: var(--charcoal); margin-bottom: 8px; }
.journey-desc  { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* ── SenSai Chat ─────────────────────────────────────────── */
.sensai-chat {
  background: linear-gradient(135deg, var(--blue1) 0%, #013a5e 100%);
  border-radius: 20px; padding: 32px; color: white;
  box-shadow: 0 24px 60px rgba(2,91,147,0.3);
}
.sensai-chat-dark {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 28px; backdrop-filter: blur(8px);
}
.chat-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  overflow: hidden; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.chat-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* ── SenSai App Mock ─────────────────────────────────────── */
.sensai-mock {
  display: flex; border-radius: 16px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18); border: 1px solid #e2e6ea;
  background: white; min-height: 400px;
}
.sensai-mock-sidebar {
  width: 180px; flex-shrink: 0; background: white; border-right: 1px solid #e8ecf0;
  padding: 14px 10px; display: flex; flex-direction: column; gap: 8px;
}
.sensai-mock-sidebar-top {
  display: flex; align-items: center; gap: 8px; margin-bottom: 2px;
}
.sensai-mock-avatar-sm {
  width: 32px; height: 32px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
}
.sensai-mock-title { font-weight: 700; font-size: 13px; color: #374048; }
.sensai-mock-new-btn {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: linear-gradient(135deg, #025b93, #1a9e7a); color: white; border-radius: 8px; padding: 10px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.6px; cursor: default;
}
.sensai-mock-tabs {
  display: flex; border-bottom: 1px solid #e8ecf0; padding-bottom: 6px; gap: 2px;
}
.sensai-mock-tab {
  font-size: 12px; color: #9aa5b0; padding: 4px 10px; cursor: default;
  display: flex; align-items: center; gap: 4px;
}
.sensai-mock-tab.active { color: #025b93; font-weight: 600; border-bottom: 2px solid #025b93; margin-bottom: -7px; }
.sensai-mock-chat-list { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
.sensai-mock-chat-item {
  padding: 7px 6px; border-radius: 6px; cursor: default;
  display: flex; gap: 8px; align-items: flex-start;
}
.sensai-mock-chat-item.active { background: linear-gradient(135deg, rgba(2,91,147,0.08), rgba(26,158,122,0.08)); }
.sensai-mock-chat-icon { font-size: 12px; flex-shrink: 0; color: #9aa5b0; margin-top: 1px; }
.sensai-mock-chat-text { overflow: hidden; }
.sensai-mock-chat-name { font-size: 11px; font-weight: 600; color: #374048; margin-bottom: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 160px; }
.sensai-mock-chat-preview { font-size: 10px; color: #9aa5b0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 160px; }
.sensai-mock-chat-section { font-size: 10px; color: #b0bac4; font-weight: 600; letter-spacing: 0.6px; padding: 8px 6px 4px; display: flex; justify-content: space-between; align-items: center; }
.sensai-mock-sidebar-copy { font-size: 10px; color: #c0c8d0; text-align: center; margin-top: auto; padding-top: 8px; }
.sensai-mock-main {
  flex: 1; background: white; padding: 16px 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.sensai-mock-input-row {
  width: 100%; border: 1px solid #e2e6ea; border-radius: 24px;
  padding: 11px 16px; font-size: 12px; color: #b0b8c1;
  display: flex; align-items: center; justify-content: space-between; margin-top: auto; flex-shrink: 0;
}
.sensai-mock-input-icons { display: flex; gap: 8px; color: #9aa0a8; font-size: 14px; }

/* ── SenSai Mock — active chat conversation variant ─────── */
.sensai-mock-convo {
  flex: 1; display: flex; flex-direction: column; gap: 10px;
  overflow-y: auto; padding-bottom: 4px;
}
.sensai-mock-convo-header {
  display: flex; align-items: center; gap: 8px;
  padding-bottom: 12px; border-bottom: 1px solid #e2e6ea; flex-shrink: 0;
}
.sensai-mock-convo-icon { font-size: 18px; color: #6a7380; }
.sensai-mock-convo-name { font-size: 14px; font-weight: 700; color: var(--charcoal); line-height: 1.2; }
.sensai-mock-convo-status { font-size: 11px; color: #6a7380; display: flex; align-items: center; gap: 4px; }
.sensai-mock-pair-btn { margin-left: auto; background: linear-gradient(135deg, #025b93, #1a9e7a); color: white; border-radius: 8px; padding: 6px 12px; font-size: 11px; font-weight: 700; white-space: nowrap; cursor: default; flex-shrink: 0; }
.sensai-mock-msg { display: flex; gap: 8px; align-items: flex-start; }
.sensai-mock-msg-user { flex-direction: row-reverse; }
.sensai-mock-msg-avatar { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.sensai-mock-bubble {
  max-width: 80%; font-size: 12px; line-height: 1.65; padding: 10px 14px; border-radius: 14px;
}
.sensai-mock-bubble-ai   { background: linear-gradient(135deg, #f0f2f4, #e8f4f0); color: #2d3b42; border-top-left-radius: 4px; }
.sensai-mock-bubble-user { background: linear-gradient(135deg, #025b93, #1a9e7a); color: white; border-top-right-radius: 4px; }
.sensai-mock-msg-actions { display: flex; gap: 10px; margin-left: 36px; color: #b0b8c1; font-size: 13px; }

/* ── Feature Callouts (SenSai section) ──────────────────── */
.feature-callout { display: flex; gap: 14px; align-items: flex-start; }
.feature-callout-icon {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  background: rgba(0,157,204,0.15); border: 1px solid rgba(0,157,204,0.3);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.feature-callout-title { font-weight: 700; font-size: 14px; color: white; margin-bottom: 2px; }
.feature-callout-desc  { font-size: 13px; color: rgba(255,255,255,0.5); }

/* ── Feature List (home features preview) ──────────────── */
.feature-list-item { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.feature-list-icon {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue1), var(--blue2));
  display: flex; align-items: center; justify-content: center; font-size: 17px;
}
.feature-list-label { font-weight: 600; font-size: 15px; color: var(--charcoal); }

/* ── Testimonials ────────────────────────────────────────── */
.testimonial-card { background: white; border-radius: 16px; padding: 32px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); height: 100%; box-sizing: border-box; }
.stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--examine); font-size: 14px; }
.testimonial-quote { font-size: 15px; color: var(--text-body); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-sep  { border-top: 1px solid #eee; padding-top: 16px; }
.testimonial-name { font-weight: 700; font-size: 14px; color: var(--charcoal); }
.testimonial-role { font-size: 13px; color: #8a9099; }

/* ── Case Study Cards ────────────────────────────────────── */
.case-study-card { background: white; border-radius: 16px; padding: 32px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); height: 100%; box-sizing: border-box; display: flex; flex-direction: column; }
.case-study-tag { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 10px; border-radius: 20px; margin-bottom: 16px; }
.case-study-tag-healthcare { background: rgba(0,157,204,0.1); color: #009dcc; }
.case-study-tag-tech { background: rgba(101,15,173,0.1); color: #650fad; }
.case-study-tag-consulting { background: rgba(240,90,34,0.1); color: #f05a22; }
.case-study-tag-finance { background: rgba(63,81,181,0.1); color: #3949ab; }
.case-study-tag-consumer { background: rgba(230,81,0,0.1); color: #e65100; }
.case-study-tag-pharma { background: rgba(0,137,123,0.1); color: #00695c; }
.case-study-tag-education { background: rgba(103,58,183,0.1); color: #4527a0; }
.case-study-tag-startup { background: rgba(198,40,40,0.1); color: #c62828; }
.case-study-tag-nonprofit { background: rgba(46,125,50,0.1); color: #2e7d32; }
.case-study-org { font-size: 12px; font-weight: 600; color: #9aa5b0; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
.case-study-title { font-size: 17px; font-weight: 700; color: #374048; margin-bottom: 10px; line-height: 1.4; }
.case-study-challenge { font-size: 14px; color: #6a727a; line-height: 1.65; margin-bottom: 20px; flex: 1; }
.case-study-stats { display: flex; gap: 12px; margin-bottom: 20px; }
.case-study-stat { flex: 1; background: rgb(246,248,250); border-radius: 10px; padding: 12px 10px; text-align: center; }
.case-study-stat-value { font-size: 18px; font-weight: 900; color: #025b93; line-height: 1.1; margin-bottom: 4px; }
.case-study-stat-label { font-size: 11px; color: #9aa5b0; line-height: 1.3; }
.case-study-sep { border-top: 1px solid #eee; padding-top: 16px; }
.case-study-attr { font-size: 13px; font-weight: 600; color: #374048; }
.case-study-role { font-size: 12px; color: #9aa5b0; margin-top: 2px; }

/* ── Case Study Landing Page ─────────────────────────────── */
.cs-stats-bar { background: #025b93; padding: 48px 0; }
.cs-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.cs-stat-item { text-align: center; padding: 24px 16px; }
.cs-stat-value { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 8px; }
.cs-stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.75); line-height: 1.4; }
.cs-dynamics-flow { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin: 24px 0; }
.cs-dynamic-pill { padding: 8px 16px; border-radius: 24px; font-size: 13px; font-weight: 700; color: #fff; }
.cs-dynamic-arrow { color: #9aa5b0; font-size: 18px; }
.cs-data-table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: 14px; }
.cs-data-table th { background: #025b93; color: #fff; padding: 12px 16px; text-align: left; font-weight: 600; font-size: 13px; }
.cs-data-table td { padding: 12px 16px; border-bottom: 1px solid #ebecee; color: #374048; }
.cs-data-table tr:last-child td { border-bottom: none; }
.cs-data-table tr:nth-child(even) td { background: rgb(246,248,250); }
.cs-data-table .td-after { font-weight: 700; color: #025b93; }
.cs-data-table .td-note { font-size: 12px; color: #9aa5b0; font-style: italic; }
.cs-pullquote { border-left: 4px solid #009dcc; background: rgb(246,248,250); border-radius: 0 12px 12px 0; padding: 24px 28px; margin: 0 0 20px; }
.cs-pullquote p { font-size: 15px; color: #374048; line-height: 1.7; margin: 0 0 8px; font-style: italic; }
.cs-pullquote-context { font-size: 13px; color: #9aa5b0; font-style: normal; }
.cs-results-sub { font-size: 1rem; font-weight: 700; color: #025b93; margin: 32px 0 12px; padding-bottom: 8px; border-bottom: 2px solid #ebecee; }
.cs-patient-list { list-style: none; padding: 0; margin: 0 0 24px; }
.cs-patient-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: #6a727a; margin-bottom: 10px; line-height: 1.5; }
.cs-patient-list li::before { content: "✓"; color: #8dbd3e; font-weight: 700; flex-shrink: 0; }
.cs-engagement-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 16px 0 24px; }
.cs-engagement-card { background: rgb(246,248,250); border-radius: 10px; padding: 16px 12px; text-align: center; }
.cs-engagement-card.highlight { background: rgba(2,91,147,0.08); border: 1px solid rgba(2,91,147,0.2); }
.cs-engagement-label { font-size: 12px; font-weight: 600; color: #9aa5b0; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px; }
.cs-engagement-row { display: flex; justify-content: center; gap: 16px; }
.cs-engagement-before { font-size: 18px; font-weight: 700; color: #9aa5b0; }
.cs-engagement-after { font-size: 18px; font-weight: 900; color: #025b93; }
.cs-engagement-change { font-size: 11px; color: #8dbd3e; font-weight: 700; margin-top: 4px; }
.cs-section-sub { font-size: 0.9rem; color: #6a727a; text-align: center; margin-top: -32px; margin-bottom: 48px; }
.cs-download-secondary { display: inline-block; font-size: 14px; color: rgba(255,255,255,0.7); text-decoration: none; margin-top: 16px; border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 2px; }
.cs-download-secondary:hover { color: #fff; border-bottom-color: rgba(255,255,255,0.7); }
@media (max-width: 768px) {
  .cs-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-engagement-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .cs-stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ── FAQ Accordion ───────────────────────────────────────── */
.faq-item {
  background: white; border-radius: 12px; padding: 20px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04); margin-bottom: 12px;
}
.faq-item summary {
  font-weight: 700; font-size: 15px; color: var(--charcoal);
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
}
.faq-icon { font-size: 18px; color: var(--blue2); transition: transform 0.2s; flex-shrink: 0; }
.faq-item[open] .faq-icon { transform: rotate(180deg); }
.faq-answer { font-size: 14px; color: var(--text-mid); line-height: 1.75; margin-top: 12px; }

/* ── Demo CTA ─────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--blue1) 0%, var(--blue2) 100%);
  padding: 96px 24px; text-align: center;
}
.cta-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); border-radius: 20px;
  padding: 6px 16px; margin-bottom: 24px;
  font-size: 13px; color: white; font-weight: 600;
}
.cta-title { font-weight: 900; font-size: clamp(32px, 5vw, 48px); color: white; margin-bottom: 16px; line-height: 1.2; }
.cta-sub   { font-size: 20px; color: rgba(255,255,255,0.85); margin-bottom: 40px; line-height: 1.6; }
.cta-note  { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 16px; }

/* ── Footer ──────────────────────────────────────────────── */
#footer { background: var(--charcoal); color: white; padding: 64px 0 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.footer-grid  { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-logo  { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.footer-logo img { height: 36px; width: auto; }
.footer-logo-name { font-weight: 900; font-size: 16px; letter-spacing: 2px; color: white; }
.footer-logo-name sup { font-size: 8px; }
.footer-logo-sub  { font-size: 8px; color: var(--blue2); letter-spacing: 1.5px; font-weight: 600; }
.footer-logo-sub sup { font-size: 6px; }
.footer-tagline { font-size: 14px; line-height: 1.7; color: #aab0b8; max-width: 260px; margin-top: 12px; }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.footer-social-btn {
  width: 36px; height: 36px; background: rgba(255,255,255,0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; flex-shrink: 0;
}
.footer-social-btn:hover { background: var(--blue2); }
.footer-social-btn svg { width: 16px; height: 16px; fill: white; display: block; }
.footer-col-title { font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: #ccd0d6; margin-bottom: 16px; }
.footer-link  { display: block; color: #8a9199; font-size: 14px; margin-bottom: 10px; transition: color 0.2s; }
.footer-link:hover { color: var(--blue2); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy  { font-size: 13px; color: #7a8390; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: #7a8390; transition: color 0.2s; }
.footer-legal a:hover { color: var(--blue2); }

/* ── Dynamics List (home + about) ───────────────────────── */
.dynamic-row {
  display: flex; align-items: flex-start; gap: 16px; padding: 16px 20px;
  border-radius: 12px; margin-bottom: 8px; border: 2px solid transparent; transition: all 0.2s;
}
.dynamic-icon {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.dynamic-label { font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.dynamic-desc  { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* ── Mission / Vision ────────────────────────────────────── */
.mv-card { padding: 48px 40px; border-radius: 20px; text-align: center; position: relative; overflow: hidden; box-shadow: 0 4px 28px rgba(0,0,0,0.07); transition: transform 0.2s, box-shadow 0.2s; }
.mv-card:hover { transform: translateY(-4px); box-shadow: 0 10px 40px rgba(0,0,0,0.11); }
.mv-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--mv-accent, var(--blue1)); }
.mv-card-mission { background: rgba(2,91,147,0.05); --mv-accent: #025b93; }
.mv-card-mission .mv-label { color: #025b93; }
.mv-card-vision { background: rgba(101,15,173,0.05); --mv-accent: #650fad; }
.mv-card-vision .mv-label { color: #650fad; }
.mv-icon { font-size: 44px; margin-bottom: 20px; display: block; line-height: 1; }
.mv-label { font-weight: 700; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 16px; }
.mv-text  { font-size: clamp(17px, 1.8vw, 21px); color: var(--charcoal); line-height: 1.65; font-weight: 400; margin: 0; }

/* ── Our Story photo ─────────────────────────────────────── */
.story-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 56px; align-items: start; }
.story-img { width: 100%; border-radius: 16px; box-shadow: 0 8px 32px rgba(0,0,0,0.12); display: block; object-fit: cover; }
.story-img-caption { margin-top: 14px; text-align: center; }
.story-img-name { font-weight: 700; font-size: 15px; color: var(--charcoal); display: block; }
.story-img-title { font-size: 13px; color: var(--text-mid); display: block; margin-top: 2px; }

/* ── Science sidebar ─────────────────────────────────────── */
.science-framework { padding: 20px 24px; background: var(--soft-gray); border-radius: 12px; margin-bottom: 24px; }
.science-item { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.science-item:last-child { margin-bottom: 0; }
.science-dot  { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.science-label{ font-weight: 700; font-size: 14px; }
.science-desc { font-size: 13px; color: var(--text-mid); }

/* ── Industry Grid ───────────────────────────────────────── */
.industry-card { background: white; border-radius: 12px; padding: 24px 12px; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.industry-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; font-size: 22px; }
.industry-label { font-weight: 700; font-size: 12px; color: var(--charcoal); }

/* ── Energy & Intensities Key ────────────────────────────── */
.key-subsection { margin-bottom: 56px; }
.key-subsection:last-child { margin-bottom: 0; }
.key-subsection-title { font-weight: 700; font-size: 17px; color: var(--charcoal); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--soft-gray); }
.key-dynamics-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.key-dynamic-card { background: white; border-radius: 14px; padding: 20px 16px; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: transform 0.2s, box-shadow 0.2s; }
.key-dynamic-card:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(0,0,0,0.10); }
.key-dynamic-dot { width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 12px; }
.key-dynamic-name { font-weight: 700; font-size: 14px; margin-bottom: 8px; }
.key-dynamic-desc { font-size: 12px; color: var(--text-mid); line-height: 1.65; text-align: left; }
.key-intensities-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.key-intensity-item { display: flex; gap: 16px; align-items: flex-start; background: white; border-radius: 12px; padding: 18px 20px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.key-intensity-indicator { flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 44px; }
.key-intensity-dot { border-radius: 50%; background: #8dbd3e; }
.key-intensity-name { font-weight: 700; font-size: 14px; color: var(--charcoal); margin-bottom: 4px; }
.key-intensity-desc { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

/* ── Use Cases ───────────────────────────────────────────── */
.usecase-card { padding: 24px; border: 2px solid #edf0f2; border-radius: 12px; transition: all 0.2s; height: 100%; box-sizing: border-box; }
.usecase-card:hover { border-color: var(--blue2); }
.usecase-header { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.usecase-check  { font-size: 16px; }
.usecase-title  { font-weight: 700; font-size: 15px; color: var(--charcoal); }
.usecase-desc   { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

/* ── Partner Cards ───────────────────────────────────────── */
.partners-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 860px; margin: 0 auto;
}
.partner-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 32px 28px;
  text-decoration: none;
  display: flex; flex-direction: column; gap: 12px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.partner-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--partner-accent, var(--blue2));
}
.partner-card:hover {
  background: rgba(255,255,255,0.1); transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.partner-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.partner-card-name {
  font-size: 16px; font-weight: 700; color: white; line-height: 1.3;
}
.partner-card-desc {
  font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; flex: 1;
}
.partner-card-link {
  font-size: 12px; font-weight: 700; color: var(--blue2);
  letter-spacing: 0.03em; margin-top: 4px;
}

/* ── Integration Badges ──────────────────────────────────── */
.integration-row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.integration-badge {
  position: relative;
  display: flex; align-items: center; gap: 8px;
  background: white; border-radius: 10px; padding: 12px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  font-weight: 600; font-size: 14px; color: var(--charcoal);
  cursor: default; transition: box-shadow 0.2s, transform 0.2s;
}
.integration-badge:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.10); transform: translateY(-2px);
}
.integration-badge-popup {
  position: absolute; bottom: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  background: white; border: 1px solid #e2e6ea;
  border-radius: 12px; padding: 14px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  width: 220px; text-align: left; z-index: 100;
}
.integration-badge-popup::after {
  content: ''; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent; border-top-color: white;
}
.integration-badge-popup::before {
  content: ''; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent; border-top-color: #e2e6ea;
  margin-top: 1px;
}
.integration-badge:hover .integration-badge-popup {
  opacity: 1; transform: translateX(-50%) translateY(0);
}
.integration-badge-popup-title {
  font-size: 13px; font-weight: 700; color: var(--charcoal); margin-bottom: 5px;
}
.integration-badge-popup-desc {
  font-size: 12px; color: #6a7380; line-height: 1.55;
}

/* ── Guide Cards ─────────────────────────────────────────── */
.guide-tag {
  display: inline-block; background: rgba(0,157,204,0.12); color: var(--blue2);
  font-weight: 700; font-size: 11px; letter-spacing: 1px;
  padding: 3px 10px; border-radius: 20px; margin-bottom: 16px; text-transform: uppercase;
}
.guide-icon-wrap {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(2,91,147,0.08); display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 14px;
}
.guide-read { display: flex; align-items: center; gap: 6px; font-weight: 700; font-size: 13px; color: var(--blue1); margin-top: 16px; }

/* ── Webinar List ────────────────────────────────────────── */
.webinar-item {
  display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px;
  border: 2px solid #edf0f2; border-radius: 10px; margin-bottom: 14px;
}
.webinar-item:last-child { margin-bottom: 0; }
.webinar-icon  { color: var(--blue2); flex-shrink: 0; margin-top: 2px; font-size: 14px; }
.webinar-title { font-size: 14px; color: var(--charcoal); font-weight: 600; }

/* ── Quote / Blockquote ──────────────────────────────────── */
.blockquote-center {
  font-weight: 700; font-size: clamp(18px, 2.5vw, 26px);
  color: var(--blue2); font-style: italic; text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 40px;
}
.science-quote {
  font-size: 15px; color: var(--evaluate); font-style: italic; font-weight: 700;
  border-left: 3px solid var(--evaluate); padding-left: 16px;
}

/* ── Text helpers ────────────────────────────────────────── */
.text-blue1    { color: var(--blue1); }
.text-blue2    { color: var(--blue2); }
.text-execute  { color: var(--execute); }
.text-evaluate { color: var(--evaluate); }
.text-mid      { color: var(--text-mid); }
.text-white    { color: white; }
.text-white-80 { color: rgba(255,255,255,0.8); }
.text-white-70 { color: rgba(255,255,255,0.7); }
.text-white-55 { color: rgba(255,255,255,0.55); }
.text-white-65 { color: rgba(255,255,255,0.65); }
.mb-0  { margin-bottom: 0; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }

/* ── Newsletter ──────────────────────────────────────────── */
.newsletter-section {
  background: linear-gradient(135deg, rgb(1,30,50) 0%, rgb(1,61,99) 100%);
  padding: 72px 24px;
  text-align: center;
}
.newsletter-section .section-eyebrow { color: var(--blue2); }
.newsletter-section .section-title   { color: #fff; }
.newsletter-section .section-body    { color: rgba(255,255,255,0.75); }
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 28px auto 0;
}
.newsletter-input {
  flex: 1;
  padding: 13px 18px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-input:focus { border-color: var(--blue2); }
.newsletter-note {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
/* Footer newsletter strip */
.footer-newsletter {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 28px 0 24px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-newsletter-label {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.footer-newsletter-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}
.footer-newsletter-form {
  display: flex;
  gap: 8px;
  flex: 1;
  max-width: 400px;
}
.footer-newsletter-input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  min-width: 0;
}
.footer-newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter-input:focus { border-color: var(--blue2); }

/* ── Fade-in Animation ───────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links    { display: none; }
  .nav-ctas     { display: none; }
  .nav-hamburger{ display: flex; }
  .grid-2col         { grid-template-columns: 1fr; gap: 40px; }
  .grid-2col-start   { grid-template-columns: 1fr; gap: 32px; }
  .story-grid        { grid-template-columns: 1fr; gap: 32px; }
  .key-dynamics-grid { grid-template-columns: repeat(3, 1fr); }
  .key-intensities-grid { grid-template-columns: 1fr; }
  .grid-2col-md      { grid-template-columns: 1fr; gap: 32px; }
  .grid-auto-3       { grid-template-columns: 1fr; }
  .grid-auto-3-wide  { grid-template-columns: 1fr; }
  .grid-auto-6       { grid-template-columns: repeat(3, 1fr); }
  .journey-row       { flex-direction: column; gap: 24px; }
  .journey-step:not(:last-child)::after { display: none; }
  .hero-inner { flex-direction: column; padding: 60px 24px; }
  .hero-content { max-width: 100%; }
  .hero-petal { display: none; }
  .hero-stats { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section    { padding: 64px 24px; }
  .section-sm { padding: 56px 24px; }
  .page-hero  { padding: 100px 24px 72px; }
  .grid-2col .text-right-mobile { text-align: center; }
}

@media (max-width: 480px) {
  .key-dynamics-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-auto-6  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid  { grid-template-columns: 1fr; }
  .footer-bottom{ flex-direction: column; align-items: flex-start; }
  .footer-legal { flex-wrap: wrap; gap: 12px; }
  .hero-stats   { flex-direction: column; gap: 16px; }
  .hero-ctas    { flex-direction: column; }
  .partners-row { grid-template-columns: 1fr; gap: 16px; }
  .newsletter-form { flex-direction: column; }
  .footer-newsletter { flex-direction: column; align-items: flex-start; }
  .footer-newsletter-form { width: 100%; max-width: 100%; }
}

/* ── 5 Dynamics Bubble Hover Overlay ────────────────────── */
.dynamics-bubble-wrap {
  position: relative;
  display: inline-block;
  width: 320px;
}
.dynamics-bubble-wrap img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}
.dynamics-bubble-zone {
  position: absolute;
  border-radius: 50%;
  cursor: default;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.dynamics-bubble-tooltip {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.dynamics-bubble-zone:hover .dynamics-bubble-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.zone-explore:hover  { background: rgba(2,91,147,0.22);   box-shadow: 0 0 28px rgba(2,91,147,0.4); }
.zone-explore  .dynamics-bubble-tooltip { background: #025b93; }
.zone-excite:hover   { background: rgba(141,189,62,0.22);  box-shadow: 0 0 28px rgba(141,189,62,0.4); }
.zone-excite   .dynamics-bubble-tooltip { background: #8dbd3e; }
.zone-examine:hover  { background: rgba(235,211,20,0.22);  box-shadow: 0 0 28px rgba(235,211,20,0.4); }
.zone-examine  .dynamics-bubble-tooltip { background: #b09a10; }
.zone-execute:hover  { background: rgba(240,90,34,0.22);   box-shadow: 0 0 28px rgba(240,90,34,0.4); }
.zone-execute  .dynamics-bubble-tooltip { background: #f05a22; }
.zone-evaluate:hover { background: rgba(101,15,173,0.22);  box-shadow: 0 0 28px rgba(101,15,173,0.4); }
.zone-evaluate .dynamics-bubble-tooltip { background: #650fad; }
