/* Responsiveness & margins improved - Netlify AI [2026-03-03] */
:root {
    --bg: #f7f9fb;
    --surface: #ffffff;
    --text: #001f3d;
    --muted: #355a78;
    --brand: #045174;
    --accent: #e87a00;
    --accent-soft: #d89c60;
    --radius: 16px;
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.5rem;
    --space-6: 2rem;
    --space-7: 3rem;
    --space-8: 5rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Century Gothic', Arial, sans-serif;
    font-size: clamp(1rem, 0.95rem + 0.2vw, 1.125rem);
    line-height: 1.65;
    color: var(--text);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
    border-radius: 8px;
}

.container-wide {
    width: min(1400px, 100% - 2rem);
    margin-inline: auto;
}

.section-block { padding-block: clamp(3.5rem, 7vw, 8rem); }

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--brand);
    box-shadow: 0 8px 24px rgba(4, 81, 116, 0.24);
}
.navbar { min-height: 72px; }
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    padding-block: var(--space-3);
}
.logo { display: inline-flex; align-items: center; }
.logo-img { width: auto; height: auto; max-height: 48px; object-fit: contain; }

.nav-menu {
    list-style: none;
    margin: 0;
    position: fixed;
    inset: 72px 0 auto 0;
    background: var(--brand);
    transition: opacity .22s ease;
    display: none;
    gap: var(--space-3);
    padding: var(--space-6) var(--space-5);
    box-shadow: 0 12px 30px rgba(0, 31, 61, 0.35);
    opacity: 0;
}
.nav-menu.active {
    display: grid;
    opacity: 1;
}
.nav-link {
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    padding: .85rem 1rem;
    border-radius: 999px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
}
.nav-link:hover { background: rgba(216, 156, 96, 0.18); color: #ffe4c7; }

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: rgba(255, 255, 255, .12);
    padding: .4rem .55rem;
    border-radius: 999px;
}
.flag {
    width: 22px;
    height: 16px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid transparent;
    cursor: pointer;
}
.flag:hover { border-color: var(--accent-soft); transform: scale(1.1); }

.nav-toggle {
    border: 0;
    background: transparent;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    padding: .4rem;
    cursor: pointer;
}
.nav-toggle span {
    width: 24px;
    height: 3px;
    background: #fff;
    border-radius: 6px;
}

.hero {
    min-height: min(100vh, 900px);
    background: linear-gradient(135deg, rgba(0, 31, 61, .82), rgba(4, 81, 116, .72), rgba(44, 90, 160, .62)), url('skyscrapers.jpg') center/cover no-repeat;
    color: #fff;
    position: relative;
    display: grid;
    place-items: center;
    padding: clamp(5rem, 12vw, 8rem) 0 clamp(2rem, 5vw, 3rem);
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(45deg, rgba(0, 31, 61, .7), rgba(4, 81, 116, .52)); }
.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 20px;
    padding: clamp(1.25rem, 4vw, 3rem);
}
.hero-title { font-size: clamp(1.75rem, 3.5vw, 3.5rem); line-height: 1.2; margin: 0 0 var(--space-4); }
.hero-subtitle { font-size: clamp(1.15rem, 2.1vw, 1.9rem); color: #ffd7ad; margin: 0 0 var(--space-4); }
.hero-description { margin: 0 0 var(--space-5); color: #f2f7fc; }
.hero-highlight {
    margin-bottom: var(--space-5);
    border-left: 4px solid var(--accent-soft);
    border-right: 4px solid var(--accent);
    border-radius: 12px;
    background: rgba(216, 156, 96, .18);
    padding: var(--space-4);
}

.cta-button,
.calendly-btn,
.footer-calendly-btn,
.cookie-accept,
.cookie-decline {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: .9rem 1.45rem;
    border: 0;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.cta-button,
.calendly-btn,
.footer-calendly-btn,
.cookie-accept { background: linear-gradient(135deg, var(--accent), var(--accent-soft)); color: #fff; }
.cookie-decline { background: transparent; color: #fff; border: 2px solid var(--accent-soft); }
.cta-button:hover,
.calendly-btn:hover,
.footer-calendly-btn:hover,
.cookie-accept:hover,
.cookie-decline:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 31, 61, .22); }

.about { background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%); }
.about-content { display: grid; gap: var(--space-6); }
.about-text h2,
.services h2,
.benefits h2,
.contact h2,
.gdpr-page h1 { font-size: clamp(1.75rem, 3.2vw, 2.75rem); line-height: 1.25; margin-bottom: var(--space-4); }
.highlight { color: var(--accent); font-size: clamp(1.1rem, 1.6vw, 1.5rem); margin-bottom: var(--space-3); font-weight: 700; }
.about-tagline { color: var(--brand); font-style: italic; margin-bottom: var(--space-4); }
.philosophy { background: rgba(216, 156, 96, .14); border-left: 4px solid var(--accent-soft); padding: var(--space-4); border-radius: 12px; }
.about-img { border-radius: 18px; border: 4px solid var(--accent-soft); box-shadow: 0 12px 30px rgba(0, 31, 61, .18); aspect-ratio: 3/2; object-fit: cover; }

.services { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); }
.services-grid,
.benefits-grid,
.contact-content,
.footer-content { display: grid; gap: var(--space-5); }
.service-item,
.benefit-item,
.contact-item {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid rgba(4, 81, 116, .18);
    padding: var(--space-5);
    box-shadow: 0 8px 24px rgba(0, 31, 61, .08);
}

/* Extra motion pass */
.section-block {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease;
}
.section-block.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.service-item, .benefit-item, .contact-item {
    transition: transform .25s ease, box-shadow .25s ease;
}
.service-item:hover, .benefit-item:hover, .contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0, 31, 61, .14);
}
.service-icon {
    animation: floatIcon 3.2s ease-in-out infinite;
}
.services-grid .service-item:nth-child(2) .service-icon { animation-delay: -.6s; }
.services-grid .service-item:nth-child(3) .service-icon { animation-delay: -1.1s; }
.services-grid .service-item:nth-child(4) .service-icon { animation-delay: -1.5s; }
.services-grid .service-item:nth-child(5) .service-icon { animation-delay: -1.9s; }

.cta-button, .calendly-btn, .footer-calendly-btn {
    animation: pulseGlow 2.8s ease-in-out infinite;
}

@keyframes floatIcon {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}
@keyframes pulseGlow {
    0%,100% { box-shadow: 0 8px 20px rgba(4,81,116,.16); }
    50% { box-shadow: 0 12px 28px rgba(232,122,0,.28); }
}
.service-icon { font-size: 2.3rem; margin-bottom: var(--space-3); }
.service-item h3 { font-size: 1.2rem; margin: 0 0 var(--space-3); line-height: 1.4; }
.service-item p { color: var(--muted); margin: 0; }

.benefits { background: #fff; }
.benefit-item { display: flex; align-items: flex-start; gap: var(--space-3); }
.benefit-icon { color: var(--brand); font-size: 1.4rem; line-height: 1.2; }

.contact { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); }
.contact-intro, .contact-subtitle { color: var(--muted); text-align: center; max-width: 75ch; margin-inline: auto; }
.contact-subtitle { margin-top: .35rem; margin-bottom: var(--space-6); }
.contact-item { display: flex; align-items: center; gap: var(--space-3); }
.contact-icon { font-size: 1.5rem; }
.contact-item a { color: var(--brand); text-decoration: none; }
.contact-item a:hover { color: var(--accent); }
.calendly-section { display: grid; align-content: center; justify-items: center; }

.footer {
    background: var(--brand);
    color: #fff;
    padding-top: clamp(2.5rem, 6vw, 4rem);
    border-top: 4px solid var(--accent);
}
.footer-logo { height: 52px; width: auto; }
.footer-address h4,
.footer-contact h4 { color: #ffd7ad; margin: 0 0 var(--space-3); }
.footer-contact a { color: #fff; text-decoration: none; display: block; margin-bottom: .5rem; }
.footer-contact a:hover { color: #ffd7ad; }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .35);
    margin-top: var(--space-5);
    padding: var(--space-4) 0 var(--space-5);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}
.footer-gdpr a { color: #ffd7ad; }

.cookie-banner {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 1200;
    background: rgba(0, 31, 61, .95);
    color: #fff;
    border-top: 2px solid var(--accent);
}
.cookie-content { width: min(1400px, 100% - 2rem); margin-inline: auto; padding: .9rem 0; display: grid; gap: .75rem; }
.cookie-buttons { display: flex; flex-wrap: wrap; gap: .6rem; }

.gdpr-page { background: #fff; min-height: 85vh; padding-top: clamp(6rem, 10vw, 8rem); }
.gdpr-page h2 { font-size: clamp(1.2rem, 1.8vw, 1.6rem); margin: var(--space-6) 0 var(--space-3); border-left: 4px solid var(--accent); padding-left: .8rem; }
.gdpr-page ul { padding-left: 1.2rem; }
.gdpr-page p, .gdpr-page li { color: #173958; }
.gdpr-page a { color: var(--accent); }

@media (min-width: 640px) {
    .container-wide { width: min(1400px, 100% - 2.5rem); }
    .hero-content { text-align: left; }
}

@media (min-width: 768px) {
    .container-wide { width: min(1400px, 100% - 3rem); }
    .nav-toggle { display: none; }
    .nav-menu {
        position: static;
        transform: none;
        background: transparent;
        box-shadow: none;
        display: flex;
        gap: 1.1rem;
        padding: 0;
        inset: auto;
    }
    .about-content { grid-template-columns: 1.1fr .9fr; align-items: center; }
    .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .contact-content { grid-template-columns: 1fr 1fr; align-items: start; }
    .footer-content { grid-template-columns: 1.1fr 1fr .9fr; align-items: start; }
    .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
    .cookie-content { grid-template-columns: 1fr auto; align-items: center; }
}

@media (min-width: 1024px) {
    .container-wide { width: min(1400px, calc(100% - max(10rem, 8vw))); }
    .section-block { padding-block: clamp(5rem, 8vw, 8.75rem); }
    .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .benefits-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .hero-content { max-width: 1200px; }
}

@media (min-width: 1280px) {
    .container-wide { width: min(1400px, calc(100% - max(12rem, 10vw))); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
    .section-block { opacity: 1; transform: none; }
}
