/* ═══════════════════════════════════════════
   Aitive Data – Shared Styles
   ═══════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --bg: #0E0F11;
  --surface: #161719;
  --surface-warm: #17181B;
  --border: #2A2C2F;
  --text: #E8E6E3;
  --muted: #7A7D82;
  --accent: #D64B6A;
  --accent-light: #E06B86;
  --accent-dim: rgba(214,75,106,0.10);
  --accent-glow: rgba(214,75,106,0.15);
  --accent-hover: rgba(214,75,106,0.25);
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 600px 400px at 25% 15%, rgba(214,75,106,0.035) 0%, transparent 60%),
    radial-gradient(ellipse 500px 500px at 75% 85%, rgba(214,75,106,0.02) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

a { color: var(--accent-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }

/* ═══════════ ACCESSIBILITY ═══════════ */

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--accent);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 0 0 8px 8px;
  z-index: 200;
  font-size: 0.85rem;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
  color: #fff;
}

*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}


/* ═══════════ HEADER / NAV ═══════════ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14,15,17,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}


.header-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.header-logo svg {
  width: 50px;
  height: 62px;
}

.header-logo .brand-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.3px;
}

.header-logo .brand-name span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-light);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 640px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: #1c1e21;
    border-bottom: 2px solid var(--accent-dim);
    border-top: 1px solid #3a3c40;
    padding: 1.4rem 2rem 1.8rem;
    gap: 1.2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.05rem; }
}


/* ═══════════ MAIN CONTENT ═══════════ */

.main {
  flex: 1;
  position: relative;
  z-index: 1;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
}


/* ═══════════ FOOTER ═══════════ */

.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  margin-bottom: 1rem;
}

.footer-links a {
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent-light);
}

.footer-legal {
  font-size: 0.7rem;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  opacity: 0.5;
}


/* ═══════════ HERO (Landing Page) ═══════════ */

.hero {
  text-align: center;
  padding: 5.5rem 2.5rem 4.5rem;
  background: linear-gradient(160deg, var(--surface-warm) 0%, var(--surface) 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: var(--accent-glow);
  filter: blur(50px);
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

.hero-logo {
  display: inline-block;
  margin-bottom: 2rem;
  position: relative;
  animation: fadeIn 1s ease-out;
}

.hero-logo svg {
  width: 96px;
  height: 120px;
}

.hero-logo .pulse-circle {
  animation: pulseGlow 8s ease-in-out infinite;
}

.hero h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  position: relative;
  margin-bottom: 0.3rem;
  animation: fadeSlideUp 0.8s ease-out 0.2s both;
}

.hero h1 span { color: var(--accent); }

.hero .subtitle {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.4rem;
  letter-spacing: 0.08em;
  animation: fadeSlideUp 0.8s ease-out 0.4s both;
}

.hero .tagline {
  font-size: 1.2rem;
  color: var(--text);
  margin-top: 2rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  opacity: 0.9;
  position: relative;
  animation: fadeSlideUp 0.8s ease-out 0.6s both;
  min-height: 1.8em;
}

.tagline-static { opacity: 0.55; }
.tagline-dynamic { color: var(--accent-light); font-weight: 400; }
.tagline-cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: var(--accent);
  vertical-align: text-bottom;
  margin-left: 2px;
  animation: blink 0.8s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* Network canvas */
#network-canvas {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* CTA Buttons */
.hero-cta {
  margin-top: 2.5rem;
  position: relative;
  z-index: 1;
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  animation: fadeSlideUp 0.8s ease-out 1s both;
}
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.9rem 2.2rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.btn-primary:hover {
  background: var(--accent-light);
  box-shadow: 0 0 30px var(--accent-glow);
  transform: translateY(-1px);
  color: #fff;
}
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.9rem 2.2rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  border-color: var(--accent-hover);
  background: rgba(214,75,106,0.05);
  color: var(--text);
}

.hero .description {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
  max-width: 480px;
  margin: 1.5rem auto 0;
  position: relative;
  animation: fadeSlideUp 0.8s ease-out 0.8s both;
}

.hero .description strong {
  color: var(--text);
  font-weight: 400;
}


/* ═══════════ CLIENT BAR (in Hero) ═══════════ */

.client-bar-hero {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}
.client-bar-hero .client-bar-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.client-bar-hero .client-bar-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.client-bar-hero .client-bar-logos span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text);
  opacity: 0.55;
  letter-spacing: 0.02em;
}


/* ═══════════ SERVICES GRID ═══════════ */

.services-section {
  margin-top: 4.5rem;
  margin-bottom: 4rem;
  position: relative;
}

.section-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-title span { color: var(--accent); }
.section-title { margin-bottom: 3rem; }

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-align: center;
  margin-bottom: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.2rem;
  margin-top: 1.2rem;
  text-align: left;
}

.service-card {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 1.6rem 1.4rem;
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s;
}

.service-card:hover {
  border-color: rgba(214,75,106,0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 24px rgba(214,75,106,0.08);
  transform: translateY(-4px);
}

.service-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(214,75,106,0.08);
  border: 1px solid rgba(214,75,106,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.3s;
}

.service-card:hover .service-icon-wrap {
  background: rgba(214,75,106,0.15);
}

.service-card .service-icon {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  display: block;
}

.service-card h3 {
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.service-card p {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 300;
}

.service-card {
  cursor: pointer;
  position: relative;
}

.service-toggle {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 300;
  transition: transform 0.3s;
  line-height: 1;
}

.service-card.expanded .service-toggle {
  transform: rotate(45deg);
}

.service-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin 0.3s ease;
  margin-top: 0;
}

.service-card.expanded .service-details {
  max-height: 300px;
  margin-top: 0.6rem;
}

.service-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-details ul li {
  font-size: 0.74rem;
  color: var(--muted);
  padding: 0.25rem 0 0.25rem 1rem;
  position: relative;
  font-weight: 300;
  line-height: 1.5;
}

.service-details ul li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  color: var(--accent);
  opacity: 0.5;
}


/* ═══════════ CONTACT GRID ═══════════ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.3rem 1.5rem;
  transition: transform 0.25s, border-color 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-hover);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2), 0 0 16px var(--accent-glow);
}

.contact-card .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.contact-card .info {
  font-size: 0.93rem;
  font-weight: 400;
}

.contact-card a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-card a:hover { color: var(--accent-light); }


/* ═══════════ PAGE CONTENT (Imprint, Privacy, Contact) ═══════════ */

.page-header {
  margin-bottom: 2rem;
}

.page-header h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.page-header h1 span { color: var(--accent); }

.page-header .page-subtitle {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.content-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1rem;
  overflow: visible;
}

.content-block h2 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--accent-light);
}

.content-block h3 {
  font-size: 0.9rem;
  font-weight: 500;
  margin: 1.2rem 0 0.4rem;
}

.content-block p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 0.6rem;
  font-weight: 300;
}

.content-block p strong {
  color: var(--text);
  font-weight: 500;
}

.content-block ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
}

.content-block ul li {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 0.3rem 0 0.3rem 1.2rem;
  position: relative;
  font-weight: 300;
}

.content-block ul li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  color: var(--accent);
  opacity: 0.5;
}


/* ═══════════ TEAM (About Page) ═══════════ */

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.team-card {
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
}

.team-card .team-skills {
  margin-top: auto;
  padding-top: 1rem;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2px solid var(--border);
  margin: 0 auto 1rem;
  display: block;
}

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

.team-card .team-skills {
  align-items: center;
}

.team-card .team-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.team-card h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.team-card .team-title {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 1rem;
}

.team-skills {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 1rem;
}

.team-skills span {
  font-size: 0.72rem;
  font-family: 'JetBrains Mono', monospace;
  color: var(--accent-light);
  background: var(--accent-dim);
  border: 1px solid rgba(214,75,106,0.15);
  border-radius: 6px;
  padding: 0.3rem 0.6rem;
  width: fit-content;
}

@media (max-width: 640px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-hover);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.85rem 2rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  text-align: center;
}

.btn:hover {
  background: var(--accent-light);
  box-shadow: 0 0 20px var(--accent-glow);
  color: #fff;
}


/* ═══════════ COOKIE CONSENT BANNER ═══════════ */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--surface);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.2rem 2rem;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

#cookie-banner.hidden {
  transform: translateY(100%);
  opacity: 0;
}

.cookie-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-text p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.cookie-text p strong {
  color: var(--text);
  font-weight: 500;
}

.cookie-text a {
  color: var(--accent-light);
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}

.cookie-btn--accept {
  background: var(--accent);
  color: #fff;
}

.cookie-btn--accept:hover {
  background: var(--accent-light);
  box-shadow: 0 0 16px var(--accent-glow);
}

.cookie-btn--decline {
  background: var(--surface-warm);
  color: var(--text);
  border: 1px solid var(--border);
}

.cookie-btn--decline:hover {
  background: #2a2c2f;
  border-color: var(--muted);
}


/* ═══════════ ABOUT TEASER ═══════════ */

.about-teaser {
  text-align: center;
  padding: 2rem 1.5rem;
  margin: 1rem 0;
}
.about-teaser-photos {
  display: flex;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.about-teaser-photos img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid var(--bg);
}
.about-teaser-photos img:last-child {
  margin-left: -16px;
}
.about-teaser h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.about-teaser h3 span { color: var(--accent); }
.about-teaser p {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 1.2rem;
}
.about-teaser .btn-ghost {
  font-size: 0.82rem;
  padding: 0.7rem 1.6rem;
}


/* ═══════════ CONTACT HERO ═══════════ */

.contact-hero {
  text-align: center;
  padding: 3.5rem 2.5rem 3rem;
  margin-bottom: 2rem;
  background: linear-gradient(160deg, var(--surface-warm) 0%, var(--surface) 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.contact-hero h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  position: relative;
  z-index: 1;
}
.contact-hero h1 span { color: var(--accent); }
.contact-hero .page-subtitle {
  position: relative;
  z-index: 1;
}
.contact-hero .contact-intro {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  max-width: 460px;
  margin: 1rem auto 0;
  position: relative;
  z-index: 1;
}
#contact-canvas {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}


/* ═══════════ CTA SECTION ═══════════ */

.cta-section {
  text-align: center;
  padding: 2.5rem 2rem;
}
.cta-section h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.cta-section h2 span { color: var(--accent); }
.cta-section p {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 1.5rem;
}


/* ═══════════ SCROLL REVEAL ═══════════ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 0.5s; }


/* ═══════════ RESPONSIVE ═══════════ */

@media (max-width: 640px) {
  .hero { padding: 2.5rem 1.4rem 2rem; }
  .hero h1 { font-size: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; gap: 0.8rem; }
  .hero-cta .btn-ghost { margin-left: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .container { padding: 2rem 1.2rem; }
  .content-block { padding: 1.4rem; }
  .cookie-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .cookie-actions { justify-content: center; }
  .service-card { background: rgba(255,255,255,0.06); border-color: #3a3c40; }
  .contact-card { background: #1f2124; border-color: #3a3c40; }
  .content-block { background: #1f2124; border-color: #3a3c40; }
  .content-block p, .service-card p, .hero .description { color: #bfc2c7; }
  .team-card .team-title { color: #bfc2c7; }
  .service-card h3 { font-size: 1.05rem; }
  .service-card p { font-size: 0.9rem; }
  .service-card .service-icon svg { width: 34px; height: 34px; }
  .service-card { padding: 1.4rem; }
  .service-details ul li { font-size: 0.88rem; color: #bfc2c7; }
  .section-label { font-size: 1.05rem; }
  .contact-card .label { font-size: 0.9rem; }
  .contact-card .info { font-size: 1.05rem; }
}
