/*
Theme Name: Transmove
Theme URI: https://transmove.eu
Description: Transmove custom theme.
Author: Transmove
Version: 2.0.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: transmove
*/

/* --------------------------------------------------------------------------
   Design tokens — zipmend-style (blue + orange CTA) + dago-style (sections)
   -------------------------------------------------------------------------- */
:root {
    --tm-blue: #0d4a9e;
    --tm-blue-dark: #08356f;
    --tm-blue-soft: #e8f0fb;
    --tm-accent: #f4a01e;
    --tm-accent-hover: #e09010;
    --tm-cta-primary: #f58026;
    --tm-cta-primary-navy: #0c2744;
    --tm-text: #0c2744;
    --tm-muted: #5c6b7d;
    --tm-border: #d4e0ef;
    --tm-bg-page: #f5f8fc;
    --tm-white: #ffffff;
    --tm-success: #1a8f5c;
    --tm-radius: 10px;
    --tm-shadow: 0 8px 32px rgba(13, 74, 158, 0.12);
    --tm-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
    --tm-font-heading: "Montserrat", system-ui, sans-serif;
    --tm-font-body: "Inter", system-ui, sans-serif;
    --tm-font-cta: "Montserrat", system-ui, sans-serif;
    --tm-h1-slider: #003874;
    --tm-h1-on-dark: #ffffff;
    --tm-heading-accent: #f58026;
    --tm-body-text: #0c2744;
    --tm-promo-headline: #fb8518;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--tm-font-body);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
    color: var(--tm-body-text);
    background: var(--tm-bg-page);
}

/* Tipografija: Montserrat (naslovi / CTA), Inter (body) */
h1,
h2,
h3 {
    font-family: var(--tm-font-heading);
}

h1 {
    font-weight: 700;
    color: var(--tm-h1-slider);
}

.hero h1.hero-title {
    color: var(--tm-h1-on-dark);
}

h2,
h3 {
    font-weight: 600;
    color: var(--tm-heading-accent);
}

h2.header-promo-title {
    font-weight: 700;
    color: var(--tm-h1-slider);
}

a {
    color: var(--tm-blue);
}

a:hover,
a:focus-visible {
    color: var(--tm-blue-dark);
}

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

.container {
    width: 100%;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 8px;
    z-index: 10000;
    padding: 10px 16px;
    background: var(--tm-blue);
    color: var(--tm-white);
    text-decoration: none;
    border-radius: 6px;
}

.skip-link:focus {
    left: 8px;
}

/* Header — zipmend-like */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.62);
    border-bottom: 1px solid rgba(13, 74, 158, 0.1);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    backdrop-filter: blur(14px) saturate(160%);
    transition:
        box-shadow 0.35s ease,
        background-color 0.4s ease,
        border-color 0.4s ease,
        -webkit-backdrop-filter 0.4s ease,
        backdrop-filter 0.4s ease;
}

.site-header.shrink {
    background-color: rgba(238, 244, 249, 0.78);
    border-bottom-color: rgba(13, 74, 158, 0.16);
    box-shadow: var(--tm-shadow);
    -webkit-backdrop-filter: blur(18px) saturate(165%);
    backdrop-filter: blur(18px) saturate(165%);
}

.site-header.shrink .trust-strip {
    background: linear-gradient(
        90deg,
        rgba(227, 238, 248, 0.55) 0%,
        rgba(242, 247, 252, 0.48) 50%,
        rgba(227, 238, 248, 0.55) 100%
    );
    border-bottom-color: rgba(13, 74, 158, 0.12);
}

/* Ispod izbornika: home.png preko cijele sekcije + tekst + CTA */
.header-promo {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(180deg, #f5f9fd 0%, #e9f2fb 100%);
    border-bottom: 1px solid rgba(13, 74, 158, 0.12);
    padding: 16px 0 20px;
}

/* Pozadina: uploads/…/home.png — cijela širina sekcije (bez bijelog „milk“ sloja iznad slike) */
.header-promo--has-bg {
    background-color: #0d2844;
}

.header-promo--has-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: var(--header-promo-bg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    pointer-events: none;
}

/* Dvostupčani raspored: lijevo prazno (fotka), desno blok — tekst centriran unutar desne zone */
.header-promo-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 3.2fr) minmax(240px, min(100%, 520px));
    align-items: center;
    gap: clamp(12px, 2.5vw, 36px);
    padding: clamp(44px, 6vw, 72px) clamp(12px, 2.5vw, 28px) clamp(52px, 7vw, 80px)
        clamp(72px, min(26vw, 480px), 520px);
    max-width: 1240px;
    margin: 0 auto;
}

/* Široki ekran: blok uz desni rub; margin-right: još jedan korak ulijevo */
@media (min-width: 1025px) {
    .header-promo-inner {
        margin-left: auto;
        margin-right: min(200px, calc(5vw + 150px));
        width: 100%;
        max-width: 1240px;
        grid-template-columns: minmax(0, 1fr) minmax(240px, min(100%, 520px));
        gap: clamp(16px, 3vw, 40px);
        padding: clamp(44px, 6vw, 72px) min(24px, 3vw) clamp(52px, 7vw, 80px)
            clamp(52px, min(14vw, 200px), 240px);
    }
}

.header-promo-content {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: clamp(36px, 4.5vw, 48px);
    min-width: 0;
    text-align: center;
    padding: 20px 0 16px;
    width: 100%;
    justify-self: stretch;
}

.header-promo-copy {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    text-align: center;
}

.header-promo-title {
    margin: 0 0 1.15rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: var(--tm-h1-slider);
    text-align: center;
}

.header-promo-title-main {
    display: block;
    font-size: clamp(1.25rem, 2.35vw, 1.68rem);
    margin-bottom: 0.4em;
    text-align: center;
    color: var(--tm-promo-headline);
}

.header-promo-title-sub {
    display: block;
    font-size: clamp(0.98rem, 1.55vw, 1.12rem);
    font-weight: 600;
    color: var(--tm-body-text);
    letter-spacing: 0.01em;
    line-height: 1.35;
    text-align: center;
    width: 100%;
}

.header-promo-traits {
    margin: 0.65rem auto 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: clamp(0.25rem, 1vw, 0.6rem) clamp(0.35rem, 1.2vw, 0.85rem);
    width: 100%;
    max-width: 100%;
}

.header-promo-trait {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

/* Zaobljene „pill“ oznake umjesto krugova — bolje za duge riječi */
.header-promo-trait-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.62em 1.35em;
    box-sizing: border-box;
    border-radius: 999px;
    background: linear-gradient(
        165deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(230, 240, 250, 0.92) 45%,
        rgba(215, 232, 248, 0.88) 100%
    );
    border: 2px solid rgba(0, 56, 116, 0.42);
    color: #003874;
    font-size: clamp(0.76rem, 1.3vw, 0.9rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.04em;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 2px 4px rgba(0, 40, 90, 0.07),
        0 8px 22px rgba(0, 56, 116, 0.14);
    white-space: nowrap;
}

.header-promo-trait-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: rgba(0, 56, 116, 0.72);
    line-height: 0;
}

.header-promo-trait-arrow svg {
    width: clamp(1.25rem, 3vw, 1.55rem);
    height: clamp(1.25rem, 3vw, 1.55rem);
    display: block;
}

@media (max-width: 520px) {
    .header-promo-trait-badge {
        padding: 0.45em 0.75em;
        font-size: clamp(0.68rem, 3vw, 0.82rem);
    }

    .header-promo-trait-arrow svg {
        width: clamp(1rem, 2.8vw, 1.25rem);
        height: clamp(1rem, 2.8vw, 1.25rem);
    }
}

.header-promo .header-promo-cta {
    align-self: center;
}

@media (max-width: 1024px) {
    .header-promo {
        padding: 12px 0 16px;
    }

    .header-promo-inner {
        grid-template-columns: 1fr;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        padding: 40px 22px 48px;
        gap: 32px;
    }

    .header-promo-content {
        grid-column: 1;
        padding: 12px 10px 16px;
        align-items: center;
        max-width: min(36rem, 100%);
        margin-left: auto;
        margin-right: auto;
    }

    .header-promo-copy {
        max-width: 100%;
    }

    .header-promo-traits {
        max-width: 100%;
    }
}

.trust-strip {
    background: linear-gradient(
        90deg,
        rgba(232, 240, 251, 0.5) 0%,
        rgba(255, 255, 255, 0.38) 50%,
        rgba(232, 240, 251, 0.5) 100%
    );
    border-bottom: 1px solid rgba(13, 74, 158, 0.1);
    font-size: 0.8rem;
    color: var(--tm-muted);
    padding: 6px 0;
    text-align: center;
}

.trust-strip strong {
    color: var(--tm-text);
}

.header-grid {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
}

/* Jedna ujednačena gornja traka: logo | CTA | servis */
.header-row-top {
    display: grid;
    grid-template-areas: "logo cta service";
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    column-gap: clamp(16px, 2.5vw, 28px);
    padding: 16px 0 14px;
}

.logo-zone {
    grid-area: logo;
    justify-self: start;
}

.logo-zone .custom-logo-link {
    display: inline-block;
    line-height: 0;
}

.logo-zone .custom-logo-link img,
.logo-zone .logo-img {
    height: 68px;
    width: auto;
    display: block;
    transition: height 0.25s ease;
}

.site-header.shrink .logo-zone .custom-logo-link img,
.site-header.shrink .logo-zone .logo-img {
    height: 56px;
}

.logo-text {
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--tm-blue);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo-text:hover {
    color: var(--tm-blue-dark);
}

.menu-zone {
    width: 100%;
    border-top: 1px solid var(--tm-border);
    padding: 16px 0 14px;
    margin: 0;
}

.menu-zone .menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 0;
    row-gap: 10px;
    margin: 0 auto;
    padding: 0;
    max-width: 100%;
}

.menu-zone .menu > li {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Vertikalna crtica između stavki (desktop) */
.menu-zone .menu > li:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 1.15em;
    margin-left: 0.7rem;
    margin-right: 0.7rem;
    background: rgba(13, 74, 158, 0.2);
    border-radius: 1px;
    flex-shrink: 0;
    align-self: center;
}

.menu-zone .menu > li > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #2a4665;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 8px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.menu-zone .menu > li > a:hover,
.menu-zone .menu > li > a:focus-visible {
    color: var(--tm-blue);
    background: var(--tm-blue-soft);
    outline: none;
}

.menu-zone .menu > li.current-menu-item > a,
.menu-zone .menu > li.current_page_item > a,
.menu-zone .menu > li > a[aria-current="page"] {
    color: var(--tm-blue);
    background: #e0ecf9;
}

.service-zone {
    grid-area: service;
    justify-self: end;
}

/* Sekundarni blok: dva panela — Öffnungszeiten | Kontakt */
.service-zone-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px 16px 12px 18px;
    min-width: 280px;
    max-width: 100%;
    background: var(--tm-white);
    border: 1px solid #e4edf6;
    border-radius: 10px;
    box-shadow: 0 1px 2px rgba(15, 45, 90, 0.05);
    line-height: 1.3;
    position: relative;
}

.service-zone-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 2px;
    border-radius: 0 2px 2px 0;
    background: rgba(13, 74, 158, 0.35);
}

.service-zone-eyebrow {
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--tm-blue);
    text-align: right;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(13, 74, 158, 0.1);
}

.service-zone-split {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 16px;
}

.service-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    min-width: 0;
}

.service-panel-title {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--tm-muted);
}

.service-panel--hours {
    flex: 0 1 auto;
    padding-right: 4px;
}

.service-panel--contact {
    flex: 0 1 auto;
    padding-left: 16px;
    border-left: 1px solid rgba(13, 74, 158, 0.12);
}

.service-zone .service-hours {
    font-size: 0.82rem;
    color: var(--tm-text);
    font-weight: 700;
    line-height: 1.35;
}

.service-zone .service-phone {
    color: var(--tm-text);
    text-decoration: none;
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.service-zone .service-email {
    color: var(--tm-blue);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    word-break: break-all;
    text-align: right;
}

.service-zone .service-report {
    display: block;
    color: #6b7f94;
    text-decoration: none;
    font-size: 0.74rem;
    font-weight: 600;
    text-align: right;
    padding-top: 8px;
    margin-top: 2px;
    border-top: 1px dashed rgba(13, 74, 158, 0.15);
}

.service-zone .service-report:hover,
.service-zone .service-report:focus-visible {
    color: var(--tm-blue);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.service-zone .service-phone:hover,
.service-zone .service-email:hover,
.service-zone .service-phone:focus-visible,
.service-zone .service-email:focus-visible {
    color: var(--tm-blue-dark);
    outline: none;
}

.cta-zone {
    grid-area: cta;
    justify-self: center;
    min-width: 0;
}

.cta-zone .header-cta,
.header-promo .header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55em 0.65em;
    text-decoration: none;
    white-space: nowrap;
    padding: 15px 28px;
    border-radius: 10px;
    font-family: var(--tm-font-cta);
    font-weight: 800;
    font-size: 1.08rem;
    letter-spacing: 0.02em;
    box-shadow: none;
    transition:
        background-color 0.3s ease-in-out,
        color 0.3s ease-in-out,
        border-color 0.3s ease-in-out,
        box-shadow 0.3s ease-in-out;
}

/* Primary CTA (header bar) */
.cta-zone .header-cta {
    background-color: var(--tm-cta-primary);
    color: #ffffff;
    border: 2px solid var(--tm-cta-primary);
}

/* Promo CTA — iste boje kao primarni gumb (header) */
.header-promo .header-cta {
    background-color: var(--tm-cta-primary);
    color: #ffffff;
    border: 2px solid var(--tm-cta-primary);
    font-size: clamp(0.95rem, 1.4vw, 1.05rem);
    padding: 14px 26px;
    box-shadow: 0 4px 14px rgba(245, 128, 38, 0.35);
}

.header-cta-icon {
    display: inline-flex;
    flex-shrink: 0;
    line-height: 0;
}

.header-cta-icon svg {
    width: 1.15em;
    height: 1.15em;
    display: block;
}

.header-cta-label {
    line-height: 1.2;
}

.cta-zone .header-cta:hover,
.cta-zone .header-cta:focus-visible {
    background-color: #ffffff;
    color: var(--tm-cta-primary-navy);
    border-color: var(--tm-cta-primary-navy);
    outline: none;
}

.header-promo .header-cta:hover,
.header-promo .header-cta:focus-visible {
    background-color: #ffffff;
    color: var(--tm-cta-primary-navy);
    border-color: var(--tm-cta-primary-navy);
    box-shadow: 0 4px 16px rgba(12, 39, 68, 0.12);
    outline: none;
}

.hamburger {
    display: none;
    grid-area: hamburger;
    border: 0;
    background: transparent;
    padding: 8px;
    margin: 0;
    cursor: pointer;
    justify-self: end;
    align-self: center;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background-color: var(--tm-text);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger span + span {
    margin-top: 5px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero — jednobojna pozadina #003874; naslov bijel; kartice bijele s tamnim tekstom */
.hero {
    position: relative;
    background: #003874;
    color: var(--tm-white);
    padding: 56px 0 64px;
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.95;
    margin-bottom: 1.25rem;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    max-width: 100%;
    line-height: 1.35;
}

.hero-title {
    margin: 0 0 1.5rem;
    max-width: 920px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-title--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 960px;
    align-items: center;
}

.hero-title-brand {
    font-size: clamp(1.85rem, 4.5vw, 2.65rem);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.03em;
    text-wrap: balance;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 28, 56, 0.22);
}

.hero-title-sub {
    display: block;
    font-size: clamp(1.05rem, 2.3vw, 1.4rem);
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 0.01em;
    color: rgba(248, 250, 252, 0.96);
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 36em;
}

.hero-title--center .hero-title-sub {
    max-width: 42em;
    margin-left: auto;
    margin-right: auto;
}

.hero-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(20px, 3.2vw, 32px);
    margin: 0 0 36px;
}

.hero-card {
    background: #ffffff;
    border: 1px solid rgba(12, 39, 68, 0.12);
    border-radius: 16px;
    padding: 24px 22px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 10px 32px rgba(0, 24, 56, 0.18);
}

.hero-card .hero-lead {
    font-size: 1.05rem;
    color: #000000;
    max-width: none;
    margin: 0;
    line-height: 1.62;
    opacity: 1;
}

.hero-lead {
    font-size: 1.05rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 0 16px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.hero-actions--center {
    justify-content: center;
    width: 100%;
    gap: 14px;
}

/* Sekundarni gumb na hero pozadini — čitljiviji od „golog“ navy obruba */
.hero .btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.88);
    box-shadow: 0 2px 12px rgba(0, 24, 48, 0.15);
}

.hero .btn-secondary:hover,
.hero .btn-secondary:focus-visible {
    background: #ffffff;
    color: #0c2744;
    border-color: #ffffff;
    box-shadow: 0 4px 18px rgba(0, 24, 48, 0.18);
    outline: none;
}

.hero .btn-primary {
    box-shadow:
        0 2px 0 rgba(255, 255, 255, 0.2) inset,
        0 6px 22px rgba(245, 128, 38, 0.42);
}

@media (max-width: 768px) {
    .hero-cards {
        grid-template-columns: 1fr;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 8px;
    font-family: var(--tm-font-cta);
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
    background: var(--tm-cta-primary);
    color: #ffffff;
    border: 2px solid var(--tm-cta-primary);
    box-shadow: 0 4px 14px rgba(245, 128, 38, 0.35);
    transition:
        background-color 0.3s ease-in-out,
        color 0.3s ease-in-out,
        border-color 0.3s ease-in-out,
        box-shadow 0.3s ease-in-out;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: #ffffff;
    color: #0c2744;
    border-color: #0c2744;
    box-shadow: 0 4px 16px rgba(12, 39, 68, 0.12);
    transform: none;
    outline: none;
}

.btn-secondary {
    background: transparent;
    color: var(--tm-cta-primary-navy);
    border: 2px solid var(--tm-cta-primary-navy);
    box-shadow: none;
    transition:
        background-color 0.3s ease-in-out,
        color 0.3s ease-in-out,
        border-color 0.3s ease-in-out;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    background: var(--tm-cta-primary-navy);
    color: #ffffff;
    border-color: var(--tm-cta-primary-navy);
    outline: none;
}

/* Benefits — dago-style cards */
.section {
    padding: 56px 0;
}

.section-alt {
    background: var(--tm-white);
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}

.section-head h2 {
    margin: 0 0 10px;
    font-size: clamp(1.5rem, 3vw, 1.85rem);
}

.section-head p {
    margin: 0;
    color: var(--tm-muted);
    font-size: 1.05rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.benefit-card {
    background: var(--tm-white);
    border: 1px solid var(--tm-border);
    border-radius: var(--tm-radius);
    padding: 24px 22px;
    box-shadow: 0 4px 20px rgba(13, 74, 158, 0.06);
}

.benefit-card h3 {
    margin: 0 0 10px;
    font-size: 1.1rem;
}

.benefit-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--tm-muted);
}

.benefit-card .check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--tm-text);
}

.benefit-card .check::before {
    content: "";
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 2px;
    background: var(--tm-cta-primary);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M6.5 11.5L3 8l1.4-1.4 2.1 2.1L11.6 4 13 5.4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
}

.benefit-note {
    display: block;
    margin-top: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--tm-muted);
}

/* Jedan blok: Heute noch geliefert + Sofortiges Angebot (bez tamne trake) */
.vorteile-cta-bottom {
    margin-top: clamp(28px, 4vw, 44px);
    padding-top: clamp(28px, 4vw, 40px);
    border-top: 1px solid rgba(13, 74, 158, 0.12);
    text-align: center;
    scroll-margin-top: 96px;
}

.vorteile-cta-bottom h2 {
    margin: 0 auto 20px;
    max-width: 920px;
    font-size: clamp(1.35rem, 3vw, 1.65rem);
    line-height: 1.3;
}

/* Interest block */
.interest-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    background: var(--tm-white);
    border: 1px solid var(--tm-border);
    border-radius: var(--tm-radius);
    padding: 32px 28px;
    box-shadow: var(--tm-shadow);
}

.interest-grid h2 {
    margin: 0 0 8px;
    font-size: 1.45rem;
}

.interest-grid > div > p {
    margin: 0;
    color: var(--tm-muted);
}

/* Haben wir Ihr Interesse geweckt? — tamnoplava traka */
.section-interest {
    background-color: #003874;
}

.section-interest .interest-grid {
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.section-interest .interest-grid > div > p {
    color: rgba(255, 255, 255, 0.88);
}

/* Sekundarni gumb na tamnoplavoj: bijeli obrub/tekst (globalni navy na #003874 je slabo čitljiv) */
.section-interest .btn-secondary {
    color: #ffffff;
    border-color: #ffffff;
}

.section-interest .btn-secondary:hover,
.section-interest .btn-secondary:focus-visible {
    background: #ffffff;
    color: #0c2744;
    border-color: #0c2744;
    outline: none;
}

.interest-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.btn-outline {
    background: var(--tm-white);
    color: var(--tm-blue);
    border: 2px solid var(--tm-blue);
}

.btn-outline:hover {
    background: var(--tm-blue-soft);
}

.btn-phone {
    background: var(--tm-blue);
    color: var(--tm-white);
}

.btn-phone:hover {
    background: var(--tm-blue-dark);
    color: var(--tm-white);
}

/* Prose section — dago-like long copy */
.prose-section {
    background: var(--tm-bg-page);
}

.prose-block {
    max-width: 880px;
    margin: 0 auto;
}

.prose-block h2 {
    margin: 0 0 16px;
    font-size: 1.65rem;
}

.prose-block p {
    margin: 0 0 16px;
    color: var(--tm-muted);
    font-size: 1.05rem;
}

.prose-block p:last-child {
    margin-bottom: 0;
}

/* Über Uns (page-uber-uns.php) */
.uber-uns-page .uber-uns-block + .uber-uns-block {
    margin-top: clamp(36px, 5vw, 52px);
    padding-top: clamp(28px, 4vw, 40px);
    border-top: 1px solid rgba(13, 74, 158, 0.12);
}

.uber-uns-page .uber-uns-block:first-child {
    padding-top: 0;
}

.uber-uns-footnote {
    margin-top: 4px !important;
    margin-bottom: 0 !important;
    font-size: 0.92rem;
    font-weight: 600;
    font-style: italic;
    color: var(--tm-muted);
}

/* Über Uns — Fahrzeugtypen (3 Fotos) */
.uber-fleet {
    padding-top: 48px;
    padding-bottom: 40px;
    scroll-margin-top: 96px;
}

.uber-fleet__heading {
    margin: 0 0 8px;
    text-align: center;
    font-size: clamp(1.2rem, 2.6vw, 1.45rem);
    color: var(--tm-blue);
}

.uber-fleet__hint {
    margin: 0 auto 24px;
    max-width: 640px;
    text-align: center;
    font-size: 0.92rem;
    color: var(--tm-muted);
    line-height: 1.5;
}

.uber-fleet__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2.5vw, 22px);
    max-width: 1100px;
    margin: 0 auto;
}

.uber-fleet-card {
    display: flex;
    flex-direction: column;
    background: var(--tm-white);
    border: 1px solid var(--tm-border);
    border-radius: var(--tm-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(13, 74, 158, 0.06);
}

.uber-fleet-card__media {
    background: linear-gradient(145deg, #e8f0fb 0%, #dce8f6 100%);
}

.uber-fleet-card__img {
    width: 100%;
    height: clamp(120px, 18vw, 150px);
    object-fit: cover;
    object-position: center;
    display: block;
}

.uber-fleet-card__placeholder {
    height: clamp(120px, 18vw, 150px);
    min-height: 110px;
    background: repeating-linear-gradient(
        -45deg,
        rgba(13, 74, 158, 0.07),
        rgba(13, 74, 158, 0.07) 10px,
        rgba(13, 74, 158, 0.02) 10px,
        rgba(13, 74, 158, 0.02) 20px
    );
    border-bottom: 1px dashed rgba(13, 74, 158, 0.2);
}

.uber-fleet-card__body {
    padding: 14px 16px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.uber-fleet-card__title {
    margin: 0 0 4px;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--tm-text);
}

.uber-fleet-card__price {
    margin: 0 0 12px;
    font-family: var(--tm-font-cta);
    font-size: 1rem;
    font-weight: 800;
    color: var(--tm-cta-primary);
}

.uber-fleet-card__specs {
    margin: 0;
    padding: 12px 0 0;
    border-top: 1px solid rgba(13, 74, 158, 0.12);
    font-size: 0.86rem;
}

.uber-fleet-card__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 6px 10px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(13, 74, 158, 0.06);
}

.uber-fleet-card__row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.uber-fleet-card__row dt {
    margin: 0;
    font-weight: 700;
    color: var(--tm-muted);
}

.uber-fleet-card__row dd {
    margin: 0;
    font-weight: 600;
    color: var(--tm-text);
    text-align: right;
}

@media (max-width: 820px) {
    .uber-fleet__grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .uber-fleet-card__row dd {
        text-align: left;
    }
}

/* Zuverlässige Netzwerke — tekst + slika (kombi) */
.prose-block--split {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 48px);
    max-width: 1120px;
    margin: 0 auto;
    align-items: center;
}

.prose-block--split .prose-block__text h2 {
    margin: 0 0 14px;
}

.prose-block--split .prose-block__text p {
    margin: 0;
    font-size: 1.06rem;
    line-height: 1.65;
}

.prose-block__figure {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(145deg, #e8f0fb 0%, #dce8f6 100%);
    box-shadow:
        0 14px 44px rgba(13, 74, 158, 0.14),
        0 2px 10px rgba(12, 39, 68, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.85);
}

/* Cijela fotografija vidljiva — bez rezanja (prijašnji aspect-ratio + cover) */
.prose-block__img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 899px) {
    .prose-block--split {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Contact form — samo background-color, da skraćenica `background:` ne resetira sliku */
.contact-section {
    background-color: var(--tm-white);
    border-top: 2px solid #003874;
}

/* Pozadinska karta: <img> + overlay (pouzdanije od CSS background + var) */
.contact-section.contact-section--has-map {
    position: relative;
    overflow: hidden;
    background-color: #eef4f9;
    border-top: 2px solid #003874;
    border-bottom: 1px solid rgba(13, 74, 158, 0.08);
}

.contact-section__map-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

.contact-layout--over-map {
    position: relative;
    z-index: 1;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-intro h2 {
    margin: 0 0 12px;
    font-size: 1.5rem;
}

.contact-intro p {
    margin: 0;
    color: var(--tm-muted);
}

.contact-form {
    display: grid;
    gap: 14px;
}

.contact-form label {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--tm-text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--tm-border);
    border-radius: 8px;
    font: inherit;
    background: #fafcfe;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form .consent-heading {
    margin: 8px 0 0;
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--tm-text);
}

.contact-form .checkbox-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.88rem;
    color: var(--tm-muted);
}

.contact-form .checkbox-row input {
    width: auto;
    margin-top: 4px;
}

.contact-form .btn-primary {
    justify-self: start;
    margin-top: 4px;
}

.form-hint {
    font-size: 0.82rem;
    color: var(--tm-muted);
    margin-top: 8px;
}

/* Site footer */
.site-footer {
    background: #0c2744;
    color: rgba(255, 255, 255, 0.85);
    padding: 36px 0 28px;
    font-size: 0.9rem;
}

.site-footer a {
    color: var(--tm-white);
    text-decoration: none;
    font-weight: 600;
}

.site-footer a:hover {
    text-decoration: underline;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    justify-content: center;
    margin-bottom: 16px;
}

.site-footer .copy {
    text-align: center;
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.75;
}

/* Fallback index */
.page-simple {
    padding: 60px 0 80px;
    max-width: 720px;
}

.page-simple h1 {
    margin-top: 0;
    color: var(--tm-h1-slider);
}

/* Lösungen (page-loesungen.php) */
.solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

@media (min-width: 768px) {
    .solutions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.solution-card {
    background: var(--tm-white);
    border: 1px solid var(--tm-border);
    border-radius: var(--tm-radius);
    padding: 26px 24px;
    box-shadow: 0 4px 20px rgba(13, 74, 158, 0.06);
    scroll-margin-top: 100px;
    overflow: hidden;
}

.solution-card__media {
    margin: -26px -24px 18px;
    border-radius: calc(var(--tm-radius) - 1px) calc(var(--tm-radius) - 1px) 0 0;
    overflow: hidden;
    background: linear-gradient(145deg, #e8f0fb 0%, #dce8f6 100%);
}

.solution-card__thumb {
    width: 100%;
    height: clamp(120px, 22vw, 168px);
    object-fit: cover;
    object-position: center;
    display: block;
}

.solution-card__thumb-placeholder {
    height: clamp(120px, 22vw, 168px);
    min-height: 120px;
    background: repeating-linear-gradient(
        -45deg,
        rgba(13, 74, 158, 0.07),
        rgba(13, 74, 158, 0.07) 10px,
        rgba(13, 74, 158, 0.02) 10px,
        rgba(13, 74, 158, 0.02) 20px
    );
    border-bottom: 1px dashed rgba(13, 74, 158, 0.22);
}

.solution-card__title {
    margin: 0 0 12px;
    font-size: clamp(1.12rem, 2.2vw, 1.28rem);
    line-height: 1.25;
    color: var(--tm-text);
}

.solution-card__lead {
    margin: 0 0 8px;
    font-size: 1rem;
    line-height: 1.55;
    color: var(--tm-text);
}

.solution-card__tagline {
    margin: 0 0 14px;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--tm-blue-dark);
}

.solution-card__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.solution-card__list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 0.94rem;
    line-height: 1.5;
    color: var(--tm-muted);
}

.solution-card__list li:last-child {
    margin-bottom: 0;
}

.solution-card__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35em;
    width: 18px;
    height: 18px;
    background: var(--tm-cta-primary);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M6.5 11.5L3 8l1.4-1.4 2.1 2.1L11.6 4 13 5.4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}

.loesungen-more {
    font-size: 1.05rem;
    line-height: 1.65;
}

.loesungen-more__question {
    display: block;
    margin-bottom: 0.65rem;
    font-family: var(--tm-font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--tm-blue);
    letter-spacing: -0.02em;
}

.loesungen-contact-highlight {
    display: inline-block;
    margin: 0 0.12em;
    padding: 0.12em 0.35em;
    font-family: var(--tm-font-cta);
    font-weight: 800;
    font-size: 1.05em;
    color: var(--tm-blue-dark);
    text-decoration: none;
    background: var(--tm-blue-soft);
    border-radius: 6px;
    border: 1px solid rgba(13, 74, 158, 0.22);
    vertical-align: baseline;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.loesungen-contact-highlight:hover,
.loesungen-contact-highlight:focus-visible {
    background: var(--tm-blue);
    color: var(--tm-white);
    border-color: var(--tm-blue);
    outline: none;
}

/* Lösungen — Planen-Sprinter Galerie (3 Fotos aus uploads) */
.loesungen-planen-sprinter {
    scroll-margin-top: 96px;
}

.loesungen-planen-sprinter__intro {
    max-width: 800px;
    margin: 0 auto 32px;
    text-align: center;
}

.loesungen-planen-sprinter__text {
    margin: 0;
    padding: 1.15rem 1.35rem;
    font-family: var(--tm-font-heading);
    font-size: clamp(1.05rem, 2.2vw, 1.2rem);
    font-weight: 600;
    line-height: 1.55;
    color: var(--tm-blue-dark);
    text-wrap: balance;
    background: linear-gradient(135deg, var(--tm-blue-soft) 0%, rgba(232, 240, 251, 0.65) 100%);
    border: 1px solid rgba(13, 74, 158, 0.18);
    border-left: 4px solid var(--tm-cta-primary);
    border-radius: var(--tm-radius);
    box-shadow: 0 6px 24px rgba(13, 74, 158, 0.08);
}

.loesungen-planen-sprinter__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2.5vw, 24px);
    max-width: 1120px;
    margin: 0 auto;
}

.loesungen-planen-sprinter__figure {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(145deg, #e8f0fb 0%, #dce8f6 100%);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow:
        0 14px 44px rgba(13, 74, 158, 0.12),
        0 2px 10px rgba(12, 39, 68, 0.06);
}

.loesungen-planen-sprinter__img {
    width: 100%;
    height: auto;
    display: block;
}

.loesungen-planen-sprinter__placeholder {
    aspect-ratio: 4 / 3;
    min-height: 160px;
    background: repeating-linear-gradient(
        -45deg,
        rgba(13, 74, 158, 0.06),
        rgba(13, 74, 158, 0.06) 12px,
        rgba(13, 74, 158, 0.02) 12px,
        rgba(13, 74, 158, 0.02) 24px
    );
    border: 2px dashed rgba(13, 74, 158, 0.2);
}

@media (max-width: 768px) {
    .loesungen-planen-sprinter__grid {
        grid-template-columns: 1fr;
    }
}

.section-interest .interest-grid h2 {
    color: #ffffff;
}

/* Impressum (page-impressum.php) */
.hero--legal {
    padding: 40px 0 48px;
}

.hero--legal .hero-title {
    margin-bottom: 0;
}

.impressum-page {
    padding-top: 32px;
    padding-bottom: 56px;
}

.impressum-wrap {
    max-width: 820px;
    margin: 0 auto;
}

.impressum-block {
    margin-bottom: clamp(28px, 4vw, 40px);
    padding-bottom: clamp(24px, 3vw, 32px);
    border-bottom: 1px solid rgba(13, 74, 158, 0.12);
}

.impressum-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.impressum-block__title {
    margin: 0 0 14px;
    font-size: clamp(1.05rem, 2.2vw, 1.2rem);
    font-weight: 800;
    color: var(--tm-blue-dark);
}

.impressum-block__content {
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--tm-muted);
}

.impressum-block__content p {
    margin: 0 0 12px;
}

.impressum-block__content p:last-child {
    margin-bottom: 0;
}

.impressum-block__content a {
    color: var(--tm-blue);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.impressum-block__content a:hover,
.impressum-block__content a:focus-visible {
    color: var(--tm-blue-dark);
    outline: none;
}

.impressum-lines {
    white-space: pre-line;
}

/* Datenschutz (page-datenschutz.php) */
.datenschutz-page .datenschutz-wrap {
    max-width: 860px;
    margin: 0 auto;
}

.datenschutz-body {
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--tm-muted);
    word-wrap: break-word;
}

.datenschutz-body a {
    color: var(--tm-blue);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.datenschutz-body a:hover,
.datenschutz-body a:focus-visible {
    color: var(--tm-blue-dark);
    outline: none;
}

.datenschutz-body strong {
    color: var(--tm-text);
    font-weight: 800;
}

/* FAQ (page-faq.php) */
.faq-page .faq-wrap {
    max-width: 820px;
    margin: 0 auto;
}

.faq-section {
    margin-bottom: clamp(36px, 5vw, 52px);
    scroll-margin-top: 96px;
}

.faq-section:last-child {
    margin-bottom: 0;
}

.faq-section__title {
    margin: 0 0 20px;
    padding-bottom: 12px;
    font-size: clamp(1.28rem, 2.8vw, 1.55rem);
    font-weight: 700;
    color: var(--tm-blue);
    border-bottom: 2px solid rgba(13, 74, 158, 0.2);
}

.faq-item {
    margin-bottom: 10px;
    background: var(--tm-white);
    border: 1px solid var(--tm-border);
    border-radius: var(--tm-radius);
    box-shadow: 0 2px 12px rgba(13, 74, 158, 0.05);
    overflow: hidden;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item__summary {
    position: relative;
    padding: 16px 44px 16px 18px;
    font-family: var(--tm-font-heading);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--tm-text);
    cursor: pointer;
    list-style: none;
}

.faq-item__summary::-webkit-details-marker {
    display: none;
}

.faq-item__summary::after {
    content: "";
    position: absolute;
    right: 18px;
    top: 50%;
    width: 10px;
    height: 10px;
    margin-top: -6px;
    border-right: 2px solid var(--tm-blue);
    border-bottom: 2px solid var(--tm-blue);
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    opacity: 0.75;
}

.faq-item[open] .faq-item__summary::after {
    transform: rotate(225deg);
    margin-top: -3px;
}

.faq-item__summary:hover,
.faq-item__summary:focus-visible {
    background: var(--tm-blue-soft);
    outline: none;
}

.faq-item__body {
    padding: 0 18px 18px;
    border-top: 1px solid rgba(13, 74, 158, 0.1);
}

.faq-item__body p {
    margin: 14px 0 0;
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--tm-muted);
}

/* Responsive */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

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

    .interest-actions {
        justify-content: flex-start;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .header-row-top {
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "logo hamburger"
            "cta cta"
            "service service";
        column-gap: 12px;
        row-gap: 10px;
        padding: 12px 0 12px;
    }

    .hamburger {
        display: inline-block;
    }

    .cta-zone {
        justify-self: center;
    }

    .service-zone {
        justify-self: stretch;
        width: 100%;
    }

    .service-zone-card {
        align-items: stretch;
        width: 100%;
        min-width: 0;
        padding: 12px 16px 14px 18px;
    }

    .service-zone-eyebrow {
        text-align: left;
    }

    .service-zone-split {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .service-panel {
        align-items: flex-start;
    }

    .service-panel--contact {
        padding-left: 0;
        padding-top: 12px;
        border-left: none;
        border-top: 1px solid rgba(13, 74, 158, 0.12);
    }

    .service-zone .service-email {
        text-align: left;
    }

    .service-zone .service-report {
        text-align: left;
    }

    .logo-zone .custom-logo-link img,
    .logo-zone .logo-img {
        height: 58px;
    }

    .site-header.shrink .logo-zone .custom-logo-link img,
    .site-header.shrink .logo-zone .logo-img {
        height: 50px;
    }

    .cta-zone .header-cta {
        padding: 13px 22px;
        font-size: 1rem;
        white-space: normal;
        text-align: center;
    }

    .header-promo .header-cta {
        padding: 12px 20px;
        font-size: clamp(0.88rem, 2.8vw, 1rem);
        white-space: normal;
        text-align: center;
    }

    .menu-zone {
        margin-top: 4px;
        padding-top: 0;
        border-top: 0;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, opacity 0.25s ease;
    }

    .menu-zone.active {
        max-height: 85vh;
        opacity: 1;
        margin-top: 8px;
        padding-top: 10px;
        border-top: 1px solid var(--tm-border);
    }

    .menu-zone .menu {
        flex-direction: column;
        align-items: stretch;
        row-gap: 0;
        padding: 4px 8px 12px;
        background: var(--tm-blue-soft);
        border-radius: var(--tm-radius);
        border: 1px solid var(--tm-border);
    }

    .menu-zone .menu > li {
        display: block;
    }

    .menu-zone .menu > li:not(:last-child)::after {
        display: none;
    }

    .menu-zone .menu > li + li {
        border-top: 1px solid rgba(13, 74, 158, 0.12);
    }

    .menu-zone .menu > li > a {
        font-size: 1.05rem;
        padding: 14px 16px;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    .interest-actions {
        flex-direction: column;
    }

    .interest-actions .btn {
        width: 100%;
    }
}
