/* =============================================
   FONTS – Lokal eingebunden (Source Sans 3 + Playfair Display)
============================================= */
@font-face { font-family: 'Playfair Display'; src: url('fonts/playfair-display-regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Playfair Display'; src: url('fonts/playfair-display-500.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Playfair Display'; src: url('fonts/playfair-display-600.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Playfair Display'; src: url('fonts/playfair-display-700.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Source Sans 3'; src: url('fonts/source-sans-3-300.woff2') format('woff2'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Source Sans 3'; src: url('fonts/source-sans-3-regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Source Sans 3'; src: url('fonts/source-sans-3-500.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Source Sans 3'; src: url('fonts/source-sans-3-600.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }

/* =============================================
   DESIGN TOKENS
============================================= */
:root {
    --green: #005235;
    --green-light: #006d47;
    --green-pale: #e8f5ee;
    --green-accent: #7fd4b0;
    --tuerkis: #002D2D;
    --dunkelblau: #161025;
    --black: #0a0a0a;
    --white: #ffffff;
    --off-white: #f7f7f5;
    --gray-100: #f2f2f0;
    --gray-200: #e5e5e3;
    --gray-300: #d0d0ce;
    --gray-400: #a0a09e;
    --gray-500: #6e6e6c;
    --gray-600: #484846;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --nav-height: 90px;
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: var(--black); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 60px); }

/* =============================================
   COOKIE BANNER
============================================= */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: var(--dunkelblau); color: var(--white); padding: 24px 0; transform: translateY(100%); transition: transform 0.5s var(--ease-out); }
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cookie-banner p { font-size: 14px; opacity: 0.85; flex: 1; min-width: 260px; color: var(--white); }
.cookie-banner a { color: var(--green-accent); text-decoration: underline; }
.cookie-btns { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn { padding: 10px 22px; border-radius: 6px; font-size: 14px; font-weight: 500; transition: all 0.3s; }
.cookie-btn--accept { background: var(--green); color: var(--white); }
.cookie-btn--accept:hover { background: var(--green-light); }
.cookie-btn--reject { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.cookie-btn--reject:hover { border-color: var(--white); }

/* =============================================
   NAVIGATION
============================================= */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nav-height); display: flex; align-items: center; transition: all 0.4s var(--ease-out); background: transparent; }
.nav.scrolled { background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 1px 0 var(--gray-200); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }

/* Logo als Bild */
.logo { display: flex; align-items: center; gap: 14px; padding: 10px 0; }
.logo__icon { height: 60px; width: auto; transition: filter 0.3s; flex-shrink: 0; }
.logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.logo__name { font-family: var(--font-body); font-weight: 700; font-size: 17px; letter-spacing: -0.02em; color: var(--green); transition: color 0.3s; }
.logo__sub { font-family: var(--font-body); font-weight: 400; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-500); transition: color 0.3s; }
/* Auf dunklem Hero: Logo + Text weiß */
.nav:not(.scrolled) .logo__icon { filter: brightness(0) invert(1); }
.nav:not(.scrolled) .logo__name { color: var(--white); }
.nav:not(.scrolled) .logo__sub { color: rgba(255,255,255,0.6); }
/* Auf hellem Hintergrund: Logo original (dunkelgrün) */
.nav.scrolled .logo__icon { filter: none; }

/* Footer Logo */
.footer__logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer__logo-icon { height: 70px; width: auto; filter: brightness(0) invert(1); }
.footer__logo-name { font-weight: 700; font-size: 16px; color: var(--white); }

.nav__links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav__link { padding: 8px 18px; font-size: 15px; font-weight: 500; color: var(--gray-600); border-radius: 6px; transition: all 0.25s; }
.nav:not(.scrolled) .nav__link { color: rgba(255,255,255,0.8); }
.nav__link:hover { color: var(--green); background: var(--green-pale); }
.nav:not(.scrolled) .nav__link:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav__cta { display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px; margin-left: 10px; background: var(--green); color: var(--white) !important; font-size: 14px; font-weight: 600; border-radius: 8px; transition: all 0.3s var(--ease-out); }
.nav__cta:hover { background: var(--green-light); transform: translateY(-1px); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; width: 28px; padding: 4px 0; }
.nav__toggle span { display: block; height: 2px; background: var(--black); border-radius: 2px; transition: all 0.3s; }
.nav:not(.scrolled) .nav__toggle span { background: var(--white); }
.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =============================================
   HERO
============================================= */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; background: url('headerbild.jpg') center/cover no-repeat; }
.hero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(22,16,37,0.85) 0%, rgba(0,45,45,0.78) 50%, rgba(0,82,53,0.68) 100%); }
.hero__grid { position: absolute; inset: 0; z-index: 1; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 80px 80px; }
.hero__content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; padding-top: calc(var(--nav-height) + 80px); padding-bottom: 80px; max-width: 820px; margin: 0 auto; }
.hero__text { color: var(--white); }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; background: rgba(0,82,53,0.3); border: 1px solid rgba(0,82,53,0.5); border-radius: 100px; font-size: 13px; font-weight: 500; color: var(--green-accent); margin-bottom: 28px; letter-spacing: 0.04em; }
.hero__badge svg { flex-shrink: 0; }
.hero__title { font-family: var(--font-display); font-size: clamp(36px, 5vw, 66px); font-weight: 600; line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 24px; color: var(--white); }
.hero__title .accent { color: var(--green-accent); }
.hero__desc { font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 40px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 32px; font-size: 15px; font-weight: 600; border-radius: 10px; transition: all 0.35s var(--ease-out); }
.btn--primary { background: var(--green); color: var(--white); box-shadow: 0 4px 20px rgba(0,82,53,0.3); }
.btn--primary:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,82,53,0.4); }
.btn--outline { border: 1.5px solid rgba(255,255,255,0.3); color: var(--white); }
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }



/* =============================================
   SECTIONS SHARED
============================================= */
section { padding: 120px 0; }
.section-label { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green); margin-bottom: 16px; }
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--green); border-radius: 2px; }
.section-title { font-family: var(--font-display); font-size: clamp(30px, 3.5vw, 48px); font-weight: 600; line-height: 1.15; letter-spacing: -0.02em; color: var(--black); margin-bottom: 20px; }
.section-desc { font-size: 17px; color: var(--gray-500); line-height: 1.7; max-width: 560px; }

/* =============================================
   SERVICES
============================================= */
.services { background: var(--off-white); }
.services__header { text-align: center; margin-bottom: 64px; }
.services__header .section-desc { margin: 0 auto; }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--white); border-radius: 16px; padding: 36px 32px; border: 1px solid var(--gray-200); transition: all 0.4s var(--ease-out); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease-out); }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.06); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon { width: 64px; height: 64px; margin-bottom: 24px; }
.service-card__icon svg { width: 100%; height: 100%; }
.service-card__title { font-family: var(--font-display); font-size: 21px; font-weight: 600; margin-bottom: 12px; color: var(--black); }
.service-card__text { font-size: 15px; color: var(--gray-500); line-height: 1.65; }
.service-card__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; font-size: 14px; font-weight: 600; color: var(--green); transition: gap 0.3s; }
.service-card__link:hover { gap: 10px; }

/* =============================================
   ABOUT
============================================= */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about__image-wrap { position: relative; }
.about__image { width: 100%; aspect-ratio: 4/5; border-radius: 20px; overflow: hidden; background: var(--gray-100); position: relative; }
.about__image img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.about__image-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--tuerkis), var(--dunkelblau)); color: rgba(255,255,255,0.3); font-size: 14px; }
.about__image-accent { position: absolute; bottom: -16px; right: -16px; width: 200px; height: 200px; border: 2px solid var(--green); border-radius: 20px; z-index: -1; }
.about__qual-card { position: absolute; bottom: 24px; left: 24px; right: 24px; background: rgba(255,255,255,0.95); backdrop-filter: blur(16px); border-radius: 14px; padding: 18px 22px; display: flex; align-items: center; gap: 14px; box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.about__qual-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--green-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.about__qual-icon svg { width: 22px; height: 22px; color: var(--green); }
.about__qual-title { font-size: 15px; font-weight: 600; color: var(--black); }
.about__qual-sub { font-size: 12px; color: var(--gray-400); }
.about__qualifications { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.about__qual { padding: 8px 16px; background: var(--green-pale); color: var(--green); font-size: 13px; font-weight: 500; border-radius: 100px; }
.about__text { font-size: 16px; color: var(--gray-500); margin-top: 20px; line-height: 1.75; }

/* =============================================
   VORTEILE
============================================= */
.vorteile { background: var(--white); }
.vorteile__header { margin-bottom: 56px; }
.vorteile__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.vorteil-item { display: flex; gap: 18px; align-items: flex-start; padding: 28px; border-radius: 14px; border: 1px solid var(--gray-200); background: var(--white); transition: all 0.4s var(--ease-out); }
.vorteil-item:hover { border-color: var(--green); background: var(--green-pale); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,82,53,0.06); }
.vorteil-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vorteil-icon svg { width: 24px; height: 24px; color: var(--white); }
.vorteil-title { font-size: 16px; font-weight: 600; color: var(--black); margin-bottom: 4px; }
.vorteil-text { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* =============================================
   EXPERTISE
============================================= */
.expertise { background: var(--dunkelblau); color: var(--white); }
.expertise .section-label { color: var(--green-accent); }
.expertise .section-label::before { background: var(--green-accent); }
.expertise .section-title { color: var(--white); }
.expertise .section-desc { color: rgba(255,255,255,0.6); }
.expertise__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 64px; }
.expertise-item { padding: 32px 28px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; transition: all 0.4s; }
.expertise-item:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.expertise-item__icon { width: 48px; height: 48px; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; border-radius: 12px; background: rgba(127,212,176,0.12); }
.expertise-item__icon svg { width: 24px; height: 24px; color: var(--green-accent); }
.expertise-item__title { font-size: 17px; font-weight: 600; margin-bottom: 10px; color: var(--white); }
.expertise-item__text { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.5); }

/* =============================================
   REGION
============================================= */
.region { background: var(--off-white); }
.region__content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.region__map { background: var(--white); border-radius: 20px; border: 1px solid var(--gray-200); padding: 40px; }
.region__map-visual { width: 100%; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; position: relative; }
.region__map-center { width: 16px; height: 16px; background: var(--green); border-radius: 50%; position: relative; z-index: 2; box-shadow: 0 0 0 6px rgba(0,82,53,0.2); }
.region__map-ring { position: absolute; border: 1.5px dashed var(--gray-300); border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.region__map-ring--1 { width: 40%; height: 40%; }
.region__map-ring--2 { width: 70%; height: 70%; }
.region__map-ring--3 { width: 95%; height: 95%; }
.region__map-label { position: absolute; font-size: 12px; font-weight: 500; color: var(--gray-500); white-space: nowrap; }
.region__list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.region__tag { padding: 8px 18px; background: var(--white); border: 1px solid var(--gray-200); border-radius: 100px; font-size: 14px; color: var(--gray-600); transition: all 0.3s; }
.region__tag:hover { border-color: var(--green); color: var(--green); background: var(--green-pale); }

/* =============================================
   KONTAKT
============================================= */
.contact { background: var(--white); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; }
.contact__info-items { margin-top: 32px; display: flex; flex-direction: column; gap: 24px; }
.contact__info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact__info-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--green-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact__info-icon svg { width: 20px; height: 20px; color: var(--green); }
.contact__info-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-400); font-weight: 500; }
.contact__info-value { font-size: 16px; color: var(--black); font-weight: 500; margin-top: 2px; }
.contact__info-value a { color: var(--black); transition: color 0.3s; }
.contact__info-value a:hover { color: var(--green); }
.contact__form { background: var(--off-white); border-radius: 20px; padding: 40px; }
.contact__form-title { font-family: var(--font-display); font-size: 24px; font-weight: 600; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--gray-600); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-200); border-radius: 10px; font-family: var(--font-body); font-size: 15px; background: var(--white); transition: border-color 0.3s; color: var(--black); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,82,53,0.08); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 15px; background: var(--green); color: var(--white); font-size: 15px; font-weight: 600; border: none; border-radius: 10px; cursor: pointer; transition: all 0.3s; margin-top: 8px; }
.form-submit:hover { background: var(--green-light); transform: translateY(-1px); }
.form-consent { font-size: 13px; color: var(--gray-400); margin-top: 12px; line-height: 1.5; }
.form-consent a { color: var(--green); text-decoration: underline; }

/* =============================================
   FOOTER
============================================= */
.footer { background: var(--tuerkis); color: var(--white); padding: 64px 0 32px; }
.footer__top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer__logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer__desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 300px; }
.footer__heading { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer__links a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color 0.3s; }
.footer__links a:hover { color: var(--white); }
.footer__links li { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; font-size: 13px; color: rgba(255,255,255,0.4); }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { color: rgba(255,255,255,0.4); transition: color 0.3s; }
.footer__legal a:hover { color: var(--white); }

/* =============================================
   MODALS
============================================= */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); z-index: 10000; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.active { display: flex; }
.modal { background: var(--white); border-radius: 20px; padding: 48px; max-width: 680px; width: 100%; max-height: 85vh; overflow-y: auto; position: relative; }
.modal__close { position: absolute; top: 20px; right: 20px; width: 36px; height: 36px; border-radius: 50%; background: var(--gray-100); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--gray-500); transition: all 0.2s; }
.modal__close:hover { background: var(--gray-200); }
.modal h2 { font-family: var(--font-display); font-size: 28px; margin-bottom: 20px; color: var(--black); }
.modal p, .modal li { font-size: 15px; line-height: 1.7; color: var(--gray-500); margin-bottom: 12px; }
.modal h3 { font-size: 18px; font-weight: 600; color: var(--black); margin-top: 24px; margin-bottom: 12px; }

/* =============================================
   STATS / ZAHLEN
============================================= */
.stats { background: var(--green); padding: 80px 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat-item__number { font-family: var(--font-display); font-size: clamp(36px, 4vw, 56px); font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 8px; }
.stat-item__label { font-size: 15px; font-weight: 500; color: rgba(255, 255, 255, 0.7); letter-spacing: 0.02em; }

/* =============================================
   SCROLL REVEAL
============================================= */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-pop { opacity: 0; transform: translateY(20px) scale(0.96); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.reveal-pop.visible { opacity: 1; transform: translateY(0) scale(1); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .expertise__grid { grid-template-columns: repeat(2, 1fr); }
    .about__grid { grid-template-columns: 1fr; gap: 48px; }
    .region__content { grid-template-columns: 1fr; gap: 48px; }
    .contact__grid { grid-template-columns: 1fr; }
    .vorteile__grid { grid-template-columns: 1fr; }
    .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    section { padding: 80px 0; }
    .stats { padding: 60px 0; }
    .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .nav__links { display: none; position: absolute; top: var(--nav-height); left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px; gap: 4px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
    .nav__links.open { display: flex; }
    .nav__links.open .nav__link { color: var(--gray-600) !important; }
    .nav__toggle { display: flex; }
    .nav__cta { margin-left: 0 !important; margin-top: 8px; justify-content: center; }
    .about__image { border-radius: 0; margin-left: -20px; margin-right: -20px; width: calc(100% + 40px); }
    .about__image-accent { display: none; }
    .about__qual-card { left: 16px; right: 16px; bottom: 16px; }
    .services__grid { grid-template-columns: 1fr; }
    .expertise__grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer__top { grid-template-columns: 1fr; gap: 32px; }
    .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 480px) {
    .hero__title { font-size: 32px; }
    .hero__actions { flex-direction: column; width: 100%; }
    .btn { width: 100%; justify-content: center; }
    .stats__grid { grid-template-columns: 1fr; gap: 20px; }
}
