:root {
     --dark: #0d0f12;
     --darker: #080a0c;

     --gold: #c9a84c;
     --gold-light: #e8c87a;
     --gold-dark: #a8832f;

     --accent-notice: #9b1c1c;

     --text: #e8e0d4;
     --muted: #8a8279;
     --border: rgba(201, 168, 76, 0.2);
 }

 *,
 *::before,
 *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 html {
     font-size: clamp(18px, 4.5vw, 19px);
 }

 body {
     background: var(--darker);
     color: var(--text);
     font-family: 'Crimson Pro', Georgia, serif;
     font-size: 1.15rem;
     line-height: 1.7;
     overflow-x: hidden;
 }

 /* ===== HEADER ===== */
 header {
     position: relative;
     min-height: 92vh;
     display: flex;
     align-items: flex-end;
     overflow: hidden;
 }

 header::before {
     content: "";
     position: absolute;
     inset: 0;
     background: linear-gradient(0deg, rgba(8, 10, 12, 0.95) 0%, rgba(8, 10, 12, 0.4) 60%, rgba(8, 10, 12, 0.6) 100%);
     z-index: 1;
 }

 .hero-img {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center;
     filter: grayscale(30%) contrast(1.1);
     opacity: 0.55;
 }

 .hero-content {
     position: relative;
     z-index: 2;
     padding: 4rem 6vw 6rem;
     max-width: 1400px;
 }

 .eyebrow {
     font-family: 'Rajdhani', sans-serif;
     font-weight: 600;
     font-size: 1rem;
     letter-spacing: 0.3em;
     text-transform: uppercase;
     color: var(--gold);
     margin-bottom: 1.2rem;
     display: flex;
     align-items: center;
     gap: 0.8rem;
 }

 .eyebrow::before {
     content: '';
     display: inline-block;
     width: 2rem;
     height: 2px;
     background: var(--gold-dark);
 }

 h1 {
     font-family: 'Bebas Neue', sans-serif;
     font-size: clamp(4rem, 8vw, 8.5rem);
     line-height: 0.95;
     letter-spacing: 0.02em;
     color: #fff;
     margin-bottom: 0.4rem;
 }

 h1 span {
     color: var(--gold);
 }

 .hero-sub {
     font-family: 'Rajdhani', sans-serif;
     font-size: clamp(1.1rem, 1.4vw, 1.6rem);
     font-weight: 400;
     color: var(--muted);
     margin-top: 1rem;
     letter-spacing: 0.05em;
 }

 /* ===== DIVIDER ===== */
 .divider {
     display: flex;
     align-items: center;
     gap: 1.2rem;
     margin: 3.5rem 0 2.5rem;
 }

 .divider-line {
     flex: 1;
     height: 1px;
     background: var(--border);
 }

 .divider-icon {
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     color: var(--gold);
 }

 .divider-icon svg {
     width: 28px;
     height: 28px;
 }

 /* ===== MAIN ===== */
 main {
     max-width: 1100px;
     margin: 0 auto;
     padding: 5rem 6vw 8rem;
 }

 .intro-block {
     border-left: 3px solid var(--gold-dark);
     padding-left: 2rem;
     margin-bottom: 3.5rem;
     animation: fadeUp 0.7s ease both;
 }

 .intro-block p {
     color: #ccc5bb;
     margin-bottom: 1rem;
     font-size: 1.2rem;
 }

 /* ===== LEISTUNGEN ===== */
 .section-label {
     font-family: 'Rajdhani', sans-serif;
     font-weight: 700;
     font-size: 0.95rem;
     letter-spacing: 0.35em;
     text-transform: uppercase;
     color: var(--gold);
     margin-bottom: 1.5rem;
     display: flex;
     align-items: center;
     gap: 0.8rem;
 }

 .section-label::before {
     content: '';
     width: 1.5rem;
     height: 2px;
     background: var(--gold);
 }

 h2 {
     font-family: 'Bebas Neue', sans-serif;
     font-size: clamp(2.2rem, 4vw, 3.8rem);
     letter-spacing: 0.04em;
     color: #fff;
     margin-bottom: 2.5rem;
     line-height: 1.05;
 }

 .services-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 1px;
     background: var(--border);
     border: 1px solid var(--border);
     margin-bottom: 4rem;
 }

 .service-item {
     background: var(--dark);
     padding: 1.4rem 1.8rem;
     font-family: 'Rajdhani', sans-serif;
     font-size: 1.15rem;
     font-weight: 600;
     letter-spacing: 0.04em;
     display: flex;
     align-items: flex-start;
     gap: 0.9rem;
     transition: background 0.25s;
     line-height: 1.35;
 }

 .service-item:hover {
     background: rgba(201, 168, 76, 0.08);
     transform: translateY(-3px);
 }

 .service-item::before {
     content: '▸';
     color: var(--gold);
     flex-shrink: 0;
     margin-top: 0.08rem;
 }

 .notice-box {
     background: rgba(155, 28, 28, 0.15);
     border: 1px solid rgba(155, 28, 28, 0.4);
     border-left: 4px solid var(--accent-notice);
     padding: 1rem 1.5rem;
     font-family: 'Rajdhani', sans-serif;
     font-weight: 600;
     font-size: 1.1rem;
     letter-spacing: 0.04em;
     color: #e8a0a0;
     margin-bottom: 4rem;
 }

 /* ===== ZULASSUNGEN ===== */
 .zulassungen {
     background: var(--dark);
     border: 1px solid var(--border);
     padding: 2.5rem;
     margin-bottom: 4rem;
     position: relative;
 }

 .zulassungen::before {
     content: 'ZULASSUNGEN';
     position: absolute;
     top: -0.6rem;
     left: 2rem;
     background: var(--darker);
     padding: 0 0.8rem;
     font-family: 'Rajdhani', sans-serif;
     font-size: 0.7rem;
     font-weight: 700;
     letter-spacing: 0.3em;
     color: var(--gold);
 }

 .zulassung-item {
     padding: 1.2rem 0;
     border-bottom: 1px solid var(--border);
 }

 .zulassung-item:last-child {
     border-bottom: none;
     padding-bottom: 0;
 }

 .zulassung-item:first-child {
     padding-top: 0;
 }

 .zulassung-ref {
     font-family: 'Rajdhani', sans-serif;
     font-size: 1rem;
     font-weight: 700;
     letter-spacing: 0.2em;
     color: var(--gold);
     margin-bottom: 0.3rem;
 }

 .zulassung-item p {
     font-size: 1.1rem;
     color: #b8b0a6;
     line-height: 1.5;
 }

 /* ===== FORMULAR ===== */
 .download-section {
     text-align: center;
     padding: 3.5rem;
     background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(155, 28, 28, 0.08));
     border: 1px solid var(--border);
     margin-bottom: 4rem;
 }

 .download-icon {
     font-size: 3.5rem;
     display: block;
     margin-bottom: 1rem;
     opacity: 0.8;
 }

 .download-section h3 {
     font-family: 'Bebas Neue', sans-serif;
     font-size: 2.4rem;
     letter-spacing: 0.08em;
     margin-bottom: 0.5rem;
 }

 .download-section p {
     color: var(--muted);
     font-size: 1.1rem;
     margin-bottom: 2rem;
 }

 .btn-download {
     display: inline-flex;
     align-items: center;
     gap: 0.7rem;
     background: var(--gold);
     color: var(--darker);
     font-family: 'Rajdhani', sans-serif;
     font-weight: 700;
     font-size: 1.1rem;
     letter-spacing: 0.2em;
     text-transform: uppercase;
     text-decoration: none;
     padding: 1.1rem 2.8rem;
     transition: background 0.2s, transform 0.15s;
 }

 .btn-download:hover {
     background: var(--gold-light);
     transform: translateY(-2px);
 }

 .btn-download svg {
     width: 18px;
     height: 18px;
 }

 .btn-download:focus {
     outline: 3px solid var(--gold-light);
     outline-offset: 4px;
 }

 /* ===== FOOTER ===== */
 footer {
     border-top: 1px solid var(--border);
     padding: 2rem 5vw;
     font-family: 'Rajdhani', sans-serif;
     font-size: 1rem;
     letter-spacing: 0.08em;
     color: var(--muted);
 }

 .footer-container {
     display: flex;
     justify-content: space-between;
     align-items: center;
     max-width: 1100px;
     margin: 0 auto;
 }

 .footer-left a:not(.footer-link) {
     color: var(--muted);
     text-decoration: none;
     margin-right: 0.5rem;
     transition: color 0.2s;
 }

 .footer-left a:not(.footer-link):hover {
     color: var(--gold);
 }

 .footer-right a {
     color: var(--muted);
     text-decoration: none;
     margin-right: 0.5rem;
     transition: color 0.2s;
 }

 .footer-right a:hover {
     color: var(--gold);
 }

 .footer-link {
     background: none;
     border: none;
     border-bottom: 1px solid transparent;
     color: var(--muted);
     cursor: pointer;
     font-family: 'Rajdhani', sans-serif;
     font-size: 1rem;
     transition: color 0.2s, border-color 0.2s;
     text-decoration: none;
     letter-spacing: 0.05em;
 }

 .footer-link:hover {
     color: var(--gold);
     border-bottom-color: var(--gold);
 }

 .footer-email {
     color: inherit;
     text-decoration: underline;
 }

 .footer-email:hover {
     color: inherit;
     opacity: 0.75;
 }

 /* ===== MODAL ===== */
 .modal-overlay {
     position: fixed;
     inset: 0;
     background: rgba(0, 0, 0, 0.7);
     display: none;
     justify-content: center;
     align-items: center;
     z-index: 9999;
 }

 .modal {
     background: var(--dark);
     color: var(--text);
     padding: 4rem;
     max-width: 1200px;
     border-radius: 8px;
     position: relative;
     max-height: 90vh;
     overflow-y: auto;
 }

 .modal-close {
     position: absolute;
     top: 1rem;
     right: 1rem;
     background: none;
     border: none;
     color: var(--gold);
     font-size: 1.5rem;
     cursor: pointer;
 }

 @keyframes fadeUp {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @media (max-width: 900px) {
     h1 {
         font-size: clamp(3rem, 10vw, 6rem);
     }

     h2 {
         font-size: clamp(2rem, 6vw, 3rem);
     }

     main {
         padding: 3rem 5vw 5rem;
     }
 }

 @media (max-width: 768px) {

     header {
         min-height: 75vh;
         align-items: flex-end;
     }

     .hero-content {
         padding: 2.5rem 5vw 4rem;
     }

     h1 {
         font-size: clamp(3.2rem, 13vw, 5rem);
         line-height: 1;
     }

     h2 {
         font-size: clamp(2rem, 8vw, 2.8rem);
         margin-bottom: 1.8rem;
     }

     .eyebrow {
         font-size: 1rem;
         letter-spacing: 0.15em;
     }

     .hero-sub {
         font-size: 1.2rem;
         letter-spacing: 0.03em;
         line-height: 1.6;
     }

     body {
         font-size: 1.15rem;
         line-height: 1.8;
     }

     .intro-block {
         padding-left: 1.2rem;
         margin-bottom: 2.5rem;
     }

     .intro-block p {
         font-size: 1.2rem;
     }

     .section-label {
         font-size: 1rem;
         letter-spacing: 0.2em;
         margin-bottom: 1.2rem;
     }

     .services-grid {
         grid-template-columns: 1fr;
     }

     .service-item {
         font-size: 1.2rem;
         padding: 1.2rem 1.4rem;
     }

     .notice-box {
         font-size: 1.1rem;
         padding: 0.9rem 1.2rem;
         margin-bottom: 2.5rem;
     }

     .zulassungen {
         padding: 2rem 1.4rem 1.6rem;
         margin-bottom: 2.5rem;
     }

     .zulassung-ref {
         font-size: 1.1rem;
         letter-spacing: 0.1em;
     }

     .zulassung-item p {
         font-size: 1.15rem;
     }

     .download-section {
         padding: 2.2rem 1.4rem;
         margin-bottom: 2.5rem;
     }

     .download-section h3 {
         font-size: 2.1rem;
     }

     .download-section p {
         font-size: 1.15rem;
     }

     .btn-download {
         font-size: 1.1rem;
         padding: 1rem 2rem;
         letter-spacing: 0.1em;
         width: 100%;
         justify-content: center;
     }

     .divider {
         margin: 2.5rem 0 2rem;
     }

     .footer-container {
         flex-direction: column;
         gap: 1rem;
         text-align: center;
     }

     footer {
         font-size: 1.1rem;
         letter-spacing: 0.05em;
     }

     .footer-link {
         font-size: 1.1rem;
     }

     .modal {
         padding: 2.5rem 1.5rem;
         margin: 1rem;
         max-height: 85vh;
     }
 }

 @media (max-width: 400px) {
     html {
         font-size: clamp(17px, 5vw, 18px);
     }

     h1 {
         font-size: clamp(2.8rem, 14vw, 4rem);
     }

     .hero-content {
         padding: 2rem 4.5vw 3.5rem;
     }

     main {
         padding: 2.5rem 4.5vw 4rem;
     }

     footer {
         font-size: 1rem;
     }
 }