/* =========================================================
   Agentur Gashi / Kosovo Personal – Main Stylesheet
   ========================================================= */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  /* Brand Colors */
  --blue-primary:   #1E5FF2;
  --blue-dark:      #1740B8;
  --blue-light:     #EAF1FF;
  --blue-soft:      #DCE7FF;
  --gradient-blue:  linear-gradient(135deg, #4B7BFF 0%, #1E5FF2 60%, #1740B8 100%);

  /* Neutrals */
  --text-dark:      #2D2D2D;
  --text-body:      #4A4A4A;
  --text-muted:     #6B7280;
  --white:          #FFFFFF;
  --border-subtle:  #E2E8F0;
  --bg-section:     #F8FAFC;

  /* Typography */
  --font-display:   'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:      'Inter', 'DM Sans', system-ui, sans-serif;

  /* Shadows */
  --shadow-card:    0 4px 20px rgba(30,95,242,0.08);
  --shadow-card-hover: 0 10px 30px rgba(30,95,242,0.15);
  --shadow-nav:     0 2px 14px rgba(15,23,42,0.06);
}

/* ---------- 2. RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background: var(--white);
}
img { max-width: 100%; display: block; }
a { color: var(--blue-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-dark);
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: .01em;
}
h1 { font-weight: 800; font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem); }
h2 { font-weight: 700; font-size: clamp(2rem, 3vw + 1rem, 3rem); }
h3 { font-weight: 600; font-size: 1.35rem; }
p  { margin: 0 0 1em; }

:focus-visible {
  outline: 2px solid var(--blue-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- 3. LAYOUT HELPERS ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}
.section { padding: clamp(3rem, 6vw, 6rem) 0; }
.section-muted { background: var(--bg-section); }
.section-light { background: var(--blue-light); }

.caption {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue-primary);
  margin-bottom: 1rem;
}

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .grid-2 { grid-template-columns: 1fr 1fr; gap: 4rem; } }

/* ---------- 4. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 14px 28px;
  min-width: 210px;
  font-weight: 600;
  font-size: .95rem;
  border-radius: 9999px;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .btn { min-width: 180px; }
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
  background: var(--blue-primary);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(30,95,242,.25);
}
.btn-primary:hover { background: var(--blue-dark); color: var(--white); box-shadow: 0 8px 22px rgba(30,95,242,.35); }

.btn-ghost {
  background: transparent;
  color: var(--blue-primary);
  border: 2px solid var(--blue-primary);
}
.btn-ghost:hover { background: var(--blue-primary); color: var(--white); border-color: var(--blue-primary); box-shadow: 0 8px 22px rgba(30,95,242,.25); }

.btn-white {
  background: var(--white);
  color: var(--blue-primary);
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
}
.btn-white:hover { background: var(--blue-light); color: var(--blue-dark); }

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border: 2px solid #25D366;
  padding: 12px 26px;
}
.btn-whatsapp:hover {
  background: #1DA851;
  border-color: #1DA851;
  color: var(--white);
  box-shadow: 0 8px 22px rgba(37, 211, 102, .35);
}
.icon-whatsapp {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  align-items: flex-start;
}
.btn-cell {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.btn-note {
  font-size: .82rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.35;
}
.section-process .btn-note { color: rgba(255,255,255,.75); }

/* ---------- 5. NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-nav);
  padding: .6rem 0;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.navbar-logo { height: 40px; width: auto; }
.navbar-menu {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar-menu a {
  font-weight: 500;
  color: var(--text-dark);
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.navbar-menu a:hover { color: var(--blue-primary); text-decoration: none; }
.navbar-cta { display: none; }
@media (min-width: 1024px) {
  .navbar-menu { display: flex; }
  .navbar-cta { display: inline-flex; }
}

/* Hamburger */
.navbar-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
}
.navbar-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-dark);
  transition: transform .3s, opacity .3s;
}
.navbar-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggle.active span:nth-child(2) { opacity: 0; }
.navbar-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) { .navbar-toggle { display: none; } }

/* Mobile overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 99;
  padding: 6rem 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform .35s ease;
  overflow-y: auto;
  text-align: center;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 2rem;
  width: 100%;
  max-width: 360px;
  border-top: 1px solid var(--border-subtle);
}
.mobile-menu li {
  border-bottom: 1px solid var(--border-subtle);
}
.mobile-menu a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 1rem 0;
  transition: color .2s ease;
}
.mobile-menu a:hover { color: var(--blue-primary); text-decoration: none; }
.mobile-menu .btn {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}
.mobile-menu a.btn-primary,
.mobile-menu a.btn-primary:hover { color: var(--white); }

body.nav-open { overflow: hidden; }

/* ---------- 6. HERO ---------- */
.hero {
  padding: 4.5rem 0 4rem;
  background: linear-gradient(180deg, var(--blue-light) 0%, var(--white) 100%);
  overflow: hidden;
}
.hero-inner { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) {
  .hero { padding: 4.5rem 0 5rem; }
  .hero-inner { grid-template-columns: 1.1fr 1fr; gap: 4rem; }
}
.hero h1 {
  font-family: 'Orbitron', 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw + .75rem, 3.25rem);
  color: #2D2D2D;
  letter-spacing: .02em;
  white-space: nowrap;
  line-height: 1.1;
}
.hero h1 .accent { color: var(--blue-primary); }
.hero-sub {
  font-size: clamp(1.05rem, 1vw + .9rem, 1.25rem);
  color: var(--text-body);
  margin: 1.25rem 0 2rem;
  max-width: 32ch;
}
.hero-bullets {
  list-style: none;
  padding: 0; margin: 0 0 2rem;
  display: flex; flex-direction: column; gap: 1.1rem;
}
.hero-bullets li {
  display: flex; align-items: center; gap: 1rem;
  font-weight: 600; color: var(--text-dark);
  font-size: 1.5rem;
}
.hero-bullets svg { color: var(--blue-primary); flex-shrink: 0; width: 32px; height: 32px; }
.hero-bullets .material-symbols-outlined {
  color: var(--blue-primary);
  font-size: 2.25rem;
  flex-shrink: 0;
  font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 40;
}

/* Hero Scroll Marquee – zwei Spalten, gegenläufig */
.hero-scroll {
  display: grid;
  grid-template-columns: 260px 260px;
  gap: 1rem;
  height: 560px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, #000 5%, #000 95%, rgba(0,0,0,0.35) 100%);
          mask-image: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, #000 5%, #000 95%, rgba(0,0,0,0.35) 100%);
}
.hero-scroll-col {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.hero-scroll-track {
  display: block;
  will-change: transform;
}
.hero-scroll-col-up .hero-scroll-track {
  animation: hero-marquee-up 36s linear infinite;
}
.hero-scroll-col-down .hero-scroll-track {
  animation: hero-marquee-down 36s linear infinite;
}
.hero-scroll-item {
  margin: 0 0 1rem;
  position: relative;
  border-radius: 20px 0 20px 0;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.hero-scroll-item img {
  width: 260px;
  height: 340px;
  object-fit: cover;
  display: block;
}
.hero-scroll-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.08) 32%,
    rgba(6, 97, 255, 0.88) 77%
  );
  pointer-events: none;
}
.hero-scroll-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  margin: 0;
  padding: 0 10px;
  text-align: center;
  color: #FFFFFF;
  font-family: 'Orbitron', 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  z-index: 2;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
@keyframes hero-marquee-up {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}
@keyframes hero-marquee-down {
  from { transform: translateY(-50%); }
  to   { transform: translateY(0); }
}
@media (max-width: 640px) {
  .hero-scroll { grid-template-columns: 180px 180px; height: 460px; gap: .75rem; }
  .hero-scroll-item img { width: 180px; height: 240px; }
  .hero-scroll-item { margin-bottom: .75rem; }
  .hero-scroll-label { font-size: .85rem; bottom: 12px; letter-spacing: .06em; }
}

/* ---------- 7. INDUSTRIES ---------- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) { .industries-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }
@media (min-width: 1024px) { .industries-grid { grid-template-columns: repeat(6, 1fr); } }
.industry-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  padding: 1.75rem 1rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
}
.industry-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-primary);
  box-shadow: var(--shadow-card-hover);
}
.industry-card .industry-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px 0 16px 0;
  background: var(--blue-light);
  color: var(--blue-primary);
  font-size: 36px;
  margin-bottom: .75rem;
  transition: background .25s ease, color .25s ease, transform .25s ease;
  font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 36;
}
.industry-card:hover .industry-icon {
  background: var(--blue-primary);
  color: var(--white);
  transform: scale(1.05);
}
.industry-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.industry-card small {
  display: block;
  color: var(--text-muted);
  font-size: .75rem;
  margin: 0;
}

/* ---------- 8. BENEFITS TILES ---------- */
.section-benefits .grid-2 { align-items: start; }
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .benefits-grid { gap: 1.25rem; }
}

/* Linke Spalte sticky – während der User durch die Kacheln scrollt */
@media (min-width: 1024px) {
  .section-benefits .grid-2 > div:first-child {
    position: sticky;
    top: 100px;
    align-self: start;
  }
}
.benefit-tile {
  background: #EBF2FF;
  border-radius: 20px 0 20px 0;
  padding: 2rem 1.75rem;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.benefit-tile:hover {
  transform: translateY(-3px);
  border-color: var(--blue-primary);
  box-shadow: var(--shadow-card);
}
.benefit-tile .benefit-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: .9rem;
}
.benefit-tile .benefit-icon {
  color: var(--blue-primary);
  font-size: 52px;
  line-height: 1;
  flex-shrink: 0;
  font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 48;
}
.benefit-tile .benefit-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: .02em;
  margin: 0;
  line-height: 1.15;
}
.benefit-tile .benefit-desc {
  color: var(--text-body);
  font-size: 1.1rem;
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 640px) {
  .benefit-tile { padding: 1.5rem 1.25rem; }
  .benefit-tile .benefit-icon { font-size: 40px; }
  .benefit-tile .benefit-title { font-size: 1.35rem; }
  .benefit-tile .benefit-desc { font-size: 1rem; }
}

/* ---------- 9. OFFICE / ABOUT CARD ---------- */
.office-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-card);
  text-align: center;
  border: 1px solid var(--border-subtle);
}
.office-card img.office-logo { height: 48px; margin: 0 auto 1rem; }
.office-card img.office-map { width: 220px; margin: 1rem auto; opacity: .9; }
.office-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.office-card address {
  font-style: normal;
  color: var(--text-body);
  line-height: 1.6;
}

/* ---------- 10. USP CARDS ---------- */
.usp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) { .usp-grid { grid-template-columns: repeat(3, 1fr); } }
.usp-card {
  background: var(--white);
  border-radius: 18px;
  padding: 2rem 1.75rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  transition: transform .25s ease;
}
.usp-card:hover { transform: translateY(-4px); }
.usp-card .usp-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--blue-light);
  color: var(--blue-primary);
  margin-bottom: 1rem;
}
.usp-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: .5rem;
  text-transform: uppercase;
}
.usp-card p { color: var(--text-body); margin: 0; }

/* ---------- 11. CTA BLOCK ---------- */
.cta-block {
  background: var(--gradient-blue);
  color: var(--white);
  text-align: center;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.15) 0%, transparent 40%),
              radial-gradient(circle at 80% 80%, rgba(255,255,255,.1) 0%, transparent 40%);
  pointer-events: none;
}
.cta-block > * { position: relative; z-index: 1; }
.cta-block img.cta-logo {
  height: 144px;
  width: 144px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  display: block;
}
.cta-block h2 { color: var(--white); }
.cta-block p.cta-sub { max-width: 48ch; margin: 0 auto 2.5rem; opacity: .95; font-size: 1.1rem; }

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto 2.5rem;
}
@media (min-width: 768px) { .contact-cards { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
.contact-card {
  background: var(--white);
  color: var(--text-dark);
  border-radius: 18px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,0,0,.18); text-decoration: none; color: var(--text-dark); }
.contact-card .contact-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--blue-light);
  color: var(--blue-primary);
  margin-bottom: .75rem;
}
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .25rem;
}
.contact-card span { color: var(--text-body); font-size: .95rem; word-break: break-word; }

.social-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
.social-row a {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: var(--white);
  transition: background .2s ease, transform .2s ease;
}
.social-row a:hover { background: rgba(255,255,255,.3); text-decoration: none; transform: translateY(-2px); }
.social-row svg { width: 22px; height: 22px; }

/* Footer Social */
.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: 1rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #CBD5E1;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.footer-social a:hover {
  background: var(--blue-primary);
  color: var(--white);
  transform: translateY(-2px);
  text-decoration: none;
}
.footer-social svg { width: 18px; height: 18px; }

/* ---------- 12. FOOTER ---------- */
.footer {
  background: #0B1220;
  color: #CBD5E1;
  padding: 3rem 0 1.5rem;
  font-size: .9rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-left img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  margin-bottom: .75rem;
  display: block;
}
.footer-left p { margin: .25rem 0; color: #94A3B8; }
.footer-left a { color: #CBD5E1; }
.footer-right {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-right a {
  color: #CBD5E1;
  text-transform: uppercase;
  font-size: .85rem;
  letter-spacing: .05em;
}
.footer-right a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  font-size: .8rem;
  color: #64748B;
}

/* ---------- 13. STARTSCREEN (index.html only) ---------- */
.intro-wrapper {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #FFFFFF;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s ease, transform .6s ease;
}
.intro-wrapper.hide { opacity: 0; pointer-events: none; transform: scale(.95); }
.intro-lottie {
  position: relative;
  width: 70vw;
  height: 70vh;
  max-width: 70%;
  max-height: 70%;
}
.intro-lottie svg {
  width: 100% !important;
  height: 100% !important;
  display: block;
}
/* Simple loader fallback if lottie json missing */
.intro-lottie:empty::before {
  content: "";
  position: absolute;
  width: 80px; height: 80px;
  border: 4px solid rgba(255,255,255,.25);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 1.1s linear infinite;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
}
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.startscreen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .8s ease .2s, transform .6s ease;
}
.startscreen.show { opacity: 1; pointer-events: auto; }
.startscreen.leave { transform: translateY(-100%); opacity: 0; }
.startscreen-logo {
  height: 52px;
}
.startscreen-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 720px;
  width: 100%;
}
@media (max-width: 640px) { .startscreen-cards { grid-template-columns: 1fr; } }
.startscreen-card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--text-dark);
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  text-decoration: none;
  font-family: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.startscreen-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-primary);
  box-shadow: var(--shadow-card-hover);
  text-decoration: none;
  color: var(--text-dark);
}
.startscreen-card-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .02em;
  margin: 1rem 0 .5rem;
  color: var(--text-dark);
}
.startscreen-card-sub {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
.startscreen-card-arrow {
  display: inline-block;
  margin-top: 1rem;
  font-size: 1.5rem;
  color: var(--blue-primary);
}
.startscreen-map {
  width: 80px;
  height: auto;
}

/* ---------- 14. LEGAL / SIMPLE PAGES ---------- */
.content-page {
  padding: 8rem 0 4rem;
  min-height: 60vh;
}
.content-page h1 { margin-bottom: 2rem; }
.content-page h2 { font-size: 1.6rem; margin-top: 2rem; }
.content-page .placeholder {
  background: #FEF3C7;
  border-left: 3px solid #F59E0B;
  padding: .5rem .75rem;
  display: inline-block;
  border-radius: 4px;
  color: #92400E;
  font-weight: 500;
}

/* ---------- 15. LINKS PAGE ---------- */
.links-page {
  min-height: 100vh;
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}
.links-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem 1.5rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,.2);
}
.links-card img { height: 48px; margin: 0 auto 1rem; }
.links-card h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: .25rem;
}
.links-card p { color: var(--text-muted); margin-bottom: 2rem; }
.links-list { display: flex; flex-direction: column; gap: .75rem; }
.links-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 14px 18px;
  background: var(--blue-light);
  color: var(--blue-primary);
  border-radius: 12px;
  font-weight: 600;
  transition: background .2s ease, transform .2s ease, color .2s ease;
}
.links-list a:hover {
  background: var(--blue-primary);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-1px);
}

/* ---------- 16. SECTION INTRO ---------- */
.section-intro {
  max-width: 62ch;
  color: var(--text-muted);
  margin: 0 0 2.5rem;
  font-size: 1.05rem;
  line-height: 1.65;
}
.section-intro a { color: var(--blue-primary); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- 17. PROZESS / ABLAUF ---------- */
.section-process {
  background: var(--gradient-blue);
  color: var(--white);
}
.section-process .grid-2 { align-items: start; }
.section-process .caption { color: rgba(255,255,255,.85); }
.section-process h2 { color: var(--white); }
.section-process h2.ablauf-title { white-space: nowrap; }
.section-process p { color: rgba(255,255,255,.92); }
.section-process p strong { color: var(--white); }
@media (min-width: 1024px) {
  .section-process .grid-2 > div:first-child {
    position: sticky;
    top: 100px;
    align-self: start;
  }
}
.process-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) { .process-grid { gap: 1.25rem; } }
.process-card {
  background: var(--white);
  border-radius: 20px 0 20px 0;
  padding: 1.75rem 1.5rem;
  border: 1px solid transparent;
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.process-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,.14);
}
.process-card .process-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: .75rem;
}
.process-card .process-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--blue-primary);
  line-height: 1;
  letter-spacing: .02em;
  flex-shrink: 0;
  min-width: 2.25rem;
}
.process-card .process-icon {
  color: var(--blue-primary);
  font-size: 36px;
  line-height: 1;
  flex-shrink: 0;
  font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 40;
}
.process-card .process-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: .02em;
  margin: 0;
  line-height: 1.15;
}
.process-card .process-desc {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 640px) {
  .process-card { padding: 1.4rem 1.2rem; }
  .process-card .process-number { font-size: 1.5rem; min-width: 2rem; }
  .process-card .process-icon { font-size: 28px; }
  .process-card .process-title { font-size: 1.15rem; }
}

/* ---------- 18. FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 2rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.faq-item[open] {
  border-color: var(--blue-primary);
  box-shadow: var(--shadow-card);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 3rem 1.15rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.35;
  position: relative;
  transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--blue-primary);
  font-weight: 400;
  transition: transform .25s ease;
}
.faq-item[open] summary::after {
  content: "–";
  transform: translateY(-50%) rotate(0deg);
}
.faq-item summary:hover { color: var(--blue-primary); }
.faq-item summary:focus-visible {
  outline: 2px solid var(--blue-primary);
  outline-offset: 2px;
}
.faq-answer {
  padding: 0 1.5rem 1.4rem;
  color: var(--text-body);
  line-height: 1.65;
}
.faq-answer p { margin: 0; }
.faq-answer p + p { margin-top: .75rem; }
@media (min-width: 768px) {
  .faq-item summary { font-size: 1.1rem; padding: 1.25rem 3.25rem 1.25rem 1.75rem; }
  .faq-answer { padding: 0 1.75rem 1.5rem; }
}
.faq-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  margin-top: 1.75rem;
  padding: 1.1rem 1.25rem;
  background: var(--blue-light, #EBF2FF);
  border-left: 3px solid var(--blue-primary);
  border-radius: 10px;
  color: var(--text-body);
  font-size: .95rem;
  line-height: 1.6;
}
.faq-disclaimer p { margin: 0; }
.faq-disclaimer strong { color: var(--text-dark); }
.faq-disclaimer a { color: var(--blue-primary); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.faq-disclaimer-icon {
  color: var(--blue-primary);
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: .1rem;
  font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

/* ---------- 19. REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
