/* ============================================================
   CSS VARIABLES & RESET
============================================================ */
:root {
    --navy:        #242B33;
    --navy-dark:   #171B20;
    --navy-mid:    #3A434F;
    --white:       #FFFFFF;
    --gray-50:     #F5F7FA;
    --gray-100:    #EDF0F5;
    --gray-200:    #D4D9E3;
    --gray-500:    #6B7280;
    --gray-700:    #374151;
    --text-main:   #242B33;
    --text-body:   #4B5563;
    --text-light:  #6B7280;
    --accent:       #00A79D;
    --accent-dark:  #00877F;
    --accent-light: #E3F5F3;
    --radius-sm:   6px;
    --radius-md:   12px;
    --radius-lg:   20px;
    --shadow-sm:   0 1px 3px rgba(36,43,51,0.08), 0 1px 2px rgba(36,43,51,0.06);
    --shadow-md:   0 4px 16px rgba(36,43,51,0.10), 0 2px 6px rgba(36,43,51,0.08);
    --shadow-lg:   0 10px 40px rgba(36,43,51,0.14), 0 4px 12px rgba(36,43,51,0.08);
    --shadow-card: 0 2px 12px rgba(36,43,51,0.08);
    --transition:  all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --nav-height:  72px;
}

section + section {
    border-top: 1px solid var(--gray-200);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-height) + env(safe-area-inset-top, 0px));
    -webkit-text-size-adjust: 100%;
    background: #ffffff;
    color-scheme: light;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
    overscroll-behavior: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-dark);
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-main);
    line-height: 1.2;
    font-weight: 700;
}

ul {
    list-style: none;
}

/* ============================================================
   UTILITY
============================================================ */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.section-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    color: var(--text-main);
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-light);
}

/* ============================================================
   SCROLL ANIMATIONS
============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    animation: fadeInUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

/* Primary: auf weißem Hintergrund → Teal-Schaltfläche, weißer Text */
.btn-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 167, 157, 0.3);
}

/* Outline: Sekundär-Button auf weißem Hintergrund → transparenter Hintergrund, marineblaue Schrift & Rand */
.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

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

/* SEO-Region: dunkler Hintergrund → primäre Buttons weiß mit Teal-Schrift */
.seo-region .btn-primary {
    background: var(--white);
    color: var(--accent-dark);
    border-color: var(--white);
}

.seo-region .btn-primary:hover {
    background: rgba(255,255,255,0.9);
    color: var(--accent-dark);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--navy);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    padding-top: env(safe-area-inset-top, 0px);
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.nav-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 32px;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.nav-logo img {
    height: 60px;
    width: auto;
    display: block;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 998;
}

.nav-overlay.open {
    display: block;
}

.nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 75vw;
    max-width: 320px;
    height: 100%;
    background: var(--white);
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 24px rgba(36,43,51,0.18);
}

.nav-drawer.open {
    transform: translateX(0);
}

.nav-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 16px;
    border-bottom: 1px solid var(--gray-100);
}

.nav-drawer-logo {
    height: 38px;
    width: auto;
}

.nav-drawer-close {
    background: none;
    border: none;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: var(--transition);
}

.nav-drawer-close:hover {
    color: var(--navy-mid);
}

.nav-drawer-links {
    display: flex;
    flex-direction: column;
}

.nav-drawer-link {
    padding: 18px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    border-bottom: 1px solid var(--gray-100);
    transition: var(--transition);
    display: block;
}

.nav-drawer-link:hover {
    background: var(--gray-50);
    color: var(--navy-mid);
}

.nav-drawer-link.primary {
    color: var(--accent-dark);
}

.nav-btn-ghost {
    padding: 9px 20px;
    border: 2px solid rgba(255,255,255,0.55);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-btn-ghost:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--navy);
}

.nav-btn-primary {
    padding: 9px 20px;
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid var(--accent);
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

@media (max-width: 768px) {
    :root {
        --nav-height: 68px;
    }

    .nav-container {
        padding: 0 16px;
        gap: 12px;
    }

    .nav-logo img {
        height: 45px;
    }

    /* Desktop-Buttons ausblenden */
    .nav-actions {
        display: none;
    }

    /* Burger-Button einblenden */
    .nav-toggle {
        display: flex;
    }
}

/* ============================================================
   HERO
============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--white);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: calc(var(--nav-height) + env(safe-area-inset-top, 0px) + 40px) 24px 80px;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(36,43,51,0.04));
    pointer-events: none;
}

.hero-circuit {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.circuit-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    animation-delay: 0.1s;
}

.hero-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero-accent {
    color: var(--accent);
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-body);
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(36,43,51,0.25);
    border-radius: 12px;
    position: relative;
}

.hero-scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(36,43,51,0.45);
    border-radius: 2px;
    animation: scrollBob 1.8s ease-in-out infinite;
}

@keyframes scrollBob {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50%       { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

/* ============================================================
   SERVICES
============================================================ */
.services {
    padding: 96px 0;
    background: var(--white);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-200);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-highlight {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-color: transparent;
}

.service-card-highlight h3,
.service-card-highlight p,
.service-card-highlight .service-list li {
    color: rgba(255,255,255,0.9);
}

.service-card-highlight .service-icon {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

.service-card-highlight::before {
    background: rgba(255,255,255,0.35);
    opacity: 1;
}

.service-card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.service-icon {
    width: 52px;
    height: 52px;
    background: var(--accent-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--accent);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.05rem;
    color: var(--text-main);
    padding-top: 4px;
    flex: 1;
    min-width: 0;
}

.badge {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    margin-top: 2px;
    flex-shrink: 0;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 16px;
    line-height: 1.65;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid var(--gray-100);
    padding-top: 16px;
}

.service-card-highlight .service-list {
    border-color: rgba(255,255,255,0.12);
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.5;
}

.service-list li::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: var(--navy);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

.service-card-highlight .service-list li::before {
    background: rgba(255,255,255,0.7);
}


/* ============================================================
   WHY / VORTEILE
============================================================ */
.why {
    padding: 96px 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    text-align: center;
    transition: var(--transition-slow);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.why-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--accent);
    color: var(--white);
}

.why-card h3 {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.why-card p {
    font-size: 0.87rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================================
   CONTACT
============================================================ */
.contact {
    padding: 96px 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 56px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.25rem;
    margin-bottom: 28px;
    color: var(--text-main);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 11px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 2px;
}

.contact-list a,
.contact-list span {
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
}

.contact-list a:hover {
    color: var(--accent);
}

.contact-note {
    background: var(--accent-light);
    border: 1px solid rgba(0,167,157,0.2);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-note svg {
    color: var(--accent-dark);
    flex-shrink: 0;
    margin-top: 1px;
}

.contact-note p {
    font-size: 0.87rem;
    color: var(--text-body);
    line-height: 1.55;
}

/* FORM */
.contact-form {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-main);
    letter-spacing: 0.3px;
}

.required {
    color: var(--accent-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.93rem;
    color: var(--text-main);
    background: var(--white);
    transition: var(--transition);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 167, 157, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-hint {
    font-size: 0.78rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-top: -4px;
}

.contact-map {
    margin-top: 24px;
}

.contact-map-link {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--accent-dark);
    text-decoration: underline;
}

.contact-map-link:hover {
    color: var(--accent);
}

.services-note {
    text-align: center;
    margin-top: 32px;
    color: var(--navy);
    font-size: 0.95rem;
    font-weight: 500;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 64px 0 0;
}

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

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
    opacity: 0.9;
}

.footer-brand p {
    font-size: 0.87rem;
    line-height: 1.6;
    max-width: 260px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.88rem;
    color: var(--white);
    transition: var(--transition);
}

.footer-contact p {
    font-size: 0.88rem;
    margin-bottom: 8px;
}

.footer-contact a {
    color: var(--white);
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--white);
}

.footer-legal a {
    color: var(--white);
    font-size: 0.82rem;
}

/* ============================================================
   RESPONSIVE – TABLET (≤ 1024px)
============================================================ */
@media (max-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }

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

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

/* ============================================================
   RESPONSIVE – MOBILE (≤ 768px)
============================================================ */
@media (max-width: 768px) {
    /* Sections */
    .services, .why, .contact {
        padding: 56px 0;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 100%;
    }

    .service-card {
        padding: 24px 20px;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .why-card {
        padding: 24px 16px;
    }

    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .contact-form {
        padding: 28px 20px;
        box-shadow: var(--shadow-sm);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* FIX: iOS Safari zoomt automatisch wenn input < 16px */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }

    /* SEO Region */
    .seo-region {
        padding: 48px 0;
    }

    .seo-region-content h2 {
        font-size: 1.3rem;
        text-align: left;
    }

    .seo-region-content p {
        font-size: 0.93rem;
        text-align: left;
    }

    .seo-region-tags {
        justify-content: flex-start;
    }

    /* Footer */
    .footer {
        padding: 48px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 36px;
    }

    .footer-logo {
        height: 34px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

/* ============================================================
   RESPONSIVE – SMALL MOBILE (≤ 480px)
============================================================ */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .services, .why, .contact {
        padding: 48px 0;
    }

    .section-header {
        margin-bottom: 28px;
    }

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

    .btn {
        padding: 13px 22px;
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 24px 16px;
    }
}

/* ============================================================
   FOCUS STYLES (ACCESSIBILITY)
============================================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* ============================================================
   STAGGERED REVEAL DELAYS
============================================================ */
.service-card:nth-child(2) { transition-delay: 0.1s; }
.service-card:nth-child(3) { transition-delay: 0.2s; }
.service-card:nth-child(4) { transition-delay: 0.15s; }
.service-card:nth-child(5) { transition-delay: 0.25s; }

.why-card:nth-child(2) { transition-delay: 0.1s; }
.why-card:nth-child(3) { transition-delay: 0.2s; }
.why-card:nth-child(4) { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
    .reveal, .fade-in {
        opacity: 1;
        transform: none;
        animation: none;
        transition: none;
    }
    html { scroll-behavior: auto; }
}


/* ============================================================
   SEO REGION SECTION
============================================================ */
.seo-region {
    background: var(--navy);
    padding: 4rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.seo-region-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.seo-region-content h2 {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    color: var(--white);
    margin-bottom: 1.2rem;
}

.seo-region-content p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.seo-region-content strong {
    color: var(--white);
}

.seo-region-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.seo-region-tags span {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.9);
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
}
