*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary: #1b2838;
    --primary-light: #2d4050;
    --primary-dark: #0f1820;
    --secondary: #48a9a6;
    --secondary-light: #6ec4c1;
    --accent-bg: #e6f7f7;
    --white: #ffffff;
    --light: #f4f8f8;
    --dark: #0d161f;
    --text: #2a3440;
    --text-light: #5a6a78;
    --border: #d0dde0;
    --shadow: 0 4px 20px rgba(27,40,56,0.08);
    --shadow-hover: 0 12px 35px rgba(27,40,56,0.15);
    --radius: 4px;
    --transition: all 0.3s ease;
    --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing scale */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    /* Typography scale */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;

    /* Z-index scale */
    --z-dropdown: 10;
    --z-sticky: 20;
    --z-fixed: 30;
    --z-modal: 40;
    --z-toast: 50;
}

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
    font-family: var(--font);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

a { color: var(--secondary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--secondary-light); }

img { max-width: 100%; height: auto; }

ul { list-style: none; }

h1, h2, h3, h4 { color: var(--primary); line-height: 1.3; font-weight: 700; }
h1 { font-size: 2.5rem; }
h2 { font-size: 1.85rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

/* ── TOP BAR ── */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(72,169,166,0.2);
}

.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 18px; }
.top-bar-item a { color: var(--secondary-light); }
.top-bar-item a:hover { color: var(--white); }

/* ── HEADER ── */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    height: 80px;
    transition: var(--transition);
    border-bottom: 1px solid var(--border);
}

.header.scrolled {
    height: 56px;
    box-shadow: var(--shadow);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
    white-space: nowrap;
}

.header.scrolled .logo { font-size: 1.2rem; }

.logo span {
    font-weight: 400;
    font-size: 0.75em;
    letter-spacing: 0.5px;
    color: var(--secondary);
}

.nav { display: flex; gap: 8px; align-items: center; }

.nav a {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav a:hover, .nav a.active {
    color: var(--secondary);
    background: var(--accent-bg);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

/* ── HERO ── */
.hero {
    background: var(--primary);
    color: var(--white);
    padding: 100px 0 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--secondary);
    opacity: 0.08;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero .container { position: relative; z-index: 2; max-width: 800px; }

.hero-subtitle {
    color: var(--secondary-light);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 {
    color: var(--white);
    font-size: 2.6rem;
    margin-bottom: 20px;
    line-height: 1.25;
}

.hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 640px; margin: 0 auto 32px; }

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(72,169,166,0.15);
    color: var(--secondary-light);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(72,169,166,0.25);
}

/* ── BUTTONS ── */
.btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-family: var(--font);
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.btn-primary:hover {
    background: var(--secondary-light);
    border-color: var(--secondary-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(72,169,166,0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--secondary);
    border-color: var(--secondary);
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--white);
}

.btn-success {
    background: var(--secondary-light);
    border-color: var(--secondary-light);
}

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section-alt { background: var(--light); }
.section-accent { background: var(--accent-bg); }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 50px; }

.section-label {
    display: inline-block;
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--text-light); font-size: 1.05rem; }

/* ── TIMELINE ── */
.timeline { position: relative; max-width: 800px; margin: 0 auto; padding: 20px 0; }

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }

.timeline-content {
    width: 45%;
    background: var(--white);
    border-left: 4px solid var(--secondary);
    padding: 24px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.timeline-content:hover {
    border-left-width: 6px;
    box-shadow: var(--shadow);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--secondary);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--secondary);
    z-index: 2;
}

.timeline-year {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.timeline-content h3 { font-size: 1.1rem; margin-bottom: 6px; }
.timeline-content p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* ── CARDS (flat with left teal border) ── */
.card {
    background: var(--white);
    border-left: 4px solid var(--secondary);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow);
    border-left-width: 6px;
}

/* ── SERVICES GRID (index) ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.service-card {
    background: var(--white);
    border-left: 4px solid var(--secondary);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow);
    border-left-width: 6px;
}

.service-icon {
    width: 52px;
    height: 52px;
    background: var(--accent-bg);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.service-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.service-card p { color: var(--text-light); font-size: 0.93rem; margin-bottom: 18px; }
.service-card .btn { font-size: 0.85rem; padding: 8px 18px; }

/* ── TESTIMONIALS (grid with avatars) ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.testimonial-card {
    background: var(--white);
    border-left: 4px solid var(--secondary);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow);
    border-left-width: 6px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.testimonial-text {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 18px;
}

.testimonial-author { font-weight: 700; color: var(--primary); font-size: 0.9rem; margin-bottom: 2px; }
.testimonial-role { color: var(--text-light); font-size: 0.82rem; }

/* ── FAQ ACCORDION ── */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    text-align: left;
    font-family: var(--font);
    gap: 16px;
    transition: var(--transition);
}

.faq-question:hover { color: var(--secondary); }

.faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--secondary);
    flex-shrink: 0;
    transition: var(--transition);
    line-height: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer-inner {
    padding: 0 0 20px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer { max-height: 400px; }

/* ── CTA SECTION ── */
.cta-section {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--secondary);
    opacity: 0.06;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
}

.cta-section h2 { color: var(--white); margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto 30px; font-size: 1.05rem; }

/* ── PAGE HEADER (subpages) ── */
.page-header {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: var(--secondary);
    opacity: 0.06;
    bottom: -100px;
    right: 10%;
}

.page-header h1 { color: var(--white); font-size: 2.2rem; margin-bottom: 10px; }
.page-header p { color: rgba(255,255,255,0.7); font-size: 1.05rem; }

/* ── LEISTUNGEN (left-aligned with right icon area) ── */
.service-block {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    padding: 60px 0;
}

.service-block:nth-child(even) { background: var(--accent-bg); }

.service-block-wrapper { padding: 60px 0; }
.service-block-wrapper:nth-child(even) { background: var(--accent-bg); }

.service-block-inner {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.service-text { flex: 0 0 65%; }
.service-text h2 { margin-bottom: 14px; }
.service-text > p { color: var(--text-light); margin-bottom: 20px; font-size: 1rem; }
.service-text h3 { color: var(--primary); margin: 24px 0 10px; font-size: 1.1rem; }

.service-list { list-style: none; padding: 0; }
.service-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 0.93rem;
}
.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 2px;
    background: var(--secondary);
}

.service-deco {
    flex: 0 0 35%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.service-deco-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: var(--accent-bg);
    border: 3px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--secondary);
    opacity: 0.8;
}

.service-block-wrapper:nth-child(even) .service-deco-circle {
    background: var(--white);
}

/* ── CONTACT (form right, sidebar left) ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

.contact-sidebar {}

.location-card {
    background: var(--white);
    border-left: 4px solid var(--secondary);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 16px;
    transition: var(--transition);
}

.location-card:hover {
    box-shadow: var(--shadow);
    border-left-width: 6px;
}

.location-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    margin-left: 8px;
    vertical-align: middle;
}

.location-card h4 { margin-bottom: 8px; font-size: 1rem; }
.location-card p { margin: 0; font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }
.location-card a { color: var(--secondary); }

.contact-form-wrap h2 { margin-bottom: 8px; }

.form-group { margin-bottom: 18px; }

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.93rem;
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(72,169,166,0.12);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-note { font-size: 0.8rem; color: var(--text-light); margin-top: 12px; }

/* ── TEAM (split layout) ── */
.gf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-bottom: 60px; }

.profile-card {
    background: var(--white);
    border-left: 4px solid var(--secondary);
    border-radius: var(--radius);
    padding: 36px 32px;
    transition: var(--transition);
}

.profile-card:hover {
    box-shadow: var(--shadow);
    border-left-width: 6px;
}

.profile-avatar {
    width: 64px;
    height: 64px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.profile-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.profile-title { color: var(--secondary); font-size: 0.9rem; font-weight: 600; margin-bottom: 16px; }
.profile-bio p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 10px; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.team-member {
    background: var(--white);
    border-left: 4px solid var(--secondary);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
}

.team-member:hover {
    box-shadow: var(--shadow);
    border-left-width: 6px;
}

.team-member h4 { margin-bottom: 4px; }
.team-member-role { color: var(--secondary); font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; }
.team-member-focus { color: var(--text-light); font-size: 0.85rem; }

/* ── ABOUT TEXT ── */
.about-text { max-width: 800px; margin: 0 auto; }
.about-text p { color: var(--text-light); font-size: 1rem; margin-bottom: 14px; }

/* ── DISCLOSURE BOX ── */
.disclosure-box {
    background: var(--accent-bg);
    border-left: 4px solid var(--secondary);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-top: 40px;
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.7;
}

/* ── LEGAL CONTENT ── */
.legal-content {
    padding: 60px 0 60px;
}

.legal-content h1 { margin-bottom: 32px; font-size: 2rem; }
.legal-content h2 { margin: 36px 0 14px; font-size: 1.3rem; }
.legal-content h3 { margin: 24px 0 10px; font-size: 1.1rem; }
.legal-content p { color: var(--text); margin-bottom: 12px; font-size: 0.95rem; }

.legal-content ul {
    margin: 10px 0 16px 20px;
    list-style: disc;
}

.legal-content ul li {
    margin-bottom: 6px;
    font-size: 0.93rem;
    color: var(--text);
}

.legal-content address {
    font-style: normal;
    margin: 12px 0 20px;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ── FOOTER (3-column, large logo left) ── */
.footer {
    background: var(--primary);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 40% 30% 30%;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.35rem;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-brand .footer-contact-info {
    margin-top: 18px;
    font-size: 0.88rem;
    line-height: 1.8;
}

.footer-brand .footer-contact-info a { color: var(--secondary-light); }
.footer-brand .footer-contact-info a:hover { color: var(--white); }

.footer-col h4 {
    color: var(--white);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.footer-links li { margin-bottom: 8px; }

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-links a:hover { color: var(--secondary-light); }

.footer-locations {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 16px;
}

.footer-locations span {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    flex-wrap: wrap;
    gap: 8px;
}

.footer-legal { display: flex; gap: 18px; }
.footer-legal a { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.footer-legal a:hover { color: var(--secondary-light); }

/* ── COOKIE BANNER ── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: rgba(255,255,255,0.8);
    padding: 16px 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 2px solid var(--secondary);
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-inner p { font-size: 0.85rem; flex: 1; }
.cookie-inner a { color: var(--secondary-light); }

.cookie-buttons { display: flex; gap: 10px; }

.cookie-btn {
    padding: 8px 20px;
    border: none;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font);
    transition: var(--transition);
}

.cookie-btn-accept { background: var(--secondary); color: var(--white); }
.cookie-btn-accept:hover { background: var(--secondary-light); }
.cookie-btn-reject { background: rgba(255,255,255,0.1); color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.cookie-btn-reject:hover { background: rgba(255,255,255,0.2); }

/* ── ANIMATIONS ── */
.animate-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .service-block-inner { flex-direction: column; }
    .service-text, .service-deco { flex: none; width: 100%; }
    .service-deco { min-height: 120px; }
    .service-deco-circle { width: 120px; height: 120px; font-size: 2.5rem; }
}

@media (max-width: 768px) {
    h1 { font-size: 1.9rem; }
    h2 { font-size: 1.5rem; }

    .top-bar-right { display: none; }

    .nav { display: none; }

    .nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid var(--border);
        box-shadow: var(--shadow);
        padding: 16px 24px;
        gap: 4px;
    }

    .nav.open a { padding: 10px 0; }

    .nav-toggle { display: flex; }

    .hero { padding: 70px 0 60px; }
    .hero h1 { font-size: 1.9rem; }
    .hero::before { width: 300px; height: 300px; }

    .page-header { padding: 50px 0 35px; }

    .section { padding: 50px 0; }

    .services-grid,
    .testimonials-grid,
    .team-grid { grid-template-columns: 1fr; }

    .gf-grid { grid-template-columns: 1fr; }

    .contact-layout { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; }

    .footer-bottom { flex-direction: column; text-align: center; }

    .timeline::before { left: 20px; }
    .timeline-dot { left: 20px; }
    .timeline-item, .timeline-item:nth-child(even) { flex-direction: row; }
    .timeline-content { width: calc(100% - 50px); margin-left: 50px; }

    .cookie-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero h1 { font-size: 1.6rem; }
    .btn { padding: 11px 22px; font-size: 0.88rem; }
    .btn-group { flex-direction: column; align-items: center; }
    .hero-badges { flex-direction: column; align-items: center; }
    .footer-locations { grid-template-columns: 1fr; }
}

/* ── SKIP LINK ── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: var(--z-toast);
    background: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius);
    font-size: var(--text-sm);
    font-weight: 600;
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 12px;
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
    color: var(--white);
}

/* ── FOCUS VISIBLE ── */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ── MAX-WIDTH PROSE ── */
.legal-content p,
.about-text p,
.profile-bio p,
.faq-answer-inner,
.service-text > p {
    max-width: 70ch;
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .animate-in {
        opacity: 1;
        transform: none;
    }
}
