:root {
    /* --- Base --- */
    --radius-base: 15px;
    --base-transition: all 0.3s ease-in-out;

    --navbar-text-color: rgba(0, 0, 0, 0.65);
    --floating-box-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
    --box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.12);;

    /* --- Section 1: White --- */
    --s1-bg: #ffffff;
    --s1-text: #1e1e1e;

    /* --- Section 2: Off-white --- */
    --s2-bg: #f4f4f5;
    --s2-text: #1e1e1e;

    /* --- Section 3: Dark navy --- */
    --s3-bg: #132133;
    --s3-text: #ffffff;

    /* --- Accent --- */
    --primary-customer-color: rgb(6 78 138);
    --primary-customer-color-text: #fff;
    --accent-light: rgba(26, 86, 219, 0.10);


    /* -- Variable */
    --font-size-h1: 3.8rem;
    --font-size-h2: 2.8rem;
    --font-size-h3: 2.2rem;
    --font-size-h4: 1.5rem;
    --font-size-text: 1.2rem;
    --font-size-small: 1rem;
    --font-size-tiny: 0.8rem;

    /* --- Stars --- */
    --star: #f59e0b;
}

h1 {
    font-size: var(--font-size-h1);
}

h2 {
    font-size: var(--font-size-h2);
}

h3 {
    font-size: var(--font-size-h3);
}

/* =============================================================
   RESET / BASE
============================================================= */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    overflow-x: clip;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    font-size: var(--font-size-text);
    background: var(--s1-bg);
    color: var(--s1-text);
    margin: 0;
    font-weight: 400;
}

.hidden {
    visibility: hidden;
}

/* =============================================================
   CONTAINER – 95% wide
============================================================= */
.container {
    width: 95% !important;
    max-width: 1500px;
}

.rounded-base {
    border-radius: var(--radius-base) !important;
}

.section-1 {
    padding-block: clamp(60px, 11vw, 80px);
    background: var(--s1-bg);
    color: var(--s1-text);
}

.section-2 {
    padding-block: clamp(60px, 11vw, 80px);
    background: var(--s2-bg);
    color: var(--s2-text);
}

.section-3 {
    padding-block: clamp(60px, 11vw, 80px);
    background: var(--primary-customer-color);
    color: var(--primary-customer-color-text);
    backdrop-filter: brightness(0.1);
}

/* Rounded primary-color card used inside .section-1 to host an
   accent block (e.g. About section) without coloring the full section. */
.about-rounded-box {
    background: var(--primary-customer-color);
    color: var(--primary-customer-color-text);
    padding: clamp(2rem, 5vw, 4rem);
}

.about-rounded-box .section-eyebrow {
    color: var(--primary-customer-color-text);
    opacity: 0.7;
}

section p {
    font-size: 1.2rem;
}


@media (max-width: 767px) {
    .section-pad {
        padding: 3rem 0;
    }
}

/* Shared typography */
.section-eyebrow {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-customer-color);
    margin-bottom: 0.2rem;
}

.section-3 .section-eyebrow {
    color: rgba(255, 255, 255, 0.45);
}

.simple-header__subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--primary-customer-color);
    margin-bottom: 0;
}

.section-heading {
    line-height: 1.2;
    margin: 0;
}


.btn-customer-primary-outline {
    border: 1.5px solid var(--primary-customer-color);
    color: var(--primary-customer-color);
    border-radius: 10px;
    padding: 0.42rem 1.1rem;
    font-size: 0.8rem;
    font-weight: 600;
    background: transparent;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
    text-decoration: none;
    display: inline-block;
    font-family: inherit;
}

.btn-customer-primary-outline:hover {
    background: var(--primary-customer-color);
    color: var(--primary-customer-color-text);
}


.btn-customer-primary {
    background: var(--primary-customer-color);
    color: var(--primary-customer-color-text);
    border: none;
    border-radius: 12px;
    padding: 0.65rem 1.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
    font-family: inherit;
}

.btn-customer-primary:hover {
    transform: translateY(-1px);
    filter: brightness(1.1);
    transition: background 0.2s, transform 0.15s;
}

.btn-customer-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* =============================================================
   SCROLL ANIMATIONS
   .anim-fade-up, .anim-fade-left, .anim-fade-right
   Add .in-view (via IntersectionObserver) to trigger.
   Use .delay-N for stagger.
============================================================= */
.anim-fade-up {
    opacity: 0;
    transform: translateY(48px);
    transition: opacity 0.72s ease, transform 0.72s ease;
}

.anim-fade-left {
    opacity: 0;
    transform: translateX(-72px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.anim-fade-right {
    opacity: 0;
    transform: translateX(72px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.anim-fade-up.in-view,
.anim-fade-left.in-view,
.anim-fade-right.in-view {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-1 {
    transition-delay: 0.10s;
}

.delay-2 {
    transition-delay: 0.22s;
}

.delay-3 {
    transition-delay: 0.36s;
}

.delay-4 {
    transition-delay: 0.52s;
}

.delay-5 {
    transition-delay: 0.68s;
}

.delay-6 {
    transition-delay: 0.84s;
}

.delay-7 {
    transition-delay: 0.96s;
}

.delay-8 {
    transition-delay: 1.02s;
}

.delay-9 {
    transition-delay: 1.14s;
}

.delay-99 {
    transition-delay: 3.14s;
}

/* Responsive stagger — only apply transition-delay on tablet/desktop (≥768px). */
@media (min-width: 768px) {
    .delay-md-1 { transition-delay: 0.10s; }
    .delay-md-2 { transition-delay: 0.22s; }
    .delay-md-3 { transition-delay: 0.36s; }
    .delay-md-4 { transition-delay: 0.52s; }
}

/* =============================================================
   MOBILE FULLSCREEN NAV OVERLAY
============================================================= */


.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 2rem 3rem;
    overflow-y: auto;
    /* Hidden state */
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease;
    max-width: 100vw;
}

.mobile-nav-overlay.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-overlay__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.mobile-close-btn {
    background: none;
    border: none;
    font-size: 1.6rem;
    color: #1e1e1e;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    transition: background 0.2s;
}

.mobile-close-btn:hover {
    background: #f0f0f0;
}

.mobile-nav-link {
    font-size: 2rem;
    font-weight: 400;
    color: var(--navbar-text-color);
    text-decoration: none;
    display: block;
    padding: 0.1rem 0;
    border-bottom: 1px solid #f0f0f0;

    opacity: 0;
    transform: translateY(-18px);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s;
}

.mobile-nav-link:last-child {
    border-bottom: 0;
}

.mobile-nav-sub {
    display: block;
    font-size: 1.3rem;
    line-height: 1.5;
    color: #6b7280;
    text-decoration: none;
    padding: 0.3rem 1rem;
    border-bottom: 1px solid #f8f8f8;

    opacity: 0;
    transform: translateY(-18px);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s;
}

.mobile-nav-icons {
    position: sticky;
    bottom: 0;
    gap: 1rem;
    margin-top: auto;

    display: flex;
    justify-content: center;
    width: 100%;
}

.mobile-nav-overlay.open .mobile-nav-link, .mobile-nav-overlay.open .mobile-nav-sub {
    opacity: 1;
    transform: translateY(0);
}

.nav-icon-btn {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-base);
    font-size: 2.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    display: flex;

    background-color: rgba(255, 255, 255, 0.85);
    box-shadow: var(--box-shadow);

}


.mobile-nav-overlay.open .nav-icon-btn {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;

}


.mobile-nav-overlay .nav-icon-btn {
    /* Hidden state */
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}


.mobile-nav-overlay.open .nav-icon-btn:nth-of-type(1) {
    transition-delay: 0.30s;
}

.mobile-nav-overlay.open .nav-icon-btn:nth-of-type(2) {
    transition-delay: 0.36s;
}

.mobile-nav-overlay.open .nav-icon-btn:nth-of-type(3) {
    transition-delay: 0.42s;
}

.mobile-nav-overlay.open .nav-icon-btn:nth-of-type(4) {
    transition-delay: 0.48s;
}

.mobile-nav-overlay.open .mobile-nav-link:nth-of-type(1) {
    transition-delay: 0.30s;
}

.mobile-nav-overlay.open .mobile-nav-link:nth-of-type(2) {
    transition-delay: 0.36s;
}

.mobile-nav-overlay.open .mobile-nav-link:nth-of-type(3) {
    transition-delay: 0.42s;
}

.mobile-nav-overlay.open .mobile-nav-link:nth-of-type(4) {
    transition-delay: 0.48s;
}

.mobile-nav-overlay.open .mobile-nav-link:nth-of-type(5) {
    transition-delay: 0.54s;
}

.mobile-nav-overlay.open .mobile-nav-link:nth-of-type(6) {
    transition-delay: 0.60s;
}

.mobile-nav-overlay.open .mobile-nav-link:nth-of-type(7) {
    transition-delay: 0.66s;
}

.mobile-nav-overlay.open .mobile-nav-link:nth-of-type(8) {
    transition-delay: 0.72s;
}

.mobile-nav-overlay.open .mobile-nav-link:nth-of-type(9) {
    transition-delay: 0.78s;
}

.mobile-nav-overlay.open .mobile-nav-link:nth-of-type(10) {
    transition-delay: 0.84s;
}

.mobile-nav-overlay.open .mobile-nav-link:nth-of-type(11) {
    transition-delay: 0.90s;
}

.mobile-nav-overlay.open .mobile-nav-link:nth-of-type(12) {
    transition-delay: 0.96s;
}

.mobile-nav-overlay.open .mobile-nav-link:nth-of-type(13) {
    transition-delay: 1.02s;
}

.mobile-nav-overlay.open .mobile-nav-link:nth-of-type(14) {
    transition-delay: 1.08s;
}

.mobile-nav-overlay.open .mobile-nav-link:nth-of-type(15) {
    transition-delay: 1.14s;
}

.mobile-nav-overlay.open .mobile-nav-link:nth-of-type(16) {
    transition-delay: 1.20s;
}

.mobile-nav-overlay.open .mobile-nav-link:nth-of-type(17) {
    transition-delay: 1.26s;
}

.mobile-nav-overlay.open .mobile-nav-link:nth-of-type(18) {
    transition-delay: 1.32s;
}

.mobile-nav-overlay.open .mobile-nav-link:nth-of-type(19) {
    transition-delay: 1.38s;
}

.mobile-nav-overlay.open .mobile-nav-link:nth-of-type(20) {
    transition-delay: 1.44s;
}

/* =============================================================
   STICKY FLOATING HEADER
============================================================= */
#site-header-wrap {
    position: sticky;
    top: 14px;
    z-index: 1040;
    height: 96px;
}

.navbar-floating {
    transform: translateY(0);
    background: transparent;
    border-radius: var(--radius-base);
    transition: background 0.38s ease, box-shadow 0.38s ease, backdrop-filter 0.38s ease, transform 0.25s ease-in;
}

.navbar-toggler-icon {
    color: var(--s2-text) !important;
    filter: none !important;
}

.mobile-nav-hidden {
    transform: translateY(-120%);
}

.navbar-floating.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
}

/* Logo */
.logo img {
    max-height: 70px;
    transition: max-height 0.2s;
}

.nav-item-active a, .navbar-nav .nav-link.show {
    color: var(--primary-customer-color);
}

.nav-item .nav-link:hover {
    color: var(--primary-customer-color);
    filter: brightness(0.8);
}

.nav-link:focus-visible {
    outline: none;
    box-shadow: none;
}

.navbar-floating.scrolled .logo img, .mobile-nav-overlay__header .logo img {
    max-height: 50px;
}

.navbar-floating.scrolled .logo-text span:last-child {
    color: #9aa5b4;
}

/* Nav links */
.navbar-floating .nav-link {
    font-size: 18px;
    padding: 0.45rem 0.75rem;
    border-radius: 10px;
    transition: color 0.2s, background 0.2s, text-shadow 0.2s;
    display: inline-block;
    position: relative;

}

.nav-link::before {
    content: "";
    position: absolute;
    width: 0;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    background: var(--primary-customer-color);
    transition: var(--base-transition);
}

.nav-link:hover::before, .nav-item-active a::before, .nav-link.show::before {
    width: 90%;
}


/* Icon buttons */
.nav-icon-btns {
    display: flex;

}

.nav-icon-btns a {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.nav-icon-btns a:hover {
    transform: scale(1.3);
}

.nav-icon-btns .whatsapp, .nav-icon-btn.whatsapp, .nav-icon-btns .whatsapp:hover {
    color: #25d366;
}

.nav-icon-btns .mail, .nav-icon-btn.mail, .nav-icon-btns .mail:hover {
    color: var(--primary-customer-color);
}

/* Nav divider line */
.nav-divider {
    width: 1px;
    height: 22px;
    background: rgba(255, 255, 255, 0.3);
    display: block;
    transition: background 0.38s;
}

.navbar-floating.scrolled .nav-divider {
    background: #e2e8f0;
}

.navbar-floating {
    z-index: 1041;
}

.navbar-floating .navbar-nav {
    position: static;
}

.mega-menu-wrapper {
    position: static !important;
}

/* =============================================================
   MEGA MENU (desktop only)
============================================================= */
@media (min-width: 992px) {

    .mega-menu-dropdown {
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        border: none;
        padding: 0;
        overflow: hidden;
        border-radius: var(--radius-base);
        top: calc(-50%);
        margin: 0 !important;


        display: block;
        visibility: hidden;
        opacity: 0;
        transition: all 0.3s ease-in-out 0.4s;
        z-index: -1;

        border-top: 1px solid #f2f2f2;
        box-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;

    }


    .mega-menu-wrapper:hover > .mega-menu-dropdown.show {

        top: calc(100% + 5px) !important;
        visibility: visible;
        opacity: 1;
        transition: top 0.3s ease-in-out, visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
    }
}

.mega-menu-inner {
    padding: 2rem 2.5rem;
}

.mega-menu-inner div div {
    border-right: 1px solid white;
}

.mega-menu-inner div div:last-child {
    border-right: none;
}

.mega-menu-col-title {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--primary-customer-color);
    border-bottom: 2px solid var(--primary-customer-color);
    padding-bottom: 0.5rem;
    margin-bottom: 0.9rem;
    text-decoration: none;
    transition: padding-left 0.15s;

}

.mega-menu-col-title:hover {
    /**padding-left: 1rem;**/
}

.mega-menu-dropdown .dropdown-item {
    font-size: 1rem;
    color: var(--bs-nav-link-color);
    padding: 0.42rem 0.7rem;
    transition: background 0.15s, color 0.15s, padding-left 0.15s;
}

.mega-menu-dropdown .dropdown-item:hover {
    padding-left: 1rem;
    color: var(--primary-customer-color);
}

.mega-menu-dropdown .dropdown-item.active {
    padding-left: 1rem;
    color: var(--primary-customer-color);
}

.mega-menu-dropdown .dropdown-item:active, .mega-menu-dropdown .dropdown-item.active {
    background: inherit;
}

/* =============================================================
   HERO CARD
============================================================= */
.hero-card {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: var(--radius-base);
}

@media (max-width: 991px) {
    .hero-card {
        height: 380px;
    }
}

.hero-card__video,
.hero-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            145deg,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(5, 20, 60, 0.58) 55%,
            rgba(0, 8, 32, 0.38) 100%
    );
}

.hero-card__body {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 2.5rem 3rem;
    gap: 2.5rem;
}

@media (max-width: 991px) {
    .hero-card__body {
        align-items: center;
        padding: 1.75rem;
        gap: 1.5rem;
    }
}

/* Hero text */


/* Review summary bar */
.hero-card__reviewsummary {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.75rem;
}

.hero-card__reviewsummary-logo {
    height: 20px;
    width: auto;
}

.hero-card__reviewsummary-score {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1;
}

.hero-card__reviewsummary-stars {
    display: flex;
    align-items: center;
    gap: 1px;
}

.hero-card__reviewsummary-stars svg {
    width: 16px;
    height: 16px;
}

.hero-card__reviewsummary-count {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    white-space: nowrap;
}

.hero-card__title {
    color: #fff;
    line-height: 1.16;
    letter-spacing: -0.025em;
    text-shadow: 0 2px 22px rgba(0, 0, 0, 0.55);
}

.hero-card__sub {
    color: rgba(255, 255, 255, 0.78);
    font-size: var(--font-size-small);
    line-height: 1.65;
    margin-top: 0.85rem;
}

/* Top Bewertet box */
.hero-right {
    flex: 0 0 auto;
    min-width: 270px;
}

@media (max-width: 991px) {
    .hero-right {
        min-width: unset;
        width: 100%;
    }
}

.top-bewertet {
    background: rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
}

.top-bewertet__eyebrow {
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.35rem;
}

.top-bewertet__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 0.3rem;
}

.top-bewertet__stars i {
    color: var(--star);
    font-size: 1.05rem;
}

.top-bewertet__score {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
}

.top-bewertet__score small {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
}

.top-bewertet__title {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin: 0.6rem 0 0.55rem;
    letter-spacing: 0.02em;
}

/* Overlapping platform logos */
.platform-logos {
    display: flex;
    align-items: center;
}

.platform-logo {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}

.platform-logo + .platform-logo {
    margin-left: -9px;
}

.platform-logo.google {
    background: #fff;
    color: #4285f4;
}

.platform-logo.tripadv {
    background: #34e0a1;
    color: #fff;
}

.platform-logo.proven {
    background: var(--primary-customer-color);
    color: #fff;
}

.platform-logos__text {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.62);
    margin-left: 10px;
    line-height: 1.4;
}

/* =============================================================
   CALLBACK FORM
============================================================= */


.callback-card {
    background: #fff;
    border-radius: var(--radius-base);
    box-shadow: 0 10px 48px rgba(0, 0, 0, 0.13);
    padding: 2rem 2.5rem;
}

@media (min-width: 992px) {
    .callback-wrap {
        height: 0;
    }

    .callback-card {
        margin-top: -50%;
        position: relative; /* This is the key */
        z-index: 10; /* Pulls it to the front */
    }
}

.callback-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 0;
}

.callback-card__subtitle {
    font-size: 0.83rem;
    color: #6b7280;
    margin: 0;
}

.form-field-mobile {
    display: none;
}

.form-field {
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.62rem 1rem;
    font-size: 0.88rem;
    width: 100%;
    outline: none;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fafafa;
}

.form-field:focus {
    border-color: var(--primary-customer-color);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
    background: #fff;
}

.form-field.is-invalid {
    border-color: #ef4444;
}

/* =============================================================
   LOGO CAROUSEL (CSS marquee)
============================================================= */
.logo-carousel-outer {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    width: 100%;
}

.logo-carousel-track {
    display: flex;
    gap: 2rem;
    animation: marquee 25s linear infinite;
    width: max-content;
}

.logo-carousel-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(var(--logo-scroll-offset, -50%));
    }
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 148px;
    height: 56px;
    flex-shrink: 0;

    img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
}

/* =============================================================
   SERVICE CARDS
============================================================= */
.service-card {
    position: relative;
    border-radius: var(--radius-base);
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
    height: 100%;
    min-height: 330px;
    transition: transform 0.26s, box-shadow 0.26s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.18);
}

.service-card:hover .btn-customer-primary-outline {
    background: var(--primary-customer-color);
    color: var(--primary-customer-color-text);
}

.service-card:hover .service-card__img-photo,
.service-card:hover .service-card__img {
    transform: scale(1.04);
}

.service-card__img {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #dbe8ff 0%, #c7d6fd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: var(--primary-customer-color);
    transition: transform 0.4s ease;
    z-index: 0;
}

.service-card__img-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    z-index: 0;
}

.service-card__body {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding: 1.25rem 1.5rem 1.5rem;
    background: rgba(255, 255, 255, 9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.service-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.service-card__title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--s1-text);
    margin: 0;
    flex: 1;
}

.service-card__desc {
    font-size: 0.84rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}


.btn-primary-accent {
    background: var(--primary-customer-color);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 0.72rem 2.25rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s, transform 0.15s;
}

.btn-primary-accent:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

/* =============================================================
   PARTNERSHIP BLOCK (section-3)
============================================================= */
.partnership-block {
    background: var(--primary-customer-color);
    color: var(--s3-text);
    border-radius: var(--radius-base);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 5vw, 3.5rem);
}

.partnership-block__heading {
    color: var(--s3-text);
    margin-top: 0.4rem;
    margin-bottom: 1.5rem;
}

.partnership-block__text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.section-eyebrow--white {
    color: rgba(255, 255, 255, 0.5);
}

/* =============================================================
   COMPANY / ABOUT SECTION (section-3)
============================================================= */
.about-photo-wrapper img,
.about-photo-wrapper video {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-base);
    width: 100%;
    height: auto;
    display: block;
}


.about-photo-placeholder {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-base);
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.22);
}

.btn-ghost-white {
    display: inline-block;
    margin-top: 1.5rem;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    border-radius: 12px;
    padding: 0.65rem 1.75rem;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

/* =============================================================
   WHY CARDS (section-2 feature cards)
============================================================= */
.why-card {
    background: #fff;
    border-radius: var(--radius-base);
    padding: 2.25rem 1.75rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.13);
}

.why-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.6rem;
    color: var(--primary-customer-color);
    flex-shrink: 0;
}

.why-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--s2-text);
    margin-bottom: 0.65rem;
}

.why-card__desc {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.65;
    margin-bottom: 0;
}

/* =============================================================
   RADIUS / MAP SECTION (section-2)
============================================================= */
.radius-map-container {
    position: relative;
    height: 360px;
    border-radius: var(--radius-base);
    overflow: hidden;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.13);
}

.map-placeholder {
    background: #e9ecef;
    border-radius: var(--radius-base);
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.75rem;
    color: #9ca3af;
    position: relative;
    overflow: hidden;
}

/* Subtle grid overlay on map */
.map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(0, 0, 0, 0.04) 39px, rgba(0, 0, 0, 0.04) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(0, 0, 0, 0.04) 39px, rgba(0, 0, 0, 0.04) 40px);
}

.map-placeholder > * {
    position: relative;
    z-index: 1;
}

.city-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-light);
    border: 1px solid rgba(26, 86, 219, 0.18);
    color: var(--primary-customer-color);
    border-radius: 100px;
    padding: 0.38rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.18s, border-color 0.18s;
}

.city-badge:hover {
    background: rgba(26, 86, 219, 0.18);
    border-color: rgba(26, 86, 219, 0.35);
    color: var(--primary-customer-color);
}

/* =============================================================
   KEY FACTS (section-3)
============================================================= */
.keyfact-number {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    color: #fff;
    line-height: 1;
    letter-spacing: -0.025em;
}

.keyfact-unit {
    color: rgba(255, 255, 255, 0.38);
    font-size: 55%;
}

.keyfact-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    margin-top: 0.45rem;
}

/* =============================================================
   REVIEWS SECTION (section-1)
============================================================= */
.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 0.6rem 1rem;
}

.platform-badge__logo {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 0.6rem;
}

.platform-badge__name {
    font-size: 0.75rem;
    font-weight: 700;
}

.platform-badge__score {
    font-size: 0.7rem;
    color: #9ca3af;
}

.rating-bar-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rating-bar-track {
    flex: 1;
    height: 7px;
    background: #f3f4f6;
    border-radius: 100px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: var(--star);
    border-radius: 100px;
}

.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-card__platform {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9ca3af;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.review-card__text {
    font-size: 0.88rem;
    color: #374151;
    line-height: 1.65;
    margin-bottom: 1rem;
    flex: 1;
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 0.7rem;
}

.review-stars i {
    color: var(--star);
    font-size: 0.82rem;
}

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
}

.review-card__author {
    font-size: 0.82rem;
    font-weight: 600;
    color: #1e1e1e;
}

.review-card__date {
    font-size: 0.74rem;
    color: #9ca3af;
}

/* =============================================================
   REVIEW CARD V2 – Carousel style
============================================================= */
.review-card-v2 {
    background: var(--s2-bg);
    border-radius: 18px;
    padding: 1.75rem;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.review-avatar-lg {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.review-card-v2__glogo {
    height: 24px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.review-card-v2__text {
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.7;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
}


.review-card-v2__link:hover {
    text-decoration: underline;
}

/* Custom infinite slider */
.reviews-slider {
    overflow: hidden;
}

.reviews-track-outer {
    overflow: hidden;
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
}

.reviews-track-outer:active {
    cursor: grabbing;
}

.reviews-track {
    display: flex;
    will-change: transform;
}

.reviews-slide {
    flex-shrink: 0;
    box-sizing: border-box;
    padding: 0.5rem 0.75rem;
}

/* Initial reveal stagger for review slides that are visible on first paint.
   Self-contained: pure CSS animation, no IntersectionObserver toggle needed.
   Slide 1 animates on all viewports; slides 2 & 3 only on ≥768px (where
   the slider shows 3 per view). On mobile, slides 2 & 3 carry the class
   but no animation rule matches, so they stay visible by default. */
@keyframes reviews-slide-reveal {
    from { opacity: 0; transform: translateY(48px); }
    to   { opacity: 1; transform: translateY(0); }
}

.reviews-slide--reveal-1 {
    animation: reviews-slide-reveal 0.72s ease 0.10s both;
}

@media (min-width: 768px) {
    .reviews-slide--reveal-2 {
        animation: reviews-slide-reveal 0.72s ease 0.22s both;
    }
    .reviews-slide--reveal-3 {
        animation: reviews-slide-reveal 0.72s ease 0.36s both;
    }
}

/* Dots */
.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.75rem;
    padding: 2px 0;
}

.reviews-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #d1d5db;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.25s, transform 0.2s;
    flex-shrink: 0;
}

.reviews-dot.active {
    background: var(--primary-customer-color);
    transform: scale(1.25);
}

/* =============================================================
   GALLERY SLIDER (section-2)
============================================================= */
.gallery-slider {
    overflow: hidden;
}

.gallery-track-outer {
    overflow: hidden;
    cursor: grab;
    border-radius: var(--radius-base);
}

.gallery-track-outer:active {
    cursor: grabbing;
}

.gallery-track {
    display: flex;
    will-change: transform;
}

.gallery-slide {
    flex-shrink: 0;
    box-sizing: border-box;
    padding: 0 0.5rem;
}

.gallery-slide__img {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-base);
}

/* Gallery navigation: prev / counter / next */
.gallery-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1.75rem;
}

.gallery-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: var(--primary-customer-color);
    color: var(--primary-customer-color-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    box-shadow: 0 2px 8px rgba(6, 78, 138, 0.18);
}

.gallery-arrow:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 14px rgba(6, 78, 138, 0.28);
}

.gallery-arrow:active {
    transform: scale(0.96);
}

.gallery-arrow:focus-visible {
    outline: 2px solid var(--primary-customer-color);
    outline-offset: 3px;
}

.gallery-counter {
    font-variant-numeric: tabular-nums;
    font-weight: 600;
    color: var(--primary-customer-color);
    min-width: 4ch;
    text-align: center;
    letter-spacing: 0.05em;
}

.gallery-counter__sep {
    margin: 0 0.25rem;
    opacity: 0.55;
}

/* =============================================================
   FAQ SECTION (section-2)
============================================================= */
.faq-item {
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item:hover {
    border-color: var(--primary-customer-color);
    box-shadow: 0 4px 18px rgba(26, 86, 219, 0.08);
}

.faq-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.2rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e1e1e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.2s;
}

.faq-btn[aria-expanded="true"],
.faq-btn:hover {
    color: var(--primary-customer-color);
}

.faq-btn i {
    flex-shrink: 0;
    transition: transform 0.32s ease;
}

.faq-btn[aria-expanded="true"] i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.88rem;
    color: #6b7280;
    line-height: 1.75;
}

/* =============================================================
   FOOTER
============================================================= */
.site-footer {
    background: var(--primary-customer-color);
    color: var(--primary-customer-color-text);
}

.footer-logo img {
    height: 42px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0;
}

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

.footer-social__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.footer-social__link:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.1rem;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-list li,
.footer-list a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-list a:hover {
    color: #fff;
}

.footer-address {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bar {
    background: rgba(0, 0, 0, 0.2);
}

.footer-bar__credit,
.footer-bar__credit a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.footer-bar__credit a:hover {
    color: #fff;
}

.footer-bar__link {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bar__link:hover {
    color: #fff;
}

.footer-bar__sep {
    color: rgba(255, 255, 255, 0.25);
    margin: 0 0.4rem;
    font-size: 0.82rem;
}


/* =============================================================
   KONTAKT PAGE
============================================================= */
.contact-form-card {
    background: #fff;
    border-radius: var(--radius-base);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.09);
    padding: 2.5rem;
}

.contact-info-card {
    padding: 2.5rem 0 2.5rem 1rem;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.contact-info-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}

.contact-info-link:hover .contact-info-icon,
.contact-info-link:hover .contact-info-value {
    color: var(--primary-customer-color);
}

.contact-info-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    color: var(--primary-customer-color);
}

.contact-info-icon--whatsapp {
    color: #25d366;
}

.contact-info-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9ca3af;
    margin-bottom: 0.2rem;
}

.contact-info-value {
    display: block;
    font-size: 1.05rem;
    font-weight: 500;
    color: #1e1e1e;
    text-decoration: none;
    transition: color 0.2s;
}

a.contact-info-value:hover {
    color: var(--primary-customer-color);
}

.contact-link {
    color: var(--primary-customer-color);
    text-decoration: underline;
}

.contact-checkbox {
    width: 1rem;
    height: 1rem;
    margin-top: 0.2rem;
    accent-color: var(--primary-customer-color);
    cursor: pointer;
    flex-shrink: 0;
}

.contact-checkbox.is-invalid {
    outline: 2px solid #ef4444;
    border-radius: 3px;
}

@media (max-width: 991.98px) {
    .contact-info-card {
        padding: 1.5rem 0 0 0;
    }
}

/* =============================================================
   SERVICE-CATEGORY CTA SECTION
============================================================= */
.cta-sc-section {
    padding-block: 20px;
}

.cta-sc-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: var(--radius-base);
    overflow: hidden;
    background-color: var(--primary-customer-color);
}

.cta-sc-content {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-right: none;
    padding: clamp(2rem, 5vw, 3.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
}

.cta-sc-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.cta-sc-heading {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin: 0;
}

.cta-sc-text {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
}

.cta-sc-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 0.5rem;
}

.btn-cta-solid {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: var(--primary-customer-color);
    border: none;
    border-radius: 10px;
    padding: 0.75rem 1.6rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.btn-cta-solid:hover {
    background: rgba(255, 255, 255, 0.88);
    color: var(--primary-customer-color);
    transform: translateY(-1px);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    padding: 0.75rem 1.6rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    white-space: nowrap;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
    transform: translateY(-1px);
}

/* City Image Column */
.cta-sc-image-col {
    position: relative;
    min-height: 340px;
}

.cta-sc-city-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.cta-sc-city-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cta-sc-city-img::after {
    content: '';
    position: absolute;
    inset: 0;
}

.cta-sc-city-badge {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    border-radius: 100px;
    padding: 0.4rem 1rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.cta-sc-city-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.3);
}

.cta-sc-city-placeholder i {
    font-size: 3.5rem;
}

.cta-sc-city-placeholder span {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (max-width: 991.98px) {
    .cta-sc-card {
        grid-template-columns: 1fr;
    }

    .cta-sc-content {
        border-right: 1px solid rgba(255, 255, 255, 0.12);
        border-bottom: none;
    }

    .cta-sc-image-col {
        min-height: 260px;
    }
}

/* ===== Service Tasks (Leistungsumfang) ===== */
.service-tasks__image-wrapper {
    overflow: hidden;
    border-radius: 1.25rem;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
}

.service-tasks__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-tasks__image-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 1.25rem;
    background: rgba(15, 23, 42, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(15, 23, 42, 0.35);
}

.service-tasks__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.service-tasks__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.service-tasks__check {
    flex: 0 0 auto;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 2px solid var(--primary-customer-color);
    color: var(--primary-customer-color);
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    line-height: 1;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.service-tasks__item:hover .service-tasks__check {
    background: var(--primary-customer-color);
    color: var(--primary-customer-color-text);
}

.service-tasks__body {
    flex: 1 1 auto;
    min-width: 0;
}

.service-tasks__title {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: inherit;
    line-height: 1.35;
}

.service-tasks__text {
    margin: 0;
    color: rgba(15, 23, 42, 0.72);
    font-size: 0.95rem;
    line-height: 1.55;
}

@media (max-width: 991.98px) {
    .service-tasks {
        gap: 2rem !important;
    }

    .service-tasks__check {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 1rem;
    }

    .service-tasks__title {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .service-tasks__item {
        gap: 0.75rem;
    }
}

/* ===== Service Scope (Leistungsumfang – icon variant) ===== */
.service-scope__main-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    height: 100%;
}

/* Icon recoloring: the configured icon image becomes a mask, the
   element's background-color provides the actual color – primary-customer-color. */
.service-scope__icon {
    flex: 0 0 auto;
    width: 3.25rem;
    height: 3.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-customer-color);
    -webkit-mask-image: var(--scope-icon-url);
    mask-image: var(--scope-icon-url);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    margin-bottom: 0.5rem;
}

/* Bootstrap-icon fallback when no iconUrl is configured – we don't want the
   mask styles to swallow the inner <i>. */
.service-scope__icon--fallback {
    -webkit-mask-image: none;
    mask-image: none;
    background-color: transparent;
    color: var(--primary-customer-color);
    font-size: 2rem;
}

.service-scope__main-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: inherit;
    line-height: 1.35;
}

.service-scope__main-text {
    margin: 0;
    color: rgba(15, 23, 42, 0.72);
    font-size: 0.95rem;
    line-height: 1.55;
}

/* Right-hand additional-tasks list (mirrors service-tasks styling). */
.service-scope__add-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-scope__add-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.service-scope__check {
    flex: 0 0 auto;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    border: 2px solid var(--primary-customer-color);
    color: var(--primary-customer-color);
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    line-height: 1;
    margin-top: 0.15rem;
}

.service-scope__add-body {
    flex: 1 1 auto;
    min-width: 0;
}

.service-scope__add-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.15rem 0;
    color: inherit;
    line-height: 1.35;
}

.service-scope__add-text {
    margin: 0;
    color: rgba(15, 23, 42, 0.72);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Mobile: main tasks already stack via row-cols-1, additional tasks follow. */
@media (max-width: 991.98px) {
    .service-scope {
        gap: 2rem !important;
    }

    .service-scope__icon {
        width: 2.75rem;
        height: 2.75rem;
    }

    .service-scope__main-title {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .service-scope__add-item {
        gap: 0.6rem;
    }
}
