/* GARTEC — shared stylesheet */
:root {
  --bg: #0a0c10;
  --bg-2: #11141a;
  --bg-3: #161a22;
  --line: rgba(255,255,255,.08);
  --line-strong: rgba(255,255,255,.16);
  --fg: #e8edf3;
  --fg-2: #aab2bd;
  --fg-3: #6c7480;
  --accent: #00e5ff;
  --accent-warm: #ffb547;
  --accent-fv: #ffb547;
  --accent-mv: #00e5ff;
  --radius: 14px;
  --radius-sm: 8px;
  --maxw: 1200px;
  --pad: clamp(20px, 4vw, 56px);
  --font-display: 'Bebas Neue', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1.05;
  margin: 0 0 .4em;
}
h1 { font-size: clamp(2.4rem, 6vw, 5.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-family: var(--font-body); font-weight: 500; letter-spacing: 0; line-height: 1.25; }

.eyebrow {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin: 0 0 1rem;
}
.eyebrow::before { content: "// "; color: var(--accent); }

p { margin: 0 0 1rem; color: var(--fg-2); }
p.lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--fg); max-width: 60ch; }

/* Layout */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
section { padding: clamp(60px, 9vw, 120px) 0; position: relative; }
section.tight { padding: clamp(40px, 6vw, 80px) 0; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(10, 12, 16, .72);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--pad);
  max-width: var(--maxw); margin: 0 auto;
  gap: 16px;
}
.nav-back {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--fg-3); font-size: .9rem; padding: 8px 10px;
  border: 1px solid var(--line); border-radius: 999px;
  transition: color .2s, border-color .2s;
}
.nav-back:hover { color: var(--fg); border-color: var(--line-strong); }
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-brand img { height: 28px; width: auto; }
.nav-menu { display: flex; gap: 22px; align-items: center; }
.nav-menu a {
  font-size: .92rem; color: var(--fg-2);
  transition: color .2s;
  position: relative;
}
.nav-menu a:hover { color: var(--fg); }
.nav-menu a.cross {
  padding: 7px 14px;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 999px;
  font-size: .85rem;
}
.nav-menu a.cross:hover { background: var(--accent); color: var(--bg); }
.fv .nav-menu a.cross { border-color: var(--accent-warm); color: var(--accent-warm); }
.fv .nav-menu a.cross:hover { background: var(--accent-warm); color: var(--bg); }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line); color: var(--fg);
  width: 40px; height: 40px; border-radius: 8px; padding: 0;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 20px; height: 20px; }

@media (max-width: 820px) {
  .nav-menu {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--line);
    padding: 8px 0;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 14px var(--pad); border-bottom: 1px solid var(--line); }
  .nav-menu a.cross { margin: 12px var(--pad); text-align: center; }
  .nav-toggle { display: inline-flex; }
}

/* Hero */
.hero {
  padding-top: clamp(60px, 10vw, 140px);
  padding-bottom: clamp(60px, 10vw, 140px);
  position: relative; overflow: hidden;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
}

/* Background photo */
.hero-photo {
  position: absolute; inset: 0; z-index: 0;
  background-position: center; background-size: cover; background-repeat: no-repeat;
  filter: grayscale(60%) contrast(1.05);
}
.mv .hero-photo { background-image: url('/assets/mv-hero.jpg'); }
.fv .hero-photo { background-image: url('/assets/fv-hero.jpg'); }
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(6, 12, 18, .76);
}
.fv .hero-photo::after { background: rgba(20, 14, 4, .68); }

.hero .grid-bg {
  position: absolute; inset: 0; z-index: 1; opacity: .35;
  background-image:
    linear-gradient(rgba(0,229,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}
.fv .hero .grid-bg {
  background-image:
    linear-gradient(rgba(255,181,71,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,181,71,.05) 1px, transparent 1px);
}

.hero .glow {
  position: absolute; width: 60vw; height: 60vw; max-width: 800px; max-height: 800px;
  top: -20%; right: -10%;
  background: radial-gradient(circle, rgba(0,229,255,.18), transparent 60%);
  filter: blur(60px); z-index: 1; pointer-events: none;
}
.fv .hero .glow {
  background: radial-gradient(circle, rgba(255,181,71,.18), transparent 60%);
}

/* MV — scanline animation (cyan line sliding top to bottom) */
.hero-scanline {
  position: absolute; top: 0; left: 0; right: 0; height: 2px; z-index: 2;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: .55; pointer-events: none;
  animation: heroScan 4.5s linear infinite;
  box-shadow: 0 0 12px rgba(0,229,255,.4);
}
@keyframes heroScan {
  0%   { top: -4px; }
  100% { top: 100%; }
}

/* MV — corner brackets (subtle viewfinder feel) */
.hero-corners { position: absolute; inset: 28px; z-index: 2; pointer-events: none; }
.hero-corners::before,
.hero-corners::after,
.hero-corners > i,
.hero-corners > i + i {
  content: ""; position: absolute; width: 22px; height: 22px;
  border: 1px solid rgba(0,229,255,.35);
}
.hero-corners::before { top: 0; left: 0; border-right: none; border-bottom: none; }
.hero-corners::after  { top: 0; right: 0; border-left: none; border-bottom: none; }
.hero-corners > i { bottom: 0; left: 0; border-top: none; border-right: none; display: block; }
.hero-corners > i + i { bottom: 0; right: 0; left: auto; border-top: none; border-left: none; border-right: 1px solid rgba(0,229,255,.35); }

/* FV — animated sun glow (lightburst pulse from below) */
.hero-sun {
  position: absolute; left: 50%; bottom: -240px;
  transform: translateX(-50%);
  width: min(900px, 110vw); height: 520px;
  z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse at 50% 100%,
    rgba(255,210,120,.45) 0%,
    rgba(255,181,71,.22) 30%,
    transparent 70%);
  animation: heroSun 6s ease-in-out infinite;
  filter: blur(2px);
}
@keyframes heroSun {
  0%, 100% { opacity: .85; transform: translateX(-50%) scale(1); }
  50%      { opacity: 1;   transform: translateX(-50%) scale(1.08); }
}

/* FV — rotating sun rays (very subtle) */
.hero-rays {
  position: absolute; left: 50%; bottom: -340px;
  transform: translateX(-50%);
  width: 1200px; height: 1200px;
  z-index: 1; pointer-events: none; opacity: .25;
  background: conic-gradient(from 0deg,
    transparent 0deg, rgba(255,200,80,.35) 6deg, transparent 12deg,
    transparent 36deg, rgba(255,200,80,.35) 42deg, transparent 48deg,
    transparent 72deg, rgba(255,200,80,.35) 78deg, transparent 84deg,
    transparent 108deg, rgba(255,200,80,.35) 114deg, transparent 120deg,
    transparent 144deg, rgba(255,200,80,.35) 150deg, transparent 156deg,
    transparent 180deg);
  mask-image: radial-gradient(circle at 50% 100%, black 0%, black 30%, transparent 65%);
  -webkit-mask-image: radial-gradient(circle at 50% 100%, black 0%, black 30%, transparent 65%);
  animation: heroRays 40s linear infinite;
}
@keyframes heroRays {
  0%   { transform: translateX(-50%) rotate(0deg); }
  100% { transform: translateX(-50%) rotate(360deg); }
}

.hero-inner { position: relative; z-index: 3; max-width: 800px; }
.hero h1 em { font-style: normal; color: var(--accent); }
.fv .hero h1 em { color: var(--accent-warm); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

@media (prefers-reduced-motion: reduce) {
  .hero-scanline, .hero-sun, .hero-rays { animation: none; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px;
  font-family: var(--font-body); font-weight: 500; font-size: .95rem;
  border-radius: 999px; border: 1px solid transparent;
  transition: transform .15s, background .2s, color .2s, border-color .2s;
  cursor: pointer; line-height: 1;
}
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-primary { background: var(--accent); color: var(--bg); }
.btn-primary:hover { transform: translateY(-1px); }
.fv .btn-primary { background: var(--accent-warm); }
.btn-ghost { background: transparent; color: var(--fg); border-color: var(--line-strong); }
.btn-ghost:hover { background: rgba(255,255,255,.05); border-color: var(--fg-2); }

/* Cards / grids */
.cards {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(24px, 3vw, 32px);
  transition: border-color .2s, transform .2s;
}
.card:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.card-num {
  font-family: var(--font-display); color: var(--accent);
  font-size: 1.4rem; margin-bottom: 12px;
}
.fv .card-num { color: var(--accent-warm); }
.card h3 { margin-bottom: 8px; }
.card p { margin: 0; color: var(--fg-2); font-size: .95rem; }

/* Stats */
.stats {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 40px;
}
.stat { padding: 24px 0; border-top: 1px solid var(--line); }
.stat-value { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3rem); color: var(--accent); line-height: 1; }
.fv .stat-value { color: var(--accent-warm); }
.stat-label { font-size: .85rem; color: var(--fg-3); text-transform: uppercase; letter-spacing: .15em; margin-top: 6px; }

/* Partners strip */
.partners {
  display: flex; flex-wrap: wrap; gap: 32px 48px;
  align-items: center; justify-content: center;
  padding: 32px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.partners span {
  font-family: var(--font-display); font-size: 1.3rem;
  color: var(--fg-3); letter-spacing: .08em;
  transition: color .2s;
}
.partners span:hover { color: var(--fg); }

/* Contact */
.contact-grid {
  display: grid; gap: clamp(32px, 5vw, 64px);
  grid-template-columns: 1fr 1.2fr;
}
@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-info p { margin-bottom: 8px; }
.contact-info a { color: var(--accent); border-bottom: 1px solid transparent; transition: border-color .2s; }
.fv .contact-info a { color: var(--accent-warm); }
.contact-info a:hover { border-bottom-color: currentColor; }

form { display: grid; gap: 14px; }
form label { font-size: .85rem; color: var(--fg-3); }
input, select, textarea {
  font: inherit; color: var(--fg);
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 12px 14px;
  width: 100%;
  transition: border-color .2s;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--accent);
}
.fv input:focus, .fv select:focus, .fv textarea:focus { border-color: var(--accent-warm); }
textarea { resize: vertical; min-height: 120px; }

.gdpr {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .85rem; color: var(--fg-3);
}
.gdpr input[type="checkbox"] {
  width: 18px; height: 18px; margin-top: 2px;
  accent-color: var(--accent);
}
.fv .gdpr input[type="checkbox"] { accent-color: var(--accent-warm); }
.gdpr a { color: var(--fg-2); text-decoration: underline; }
.form-msg { font-size: .9rem; padding: 12px 14px; border-radius: var(--radius-sm); display: none; }
.form-msg.ok { display: block; background: rgba(0,229,255,.1); color: var(--accent); border: 1px solid rgba(0,229,255,.3); }
.fv .form-msg.ok { background: rgba(255,181,71,.1); color: var(--accent-warm); border-color: rgba(255,181,71,.3); }
.form-msg.err { display: block; background: rgba(255,80,80,.1); color: #ff9090; border: 1px solid rgba(255,80,80,.3); }

/* Gallery */
.gallery {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.gallery figure {
  margin: 0; position: relative; overflow: hidden;
  border-radius: var(--radius); cursor: zoom-in;
  aspect-ratio: 4/3;
  background: var(--bg-2);
}
.gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 14px 18px;
  background: linear-gradient(transparent, rgba(0,0,0,.85));
  font-size: .9rem; color: var(--fg);
}

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.92);
  display: none; align-items: center; justify-content: center;
  padding: 32px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: white; border: none;
  font-size: 1.5rem;
}
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.1); color: white; border: none;
  width: 48px; height: 48px; border-radius: 50%; font-size: 1.4rem;
}
.lightbox-prev { left: 24px; } .lightbox-next { right: 24px; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 24px;
  background: var(--bg-2);
  font-size: .88rem; color: var(--fg-3);
}
.footer-grid {
  display: grid; gap: 32px;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  margin-bottom: 32px;
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer-grid h4 {
  font-family: var(--font-body); font-size: .8rem; text-transform: uppercase;
  letter-spacing: .15em; color: var(--fg-2); margin: 0 0 12px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-grid a:hover { color: var(--fg); }
.footer-brand img { height: 32px; margin-bottom: 14px; }
.footer-brand p { margin: 0 0 10px; max-width: 28ch; }
.footer-legal {
  border-top: 1px solid var(--line); padding-top: 20px;
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  font-size: .8rem;
}

/* Cookie consent — banner + modal */
.cc-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
  align-items: flex-end; justify-content: center;
  padding: 16px;
  animation: cc-fade .25s ease;
}
.cc-backdrop.show { display: flex; }
.cc-backdrop.modal { align-items: center; }
@keyframes cc-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes cc-rise { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.cc-panel {
  width: 100%; max-width: 720px;
  background: var(--bg-3);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
  overflow: hidden;
  animation: cc-rise .3s ease;
  max-height: calc(100dvh - 32px);
  display: flex; flex-direction: column;
}
.cc-head {
  padding: 22px 24px 0;
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px;
}
.cc-head h3 {
  margin: 0;
  font-family: var(--font-body); font-size: 1.05rem; font-weight: 500;
  letter-spacing: 0;
  display: flex; align-items: center; gap: 10px;
}
.cc-head h3::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}
.fv .cc-head h3::before { background: var(--accent-warm); }
.cc-body { padding: 14px 24px 4px; overflow-y: auto; }
.cc-body p { font-size: .9rem; color: var(--fg-2); margin: 0 0 12px; }
.cc-body p a { color: var(--accent); text-decoration: underline; }
.fv .cc-body p a { color: var(--accent-warm); }

.cc-foot {
  padding: 16px 24px 22px;
  display: flex; gap: 10px; flex-wrap: wrap;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.cc-btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--fg);
  font-size: .88rem; font-weight: 500;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s, transform .15s;
  line-height: 1;
}
.cc-btn:hover { background: rgba(255, 255, 255, .06); border-color: var(--fg-2); }
.cc-btn.primary {
  background: var(--accent); color: var(--bg); border-color: var(--accent);
}
.fv .cc-btn.primary { background: var(--accent-warm); border-color: var(--accent-warm); }
.cc-btn.primary:hover { filter: brightness(1.1); transform: translateY(-1px); }
.cc-btn.ghost { color: var(--fg-2); }
.cc-btn-grow { flex-grow: 1; min-width: 0; }
.cc-btn-row-right { margin-left: auto; }

.cc-cats { display: none; padding: 4px 24px 8px; }
.cc-cats.show { display: block; }
.cc-cat {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.cc-cat:first-child { border-top: none; }
.cc-cat-info { flex: 1; min-width: 0; }
.cc-cat-info h4 {
  margin: 0 0 4px;
  font-family: var(--font-body); font-size: .95rem; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
}
.cc-cat-badge {
  font-size: .65rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .1em;
  padding: 3px 8px; border-radius: 999px;
  color: var(--fg-3); border: 1px solid var(--line-strong);
}
.cc-cat-badge.on { color: var(--accent); border-color: rgba(0, 229, 255, .3); }
.fv .cc-cat-badge.on { color: var(--accent-warm); border-color: rgba(255, 181, 71, .3); }
.cc-cat-info p { font-size: .82rem; color: var(--fg-3); margin: 0; line-height: 1.45; }

/* Switch */
.cc-switch {
  position: relative; flex-shrink: 0;
  width: 42px; height: 24px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  cursor: pointer;
  transition: background .2s, border-color .2s;
  margin-top: 2px;
}
.cc-switch::after {
  content: ""; position: absolute; top: 2px; left: 2px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--fg-3);
  transition: transform .2s, background .2s;
}
.cc-switch input { position: absolute; opacity: 0; pointer-events: none; }
.cc-switch.on { background: var(--accent); border-color: var(--accent); }
.fv .cc-switch.on { background: var(--accent-warm); border-color: var(--accent-warm); }
.cc-switch.on::after { transform: translateX(18px); background: var(--bg); }
.cc-switch.locked { opacity: .65; cursor: not-allowed; }

/* Smaller screens */
@media (max-width: 560px) {
  .cc-head { padding: 18px 18px 0; }
  .cc-body, .cc-cats { padding-left: 18px; padding-right: 18px; }
  .cc-foot { padding: 14px 18px 18px; }
  .cc-btn-row-right { margin-left: 0; width: 100%; }
  .cc-btn-grow { flex-basis: calc(50% - 5px); }
}

/* Small "Nastavenia cookies" link in footer */
.cookies-trigger {
  background: none; border: none; padding: 0;
  color: inherit; font: inherit;
  cursor: pointer; text-decoration: underline;
  opacity: .8;
}
.cookies-trigger:hover { opacity: 1; }

/* Utilities */
.text-center { text-align: center; }
.muted { color: var(--fg-3); }
.divider-line { height: 1px; background: var(--line); margin: 64px 0; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
}
.cookies-trigger {
  background: none; border: none; padding: 0;
  color: inherit; font: inherit;
  cursor: pointer; text-decoration: underline;
  opacity: .8;
}
.cookies-trigger:hover { opacity: 1; }

/* Utilities */
.text-center { text-align: center; }
.muted { color: var(--fg-3); }
.divider-line { height: 1px; background: var(--line); margin: 64px 0; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
}

/* ─── Light section variant (hybrid mode) ─── */
section.light {
  background: #f6f4f0 !important;
  color: #1a1a1a;
}
section.light h1, section.light h2, section.light h3 { color: #0a0a0a; }
section.light p { color: #4a4a4a; }
section.light p.lead { color: #1a1a1a; }
section.light p.muted, section.light .muted { color: #6a6a6a; }
section.light .eyebrow { color: #8a8a8a; }
section.light .eyebrow::before { color: var(--accent); }
.fv section.light .eyebrow::before { color: var(--accent-warm); }

section.light .card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 1px 2px rgba(0,0,0,.03);
}
section.light .card:hover {
  border-color: rgba(0,0,0,.14);
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
section.light .card h3 { color: #0a0a0a; }
section.light .card p { color: #4a4a4a; }
section.light .card-num { color: var(--accent); }
.fv section.light .card-num { color: var(--accent-warm); }

section.light .stat { border-top-color: rgba(0,0,0,.08); }
section.light .stat-value { color: #0a0a0a; }
section.light .stat-label { color: #8a8a8a; }

section.light a { color: var(--accent); }
.fv section.light a { color: #c47a00; }
section.light a:hover { opacity: .85; }

section.light input,
section.light select,
section.light textarea {
  background: #ffffff;
  border-color: rgba(0,0,0,.12);
  color: #1a1a1a;
}
section.light input:focus,
section.light select:focus,
section.light textarea:focus {
  border-color: var(--accent);
}
.fv section.light input:focus,
.fv section.light select:focus,
.fv section.light textarea:focus {
  border-color: var(--accent-warm);
}
section.light label { color: #6a6a6a; }
section.light .gdpr { color: #6a6a6a; }
section.light .gdpr a { color: #6a6a6a; text-decoration: underline; }
section.light .gdpr a:hover { color: #1a1a1a; }

section.light .btn-ghost {
  color: #1a1a1a;
  border-color: rgba(0,0,0,.16);
}
section.light .btn-ghost:hover {
  background: rgba(0,0,0,.05);
  border-color: rgba(0,0,0,.32);
}

section.light .partners { border-color: rgba(0,0,0,.1); }
section.light .partners span { color: #888; }
section.light .partners span:hover { color: #1a1a1a; }
