/* ============================================================
   IT-Leistungsverzeichnis.DE — Haupt-Stylesheet
   Farben: Lila #9809FF | Blau #2B75FF
   ============================================================ */

/* ── Breadcrumb ── */
.breadcrumb { padding: 16px 0; display: flex; align-items: center; gap: 6px; font-size: .85rem; color: var(--text-muted); flex-wrap: wrap; overflow: hidden; }
.breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color .2s; white-space: nowrap; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--text-muted); white-space: nowrap; }
@media (max-width: 640px) {
  .breadcrumb { font-size: .75rem; gap: 4px; }
  .breadcrumb > *:not(:nth-last-child(-n+2)) { display: none; }
}

/* ── Product Detail ── */
.product-detail-grid { display: grid; grid-template-columns: 1fr 400px; gap: 56px; align-items: start; }
.product-gallery { position: relative; }
.product-main-img { width: 100%; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-light); background: var(--bg-secondary); position: relative; }
.gallery-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,.45); border: 1px solid rgba(255,255,255,.12); color: #fff; border-radius: 50%; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; transition: background .2s; user-select: none; }
.gallery-arrow:hover { background: rgba(43,117,255,.55); }
.gallery-arrow.prev { left: 10px; }
.gallery-arrow.next { right: 10px; }
.product-main-img img { width: 100%; display: block; height: auto; }
.product-main-img .no-img-lg { height: 360px; display: flex; align-items: center; justify-content: center; font-size: 6rem; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.product-thumbs { display: flex; gap: 12px; margin-top: 12px; }
.product-thumb { width: 80px; height: 60px; border-radius: 8px; overflow: hidden; border: 1px solid var(--border-light); cursor: pointer; transition: border-color .2s; flex-shrink: 0; }
.product-thumb:hover, .product-thumb.active { border-color: var(--purple); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Sticky Buy Box */
.buy-box { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 32px; position: sticky; top: 88px; }
.buy-box-price { font-size: 2.2rem; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.buy-box-price-note { font-size: .85rem; color: var(--text-muted); margin-bottom: 24px; }
.buy-box-features { list-style: none; margin-bottom: 28px; }
.buy-box-features li { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border-light); font-size: .9rem; color: var(--text-light); }
.buy-box-features li:last-child { border-bottom: none; }
.buy-box-features li::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; }
.buy-box-divider { height: 1px; background: var(--border-light); margin: 20px 0; }
.buy-box .btn { width: 100%; justify-content: center; margin-bottom: 12px; }
.buy-box-paypal { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .85rem; color: var(--text-muted); margin-top: 8px; }
.buy-box-secure { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: .8rem; color: var(--text-muted); margin-top: 12px; }

/* Product Info Tabs */
.product-tabs { margin-top: 56px; }
.tab-nav { display: flex; gap: 0; border-bottom: 1px solid var(--border-light); margin-bottom: 36px; }
.tab-btn { padding: 12px 24px; background: transparent; border: none; border-bottom: 2px solid transparent; color: var(--text-muted); font-size: .95rem; font-weight: 500; cursor: pointer; font-family: inherit; transition: all .2s; margin-bottom: -1px; }
.tab-btn.active { color: var(--purple); border-bottom-color: var(--purple); }
.tab-btn:hover { color: var(--text); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel h3 { color: var(--white); margin-bottom: 16px; }
.tab-h3 { font-size: 1.25rem; font-weight: 600; color: var(--white); margin-bottom: 16px; }
.tab-h4 { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border-light); }
.tab-panel p { margin-bottom: 16px; }
.lv-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 10px; }
.lv-list li { display: flex; align-items: flex-start; gap: 10px; padding: 12px 16px; background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 8px; font-size: .9rem; color: var(--text-light); }
.lv-list li::before { content: '📄'; flex-shrink: 0; font-size: 1rem; }
.lv-section { margin-bottom: 32px; }
.lv-section h4 { color: var(--white); margin-bottom: 12px; font-size: 1rem; padding-bottom: 8px; border-bottom: 1px solid var(--border-light); }
.lv-section p { color: var(--text-secondary); line-height: 1.75; font-size: .95rem; margin: 0 0 14px; }
.lv-section p a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.lv-sources { margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--border-light); }
.lv-sources-label { font-size: .72rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: .07em; margin: 0 0 10px; }
.lv-sources ol { font-size: .78rem; color: var(--text-muted); line-height: 1.65; padding-left: 18px; margin: 0; }
.lv-sources ol li { margin-bottom: 5px; }
.lv-sources ol a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--border-light); }
.spec-table td { padding: 12px 16px; font-size: .9rem; }
.spec-table td:first-child { color: var(--text-muted); width: 40%; }
.spec-table td:last-child { color: var(--text); font-weight: 500; }

/* ── Checkout ── */
.checkout-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.checkout-form-card { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 40px; }
.checkout-form-card h2 { color: var(--white); margin-bottom: 28px; font-size: 1.5rem; }
.checkout-summary { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 28px; position: sticky; top: 88px; }
.checkout-summary h3 { color: var(--white); margin-bottom: 20px; }
.summary-product { display: flex; align-items: center; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid var(--border-light); margin-bottom: 20px; }
.summary-product-img { width: 64px; height: 48px; border-radius: 8px; background: var(--bg-secondary); overflow: hidden; flex-shrink: 0; }
.summary-product-img img { width: 100%; height: 100%; object-fit: cover; }
.summary-product h4 { color: var(--white); font-size: .95rem; margin-bottom: 4px; }
.summary-line { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: .9rem; }
.summary-line span:first-child { color: var(--text-muted); }
.summary-line span:last-child { color: var(--text); }
.summary-total { display: flex; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--border-light); margin-top: 8px; font-weight: 700; }
.summary-total span:first-child { color: var(--text-light); }
.summary-total span:last-child { color: var(--white); font-size: 1.2rem; }

/* Payment Method Selector */
.payment-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.payment-method { position: relative; }
.payment-method input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.payment-method label { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 20px 16px; background: var(--bg-secondary); border: 2px solid var(--border-light); border-radius: var(--radius); cursor: pointer; transition: all .2s; text-align: center; }
.payment-method label .pm-icon { font-size: 1.8rem; }
.payment-method label .pm-name { font-size: .9rem; font-weight: 600; color: var(--text); }
.payment-method label .pm-info { font-size: .75rem; color: var(--text-muted); }
.payment-method input[type="radio"]:checked + label { border-color: var(--purple); background: rgba(152, 9, 255, 0.08); }
.vorkasse-details { background: rgba(43, 117, 255, 0.06); border: 1px solid rgba(43, 117, 255, 0.2); border-radius: var(--radius); padding: 20px; margin-bottom: 20px; }
.vorkasse-details h4 { color: var(--white); margin-bottom: 12px; font-size: .95rem; }
.bank-row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid rgba(43, 117, 255, 0.1); font-size: .88rem; }
.bank-row:last-child { border-bottom: none; }
.bank-row span:first-child { color: var(--text-muted); }
.bank-row span:last-child { color: var(--text); font-weight: 600; font-family: monospace; }

/* ── Bestellung Bestätigung ── */
.bestaetigung-box { max-width: 640px; margin: 0 auto; text-align: center; padding: 80px 0; }
.check-circle { width: 96px; height: 96px; background: rgba(0, 212, 160, 0.1); border: 2px solid rgba(0, 212, 160, 0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; margin: 0 auto 32px; }
.bestaetigung-box h1 { margin-bottom: 16px; font-size: 2rem; }
.bestaetigung-box > p { max-width: 500px; margin: 0 auto 40px; }
.order-details-card { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 28px; text-align: left; margin-bottom: 32px; }
.order-details-card h3 { color: var(--white); margin-bottom: 16px; }

@media (max-width: 1024px) {
  .product-detail-grid { grid-template-columns: 1fr; }
  .buy-box { position: static; }
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
}
@media (max-width: 640px) {
  .tab-nav { overflow-x: auto; -webkit-overflow-scrolling: touch; flex-wrap: nowrap; }
  .tab-btn { padding: 10px 14px; font-size: .82rem; white-space: nowrap; flex-shrink: 0; }
  .buy-box { padding: 20px; }
  .buy-box-price { font-size: 1.8rem; }
  .lv-section h2 { white-space: normal !important; }
  .features-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 600px) {
  .payment-methods { grid-template-columns: 1fr; }
  .checkout-form-card { padding: 24px; }
}

:root {
  --purple: #9809FF;
  --blue:   #2B75FF;
  --gradient: linear-gradient(135deg, #9809FF 0%, #2B75FF 100%);
  --bg:           #06061a;
  --bg-secondary: #0d0d24;
  --bg-card:      #111130;
  --border:       rgba(152, 9, 255, 0.25);
  --border-light: rgba(152, 9, 255, 0.12);
  --text:         #e8e8f8;
  --text-muted:   #7878a0;
  --text-light:   #a8a8c8;
  --white:        #ffffff;
  --success:      #00d4a0;
  --shadow:       0 8px 32px rgba(152, 9, 255, 0.18);
  --radius:       12px;
  --radius-lg:    20px;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: clip;
}
img, svg { max-width: 100%; display: block; }
.product-main-img img,
.product-main-img svg { width: 100%; height: auto; }
.product-gallery { overflow: hidden; }
a  { color: inherit; }

/* ── Typography ── */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -1px; }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 700; letter-spacing: -0.5px; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--text-light); }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 88px 0; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header p { max-width: 600px; margin: 16px auto 0; font-size: 1.1rem; }

/* ── Navbar ── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  padding: 0 24px;
  background: rgba(6, 6, 26, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-light);
}
.navbar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.navbar-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.navbar-logo img { height: 38px; width: auto; }
.navbar-nav  { display: flex; align-items: center; gap: 4px; list-style: none; }
.navbar-nav a {
  color: var(--text-light); text-decoration: none;
  padding: 8px 16px; border-radius: 8px;
  font-size: 0.95rem; font-weight: 500; transition: all .2s;
}
.navbar-nav a:hover, .navbar-nav a.active {
  color: var(--white); background: rgba(152, 9, 255, 0.1);
}
.navbar-right { display: flex; align-items: center; gap: 12px; }
.hamburger   { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }

/* ── Navbar Dropdown ── */
.nav-drop { position: relative; }
.nav-drop > a::after { content: ' ▾'; font-size: .65rem; opacity: .55; vertical-align: middle; }
.nav-dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--bg-card); border: 1px solid var(--border-light);
  border-radius: 12px; padding: 8px; min-width: 280px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .15s ease .25s, transform .15s ease .25s, visibility 0s linear .4s;
  box-shadow: 0 20px 52px rgba(0,0,0,.55);
  z-index: 200;
}
/* Unsichtbare Brücke über den Spalt zwischen Navbar-Link und Dropdown */
.nav-dropdown::before {
  content: ''; position: absolute;
  top: -14px; left: -16px; right: -16px; height: 16px;
}
.nav-drop:hover .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity .15s ease, transform .15s ease, visibility 0s;
}
.nav-dropdown a {
  display: flex; align-items: flex-start; flex-direction: column; gap: 2px;
  padding: 10px 14px; border-radius: 8px;
  text-decoration: none; transition: all .15s;
  background: transparent;
}
.nav-dropdown a:hover { background: rgba(152,9,255,.1); }
.dd-title { font-size: .9rem; font-weight: 600; color: var(--white); line-height: 1.3; }
.dd-desc  { font-size: .78rem; font-weight: 400; color: var(--text-muted); line-height: 1.3; white-space: nowrap; }
.nav-dropdown a:hover .dd-title { color: #c084fc; }
.nav-dropdown-divider { height: 1px; background: var(--border-light); margin: 6px 0; }

/* Mobile nav overlay */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(6, 6, 26, 0.98); flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.5rem; font-weight: 700; text-decoration: none;
  color: var(--text-light); transition: color .2s;
}
.mobile-nav a:hover { color: var(--white); }
.mobile-nav-close { position: absolute; top: 24px; right: 24px; font-size: 1.8rem; cursor: pointer; color: var(--text-muted); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius);
  font-size: .95rem; font-weight: 600; cursor: pointer;
  transition: all .2s; text-decoration: none; border: none; white-space: nowrap;
  font-family: inherit;
}
.btn-primary {
  background: var(--gradient); color: var(--white);
  box-shadow: 0 4px 20px rgba(152, 9, 255, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(152, 9, 255, 0.45); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover { background: rgba(152, 9, 255, 0.08); border-color: var(--purple); color: var(--white); }
.btn-ghost { background: transparent; color: var(--text-muted); }
.btn-ghost:hover { color: var(--white); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; border-radius: 14px; }
.btn-full { width: 100%; justify-content: center; }

/* ── Hero ── */
.hero {
  padding: 110px 0 88px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -180px; left: 50%;
  transform: translateX(-50%); width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(152, 9, 255, 0.13) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { text-align: center; max-width: 820px; margin: 0 auto; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 18px; background: rgba(152, 9, 255, 0.1);
  border: 1px solid rgba(152, 9, 255, 0.35);
  border-radius: 50px; font-size: .85rem; font-weight: 600;
  color: #c878ff; margin-bottom: 28px; letter-spacing: .3px;
}
.hero-badge::before { content: '●'; color: var(--purple); font-size: 8px; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero h1    { margin-bottom: 24px; }
.hero-sub   { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text-muted); max-width: 640px; margin: 0 auto 44px; }
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 48px;
  margin-top: 72px; padding-top: 52px;
  border-top: 1px solid var(--border-light); flex-wrap: wrap;
}
.stat-value {
  font-size: 2.2rem; font-weight: 800; line-height: 1;
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 4px;
}
.stat-label { font-size: .82rem; color: var(--text-muted); }

/* ── Page Hero (Unterseiten) ── */
.page-hero {
  padding: 80px 0 60px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -100px; left: 50%;
  transform: translateX(-50%); width: 700px; height: 450px;
  background: radial-gradient(ellipse, rgba(43, 117, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { margin-bottom: 16px; position: relative; }
.page-hero p  { font-size: 1.1rem; max-width: 600px; margin: 0 auto; position: relative; }

/* ── Cards ── */
.card {
  background: var(--bg-card); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 32px; transition: all .3s;
}
.card:hover { border-color: var(--border); box-shadow: var(--shadow); transform: translateY(-4px); }
.card-icon {
  width: 52px; height: 52px;
  background: rgba(152, 9, 255, 0.1); border: 1px solid rgba(152, 9, 255, 0.2);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px; color: #a855f7;
}
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

/* ── Product Cards ── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 24px; }

.product-card {
  background: var(--bg-card); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all .3s; display: flex; flex-direction: column;
}
.product-card:hover {
  border-color: rgba(152, 9, 255, 0.4);
  box-shadow: 0 8px 36px rgba(152, 9, 255, 0.18);
  transform: translateY(-5px);
}
.product-card-image {
  height: 200px; background: var(--bg-secondary);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-card-image img { transform: scale(1.05); }
.product-card-image .no-img {
  font-size: 3.5rem;
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}

.product-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px; border-radius: 6px;
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
}
.badge-online { background: rgba(0, 212, 160, 0.15); color: #00d4a0; border: 1px solid rgba(0, 212, 160, 0.3); }
.badge-soon   { background: rgba(152, 9, 255, 0.15); color: #c878ff; border: 1px solid rgba(152, 9, 255, 0.3); }

.beta-badge {
  display: inline-block; font-size: .65rem; font-weight: 700; padding: 1px 7px;
  border-radius: 4px; background: rgba(152,9,255,.15); color: #c878ff;
  border: 1px solid rgba(152,9,255,.3); margin-left: 6px;
  vertical-align: middle; letter-spacing: .04em; text-transform: uppercase;
}

.product-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.product-cat {
  font-size: .73rem; font-weight: 700; color: var(--purple);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px;
}
.product-card-body h3 { color: var(--white); margin-bottom: 10px; font-size: 1.1rem; }
.product-card-body p  { font-size: .9rem; flex: 1; margin-bottom: 20px; }
.product-card-footer  { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-size: 1.4rem; font-weight: 800; color: var(--white); }
.product-price sub { font-size: .8rem; font-weight: 400; color: var(--text-muted); }

/* Filter Tabs */
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-tab {
  padding: 8px 22px; border-radius: 50px;
  border: 1px solid var(--border); background: transparent;
  color: var(--text-muted); font-size: .9rem; font-weight: 500;
  cursor: pointer; transition: all .2s; font-family: inherit;
}
.filter-tab:hover, .filter-tab.active {
  background: var(--gradient); border-color: transparent; color: var(--white);
}

/* ── About Grid ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-text h2 { margin-bottom: 20px; }
.about-text p  { margin-bottom: 16px; }
.about-visual {
  background: linear-gradient(135deg, rgba(152, 9, 255, 0.08) 0%, rgba(43, 117, 255, 0.08) 100%);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  height: 420px; display: flex; align-items: center; justify-content: center;
  font-size: 5rem; position: relative; overflow: hidden;
}
.about-visual::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(152, 9, 255, 0.06) 0%, transparent 70%);
}

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 48px; }
.value-card {
  background: var(--bg-card); border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 28px; text-align: center;
  transition: all .3s;
}
.value-card:hover { border-color: var(--border); transform: translateY(-3px); }
.value-card .icon { font-size: 2.2rem; margin-bottom: 14px; }
.value-card h4    { margin-bottom: 8px; color: var(--white); }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 24px; }
.team-card {
  background: var(--bg-card); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 32px 24px; text-align: center;
  transition: all .3s;
}
.team-card:hover { border-color: var(--border); transform: translateY(-4px); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto 16px;
}
.team-card h4 { color: var(--white); margin-bottom: 4px; }
.team-card p  { font-size: .85rem; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; align-items: start; }
.contact-info h2 { margin-bottom: 12px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px; margin-top: 20px;
  padding: 18px; background: var(--bg-card);
  border: 1px solid var(--border-light); border-radius: var(--radius);
}
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(152, 9, 255, 0.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.contact-item strong { display: block; font-size: .78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 3px; }
.contact-item span   { color: var(--text); font-size: .95rem; }

.contact-form { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 40px; }
.contact-form h3 { color: var(--white); margin-bottom: 28px; font-size: 1.4rem; }
.form-group { margin-bottom: 20px; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-size: .85rem; font-weight: 500; color: var(--text-light); margin-bottom: 7px; }
input, textarea, select {
  width: 100%; padding: 12px 16px;
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text);
  font-size: .95rem; font-family: inherit; outline: none; transition: border-color .2s;
}
input::placeholder, textarea::placeholder { color: var(--text-muted); }
input:focus, textarea:focus, select:focus {
  border-color: var(--purple); box-shadow: 0 0 0 3px rgba(152, 9, 255, 0.12);
}
textarea { height: 140px; resize: vertical; }
select option { background: var(--bg-card); }

/* ── CTA Section ── */
.cta-section {
  padding: 100px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(152, 9, 255, 0.09) 0%, transparent 60%);
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { margin-bottom: 16px; }
.cta-content > p { max-width: 540px; margin: 0 auto 36px; font-size: 1.1rem; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── How it Works ── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.step-item { text-align: center; position: relative; }
.step-num {
  width: 56px; height: 56px; background: var(--gradient); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800; color: white;
  margin: 0 auto 20px; position: relative; z-index: 1;
}
.step-item h4 { color: var(--white); margin-bottom: 8px; }

/* ── Highlight Box ── */
.highlight-box {
  background: linear-gradient(135deg, rgba(152, 9, 255, 0.07) 0%, rgba(43, 117, 255, 0.07) 100%);
  border: 1px solid rgba(152, 9, 255, 0.22); border-radius: var(--radius-lg);
  padding: 56px 48px; text-align: center;
}
.highlight-box blockquote {
  font-size: 1.2rem; font-style: italic; color: var(--text);
  max-width: 720px; margin: 0 auto 20px; line-height: 1.75;
}
.highlight-box cite { color: var(--text-muted); font-size: .9rem; }

/* ── Footer ── */
.footer { background: var(--bg-secondary); border-top: 1px solid var(--border-light); padding: 40px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 28px; }
.footer-brand img { height: 48px; margin-bottom: 10px; }
.footer-brand p   { font-size: .85rem; max-width: 240px; line-height: 1.6; }
.footer-col h5 {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text-muted); margin-bottom: 10px;
}
.footer-col ul     { list-style: none; }
.footer-col ul li  { margin-bottom: 6px; }
.footer-col ul a   { color: var(--text-light); text-decoration: none; font-size: .87rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 20px; border-top: 1px solid var(--border-light);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p  { font-size: .83rem; color: var(--text-muted); }
.footer-legal     { display: flex; gap: 24px; }
.footer-legal a   { font-size: .83rem; color: var(--text-muted); text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: var(--white); }

/* ── Divider ── */
.gradient-divider {
  height: 1px; border: none;
  background: linear-gradient(90deg, transparent, var(--purple), var(--blue), transparent);
  margin: 0;
}

/* ── Misc ── */
.bg-secondary { background: var(--bg-secondary); }
.text-center  { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }

/* Scrollbar */
::-webkit-scrollbar       { width: 7px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(152,9,255,.35); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(152,9,255,.55); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .about-grid    { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid  { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .navbar-nav, .navbar-right .btn-outline { display: none; }
  .hamburger { display: flex; }
  .hero        { padding: 70px 0 56px; }
  .hero-stats  { gap: 28px; }
  .steps-grid::before { display: none; }
  .contact-form { padding: 24px; }
  .highlight-box { padding: 36px 24px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal  { flex-wrap: wrap; justify-content: center; }
}

/* ── Light Navbar Override (for archiv.html / admin.html) ── */
.navbar-light {
  background: #fff !important;
  border-bottom: 1px solid #E2E8F0 !important;
  box-shadow: none !important;
}
.navbar-light .navbar-logo img { filter: none !important; }
.navbar-light .navbar-nav a { color: #1A1F36 !important; }
.navbar-light .navbar-nav a:hover { color: #2B75FF !important; background: rgba(43,117,255,.06) !important; }
.navbar-light .hamburger span { background: #1A1F36 !important; }
