/* ===================================================================
   KORREKT s.r.o. — Premium Debt Collection Website
   Design: Institutional Luxury — Navy, Gold, Authority
   =================================================================== */

/* --- Custom Properties --- */
:root {
    --navy-950: #0a0e1a;
    --navy-900: #0d1321;
    --navy-800: #141c2f;
    --navy-700: #1b2740;
    --navy-600: #253352;
    --navy-500: #7388a8;
    --navy-400: #94a6c2;
    --navy-300: #b8c5db;
    --navy-200: #dde4ee;
    --navy-100: #ecf0f6;
    --navy-50: #e8ecf3;

    --gold-500: #c9a84c;
    --gold-400: #d4b85c;
    --gold-300: #e0ca7a;
    --gold-200: #ecdca0;
    --gold-100: #f5edc8;

    --white: #ffffff;
    --off-white: #f8f7f4;
    --warm-gray: #e8e6e1;
    --text-dark: #1a1a1a;
    --text-body: #3d3d3d;
    --text-muted: #6b6b6b;

    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);

    --container-max: 1200px;
    --section-pad: clamp(80px, 10vw, 140px);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--off-white);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul { list-style: none; }
address { font-style: normal; }
strong { font-weight: 600; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
}

/* --- Selection --- */
::selection {
    background: var(--gold-500);
    color: var(--navy-950);
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 clamp(20px, 4vw, 40px);
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.nav--scrolled {
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(201, 168, 76, 0.1);
}

.nav__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: height 0.4s ease;
}

.nav--scrolled .nav__inner {
    height: 64px;
}

.nav__logo {
    display: flex;
    align-items: center;
    z-index: 10;
}

.nav__logo-img {
    height: 48px;
    width: auto;
    transition: opacity 0.3s ease;
}

.nav__logo:hover .nav__logo-img {
    opacity: 0.85;
}

/* Footer logo slightly smaller */
.footer__brand .nav__logo-img {
    height: 38px;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--navy-200);
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-500);
    transition: width 0.3s var(--ease-out-expo);
}

.nav__links a:hover {
    color: var(--white);
}

.nav__links a:hover::after {
    width: 100%;
}

.nav__cta {
    background: var(--gold-500) !important;
    color: var(--navy-950) !important;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    transition: all 0.35s var(--ease-out-expo) !important;
    position: relative;
    overflow: hidden;
}

/* Jemný pulzujúci žiar okolo tlačidla */
.nav__cta {
    box-shadow:
        0 0 0 0 rgba(201, 168, 76, 0.5),
        0 0 12px rgba(201, 168, 76, 0.15);
    animation: ctaPulse 3s ease-in-out infinite;
}

/* Svetelný pruh prebiehajúci cez tlačidlo */
.nav__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    animation: ctaShimmer 4s ease-in-out infinite;
    pointer-events: none;
}

.nav__cta::after {
    display: none !important;
}

.nav__cta:hover {
    background: var(--gold-400) !important;
    transform: translateY(-2px) scale(1.03);
    box-shadow:
        0 0 0 0 rgba(201, 168, 76, 0),
        0 6px 24px rgba(201, 168, 76, 0.35);
    animation: none;
}

.nav__cta:hover::before {
    animation: none;
    opacity: 0;
}

@keyframes ctaPulse {
    0%, 100% {
        box-shadow:
            0 0 0 0 rgba(201, 168, 76, 0),
            0 0 12px rgba(201, 168, 76, 0.1);
    }
    50% {
        box-shadow:
            0 0 0 6px rgba(201, 168, 76, 0.08),
            0 0 20px rgba(201, 168, 76, 0.2);
    }
}

@keyframes ctaShimmer {
    0%, 100% { left: -100%; }
    50% { left: 150%; }
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* --- Language Switcher --- */
.nav__lang-wrapper {
    margin-left: 8px;
}

.lang-switcher {
    position: relative;
}

.lang-switcher__btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--navy-200);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.lang-switcher__btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(201, 168, 76, 0.3);
    color: var(--white);
}

.lang-switcher__flag {
    font-size: 16px;
    line-height: 1;
}

.lang-switcher__code {
    line-height: 1;
}

.lang-switcher__arrow {
    transition: transform 0.3s var(--ease-out-expo);
    opacity: 0.5;
}

.lang-switcher__btn[aria-expanded="true"] .lang-switcher__arrow {
    transform: rotate(180deg);
}

.lang-switcher__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: var(--navy-800);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.96);
    transition: all 0.25s var(--ease-out-expo);
    z-index: 100;
}

.lang-switcher__dropdown--open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.lang-switcher__option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 14px;
    background: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--navy-200);
    transition: all 0.2s ease;
    text-align: left;
}

.lang-switcher__option:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
}

.lang-switcher__option--active {
    color: var(--gold-400);
    background: rgba(201, 168, 76, 0.08);
}

.lang-switcher__option--active:hover {
    color: var(--gold-400);
}

.lang-switcher__check {
    margin-left: auto;
    font-size: 13px;
    color: var(--gold-500);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.lang-switcher__option--active .lang-switcher__check {
    opacity: 1;
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--navy-950);
    padding: 120px 0 80px;
    overflow: hidden;
}

/* Background photo layer — positioned right, fading left */
.hero__bg-photo {
    position: absolute;
    inset: 0;
    background-image: url('hero-bg.jpg');
    background-size: cover;
    background-position: 60% 25%;
    background-repeat: no-repeat;
    pointer-events: none;
}

/* Dark overlay — heavy left fade for text readability, lighter right to reveal photo */
.hero__bg-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(10, 14, 26, 0.97) 0%,
            rgba(10, 14, 26, 0.93) 30%,
            rgba(13, 19, 33, 0.78) 55%,
            rgba(20, 28, 47, 0.62) 75%,
            rgba(20, 28, 47, 0.70) 100%
        ),
        linear-gradient(180deg, rgba(10, 14, 26, 0.15) 0%, rgba(10, 14, 26, 0.5) 100%);
}

/* Pattern + decorative elements on top of photo */
.hero__bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201, 168, 76, 0.07) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 20% 80%, rgba(51, 73, 112, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.hero__bg-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 79px,
            rgba(201, 168, 76, 0.035) 79px,
            rgba(201, 168, 76, 0.035) 80px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 79px,
            rgba(201, 168, 76, 0.035) 79px,
            rgba(201, 168, 76, 0.035) 80px
        );
    mask-image: radial-gradient(ellipse 80% 70% at 60% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 60% 50%, black 20%, transparent 70%);
}

.hero__bg-pattern::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 5%;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: 50%;
    animation: hero-circle 20s linear infinite;
}

@keyframes hero-circle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gold-400);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out-expo) 0.2s forwards;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 500;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease-out-expo) 0.4s forwards;
}

.hero__title-accent {
    color: var(--gold-500);
    font-style: italic;
}

.hero__subtitle {
    font-size: clamp(17px, 1.4vw, 20px);
    color: var(--navy-200);
    max-width: 560px;
    line-height: 1.75;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out-expo) 0.6s forwards;
}

.hero__subtitle strong {
    color: var(--gold-400);
    font-weight: 600;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out-expo) 0.8s forwards;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-top: 48px;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out-expo) 1s forwards;
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

.hero__stat-top {
    display: flex;
    align-items: baseline;
    gap: 2px;
    white-space: nowrap;
}

.hero__stat-number {
    font-family: var(--font-display);
    font-size: clamp(40px, 4.5vw, 56px);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    display: inline;
}

.hero__stat-symbol {
    font-family: var(--font-display);
    font-size: clamp(30px, 3.2vw, 42px);
    font-weight: 500;
    color: var(--gold-500);
    line-height: 1;
    display: inline;
}

.hero__stat-label {
    font-size: 13px;
    color: var(--navy-300);
    margin-top: 8px;
    letter-spacing: 0.02em;
}

.hero__stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(201, 168, 76, 0.2);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: all 0.35s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--gold-500);
    color: var(--navy-950);
}

.btn--primary:hover {
    background: var(--gold-400);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--outline:hover {
    border-color: var(--gold-500);
    color: var(--gold-400);
    background: rgba(201, 168, 76, 0.05);
}

.btn--lg {
    padding: 20px 40px;
    font-size: 16px;
}

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

/* --- Trust Bar --- */
.trust-bar {
    background: var(--navy-950);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    padding: 20px 0;
}

.trust-bar__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
    display: flex;
    justify-content: center;
    gap: clamp(24px, 5vw, 64px);
    flex-wrap: wrap;
}

.trust-bar__item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--navy-300);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.trust-bar__item svg {
    color: var(--gold-500);
    flex-shrink: 0;
}

/* --- Section Headers --- */
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold-500);
    margin-bottom: 16px;
}

.section-label--light {
    color: var(--gold-400);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 500;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-title--light {
    color: var(--white);
}

.text-accent {
    color: var(--gold-500);
    font-style: italic;
}

.text-accent-light {
    color: var(--gold-400);
    font-style: italic;
}

.section-desc {
    font-size: clamp(16px, 1.2vw, 18px);
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.75;
}

.section-desc--light {
    color: var(--navy-200);
}

.section-header {
    margin-bottom: clamp(48px, 6vw, 72px);
}

.section-header--light {
    margin-bottom: clamp(48px, 6vw, 72px);
}

/* --- Services --- */
.services {
    padding: var(--section-pad) 0;
    background: var(--off-white);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--warm-gray);
    border-radius: 16px;
    padding: clamp(32px, 3vw, 44px);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out-expo);
}

.service-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(10, 14, 26, 0.08);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card--featured {
    background: var(--navy-900);
    border-color: rgba(201, 168, 76, 0.15);
}

.service-card--featured .service-card__title {
    color: var(--white);
}

.service-card--featured .service-card__desc {
    color: var(--navy-200);
}

.service-card--featured .service-card__icon {
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold-400);
}

.service-card--featured .service-card__features li {
    color: var(--navy-300);
}

.service-card--featured .service-card__features li::before {
    color: var(--gold-500);
}

.service-card--featured::before {
    transform: scaleX(1);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-50);
    color: var(--navy-700);
    border-radius: 12px;
    margin-bottom: 24px;
}

.service-card__title {
    font-family: var(--font-display);
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-card__desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card__features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-card__features li {
    font-size: 14px;
    color: var(--text-body);
    padding-left: 20px;
    position: relative;
}

.service-card__features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--gold-500);
    font-weight: 700;
}

/* --- Process --- */
.process {
    padding: var(--section-pad) 0;
    background: var(--navy-900);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.process__timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process__timeline::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-500), var(--gold-500), transparent);
    opacity: 0.2;
}

.process__step {
    text-align: center;
    padding: 0 clamp(12px, 2vw, 24px);
    position: relative;
}

.process__step-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: rgba(201, 168, 76, 0.15);
    margin-bottom: 20px;
    line-height: 1;
    transition: color 0.4s ease;
}

.process__step:hover .process__step-number {
    color: rgba(201, 168, 76, 0.4);
}

.process__step-content h3 {
    font-family: var(--font-display);
    font-size: clamp(20px, 1.6vw, 24px);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.process__step-content p {
    font-size: 14px;
    color: var(--navy-300);
    line-height: 1.7;
}

/* --- Methods --- */
.methods {
    padding: var(--section-pad) 0;
    background: var(--off-white);
}

.methods__layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(48px, 6vw, 80px);
    align-items: start;
}

.methods__text {
    position: sticky;
    top: 120px;
}

.methods__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.method-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--warm-gray);
    border-radius: 12px;
    transition: all 0.35s var(--ease-out-expo);
}

.method-item:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(10, 14, 26, 0.06);
}

.method-item__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-900);
    color: var(--gold-400);
    border-radius: 10px;
    flex-shrink: 0;
}

.method-item h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.method-item p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- About --- */
.about {
    padding: var(--section-pad) 0;
    background: var(--white);
}

.about__layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(48px, 6vw, 80px);
    align-items: center;
}

.about__visual-card {
    background: var(--navy-900);
    border-radius: 20px;
    padding: clamp(40px, 4vw, 60px);
    position: relative;
    overflow: hidden;
}

.about__visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
}

.about__visual-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-300), transparent);
}

.about__visual-number {
    font-family: var(--font-display);
    font-size: clamp(72px, 8vw, 96px);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    display: block;
}

.about__visual-text {
    font-family: var(--font-display);
    font-size: clamp(24px, 2.5vw, 32px);
    color: var(--gold-400);
    font-style: italic;
    display: block;
    margin-bottom: 32px;
}

.about__visual-quote {
    font-family: var(--font-display);
    font-size: clamp(18px, 1.5vw, 22px);
    color: var(--navy-200);
    line-height: 1.6;
    font-style: italic;
    border-left: 2px solid var(--gold-500);
    padding-left: 24px;
    position: relative;
}

.about__text {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about__values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid var(--warm-gray);
}

.about__value strong {
    display: block;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.about__value span {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- FAQ --- */
.faq {
    padding: var(--section-pad) 0;
    background: var(--off-white);
}

.faq__list {
    max-width: 800px;
}

.faq__item {
    border-bottom: 1px solid var(--warm-gray);
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    cursor: pointer;
    list-style: none;
    transition: color 0.3s ease;
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question span {
    font-family: var(--font-display);
    font-size: clamp(18px, 1.5vw, 22px);
    font-weight: 600;
    color: var(--text-dark);
}

.faq__question:hover span {
    color: var(--gold-500);
}

.faq__icon {
    color: var(--gold-500);
    flex-shrink: 0;
    transition: transform 0.35s var(--ease-out-expo);
}

details[open] .faq__icon {
    transform: rotate(180deg);
}

.faq__answer {
    padding-bottom: 24px;
}

.faq__answer p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 640px;
}

/* --- Aktuality / Blog Section --- */
.aktuality {
    padding: var(--section-pad) 0;
    background: var(--navy-900);
    position: relative;
    overflow: hidden;
}

.aktuality::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 80% 20%, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.aktuality .section-label {
    color: var(--gold-400);
}

.aktuality .section-title {
    color: var(--white);
}

.aktuality .section-desc {
    color: var(--navy-200);
}

.aktuality__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
    position: relative;
}

.aktuality__card {
    display: flex;
    flex-direction: column;
    padding: clamp(28px, 3vw, 36px);
    background: var(--navy-800);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.aktuality__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out-expo);
}

.aktuality__card:hover {
    border-color: rgba(201, 168, 76, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.aktuality__card:hover::before {
    transform: scaleX(1);
}

.aktuality__card--featured {
    background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-800) 100%);
    border-color: rgba(201, 168, 76, 0.15);
}

.aktuality__card--featured::before {
    transform: scaleX(1);
}

.aktuality__card-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold-400);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 100px;
    margin-bottom: 16px;
    align-self: flex-start;
}

.aktuality__card h3 {
    font-family: var(--font-display);
    font-size: clamp(18px, 1.5vw, 22px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.35;
    margin-bottom: 12px;
}

.aktuality__card p {
    font-size: 14px;
    color: var(--navy-200);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 16px;
}

.aktuality__card-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-400);
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    margin-top: auto;
}

.aktuality__card:hover .aktuality__card-link {
    color: var(--gold-300);
}

.aktuality__cta {
    text-align: center;
    position: relative;
}

.aktuality__fb-btn {
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--navy-100);
}

.aktuality__fb-btn:hover {
    border-color: var(--gold-500);
    color: var(--gold-400);
    background: rgba(201, 168, 76, 0.06);
}

/* --- CTA Section --- */
.cta-section {
    padding: clamp(60px, 8vw, 100px) 0;
    background: var(--navy-950);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 30% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 80% 30%, rgba(51, 73, 112, 0.1) 0%, transparent 60%);
}

.cta-section__inner {
    position: relative;
    text-align: center;
}

.cta-section__eyebrow {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold-400);
    letter-spacing: 0.04em;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.cta-section__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 500;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-section__desc {
    font-size: clamp(16px, 1.2vw, 18px);
    color: var(--navy-200);
    margin-bottom: 40px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-section__phone {
    font-size: 15px;
    color: var(--navy-300);
    transition: color 0.3s ease;
}

.cta-section__phone strong {
    color: var(--gold-400);
}

.cta-section__phone:hover {
    color: var(--white);
}

/* --- Contact --- */
.contact {
    padding: var(--section-pad) 0;
    background: var(--white);
}

.contact__layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: clamp(48px, 6vw, 80px);
    align-items: start;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-dark);
    background: var(--off-white);
    border: 1px solid var(--warm-gray);
    border-radius: 10px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-input::placeholder {
    color: var(--navy-300);
}

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

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%236b6b6b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-consent {
    margin-bottom: 24px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.form-checkbox input {
    display: none;
}

.form-checkbox__mark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--warm-gray);
    border-radius: 5px;
    flex-shrink: 0;
    margin-top: 1px;
    transition: all 0.25s ease;
    position: relative;
}

.form-checkbox input:checked + .form-checkbox__mark {
    background: var(--gold-500);
    border-color: var(--gold-500);
}

.form-checkbox input:checked + .form-checkbox__mark::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 6px;
    width: 5px;
    height: 9px;
    border: solid var(--navy-950);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__card {
    padding: 28px;
    background: var(--off-white);
    border-radius: 12px;
    border: 1px solid var(--warm-gray);
}

.contact__card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact__card p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.6;
}

.contact__link {
    font-size: 18px;
    font-weight: 600;
    color: var(--gold-500) !important;
    display: block;
    margin-bottom: 4px;
}

.contact__link:hover {
    color: var(--gold-400) !important;
}

.contact__note {
    font-size: 13px;
    color: var(--text-muted);
}

.contact__socials {
    display: flex;
    gap: 12px;
}

.contact__social {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-900);
    color: var(--gold-400);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact__social:hover {
    background: var(--gold-500);
    color: var(--navy-950);
    transform: translateY(-2px);
}

/* --- Footer --- */
.footer {
    background: var(--navy-950);
    padding: 64px 0 32px;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__desc {
    font-size: 14px;
    color: var(--navy-400);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}

.footer__links h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy-200);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links a,
.footer__links li {
    font-size: 14px;
    color: var(--navy-400);
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: var(--gold-400);
}

.footer__bottom {
    padding-top: 24px;
    text-align: center;
}

.footer__bottom p {
    font-size: 13px;
    color: var(--navy-500);
}

.footer__credit {
    margin-top: 8px;
    font-size: 12px;
    color: var(--navy-300);
    letter-spacing: 0.01em;
}

.footer__credit a {
    color: var(--gold-500);
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer__credit a:hover {
    color: var(--gold-400);
}

/* --- Footer legal links --- */
.footer__legal {
    margin-top: 6px;
    font-size: 13px;
}

.footer__legal a {
    color: var(--navy-400);
    transition: color 0.3s;
}

.footer__legal a:hover {
    color: var(--gold-400);
}

.footer__legal-sep {
    margin: 0 8px;
    color: var(--navy-400);
}

/* --- Floating CTA Button --- */
.floating-cta {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--gold-500);
    color: var(--navy-950);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
    box-shadow: 0 6px 24px rgba(201, 168, 76, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.35s var(--ease-out-expo);
    transform: translateY(100px);
    opacity: 0;
}

.floating-cta--visible {
    transform: translateY(0);
    opacity: 1;
}

.floating-cta:hover {
    background: var(--gold-400);
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(201, 168, 76, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2);
    color: var(--navy-950);
}

/* Pulse ring behind button */
.floating-cta__pulse {
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    border: 2px solid var(--gold-500);
    opacity: 0;
    animation: floatingPulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatingPulse {
    0%, 100% { transform: scale(1); opacity: 0; }
    50% { transform: scale(1.12); opacity: 0.4; }
}

.floating-cta:hover .floating-cta__pulse {
    animation: none;
    opacity: 0;
}

.floating-cta svg {
    flex-shrink: 0;
}

.floating-cta__label {
    white-space: nowrap;
}

/* --- Cookie Consent Bar --- */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--navy-900);
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    padding: 0;
    transform: translateY(100%);
    transition: transform 0.5s var(--ease-out-expo);
}

.cookie-bar--visible {
    transform: translateY(0);
}

.cookie-bar__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 20px clamp(20px, 4vw, 40px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-bar__text {
    flex: 1;
}

.cookie-bar__text p {
    font-size: 14px;
    color: var(--navy-200);
    line-height: 1.6;
    margin: 0;
}

.cookie-bar__text a {
    color: var(--gold-400);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-bar__text a:hover {
    color: var(--gold-300);
}

.cookie-bar__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-bar__btn {
    padding: 10px 22px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-bar__btn--accept {
    background: var(--gold-500);
    color: var(--navy-950);
}

.cookie-bar__btn--accept:hover {
    background: var(--gold-400);
}

.cookie-bar__btn--reject {
    background: transparent;
    color: var(--navy-200);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.cookie-bar__btn--reject:hover {
    border-color: var(--navy-300);
    color: var(--white);
}

/* Cookie bar compact layout */
.cookie-bar__compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Cookie bar settings button */
.cookie-bar__btn--settings {
    background: transparent;
    color: var(--navy-200);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.cookie-bar__btn--settings:hover {
    border-color: var(--gold-500);
    color: var(--gold-400);
}

.cookie-bar__btn--save {
    background: var(--navy-700);
    color: var(--white);
}

.cookie-bar__btn--save:hover {
    background: var(--navy-600);
}

/* Cookie detail / expanded panel */
.cookie-bar__detail-header {
    margin-bottom: 20px;
}

.cookie-bar__detail-header h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}

.cookie-bar__detail-header p {
    font-size: 13px;
    color: var(--navy-300);
    margin: 0;
}

.cookie-bar__detail-header a {
    color: var(--gold-400);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-bar__detail .cookie-bar__actions {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Cookie categories */
.cookie-bar__categories {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cookie-cat {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.cookie-cat__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cookie-cat__info {
    flex: 1;
}

.cookie-cat__info strong {
    display: block;
    font-size: 14px;
    color: var(--white);
    margin-bottom: 2px;
}

.cookie-cat__info span {
    font-size: 12px;
    color: var(--navy-300);
    line-height: 1.4;
}

/* Toggle switch */
.cookie-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-toggle input[type="checkbox"] {
    display: none;
}

.cookie-toggle__track {
    display: block;
    width: 44px;
    height: 24px;
    background: var(--navy-600);
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-toggle__track::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: var(--white);
    border-radius: 50%;
    transition: transform 0.3s var(--ease-out-expo);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.cookie-toggle input:checked + .cookie-toggle__track {
    background: var(--gold-500);
}

.cookie-toggle input:checked + .cookie-toggle__track::after {
    transform: translateX(20px);
}

/* Locked toggle (essential) */
.cookie-toggle--locked {
    gap: 10px;
}

.cookie-toggle--locked .cookie-toggle__track {
    width: 44px;
    height: 24px;
    background: var(--gold-500);
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-toggle--locked .cookie-toggle__track::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: var(--white);
    border-radius: 50%;
    transform: translateX(20px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.cookie-toggle__label {
    font-size: 11px;
    color: var(--gold-400);
    white-space: nowrap;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Hide floating CTA when cookie bar is visible to avoid overlap */
.cookie-bar--visible ~ .floating-cta--visible {
    bottom: 90px;
}

/* --- Reveal Animations --- */
[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- Form Success State --- */
.form-success {
    text-align: center;
    padding: 48px;
    background: var(--off-white);
    border-radius: 16px;
    border: 1px solid rgba(201, 168, 76, 0.3);
}

/* Form error message */
.form-error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    animation: fadeUp 0.3s var(--ease-out-expo);
}

.form-success__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--gold-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-950);
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--text-muted);
    font-size: 15px;
}

/* ========================
   RESPONSIVE
   ======================== */

@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: 1fr 1fr;
    }

    .process__timeline {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .process__timeline::before {
        display: none;
    }

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

    .methods__text {
        position: static;
    }

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

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

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

    .footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }

    .nav__links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--navy-950);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .nav__links--open {
        opacity: 1;
        visibility: visible;
    }

    .nav__links a {
        font-size: 20px;
        color: var(--white);
    }

    .nav__cta {
        margin-top: 16px;
    }

    .nav__lang-wrapper {
        margin-left: 0;
        margin-top: 24px;
    }

    .lang-switcher__btn {
        padding: 10px 20px;
        font-size: 15px;
        background: rgba(255, 255, 255, 0.08);
    }

    .lang-switcher__dropdown {
        right: auto;
        left: 50%;
        transform: translateX(-50%) translateY(-8px) scale(0.96);
    }

    .lang-switcher__dropdown--open {
        transform: translateX(-50%) translateY(0) scale(1);
    }

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

    .nav__toggle--open span:nth-child(2) {
        opacity: 0;
    }

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

    .hero {
        min-height: auto;
        padding: 140px 0 80px;
    }

    .hero__stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .hero__stat-divider {
        width: 40px;
        height: 1px;
    }

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

    .process__timeline {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .process__step {
        text-align: left;
        display: flex;
        gap: 20px;
        align-items: flex-start;
    }

    .process__step-number {
        margin-bottom: 0;
        flex-shrink: 0;
    }

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

    .about__values {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

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

    .btn {
        justify-content: center;
    }

    .cookie-bar__compact {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .cookie-bar__actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-bar__btn {
        width: 100%;
    }

    .cookie-cat__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cookie-toggle {
        align-self: flex-end;
    }

    .floating-cta__label {
        display: none;
    }

    .floating-cta {
        padding: 16px;
        border-radius: 50%;
        bottom: 20px;
        right: 20px;
    }
}
