:root {
    --dark: #1a2330;
    --blue: #2e86c1;
    --blue2: #256fa3;
    --text: #374151;
    --muted: #6b7280;
    --light: #f9fafb;
    --border: #e5e7eb;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 17px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

.material-icons {
    font-size: 1.2rem;
    line-height: 1;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.from-left {
    transform: translateX(-40px);
}

.reveal.from-right {
    transform: translateX(40px);
}

.reveal.visible {
    opacity: 1;
    transform: translate(0);
}

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

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

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

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

/* NAV */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--dark);
    border-bottom: 1px solid rgba(46, 134, 193, .2);
    z-index: 100;
    padding: 0 1.4rem;
    height: 62px;
    display: flex;
    align-items: center;
}

.nav-inner {
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 32px;
    width: auto;
    display: block;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

/* Desktop lang switcher (hidden on mobile) */
.lang-switcher-desktop {
    display: none;
    align-items: center;
    gap: .1rem;
}

.lang-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .5);
    font-size: .72rem;
    font-weight: 700;
    padding: .25rem .55rem;
    border-radius: 4px;
    cursor: pointer;
    letter-spacing: .5px;
    transition: all .2s;
    font-family: 'Roboto', sans-serif;
}

.lang-btn.active {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.lang-btn:hover:not(.active) {
    border-color: rgba(255, 255, 255, .4);
    color: rgba(255, 255, 255, .8);
}

.burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .4rem;
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255, 255, 255, .7);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

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

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

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

/* Nav dropdown */
.nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    list-style: none;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    background: var(--dark);
    border-bottom: 1px solid rgba(46, 134, 193, .2);
    padding: .5rem 0;
}

.nav-links.open {
    display: flex;
}

.nav-links a {
    color: rgba(255, 255, 255, .9);
    text-decoration: none;
    font-size: .95rem;
    font-weight: 500;
    display: block;
    padding: .85rem 1.4rem;
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--blue);
    background: rgba(255, 255, 255, .04);
}

/* Lang switcher inside mobile menu */
.lang-switcher-mobile {
    display: flex;
    align-items: center;
    gap: .3rem;
    padding: .85rem 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, .07);
}

.lang-switcher-mobile .lang-label {
    color: rgba(255, 255, 255, .35);
    font-size: .78rem;
    font-weight: 500;
}

@media(min-width:740px) {
    .burger {
        display: none;
    }

    .lang-switcher-mobile {
        display: none;
    }

    .lang-switcher-desktop {
        display: flex;
    }

    .nav-links {
        display: flex;
        flex-direction: row;
        gap: 1.4rem;
        position: static;
        background: none;
        border: none;
        padding: 0;
    }

    .nav-links a {
        padding: 0;
        font-size: .9rem;
    }

    .nav-links a:hover {
        background: none;
    }
}

/* ── HERO ── */
#hero {
    margin-top: 62px;
    background: var(--dark);
    min-height: 520px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0;
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
}

.hero-text {
    max-width: 550px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--blue);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.hero-tag::before,
.hero-tag::after {
    content: '';
    display: block;
    width: 18px;
    height: 1px;
    background: var(--blue);
    opacity: .6;
}

#hero h1 {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1.1rem;
    letter-spacing: -.5px;
}

#hero h1 span {
    color: var(--blue);
}

#hero p {
    font-size: .95rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-bottom: 2rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: .35rem;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .75);
    font-size: .75rem;
    font-weight: 500;
    padding: .35rem .75rem;
    border-radius: 99px;
}

.badge .material-icons {
    font-size: .9rem;
    color: var(--blue);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: .7rem;
    max-width: 300px;
}

.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    background: var(--blue);
    color: #fff;
    padding: .9rem 1.6rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: .9rem;
    transition: background .2s, transform .15s;
}

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

.btn-ghost {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    background: transparent;
    color: rgba(255, 255, 255, .75);
    padding: .9rem 1.6rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: .9rem;
    border: 1px solid rgba(255, 255, 255, .15);
    transition: background .2s;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .07);
}

.hero-img-wrap {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 52%;
    clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media(min-width:900px) {
    .hero-img-wrap {
        display: block;
    }

    .hero-actions {
        flex-direction: row;
        max-width: none;
    }

    #hero h1 {
        font-size: 2.8rem;
    }

    .hero-content {
        padding: 3rem 0;
    }
}

/* ── SECTIONS ── */
section {
    padding: 4rem 1.4rem;
}

.sec-tag {
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: .5rem;
    display: block;
}

h2 {
    font-size: 1.7rem;
    font-weight: 900;
    letter-spacing: -.4px;
    margin-bottom: .5rem;
}

.sub {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

/* ── LEISTUNGEN ── */
#leistungen {
    background: var(--light);
}

.cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: box-shadow .25s, transform .25s;

    a {
        font-weight: bold;
        color: var(--muted);
    }
}

.card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, .1);
    transform: translateY(-3px);
}

.card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.card-body {
    padding: 1.3rem;
}

.card-top {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .7rem;
}

.card-icon {
    width: 36px;
    height: 36px;
    background: rgba(46, 134, 193, .1);
    border-radius: 9px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: var(--blue);
}

.card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
}

.card p {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.75;
}

@media(min-width:600px) {
    .cards {
        flex-direction: row;
    }

    .card {
        flex: 1;
    }
}

/* ── ANKAUF ── */
#ankauf {
    background: var(--white);
}

.ankauf-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ankauf-img {
    border-radius: 14px;
    overflow: hidden;
    height: 240px;
}

.ankauf-text {
    flex: 1;
}

.ankauf-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.car-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .7rem;
    margin: 1.5rem 0;
}

.car-type {
    display: flex;
    align-items: center;
    gap: .6rem;
    background: var(--light);
    border-radius: 10px;
    padding: .8rem 1rem;
    font-size: .85rem;
    font-weight: 500;
    color: var(--dark);
}

.car-type .material-icons {
    color: var(--blue);
    font-size: 1.1rem;
}

@media(min-width:680px) {
    .ankauf-grid {
        flex-direction: row;
        align-items: center;
    }

    .ankauf-img {
        flex: 1;
        height: 100%;
    }
}

/* ── WUNSCHAUTO ── */
#wunschauto {
    background: var(--dark);
    color: #fff;
}

#wunschauto h2 {
    color: #fff;
}

#wunschauto .sub {
    color: rgba(255, 255, 255, .6);
}

.wunsch-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.wunsch-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.wunsch-item {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 1.2rem 1.3rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.wunsch-item .wi-icon {
    width: 40px;
    height: 40px;
    background: rgba(46, 134, 193, .15);
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: var(--blue);
    flex-shrink: 0;
}

.wunsch-item h4 {
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .3rem;
}

.wunsch-item p {
    font-size: .83rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.7;
}

.wunsch-img {
    flex: 1;
    border-radius: 14px;
    overflow: hidden;
    min-height: 260px;
    max-height: 400px;
}

.wunsch-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media(min-width:680px) {
    .wunsch-layout {
        flex-direction: row;
        align-items: stretch;
    }

    .wunsch-steps {
        flex: 1;
    }

    .wunsch-img {
        flex: 1;
        min-height: unset;
    }
}

/* ── GALERIE ── */
#galerie {
    background: var(--dark);
}

#galerie h2 {
    color: #fff;
}

#galerie .sub {
    color: rgba(255, 255, 255, .6);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .7rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item.wide {
    grid-column: span 2;
}

@media(min-width:600px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item.wide {
        grid-column: span 1;
    }
}

/* ── TRANSPORT ── */
#transport {
    background: var(--light);
}

.transport-img-wrap {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 1.2rem;
    position: relative;
    height: 200px;
}

.transport-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.transport-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26, 35, 48, .88) 45%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.6rem;
}

.big-price {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    color: #fff;
    letter-spacing: -1px;
}

.big-price span {
    font-size: 1.4rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .7);
}

.price-note {
    font-size: .72rem;
    color: rgba(255, 255, 255, .7);
    margin-top: .3rem;
    letter-spacing: .5px;
}

.price-card {
    background: var(--dark);
    border-radius: 14px;
    padding: 1.6rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(46, 134, 193, .2);
}

.calc-label-txt {
    font-size: .7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .8);
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: .5rem;
}

.calc-input {
    width: 100%;
    padding: .85rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .07);
    color: #fff;
    font-size: .95rem;
    font-family: 'Roboto', sans-serif;
}

.calc-input::placeholder {
    color: rgba(255, 255, 255, .4);
}

.calc-input:focus {
    outline: none;
    border-color: var(--blue);
}

.calc-result {
    margin-top: .75rem;
    padding: .85rem 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: .95rem;
    color: #fff;
    display: none;
}

.steps-card {
    background: var(--white);
    border-radius: 14px;
    padding: 1.4rem;
    border: 1px solid var(--border);
}

.steps-title {
    font-size: .88rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.steps {
    list-style: none;
}

.steps li {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: .7rem 0;
    border-bottom: 1px solid var(--border);
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.5;
}

.steps li:last-child {
    border-bottom: none;
}

.step-num {
    min-width: 24px;
    height: 24px;
    background: var(--blue);
    border-radius: 6px;
    display: grid;
    place-items: center;
    font-size: .72rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.steps li strong {
    color: var(--text);
}

/* ── VERTRAUEN ── */
#vertrauen {
    background: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.t-item {
    background: var(--light);
    border-radius: 12px;
    padding: 1.2rem 1rem;
    border: 1px solid var(--border);
}

.t-icon {
    width: 38px;
    height: 38px;
    background: rgba(46, 134, 193, .1);
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: var(--blue);
    margin-bottom: .7rem;
}

.t-item h4 {
    font-size: .9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .3rem;
}

.t-item p {
    font-size: .78rem;
    color: var(--muted);
    line-height: 1.6;
}

@media(min-width:600px) {
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ── TESTIMONIAL CAROUSEL ── */
#testimonial {
    background: var(--light);
    overflow: hidden;
}

.carousel-wrap {
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform .45s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
    gap: 1rem;
}

.testimonial-card {
    min-width: 100%;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .07);
    display: flex;
    flex-direction: column;
}

.tc-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.tc-body {
    padding: 1.6rem;
}

.stars {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: .8rem;
}

.testimonial-quote {
    font-size: .95rem;
    color: var(--text);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.2rem;
}

.testimonial-name {
    font-size: .92rem;
    font-weight: 700;
    color: var(--dark);
}

.testimonial-role {
    font-size: .78rem;
    color: var(--muted);
    margin-top: .2rem;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.2rem;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--white);
    cursor: pointer;
    display: grid;
    place-items: center;
    color: var(--dark);
    transition: background .2s, border-color .2s;
}

.carousel-btn:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.carousel-dots {
    display: flex;
    gap: .5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: background .2s, transform .2s;
}

.dot.active {
    background: var(--blue);
    transform: scale(1.3);
}

@media(min-width:640px) {
    .testimonial-card {
        flex-direction: row;
    }

    .tc-img {
        width: 400px;
        height: 330px;
        min-height: 220px;
        flex-shrink: 0;
    }
}

/* ── PLATTFORMEN ── */
#plattformen {
    background: var(--white);
}

.platform-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.platform-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--light);
    border-radius: 12px;
    padding: 1.2rem 1.4rem;
    border: 1px solid var(--border);
    text-decoration: none;
    transition: box-shadow .2s, transform .2s;
    flex: 1;
}

.platform-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
    transform: translateY(-2px);
}

.platform-info {
    flex: 1;
}

.platform-name {
    font-size: .95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .15rem;
}

.platform-desc {
    font-size: .78rem;
    color: var(--muted);
}

.platform-arrow {
    color: var(--blue);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

@media(min-width:540px) {
    .platform-grid {
        flex-direction: row;
    }
}

/* ── KONTAKT ── */
#kontakt {
    background: var(--light);
}

.c-list {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 1.2rem;
    border: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
}

.c-row {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: 1rem 1.3rem;
    border-bottom: 1px solid var(--border);
}

.c-row:last-child {
    border-bottom: none;
}

.c-ico {
    width: 36px;
    height: 36px;
    background: rgba(46, 134, 193, .1);
    border-radius: 8px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: var(--blue);
}

.c-label {
    font-size: .68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--muted);
}

.c-val {
    font-size: .92rem;
    font-weight: 600;
    color: var(--dark);
}

.c-val a {
    color: var(--dark);
    text-decoration: none;
}

.c-val a:hover {
    color: var(--blue);
}

.cta-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: var(--blue);
    color: #fff;
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: .7rem;
    transition: background .2s;
}

.cta-call:hover {
    background: var(--blue2);
}

.cta-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: #fff;
    color: #128C7E;
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: .95rem;
    border: 1.5px solid #25D366;
    transition: background .2s;
}

.cta-wa:hover {
    background: #f0fdf4;
}

/* ── FOOTER ── */
footer {
    background: var(--dark);
    text-align: center;
    padding: 2.5rem 1.4rem;
    font-size: .78rem;
    line-height: 2;
    border-top: 1px solid rgba(46, 134, 193, .2);
}

footer img {
    height: 70px;
    width: auto;
    margin-bottom: 1rem;
}

footer p {
    color: rgba(255, 255, 255, .6);
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    color: var(--blue);
}

/* LANGUAGE TOGGLE */
[data-lang] {
    display: none;
}

body.lang-de [data-lang="de"] {
    display: revert;
}

body.lang-ro [data-lang="ro"] {
    display: revert;
}

/* for inline elements that need inline display */
span[data-lang],
a[data-lang],
div[data-lang] {
    display: none;
}

body.lang-de span[data-lang="de"],
body.lang-de a[data-lang="de"],
body.lang-de div[data-lang="de"] {
    display: revert;
}

body.lang-ro span[data-lang="ro"],
body.lang-ro a[data-lang="ro"],
body.lang-ro div[data-lang="ro"] {
    display: revert;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: .3rem;
    margin-left: .8rem;
}

.lang-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .5);
    font-size: .72rem;
    font-weight: 700;
    padding: .25rem .55rem;
    border-radius: 4px;
    cursor: pointer;
    letter-spacing: .5px;
    transition: all .2s;
    font-family: 'Roboto', sans-serif;
}

.lang-btn.active {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.lang-btn:hover:not(.active) {
    border-color: rgba(255, 255, 255, .4);
    color: rgba(255, 255, 255, .8);
}

.m-10 {
    margin-top: 100px;
    margin-bottom: 100px;
}

.mt-5 {
    margin-top: 50px;
}

.mt-1 {
    margin-top: 10px;
}

.mt-3 {
    margin-top: 32px;
}