@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --brand1: #b388ff;
  --brand2: #7c4dff;
  --brand3: #d4a853;
  --bg: #0a0714;
  --surface: #140f28;
  --surface2: #1e1640;
  --text: #ede6fa;
  --muted: #9b8ec4;
  --line: #2a2055;
  --radius: 16px;
  --max: 1200px;
  --glow: rgba(179, 136, 255, .15);
  --gold-glow: rgba(212, 168, 83, .2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

a { color: var(--brand1); text-decoration: none; transition: color .2s; }
a:hover { color: var(--brand3); }

img { max-width: 100%; height: auto; display: block; }

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute; left: -999px; top: 8px;
  background: var(--brand2); color: #fff; padding: 8px 16px;
  border-radius: 8px; z-index: 9999; font-size: .875rem;
}
.skip-link:focus { left: 16px; }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10, 7, 20, .82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-row {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--text);
}

.brand img { border-radius: 8px; }

.brand .name {
  font-size: 1.25rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  background: linear-gradient(135deg, var(--brand1), var(--brand3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

nav { display: flex; align-items: center; gap: 8px; }

.nav-links {
  display: flex; gap: 4px;
}

.nav-links a {
  color: var(--muted); text-decoration: none; padding: 8px 16px;
  border-radius: 10px; font-size: .9rem; font-weight: 500;
  transition: color .2s, background .2s; letter-spacing: .3px;
}
.nav-links a:hover { color: var(--text); background: var(--surface2); }

.nav-cta {
  display: inline-flex; align-items: center;
  background: linear-gradient(135deg, var(--brand2), var(--brand1));
  color: #fff !important; padding: 10px 24px; border-radius: 12px;
  font-size: .875rem; font-weight: 600; text-decoration: none;
  margin-left: 12px; letter-spacing: .3px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px var(--glow);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--glow);
}

.burger {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; padding: 8px;
  flex-direction: column; justify-content: center; gap: 5px;
}
.burger span {
  display: block; width: 100%; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.mobile-menu[hidden] { display: none; }
.mobile-menu {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--line);
}
.mobile-menu a {
  color: var(--muted); text-decoration: none; padding: 12px 16px;
  border-radius: 10px; font-size: 1rem; font-weight: 500;
}
.mobile-menu a:hover { color: var(--text); background: var(--surface2); }
.mobile-menu .nav-cta { text-align: center; margin: 8px 0 0; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}

.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.45) saturate(1.2);
}

.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(124, 77, 255, .25) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 80%, rgba(10, 7, 20, .95) 0%, rgba(10, 7, 20, .6) 50%),
    linear-gradient(180deg, transparent 40%, var(--bg) 100%);
  z-index: 1;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 800px; padding: 120px 24px 80px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: .8rem; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--brand3);
  margin-bottom: 24px;
  padding: 8px 24px;
  border: 1px solid rgba(212, 168, 83, .3);
  border-radius: 100px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #fff 30%, var(--brand1) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-trust {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; margin-top: 48px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}

.hero-trust-item strong {
  font-size: 1.8rem; font-weight: 800;
  background: linear-gradient(135deg, var(--brand3), var(--brand1));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-trust-item span { font-size: .8rem; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }

/* ===== BUTTONS ===== */
.btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px; border-radius: 14px;
  font-size: 1rem; font-weight: 600; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer; border: none; letter-spacing: .3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand2), var(--brand1));
  color: #fff;
  box-shadow: 0 4px 24px var(--glow);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px var(--glow);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
}
.btn-ghost:hover {
  background: var(--surface);
  border-color: var(--brand1);
  transform: translateY(-3px);
  color: var(--text);
}

/* ===== SECTIONS ===== */
section { padding: 100px 0; }

.section-eyebrow {
  font-size: .75rem; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--brand3);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -.5px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.8;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

.section-header { margin-bottom: 64px; }

/* ===== COSMIC DIVIDER ===== */
.cosmic-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand2), var(--brand3), var(--brand2), transparent);
  margin: 0;
  opacity: .5;
}

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-decoration: none;
  color: var(--text);
  transition: transform .3s, border-color .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand2), var(--brand3));
  opacity: 0;
  transition: opacity .3s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand2);
  box-shadow: 0 16px 48px var(--glow);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124, 77, 255, .15), rgba(212, 168, 83, .1));
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 1.25rem; font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted); font-size: .95rem; line-height: 1.7;
}

.service-card .card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px;
  color: var(--brand3);
  font-size: .875rem; font-weight: 600;
  letter-spacing: .3px;
}

/* ===== PROCESS / STEPS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  counter-reset: step;
}

.step {
  position: relative;
  text-align: center;
  padding: 40px 24px;
}

.step-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid var(--brand2);
  font-size: 1.5rem; font-weight: 800;
  color: var(--brand1);
  margin-bottom: 24px;
  background: radial-gradient(circle, rgba(124, 77, 255, .1), transparent);
  box-shadow: 0 0 30px var(--glow);
}

.step h3 {
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 12px;
}

.step p {
  font-size: .9rem; color: var(--muted); line-height: 1.7;
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s, filter .5s;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.1) saturate(1.2);
}

.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 7, 20, .85) 100%);
  display: flex; align-items: flex-end; padding: 24px;
  opacity: 0; transition: opacity .3s;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay span {
  font-size: .9rem; font-weight: 600; color: #fff;
  letter-spacing: .5px;
}

.gallery-featured {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

/* ===== TRUST / USPs ===== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.trust-item {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color .3s;
}

.trust-item:hover { border-color: var(--brand2); }

.trust-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.trust-item h3 {
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 8px;
}

.trust-item p {
  color: var(--muted); font-size: .9rem; line-height: 1.7;
}

/* ===== CTA BOX ===== */
.cta-box {
  text-align: center;
  padding: 80px 40px;
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(124, 77, 255, .2) 0%, transparent 60%),
    var(--surface);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 200px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand3), transparent);
}

.cta-box h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-box p {
  color: var(--muted); font-size: 1.05rem;
  max-width: 500px; margin: 0 auto 32px; line-height: 1.8;
}

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%; text-align: left;
  background: none; border: none; cursor: pointer;
  color: var(--text); padding: 24px 0;
  font-size: 1.05rem; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; font-family: inherit;
  transition: color .2s;
}

.faq-question:hover { color: var(--brand1); }

.faq-question::after {
  content: '+';
  font-size: 1.5rem; font-weight: 300;
  color: var(--brand3);
  transition: transform .3s;
  flex-shrink: 0;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 24px;
}

.faq-answer p {
  color: var(--muted); font-size: .95rem; line-height: 1.8;
}

/* ===== LEISTUNGEN PAGE ===== */
.leistung-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
}

.leistung-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(124, 77, 255, .12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(212, 168, 83, .08) 0%, transparent 50%);
  pointer-events: none;
}

/* ===== FEATURE SECTION ===== */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
}

.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

.feature-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 64px rgba(0,0,0,.4);
  border: 1px solid var(--line);
}

.feature-img img {
  width: 100%; height: 100%; object-fit: cover;
  aspect-ratio: 4/3;
}

.feature-text h2 {
  font-size: 1.8rem; font-weight: 800;
  margin-bottom: 16px;
}

.feature-text p {
  color: var(--muted); font-size: 1rem; line-height: 1.8;
  margin-bottom: 16px;
}

.feature-list {
  list-style: none; padding: 0; margin-top: 24px;
}

.feature-list li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: var(--muted); font-size: .95rem;
}

.feature-list li::before {
  content: '';
  position: absolute; left: 0; top: 16px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand3);
  box-shadow: 0 0 12px var(--gold-glow);
}

/* ===== ABOUT PAGE ===== */
.about-intro {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 64px;
  align-items: start;
  padding-top: 160px;
}

.about-portrait {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
  position: sticky; top: 100px;
}

.about-portrait img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
}

.about-text h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; margin-bottom: 24px;
  line-height: 1.15;
}

.about-text p {
  color: var(--muted); font-size: 1.05rem; line-height: 1.8;
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.stat {
  text-align: center;
  padding: 32px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.stat strong {
  display: block;
  font-size: 2rem; font-weight: 800;
  background: linear-gradient(135deg, var(--brand3), var(--brand1));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat span {
  font-size: .8rem; color: var(--muted);
  letter-spacing: 1px; text-transform: uppercase;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding-top: 160px;
}

.contact-info h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800; margin-bottom: 20px;
}

.contact-info > p {
  color: var(--muted); font-size: 1.05rem; line-height: 1.8;
  margin-bottom: 40px;
}

.contact-detail {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-detail-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  flex-shrink: 0;
  color: var(--brand3);
}

.contact-detail strong {
  display: block; font-size: .95rem; margin-bottom: 4px;
}

.contact-detail span, .contact-detail a {
  color: var(--muted); font-size: .9rem;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 48px;
}

.contact-form h2 {
  font-size: 1.5rem; font-weight: 700;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block; font-size: .875rem; font-weight: 600;
  margin-bottom: 8px; color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 14px 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  font-family: inherit; font-size: .95rem;
  transition: border-color .2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--brand2);
  box-shadow: 0 0 0 3px var(--glow);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 100px 0 0;
}

.breadcrumbs ol {
  display: flex; gap: 8px; align-items: center;
  list-style: none; padding: 0;
  font-size: .85rem; color: var(--muted);
}

.breadcrumbs li + li::before {
  content: '›'; margin-right: 8px; color: var(--line);
}

.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--brand1); }

/* ===== RELATED SERVICES ===== */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.related-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: transform .3s, border-color .3s;
}

.related-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand2);
}

.related-card img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
}

.related-card-body {
  padding: 24px;
}

.related-card h3 {
  font-size: 1.05rem; font-weight: 700;
  margin-bottom: 8px;
}

.related-card p {
  color: var(--muted); font-size: .85rem; line-height: 1.6;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 160px 0 80px;
  max-width: 800px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: 2rem; font-weight: 800;
  margin-bottom: 40px;
}

.legal-page h2 {
  font-size: 1.3rem; font-weight: 700;
  margin: 40px 0 16px;
  color: var(--text);
}

.legal-page h3 {
  font-size: 1.1rem; font-weight: 600;
  margin: 24px 0 12px;
}

.legal-page p, .legal-page li {
  color: var(--muted); font-size: .95rem; line-height: 1.8;
  margin-bottom: 12px;
}

.legal-page ul, .legal-page ol {
  padding-left: 24px; margin-bottom: 16px;
}

.legal-page a { color: var(--brand1); }

/* ===== 404 PAGE ===== */
.page-404 {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}

.page-404 h1 {
  font-size: 8rem; font-weight: 900;
  background: linear-gradient(180deg, var(--brand1), transparent);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.page-404 p {
  color: var(--muted); font-size: 1.2rem;
  margin-bottom: 32px;
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.footer-grid strong {
  display: block; margin-bottom: 12px;
  font-size: .9rem;
}

.footer-grid span, .footer-grid a {
  color: var(--muted); font-size: .875rem; line-height: 2;
}

.footer-grid a:hover { color: var(--brand1); }

.social-links {
  display: flex; gap: 12px; margin-top: 8px;
}

.social-links a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color .2s, background .2s;
}

.social-links a:hover {
  border-color: var(--brand2);
  background: var(--surface2);
}

.social-links svg {
  width: 18px; height: 18px;
  fill: var(--muted);
  transition: fill .2s;
}

.social-links a:hover svg { fill: var(--brand1); }

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .8rem;
}

/* ===== AMBIENT GLOW BACKGROUNDS ===== */
.ambient-glow {
  position: relative;
}

.ambient-glow::before {
  content: '';
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124, 77, 255, .06) 0%, transparent 70%);
  pointer-events: none;
}

/* ===== INTRO OVERLAY ===== */
#intro-overlay {
  position: fixed; inset: 0; z-index: 99999;
  display: none;
  align-items: center; justify-content: center;
  background: #050310;
}

.intro-moon {
  position: relative; width: 160px; height: 160px; z-index: 1;
}
.intro-moon-core {
  position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #f5e6c8, #d4a853 40%, #7c4dff 100%);
  opacity: 0;
  animation: moonReveal 3s ease-out forwards;
}
.intro-ring {
  position: absolute; inset: -40px; border-radius: 50%;
  border: 1px solid rgba(212,168,83,.3);
  opacity: 0;
}
.intro-ring:nth-child(2) { animation: ringPulse 3s .4s ease-out forwards; }
.intro-ring:nth-child(3) { inset: -90px; animation: ringPulse 3s .7s ease-out forwards; }
.intro-ring:nth-child(4) { inset: -160px; animation: ringPulse 3s 1s ease-out forwards; }

@keyframes moonReveal {
  0%   { opacity: 0; transform: scale(.6); filter: blur(20px); box-shadow: none; }
  30%  { opacity: 1; transform: scale(1); filter: blur(0); }
  60%  { box-shadow: 0 0 60px 20px rgba(212,168,83,.5), 0 0 120px 40px rgba(124,77,255,.25); }
  100% { opacity: 1; transform: scale(1); box-shadow: 0 0 80px 30px rgba(212,168,83,.35), 0 0 160px 60px rgba(124,77,255,.2); }
}
@keyframes ringPulse {
  0%   { opacity: 0; transform: scale(.5); }
  40%  { opacity: .6; }
  100% { opacity: 0; transform: scale(1.8); }
}

#intro-skip {
  position: absolute; bottom: 40px; right: 40px;
  z-index: 100000;
  background: none; border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.6);
  padding: 10px 24px; border-radius: 100px;
  font-family: inherit; font-size: .8rem; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}

#intro-skip:hover {
  border-color: rgba(255,255,255,.5);
  color: #fff;
}

/* ===== MOON PHASE WIDGET ===== */
.brand-moon {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(232, 224, 208, .3));
}

.brand-moon svg {
  display: block;
}

#hero-moon-widget {
  display: flex; align-items: center; gap: 20px;
  padding: 20px 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 100px;
  margin: 48px auto 0;
  width: fit-content;
}

.moon-phase-visual {
  filter: drop-shadow(0 0 16px rgba(232, 224, 208, .4));
}

.moon-phase-visual svg {
  display: block;
}

.moon-phase-info {
  display: flex; flex-direction: column; gap: 2px;
}

.moon-phase-name {
  font-size: 1rem; font-weight: 700;
  color: var(--text);
  letter-spacing: .5px;
}

.moon-phase-detail {
  font-size: .8rem;
  color: var(--muted);
  letter-spacing: .5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 920px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-featured { grid-column: span 2; }
  .feature-row { grid-template-columns: 1fr; gap: 40px; }
  .feature-row.reverse { direction: ltr; }
  .about-intro { grid-template-columns: 1fr; }
  .about-portrait { position: static; max-width: 400px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta:not(.mobile-menu .nav-cta) { display: none; }
  .burger { display: flex; }

  .hero { min-height: 90vh; }
  .hero h1 { font-size: 2.2rem; }
  .hero-trust { gap: 24px; }

  section { padding: 64px 0; }
  .section-title { font-size: 1.6rem; }

  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-featured { grid-column: span 1; grid-row: span 1; }
  .related-grid { grid-template-columns: 1fr; }

  .about-stats { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 48px 24px; }
}

@media (max-width: 560px) {
  .container { padding: 0 16px; }
  .hero-content { padding: 100px 16px 60px; }
  .btn { padding: 14px 28px; font-size: .9rem; }
  .btn-row { flex-direction: column; align-items: center; }
}

/* ===== LIGHTBOX ===== */
.gallery-item { cursor: pointer; }

.lightbox {
  position: fixed; inset: 0; z-index: 90000;
  background: rgba(5, 3, 16, .95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
}
.lightbox-active { opacity: 1; visibility: visible; }

.lightbox-wrap {
  position: relative;
  max-width: 90vw; max-height: 80vh;
  display: flex; align-items: center; justify-content: center;
}

.lightbox-img {
  max-width: 90vw; max-height: 80vh;
  object-fit: contain; border-radius: 4px;
  transition: transform .25s ease, opacity .25s ease;
  user-select: none; -webkit-user-select: none;
  box-shadow: 0 8px 60px rgba(124, 77, 255, .25);
}

.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; color: var(--text);
  font-size: 2.2rem; line-height: 1; cursor: pointer;
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background .2s;
  z-index: 2;
}
.lightbox-close:hover { background: rgba(255,255,255,.1); }

.lightbox-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  color: var(--text); width: 52px; height: 52px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
  z-index: 2;
}
.lightbox-arrow svg { width: 24px; height: 24px; }
.lightbox-arrow:hover { background: rgba(255,255,255,.15); border-color: var(--brand1); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-caption {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: var(--text); font-size: .95rem; font-weight: 500;
  text-align: center; opacity: .85;
  text-shadow: 0 1px 8px rgba(0,0,0,.6);
  white-space: nowrap;
}

.lightbox-counter {
  position: absolute; top: 28px; left: 28px;
  color: var(--muted); font-size: .8rem; font-weight: 500;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .lightbox-arrow { width: 40px; height: 40px; }
  .lightbox-arrow svg { width: 20px; height: 20px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-caption { font-size: .85rem; bottom: 16px; }
}
