/* ════════════════════════════════════════════════
   INDEX — Shared Stylesheet
   ════════════════════════════════════════════════ */

/* ── Self-hosted Inter font ── */
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 300; font-display: swap; src: url('fonts/inter/inter-300.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/inter/inter-400.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('fonts/inter/inter-500.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('fonts/inter/inter-600.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('fonts/inter/inter-700.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 800; font-display: swap; src: url('fonts/inter/inter-800.woff2') format('woff2'); }

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #1B3B4F;
  --bg-dark: #152f3f;
  --bg-darker: #112534;
  --bg-card: #1f4560;
  --bg-card-hover: #245070;
  --teal: #03A6B5;
  --teal-glow: rgba(3, 166, 181, 0.15);
  --teal-border: rgba(3, 166, 181, 0.3);
  --orange: #E95424;
  --orange-light: #f06a3c;
  --orange-glow: rgba(233, 84, 36, 0.15);
  --orange-border: rgba(233, 84, 36, 0.3);
  --text: #F2F7F7;
  --text-secondary: #a8c4ce;
  --text-muted: #6d8d9e;
  --border: rgba(242, 247, 247, 0.08);
  --border-hover: rgba(242, 247, 247, 0.14);
  --heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

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

/* ── Design Badge ── */
.design-badge {
  position: fixed; bottom: 20px; right: 20px;
  background: var(--bg); border: 1px solid var(--border);
  padding: 8px 16px; border-radius: 999px;
  font-size: 11px; color: var(--text-muted);
  z-index: 1000; letter-spacing: 0.5px; text-transform: uppercase;
}
.design-badge span { color: var(--orange); }

/* ════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 60px; height: 76px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(27, 59, 79, 0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease;
}

nav.scrolled {
  background: rgba(27, 59, 79, 0.95);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

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

.logo-svg { height: 44px; width: auto; }

.nav-links { display: flex; gap: 32px; list-style: none; }

.nav-links a {
  color: var(--text-secondary); text-decoration: none;
  font-size: 14px; font-weight: 500; transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }

.nav-cta {
  padding: 10px 28px; background: var(--orange);
  color: white !important; border-radius: 6px;
  font-weight: 600; font-size: 14px; text-decoration: none;
  transition: all 0.25s;
}
.nav-cta:hover { background: var(--orange-light); }

/* ════════════════════════════════════
   BUTTONS
   ════════════════════════════════════ */
.btn-primary {
  padding: 15px 36px; background: var(--orange); color: white;
  border: none; border-radius: 6px; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: all 0.25s; font-family: var(--sans);
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-1px); }

.btn-secondary {
  padding: 15px 36px; background: rgba(242, 247, 247, 0.06);
  color: var(--text); border: 1px solid rgba(242, 247, 247, 0.18);
  border-radius: 6px; font-size: 15px; font-weight: 500;
  cursor: pointer; transition: all 0.25s; font-family: var(--sans);
  text-decoration: none; display: inline-flex; align-items: center;
}
.btn-secondary:hover { background: rgba(242, 247, 247, 0.1); border-color: rgba(242, 247, 247, 0.28); }

.btn-teal {
  padding: 15px 36px; background: var(--teal); color: white;
  border: none; border-radius: 6px; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: all 0.25s; font-family: var(--sans);
  text-decoration: none; display: inline-flex; align-items: center;
}
.btn-teal:hover { background: #04b8c8; transform: translateY(-1px); }

/* ════════════════════════════════════
   SECTION COMMONS
   ════════════════════════════════════ */
section { padding: 100px 60px; }

.container { max-width: 1140px; margin: 0 auto; }

.section-label {
  font-size: 12px; text-transform: uppercase;
  letter-spacing: 2.5px; color: var(--teal);
  font-weight: 600; margin-bottom: 16px;
}

.section-title {
  font-family: var(--heading);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 700; line-height: 1.15;
  margin-bottom: 16px; letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 18px; color: var(--text-secondary);
  max-width: 600px; line-height: 1.75;
}

.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-subtitle { margin: 0 auto; }

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

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}

.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(27, 59, 79, 0.93) 0%, rgba(27, 59, 79, 0.75) 50%, rgba(27, 59, 79, 0.55) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 960px; padding: 110px 80px 36px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 18px;
  background: var(--orange-glow);
  border: 1px solid var(--orange-border);
  border-radius: 4px;
  font-size: 12px; color: var(--orange); font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase; letter-spacing: 1.5px;
}

.hero h1 {
  font-family: var(--heading);
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 700; line-height: 1.08;
  margin-bottom: 16px; color: white;
  letter-spacing: -0.5px;
}

.hero h1 em { color: var(--teal); font-style: normal; }

.hero-sub {
  font-size: 18px; color: rgba(242, 247, 247, 0.8);
  max-width: 820px; line-height: 1.7; margin-bottom: 20px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* ════════════════════════════════════
   TEXT SECTION
   ════════════════════════════════════ */
.text-section { background: var(--bg-dark); }

.text-section .container {
  max-width: 820px;
}

.text-section .lead {
  font-size: 20px; color: var(--text);
  line-height: 1.7; margin-bottom: 24px;
}

.text-section p {
  font-size: 18px; color: var(--text-secondary);
  line-height: 1.8; margin-bottom: 20px;
}

/* ════════════════════════════════════
   DEFINITION BLOCK
   ════════════════════════════════════ */
.definition-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  border-radius: 0 12px 12px 0;
  padding: 28px 36px;
  max-width: 820px;
  margin: 0 auto;
}

.definition-block h3 {
  font-family: var(--heading);
  font-size: 18px; font-weight: 700;
  color: var(--teal); margin-bottom: 10px;
  text-transform: uppercase; letter-spacing: 1px;
}

.definition-block p {
  font-size: 18px; color: var(--text-secondary);
  line-height: 1.75;
}

/* ════════════════════════════════════
   VALUE BLOCKS
   ════════════════════════════════════ */
.value-blocks { background: var(--bg-dark); padding-bottom: 60px; }

.value-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; max-width: 1140px; margin: 0 auto;
}

.value-card {
  border-radius: 14px; overflow: hidden;
  position: relative; min-height: 520px;
  display: flex; flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.4s;
}

.value-card:hover { transform: translateY(-4px); }

.value-card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}

.value-card-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(21, 47, 63, 0.88);
}

.value-card-content {
  position: relative; z-index: 2;
  padding: 36px;
}

.value-card-label {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 2px; color: var(--orange);
  font-weight: 600; margin-bottom: 8px;
}

.value-card h3 {
  font-family: var(--heading); font-size: 28px;
  font-weight: 800; margin-bottom: 10px; color: white;
  letter-spacing: -0.4px;
}

.value-card .tagline {
  font-size: 16px; color: var(--text-secondary);
  font-style: italic; margin-bottom: 20px;
  line-height: 1.6;
}

.value-card ul {
  list-style: none; display: flex;
  flex-direction: column; gap: 10px;
  margin-bottom: 20px;
}

.value-card ul li {
  font-size: 16px; color: rgba(242, 247, 247, 0.7);
  display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.6;
}

.value-card ul li::before {
  content: '';
  flex-shrink: 0; width: 14px; height: 14px; margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2303A6B5' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
}

.value-card .outcome {
  font-size: 16px; color: var(--teal);
  font-weight: 500; line-height: 1.6;
  border-top: 1px solid rgba(242, 247, 247, 0.06);
  padding-top: 16px;
}

/* Full-width value card */
.value-card.full-width {
  grid-column: 1 / -1;
  min-height: 340px;
}

/* ════════════════════════════════════
   QUOTE / SPOTLIGHT
   ════════════════════════════════════ */
.spotlight {
  position: relative; overflow: hidden;
  padding: 80px 60px;
}

.spotlight-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}

.spotlight-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(21, 47, 63, 0.88);
}

.spotlight-content {
  position: relative; z-index: 2;
  max-width: 800px; margin: 0 auto;
  text-align: center;
}

.spotlight-quote {
  font-family: var(--heading);
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 400; line-height: 1.5;
  color: var(--text); margin-bottom: 28px;
  font-style: italic;
}

.spotlight-quote::before {
  content: '\201C';
  display: block;
  font-size: 64px; line-height: 1;
  color: var(--orange); opacity: 0.5;
  margin-bottom: 12px;
}

.spotlight-author { font-size: 16px; color: var(--text-secondary); }
.spotlight-author strong { color: var(--text); font-weight: 600; }

/* ════════════════════════════════════
   INTEGRATIONS
   ════════════════════════════════════ */
.integrations-section {
  background: var(--bg-darker);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 60px;
}

.integrations-inner {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}

.integrations-title {
  font-family: var(--heading);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.3px;
  margin-bottom: 14px;
}

.integrations-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 52px;
  line-height: 1.6;
}

.integrations-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.integration-logo-item {
  flex: 1;
  min-width: 120px;
  max-width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 28px;
  transition: opacity 0.2s;
}

.integration-logo-item:hover {
  opacity: 0.8;
}

.integration-logo-item img {
  height: 45px;
  width: auto;
  max-width: 163px;
  object-fit: contain;
  filter: brightness(0.75);
  transition: filter 0.2s;
}

.integration-logo-item:hover img {
  filter: brightness(1);
}

/* ════════════════════════════════════
   PROOF BAR / METRICS
   ════════════════════════════════════ */
.proof-bar {
  background: var(--bg-darker);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 60px;
}

.proof-row {
  display: flex; justify-content: center;
  max-width: 1060px; margin: 0 auto;
}

.proof-item {
  text-align: center; flex: 1;
  padding: 0 36px;
  border-right: 1px solid var(--border);
}
.proof-item:last-child { border-right: none; }

.proof-number {
  font-family: var(--heading);
  font-size: 52px; color: var(--orange);
  font-weight: 700; letter-spacing: -1px; margin-bottom: 6px;
}

.proof-label {
  font-size: 14px; color: var(--text-muted);
  font-weight: 500;
}

/* ════════════════════════════════════
   OUTCOMES SNAPSHOT
   ════════════════════════════════════ */
.outcomes { background: var(--bg-dark); }

.outcomes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1140px; margin: 0 auto;
}

.outcome-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 40px 32px;
  transition: all 0.3s;
}

.outcome-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.outcome-icon {
  width: 48px; height: 48px; margin-bottom: 24px;
  color: var(--teal);
}

.outcome-card h3 {
  font-family: var(--heading); font-size: 20px;
  font-weight: 700; margin-bottom: 12px;
}

.outcome-card p {
  font-size: 16px; color: var(--text-secondary);
  line-height: 1.75;
}

/* ════════════════════════════════════
   SPLIT SECTION
   ════════════════════════════════════ */
.split-section {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.split-image { position: relative; overflow: hidden; }

.split-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}

.split-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--bg-dark) 100%);
}

.split-image.right-fade::after {
  background: linear-gradient(270deg, transparent 60%, var(--bg) 100%);
}

.split-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px; background: var(--bg-dark);
}

.split-text.alt-bg { background: var(--bg); }

.split-text .section-label, .split-text .section-title { text-align: left; }
.split-text .section-subtitle { text-align: left; margin-bottom: 32px; }

.feature-list {
  list-style: none; display: flex;
  flex-direction: column; gap: 16px;
}

.feature-list li {
  display: flex; align-items: flex-start;
  gap: 14px; font-size: 16px;
  color: var(--text-secondary); line-height: 1.65;
}

.feature-list .check {
  flex-shrink: 0; width: 22px; height: 22px;
  color: var(--teal); margin-top: 2px;
}

/* ════════════════════════════════════
   GRID CARDS (generic)
   ════════════════════════════════════ */
.card-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1140px; margin: 0 auto;
}

.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 40px 32px;
  transition: all 0.3s;
}

.card:hover {
  border-color: var(--border-hover); transform: translateY(-3px);
}

.card-icon {
  width: 48px; height: 48px; margin-bottom: 24px;
  color: var(--teal);
}

.card h3 {
  font-family: var(--heading); font-size: 20px;
  font-weight: 700; margin-bottom: 12px;
}

.card p {
  font-size: 16px; color: var(--text-secondary); line-height: 1.75;
}

/* ════════════════════════════════════
   FULL-BLEED PHOTO CTA
   ════════════════════════════════════ */
.cta-section {
  position: relative; text-align: center;
  padding: 140px 60px; overflow: hidden;
}

.cta-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}

.cta-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(21, 47, 63, 0.87);
}

.cta-content {
  position: relative; z-index: 2;
  max-width: 640px; margin: 0 auto;
}

.cta-content .section-title { color: white; margin-bottom: 20px; }
.cta-content .section-subtitle { margin: 0 auto 44px; color: var(--text-secondary); }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════
   PAGE HEADER (inner pages)
   ════════════════════════════════════ */
.page-header {
  padding: 160px 60px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}

.page-header-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(27, 59, 79, 0.92), rgba(27, 59, 79, 0.97));
}

.page-header-content { position: relative; z-index: 2; }

.page-header h1 {
  font-family: var(--heading);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700; line-height: 1.1;
  margin-bottom: 20px; letter-spacing: -0.5px;
}

.page-header .subtitle {
  font-size: 19px; color: var(--text-secondary);
  max-width: 720px; margin: 0 auto; line-height: 1.7;
}

/* ════════════════════════════════════
   PROCESS / STEPS
   ════════════════════════════════════ */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; max-width: 1100px; margin: 0 auto;
  position: relative;
}

.process-grid::before {
  content: ''; position: absolute;
  top: 36px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal-border), var(--teal-border), transparent);
}

.process-step { text-align: center; padding: 0 20px; position: relative; }

.step-number {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--teal-border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; position: relative; z-index: 2;
}

.step-number span {
  font-family: var(--heading); font-size: 24px; color: var(--teal);
}

.process-step h4 {
  font-family: var(--heading); font-size: 18px;
  font-weight: 700; margin-bottom: 10px;
}

.process-step p {
  font-size: 16px; color: var(--text-muted); line-height: 1.7;
}

/* ════════════════════════════════════
   TEAM GRID (About)
   ════════════════════════════════════ */
.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; max-width: 1140px; margin: 0 auto;
}

.team-card { text-align: center; }

.team-photo {
  width: 160px; height: 160px; border-radius: 50%;
  background: var(--bg-card); border: 2px solid var(--border);
  margin: 0 auto 20px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

.team-photo .initials {
  font-family: var(--heading); font-size: 36px;
  color: var(--teal); opacity: 0.6;
}

.team-card h4 {
  font-family: var(--heading); font-size: 18px;
  font-weight: 700; margin-bottom: 4px;
  color: var(--text);
}

.team-card p {
  font-size: 15px; color: var(--orange); font-weight: 500;
}

/* ════════════════════════════════════
   COMPLIANCE / TRUST BAR
   ════════════════════════════════════ */
.compliance-bar {
  padding: 48px 60px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-darker);
}

.compliance-inner {
  display: flex; justify-content: center; align-items: center;
  gap: 48px; max-width: 960px; margin: 0 auto; flex-wrap: wrap;
}

.compliance-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-muted); font-weight: 500;
}

.compliance-icon { width: 20px; height: 20px; color: var(--teal); opacity: 0.7; }

/* ════════════════════════════════════
   FOOTER
   ════════════════════════════════════ */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 60px 40px;
}

.footer-grid {
  display: grid; grid-template-columns: 2.5fr 1fr 1fr;
  gap: 48px; max-width: 1140px; margin: 0 auto 56px;
}

.footer-brand .logo { margin-bottom: 18px; }

.footer-brand p {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.75; max-width: 300px;
}

.footer-col h4 {
  font-size: 12px; font-weight: 600; color: var(--text-secondary);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 22px;
}

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

.footer-col a {
  font-size: 14px; color: var(--text-muted);
  text-decoration: none; transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-secondary); }

.footer-bottom {
  max-width: 1140px; margin: 0 auto; padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}

.footer-bottom p { font-size: 13px; color: var(--text-muted); }

.footer-legal { display: flex; gap: 24px; }

.footer-legal a {
  font-size: 13px; color: var(--text-muted);
  text-decoration: none; transition: color 0.2s;
}
.footer-legal a:hover { color: var(--text-secondary); }

/* ════════════════════════════════════
   TRUSTED-BY BAR
   ════════════════════════════════════ */
.trusted-bar {
  padding: 40px 60px;
  background: var(--bg-darker);
  border-top: 1px solid var(--teal-border);
  border-bottom: 1px solid var(--teal-border);
  text-align: center;
}

.trusted-bar p {
  font-family: var(--heading);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700; color: var(--text);
  letter-spacing: -0.2px; margin: 0;
}

/* ════════════════════════════════════
   PROBLEM / SOLUTION SPLIT
   ════════════════════════════════════ */
.problem-solution {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; max-width: 1140px; margin: 0 auto;
}

.problem-card, .solution-card {
  padding: 56px 52px;
  border-radius: 16px;
}

.problem-card {
  background: rgba(233, 84, 36, 0.06);
  border: 1px solid var(--orange-border);
  border-radius: 16px 0 0 16px;
}

.solution-card {
  background: rgba(3, 166, 181, 0.06);
  border: 1px solid var(--teal-border);
  border-radius: 0 16px 16px 0;
}

.problem-card .card-label, .solution-card .card-label {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 2px; font-weight: 700;
  margin-bottom: 20px; display: flex;
  align-items: center; gap: 10px;
}

.problem-card .card-label { color: var(--orange); }
.solution-card .card-label { color: var(--teal); }

.problem-card h3, .solution-card h3 {
  font-family: var(--heading); font-size: 24px;
  font-weight: 700; margin-bottom: 20px;
  letter-spacing: -0.3px; line-height: 1.3;
}

.problem-card p, .solution-card p {
  font-size: 16px; color: var(--text-secondary);
  line-height: 1.75;
}

.problem-card .pain-points {
  list-style: none; display: flex;
  flex-direction: column; gap: 14px;
  margin-top: 24px;
}

.problem-card .pain-points li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 16px; color: var(--text-secondary); line-height: 1.6;
}

.problem-card .pain-points .x-icon {
  flex-shrink: 0; width: 18px; height: 18px;
  color: var(--orange); opacity: 0.7; margin-top: 2px;
}

.solution-card .solution-points {
  list-style: none; display: flex;
  flex-direction: column; gap: 14px;
  margin-top: 24px;
}

.solution-card .solution-points li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 16px; color: var(--text-secondary); line-height: 1.6;
}

.solution-card .solution-points .check-icon {
  flex-shrink: 0; width: 18px; height: 18px;
  color: var(--teal); margin-top: 2px;
}

/* ════════════════════════════════════
   TAGLINE BAR
   ════════════════════════════════════ */
.tagline-bar {
  background: var(--teal);
  padding: 18px 60px;
  text-align: center;
}
.tagline-bar p {
  font-family: var(--heading);
  font-size: 28px; font-weight: 700;
  color: white; letter-spacing: 0.3px;
  margin: 0;
}

/* ════════════════════════════════════
   CORE INSIGHT
   ════════════════════════════════════ */
.core-insight {
  padding: 64px 60px;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
}
.core-insight-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.12;
}
.core-insight-inner {
  max-width: 800px; margin: 0 auto;
  text-align: center; position: relative; z-index: 2;
}
.core-insight p {
  font-size: 23px; font-weight: 500;
  color: var(--text); line-height: 1.6;
  letter-spacing: -0.2px; margin: 0;
}

/* ════════════════════════════════════
   CAROUSEL
   ════════════════════════════════════ */
.carousel { position: relative; /* height locked by JS */ }
.carousel-slide {
  opacity: 0; position: absolute; top: 0; left: 0; right: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.carousel-slide.active { opacity: 1; pointer-events: auto; }
.carousel-slide.long-quote .spotlight-quote {
  font-size: clamp(18px, 2.2vw, 26px);
}
.carousel-dots {
  display: flex; gap: 10px; justify-content: center;
  margin-top: 32px;
}
.carousel-dot {
  width: 10px; height: 10px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3); background: transparent;
  cursor: pointer; transition: all 0.3s; padding: 0;
}
.carousel-dot.active { background: var(--orange); border-color: var(--orange); }

/* ════════════════════════════════════
   CONTACT MODAL
   ════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 48px; width: 100%; max-width: 520px;
  position: relative; transform: translateY(20px);
  transition: transform 0.3s;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; color: var(--text-muted);
  font-size: 28px; cursor: pointer; line-height: 1;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--text); }
.modal h2 {
  font-family: var(--heading); font-size: 28px; font-weight: 700;
  margin-bottom: 8px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 13px; color: var(--text-secondary);
  font-weight: 500; margin-bottom: 6px;
}
.form-group input, .form-group textarea {
  width: 100%; padding: 12px 16px; border-radius: 8px;
  border: 1px solid var(--border); background: var(--bg-dark);
  color: var(--text); font-size: 15px; font-family: var(--sans);
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--teal);
}
.form-group textarea { resize: vertical; }

/* ════════════════════════════════════
   TEAM PHOTO IMAGE SUPPORT
   ════════════════════════════════════ */
.team-photo picture {
  width: 100%; height: 100%;
}

.team-photo img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 15%;
}

/* ════════════════════════════════════
   LIGHTENED PAGE HEADER (for inner pages)
   ════════════════════════════════════ */
.page-header-bg.lighter::after {
  background: linear-gradient(to bottom, rgba(27, 59, 79, 0.45), rgba(27, 59, 79, 0.7));
}
.page-header-bg.semi-dark::after {
  background: linear-gradient(to bottom, rgba(27, 59, 79, 0.85), rgba(27, 59, 79, 0.95));
}
.page-header-bg.semi-light::after {
  background: linear-gradient(to bottom, rgba(27, 59, 79, 0.08), rgba(27, 59, 79, 0.3));
}
.page-header-bg.about-header-bg {
  background-image: url('images/about-header-bg.png');
  background-image: image-set(url('images/about-header-bg.webp') type('image/webp'), url('images/about-header-bg.png') type('image/png'));
  background-size: cover; background-position: center;
}
.page-header-bg.about-header-bg::after {
  background: linear-gradient(to bottom, rgba(17, 37, 52, 0.55), rgba(17, 37, 52, 0.82));
}

/* ════════════════════════════════════
   SECURITY FEATURE HIGHLIGHT
   ════════════════════════════════════ */
.security-highlight {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(3, 166, 181, 0.08) 100%);
  border: 1px solid var(--teal-border);
  border-radius: 16px; padding: 64px 60px;
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 48px; text-align: center;
}
.security-stat { }
.security-stat .stat-number {
  font-family: var(--heading); font-size: 48px;
  font-weight: 700; color: var(--teal); margin-bottom: 8px;
}
.security-stat .stat-label {
  font-size: 16px; color: var(--text-secondary); line-height: 1.6;
}

/* ════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════ */
@media (max-width: 960px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  section { padding: 64px 24px; }
  .hero-content { padding: 100px 24px 40px; max-width: 100%; }
  .hero h1 { white-space: normal; font-size: clamp(28px, 5.5vw, 42px); }
  .value-grid { grid-template-columns: 1fr; }
  .value-card.full-width { grid-column: auto; }
  .outcomes-grid, .card-grid { grid-template-columns: 1fr; max-width: 520px; }
  .split-section { grid-template-columns: 1fr; }
  .split-image { min-height: 300px; }
  .split-image::after { background: linear-gradient(to top, var(--bg-dark) 0%, transparent 100%) !important; }
  .split-text { padding: 48px 24px; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-grid::before { display: none; }
  .proof-row { flex-direction: column; gap: 28px; }
  .proof-item { border-right: none; border-bottom: 1px solid var(--border); padding: 0 0 28px; }
  .proof-item:last-child { border-bottom: none; padding-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .page-header { padding: 140px 24px 60px; }
  .compliance-inner { gap: 20px; }
  .definition-block { padding: 20px 20px; }
  .problem-solution { grid-template-columns: 1fr; }
  .problem-card { border-radius: 16px 16px 0 0; }
  .solution-card { border-radius: 0 0 16px 16px; }
  .problem-card, .solution-card { padding: 36px 28px; }
  .trusted-bar { padding: 32px 24px; }
  .trusted-logos { gap: 28px; }
  .tagline-bar { padding: 14px 24px; }
  .tagline-bar p { font-size: 18px; }
  .core-insight { padding: 48px 24px; }
  .core-insight-inner { gap: 16px; }
  .core-insight-accent { width: 24px; }
  .core-insight p { font-size: 18px; }
  .modal { padding: 32px 24px; margin: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .security-highlight { grid-template-columns: 1fr; padding: 40px 24px; gap: 32px; }
  .legal-content { padding: 0 24px; }
}


/* ════ LEGAL PAGES (Privacy, Terms) ════ */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  color: #222;
  font-family: var(--sans);
  line-height: 1.7;
  font-size: 15px;
}

.legal-content h1 {
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 8px;
  color: #111;
}

.legal-content .legal-lead {
  font-size: 16px;
  color: #555;
  margin-bottom: 24px;
}

.legal-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 40px 0 16px;
  color: #111;
}

.legal-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 32px 0 12px;
  color: #222;
}

.legal-content h4 {
  font-size: 17px;
  font-weight: 600;
  margin: 28px 0 10px;
  color: #222;
}

.legal-content p {
  margin: 0 0 16px;
}

.legal-content a {
  color: var(--teal);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--orange);
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.5rem;
  margin: 0 0 16px;
}

.legal-content li {
  margin-bottom: 6px;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}

.legal-content table td {
  border: 1px solid #ddd;
  padding: 14px 16px;
  vertical-align: top;
}

.legal-content table ul {
  margin: 0;
  padding-left: 1.2rem;
}

.legal-content table li {
  margin-bottom: 4px;
}


/* ════ DROPBOX PAGE ════ */
.dropbox-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 40px;
  color: #222;
  font-family: var(--sans);
  line-height: 1.6;
}

.dropbox-content h1 {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 24px;
  color: #111;
}

.dropbox-content .form-group {
  margin-bottom: 20px;
}

.dropbox-content label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 15px;
  color: #333;
}

.dropbox-content textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.5;
  box-sizing: border-box;
  resize: vertical;
  color: #222;
  background: #fff;
}

.dropbox-content textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 2px rgba(3, 166, 181, 0.15);
}

.dropbox-file-upload input[type="file"] {
  width: 100%;
  padding: 10px;
  border: 1px dashed #ccc;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
}

.dropbox-file-upload input[type="file"]:hover:not(:disabled) {
  border-color: var(--teal);
  background: #f0fafb;
}

.dropbox-file-upload input[type="file"]:disabled {
  background: #e9e9e9;
  cursor: not-allowed;
  opacity: 0.6;
}

.dropbox-file-hint {
  font-size: 13px;
  color: #666;
  margin-top: 6px;
}

.dropbox-file-list {
  margin-top: 12px;
  padding: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
}

.dropbox-file-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.dropbox-file-item:last-of-type { border-bottom: none; }

.dropbox-file-name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
}

.dropbox-file-size {
  color: #666;
  font-size: 13px;
}

.dropbox-remove-btn {
  padding: 4px 10px;
  font-size: 13px;
  background: #dc3545;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.dropbox-remove-btn:hover { background: #c82333; }

.dropbox-total-size {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #ddd;
  font-size: 14px;
  color: #333;
}

.dropbox-total-size.size-exceeded {
  color: #dc3545;
  font-weight: 700;
}

.dropbox-field-error {
  color: #dc3545;
  font-size: 14px;
  margin-top: 8px;
}

.dropbox-notice {
  padding: 16px;
  border-radius: 8px;
  border: 1px solid transparent;
}

.dropbox-notice-success {
  color: #155724;
  background: #d4edda;
  border-color: #c3e6cb;
}

.dropbox-notice-error {
  color: #721c24;
  background: #f8d7da;
  border-color: #f5c6cb;
}

.dropbox-content .btn-primary {
  margin-top: 8px;
}

@media (max-width: 600px) {
  .dropbox-content { padding: 0 20px; }
}


/* ════ OPTIMIZED BACKGROUND IMAGES (webp with fallback) ════ */
.bg-hero-image {
  background-image: url('images/hero-image.jpeg');
  background-image: image-set(url('images/hero-image.webp') type('image/webp'), url('images/hero-image.jpeg') type('image/jpeg'));
}
.bg-hand-shake {
  background-image: url('images/hand-shake.jpeg');
  background-image: image-set(url('images/hand-shake.webp') type('image/webp'), url('images/hand-shake.jpeg') type('image/jpeg'));
}
.bg-corporate-building {
  background-image: url('images/corporate-building.jpeg');
  background-image: image-set(url('images/corporate-building.webp') type('image/webp'), url('images/corporate-building.jpeg') type('image/jpeg'));
}
.bg-signing-paper {
  background-image: url('images/signing-paper.jpeg');
  background-image: image-set(url('images/signing-paper.webp') type('image/webp'), url('images/signing-paper.jpeg') type('image/jpeg'));
}
.bg-servers {
  background-image: url('images/servers.jpeg');
  background-image: image-set(url('images/servers.webp') type('image/webp'), url('images/servers.jpeg') type('image/jpeg'));
}
.bg-testimonial-image {
  background-image: url('images/testimonial-image.png');
  background-image: image-set(url('images/testimonial-image.webp') type('image/webp'), url('images/testimonial-image.png') type('image/png'));
}
.bg-man-suit {
  background-image: url('images/man-suit.jpeg');
  background-image: image-set(url('images/man-suit.webp') type('image/webp'), url('images/man-suit.jpeg') type('image/jpeg'));
}
.bg-conference-room {
  background-image: url('images/conference-room.png');
  background-image: image-set(url('images/conference-room.webp') type('image/webp'), url('images/conference-room.png') type('image/png'));
}
.bg-desk-computers {
  background-image: url('images/desk-computers.jpeg');
  background-image: image-set(url('images/desk-computers.webp') type('image/webp'), url('images/desk-computers.jpeg') type('image/jpeg'));
}
.bg-data-fabric {
  background-image: url('images/DataFabric.png');
  background-image: image-set(url('images/DataFabric.webp') type('image/webp'), url('images/DataFabric.png') type('image/png'));
}
.bg-security {
  background-image: url('images/Security.png');
  background-image: image-set(url('images/Security.webp') type('image/webp'), url('images/Security.png') type('image/png'));
}
