*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --gold: #C8A96E; --gold-light: #E2C99A; --gold-dark: #9E7A3F;
    --black: #0A0A0A; --dark: #111111; --dark-2: #1A1A1A; --dark-3: #222222;
    --grey: #888888; --grey-light: #CCCCCC; --white: #FAFAFA;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--black); color: var(--white); font-family: 'Inter', sans-serif; font-weight: 300; line-height: 1.6; overflow-x: hidden; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1.5rem 5%; display: flex; align-items: center; justify-content: space-between; transition: all var(--transition); }
nav.scrolled { background: rgba(10,10,10,0.96); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(200,169,110,0.15); padding: 1rem 5%; }
.nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.nav-logo-mark { width: 42px; height: 42px; border: 1.5px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 500; color: var(--gold); letter-spacing: 0.05em; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 500; color: var(--white); letter-spacing: 0.15em; text-transform: uppercase; line-height: 1.1; }
.nav-logo-sub { font-size: 0.6rem; color: var(--gold); letter-spacing: 0.25em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a { color: var(--grey-light); text-decoration: none; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; transition: color var(--transition); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width var(--transition); }
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: transparent; border: 1px solid var(--gold); color: var(--gold) !important; padding: 0.6rem 1.5rem; font-size: 0.7rem !important; letter-spacing: 0.2em; transition: all var(--transition) !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--black) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.nav-hamburger span { display: block; width: 25px; height: 1.5px; background: var(--white); transition: all var(--transition); }

/* MOBILE MENU */
.mobile-menu { position: fixed; inset: 0; background: rgba(10,10,10,0.98); backdrop-filter: blur(20px); z-index: 999; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; opacity: 0; pointer-events: none; transition: opacity var(--transition); }
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: var(--white); text-decoration: none; letter-spacing: 0.05em; transition: color var(--transition); }
.mobile-menu a:hover { color: var(--gold); }

/* HERO */
.hero { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #0A0A0A 0%, #0F0F0F 30%, #141414 60%, #0A0A0A 100%); }
.hero-bg-pattern { position: absolute; inset: 0; background-image: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(200,169,110,0.06) 0%, transparent 70%), radial-gradient(ellipse 40% 40% at 20% 80%, rgba(200,169,110,0.04) 0%, transparent 60%); }
.hero-lines { position: absolute; inset: 0; overflow: hidden; }
.hero-lines::before { content: ''; position: absolute; top: 0; right: 20%; width: 1px; height: 100%; background: linear-gradient(to bottom, transparent, rgba(200,169,110,0.2), transparent); }
.hero-lines::after { content: ''; position: absolute; top: 0; left: 30%; width: 1px; height: 100%; background: linear-gradient(to bottom, transparent, rgba(200,169,110,0.08), transparent); }
.hero-content { position: relative; z-index: 2; padding: 0 5%; max-width: 900px; }
.hero-eyebrow { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; opacity: 0; animation: fadeUp 1s 0.3s forwards; }
.hero-eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
.hero-eyebrow-text { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-weight: 400; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 7vw, 6rem); font-weight: 300; line-height: 1.05; margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 1s 0.5s forwards; }
.hero-title strong { font-weight: 500; color: var(--gold); }
.hero-subtitle { font-size: clamp(0.9rem, 1.5vw, 1.05rem); color: var(--grey); max-width: 520px; line-height: 1.8; margin-bottom: 3rem; opacity: 0; animation: fadeUp 1s 0.7s forwards; }
.hero-actions { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; opacity: 0; animation: fadeUp 1s 0.9s forwards; }
.btn-primary { background: var(--gold); color: var(--black); padding: 1rem 2.5rem; text-decoration: none; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; transition: all var(--transition); position: relative; overflow: hidden; }
.btn-primary::before { content: ''; position: absolute; inset: 0; background: var(--gold-light); transform: translateX(-100%); transition: transform var(--transition); }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }
.btn-secondary { color: var(--grey-light); text-decoration: none; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; display: flex; align-items: center; gap: 0.75rem; transition: color var(--transition); }
.btn-secondary::before { content: ''; width: 24px; height: 1px; background: var(--grey); transition: all var(--transition); }
.btn-secondary:hover { color: var(--gold); }
.btn-secondary:hover::before { background: var(--gold); width: 36px; }
.hero-scroll { position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; opacity: 0; animation: fadeIn 1s 1.5s forwards; }
.hero-scroll-text { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--grey); }
.hero-scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease-in-out infinite; }
.hero-counter { position: absolute; right: 5%; bottom: 3rem; display: flex; flex-direction: column; gap: 1.5rem; opacity: 0; animation: fadeIn 1s 1.2s forwards; }
.hero-stat { text-align: right; }
.hero-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: var(--gold); line-height: 1; }
.hero-stat-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey); margin-top: 0.25rem; }

/* MARQUEE */
.marquee-section { border-top: 1px solid rgba(200,169,110,0.15); border-bottom: 1px solid rgba(200,169,110,0.15); background: var(--dark-2); padding: 1.25rem 0; overflow: hidden; }
.marquee-track { display: flex; gap: 4rem; animation: marquee 30s linear infinite; white-space: nowrap; }
.marquee-item { display: flex; align-items: center; gap: 1.5rem; font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--grey); flex-shrink: 0; }
.marquee-dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }

/* SECTIONS */
section { padding: 8rem 5%; }
.section-label { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.section-label-line { width: 30px; height: 1px; background: var(--gold); }
.section-label-text { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 300; line-height: 1.1; }

/* ABOUT */
.about { background: var(--dark); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-left .section-title { margin-bottom: 2rem; }
.about-left p { color: var(--grey); line-height: 1.9; margin-bottom: 1.5rem; font-size: 0.95rem; }
.about-left p strong { color: var(--white); font-weight: 400; }
.about-highlight { border-left: 2px solid var(--gold); padding-left: 1.5rem; margin: 2rem 0; }
.about-highlight p { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 300; color: var(--white) !important; font-style: italic; line-height: 1.5; }
.about-visual { position: relative; padding: 3rem; }
.about-visual-bg { position: absolute; inset: 0; border: 1px solid rgba(200,169,110,0.2); }
.about-visual-bg::before { content: ''; position: absolute; top: -15px; left: -15px; right: 15px; bottom: 15px; border: 1px solid rgba(200,169,110,0.08); }
.about-stats { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.about-stat { text-align: center; padding: 2rem; border: 1px solid rgba(255,255,255,0.05); transition: border-color var(--transition); }
.about-stat:hover { border-color: rgba(200,169,110,0.3); }
.about-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: var(--gold); display: block; line-height: 1; }
.about-stat-label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--grey); margin-top: 0.5rem; }
.about-certifications { position: relative; margin-top: 2rem; padding: 1.5rem; background: rgba(200,169,110,0.05); border: 1px solid rgba(200,169,110,0.15); }
.about-certifications p { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.cert-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cert-badge { padding: 0.3rem 0.75rem; border: 1px solid rgba(200,169,110,0.3); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--grey-light); }

/* SERVICES */
.services { background: var(--black); }
.services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 5rem; }
.services-header p { color: var(--grey); font-size: 0.95rem; line-height: 1.9; align-self: end; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(200,169,110,0.1); }
.service-card { background: var(--dark); padding: 3rem 2.5rem; position: relative; overflow: hidden; transition: all var(--transition); cursor: default; }
.service-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform var(--transition); }
.service-card:hover { background: var(--dark-2); }
.service-card:hover::before { transform: scaleX(1); }
.service-num { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 300; color: rgba(200,169,110,0.15); line-height: 1; margin-bottom: 1.5rem; transition: color var(--transition); }
.service-card:hover .service-num { color: rgba(200,169,110,0.3); }
.service-icon { width: 48px; height: 48px; margin-bottom: 1.5rem; color: var(--gold); }
.service-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; margin-bottom: 1rem; color: var(--white); }
.service-desc { font-size: 0.85rem; color: var(--grey); line-height: 1.8; }
.service-arrow { display: flex; align-items: center; gap: 0.5rem; margin-top: 2rem; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); opacity: 0; transform: translateY(8px); transition: all var(--transition); }
.service-card:hover .service-arrow { opacity: 1; transform: translateY(0); }

/* WHY */
.why { background: var(--dark-2); position: relative; overflow: hidden; }
.why::before { content: ''; position: absolute; top: -30%; right: -10%; width: 60%; height: 120%; background: radial-gradient(ellipse, rgba(200,169,110,0.04) 0%, transparent 70%); pointer-events: none; }
.why-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 8rem; align-items: start; }
.why-left .section-title { margin-bottom: 2rem; }
.why-left p { color: var(--grey); line-height: 1.9; font-size: 0.95rem; }
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.why-feature { position: relative; padding-top: 2rem; }
.why-feature::before { content: ''; position: absolute; top: 0; left: 0; width: 40px; height: 1px; background: var(--gold); }
.why-feature-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; margin-bottom: 0.75rem; color: var(--white); }
.why-feature-desc { font-size: 0.85rem; color: var(--grey); line-height: 1.8; }

/* PROCESS */
.process { background: var(--black); }
.process-header { text-align: center; margin-bottom: 5rem; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 2.5rem; left: 12.5%; right: 12.5%; height: 1px; background: rgba(200,169,110,0.2); }
.process-step { padding: 0 2rem; text-align: center; position: relative; }
.process-step-dot { width: 5rem; height: 5rem; border: 1px solid rgba(200,169,110,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; color: var(--gold); background: var(--black); transition: all var(--transition); }
.process-step:hover .process-step-dot { background: rgba(200,169,110,0.1); border-color: var(--gold); }
.process-step-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; margin-bottom: 1rem; color: var(--white); }
.process-step-desc { font-size: 0.8rem; color: var(--grey); line-height: 1.8; }

/* SECTORS */
.sectors { background: var(--dark); }
.sectors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(200,169,110,0.1); margin-top: 4rem; }
.sector-item { background: var(--dark); padding: 2.5rem; display: flex; align-items: center; gap: 1.5rem; transition: background var(--transition); }
.sector-item:hover { background: var(--dark-2); }
.sector-icon-wrap { width: 48px; height: 48px; border: 1px solid rgba(200,169,110,0.3); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.sector-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 400; color: var(--white); }
.sector-sub { font-size: 0.75rem; color: var(--grey); margin-top: 0.25rem; }

/* CONTACT */
.contact { background: var(--black); position: relative; overflow: hidden; }
.contact::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 80% at 30% 50%, rgba(200,169,110,0.04) 0%, transparent 70%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8rem; align-items: start; }
.contact-left .section-title { margin-bottom: 1.5rem; }
.contact-left p { color: var(--grey); line-height: 1.9; font-size: 0.95rem; margin-bottom: 3rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1.25rem; }
.contact-item-icon { width: 42px; height: 42px; border: 1px solid rgba(200,169,110,0.3); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.contact-item-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey); margin-bottom: 0.35rem; }
.contact-item-value { color: var(--white); font-size: 0.95rem; text-decoration: none; transition: color var(--transition); }
.contact-item-value:hover { color: var(--gold); }
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey); margin-bottom: 0.6rem; }
.form-input, .form-textarea, .form-select { width: 100%; background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 0.75rem 0; color: var(--white); font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 300; outline: none; transition: border-color var(--transition); appearance: none; }
.form-select option { background: var(--dark); color: var(--white); }
.form-input:focus, .form-textarea:focus, .form-select:focus { border-bottom-color: var(--gold); }
.form-textarea { resize: none; height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-submit { width: 100%; background: var(--gold); color: var(--black); border: none; padding: 1.1rem 2rem; font-family: 'Inter', sans-serif; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; cursor: pointer; transition: all var(--transition); margin-top: 0.5rem; }
.form-submit:hover { background: var(--gold-light); }
.form-note { font-size: 0.7rem; color: var(--grey); margin-top: 1rem; line-height: 1.6; }

/* IMPRESSUM */
.impressum { background: var(--dark); padding: 6rem 5%; }
.impressum-title { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; margin-bottom: 3rem; }
.impressum-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.impressum-block { margin-bottom: 2.5rem; }
.impressum-block h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 400; color: var(--gold); margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(200,169,110,0.2); }
.impressum-block p, .impressum-block a { color: var(--grey); font-size: 0.9rem; line-height: 1.8; text-decoration: none; }
.impressum-block a:hover { color: var(--gold); }

/* DATENSCHUTZ */
.datenschutz { background: var(--black); padding: 6rem 5%; display: none; }
.datenschutz h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; margin: 2.5rem 0 1rem; color: var(--white); }
.datenschutz h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; margin: 1.5rem 0 0.75rem; color: var(--gold-light); }
.datenschutz p, .datenschutz li { color: var(--grey); font-size: 0.9rem; line-height: 1.9; margin-bottom: 0.75rem; }

/* FOOTER */
footer { background: var(--dark-2); border-top: 1px solid rgba(200,169,110,0.15); }
.footer-main { padding: 5rem 5%; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 4rem; }
.footer-brand .nav-logo-name { font-size: 1.3rem; margin-bottom: 0.5rem; }
.footer-brand p { color: var(--grey); font-size: 0.85rem; line-height: 1.8; margin-top: 1.5rem; max-width: 280px; }
.footer-col-title { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { color: var(--grey); text-decoration: none; font-size: 0.85rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-contact-item { display: flex; flex-direction: column; gap: 0.2rem; margin-bottom: 1rem; }
.footer-contact-label { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey); }
.footer-contact-value { color: var(--grey-light); font-size: 0.85rem; text-decoration: none; transition: color var(--transition); }
.footer-contact-value:hover { color: var(--gold); }
.footer-bottom { padding: 1.5rem 5%; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: var(--grey); font-size: 0.75rem; }
.footer-bottom-links { display: flex; gap: 2rem; list-style: none; }
.footer-bottom-links a { color: var(--grey); text-decoration: none; font-size: 0.75rem; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* BACK TO TOP / TOAST */
.back-to-top { position: fixed; bottom: 2rem; right: 2rem; width: 44px; height: 44px; border: 1px solid rgba(200,169,110,0.3); background: var(--dark-2); color: var(--gold); cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: all var(--transition); z-index: 998; }
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: rgba(200,169,110,0.1); border-color: var(--gold); }
.toast { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--dark-2); border: 1px solid rgba(200,169,110,0.3); color: var(--white); padding: 1rem 1.5rem; font-size: 0.85rem; z-index: 9999; opacity: 0; transition: all var(--transition); display: flex; align-items: center; gap: 0.75rem; white-space: nowrap; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* SCROLL ANCHOR OFFSET */
#leistungen, #ueber-uns, #branchen, #kontakt, #impressum { scroll-margin-top: 80px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-steps::before { display: none; }
    .sectors-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    section { padding: 5rem 5%; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .services-grid, .services-header { grid-template-columns: 1fr; }
    .services-header { gap: 2rem; }
    .why-features { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .sectors-grid { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr; gap: 2rem; }
    .impressum-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-counter { display: none; }
    .footer-bottom { flex-direction: column; text-align: center; }
}