/* ============================================================
   BÜRGERAMT HOLZKIRCHEN — Modern & Digital
   Palette: Deep Navy + Sky Blue + Clean White
   ============================================================ */

:root {
    --navy-900: #0A1628;
    --navy-800: #0F2040;
    --navy-700: #1B3461;
    --navy-600: #24478A;
    --blue-500: #2563A8;
    --blue-400: #3B7DD8;
    --sky-300: #60A5E8;
    --sky-200: #BAD9F7;
    --teal-500: #0D7A6E;
    --teal-400: #14A896;
    --indigo-500: #3730A3;
    --indigo-400: #4F46E5;
    --bg: #F5F8FD;
    --surface: #FFFFFF;
    --border: #DDE6F4;
    --text: #111827;
    --muted: #4B5E78;
    --light-text: #F0F6FF;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: clip;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── HEADER ─────────────────────────────────────────────────────── */
.header {
    position: sticky;
    top: 0;
    z-index: 300;
    background: #FFFFFF;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 8px rgba(10,22,40,.06);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    min-height: 68px;
}

.logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; flex-shrink: 0; }

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--navy-700), var(--blue-500));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }

.logo-name {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue-500);
}

.logo-city {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-800);
    letter-spacing: -0.01em;
}

.nav-menu { display: flex; gap: 0.25rem; align-items: center; margin-left: auto; }

.nav-menu a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

.nav-menu a:hover { color: var(--navy-700); background: var(--bg); }
.nav-menu a.active { color: var(--blue-500); font-weight: 600; }

.menu-toggle {
    display: none;
    border: none;
    background: transparent;
    cursor: pointer;
    width: 36px;
    height: 36px;
    position: relative;
    z-index: 300;
    margin-left: auto;
}

.menu-toggle span {
    display: block;
    height: 2px;
    width: 24px;
    background: var(--navy-700);
    border-radius: 2px;
    margin: 5px auto;
    transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.cta-button {
    padding: 0.55rem 1.25rem;
    background: var(--navy-700);
    color: white;
    border: none;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
    flex-shrink: 0;
}

.cta-button:hover { background: var(--blue-500); transform: translateY(-1px); }

/* ── HERO ────────────────────────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
    padding: 5rem 0 4.5rem;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(59,125,216,0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 10% 80%, rgba(96,165,232,0.10) 0%, transparent 45%);
    pointer-events: none;
}

.hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(96,165,232,0.15);
    border: 1px solid rgba(96,165,232,0.3);
    color: var(--sky-300);
    border-radius: 100px;
    padding: 0.35rem 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    color: white;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 420px;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.85rem 1.8rem;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
}

.btn-white { background: white; color: var(--navy-700); }
.btn-white:hover { background: var(--sky-200); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }

.btn-outline-white { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.08); transform: translateY(-2px); }

.btn-primary { background: var(--navy-700); color: white; }
.btn-primary:hover { background: var(--blue-500); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(27,52,97,0.35); }

.full-width { width: 100%; justify-content: center; }

.hero-tiles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.hero-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem 1rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: background 0.2s, transform 0.2s, border-color 0.2s;
    text-align: center;
    cursor: pointer;
}

.hero-tile:hover {
    background: rgba(96,165,232,0.15);
    border-color: rgba(96,165,232,0.4);
    transform: translateY(-4px);
}

.hero-tile i { font-size: 1.8rem; color: var(--sky-300); }

.hero-tile span {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* ── STATS STRIP ─────────────────────────────────────────────────── */
.stats-strip {
    background: var(--navy-900);
    padding: 1.5rem 0;
}

.stats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 0.5rem 2.5rem;
    text-align: center;
}

.stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--sky-300);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.12);
}

/* ── SECTION HEADER ─────────────────────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue-500);
    background: rgba(37,99,168,0.1);
    border-radius: 100px;
    padding: 0.3rem 0.9rem;
    margin-bottom: 0.9rem;
}

.section-label.light {
    color: var(--sky-300);
    background: rgba(96,165,232,0.15);
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1rem;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto;
}

/* ── SERVICES ────────────────────────────────────────────────────── */
.services-section { padding: 5rem 0; background: var(--bg); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(10,22,40,.1);
    border-color: var(--sky-300);
}

.service-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
}

.clr-blue { background: linear-gradient(135deg, var(--navy-700), var(--blue-400)); }
.clr-teal { background: linear-gradient(135deg, var(--teal-500), var(--teal-400)); }
.clr-indigo { background: linear-gradient(135deg, var(--indigo-500), var(--indigo-400)); }

.service-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--blue-500);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s, color 0.2s;
}

.service-link:hover { gap: 0.6rem; color: var(--navy-700); }

/* ── DIGITAL BANNER ──────────────────────────────────────────────── */
.digital-banner {
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.digital-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 90% 50%, rgba(59,125,216,0.18), transparent 60%);
    pointer-events: none;
}

.digital-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.digital-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.digital-text p {
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.digital-list {
    list-style: none;
    margin-bottom: 2rem;
}

.digital-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.92rem;
    margin-bottom: 0.75rem;
}

.digital-list li i { color: var(--sky-300); font-size: 1rem; }

/* Browser mockup */
.digital-device {
    background: #1A2B4A;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.device-bar {
    background: #243656;
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}

.dot:nth-child(1) { background: #ff5f57; }
.dot:nth-child(2) { background: #febc2e; }
.dot:nth-child(3) { background: #28c840; }

.device-url {
    margin-left: 0.5rem;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.07);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    flex: 1;
}

.device-screen { padding: 1rem; }

.screen-row {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.7rem 0.9rem;
    border-radius: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.84rem;
    margin-bottom: 0.4rem;
    transition: background 0.2s;
}

.screen-row i { color: var(--sky-300); width: 14px; text-align: center; }

.screen-active {
    background: rgba(96,165,232,0.15);
    color: white;
    font-weight: 600;
    border: 1px solid rgba(96,165,232,0.3);
}

/* ── PROCESS SECTION ─────────────────────────────────────────────── */
.process-section { padding: 5rem 0; background: var(--surface); }

.process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 1rem;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 0 1.5rem;
}

.step-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: transparent;
    background: linear-gradient(135deg, var(--navy-700), var(--sky-300));
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.process-step h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--navy-700), var(--sky-300));
    align-self: center;
    margin-top: -2rem;
    opacity: 0.3;
    flex-shrink: 0;
}

/* ── ABOUT ───────────────────────────────────────────────────────── */
.about-section { padding: 5rem 0; background: var(--bg); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-img { position: relative; }

.about-img img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    aspect-ratio: 4/3;
    display: block;
    box-shadow: 0 12px 40px rgba(10,22,40,0.15);
}

.about-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--navy-700);
    color: white;
    border-radius: 10px;
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(10,22,40,0.25);
}

.about-badge i { color: var(--sky-300); font-size: 1.1rem; }

.about-content .section-label { margin-bottom: 0.75rem; }

.about-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.about-content p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-values { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 1.5rem; }

.value-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy-700);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 0.35rem 0.85rem;
}

.value-pill i { color: var(--blue-400); }

/* ── NEWS ────────────────────────────────────────────────────────── */
.news-section { padding: 5rem 0; background: var(--surface); }

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.news-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.news-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(10,22,40,.09); }

.news-card--highlight {
    background: linear-gradient(135deg, rgba(27,52,97,0.06), rgba(59,125,216,0.06));
    border-color: rgba(37,99,168,0.2);
}

.news-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    padding: 0.2rem 0.55rem;
    margin-bottom: 0.75rem;
}

.tag-info { background: rgba(37,99,168,0.1); color: var(--navy-700); }
.tag-tip { background: rgba(13,122,110,0.12); color: var(--teal-500); }
.tag-warn { background: rgba(217,119,6,0.12); color: #B45309; }

.news-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.news-card p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: var(--muted);
}

.news-date i { color: var(--sky-300); }

/* ── FAQ ──────────────────────────────────────────────────────────── */
.faq-section { padding: 5rem 0; background: var(--bg); }

.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface);
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy-900);
    text-align: left;
    transition: color 0.2s;
}

.faq-question i {
    color: var(--blue-500);
    font-size: 0.85rem;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
}

.faq-item.open .faq-answer { display: block; }

/* ── CONTACT ─────────────────────────────────────────────────────── */
.contact-section {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info .section-label { margin-bottom: 0.75rem; }

.contact-info h2 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.info-items { margin-bottom: 2rem; }

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(96,165,232,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sky-300);
    font-size: 1rem;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    color: white;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.info-item p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

.opening-box {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
}

.opening-box h4 {
    color: white;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.opening-box h4 i { color: var(--sky-300); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
    padding: 0.35rem 0;
    color: rgba(255,255,255,0.65);
    font-size: 0.875rem;
}

.hours-table td:first-child { font-weight: 500; width: 50%; }

.contact-form-wrap {
    background: var(--surface);
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.contact-form-wrap h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 1.5rem;
}

.form-group { margin-bottom: 1.1rem; }

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.4rem;
    letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid var(--border);
    border-radius: 7px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--bg);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--blue-400);
    box-shadow: 0 0 0 3px rgba(59,125,216,0.12);
}

.form-group textarea { resize: vertical; }

/* ── FOOTER ──────────────────────────────────────────────────────── */
.footer {
    background: var(--navy-900);
    padding: 3.5rem 0 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.85rem;
}

.footer-logo i { color: var(--sky-300); font-size: 1.1rem; }

.footer-col p { color: rgba(255,255,255,0.45); font-size: 0.85rem; line-height: 1.6; }

.footer-col h4 {
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col ul li a,
.footer-col a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover,
.footer-col a:hover { color: var(--sky-300); }

.social-icons { display: flex; gap: 0.75rem; }

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.55) !important;
    font-size: 0.9rem;
    transition: background 0.2s, color 0.2s !important;
}

.social-icons a:hover { background: var(--blue-500); color: white !important; }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
}

.footer-bottom p,
.footer-bottom a { color: rgba(255,255,255,0.3); font-size: 0.8rem; text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--sky-300); }

.footer-legal { display: flex; gap: 1.5rem; }

/* ── ESCAPE DISCLAIMER ──────────────────────────────────────────── */
.escape-disclaimer {
    background: var(--navy-900);
    border-top: 1px solid rgba(96,165,232,0.2);
    padding: 0.6rem 1.5rem;
}

.escape-disclaimer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.75rem;
    font-family: 'Inter', sans-serif;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.03em;
}

.escape-disclaimer__inner i { color: var(--sky-300); flex-shrink: 0; }
.escape-disclaimer__inner strong { color: rgba(255,255,255,0.8); font-weight: 600; }
.escape-disclaimer__inner a { color: #eb7005; text-decoration: underline; text-decoration-color: rgba(235,112,5,0.35); }
.escape-disclaimer__inner a:hover { color: #f59034; }

/* ── MOBILE ──────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .hero-grid,
    .about-grid,
    .digital-inner,
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

    .hero-tiles { grid-template-columns: repeat(2, 1fr); }

    .services-grid { grid-template-columns: repeat(2, 1fr); }

    .news-grid { grid-template-columns: repeat(2, 1fr); }

    .footer-grid { grid-template-columns: 1fr 1fr; }

    .stat-divider { display: none; }
    .stat-item { padding: 0.5rem 1.5rem; }

    .process-steps { flex-direction: column; align-items: center; gap: 2rem; }
    .step-connector { width: 2px; height: 40px; }

    .about-badge { right: 0; bottom: -1rem; }

    .menu-toggle { display: block; }
    .cta-button { display: none; }
    .nav-menu {
        position: fixed;
        top: 68px; left: 0; right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        border-bottom: 1px solid var(--border);
        transform: translateY(-120%);
        transition: transform 0.3s ease;
        z-index: 200;
    }
    .nav-menu.open { transform: translateY(0); }
    .nav-menu a { padding: 0.85rem 1rem; border-radius: 8px; font-size: 0.95rem; }
}

@media (max-width: 600px) {
    .hero-content h1 { font-size: 2.2rem; }
    .section-header h2 { font-size: 1.75rem; }
    .services-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .escape-disclaimer__inner { white-space: normal; text-align: center; }
}
