:root { --nav-height: 6dvh; }
body {
    font-family: Inter, Roboto, "Open Sans", Arial, sans-serif;
    color: #0f2a44;
    background-color: #ffffff;
    margin: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: var(--nav-height);
}

/*
################################
General
################################
*/
h1,
h2,
h3 {
    margin: 0 0 1rem 0;
}
h1 {
    font-size: max(3vw, 3vh);
    line-height: 1.05;
    font-weight: 900;
}
h2 { font-size: max(2.2vw, 2.2vh); }
h3 { font-size: max(1.4vw, 1.4vh); }
p,
span,
a,
li {
    font-size: max(1vw, 1vh);
    line-height: 1.3;
}
.text-white,
.text-white * {
    color: white;
}
.btn {
    text-decoration: none;
    display: inline-block;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    transition: 0.25s;
    cursor: pointer;
}
section { scroll-margin-top: var(--nav-height); }
.btn:hover { transform: translateY(-2px); }
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 80%;
    margin: 0 auto;
    box-sizing: border-box;
}
svg.feather {
    width: 100%;
    height: 100%;
}
.icon svg,
svg.feather {
    width: 100%;
    height: 100%;
    display: block;
}
.icon-sm { width: 1.2rem; height: 1.2rem; }
.icon-md { width: 1.6rem; height: 1.7rem; }
.icon-lg { width: 2.2rem; height: 2.2rem; }
.icon-xl { width: 3.6rem; height: 3.6rem; }
.inline-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.inline-link .icon { transition: transform 0.2s ease; }
.inline-link:hover .icon { transform: translateY(1px); }
.navy-btn {
    background: #0f2a44;
    box-shadow: 0 10px 22px rgba(15,42,68,0.12);
}
.navy-btn:hover { background: #224769; }

/* ##### responsive ##### */
@media (min-width: 2560px) {
    html { font-size: 20px; }
}
@media (max-width: 2559px) {
    html { font-size: 18px; }
}
@media (max-width: 1919px) {
    html { font-size: 17px; }
}
@media (max-width: 1439px) {
    html { font-size: 16px; }
}
@media (max-width: 768px) {
    html { font-size: 16px; }
}
@media (max-width: 580px) {
    h3 { font-size: max(1.7vw, 1.7vh); }
    p,
    span,
    a,
    li {
        font-size: max(1.5vw, 1.5vh);
    }
}
@media (max-width: 480px) {
    html { font-size: 15px; }
    .container {
        max-width: 96%;
        padding: 0 8px;
    }
    .btn { padding: 0.65rem 1.1rem; }
}
@media (max-width: 360px) {
    html { font-size: 14px; }
}

/*
################################
Navbar
################################
*/
nav {
    height: var(--nav-height);
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 6%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    z-index: 999;
    box-sizing: border-box;
}
.logo img {
    max-height: 4dvh;
    width: auto;
    display: block;
}
nav .logo { display: flex; align-items: center; max-height: 50%; }
nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}
nav ul li { margin: 0; }
nav ul li a {
    font-size: max(1vw, 1vh);
    display: inline-block;
    text-decoration: none;
    color: #0a2540;
    font-weight: 500;
    transition: transform 0.2s ease, color 0.2s ease;
}
nav ul li a:hover { transform: scale(1.05); color: #0a7d86; }
nav ul li a.active {
    color: #0a7d86;
    font-weight: 600;
}

/* ##### responsive ##### */
.menu-toggle {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0.4rem;
    border-radius: 8px;
}
.menu-toggle:focus { outline: 2px solid rgba(10,37,64,0.12); }
@media (max-width: 900px) {
    nav { padding: 1rem 4%; }
    .menu-toggle { display: block; }
    nav ul {
        position: absolute;
        top: 100%;
        right: 4%;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        width: calc(90% - 8%);
        padding: 1rem;
        gap: 0.75rem;
        border-radius: 0.8rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        transform-origin: top right;
        transform: translateY(-10px) scale(0.98);
        opacity: 0;
        pointer-events: none;
        transition: all 0.28s cubic-bezier(.2,.9,.2,1);
    }
    nav ul.open {
        transform: translateY(0) scale(1);
        opacity: 1;
        pointer-events: all;
    }
    nav ul li a {
        padding: 0.5rem 0.25rem;
        width: 100%;
    }
}
@media (max-width: 580px) {
    nav ul li a {
        font-size: max(1.5vw, 1.5vh);
    }
}

/*
################################
Hero
################################
*/
header {
    height: calc(100dvh - var(--nav-height));
    background:
            radial-gradient(circle at top left, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0) 35%),
            linear-gradient(135deg, #f8f5f2 0%, #eef3f5 55%, #e3edf0 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    scroll-margin-top: var(--nav-height);
}
.hero-shell {
    width: 80%;
    margin: 0 auto;
    padding: 0 6%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
}
.hero-copy {
    text-align: left;
    max-width: 80%;
    position: relative;
    z-index: 2;
}
.hero-brand-line {
    font-size: max(3vw, 3vh);
    line-height: 1.05;
    font-weight: 900;
    margin: 0 0 1rem 0;
    z-index: 2;
    position: relative;
}
.hero-copy p {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    transition: 0.3s;
}
.hero-subline {
    font-size: max(2.2vw, 2.2vh);
    line-height: 1.15;
    color: #18324f;
}
.hero-qualifier {
    color: rgba(11,35,66,0.72);
    font-size: max(1.5vw, 1.5vh);
    margin-bottom: 2.2rem;
    font-weight: normal;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.header-btn {
    background: linear-gradient(90deg,#0f2a44,#173a5c);
    box-shadow: 0 10px 24px rgba(15,42,68,0.16);
}
.header-btn:hover { background: linear-gradient(90deg,#173a5c,#224769); }
.hero-visual {
    position: relative;
    z-index: 1;
}
.hero-photo-card {
    position: relative;
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 1vw;
    padding: 0.7vw;
    box-shadow: 0 25px 60px rgba(9,28,48,0.12);
    backdrop-filter: blur(8px);
    transition: transform 0.15s linear;
    will-change: transform;
}
.hero-photo-card img {
    width: 100%;
    display: block;
    border-radius: 0.7vw;
    object-fit: cover;
    aspect-ratio: 4 / 5;
    background: #d8e3e8;
}

/* ##### responsive ##### */
@media (max-width: 980px) {
    header {
        box-sizing: border-box;
        padding: 6.5rem 0 3rem 0;
        background:
                linear-gradient(to bottom, rgba(10, 37, 64, 0.25), rgba(10, 37, 64, 0)),
                url('../images/buero-reinigung-graz-team-oleria-mobile.webp') center center / cover no-repeat;
        height: calc(100dvh - var(--nav-height));
        min-height: 0;
        display: flex;
        align-items: flex-start;
    }
    .hero-shell {
        grid-template-columns: 1fr;
        gap: 2rem;
        position: relative;
        z-index: 1;
        margin-top: 15%;
    }
    .hero-copy {
        text-align: center;
        max-width: 760px;
        margin: 0 auto;
    }
    .hero-subline { font-size: 2.35rem; }
    .hero-copy h1,
    .hero-subline,
    .hero-copy p,
    .hero-qualifier {
        color: #ffffff;
    }
    .hero-copy p,
    .hero-qualifier {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-subline { font-size: 2.3rem; }
    .hero-qualifier {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    .hero-actions { justify-content: center; }
    .hero-visual { display: none !important;}
    .header-btn {
        background: rgba(255, 255, 255, 0.16);
        border: 1px solid rgba(255, 255, 255, 0.28);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
        backdrop-filter: blur(6px);
    }
    .header-btn:hover { background: rgba(255, 255, 255, 0.24); }
}
@media (max-width: 580px) {
    header { padding: 5rem 0 2.5rem 0; }
    .hero-shell { padding: 0 4%; }
    .hero-subline { font-size: 1.45rem; }
    .hero-qualifier {
        font-size: 1rem;
        margin-bottom: 1.6rem;
    }
}
@media (max-width: 400px) and (max-height: 900px) {
    header { padding: 3rem 0 1.5rem 0; }
    .hero-copy h1 { font-size: 1.6rem; }
    .hero-subline { font-size: 1.2rem; }
    .hero-subline { font-size: 1.5rem; }
    .hero-qualifier {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
}
@media (max-width: 400px) and (max-height: 700px) {
    header { padding: 2rem 0 1.3rem 0; }
    .hero-copy h1 { font-size: 1.4rem; }
    .hero-subline { font-size: 1.3rem; }
    .hero-qualifier {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

/*
################################
Sections
################################
*/
.section { padding: 10% 0; }
.section-white { background: white; }
.section-navy { background: #0a2540; color: white; }
.section-parchment { background: #fafafa; }
.section-blue-gradient { background: linear-gradient(to bottom, #ffffff, #d9ebf2); }
.section-subtitle,
.offer-description {
    font-size: max(1.5vw, 1.5vh);
    line-height: 1.5;
    text-align: center;
    max-width: 70ch;
}

/* ##### responsive ##### */
@media (max-width: 900px) {
    .section { padding: 3.5rem 0; }
    .section-subtitle { margin: 0 auto 1.25rem auto; max-width: 100%; }
}
@media (max-width: 580px) {
    .section-subtitle,
    .offer-description {
        font-size: max(1.7vw, 1.7vh);
    }
}

/*
################################
Problem Section
################################
*/
.cards {
    width: 80%;
    display: flex;
    gap: 1.5vw;
    flex-wrap: wrap;
    justify-content: center;
}
.card {
    background: #f8f5f2;
    padding: 3%;
    border-radius: 5%;
    flex: 1;
    width: 33%;
    box-sizing: border-box;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover { box-shadow: 0 14px 30px rgba(10, 37, 64, 0.06); }
.card-icon {
    font-size: 2rem;
    color: #7fd1d3;
    margin-bottom: 1rem;
}

/* ##### responsive ##### */
@media (max-width: 1100px) {
    .cards { width: 90%; gap: 1rem; }
}
@media (max-width: 1000px) {
    .cards {
        width: 100%;
        gap: 1rem;
        flex-wrap: nowrap;
    }
    .card {
        flex: 1 1 0;
        min-width: 0;
        max-width: none;
        padding: 1.25rem;
    }
}
@media (max-width: 750px) {
    .cards {
        flex-direction: column;
        flex-wrap: nowrap;
        width: 100%;
        align-items: stretch;
    }
    .card {
        width: 100%;
        max-width: none;
    }
}
@media (max-width: 900px) {
    #problem h2,
    #problem .section-subtitle,
    #team h2,
    #team .section-subtitle {
        text-align: center;
    }
}

/*
################################
Offer Section
################################
*/
.offer-bg-section {
    box-sizing: border-box;
    position: relative;
    min-height: calc(100dvh - var(--nav-height));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    background: url('../images/buero-graz-saubere-arbeitsumgebung.webp') center/cover no-repeat;
}
.offer-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 37, 64, 0.78);
    backdrop-filter: saturate(0.7);
}
.offer-bg-content {
    position: relative;
    z-index: 2;
    max-width: 50%;
}
.offer-premise {
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 1vh;
}
.offer-description { color: rgba(255,255,255,0.85); }
.offer-highlight {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 2rem;
    padding: 2.5vw;
    margin-bottom: 2.5vh;
    backdrop-filter: blur(6px);
    text-align: left;
}
.offer-highlight-title {
    font-size: max(0.9vw, 0.9vh);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.8vh;
}
.offer-highlight-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5vw;
}
.offer-highlight-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.offer-highlight-icon {
    border-radius: 100rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2vh;
}
.offer-highlight-icon i {
    color: #21f8f6;
}
.offer-highlight-text strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: max(1vw, 1vh);
}
.offer-highlight-text p {
    margin: 0;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}
.offer-closing {
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
}

/* ##### responsive ##### */
@media (max-width: 900px) {
    .offer-bg-section {  min-height: 100dvh; }
    .offer-bg-content { max-width: 96%; }
    .offer-bg-content h2 { font-size: 1.8rem; }
    .offer-description { font-size: 1rem; }
    .offer-highlight { padding: 1.5rem; }
}
@media (max-width: 700px) {
    .offer-highlight-items {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .offer-highlight-item {
        align-items: center;
        text-align: center;
    }
    .offer-highlight { text-align: center; }
}
@media (max-width: 580px) {
    .offer-highlight-title,
    .offer-highlight-text strong {
        font-size: max(1.5vw, 1.5vh);
    }
}
@media (max-width: 480px) {
    .offer-bg-section { min-height: auto; }
    .offer-bg-content h2 { font-size: 1.5rem; }
    .offer-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    .offer-highlight-text p { font-size: 0.9rem; }
}

/*
################################
Proof Section
################################
*/
.proof-section { text-align: center; }
.proof-flow {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.proof-step {
    display: flex;
    align-items: center;
    gap: 3rem;
    text-align: left;
    max-width: 60%;
    margin: 0 auto;
}
.proof-step.reverse { flex-direction: row-reverse; }
.proof-text { flex: 1; }
.proof-step-number {
    display: inline-block;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.6rem;
}
.proof-text h3 { margin-bottom: 0.6rem; }
.proof-text p {
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}
.proof-visual { flex: 1; }
.proof-image-placeholder {
    height: 220px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.proof-image-placeholder img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}
.proof-connector {
    width: 2px;
    height: 30px;
    background: rgba(255,255,255,0.15);
    margin: 0 auto;
}
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
            opacity 0.7s ease,
            transform 0.7s ease;
    will-change: opacity, transform;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal.is-visible,
    .reveal-delay-1,
    .reveal-delay-2,
    .reveal-delay-3 {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ##### responsive ##### */
@media (max-width: 900px) {
    .proof-step {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .proof-step.reverse { flex-direction: column; }
    .proof-text {
        max-width: 600px;
        margin: 0 auto;
    }
    .proof-image-placeholder { height: 180px; }
}
@media (max-width: 480px) {
    .proof-step { max-width: 80%; }
    .proof-image-placeholder {
        height: 150px;
        font-size: 0.8rem;
    }
    .proof-flow {
        margin: 1rem auto;
        gap: 2rem;
    }
}

/*
################################
Team Section
################################
*/
.flex-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    flex-direction: row;
}
.image-wrapper { flex: 1; position: relative; }
.image-wrapper img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    display: block;
    height: auto;
}
.content { flex: 1; }
.section-subtitle.team-subtitle {
    text-align: left;
}
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.feature-icon{
    color: #ffb8a4;
    flex-shrink: 0;
}
.feature p,
.feature h3 {
    margin: 0 0 0.4rem;
}

/* ##### responsive ##### */
@media (max-width: 1000px) {
    .image-wrapper, .content { width: 100%; }
    .flex-row { flex-direction: column; }
    .feature div { text-align: left; }
    .feature-list { gap: 1rem; }
}
@media (max-width: 1000px) {
    #team .content { text-align: center; }
}

/*
################################
Why Oleria
################################
*/
/* ##### homepage section ##### */
.why-oleria-container {
    max-width: 780px;
    text-align: center;
}
.why-oleria-content h2 { margin-bottom: 1.2rem; }
.why-oleria-text {
    margin: 0 auto 1rem auto;
    max-width: 620px;
    color: rgba(10,37,64,0.78);
    line-height: 1.6;
}
.why-oleria-cta { margin-top: max(1vw, 1vh); }

/* ##### page ##### */
.why-page-container {
    width: 50%;
    max-width: 80%;
    align-items: stretch;
    margin: 0 auto;
}
.why-page-intro {
    text-align: center;
    margin-bottom: max(2vw, 2vh);
}
.why-page-subtitle {
    margin: max(1vw, 1vh) auto 0 auto;
    color: rgba(10,37,64,0.7);
    line-height: 1.6;
}
.why-block { margin-bottom: 3rem; }
.why-block h2 { margin-bottom: 0.9rem; }
.why-block p {
    margin: 0 0 max(1vw, 1vh) 0;
    line-height: 1.65;
    color: rgba(10,37,64,0.82);
}
.why-list {
    margin: max(1vw, 1vh) 0 max(2vw, 2vh) max(2vw, 2vh);
    padding: 0;
}
.why-block-highlight {
    background: rgba(10,37,64,0.03);
    border: 1px solid rgba(10,37,64,0.08);
    border-radius: max(1.5vw, 1.5vh);
    padding: max(2vw, 2vh);
}
.why-block-closing { text-align: center; }
.why-cta { margin-top: 2rem; }

/* ##### responsive ##### */
@media (max-width: 1000px) {
    .why-page-container { width: auto; }
}
@media (max-width: 640px) {
    .why-block-highlight { padding: 1.2rem; }
}
@media (max-width: 480px) {
    .why-page-container {
        max-width: 96%;
        padding: 0 8px;
    }
}

/*
################################
FAQ Section
################################
*/
.faq-section { padding-bottom: 0; }
.faq-intro {
    text-align: center;
    margin-bottom: 2.5rem;
}
.faq-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    background: #ffffff;
    border: 1px solid rgba(10, 37, 64, 0.08);
    border-radius: 1rem;
    box-shadow: 0 10px 26px rgba(10, 37, 64, 0.04);
    overflow: hidden;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.faq-item:hover {
    border-color: rgba(10, 37, 64, 0.14);
    box-shadow: 0 14px 32px rgba(10, 37, 64, 0.07);
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.25rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-weight: 600;
    color: #0a2540;
    position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    flex-shrink: 0;
    font-size: 1.4rem;
    line-height: 1;
    color: #0a7d86;
    transition: transform 0.2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item[open] {
    border-color: rgba(10, 125, 134, 0.18);
    box-shadow: 0 14px 34px rgba(10, 37, 64, 0.08);
}
.faq-answer {
    padding: 0 1.4rem 1.35rem 1.4rem;
    color: rgba(10, 37, 64, 0.78);
    line-height: 1.6;
    font-size: 0.98rem;
    text-align: left;
}

/* ##### responsive ##### */
@media (max-width: 900px) {
    .faq-intro { margin-bottom: 1.75rem; }
    .faq-item summary {
        padding: 1.1rem 1.1rem;
        font-size: 0.98rem;
    }
    .faq-answer {
        padding: 0 1.1rem 1.15rem 1.1rem;
        font-size: 0.95rem;
    }
}
@media (max-width: 480px) {
    .faq-item summary::after { margin-top: 0.05rem; }
}

/*
################################
CTA Section
################################
*/
.closing-contact-section { text-align: center; }
.contact-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 6rem;
    align-items: stretch;
}

.contact-copy { text-align: left; }
.contact-copy h2 { margin-bottom: 1rem; }
.closing-contact-intro {
    font-size: max(1.5vw, 1.5vh);
    margin: 0 0 2rem 0;
    max-width: none;
    color: rgba(10,37,64,0.78);
    line-height: 1.6;
}
.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-benefit {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    text-align: left;
    padding: 1rem 1.1rem;
    background: rgba(255,255,255,0.65);
    border: 1px solid rgba(10,37,64,0.08);
    border-radius: 1rem;
    box-shadow: 0 10px 24px rgba(10,37,64,0.04);
    transition:
            transform 0.25s ease,
            box-shadow 0.25s ease,
            border-color 0.25s ease,
            background-color 0.25s ease;
}
.contact-benefit:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(10,37,64,0.07);
}
.contact-benefit-icon {
    border-radius: 0.7rem;
    color: #0a7d86;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-benefit strong {
    font-size: max(1vw, 1vh);
    display: block;
    margin-bottom: 0.25rem;
    color: #0a2540;
}
.contact-benefit p {
    margin: 0;
    line-height: 1.5;
    color: rgba(10,37,64,0.75);
}
.contact-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.info-box-kicker {
    margin: 0 0 0.35rem 0;
    font-size: max(0.8vw, 0.8vh);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: left;
}
.info-box-text {
    margin: 0 0 0.9rem 0;
    line-height: 1.55;
    color: rgba(10,37,64,0.78);
    text-align: left;
}
.info-box-links {
    margin: 0;
    line-height: 1.7;
    text-align: left;
}
.info-box-links a {
    color: #0a2540;
    font-weight: 600;
    text-decoration: none;
}
.info-box-links a:hover { color: #0a7d86; }
.contact-direct-links a {
    color: #0a2540;
    font-weight: 600;
    text-decoration: none;
}
.contact-direct-links a:hover { color: #0a7d86; }
form,
.info-box {
    background: rgba(255,255,255,0.96);
    padding: 2.2rem;
    border-radius: 1.5rem;
    box-shadow:
            0 10px 30px rgba(10,37,64,0.05),
            0 2px 10px rgba(10,37,64,0.03);
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(10,37,64,0.06);
}
.form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    min-width: 240px;
}
label {
    display: block;
    text-align: left;
    font-weight: 600;
    color: rgba(10,37,64,0.72);
    margin-bottom: 0.45rem;
    font-size: max(0.8vw, 0.8vh);
    letter-spacing: 0.01em;
}
input,
textarea {
    padding: 0.9rem 1rem;
    border-radius: 0.85rem;
    border: 1px solid rgba(10,37,64,0.12);
    outline: none;
    transition:
            border-color 0.2s ease,
            box-shadow 0.2s ease,
            background-color 0.2s ease;
    font-size: max(0.8vw, 0.8vh);
    color: #0a2540;
    background: #fff;
    box-sizing: border-box;
    width: 100%;
}
input::placeholder,
textarea::placeholder {
    color: rgba(10,37,64,0.38);
}
input:hover,
textarea:hover {
    border-color: rgba(10,37,64,0.18);
}
input:focus,
textarea:focus {
    border-color: #7fd1d3;
    box-shadow: 0 0 0 6px rgba(127,209,211,0.10);
    background: #fff;
}
textarea {
    resize: vertical;
    min-height: 120px;
}
.form-feedback {
    min-height: 1.2rem;
    margin: 0.5rem 0 0.5rem 0;
    font-size: 0.92rem;
    color: #9b2c2c;
    text-align: center;
}
.form-btn {
    background: linear-gradient(90deg, #0f2a44, #173a5c);
    padding: 0.9rem 1.5rem;
    border-radius: 14px;
    min-width: 260px;
    box-shadow: 0 12px 24px rgba(15,42,68,0.14);
    transition:
            transform 0.2s ease,
            box-shadow 0.2s ease,
            opacity 0.2s ease,
            background 0.2s ease;
}
.form-btn:hover {
    background: linear-gradient(90deg, #173a5c, #224769);
    box-shadow: 0 14px 28px rgba(15,42,68,0.18);
}
.form-btn:disabled {
    cursor: not-allowed;
    opacity: 0.78;
    transform: none;
    box-shadow: 0 8px 18px rgba(15,42,68,0.10);
}
.success-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.success-modal.is-visible {
    opacity: 1;
    pointer-events: auto;
}
.success-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 37, 64, 0.34);
    backdrop-filter: blur(6px);
}
.success-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 460px);
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(10,37,64,0.08);
    border-radius: 1.4rem;
    padding: 2rem 1.6rem;
    box-shadow: 0 24px 60px rgba(10,37,64,0.18);
    text-align: center;
    transform: translateY(10px) scale(0.98);
    transition: transform 0.3s ease;
}
.success-modal.is-visible,
.success-modal-dialog {
    transform: translateY(0) scale(1);
}
.success-modal-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1rem auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(127,209,211,0.16);
    color: #0a7d86;
    box-shadow: inset 0 0 0 1px rgba(10,125,134,0.08);
}
.success-modal-icon i {
    width: 30px;
    height: 30px;
}
.success-modal-dialog h3 {
    margin-bottom: 0.5rem;
    color: #0a2540;
}
.success-modal-dialog p {
    margin: 0;
    color: rgba(10,37,64,0.75);
    line-height: 1.55;
    font-size: 0.98rem;
}
@media (prefers-reduced-motion: reduce) {
    .success-modal,
    .success-modal-dialog,
    .form-btn,
    input,
    textarea { transition: none; }
}
.btn {
    font-size: max(0.8vw, 0.8vh);
    line-height: 1.3;
}

/* ##### responsive ##### */
@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .contact-copy {
        text-align: center;
        max-width: 680px;
        margin: 0 auto;
    }
    .closing-contact-intro {
        margin-left: auto;
        margin-right: auto;
    }
    .contact-benefit { text-align: left; }
    .contact-column { gap: 1rem; }
}
@media (max-width: 640px) {
    .closing-contact-section form,
    .info-box {
        padding: 1.4rem;
        border-radius: 1.2rem;
    }
    .contact-benefit { padding: 0.9rem 1rem; }
}
@media (max-width: 640px) {
    form,
    .info-box {
        padding: 1.35rem;
        border-radius: 1.2rem;
    }
    .form-group { min-width: 100%; }
    .form-btn { min-width: 100%; }
    .success-modal-dialog {
        padding: 1.7rem 1.2rem;
        border-radius: 1.2rem;
    }
}
@media (max-width: 580px) {
    .info-box-kicker,
    input,
    textarea,
    label,
    .btn {
        font-size: max(1.3vw, 1.3vh);
    }
    .contact-benefit strong { font-size: max(1.3vw, 1.3vh); }
    .closing-contact-intro { font-size: max(1.8vw, 1.8vh); }
}

/*
################################
Footer
################################
*/
.footer {
    background: #0a2540;
    color: white;
    padding: 5% 5% 0;
}
.footer-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
}
.footer-column {
    width: 20%;
    flex-shrink: 0;
}
.footer-column-content { max-width: 100%; }
.footer-column h4 {
    margin-bottom: 1rem;
    font-size: max(1vw, 1vh);
}
.footer-link {
    text-decoration: none;
    color: #7fd1d3;
    font-weight: 500;
    transition: 0.2s;
}
.footer-link:hover { font-weight: 550; }
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 2rem 0;
    margin-top: 3rem;
    font-size: max(0.8vw, 0.8vh);
    line-height: 1.3;
    opacity: 0.85;
}
.footer-column .footer-column-content {
    justify-content: center;
    align-items: center;
    width: 100%;
}
.footer-certificate-logo {
    width: 30%;
    height: auto;
    align-self: center;
}

/* ##### responsive ##### */
@media (max-width: 700px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-column {
        width: 100%;
        max-width: 380px;
    }
    .footer-column-content { max-width: 100%; }
}
@media (max-width: 580px) {
    .footer-column h4,
    .footer-bottom {
        font-size: max(1.5vw, 1.5vh);
    }
}

/*
################################
Legal Pages
################################
*/
.legal-page { margin: min(10vw, 10vh) 0; }
.legal-container {
    max-width: 760px;
    align-items: stretch;
}
.legal-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.legal-header h1 { margin-bottom: 0.75rem; }
.legal-subtitle {
    max-width: 620px;
    margin: 0 auto;
    color: rgba(10,37,64,0.7);
    line-height: 1.6;
}
.legal-content {
    background: #ffffff;
    border: 1px solid rgba(10,37,64,0.08);
    border-radius: 1.25rem;
    box-shadow: 0 10px 26px rgba(10,37,64,0.04);
    padding: 2rem;
    color: rgba(10,37,64,0.84);
    line-height: 1.7;
}
.legal-content h2 {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-subsection {
    display: grid;
    grid-template-columns: 2rem 1fr;
    gap: 0.5rem;
    align-items: start;
    margin-bottom: 1.25rem;
}
.legal-subsection h3 {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(10,37,64,0.62);
    font-weight: 700;
    text-align: left;
}
.legal-subsection-body { min-width: 0; }
.legal-subsection-body p:last-child { margin-bottom: 0; }
.legal-content p {
    margin: 0 0 1rem 0;
    text-align: justify;
    text-justify: inter-word;
}
.legal-content a {
    color: #0a2540;
    font-weight: 600;
    text-decoration: none;
}
.legal-content a:hover { color: #0a7d86; }
.legal-content ul {
    margin: 0 0 1rem 1.2rem;
    padding: 0;
}
.legal-actions {
    margin-bottom: 10vh;
    display: flex;
    justify-content: left;
}

/* ##### responsive ##### */
@media (max-width: 640px) {
    .legal-content {
        padding: 1.35rem;
        border-radius: 1rem;
    }
}

/*
################################
Article / Blog
################################
*/
.article-container { max-width: 720px; }
.article-header {
    text-align: center;
    margin-bottom: 3rem;
}
.article-header h1 {
    font-size: 2.4rem;
    line-height: 1.2;
}
.article-subtitle {
    color: rgba(10,37,64,0.7);
    font-size: 1.05rem;
    line-height: 1.5;
}
.article-content {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(10,37,64,0.85);
}
.article-content p { margin-bottom: 1.4rem; }
.article-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}
.article-cta {
    margin-top: 3rem;
    padding: 1.8rem;
    border-radius: 1.2rem;
    background: #f8f5f2;
    border: 1px solid rgba(10,37,64,0.08);
    text-align: center;
}
.article-cta p { margin-bottom: 1rem; }
.article-cta .btn { background: #0a2540; }