/* ============================================================
   FULPOWER CONSULTING — GLOBAL STYLESHEET
   Shared across all pages
   ============================================================ */

/* ── FONTS ───────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Open+Sans:wght@400;500;600&display=swap');

/* ── CSS VARIABLES ───────────────────────────────────────── */
:root {
  --teal:        #0D4D4D;
  --teal-light:  #1a6b6b;
  --teal-pale:   #e0f0f0;
  --teal-logo:   #a8d4d4;
  --cyan:        #17b6b6;
  --yellow:      #FFC843;
  --yellow-dark: #e6b03a;
  --slate:       #2F3E46;
  --sage:        #E4EFE7;
  --smoke:       #F9FAFB;
  --text-body:   #2F3E46;
  --text-muted:  #6b7c85;
  --border:      #d1dfe3;
  --card-bg:     #ffffff;
  --page-bg:     #F9FAFB;
  --header-bg:   #0a2e2e;
  --footer-bg:   #071c1c;
  --shadow:      0 4px 16px rgba(9,40,40,0.08);
  --shadow-hover:0 14px 36px rgba(9,40,40,0.16);
  --glow:        0 0 0 1px rgba(23,182,182,0.15), 0 8px 30px rgba(23,182,182,0.14);
  --radius:      14px;
  --radius-btn:  10px;
  --max-width:   1200px;
  --gradient-brand: linear-gradient(120deg, #0D4D4D 0%, #146868 45%, #17b6b6 100%);
  --gradient-accent: linear-gradient(120deg, var(--yellow) 0%, #ffdb85 100%);
}

[data-theme="dark"] {
  --teal:        #1bbfbf;
  --teal-light:  #3fd6d6;
  --teal-pale:   #0a2e2e;
  --teal-logo:   #5bbfbf;
  --cyan:        #2fd8d8;
  --yellow:      #FFC843;
  --yellow-dark: #e6b03a;
  --slate:       #c8d8dc;
  --sage:        #1a2e32;
  --smoke:       #111c1e;
  --text-body:   #d4e8ea;
  --text-muted:  #7fa8ae;
  --border:      #223638;
  --card-bg:     #0f1e1f;
  --page-bg:     #0a1516;
  --header-bg:   #061414;
  --footer-bg:   #050f0f;
  --shadow:      0 4px 16px rgba(0,0,0,0.4);
  --shadow-hover:0 14px 36px rgba(0,0,0,0.55);
  --glow:        0 0 0 1px rgba(47,216,216,0.18), 0 8px 30px rgba(47,216,216,0.18);
  --gradient-brand: linear-gradient(120deg, #061414 0%, #0d3535 45%, #1bbfbf 100%);
}

/* ── RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  background: var(--page-bg);
  color: var(--text-body);
  line-height: 1.6;
  transition: background 0.3s, color 0.3s;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: 'Open Sans', sans-serif; }

/* ── HEADER ──────────────────────────────────────────────── */
.site-header {
  background: rgba(10,46,46,0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  position: sticky; top: 0; z-index: 200;
  height: 68px;
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 2px 20px rgba(0,0,0,0.18);
  border-bottom: 1px solid rgba(23,182,182,0.18);
  transition: background 0.3s, box-shadow 0.3s;
}
[data-theme="dark"] .site-header { background: rgba(6,20,20,0.82); }
.header-logo {
  display: flex; align-items: center;
  text-decoration: none; flex-shrink: 0;
  /* Fills space from left edge to nav — grows as much as possible */
  flex: 1;
  min-width: 0;
  margin-right: 24px;
}
.header-logo img {
  /* Bold, wide, fills available space, max height constrained */
  height: 42px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  /* Turn dark teal artwork WHITE on dark header — works in both light & dark mode */
  filter: brightness(0) invert(1) drop-shadow(0 1px 4px rgba(0,0,0,0.25));
  transition: filter 0.2s, opacity 0.2s;
  display: block;
}
.header-logo img:hover {
  opacity: 0.92;
  filter: brightness(0) invert(1) drop-shadow(0 1px 4px rgba(0,0,0,0.25)) drop-shadow(0 0 10px rgba(23,182,182,0.55));
}
.header-nav {
  display: flex; align-items: center; gap: 2px;
}
.header-nav a {
  position: relative;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  transition: color 0.15s;
  white-space: nowrap;
}
.header-nav a::after {
  content: '';
  position: absolute;
  left: 10px; right: 10px; bottom: 1px;
  height: 2px; border-radius: 2px;
  background: var(--yellow);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.22s ease;
}
.header-nav a:hover,
.header-nav a.active { color: white; }
.header-nav a:hover::after,
.header-nav a.active::after { transform: scaleX(1); }
.btn-cta {
  background: var(--gradient-accent);
  color: var(--teal) !important;
  font-weight: 700 !important;
  padding: 8px 16px !important;
  border-radius: var(--radius-btn) !important;
  margin-left: 8px;
  transition: all 0.18s !important;
}
.btn-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(255,200,67,0.45) !important; }
.theme-toggle {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white; width: 36px; height: 36px;
  border-radius: 8px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  margin-left: 8px; transition: all 0.15s; flex-shrink: 0;
}
.theme-toggle:hover { background: rgba(255,255,255,0.2); }
.theme-toggle svg { width: 16px; height: 16px; pointer-events: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px; margin-left: 8px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: white; border-radius: 2px;
  transition: all 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0;
  background: var(--header-bg);
  padding: 16px 24px 24px;
  flex-direction: column; gap: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  z-index: 199;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 15px;
  padding: 12px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--yellow); }
.mobile-nav .btn-cta-mobile {
  margin-top: 12px;
  background: var(--yellow);
  color: var(--teal);
  font-weight: 700;
  padding: 13px;
  border-radius: var(--radius-btn);
  text-align: center;
  font-size: 14px;
}

/* ── PAGE BANNER ─────────────────────────────────────────── */
@keyframes bannerDrift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes dotFade {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.9; }
}
.page-banner {
  background: linear-gradient(120deg, var(--teal) 0%, #146868 45%, #1a8080 75%, var(--teal) 100%);
  background-size: 220% 220%;
  animation: bannerDrift 14s ease-in-out infinite;
  padding: 88px 40px 84px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.14) 1px, transparent 1px);
  background-size: 16px 16px;
  mask-image: radial-gradient(ellipse 70% 90% at 50% 40%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 90% at 50% 40%, black 0%, transparent 75%);
  animation: dotFade 6s ease-in-out infinite;
  pointer-events: none;
}
.page-banner::after {
  content: ''; position: absolute;
  bottom: -60px; left: -40px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(255,200,67,0.06); pointer-events: none;
  filter: blur(10px);
}
.banner-tag {
  display: inline-block;
  background: rgba(255,200,67,0.18);
  color: var(--yellow);
  padding: 5px 16px; border-radius: 20px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.07em;
  border: 1px solid rgba(255,200,67,0.3);
  margin-bottom: 18px;
  position: relative; z-index: 1;
}
.page-banner h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 46px; font-weight: 700;
  color: white; margin-bottom: 14px; line-height: 1.18;
  letter-spacing: -0.01em;
  position: relative; z-index: 1;
}
.page-banner p {
  font-size: 16px; color: rgba(255,255,255,0.75);
  max-width: 540px; margin: 0 auto;
  position: relative; z-index: 1;
}

/* ── SECTION LAYOUT ──────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 40px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 32px; font-weight: 700;
  color: var(--teal); margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.gradient-text {
  background: linear-gradient(100deg, var(--teal) 10%, var(--cyan) 50%, var(--yellow) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.section-sub {
  font-size: 16px; color: var(--text-muted);
  max-width: 580px; line-height: 1.7; margin-bottom: 48px;
}
.section-divider {
  display: flex; align-items: center; gap: 14px; margin-bottom: 32px;
}
.section-divider span {
  font-family: 'Poppins', sans-serif;
  font-size: 15px; font-weight: 600;
  color: var(--teal); white-space: nowrap;
}
.section-divider::before, .section-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── CARDS ───────────────────────────────────────────────── */
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1), box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-brand);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--glow); border-color: rgba(23,182,182,0.3); }
.card:hover::before { transform: scaleX(1); }
.card-body { padding: 28px; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 11px 24px; border-radius: var(--radius-btn);
  font-size: 14px; font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: all 0.18s cubic-bezier(.2,.8,.2,1); border: none;
  font-family: 'Open Sans', sans-serif;
  position: relative;
}
.btn-primary { background: var(--gradient-accent); color: var(--teal); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(255,200,67,0.4); }
.btn-secondary { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn-secondary:hover { background: var(--teal-pale); transform: translateY(-2px); }
.btn-white { background: white; color: var(--teal); }
.btn-white:hover { background: var(--yellow); transform: translateY(-2px); }
.btn-lg { padding: 14px 32px; font-size: 15px; }
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ── FORM ELEMENTS ───────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: 11.5px; font-weight: 700;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em;
}
.form-control {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14px; font-family: 'Open Sans', sans-serif;
  color: var(--text-body); background: var(--page-bg);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s; width: 100%;
}
.form-control:focus { border-color: var(--cyan); background: var(--card-bg); box-shadow: 0 0 0 4px rgba(23,182,182,0.14); }
textarea.form-control { resize: vertical; min-height: 130px; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background:
    radial-gradient(ellipse 60% 50% at 15% 0%, rgba(23,182,182,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(255,200,67,0.05) 0%, transparent 60%),
    var(--footer-bg);
  color: white;
  padding: 64px 40px 28px;
  margin-top: 80px;
  border-top: 1px solid rgba(23,182,182,0.15);
}
.footer-grid {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.58); line-height: 1.75; max-width: 220px; margin-bottom: 20px; }
.footer-col h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 11px; font-weight: 700;
  color: var(--yellow); text-transform: uppercase;
  letter-spacing: 0.09em; margin-bottom: 16px;
}
.footer-col a {
  display: flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,0.65);
  text-decoration: none; font-size: 13px;
  margin-bottom: 9px; transition: color 0.15s;
}
.footer-col a:hover { color: white; }
.footer-col a svg { width: 13px; height: 13px; opacity: 0.55; flex-shrink: 0; }
.footer-social { display: flex; gap: 8px; margin-top: 16px; }
.social-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s; text-decoration: none;
}
.social-icon:hover { background: rgba(255,200,67,0.2); border-color: var(--yellow); }
.social-icon svg { width: 15px; height: 15px; fill: rgba(255,255,255,0.75); }
.footer-bottom {
  max-width: var(--max-width); margin: 0 auto;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ── TOAST ───────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  background: var(--teal); color: white;
  padding: 13px 20px; border-radius: 10px;
  font-size: 13.5px; max-width: 320px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transform: translateY(80px); opacity: 0;
  transition: all 0.3s;
  border-left: 4px solid var(--yellow);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── UTILITIES ───────────────────────────────────────────── */
.tag {
  padding: 3px 10px; border-radius: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.03em;
}
.tag-grid      { background: #e0f4f4; color: #0a3d3d; }
.tag-renewable { background: #e8f5e0; color: #2d6a1a; }
.tag-storage   { background: #fff3d4; color: #7a4f00; }
.tag-ai        { background: #ede8ff; color: #4a2fa0; }
.tag-policy    { background: #fde8f0; color: #7a1a40; }
.tag-newsreport{ background: #dceeff; color: #0d4a8f; }
.tag-global    { background: #e6f7f0; color: #0f6b4d; }
[data-theme="dark"] .tag-grid      { background: #0a3030; color: #5dd6d6; }
[data-theme="dark"] .tag-renewable { background: #0d2e0a; color: #6abf4a; }
[data-theme="dark"] .tag-storage   { background: #2e1e00; color: #ffb733; }
[data-theme="dark"] .tag-ai        { background: #1a0e3a; color: #a080ff; }
[data-theme="dark"] .tag-policy    { background: #2e0a18; color: #ff70a0; }
[data-theme="dark"] .tag-newsreport{ background: #0a2540; color: #6ab3ff; }
[data-theme="dark"] .tag-global    { background: #0a2e20; color: #4ad999; }

.highlight { color: var(--yellow); }
.teal-bg { background: var(--teal); }
.sage-bg { background: var(--sage); }

/* ── LOADING SPINNER ─────────────────────────────────────── */
@keyframes spin { to { transform: rotate(360deg); } }
.spinner {
  width: 20px; height: 20px;
  border: 2.5px solid var(--teal-pale);
  border-top-color: var(--teal);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.loader {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; padding: 48px; color: var(--text-muted); font-size: 14px;
}

/* ── STAT COUNTERS ───────────────────────────────────────── */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin: 48px 0;
}
.stat-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 28px 24px; text-align: center;
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1), box-shadow 0.25s;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--glow); }
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 36px; font-weight: 700;
  color: var(--teal); line-height: 1.1; margin-bottom: 6px;
}
.stat-num span { color: var(--yellow); }
.stat-label { font-size: 13px; color: var(--text-muted); }

/* ── ICON BOXES ──────────────────────────────────────────── */
.icon-box {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--teal-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1), background 0.25s;
}
.icon-box svg { width: 24px; height: 24px; stroke: var(--teal); transition: stroke 0.25s; }
.card:hover .icon-box, .service-block:hover .icon-box {
  transform: scale(1.08) rotate(-4deg);
  background: var(--gradient-brand);
}
.card:hover .icon-box svg, .service-block:hover .icon-box svg { stroke: white; }
.icon-box-sm {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--teal-pale);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.icon-box-sm svg { width: 18px; height: 18px; stroke: var(--teal); }

/* ── CTA BANNER ──────────────────────────────────────────── */
.cta-banner {
  background: var(--gradient-brand);
  border-radius: 18px;
  padding: 56px 48px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 16px 16px;
  mask-image: radial-gradient(ellipse 70% 90% at 50% 30%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 90% at 50% 30%, black 0%, transparent 75%);
  pointer-events: none;
}
.cta-banner::after {
  content: ''; position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(255,200,67,0.1); pointer-events: none;
  filter: blur(4px);
}
.cta-banner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 30px; font-weight: 700;
  color: white; margin-bottom: 12px;
  position: relative; z-index: 1;
}
.cta-banner p, .cta-banner .btn { position: relative; z-index: 1; }
.cta-banner p { font-size: 15px; color: rgba(255,255,255,0.75); margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .site-header { padding: 0 28px; }
  .site-footer { padding: 48px 28px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .site-header { padding: 0 20px; }
  .page-banner { padding: 52px 20px; }
  .page-banner h1 { font-size: 28px; }
  .section { padding: 52px 0; }
  .container { padding: 0 20px; }
  .section-title { font-size: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .site-footer { padding: 40px 20px 20px; margin-top: 48px; }
  .cta-banner { padding: 36px 24px; }
  .cta-banner h2 { font-size: 22px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 480px) {
  .page-banner h1 { font-size: 24px; }
  .btn-lg { padding: 12px 24px; font-size: 14px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 28px; }
}

/* ── HEADER LOGO — bold, fills space left of nav ─────────── */
.site-header {
  /* Override to ensure logo gets all leftover space */
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 0;
}

/* Mobile: right side cluster (theme + hamburger) */
.header-right-mobile {
  display: none;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

/* ── FOOTER BRAND ────────────────────────────────────────── */
.footer-brand img,
.footer-logo img {
  height: 36px; width: auto;
  max-width: 200px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1) drop-shadow(0 1px 3px rgba(0,0,0,0.3));
  display: block;
}

/* ── RESPONSIVE LOGO ─────────────────────────────────────── */
@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-right-mobile { display: flex; }
  /* On mobile: logo takes all space except the right cluster */
  .header-logo {
    flex: 1;
    margin-right: 12px;
  }
  .header-logo img {
    height: 34px;
  }
}

@media (max-width: 480px) {
  .header-logo img {
    height: 28px;
  }
}

/* ── DARK MODE: logo stays white (filter already handles it) ─ */
/* No extra rule needed — brightness(0) invert(1) always = white */
/* In dark mode the header is even darker so white logo is perfect */

/* ── CRITICAL: Prevent JS animation from permanently hiding elements ── */
/* This overrides any inline opacity:0 set by scroll reveal if CSS loads
   but JS observer never fires (e.g. slow connection, bfcache, tab switch) */
.card, .service-block, .project-card, .mvv-card,
.partner-card, .stat-card, .insight-card,
.contact-item, .session-card {
  /* Minimum visible state — JS can override this inline but it's the fallback */
  min-opacity: 1; /* not a real property — just a comment anchor */
}

/* Prevent any transition from locking elements at opacity 0 */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
