/* ZaazTech reveal.js brand theme */
:root {
  --bg: #0f1115;
  --ink: #edeff2;
  --muted: #9aa3ad;
  --accent: #2bd0c0;
  --accent-2: #1f9d92;
  --font: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
}

html,
body {
  background: var(--bg);
}

.reveal {
  font-family: var(--font);
  color: var(--ink);
  font-weight: 400;
}

/* Dim background videos for text legibility */
.reveal .slide-background-content {
  filter: brightness(0.42) saturate(1.15);
}

.reveal h1,
.reveal h2,
.reveal h3 {
  font-family: var(--font);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -1.5px;
  text-transform: none;
  line-height: 1.05;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}
.reveal h1 {
  font-size: 2.6em;
}
.reveal .accent {
  color: var(--accent);
}
.reveal .muted {
  color: var(--muted);
}
.reveal p,
.reveal li {
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
}

.reveal a {
  color: var(--accent);
}

/* Tagline / kicker */
.kicker {
  font-size: 0.5em;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

/* The ‹Z› mark inline */
.mark-z {
  font-weight: 700;
  letter-spacing: -2px;
}
.mark-z .b {
  color: var(--ink);
}
.mark-z .z {
  color: var(--accent);
}

/* Cards (pillars) */
.cards {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: stretch;
  margin-top: 24px;
}
.card {
  flex: 1;
  background: rgba(20, 24, 30, 0.72);
  border: 1px solid rgba(43, 208, 192, 0.28);
  border-radius: 16px;
  padding: 28px 26px;
  text-align: left;
  backdrop-filter: blur(6px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}
.card h3 {
  color: var(--accent);
  font-size: 1.15em;
  margin: 0 0 12px;
}
.card ul {
  margin: 0;
  padding-left: 1.1em;
}
.card li {
  font-size: 0.74em;
  color: var(--ink);
  margin: 8px 0;
  line-height: 1.3;
}

/* Value list */
.values {
  list-style: none;
  margin: 24px auto 0;
  padding: 0;
  max-width: 80%;
}
.values li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin: 18px 0;
  font-size: 0.95em;
}
.values .lead {
  color: var(--accent);
  font-weight: 700;
  white-space: nowrap;
}

/* Process steps */
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 40px;
}
.step {
  background: rgba(20, 24, 30, 0.72);
  border: 1px solid rgba(43, 208, 192, 0.32);
  border-radius: 14px;
  padding: 22px 30px;
  font-weight: 700;
  font-size: 0.9em;
  color: var(--ink);
}
.step small {
  display: block;
  color: var(--muted);
  font-weight: 400;
  font-size: 0.55em;
  margin-top: 6px;
  letter-spacing: 0.5px;
}
.link-line {
  width: 46px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  position: relative;
}
.link-line::after {
  content: '';
  position: absolute;
  right: -3px;
  top: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* Location pills */
.locs {
  margin-top: 30px;
  font-size: 0.8em;
  color: var(--muted);
  letter-spacing: 1px;
}
.locs b {
  color: var(--ink);
  font-weight: 600;
}

/* Icon strip */
.icon-strip {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 34px;
  opacity: 0.9;
}
.icon-strip img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(43, 208, 192, 0.25);
}

/* Video framing */
.brand-video {
  width: 70%;
  max-height: 62vh;
  border-radius: 16px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(43, 208, 192, 0.25);
}

/* CTA */
.cta-contact {
  margin-top: 28px;
  font-size: 0.7em;
  letter-spacing: 1px;
  color: var(--muted);
}
.cta-contact b {
  color: var(--ink);
}

/* Language picker */
.lang-switch {
  position: fixed;
  top: 16px;
  right: 18px;
  z-index: 60;
  display: flex;
  gap: 8px;
  font-family: var(--font);
  font-size: 14px;
  letter-spacing: 1px;
}
.lang-switch a {
  color: var(--muted);
  text-decoration: none;
  padding: 4px 10px;
  border: 1px solid rgba(154, 163, 173, 0.25);
  border-radius: 8px;
  transition: all 0.15s ease;
}
.lang-switch a:hover {
  color: var(--ink);
  border-color: var(--accent);
}
.lang-switch a.active {
  color: var(--bg);
  background: var(--accent);
  border-color: var(--accent);
  font-weight: 700;
}

/* Reveal chrome tint */
.reveal .progress {
  color: var(--accent);
}
.reveal .controls {
  color: var(--accent);
}
