﻿/* ═══════════════════════════════════════════
   home.css — Landing page
   ═══════════════════════════════════════════ */

/* ── Shared ── */
:root {
    --orange-200: #f5da92;
    --accent-50: #f6f7f9;
    --accent-100: #e2e5ee;
    --accent-200: #cfd4e2;
    --accent-300: #b3bbd0;
    --accent-400: #94a1bc;
    --accent-500: #70809e;
    --accent-600: #5a6a8a;
    --accent-700: #4d5b7c;
    --accent-800: #3f4a65;
    --accent-900: #374055;
    --accent-950: #313849;
    --accent-975: ##212530;

    --em-title: 3rem;
    --em-title-feature: 2.5rem;
    --em-text: 1.125rem;
}

body {
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 3rem;
}

h2 {
    font-size: var(--em-title);
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    justify-self: center;
    line-height: 1.25;
}

@media (max-width: 1030px) {
    :root {
        --em-title: 2.8rem;
    }
}

@media (max-width: 820px) {
    :root {
        --em-title: 2.6rem;
        --em-title-feature: 2.2rem;
        --em-text: 1.125rem;
    }
}

@media (max-width: 768px) {
    :root {
        --em-title: 2.5rem;
        --em-title-feature: 2.1rem;
        --em-text: 1.1rem;
    }
}

@media (max-width: 740px) {
    .container {
        padding: 0 2rem;
    }
}

@media (max-width: 480px) {
    :root {
        --em-title: 2.1rem;
        --em-title-feature: 2rem;
        --em-text: 1.08rem;
    }

    .container {
        padding: 0 1.5rem;
    }
}

/* #region HERO */
.hero {
    padding: 8rem 3rem 4rem;
    text-align: center;
    background: linear-gradient(to bottom, var(--accent-900) 0%, var(--accent) 100%);
}

.hero-content {
    max-width: 1300px;
    align-self: center;
    justify-self: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 600;
    color: white;
    line-height: 1.1;
    justify-self: center;
}

.hero-subtitle {
    font-size: 22px;
    color: rgba(255,255,255,0.95);
    line-height: 1.6;
    margin: 2rem auto 2.5rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.btn-hero-primary {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #d29641;
    color: white;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s, transform 0.1s;
}

    .btn-hero-primary:hover {
        background: #dfa24e;
    }

.btn-hero-secondary {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    background: rgba(255,255,255,0.3);
    color: white;
    text-decoration: none;
    transition: background 0.15s, transform 0.1s;
}

    .btn-hero-secondary:hover {
        background: rgba(255,255,255,0.38);
    }

.hero-screenshot {
    max-width: 1200px;
    margin: 4rem auto 0;
}

    .hero-screenshot img {
        width: 100%;
        border-radius: 12px;
        box-shadow: 0 16px 48px rgba(17, 23, 39, 0.25), 0 4px 12px rgba(17, 23, 39, 0.1);
        display: block;
    }

.hero-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 32px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-stars {
    display: flex;
    gap: 0.2rem;
    color: #E8B865;
    font-size: 1rem;
}

.hero-rating {
    font-weight: 600;
    letter-spacing: 1px;
    color: white;
}

.hero-reviews {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1050px) {
    .hero {
        padding-top: 7rem;
    }

    .hero-title {
        font-size: 3.5rem;
        max-width: var(--hero-mw-1024);
    }   
}

@media (max-width: 820px) {

    .hero {
        padding-top: 6rem;
    }

    .hero-title {
        font-size: 2.9rem;
        max-width: var(--hero-mw-820);
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-screenshot img {
        border-radius: 8px;
    }
}

@media (max-width: 768px) {

    .hero {
        padding: 6rem 2rem 3rem;
    }

    .hero-title {
        font-size: 2.75rem;
        max-width: var(--hero-mw-768);
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-screenshot img {
        border-radius: 6px;
    }

    .btn-hero-primary {
        font-size: 1.05rem;
    }

    .btn-hero-secondary {
        font-size: 1.05rem;
    }
}

@media (max-width: 510px) {   

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-hero-primary {
        width: 260px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-hero-secondary {
        width: 260px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4.5rem 1.5rem 2rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .btn-hero-primary {
        font-size: 1rem;
    }

    .btn-hero-secondary {
        font-size: 1rem;
    }
}
/* #endregion */

/* #region FEATURES */
.features {
    padding: 8rem 0;
    overflow-x: hidden;
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
}

    .feature-block:last-child {
        margin-bottom: 0;
    }

.feature-block-reverse {
    direction: rtl;
}

    .feature-block-reverse > * {
        direction: ltr;
    }

.home-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    background: var(--orange-100);
    color: var(--orange-700);
    justify-self: start;
    border-radius: 40px;
    padding: 6px 12px;
}

.feature-title {
    font-size: var(--em-title-feature);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: left;
    justify-self: start;
}

.feature-desc {
    font-size: var(--em-text);
    color: var(--text-secondary);
    line-height: 1.7;
}

.feature-visual img {
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(17,23,39,0.1);
    border: 1px solid var(--border);   
}

img.img-tab-library {
    width: 150%;
    margin-right: -50%;
    margin-left: 0;
}

img.img-transposition {
    max-height: 550px;
    max-width: 100%;
    aspect-ratio: auto;
    justify-self: center;
    display: block;
}

img.img-tab-editor {
    width: 125%;
    margin-right: -25%;
    margin-left: 0;
}

img.img-virtual-handpan {
    width: 800px;
    margin-left: calc(100% - 800px);
    margin-right: 0;
}

/* Switch to column */
@media (max-width: 1050px) {

    .feature-title {
        /*max-width: 600px;*/
    }

    .feature-block {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 8rem;
    }

    .feature-block-reverse {
        direction: ltr;
    }

    img.img-tab-library {
        max-width: 800px;
        width: 100%;
        margin-right: 0;
        margin-left: 0;
        justify-self: center;
        display: block;
    }

    img.img-tab-editor {
        max-width: 800px;
        width: 100%;
        margin-right: 0;
        margin-left: 0;
        justify-self: center;
        display: block;
    }

    img.img-virtual-handpan {
        max-width: 800px;
        width: 100%;
        margin-right: 0;
        margin-left: 0;
        justify-self: center;
        display: block;
    }
}

@media (max-width: 768px) {

    .features {
        padding: 6rem 0 8rem;
        overflow-x: hidden;
    }

    .feature-block {
        margin-bottom: 6rem;
    }
    
    img.img-tab-library {
        max-width: none;
        width: 120%;
        margin-right: -20%;
        margin-left: 0;
    }
}

@media (max-width: 600px) {
    img.img-tab-library {
        width: 170%;
        margin-right: -70%;
        margin-left: 0;
    }
}

@media (max-width: 450px) {
    img.img-tab-editor {
        width: 135%;
        margin-left: -35%;
        margin-right: 0;
    }

    img.img-virtual-handpan {
        width: 150%;
        margin-left: 0;
        margin-right: -50%;
    }
}
/* #endregion */

/* #region STATS */
.stats {
    padding: 0 0 8rem;
}

.stats-grid {   
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-item:first-child {
    justify-self: end;
    margin-right: 4rem;
}

.stat-item:last-child {
    justify-self: start;
    margin-left: 4rem;
}

.stat-number {
    font-size: 3.2em;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: var(--em-text);
    color: var(--text-secondary);
}

.stat-divider {
    width: 1px;
    height: 80px;
    background: var(--border);
}

@media (max-width: 830px) {
    .stat-number {
        font-size: 3em;
    }    
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 2.8em;
    }
}

@media (max-width: 600px) {   
    .stats .container {
        padding: 0;
    }

    .stat-item:first-child {
        justify-self: center;
        margin-right: 1.25rem;
    }

    .stat-item:last-child {
        justify-self: center;
        margin-left: 1.25rem;
    }

    .stat-item {
        margin-right: 1.25rem;
        margin-left: 1.25rem;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 2.5em;
    }

    .stat-label {
        font-size: 1em;
    }
}
/* #endregion */

/* #region TESTIMONIALS */
.testimonials {
    padding: 6rem 0;
    background: rgba(246,233,203,0.5);
}

.testimonials h2 {
    margin: 0 0 6rem;
    max-width: 800px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.testimonial-card {
    background: var(--card-bg);
    /*border: 1px solid var(--border);*/
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonial-stars {
    display: flex;
    gap: 0.2rem;
}

    .testimonial-stars i {
        font-size: 1rem;
        color: #f0b429;
    }

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 8px;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
}

.testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #771E9D;
    color: white;
    font-weight: 500;
    background: var(--btn-danger-bg);
}

.avatar-green {
    background: var(--green-500);
}

.avatar-blue {
    background: var(--blue-500);
}

.testimonial-name {
    font-size: 1.05rem;
    color: var(--text-primary);
}

.testimonial-see-all {
    font-size: var(--em-text);
    color: #5172a6;
    display: table;
    justify-content: center;
    text-align: center;
    margin: 4rem auto 0;
}

.testimonial-see-all:hover {
    opacity: 0.7;
}

@media (max-width: 1250px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 820px) {

    .testimonials {
        padding: 5rem 0 4rem;
    }   

    .testimonials h2 {
        padding: 0 3rem;
        margin: 0 0 4rem;
    }

    .testimonial-see-all {
        margin: 3rem auto 0;
    }

    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        gap: 1.5rem;
        scroll-snap-type: x mandatory;
        padding: 10px 2rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
        margin: 0 -3rem; /* remove the parent container's horizontal padding */
    }

    .testimonials-grid::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        flex: 0 0 90%;
        scroll-snap-align: none;
    }

    .testimonial-card:nth-child(3) {
        grid-column: auto;
        max-width: none;
        margin: 0;
    }
}

@media (max-width: 740px) {
    .testimonials-grid {
        margin: 0 -2rem; /* remove the parent container's horizontal padding */
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 4rem 0;
    }

    .testimonials h2 {
        margin-bottom: 3rem;
    }   

    .testimonials-grid {
        margin: 0 -1.5rem; /* remove the parent container's horizontal padding */
        gap: 1rem;
    }

    .testimonial-card {
        flex: 0 0 95%;
    }

    .testimonials-grid {
        padding: 10px 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }
}
/* #endregion */

/* #region PAIN POINTS */
.pain-points {
    padding: 8rem 0 0;
}

    .pain-points h2 {
        margin-bottom: 3rem;
        text-align: left;
    }

.pain-layout {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 4rem;
    align-items: stretch;
}

.block-solution {
    margin-top: 3rem;
}

.pain-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.pain-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

    .pain-list li {
        font-size: var(--em-text);
        color: var(--text-primary);
        line-height: 1.5;
        display: flex;
        align-items: flex-start;
        gap: 0.6rem;
        font-style: italic;
    }

    .pain-list li i {
        color: var(--red-500);
        font-size: 1.5rem;
        margin-top: 2px;
        flex-shrink: 0;
    }

.pain-solution-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

    .pain-solution-list li {
        font-size: var(--em-text);
        color: var(--text-primary);
        line-height: 1.5;
        display: flex;
        align-items: flex-start;
        gap: 0.6rem;
    }

        .pain-solution-list li i {
            color: var(--green-500);
            font-size: 1.5rem;
            margin-top: 2px;
            flex-shrink: 0;
        }

.pain-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(17,23,39,0.12);
}

    .pain-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 30% center;
        display: block;
        transform: scaleX(-1);
    }


/* Switch to column */
@media (max-width: 1200px) {
    .pain-points {
        padding: 6rem 0 0;
    }

    .pain-layout {
        grid-template-columns: 1fr;
        gap: 5rem;
    }

    .pain-points h2 {
        text-align: center;
        margin: 0 0 4rem;
        max-width: 550px;
    }

    .pain-image {
        max-width: 850px;
        display: block;
        justify-self: center;
    }
}

@media (max-width: 950px) {
    .pain-layout {
        gap: 4rem;
    }
}

@media (max-width: 768px){
    .pain-points h2 {
        max-width: var(--mobile-pain-title-768mw);
    }

    .pain-title {
        font-size: 1.15rem;
    }

    .pain-list li i {
        font-size: 1.4rem;
        margin-top: 4px;
    }

    .pain-solution-list li i {
        font-size: 1.4rem;
        margin-top: 4px;
    }
}

@media (max-width: 480px) {
    .pain-points {
        padding: 5rem 0 0;
    }
}
/* #endregion */

/* #region HIGHLIGHTS */
.highlights {
    padding: 8rem 0;
}

    .highlights .container {
        border-radius: 20px;
        background: var(--text-primary);
        margin: 0 3rem;
        justify-self: center;
        padding: 48px 64px;
    }

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px;    
}

.highlight-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.highlight-icon {
    font-size: 1.75rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: start;
    color: #C6E4FC;
}

.fa-hand-peace {
    margin-bottom: 2px;
}

.highlight-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
}

.highlight-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}

.section-divider {
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin: 4rem 0;
    display: flex;
    justify-content: center;
}

    .section-divider img {
        max-width: 1300px;
        height: 100%;
        box-shadow: 0 4px 20px rgba(17,23,39,0.12);
        border-radius: 20px;
        object-fit: cover;
        object-position: center 40%;
    }

.highlights .btn-hero-primary {
    background: #C6E4FC;
    color: var(--text-primary);
    margin-top: 48px;
    justify-self: center;
    display: block;
}

.highlights .btn-hero-primary:hover {
    background: rgba(198,228,252,0.9);
}

/* Reduce padding and gap */
@media (max-width: 1100px) {
    .highlights {
        padding: 6rem 0;
    }

    .highlights .container {
        padding: 2.5rem;
    }

    .highlights-grid {
        gap: 2.5rem;
    }
}

/* Switch to column */
@media (max-width: 980px) {

    .highlights {
        padding: 4rem 0 6rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }   
}

@media (max-width: 768px) {  
    .highlights .container {
        margin: 0 2rem;
    }
}

@media (max-width: 480px) {
    .highlights {
        padding-bottom: 4rem;
    }

    .highlights .container {
        margin: 0 1.5rem;
        padding: 2rem;
    }

    .highlight-title {
        font-size: 1rem;
    }

    .highlight-desc {
        font-size: 1rem;
    }
}
/* #endregion */

/* #region BUILT BY */
.built-by {
    padding: 8rem 0;
    background: var(--accent-50);
}

    .built-by h2 {
        text-align: left;
        margin-bottom: 2rem;
    }

.built-by-inner {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.built-by-photo {
    width: 460px;
    max-width: 50%;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    object-fit: cover;
    object-position: 60% 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(17,23,39,0.12);
}

.built-by-desc {
    font-size: var(--em-text);
    color: var(--text-primary);
    line-height: 1.6;
    white-space: pre-wrap;
}

@media (max-width: 1200px) {

    .built-by {
        padding: 4rem 0;
    }

    .built-by h2 {
        text-align: center;
        max-width: var(--builtby-title-1200mw);
        margin-bottom: 4rem;
    }  

    .built-by-inner {
        flex-direction: column;
        gap: 4rem;
    }

    .built-by-photo {
        /*object-position: 60% 50%;*/
        border-radius: 100%;
        max-width: 320px;
        width: 85%;
    }
}

@media (max-width: 820px) {
    .built-by h2 {
        max-width: var(--builtby-title-820mw);
    }
}

@media (max-width: 768px) {

    .built-by h2 {
        max-width: var(--builtby-title-768mw);
    }
}

@media (max-width: 480px) {
    .built-by-inner {
        gap: 3rem;
    }

    .built-by h2 {
        margin-bottom: 2.5rem;
    }
}
/* #endregion */

/* #region FAQ */
.pricing-faq {
    max-width: 1000px;
    margin: 8rem auto;
}

    .pricing-faq h2 {
        margin-bottom: 4rem;
    }

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(17, 23, 39, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.8rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: var(--em-text);
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: background 0.12s;
}

.faq-chevron {
    font-size: 20px;
    color: var(--text-primary);
    flex-shrink: 0;
    transition: transform 0.25s;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    font-size: 1.05rem;
    color: #495165;
    line-height: 1.6;
    padding: 0 1.5rem;
    white-space: pre-wrap;
    transition: grid-template-rows 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    grid-template-rows: 1fr;
    padding-bottom: 1.5rem;
}

.faq-answer > div {
    overflow: hidden;
}

.contact-email {
    font-size: var(--em-text);
    color: var(--text-primary);
    margin-top: 3rem;
    text-align: center;
}

.contact-email-link {
    color: var(--link);
}

    .contact-email-link:hover {
        color: var(--link-hover);
    }

@media (max-width: 1100px) {
    .pricing-faq {
        margin: 6rem auto;
    }
}

@media (max-width: 480px) {
    .pricing-faq {
        margin: 4rem auto 5rem;
    }

    .faq-question {
        font-size: 1.05rem;
    }

    .faq-answer {
        font-size: 1rem;
    }

    .contact-email {
        font-size: 1.05rem;
    }
}
/* #endregion */

/* #region FINAL CTA */
.final-cta {
    border-radius: 20px;
    padding: 0 3rem 6rem;
    text-align: center;
    margin: 0 auto;
    max-width: 1100px;
}

    .final-cta .container {
        background: var(--accent-950);
        border-radius: 20px;
        padding: 48px 64px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

.final-cta-title {
    font-size: 2.4rem;
    font-weight: 600;
    color: white;
}

.final-cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    text-align: center;
    margin: 32px auto 48px;
}

.final-cta .btn-hero-primary {
    background: var(--orange-100);
    color: var(--orange-700);
    font-size: var(--em-text);
}

.final-cta .btn-hero-primary:hover {
    background: var(--orange-200);
}

@media (max-width: 768px) {
    .final-cta {
        padding: 0 2rem 4rem;
    }

    .final-cta .container {
        padding: 2rem;
    }

    .final-cta-title {
        font-size: 1.9rem;
    }

    .final-cta-subtitle {
        font-size: 1.15rem;
    }

    .final-cta .btn-hero-primary {
        font-size: 1.1rem;
        margin: 0;
        width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media (max-width: 480px) {
    .final-cta {
        padding: 0 1.5rem 4rem;
    }

    .final-cta-title {
        font-size: 1.5rem;
    }

    .final-cta-subtitle {
        font-size: 1.05rem;
    }

    .final-cta .btn-hero-primary {
        font-size: 1rem;
    }
}
/* #endregion */


/* ── Nav override ── */
.nav,
.nav-mobile {
    background: var(--accent-900);
}

.nav-links a:hover,
.btn-nav-lang:hover,
.nav-lang:hover .btn-nav-lang {
    color: #fff;
    background: rgba(255,255,255,0.2);
}

.footer {
    background: var(--accent-950);
}