:root {
    --prime-white: #ffffff;
    --prime-soft: #f7f7f5;
    --prime-blue-soft: #eef2f4;
    --prime-charcoal: #111827;
    --prime-ink: #2e3238;
    --prime-muted: #6b7280;
    --prime-gold: #b69a64;
    --prime-gold-dark: #947743;
    --prime-line: rgba(17, 24, 39, 0.11);
    --prime-shadow: 0 22px 60px rgba(17, 24, 39, 0.08);
    --prime-radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--prime-charcoal);
    background: var(--prime-white);
    line-height: 1.65;
    letter-spacing: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

.public-navbar {
    min-height: 90px;
    padding: 0;
    background: var(--prime-white);
    border-bottom: 1px solid rgba(17, 24, 39, 0.07);
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.035);
}

.public-navbar .container {
    min-height: 90px;
    padding-left: clamp(1.5rem, 4vw, 3.5rem);
    padding-right: clamp(1.5rem, 4vw, 3.5rem);
}

.public-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 760;
    letter-spacing: 0;
    font-size: 1.18rem;
}

.brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--prime-white);
    background: #151923;
    box-shadow: none;
}

.nav-link {
    color: rgba(17, 24, 39, 0.64);
    font-weight: 650;
    font-size: 0.9rem;
    margin: 0 0.45rem;
    letter-spacing: 0.01em;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--prime-charcoal);
}

.language-switcher {
    color: rgba(17, 24, 39, 0.48);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.language-switcher a {
    color: inherit;
    padding: 0 0.08rem;
}

.language-switcher a:hover,
.language-switcher a:focus,
.language-switcher a.is-active {
    color: var(--prime-charcoal);
}

.language-switcher a.is-active {
    text-decoration: underline;
    text-underline-offset: 0.24rem;
}

.language-separator {
    margin: 0 0.18rem;
    color: rgba(17, 24, 39, 0.26);
}

.btn-prime {
    border: 0;
    border-radius: 6px;
    padding: 1rem 1.65rem;
    font-weight: 750;
    color: var(--prime-white);
    background: #151923;
    box-shadow: none;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-prime:hover,
.btn-prime:focus {
    transform: translateY(-2px);
    background: #2a303b;
    color: var(--prime-white);
}

.btn-outline-prime {
    border: 1px solid rgba(17, 24, 39, 0.22);
    border-radius: 6px;
    padding: 0.95rem 1.6rem;
    font-weight: 750;
    color: var(--prime-charcoal);
    background: transparent;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-outline-prime:hover,
.btn-outline-prime:focus {
    transform: translateY(-2px);
    background: var(--prime-charcoal);
    border-color: var(--prime-charcoal);
    color: var(--prime-white);
}

.hero .btn-outline-prime,
.cta-section .btn-outline-prime {
    border-color: rgba(255, 255, 255, 0.74);
    color: var(--prime-white);
}

.hero .btn-outline-prime:hover,
.hero .btn-outline-prime:focus,
.cta-section .btn-outline-prime:hover,
.cta-section .btn-outline-prime:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--prime-white);
    color: var(--prime-white);
}

.btn-outline-light-prime {
    color: var(--prime-white);
    border-color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.08);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
    background-image: url("../img/hero.webp");
    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(17, 24, 39, 0.55) 0%,
        rgba(17, 24, 39, 0.35) 35%,
        rgba(17, 24, 39, 0.10) 70%,
        rgba(17, 24, 39, 0) 100%
    );
}

.hero > .container {
    position: relative;
    z-index: 1;
    padding-left: clamp(1.5rem, 4vw, 3.5rem);
    padding-right: clamp(1.5rem, 4vw, 3.5rem);
}

.hero .col-lg-8 {
    max-width: 620px;
    animation: primeFadeUp 0.8s ease both;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 750;
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.65rem;
}

h1,
h2,
h3 {
    letter-spacing: 0;
    line-height: 1.04;
}

.hero h1 {
    max-width: 620px;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 760;
    line-height: 1.03;
    color: var(--prime-white);
    margin-bottom: 2rem;
}

.hero p {
    max-width: 430px;
    font-size: clamp(1.08rem, 1.6vw, 1.28rem);
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 2.75rem;
    line-height: 1.65;
}

.hero-stats {
    margin-top: 4.75rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stat {
    padding: 1rem 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(17, 24, 39, 0.18);
    border-radius: var(--prime-radius);
    min-width: 150px;
}

.hero-stat strong {
    display: block;
    font-size: 1.25rem;
    color: var(--prime-white);
}

.hero-stat span {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.9rem;
}

@keyframes primeFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .hero .col-lg-8 {
        animation: none;
    }
}

section {
    padding: 7rem 0;
}

.section-soft {
    background: var(--prime-soft);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-lead {
    color: rgba(17, 24, 39, 0.64);
    font-size: 1.16rem;
    max-width: 680px;
}

.image-panel {
    min-height: 560px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--prime-shadow);
    overflow: hidden;
}

.image-office {
    background-image: url("../img/smiling-to-customer.webp");
}

.image-florist {
    background-image: url("../img/florist-business-owner.webp");
    background-position: center;
}

.image-people {
    background-image: url("../img/busy-business-owner.webp");
}

.split-content h2 {
    font-size: clamp(2.8rem, 5vw, 5.2rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.headline-afterthought {
    margin: 2.1rem 0 1.45rem;
    font-size: clamp(1.55rem, 2.6vw, 2.35rem) !important;
    font-weight: 500;
    line-height: 1.18;
    color: rgba(17, 24, 39, 0.76) !important;
}

.split-content p {
    font-size: 1.12rem;
    color: rgba(17, 24, 39, 0.64);
    max-width: 540px;
}

.journey-section {
    padding: 0;
    background: var(--prime-soft);
}

.journey-photo {
    min-height: min(90vh, 1040px);
    background:
        linear-gradient(
            180deg,
            rgba(17, 24, 39, 0),
            rgba(17, 24, 39, 0.08)
        ),
        url("../img/smiling-to-customer.webp") 30% center / cover no-repeat;
}

@media (min-width: 1400px) {
    .journey-photo {
        min-height: min(96vh, 1160px);
    }
}

.journey-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    gap: clamp(3rem, 8vw, 8rem);
    align-items: start;
    padding: clamp(5.5rem, 8vw, 8rem) 0 clamp(5rem, 7vw, 7rem);
}

.eyebrow-dark {
    margin-bottom: 1.3rem;
    color: rgba(17, 24, 39, 0.48);
    font-size: 0.76rem;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.journey-heading h2 {
    max-width: 620px;
    font-size: clamp(3rem, 5.6vw, 6rem);
    font-weight: 800;
    line-height: 0.98;
    margin: 0;
}

.journey-story {
    max-width: 620px;
    padding-top: 0.15rem;
}

.journey-story p {
    margin: 0 0 1.65rem;
    font-size: clamp(1.28rem, 2vw, 2rem);
    line-height: 1.35;
    color: rgba(17, 24, 39, 0.72);
}

.journey-story p:last-child {
    color: var(--prime-charcoal);
    font-weight: 650;
}

.premium-contact-inner {
    max-width: 720px;
    margin: 0 auto;
}

.editorial-section {
    padding: 8rem 0;
    background: var(--prime-white);
}

.editorial-image {
    min-height: 640px;
    background-size: cover;
    background-position: center;
}

.editorial-copy {
    max-width: 610px;
    padding-left: clamp(0rem, 4vw, 3rem);
}

.editorial-copy h2 {
    max-width: 560px;
    font-size: clamp(3rem, 5.8vw, 6.2rem);
    font-weight: 800;
    line-height: 0.98;
    margin-bottom: 2rem;
}

.editorial-copy p {
    max-width: 520px;
    font-size: clamp(1.08rem, 1.4vw, 1.24rem);
    color: rgba(17, 24, 39, 0.68);
    margin-bottom: 1.05rem;
}

.locale-fr .hero h1,
.locale-de .hero h1,
.locale-it .hero h1 {
    max-width: 760px;
    font-size: clamp(2.75rem, 5.3vw, 5.1rem);
}

.locale-fr .hero .col-lg-8,
.locale-de .hero .col-lg-8,
.locale-it .hero .col-lg-8 {
    max-width: 760px;
}

.locale-de .split-content h2,
.locale-fr .editorial-copy h2,
.locale-de .editorial-copy h2,
.locale-it .editorial-copy h2,
.locale-fr .cta-section h2,
.locale-it .cta-section h2 {
    font-size: clamp(2.7rem, 4.9vw, 5.25rem);
}

.locale-de .journey-heading h2,
.locale-it .journey-heading h2 {
    font-size: clamp(2.75rem, 5vw, 5.35rem);
}

.cta-section {
    padding: 8rem 0;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.88), rgba(17, 24, 39, 0.56)),
        url("../img/ready-business.webp") center / cover no-repeat;
    color: var(--prime-white);
}

.cta-section h2 {
    font-size: clamp(2.8rem, 5vw, 5.5rem);
    font-weight: 800;
    max-width: 780px;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.2rem;
    max-width: 560px;
    margin-bottom: 2rem;
}

.public-footer {
    background: #0b111c;
    color: var(--prime-white);
    padding: 4rem 0 2rem;
}

.public-footer p,
.public-footer a {
    color: rgba(255, 255, 255, 0.62);
}

.public-footer a:hover,
.public-footer a:focus,
.public-footer a[aria-current="true"] {
    color: var(--prime-white);
}

.footer-brand {
    color: var(--prime-white);
}

.footer-title {
    color: var(--prime-white);
    font-weight: 800;
    margin-bottom: 1rem;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    background: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.35);
    z-index: 50;
    transition: 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
    color: white;
    transform: translateY(-4px) scale(1.03);
}

@media (max-width: 991px) {
    .public-navbar,
    .public-navbar .container {
        min-height: 82px;
    }

    .hero {
        min-height: 100vh;
        padding: 8.5rem 0 4.5rem;
        background-position: 68% center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .hero::before {
        background: linear-gradient(
            90deg,
            rgba(17, 24, 39, 0.62) 0%,
            rgba(17, 24, 39, 0.42) 45%,
            rgba(17, 24, 39, 0.18) 78%,
            rgba(17, 24, 39, 0.04) 100%
        );
    }

    section {
        padding: 4.5rem 0;
    }

    .image-panel {
        min-height: 380px;
    }

    .journey-photo {
        min-height: 520px;
    }

    .journey-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 4.75rem 0;
    }

    .editorial-section {
        padding: 5rem 0;
    }

    .editorial-image {
        min-height: 440px;
    }

    .editorial-copy {
        padding-left: 0;
    }

    .language-switcher {
        margin: 1rem 0;
    }

    .locale-fr .hero h1,
    .locale-de .hero h1,
    .locale-it .hero h1,
    .locale-de .split-content h2,
    .locale-fr .editorial-copy h2,
    .locale-de .editorial-copy h2,
    .locale-it .editorial-copy h2,
    .locale-fr .cta-section h2,
    .locale-it .cta-section h2 {
        font-size: clamp(2.55rem, 9vw, 4.2rem);
    }
}

@media (max-width: 575px) {
    .public-brand {
        font-size: 1.05rem;
    }

    .hero h1 {
        font-size: clamp(2.85rem, 15vw, 3.65rem);
    }

    .hero {
        background-position: 72% center;
        padding-top: 7.75rem;
    }

    .hero p {
        max-width: 320px;
    }

    .btn-prime,
    .btn-outline-prime {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        margin-top: 2.5rem;
    }

    .hero-stat {
        width: 100%;
    }

    .journey-photo {
        min-height: 430px;
    }

    .journey-layout {
        padding: 4rem 0;
    }

    .journey-story p {
        margin-bottom: 1.45rem;
    }

    .editorial-image {
        min-height: 360px;
    }

    .editorial-copy h2 {
        font-size: clamp(2.7rem, 14vw, 3.75rem);
    }

    .locale-fr .hero h1,
    .locale-de .hero h1,
    .locale-it .hero h1,
    .locale-de .split-content h2,
    .locale-fr .editorial-copy h2,
    .locale-de .editorial-copy h2,
    .locale-it .editorial-copy h2,
    .locale-fr .cta-section h2,
    .locale-it .cta-section h2 {
        font-size: clamp(2.35rem, 12vw, 3.35rem);
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
    }
}
