@import url("fontawesome-all.min.css");

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

body {
    line-height: 1;
    -webkit-text-size-adjust: none;
    font-family: 'Rubik', sans-serif !important;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6)), url("../../images/hero.png?v=2") center top / cover no-repeat;
    color: var(--dark);
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after, q:before, q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

mark {
    background-color: transparent;
    color: inherit;
}

input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input, select, textarea {
    appearance: none;
}

/* Basic */

html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

    body.is-preload *, body.is-preload *:before, body.is-preload *:after {
        -moz-animation: none !important;
        -webkit-animation: none !important;
        -ms-animation: none !important;
        animation: none !important;
        transition: none !important;
    }

body, input, select, textarea {
    color: var(--light);
    font-family: 'Rubik', sans-serif;
    font-size: 15pt;
    font-weight: 300;
    letter-spacing: 0.025em;
    line-height: 1.75em;
}

a {
    transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
    color: var(--gold);
    text-decoration: none;
    border-bottom: dotted 1px;
}

    a:hover {
        border-bottom-color: transparent;
    }

strong, b {
    font-weight: 400;
}

p, ul, ol, dl, table, blockquote {
    margin: 0 0 2em 0;
}

h1, h2, h3, h4, h5, h6 {
    color: inherit;
    font-weight: 300;
    line-height: 1.75em;
    margin-bottom: 1em;
    text-transform: uppercase;
}

    h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
        color: inherit;
        text-decoration: none;
        border: 0;
    }

h2 {
    font-size: 1.5em;
    letter-spacing: 0.1em;
    color: var(--dark);
}

h3 {
    font-size: 1.15em;
    letter-spacing: 0.025em;
}

sub {
    font-size: 0.8em;
    position: relative;
    top: 0.5em;
}

sup {
    font-size: 0.8em;
    position: relative;
    top: -0.5em;
}

hr {
    border-top: solid 1px rgba(124, 128, 129, 0.2);
    border: 0;
    margin-bottom: 1.5em;
}

blockquote {
    border-left: solid 0.5em rgba(124, 128, 129, 0.2);
    font-style: italic;
    padding: 1em 0 1em 2em;
}

/* Container */

.container {
    width: min(1400px, 92%);
    margin-inline: auto;
}

    .container.medium {
        width: 1050px;
    }

@media screen and (max-width: 1680px) {

    .container {
        width: 1200px;
    }

        .container.medium {
            width: 900px;
        }
}

@media screen and (max-width: 1280px) {

    .container {
        width: 960px;
    }

        .container.medium {
            width: 735px;
        }
}

@media screen and (max-width: 980px) {

    .container {
        width: 95%;
    }

        .container.medium {
            width: 71.25%;
        }
}

@media screen and (max-width: 840px) {

    .container {
        width: 95%;
    }

        .container.medium {
            width: 95%;
        }
}

@media screen and (max-width: 736px) {

    .container {
        width: 100%;
    }

        .container.medium {
            width: 100%;
        }
}

/* ROW SYSTEM */

.row {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    align-items: stretch;
}

    .row > * {
        box-sizing: border-box;
    }

    /* Alignment */

    .row.aln-left {
        justify-content: flex-start;
    }

    .row.aln-center {
        justify-content: center;
    }

    .row.aln-right {
        justify-content: flex-end;
    }

    .row.aln-top {
        align-items: flex-start;
    }

    .row.aln-middle {
        align-items: center;
    }

    .row.aln-bottom {
        align-items: flex-end;
    }

/* Columns */

.col-1 {
    width: 8.333%;
}

.col-2 {
    width: 16.666%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.333%;
}

.col-5 {
    width: 41.666%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.333%;
}

.col-8 {
    width: 66.666%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.333%;
}

.col-11 {
    width: 91.666%;
}

.col-12 {
    width: 100%;
}

/* Responsive */

@media screen and (max-width: 980px) {

    .row {
        gap: 1.5rem;
    }

    .col-1,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-10,
    .col-11 {
        width: 100%;
    }
}

/* Section/Article */

section.special, article.special {
    text-align: center;
}

header.major {
    padding-bottom: 2em;
}

header.special {
    margin-bottom: 5em;
    padding-top: 7em;
    position: relative;
    text-align: center;
}

    header.special:before, header.special:after {
        border-bottom: solid 1.5px;
        border-top: solid 1.5px;
        content: '';
        height: 7px;
        opacity: 0.1;
        position: sticky;
        top: 1.75em;
        width: 43%;
    }

    header.special:before {
        left: 0;
    }

    header.special:after {
        right: 0;
    }

    header.special h2 {
        margin-bottom: 0;
    }

        header.special h2 + p {
            margin-bottom: 0;
            padding-top: 1.5em;
        }

    header.special .icon {
        cursor: default;
        height: 7em;
        left: 0;
        position: absolute;
        text-align: center;
        top: 1em;
        width: 100%;
    }

        header.special .icon:before {
            font-size: 3.5em;
            opacity: 0.35;
        }

footer > :last-child {
    margin-bottom: 0;
}

footer.major {
    padding-top: 3em;
}

/* Form */

input[type="text"],
input[type="password"],
input[type="email"],
textarea {
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    appearance: none;
    background: none;
    border: solid 1px rgba(124, 128, 129, 0.2);
    border-radius: 0;
    color: inherit;
    display: block;
    padding: 0.75em;
    text-decoration: none;
    width: 100%;
    outline: 0;
}

    input[type="text"]:focus,
    input[type="password"]:focus,
    input[type="email"]:focus,
    textarea:focus {
        border-color: #C8A86C;
    }

input[type="text"],
input[type="password"],
input[type="email"] {
    line-height: 1em;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 0.5;
    position: relative;
    top: 3px;
}

:-moz-placeholder {
    color: inherit;
    opacity: 0.5;
}

::-moz-placeholder {
    color: inherit;
    opacity: 0.5;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 0.5;
}

/* Image */

.image {
    border: 0;
    position: relative;
}

    .image:before {
        content: '';
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
    }

    .image.fit {
        display: block;
    }

        .image.fit img {
            display: block;
            width: 100%;
        }

    .image.featured {
        display: block;
        margin: 0 0 2em 0;
    }

        .image.featured img {
            display: block;
            width: 100%;
        }

/* Icon */

.icon {
    text-decoration: none;
    position: relative;
}

    .icon:before {
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        display: inline-block;
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        line-height: 1;
        text-transform: none !important;
        font-family: 'Font Awesome 5 Free';
        font-weight: 400;
    }

    .icon.solid:before {
        font-weight: 900;
    }

    .icon:before {
        line-height: inherit;
    }

    .icon.brands:before {
        font-family: 'Font Awesome 5 Brands';
    }

    .icon.circle {
        transition: all 0.2s ease-in-out;
        border: 0;
        border-radius: 100%;
        display: inline-block;
        font-size: 1.25em;
        height: 2.25em;
        left: 0;
        line-height: 2.25em;
        text-align: center;
        text-decoration: none;
        top: 0;
        width: 2.25em;
    }

        .icon.circle:hover {
            top: -0.2em;
        }

        .icon.circle.fa-twitter {
            background: #70aecd;
            color: #DDE4F2;
        }

            .icon.circle.fa-twitter:hover {
                background: #7fb7d2;
            }

        .icon.circle.fa-facebook-f {
            background: #7490c3;
            color: #DDE4F2;
        }

            .icon.circle.fa-facebook-f:hover {
                background: #829bc9;
            }

        .icon.circle.fa-google-plus-g {
            background: #db6b67;
            color: #DDE4F2;
        }

            .icon.circle.fa-google-plus-g:hover {
                background: #df7b77;
            }

        .icon.circle.fa-github {
            background: #dcad8b;
            color: #DDE4F2;
        }

            .icon.circle.fa-github:hover {
                background: #e1b89b;
            }

        .icon.circle.fa-dribbble {
            background: #da83ae;
            color: #DDE4F2;
        }

            .icon.circle.fa-dribbble:hover {
                background: #df93b8;
            }

    .icon.featured {
        cursor: default;
        display: block;
        margin: 0 0 1.5em 0;
        opacity: 0.35;
        text-align: center;
    }

        .icon.featured:before {
            font-size: 5em;
            line-height: 1em;
        }

    .icon > .label {
        display: none;
    }

/* Golden Core custom styles */

:root {
    --gold: #946D2A;
    --gold-light: #D4AF6C;
    --blue: #4969B1;
    --dark: #232020;
    --light: #DDE4F2;
    --paper: #ffffff;
    --soft: #f6f8fc;
    --line: rgba(35,32,32,.08);
    --shadow: 0 18px 48px rgba(0,0,0,.07);
}

html {
    direction: rtl;
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

    body::before {
        content: "";
        position: fixed;
        inset: 0;
        background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6)), url("../../images/hero.png?v=2") right center / cover no-repeat;
        z-index: -2;
    }

    body::after {
        content: "";
        position: fixed;
        inset: 0;
        background: linear-gradient(rgba(35,32,32,.2), rgba(35,32,32,.2));
        z-index: -1;
    }

img {
    display: block;
    max-width: 100%;
    height: auto;
}

section {
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
}

p {
    line-height: 1.9;
}

#advantages,
#services,
#brands,
#projects,
#work-gallery,
#process,
#testimonials,
#contact-section,
#contact-form {
    scroll-margin-top: 100px;
}

/* Header */

#header {
    position: sticky !important;
    top: 0;
    width: 100%;
    z-index: 9999;
    min-height: 76px;
    padding: .45rem 0;
    /*    background: rgba(35,32,32,.88);*/
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(26px);
    box-shadow: 0 12px 36px rgba(0,0,0,.10);
/*    transition: background .3s ease, backdrop-filter .3s ease, box-shadow .3s ease;*/
}

    #header.alt {
        /*        background: rgba(35,32,32,.88) !important;*/
        backdrop-filter: blur(24px) !important;
        -webkit-backdrop-filter: blur(26px) !important;
        box-shadow: 0 12px 36px rgba(0,0,0,.10);
    }

#nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .85rem;
    margin: 0;
    min-height: 64px;
}

    #nav ul li {
        list-style: none;
    }

        #nav ul li a {
            color: var(--light) !important;
            text-decoration: none;
            font-family: 'Rubik', sans-serif;
            font-weight: 500;
            font-size: .95rem;
            transition: .3s ease;
        }

            #nav ul li a:hover {
                color: var(--gold) !important;
            }

.logo {
    margin-left: 2rem;
}

    .logo img {
        height: 52px;
        width: auto;
    }

.logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-logo {
    display: none;
}

.nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 999px;
    text-decoration: none;
    background: var(--gold);
    color: var(--dark);
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(0,0,0,.12);
    transition: .3s ease;
}

    .nav-button:hover {
        transform: translateY(-3px);
        background: var(--gold);
        color: var(--light);
    }

.nav-button-e a {
    padding: .75rem 1.25rem !important;
}

.nav-cta {
    padding: .65rem 1.15rem;
    border-radius: 999px;
    background: var(--gold);
    color: var(--dark) !important;
    font-weight: 700;
}

    .nav-cta:hover {
        background: var(--dark);
        color: var(--light) !important;
    }

/* Hero */

#hero {
    position: relative;
    height: 100svh;
    min-height: 100svh;
    padding: 156px 20px 90px;
    padding-top: 4em;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    #hero::before {
        content: "";
        position: absolute;
        inset: 0;
        /*        background: url("../../images/hero.png?v=2") center center / cover no-repeat;*/
        animation: heroZoom 18s ease-in-out infinite alternate;
        z-index: 0;
    }

    #hero::after {
        content: "";
        position: absolute;
        top: -20%;
        left: -40%;
        width: 35%;
        height: 160%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,.06), transparent);
        transform: rotate(20deg);
        animation: shine 14s linear infinite;
        z-index: 2;
    }

/*.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(35,32,32,.26), rgba(35,32,32,.62));
    z-index: 1;
}*/

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
    animation: fadeUp 1.2s ease;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.hero-tag {
    display: inline-block;
    padding: .7rem 1.3rem;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.22);
    color: var(--light);
    margin-bottom: 2rem;
    backdrop-filter: blur(30px);
}

.hero-content h1 {
    color: var(--light);
    font-size: 2rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    text-shadow: 0 6px 25px rgba(0,0,0,.25);
}

.hero-content p {
    color: rgba(255, 255, 255, .9);
    font-size: 1.25rem;
    max-width: 650px;
    width: 100%;
    margin: 0 auto 2rem;
    padding: 1rem 1.4rem;
    background: rgba(0,0,0,.22);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
}

/* Shared sections */

.wrapper {
    padding: 8rem 0;
}

#advantages {
    padding: 8rem 0;
    background: var(--soft);
}

#services,
#projects,
#contact-form {
    background: var(--paper);
}

#brands,
#work-gallery,
#testimonials {
    background: var(--soft);
}

.section-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 4rem;
}

    .section-header span {
        display: inline-block;
        color: var(--gold);
        font-weight: 700;
        margin-bottom: 1rem;
        letter-spacing: 0;
        padding: .45rem .85rem;
        border-radius: 999px;
        /*        background: rgba(148,109,42,.10);*/
    }

    .section-header h2 {
        color: var(--);
        margin-bottom: 1.5rem;
        font-size: clamp(2.1rem, 4vw, 3.35rem);
        line-height: 1.15;
    }

    .section-header p {
        color: var(--gold);
    }

.adv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.adv-card,
.service-card {
    position: relative;
    overflow: hidden;
    /*    background: var(--paper);*/
    padding: 2.5rem 2rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    color: var(--dark);
}

    .adv-card::before,
    .service-card::before {
        content: "";
        position: absolute;
        inset-inline: 0;
        top: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--gold), var(--gold));
    }

    .adv-card:hover,
    .service-card:hover {
        transform: translateY(-6px);
        border-color: rgba(148,109,42,.22);
        box-shadow: 0 24px 56px rgba(0,0,0,.10);
    }

    .adv-icon,
    .service-card .icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 64px;
        height: 64px;
        margin: 0 auto 1.25rem;
        border-radius: 999px;
        background: rgba(148,109,42,.10);
        color: var(--gold);
        font-size: 1.8rem;
    }

.adv-icon {
    color: var(--gold);
}

.service-card {
    height: 100%;
}

    .service-card .icon {
        color: var(--gold);
    }

.adv-card h3 {
    margin-bottom: 1rem;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin: 0 auto 2.5rem;
}

    .brand-grid span {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 84px;
        padding: 1rem;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--paper);
        color: var(--dark);
        font-weight: 700;
        text-align: center;
        box-shadow: var(--shadow);
        transition: transform .25s ease, border-color .25s ease;
    }

        .brand-grid span:hover {
            transform: translateY(-4px);
            border-color: rgba(148,109,42,.24);
        }

.brand-note {
    max-width: 900px;
    margin: 0 auto;
    color: var(--light);
    text-align: center;
}

.image.featured {
    overflow: hidden;
    border-radius: 8px;
}

    .image.featured img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        transition: transform .6s ease;
    }

    .image.featured:hover img {
        transform: scale(1.06);
    }

.work-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.work-card {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
}

    .work-card img {
        width: 100%;
        height: 100%;
        aspect-ratio: 4 / 5;
        object-fit: cover;
        transition: transform .35s ease;
    }

    .work-card:hover img {
        transform: scale(1.045);
    }

    .work-card figcaption {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        padding: 1rem;
        background: linear-gradient(180deg, transparent, rgba(35,32,32,.86));
        color: #fff;
        font-weight: 700;
        text-align: right;
    }

/* Testimonials */

#testimonials {
    padding: 8rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6)), url("../../images/background.png?v=2") right bottom / cover no-repeat;
}

.testimonial-grid {
    columns: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.testimonial-card {
    position: relative;
    background: var(--paper);
    margin-bottom: 0;
    padding: 2rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform .25s ease, box-shadow .25s ease;
}

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 24px 56px rgba(0,0,0,.10);
    }

    .testimonial-card::before {
        content: '"';
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 5rem;
        color: var(--gold);
        opacity: .25;
        line-height: 1;
    }

    .testimonial-card p,
    .quote {
        color: var(--dark);
        line-height: 1.9;
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }

    .testimonial-card h4,
    .author {
        color: var(--gold);
        margin: 0;
        font-weight: 700;
    }

.value-card::before {
    display: none;
}

.value-card h3 {
    color: var(--gold);
    margin-bottom: .75rem;
}

/* Contact */

#contact-section {
    background: linear-gradient(135deg, var(--dark), var(--blue));
    color: var(--light);
    text-align: center;
    padding: 8rem 0;
}

    #contact-section h2 {
        color: var(--light);
    }

    #contact-section p {
        color: rgba(255,255,255,.85);
    }

.button.primary {
    background: var(--gold) !important;
    border: none !important;
    color: var(--dark) !important;
}

    .button.primary:hover {
        background: var(--gold) !important;
        color: var(--light) !important;
    }
/* CTA Container */
.floating-contact-div {
    position: fixed;
    left: 50%;
    bottom: 2rem;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    align-items: center;
    z-index: 9999;
}

    /* Shared button styling */
    .floating-contact,
    .floating-contact-div .nav-button {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .8rem;
        padding: 1rem 1.5rem;
        border-radius: 999px;
        text-decoration: none;
        font-weight: 600;
        letter-spacing: .3px;
        border: 1px solid rgba(255,255,255,.12);
        box-shadow: 0 10px 30px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.18);
        transition: transform .3s ease, box-shadow .3s ease, filter .3s ease;
        overflow: hidden;
    }

        /* Premium glossy highlight */
        .floating-contact::before,
        .floating-contact-div .nav-button::before {
            content: "";
            position: absolute;
            top: 0;
            left: -120%;
            width: 120%;
            height: 100%;
            background: linear-gradient( 120deg, transparent, rgba(255,255,255,.18), transparent );
            transition: left .7s ease;
        }

        /* Hover animation */
        .floating-contact:hover::before,
        .floating-contact-div .nav-button:hover::before {
            left: 120%;
        }

        .floating-contact:hover,
        .floating-contact-div .nav-button:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 40px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.2);
            filter: brightness(1.03);
        }

/* WhatsApp */
.floating-contact {
    background: var(--gold);
    color: white;
}

/* Consultation */
.floating-contact-div .nav-button {
    background: linear-gradient(180deg, #d8b57b, #b88c4f);
    color: #111;
}

.floating-contact .icon,
.floating-contact-div .icon {
    font-size: 1.15rem;
}

.contact-text {
    font-size: .95rem;
    white-space: nowrap;
}

/* Mobile */
@media screen and (max-width: 736px) {

    .floating-contact-div {
        width: calc(100% - 2rem);
        left: 50%;
        bottom: 1rem;
        transform: translateX(-50%);
        justify-content: center;
    }

        .floating-contact,
        .floating-contact-div .nav-button {
            flex: 1;
            padding: .95rem .7rem;
        }

    .contact-text {
        font-size: .82rem;
    }
}

#contact-form {
    padding: 8rem 0;
    background: var(--paper);
}

    #contact-form form {
        max-width: 800px;
        margin: auto;
    }

.contact-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    background: linear-gradient(145deg, var(--dark), #342f2f);
    color: var(--light);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

    .contact-info h3 {
        color: #fff;
        margin-bottom: 1rem;
    }

    .contact-info p {
        opacity: .85;
        margin-bottom: 2rem;
    }

.contact-action {
    display: block;
    text-align: center;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    background: var(--gold);
    color: var(--dark);
    text-decoration: none;
    font-weight: 700;
    transition: .3s ease;
}

    .contact-action:hover {
        transform: translateY(-3px);
    }

    .contact-action.whatsapp {
        background: #25D366;
        color: #fff;
    }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-family: 'Rubik', sans-serif;
    transition: .3s;
    background: var(--soft);
    color: var(--gold)
}

    #contact-form input:focus,
    #contact-form textarea:focus {
        outline: none;
        border-color: var(--gold);
        box-shadow: 0 0 0 4px rgba(212,175,108,.15);
    }

#contact-form button {
    margin-top: 1rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 999px;
    background: var(--gold);
    color: var(--dark);
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}

    #contact-form button:hover {
        background: var(--gold);
        color: #fff;
    }

/* Thank You */

.thank-you-page {
    min-height: 100svh;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6)), url("../../images/hero.png?v=2") right top / cover no-repeat;
}

.thank-you {
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.25rem;
    background: linear-gradient(180deg, rgba(35,32,32,.24), rgba(35,32,32,.58));
}

.thank-you-panel {
    width: min(760px, 100%);
    padding: 4rem 3rem;
    border-radius: 8px;
    background: rgba(255,255,255,.94);
    color: var(--dark);
    text-align: center;
    box-shadow: 0 24px 70px rgba(0,0,0,.22);
}

.thank-you-logo {
    display: inline-flex;
    margin-bottom: 1.5rem;
}

    .thank-you-logo img {
        height: 90px;
        width: auto;
    }

.thank-you-panel .hero-tag {
    color: var(--dark);
    border-color: rgba(35,32,32,.1);
    background: var(--gold);
    margin-bottom: 1.5rem;
}

.thank-you-panel h1 {
    color: var(--dark);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.thank-you-panel p {
    max-width: 620px;
    margin: 0 auto 2rem;
    color: #555;
}

.thank-you-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

    .thank-you-actions .contact-action {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 56px;
        min-width: 180px;
        margin: 0;
        border-radius: 999px;
    }

/* Legal */

.legal-page {
    min-height: 100svh;
    background: var(--gold);
}

.legal-header {
    padding: 1.25rem 0;
    background: var(--dark);
}

    .legal-header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

.legal-logo {
    display: inline-flex;
    align-items: center;
}

    .legal-logo img {
        height: 72px;
        width: auto;
    }

.legal-header .nav-button {
    padding: .8rem 1.4rem;
}

.legal-content {
    padding: 5rem 0;
}

.legal-panel {
    max-width: 980px;
    margin: 0 auto;
    padding: 4rem;
    border-radius: 8px;
    background: #fff;
    color: var(--dark);
    box-shadow: 0 18px 48px rgba(0,0,0,.08);
}

    .legal-panel .hero-tag {
        color: var(--dark);
        border-color: rgba(35,32,32,.1);
        background: var(--gold);
    }

    .legal-panel h1 {
        color: var(--dark);
        font-size: clamp(2.4rem, 6vw, 4rem);
        line-height: 1.1;
        margin: 1rem 0 .5rem;
    }

.legal-updated {
    color: #777;
    margin-bottom: 3rem;
}

.legal-panel section {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(35,32,32,.08);
}

.legal-panel h2 {
    color: var(--gold);
    font-size: 1.45rem;
    margin-bottom: .75rem;
}

.legal-panel p {
    color: #555;
}

/* Animations */

@keyframes heroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

@keyframes shine {
    from {
        left: -40%;
    }

    to {
        left: 140%;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

/* Responsive */

@media screen and (max-width: 980px) {
    .adv-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    #hero {
        min-height: 650px;
    }

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

    .contact-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 736px) {
    #nav ul {
        gap: .25rem;
        flex-wrap: wrap;
        justify-content: center;
    }

        #nav ul li a {
            font-size: .8rem;
        }

    .logo img {
        height: 42px;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .nav-button {
        width: 100%;
        max-width: 280px;
    }

    .image.featured img {
        height: 220px;
    }

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

    #contact-form button {
        width: 100%;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: .75rem;
        text-align: center;
    }
}

/* Responsive refinements */

.container {
    width: min(1200px, calc(100% - 40px));
}

#services .row,
#projects .row {
    row-gap: 2rem;
}

    #services .row > *,
    #projects .row > * {
        padding-top: 0;
    }

#nav a,
.nav-cta,
.contact-action,
#contact-form button {
    white-space: normal;
}

#navButton,
#navPanel {
    display: none;
}

    #navPanel nav a {
        display: block;
        padding: .85rem 1rem;
        border-bottom: 1px solid rgba(255,255,255,.1);
        color: var(--light);
        text-decoration: none;
        font-family: 'Rubik', sans-serif;
    }

        #navPanel nav a:hover {
            color: var(--gold);
        }

@media screen and (max-width: 1180px) {
    #nav ul {
        gap: .55rem;
    }

        #nav ul li a {
            font-size: .80rem;
        }

    .logo {
        margin-left: 1rem;
    }

    .nav-cta {
        padding: .65rem 1rem;
    }

    .adv-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .work-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    #services .row > .col-3 {
        width: 50%;
    }
}



@media screen and (max-width: 980px) {
    #advantages,
    #brands,
    #projects,
    #work-gallery,
    #testimonials,
    #contact-section,
    #contact-form {
        padding: 5rem 0;
    }

    .wrapper {
        padding: 5rem 0;
    }

    #header {
        position: fixed !important;
        top: 0;
        right: 0;
        left: 0;
        min-height: 78px;
        padding: .6rem 0;
        backdrop-filter: blur(24px) !important;
        -webkit-backdrop-filter: blur(24px) !important;
        border-bottom: 2px solid var(--soft);
    }


        #header.alt {
            background: var(--soft);
            border-bottom: 2px solid var(--soft);
        }

        #header #nav {
            display: none;
        }

    .mobile-logo {
        display: flex;
        position: fixed;
        top: 7px;
        left: 50%;
        z-index: 10001;
        align-items: center;
        justify-content: center;
        min-width: 112px;
        transform: translateX(-50%);
    }

        .mobile-logo img {
            width: 100%;
            height: auto;
            /*            max-height: 66px;*/
            object-fit: contain;
        }

    #navButton {
        display: block;
        position: fixed;
        top: 12px;
        right: 12px;
        z-index: 10001;
    }

        #navButton .toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 999px;
            background: rgba(35,32,32,.86);
            box-shadow: 0 10px 30px rgba(0,0,0,.25);
            text-decoration: none;
        }

            #navButton .toggle::before {
                content: "\f0c9";
                color: var(--light);
                font-family: "Font Awesome 5 Free";
                font-weight: 900;
                font-size: 1.1rem;
            }

    #navPanel {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 10000;
        width: min(82vw, 320px);
        padding: 4.75rem 1rem 1.5rem;
        overflow-y: auto;
        background: rgba(35,32,32,.96);
        box-shadow: -18px 0 48px rgba(0,0,0,.28);
        transform: translateX(100%);
        transition: transform .3s ease;
    }

    body.navPanel-visible #navPanel {
        transform: translateX(0);
    }

    body.navPanel-visible #navButton .toggle::before {
        content: "\f00d";
    }

    .hero-content {
        max-width: 760px;
        padding: 1.5rem;
    }

        .hero-content h1 {
            font-size: 2rem;
        }

        .hero-content p {
            font-size: 1.1rem;
        }

    .section-header {
        margin-bottom: 3rem;
    }

    #projects .row > .col-4 {
        width: 50%;
    }

    .contact-info,
    .contact-layout form {
        width: 100%;
    }
}

@media screen and (max-width: 736px) {
    .container {
        width: min(100% - 28px, 100%);
    }

    #advantages,
    #brands,
    #projects,
    #work-gallery,
    #testimonials,
    #contact-section,
    #contact-form {
        padding: 4rem 0;
    }

    .wrapper {
        padding: 4rem 0;
    }

    #header {
        padding: .55rem 0;
        min-height: 82px;
    }

    #navButton {
        top: 10px;
        right: 10px;
    }

    .mobile-logo {
        top: 7px;
        /*        width: 108px;*/
    }

    #hero {
        min-height: 820px;
        height: auto;
        padding: 165px 14px 70px;
    }

        #hero::before {
            background-size: contain;
            background-position: center 92px;
            background-repeat: no-repeat;
            opacity: .95;
            animation: none;
        }

    /*    .hero-overlay {
        background: linear-gradient(180deg, rgba(35,32,32,.22), rgba(35,32,32,.64));
    }*/

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

    .hero-tag {
        margin-bottom: 1.25rem;
        padding: .55rem .9rem;
        font-size: .9rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.12;
    }

    .hero-content p {
        font-size: .98rem;
        line-height: 1.8;
    }

    .section-header h2 {
        font-size: 1.85rem;
        line-height: 1.25;
    }

    .section-header p {
        font-size: .98rem;
    }

    .adv-grid,
    .brand-grid,
    .work-grid,
    #services .row,
    #projects .row,
    .contact-layout,
    .footer-grid {
        gap: 1.25rem;
    }

    #advantages {
        padding: 3rem 0;
    }

        #advantages .section-header {
            margin-bottom: 1.5rem;
        }

            #advantages .section-header h2 {
                font-size: 1.55rem;
                margin-bottom: .85rem;
            }

            #advantages .section-header p {
                font-size: .9rem;
                line-height: 1.65;
            }

    .adv-grid {
        gap: .75rem;
    }

    /*    .brand-grid span {
        min-height: 72px;
        padding: .85rem;
        border-radius: 8px;
        font-size: .95rem;
    }*/

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

    .work-card {
        min-height: 260px;
    }

        .work-card img {
            aspect-ratio: 4 / 3;
        }

    .adv-card,
    .service-card,
    .testimonial-card,
    .contact-info {
        border-radius: 8px;
        padding: 1.5rem;
        font-size: .9rem;
    }

    .adv-card {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-areas:
            "icon title"
            "icon text";
        align-items: center;
        column-gap: .85rem;
        padding: .85rem 1rem;
        text-align: center;
    }

        .adv-card .adv-icon {
            grid-area: icon;
            margin: 0;
            width: 48px;
            height: 48px;
            font-size: 1.25rem;
            line-height: 1;
        }

        .adv-card h3 {
            grid-area: title;
            margin: 0 0 .15rem;
            font-size: 1.05rem;
            line-height: 1.25;
        }

        .adv-card p {
            grid-area: text;
            margin: 0;
            font-size: .86rem;
            line-height: 1.55;
        }

    #services .row,
    #projects .row {
        margin-top: 0;
        margin-left: 0;
    }

        #services .row > *,
        #projects .row > *,
        #projects .row > .col-4,
        #services .row > .col-3 {
            width: 100%;
            padding: 0;
        }

    .testimonial-card::before {
        font-size: 3.5rem;
    }

    .contact-action {
        padding: .9rem;
    }

    .thank-you-panel {
        padding: 2.5rem 1.5rem;
        border-radius: 8px;
    }

    .thank-you-actions {
        align-items: stretch;
        flex-direction: column;
    }

        .thank-you-actions .nav-button,
        .thank-you-actions .contact-action {
            width: 100%;
            max-width: none;
        }

    .legal-header .container {
        flex-direction: column;
    }

    .legal-content {
        padding: 2rem 0;
    }

    .legal-panel {
        padding: 2rem 1.25rem;
        border-radius: 8px;
    }

        .legal-panel h2 {
            font-size: 1.2rem;
        }

    #contact-form input,
    #contact-form textarea {
        border-radius: 8px;
    }

    .footer-grid {
        text-align: center;
    }

    .footer-logo {
        margin-inline: auto;
    }

    .footer-brand p {
        max-width: none;
    }

    .floating-contact {
        left: 14px;
        right: 14px;
        bottom: 14px;
        justify-content: center;
        padding: .85rem 1rem;
    }

    body {
        padding-bottom: 72px;
        background-attachment: scroll;
    }
}

@media screen and (max-width: 420px) {
    .mobile-logo {
    }

    #hero {
        min-height: 590px;
        padding-top: 152px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: .92rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .adv-card,
    .service-card,
    .testimonial-card,
    .contact-info {
        padding: 1.25rem;
        font-size: .9rem;
        font-size: .9rem;
    }

    .adv-card {
        padding: .75rem .85rem;
    }

        .adv-card .adv-icon {
            font-size: 1.45rem;
        }

        .adv-card h3 {
            font-size: .98rem;
        }

        .adv-card p {
            font-size: .8rem;
            line-height: 1.45;
        }
}

/* =========================
   ELEGANT FLOATING REVIEW
========================= */

.sticky-testimonial {
    position: fixed;
    top: 6rem;
    left: 20px;
    z-index: 999999;
    width: 220px;
    padding: .75rem .9rem;
    border-radius: 18px;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,.6);
    box-shadow: 0 10px 30px rgba(0,0,0,.10), 0 3px 10px rgba(0,0,0,.05);
    text-decoration: none;
    color: var(--dark);
    overflow: hidden;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
}

    /* subtle gold accent */
    .sticky-testimonial::before {
        content: "";
        position: absolute;
        top: 10px;
        bottom: 10px;
        right: 0;
        width: 3px;
        border-radius: 999px;
        background: linear-gradient( 180deg, #f1d08a, #c89b55 );
    }

    .sticky-testimonial:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 40px rgba(0,0,0,.14), 0 5px 12px rgba(0,0,0,.08);
    }

    /* Stars */
    .sticky-testimonial .stars {
        color: #d4a84f;
        font-size: .78rem;
        letter-spacing: 1px;
        margin-bottom: 0rem;
    }

    /* Quote */
    .sticky-testimonial .quote {
        font-size: .78rem;
        line-height: 1.45;
        font-weight: 500;
        color: #2a2a2a;
        margin-bottom: .1rem;
    }

    /* Author */
    .sticky-testimonial .author {
        font-size: .65rem;
        color: #888;
        font-weight: 700;
        letter-spacing: .4px;
        text-transform: uppercase;
    }

/* =========================
   MOBILE
========================= */

@media screen and (max-width: 736px) {

    .sticky-testimonial {
        top: 40px;
        left: 8px;
        width: 90px;
        height: 120px;
        padding: .4rem .5rem;
        border-radius: 0 14px 14px 14px;
    }


        .sticky-testimonial .stars {
            font-size: .54rem;
        }

        .sticky-testimonial .quote {
            font-size: .56rem;
            line-height: 1;
        }

        .sticky-testimonial .author {
            font-size: .54rem;
        }
}

.sticky-testimonial {
    transition: opacity .3s ease, transform .3s ease, box-shadow .25s ease;
}

    .sticky-testimonial.hidden {
        opacity: 0;
        transform: translateY(-20px);
        pointer-events: none;
    }

/* =========================
   BRANDS CAROUSEL
========================= */

.brand-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    -webkit-mask-image: linear-gradient(to left, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to left, transparent 0%, black 10%, black 90%, transparent 100%);
}

.brand-track {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    /* IMPORTANT */
    width: max-content;
    animation: scrollBrands 18s linear infinite;
}

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

.brand-logo {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,.12), 0 3px 8px rgba(0,0,0,.08);
    transition: transform .3s ease;
}

    .brand-logo:hover {
        transform: translateY(-4px) scale(1.04);
    }

    .brand-logo img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* fills the circle fully */
        display: block;
    }

/* DUPLICATE TRACK = NO EMPTY GAPS */
@keyframes scrollBrands {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(50%);
    }
}

/* MOBILE */
@media screen and (max-width: 736px) {

    .brand-track {
        gap: 1rem;
        animation-duration: 14s;
        margin-bottom: 2rem;
    }

    .brand-logo {
        width: 72px;
        height: 72px;
    }
}

.systems-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0 2rem;
    flex-wrap: wrap;
}

.system-tab {
    border: none;
    padding: .9rem 1.5rem;
    border-radius: 999px;
    cursor: pointer;
    background: rgba(255,255,255,0.4);
    color: #fff;
    transition: .3s ease;
    font-family: inherit;
    flex: 1;
    min-width: 140px;
}

    /* Active = gold */
    .system-tab.active {
        background: var(--gold);
        color: #111;
        font-weight: 700;
    }

.systems-content {
    max-width: 850px;
    margin: auto;
}

.system-panel {
    display: none;
    background: rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
}

    .system-panel.active {
        display: block;
    }

@media screen and (max-width: 736px) {

    .systems-tabs {
        flex-wrap: nowrap;
        gap: .5rem;
    }

    .system-tab {
        min-width: auto;
        padding: .8rem .5rem;
        font-size: .9rem;
    }

    .system-panel {
        padding: 2rem 1.5rem;
    }
}

/* =========================
   FOOTER
========================= */

#footer {
    background: var(--dark);
    color: var(--light);
    padding: 5rem 0 2rem;
    position: relative;
}

    #footer .icons a {
        color: var(--light);
    }

    #footer .copyright {
        color: rgba(255,255,255,.7);
    }

/* GRID */

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* BRAND */

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: .8;
    max-width: 350px;
    line-height: 1.8;
}

/* LINKS + CONTACT */

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

    .footer-links h4,
    .footer-contact h4 {
        color: var(--gold);
        margin-bottom: .75rem;
    }

    .footer-links a,
    .footer-contact a {
        color: var(--light);
        text-decoration: none;
        transition: .3s ease;
    }

        .footer-links a:hover,
        .footer-contact a:hover {
            color: var(--gold);
        }

/* MAP */

.footer-map {
    margin-top: 2rem;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 15px 40px rgba(0,0,0,.18), 0 4px 12px rgba(0,0,0,.12);
}

    .footer-map iframe {
        width: 100%;
        height: 320px;
        border: 0;
        display: block;
    }

/* BOTTOM */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 1.5rem;
    margin-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .9rem;
    opacity: .7;
}

/* =========================
   MOBILE
========================= */

@media screen and (max-width: 980px) {

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand p {
        max-width: 100%;
    }
}

@media screen and (max-width: 736px) {

    #footer {
        padding: 4rem 0 2rem;
    }

    .footer-logo {
        height: 65px;
    }

    .footer-map {
        border-radius: 1.1rem;
        margin-top: 1.5rem;
    }

        .footer-map iframe {
            height: 240px;
        }

    .footer-bottom {
        flex-direction: column;
        gap: .7rem;
        text-align: center;
    }
}

/* MOBILE */
@media screen and (max-width: 736px) {

    .footer-map iframe {
        height: 240px;
    }
}

.footer-map {
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.02);
    backdrop-filter: blur(20px);
}

/* =========================
   VRF ROADMAP
========================= */

.vrf-roadmap-section {
    padding: 5rem 0;
}

.vrf-roadmap {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 2rem;
    align-items: stretch;
}

/* LEFT */

.roadmap-steps {
    display: flex;
    flex-direction: column;
    gap: .9rem;
}

.roadmap-step {
    position: relative;
    border: none;
    cursor: pointer;
    text-align: right;
    padding: 1rem 1.2rem;
    border-radius: 18px;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.08);
    color: white;
    transition: all .3s ease;
    overflow: hidden;
}

    .roadmap-step:hover {
        transform: translateY(-2px);
        background: rgba(255,255,255,.09);
    }

    .roadmap-step.active {
        background: linear-gradient( 135deg, rgba(201,165,92,.18), rgba(255,255,255,.08) );
        border-color: rgba(201,165,92,.4);
        box-shadow: 0 10px 30px rgba(0,0,0,.18);
    }

.step-number {
    display: block;
    font-size: .75rem;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: .25rem;
}

.step-title {
    font-size: 1rem;
    font-weight: 600;
}

/* RIGHT */

.roadmap-preview {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 28px;
    overflow: hidden;
    backdrop-filter: blur(22px);
    box-shadow: 0 20px 60px rgba(0,0,0,.2);
}

.preview-image-wrap {
    height: 320px;
    overflow: hidden;
}

    .preview-image-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: opacity .35s ease;
    }

.preview-content {
    padding: 1.8rem;
}

    .preview-content h3 {
        font-size: 1.5rem;
        margin-bottom: .8rem;
        color: white;
    }

    .preview-content p {
        color: rgba(255,255,255,.72);
        line-height: 1.8;
        margin: 0;
    }

/* MOBILE */

@media screen and (max-width: 980px) {

    .vrf-roadmap {
        grid-template-columns: 1fr;
    }

    .preview-image-wrap {
        height: 240px;
    }
}

@media screen and (max-width: 736px) {

    .vrf-roadmap-section {
        padding: 4rem 0;
    }

    .roadmap-steps {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: .5rem;
    }

    .roadmap-step {
        min-width: 120px;
        text-align: center;
        padding: .9rem;
        flex-shrink: 0;
    }

    .preview-content {
        padding: 1.3rem;
    }

        .preview-content h3 {
            font-size: 1.2rem;
        }

        .preview-content p {
            font-size: .92rem;
        }
}

i.fa-check {
    color: #fff;
    font-size: 16px;
}