/* =============================================================================
   nBogne Website — 2026 Creative Redesign
   Immersive, animated, stakeholder-ready
   ============================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ---------- CUSTOM PROPERTIES ---------- */
:root {
  --teal:       #0d9488;
  --teal-light: #14b8a6;
  --teal-dark:  #0a7a70;
  --teal-glow:  rgba(13,148,136,0.35);
  --accent:     #06b6d4;
  --accent2:    #8b5cf6;
  --navy:       #0a0e1a;
  --navy-mid:   #111827;
  --navy-light: #1e293b;
  --text:       #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --bg:         #050810;
  --bg-card:    rgba(15,23,42,0.6);
  --bg-glass:   rgba(15,23,42,0.45);
  --border:     rgba(148,163,184,0.08);
  --border-glow:rgba(13,148,136,0.2);
  --gradient-1: linear-gradient(135deg, #0d9488, #06b6d4);
  --gradient-2: linear-gradient(135deg, #0d9488, #8b5cf6);
  --gradient-3: linear-gradient(180deg, rgba(13,148,136,0.15) 0%, transparent 60%);
  --sans:       'Space Grotesk', 'Inter', system-ui, sans-serif;
  --body:       'Inter', system-ui, sans-serif;
  --container:  1200px;
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.35s var(--ease);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: thin;
  scrollbar-color: var(--teal) var(--navy);
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }

body {
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--sans); font-weight: 600; line-height: 1.15; color: var(--text); }
h4 { font-family: var(--sans); font-weight: 500; color: var(--text); }
h1 { font-size: clamp(2.75rem, 6vw, 5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -0.02em; }
h3 { font-size: 1.5rem; letter-spacing: -0.01em; }
p { color: var(--text-secondary); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }

/* ---------- GRAIN OVERLAY ---------- */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
.header.scrolled {
  background: rgba(5,8,16,0.82);
  backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: var(--container); margin: 0 auto; padding: 0 2rem;
}
.logo { display: flex; align-items: center; gap: 0.5rem; }
.logo-img { height: 32px; width: auto; }

.nav { display: none; gap: 0.25rem; }
@media (min-width: 768px) { .nav { display: flex; } }

.nav-link {
  position: relative; padding: 0.5rem 1rem;
  font-family: var(--sans); font-size: 0.875rem; font-weight: 400;
  color: var(--text-muted); letter-spacing: 0.01em;
  transition: color var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link.active::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--teal);
}
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.header-cta { display: none; }
@media (min-width: 768px) { .header-cta { display: inline-flex; } }

.mobile-toggle {
  display: flex; flex-direction: column; gap: 5px; padding: 8px;
  background: none; border: none; cursor: pointer;
}
@media (min-width: 768px) { .mobile-toggle { display: none; } }
.mobile-toggle span {
  width: 22px; height: 1.5px; background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-toggle.active span:first-child { transform: rotate(45deg) translate(4px, 5px); }
.mobile-toggle.active span:last-child { transform: rotate(-45deg) translate(4px, -5px); }

.nav-mobile {
  display: none; flex-direction: column;
  background: rgba(5,8,16,0.95); backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 1rem 2rem 1.5rem;
}
.nav-mobile.active { display: flex; }
@media (min-width: 768px) { .nav-mobile { display: none !important; } }
.nav-mobile .nav-link { padding: 1rem 0; border-bottom: 1px solid var(--border); display: block; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--sans); font-size: 0.875rem; font-weight: 500;
  border: none; border-radius: 100px; cursor: pointer;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--gradient-1); color: white;
  box-shadow: 0 0 20px var(--teal-glow), 0 4px 12px rgba(0,0,0,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px var(--teal-glow), 0 8px 24px rgba(0,0,0,0.3);
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover::after { opacity: 1; }

.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid rgba(148,163,184,0.2);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  border-color: var(--teal);
  background: rgba(13,148,136,0.08);
  transform: translateY(-2px);
}
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }

.btn-ghost {
  background: none; color: var(--teal-light); padding: 0;
  font-weight: 500; border-radius: 0;
}
.btn-ghost::after { content: ' \2192'; display: inline-block; transition: transform 0.3s; }
.btn-ghost:hover { color: var(--teal); }
.btn-ghost:hover::after { transform: translateX(4px); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-canvas {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(13,148,136,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(6,182,212,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 60% 80%, rgba(139,92,246,0.06) 0%, transparent 50%);
  z-index: 1; pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }

.hero-layout { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 960px) { .hero-layout { grid-template-columns: 1.2fr 0.8fr; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1rem 0.4rem 0.5rem;
  background: rgba(13,148,136,0.1);
  border: 1px solid rgba(13,148,136,0.2);
  border-radius: 100px; font-size: 0.8125rem; color: var(--teal-light);
  margin-bottom: 1.75rem;
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal); animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 var(--teal-glow); }
  50% { box-shadow: 0 0 0 8px transparent; }
}

.hero h1 { margin-bottom: 1.5rem; }
.hero h1 .gradient-text {
  background: var(--gradient-1);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-text {
  font-size: 1.125rem; line-height: 1.8;
  max-width: 540px; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }

.hero-trust {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  padding-top: 2rem; border-top: 1px solid var(--border);
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem; color: var(--text-muted);
}
.trust-icon { color: var(--teal); }

.hero-visual { display: flex; justify-content: center; align-items: center; }

.hero-diagram-card {
  position: relative;
  padding: 2.5rem;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  width: 100%; max-width: 420px;
}
.hero-diagram-card::before {
  content: ''; position: absolute; inset: -1px;
  border-radius: 20px; padding: 1px;
  background: linear-gradient(135deg, rgba(13,148,136,0.3), transparent 50%, rgba(6,182,212,0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.diagram-header {
  font-family: var(--sans); font-size: 0.75rem; font-weight: 600;
  color: var(--teal-light); text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.diagram-flow { display: flex; flex-direction: column; gap: 0.75rem; }

.diagram-node {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  border-radius: 12px;
  font-size: 0.875rem; font-weight: 500;
  transition: all 0.4s var(--ease);
}
.diagram-node.source {
  background: rgba(148,163,184,0.06);
  border: 1px solid rgba(148,163,184,0.1);
}
.diagram-node.nbogne {
  background: rgba(13,148,136,0.12);
  border: 1px solid rgba(13,148,136,0.25);
  color: var(--teal-light);
}
.diagram-node.dest {
  background: rgba(6,182,212,0.08);
  border: 1px solid rgba(6,182,212,0.2);
}
.diagram-node-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.diagram-node.source .diagram-node-icon { background: rgba(148,163,184,0.1); }
.diagram-node.nbogne .diagram-node-icon { background: rgba(13,148,136,0.2); }
.diagram-node.dest .diagram-node-icon { background: rgba(6,182,212,0.15); }

.diagram-connector {
  display: flex; align-items: center; justify-content: center;
  padding: 0.25rem 0; position: relative;
}
.diagram-connector .line {
  width: 2px; height: 24px;
  background: linear-gradient(180deg, var(--teal), var(--accent));
  border-radius: 1px; position: relative;
}
.diagram-connector .line::after {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal);
  animation: flow-dot 1.5s infinite;
}
@keyframes flow-dot {
  0% { top: 0; opacity: 1; }
  100% { top: 100%; opacity: 0.3; }
}
.diagram-label {
  position: absolute; left: calc(50% + 12px);
  font-size: 0.6875rem; color: var(--text-muted); white-space: nowrap;
}

/* ==========================================================================
   SECTIONS — General
   ========================================================================== */
.section { position: relative; padding: 7rem 0; }
.section-dark { background: var(--navy-mid); }

.section-header {
  text-align: center;
  max-width: 700px; margin: 0 auto 4rem;
}
.section-header p { margin-top: 1rem; font-size: 1.0625rem; }

.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--sans); font-size: 0.75rem; font-weight: 600;
  color: var(--teal-light); text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.section-label::before {
  content: ''; width: 24px; height: 1px;
  background: var(--gradient-1);
}

/* Glow separator */
.glow-line {
  width: 60px; height: 2px; margin: 0 auto 2rem;
  background: var(--gradient-1); border-radius: 1px;
  box-shadow: 0 0 12px var(--teal-glow);
}

/* ==========================================================================
   STATS
   ========================================================================== */
.stats-section {
  position: relative; padding: 7rem 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--navy-mid) 50%, var(--bg) 100%);
}
.stats-grid { display: grid; gap: 1.5rem; }
@media (min-width: 600px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }

.stat-card {
  position: relative; padding: 2.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  transition: all 0.5s var(--ease);
  overflow: hidden;
}
.stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gradient-1);
  opacity: 0; transition: opacity 0.4s;
}
.stat-card:hover { transform: translateY(-4px); border-color: var(--border-glow); }
.stat-card:hover::before { opacity: 1; }

.stat-value {
  font-family: var(--sans); font-size: 3rem; font-weight: 700;
  line-height: 1; margin-bottom: 0.5rem;
  background: var(--gradient-1);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-text { font-size: 0.9375rem; line-height: 1.6; }

.stats-bar-section {
  padding: 5rem 0;
  background: var(--navy-mid);
  position: relative;
}
.stats-bar-section::before,
.stats-bar-section::after {
  content: ''; position: absolute; left: 0; right: 0;
  height: 1px; background: var(--border);
}
.stats-bar-section::before { top: 0; }
.stats-bar-section::after { bottom: 0; }

.stats-bar { display: grid; gap: 2rem; text-align: center; }
@media (min-width: 600px) { .stats-bar { grid-template-columns: repeat(4, 1fr); } }
.stats-bar .stat-value { font-size: 2.5rem; }
.stats-bar .stat-label { font-size: 0.8125rem; color: var(--text-muted); margin-top: 0.25rem; }

/* ==========================================================================
   AUDIENCE / WHO WE SERVE CARDS
   ========================================================================== */
.audience-grid { display: grid; gap: 1.5rem; }
@media (min-width: 600px) { .audience-grid { grid-template-columns: repeat(2, 1fr); } }

.audience-card {
  position: relative; padding: 2.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  transition: all 0.5s var(--ease);
  overflow: hidden;
}
.audience-card::after {
  content: ''; position: absolute; inset: -1px;
  border-radius: 16px; padding: 1px;
  background: linear-gradient(135deg, rgba(13,148,136,0.25), transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none; opacity: 0; transition: opacity 0.4s;
}
.audience-card:hover { transform: translateY(-4px); }
.audience-card:hover::after { opacity: 1; }

.audience-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(13,148,136,0.1); margin-bottom: 1.25rem;
  font-size: 1.25rem;
}
.audience-card h3 { margin-bottom: 0.75rem; font-size: 1.25rem; }
.audience-card p { font-size: 0.9375rem; line-height: 1.65; }

/* ==========================================================================
   TWO COLUMN
   ========================================================================== */
.two-col { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 768px) { .two-col { grid-template-columns: 1fr 1fr; } }

.col-text p { margin-bottom: 1.25rem; }
.col-text h2 { margin-bottom: 1.5rem; }

.highlight {
  font-weight: 500; color: var(--text);
  padding-left: 1.25rem;
  border-left: 2px solid;
  border-image: var(--gradient-1) 1;
}

/* Flow Steps */
.flow-list { display: flex; flex-direction: column; gap: 0.75rem; }
.flow-step {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.4s var(--ease);
  backdrop-filter: blur(4px);
}
.flow-step:hover {
  border-color: var(--border-glow);
  transform: translateX(6px);
  background: rgba(13,148,136,0.04);
}
.flow-step.active {
  border-color: var(--teal);
  background: rgba(13,148,136,0.06);
}
.flow-num {
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  background: var(--gradient-1); color: white;
  font-size: 0.8125rem; font-weight: 600;
  border-radius: 10px; flex-shrink: 0;
}
.flow-body strong {
  display: block; color: var(--text);
  font-family: var(--sans); font-size: 0.9375rem; font-weight: 500;
  margin-bottom: 2px;
}
.flow-body span { font-size: 0.8125rem; color: var(--text-muted); }

/* ==========================================================================
   BENEFIT / FEATURE GRIDS
   ========================================================================== */
.benefit-grid { display: grid; gap: 1.5rem; }
@media (min-width: 600px) { .benefit-grid { grid-template-columns: repeat(2, 1fr); } }

.benefit-card {
  padding: 2.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  transition: all 0.5s var(--ease);
}
.benefit-card:hover { transform: translateY(-4px); border-color: var(--border-glow); }
.benefit-card h3 { margin-bottom: 0.75rem; }
.benefit-card p { font-size: 0.9375rem; }

.feature-list {
  display: flex; flex-direction: column; gap: 0.4rem;
  list-style: none; margin-top: 1.25rem;
}
.feature-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.9375rem; color: var(--text-secondary); padding: 0.2rem 0;
}
.feature-list li::before {
  content: '\2713'; color: var(--teal-light); font-weight: 600; flex-shrink: 0;
}

/* ==========================================================================
   SECURITY GRID
   ========================================================================== */
.security-grid { display: grid; gap: 1rem; }
@media (min-width: 600px) { .security-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .security-grid { grid-template-columns: repeat(3, 1fr); } }

.security-card {
  padding: 1.75rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  transition: all 0.4s var(--ease);
}
.security-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(13,148,136,0.2);
  transform: translateY(-3px);
}
.security-card h4 { color: white; margin-bottom: 0.5rem; font-size: 1.05rem; }
.security-card p { font-size: 0.9375rem; color: rgba(255,255,255,0.55); }

/* ==========================================================================
   TIMELINE
   ========================================================================== */
.timeline { max-width: 720px; margin: 0 auto; }
.timeline-item {
  display: grid; grid-template-columns: auto 1fr; gap: 1.5rem;
  padding-bottom: 2rem; position: relative;
}
.timeline-item:not(:last-child)::before {
  content: ''; position: absolute; left: 16px; top: 42px; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--teal), transparent);
}
.timeline-marker {
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  background: var(--gradient-1); color: white;
  font-size: 0.6875rem; font-weight: 600;
  border-radius: 10px;
  box-shadow: 0 0 16px var(--teal-glow);
}
.timeline-content h4 { margin-bottom: 3px; font-size: 1.1rem; }
.timeline-content p { font-size: 0.9375rem; }

/* ==========================================================================
   TEAM
   ========================================================================== */
.team-grid { display: grid; gap: 1.5rem; }
@media (min-width: 600px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }

.team-card {
  text-align: center; padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  transition: all 0.5s var(--ease);
}
.team-card:hover { transform: translateY(-4px); border-color: var(--border-glow); }

.team-photo {
  width: 100px; height: 100px; margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(13,148,136,0.1);
  overflow: hidden;
  border: 2px solid rgba(13,148,136,0.2);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { margin-bottom: 2px; font-size: 1rem; }
.team-role { font-size: 0.8125rem; color: var(--teal-light); font-weight: 500; margin-bottom: 0.5rem; }
.team-bio { font-size: 0.8125rem; color: var(--text-muted); }

.founders-grid { display: grid; gap: 2rem; max-width: 800px; margin: 0 auto 4rem; }
@media (min-width: 600px) { .founders-grid { grid-template-columns: repeat(2, 1fr); } }

.founder-card {
  text-align: center; padding: 3rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  transition: all 0.5s var(--ease);
  position: relative; overflow: hidden;
}
.founder-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gradient-1);
}
.founder-card .team-photo { width: 140px; height: 140px; }
.team-credentials { display: flex; justify-content: center; gap: 0.75rem; margin-top: 1rem; flex-wrap: wrap; }
.credential { height: 24px; opacity: 1; transition: opacity 0.3s, filter 0.3s; }
.credential:hover { opacity: 0.85; filter: grayscale(1); }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.container-sm { max-width: 820px; }

.contact-grid { display: grid; gap: 3rem; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1.2fr; align-items: start; } }

.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { margin-bottom: 2.5rem; color: var(--text-secondary); line-height: 1.7; }

.contact-methods { display: flex; flex-direction: column; gap: 1rem; }

.contact-method-card {
  display: flex; gap: 1rem; align-items: center;
  padding: 1.25rem 1.5rem; border-radius: 16px;
  text-decoration: none; color: inherit;
  transition: transform 0.3s, box-shadow 0.3s;
}
.contact-method-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(13,148,136,0.12);
}
.contact-icon {
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  background: rgba(13,148,136,0.12); border-radius: 14px; flex-shrink: 0;
  font-size: 1.35rem;
}
.contact-method-card h4 {
  font-family: var(--sans); font-size: 0.8125rem; font-weight: 600;
  margin-bottom: 2px; color: var(--text); letter-spacing: 0.01em;
}
.contact-method-card p { font-size: 0.9375rem; color: var(--text-secondary); margin: 0; }
a.contact-method-card p { color: var(--teal-light); }
a.contact-method-card:hover p { color: var(--teal); }

/* Form wrapper */
.contact-form-wrapper { position: relative; }

.contact-form {
  padding: 2.5rem;
  border-radius: 20px;
}
.contact-form h3 {
  margin-bottom: 1.75rem; font-size: 1.25rem;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.form-row {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-family: var(--sans);
  font-size: 0.8125rem; font-weight: 500;
  margin-bottom: 0.4rem; color: var(--text-secondary);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 0.75rem 1rem;
  font-family: var(--body); font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(15,23,42,0.5);
  color: var(--text);
  transition: border-color 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-glow);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--navy-mid); }
.form-submit { width: 100%; }
.form-note { margin-top: 0.75rem; font-size: 0.8125rem; color: var(--text-muted); text-align: center; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item {
  padding: 0; border-radius: 16px; margin-bottom: 1rem;
  overflow: hidden; cursor: pointer;
}
.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-family: var(--sans); font-weight: 600; font-size: 1.025rem;
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  color: var(--text);
  transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.4rem; font-weight: 300;
  color: var(--teal); transition: transform 0.3s;
}
.faq-item[open] summary::after {
  content: '−'; transform: rotate(180deg);
}
.faq-item[open] summary { color: var(--teal-light); }

.faq-body {
  padding: 0 1.5rem 1.25rem 1.5rem;
}
.faq-body p { font-size: 0.9375rem; line-height: 1.7; color: var(--text-secondary); }

/* ==========================================================================
   CTA
   ========================================================================== */
.cta-section {
  position: relative; text-align: center;
  padding: 7rem 0; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(13,148,136,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content {
  position: relative;
  max-width: 600px; margin: 0 auto;
}
.cta-content h2 { margin-bottom: 1rem; }
.cta-content > p { font-size: 1.0625rem; margin-bottom: 2rem; }
.cta-note { margin-top: 1rem; font-size: 0.8125rem; color: var(--text-muted); }
.cta-note a { color: var(--teal-light); text-decoration: underline; }
.cta-orb {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(13,148,136,0.08) 0%, transparent 70%);
  filter: blur(60px); pointer-events: none;
}

/* ==========================================================================
   PAGE HERO (inner pages)
   ========================================================================== */
.page-hero {
  padding: calc(72px + 5rem) 0 4rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 30% 0%, rgba(13,148,136,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero > .container > p { font-size: 1.1875rem; max-width: 660px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--navy); position: relative; padding: 4rem 0 2rem;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
}
.footer-main {
  display: grid; gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) { .footer-main { grid-template-columns: 1.5fr 2fr; } }
.footer-logo { height: 28px; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.875rem; color: var(--text-muted); }
.footer-links { display: grid; gap: 2rem; }
@media (min-width: 480px) { .footer-links { grid-template-columns: repeat(3, 1fr); } }
.footer-col h4 {
  color: var(--text); font-family: var(--sans);
  font-size: 0.8125rem; font-weight: 600; margin-bottom: 1rem;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.footer-col a {
  display: block; font-size: 0.875rem; color: var(--text-muted);
  padding: 4px 0; transition: color 0.3s;
}
.footer-col a:hover { color: var(--teal-light); }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem;
  padding-top: 2rem; font-size: 0.8125rem; color: var(--text-muted);
}

/* ==========================================================================
   MARQUEE / SOCIAL PROOF
   ========================================================================== */
.marquee-section {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.marquee-label {
  text-align: center; font-size: 0.75rem; font-weight: 600;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.marquee-track {
  display: flex; gap: 4rem; align-items: center;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track img {
  height: 28px; opacity: 0.85;
  transition: opacity 0.3s, filter 0.3s;
}
.marquee-track img:hover { opacity: 1; filter: grayscale(1); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   SCROLL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0; transform: scale(0.92);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

.stagger > * {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.3s; }
.stagger.visible > * { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 767px) {
  .hero { min-height: auto; padding: 120px 0 60px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .section { padding: 5rem 0; }
  .hide-mobile { display: none; }
  .hero-trust { flex-direction: column; gap: 0.75rem; }
}

/* ==========================================================================
   THEME TOGGLE (Light / Dark)
   ========================================================================== */
.theme-toggle {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid var(--border);
  background: transparent;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; line-height: 1;
  color: var(--text);
  transition: background 0.3s, border-color 0.3s, transform 0.2s, color 0.3s;
}
.theme-toggle:hover { border-color: var(--teal); transform: scale(1.1); }
.theme-toggle .icon-sun  { display: none; }
.theme-toggle .icon-moon { display: inline; }

/* ---------- LIGHT MODE OVERRIDES ---------- */
body.light-mode {
  --bg:          #f8fafc;
  --bg-card:     rgba(255,255,255,0.85);
  --bg-glass:    rgba(255,255,255,0.7);
  --text:        #0f172a;
  --text-secondary: #475569;
  --text-muted:  #64748b;
  --border:      rgba(15,23,42,0.1);
  --border-glow: rgba(13,148,136,0.25);
  --navy:        #e2e8f0;
  --navy-mid:    #f1f5f9;
  --navy-light:  #e2e8f0;
  --gradient-3:  linear-gradient(180deg, rgba(13,148,136,0.08) 0%, transparent 60%);
}
body.light-mode::before { opacity: 0.015; }
body.light-mode .header.scrolled {
  background: rgba(248,250,252,0.88);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
body.light-mode .nav-mobile {
  background: rgba(248,250,252,0.97);
}
body.light-mode .mobile-toggle span { background: var(--text); }
body.light-mode .hero-canvas { opacity: 0.25; }
body.light-mode .cta-section::before {
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(13,148,136,0.06) 0%, transparent 70%);
}
body.light-mode .cta-orb { opacity: 0.15; }
body.light-mode .form-select option { background: #fff; color: #0f172a; }
body.light-mode .theme-toggle .icon-sun  { display: inline; }
body.light-mode .theme-toggle .icon-moon { display: none; }
body.light-mode ::-webkit-scrollbar-track { background: #e2e8f0; }

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.text-center { text-align: center; }
.mt-lg { margin-top: 1.5rem; }
.mb-lg { margin-bottom: 1.5rem; }
.gradient-text {
  background: var(--gradient-1);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
