/* -------------------------------------- Base -------------------------------------- */
:root {
    --green: #48de94;
    --green-2: #48df94;
    --dark-blue: #03103f;
    --purple: #361688;
    --surface: #f8f8f8;
    --text: #3b3b3b;
    --muted: #737373;
    --white: #ffffff;
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 32px;
    --shadow-sm: 0 8px 24px rgba(3, 16, 63, 0.10);
    --shadow-md: 0 18px 48px rgba(3, 16, 63, 0.16);
    --container: 1200px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    min-width: 320px;
    overflow-x: hidden;
    font-family: "Sora", sans-serif;
    line-height: 1.55;
    color: var(--text);
    background: var(--surface);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Oxanium", sans-serif;
    line-height: 1.1;
}

.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
    padding-block: clamp(40px, 8vw, 110px);
}

.shadow {
    box-shadow: var(--shadow-md);
}

.shadow-2 {
    box-shadow: 0 18px 48px rgba(3, 6, 26, 0.86);
}

.glass-effect,
.glass-effect-2,
.glass-effect-3 {
    border: 1px solid rgba(255, 255, 255, 0.28);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.glass-effect {
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
}

.glass-effect-2 {
    background: var(--green);
    border-radius: var(--radius-md);
}

.glass-effect-3 {
    background: rgba(3, 16, 63, 0.94);
    border-radius: var(--radius-lg);
}

h5 {
    position: relative;
    display: inline-block;
    margin-bottom: clamp(28px, 5vw, 54px);
    font-size: clamp(1.05rem, 2vw, 1.45rem);
    font-weight: 500;
    color: var(--purple);
}

h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: min(280px, 70vw);
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--purple), var(--green));
}

/* -------------------------------------- Navigation -------------------------------------- */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    padding: 18px clamp(16px, 6vw, 80px);
    background: var(--dark-blue);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

nav.scrolled {
    padding: 12px clamp(16px, 6vw, 80px);
    background: rgba(3, 16, 63, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: end;
}


.nav-stick {
    position: sticky;
}

.nav-div {
    width: min(100%, var(--container));
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    margin-left: 32px;
}

nav img {
    width: clamp(112px, 14vw, 150px);
    transition: transform 0.3s ease;
}

nav img:hover {
    transform: scale(1.04);
}

nav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: clamp(16px, 3vw, 32px);
    list-style: none;
    margin-left: auto;
}

nav ul a {
    position: relative;
    color: #fff;
    font-size: 0.95rem;
    white-space: nowrap;
}

nav ul a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

nav ul a:hover::after {
    transform: scaleX(1);
}

.call-us {
    display: flex;
    justify-content: flex-end;
    margin-left: 32px;
}

.call-us a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border: 2px solid var(--green-2);
    border-radius: 999px;
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.call-us a:hover {
    color: var(--dark-blue);
    background: var(--green-2);
    transform: translateY(-2px);
}

.hamburger-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 4px;
}

.hamburger-btn .icon-close {
    display: none;
}

.hamburger-btn.active .icon-menu {
    display: none;
}

.hamburger-btn.active .icon-close {
    display: block;
}

.material-symbols-outlined {
    font-size: 28px;
}

/* -------------------------------------- Hero -------------------------------------- */
.hero {
    position: relative;
    min-height: calc(100svh - 84px);
    overflow: hidden;
    padding: clamp(48px, 7vw, 90px) clamp(16px, 5vw, 72px) 0;
    background: linear-gradient(180deg, var(--dark-blue) 8%, #0c2f65 42%, var(--green-2) 82%, var(--surface) 100%);
}

.div-hero {
    width: min(100%, var(--container));
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
    gap: clamp(36px, 6vw, 80px);
}

.div-text-hero {
    min-width: 0;
}

.hero h1,
.decision-hero {
    max-width: 760px;
    font-size: clamp(2rem, 5.2vw, 4.7rem);
    line-height: 1.05;
    text-align: left;
}

.hero h1 {
    color: #f3f4f6;
}

.decision-hero {
    margin-top: 8px;
    color: var(--green);
    font-family: "Oxanium", sans-serif;
    font-weight: 700;
}

.description-hero {
    max-width: 620px;
    margin-top: clamp(24px, 4vw, 42px);
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(0.98rem, 1.4vw, 1.08rem);
    text-align: left;
}

.div-img {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.hero .div-img img {
    width: min(100%, 680px);
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.18));
}

.buttons-div {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: clamp(28px, 5vw, 48px);
    padding-bottom: clamp(28px, 5vw, 48px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.buttons-div a {
    min-height: 48px;
    padding: 13px 20px;
    border-radius: 999px;
    font-size: 0.95rem;
}

.demonstration-button,
.plataform-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.demonstration-button {
    color: #fff;
    background: var(--dark-blue);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.plataform-button {
    color: var(--dark-blue);
    background: #f2f2f2;
}

.demonstration-button:hover,
.plataform-button:hover {
    transform: translateY(-3px);
}

.demonstration-button:hover {
    color: var(--dark-blue);
    background: #fff;
}

.plataform-button:hover {
    color: #fff;
    background: var(--dark-blue);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(18px, 4vw, 34px);
    padding-block: clamp(24px, 2vw, 40px);
    margin-top: 2vh;
}

.hero-trust strong {
    color: #010c3b;
}

.hero-trust div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-trust span {
    font-size: 0.85rem;
}

.hero-context {
    width: min(100%, var(--container));
    margin: clamp(20px, 1vw, 80px) auto 0;
    padding: clamp(20px, 3vw, 32px) 0 clamp(52px, 8vw, 90px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-context>p {
    color: #010c3b;
    font-size: clamp(0.78rem, 1.3vw, 0.9rem);
    font-weight: 300;
}

/* -------------------------------------- Solutions -------------------------------------- */
.div-container-header-solutions {
    display: grid;
    grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
    align-items: center;
    gap: clamp(28px, 6vw, 80px);
}

.div-container-header-solutions img {
    width: min(100%, 390px);
    margin-inline: auto;
}

.div-container-header-solutions h1 {
    max-width: 760px;
    margin-bottom: 20px;
    color: var(--purple);
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1;
}

.div-container-header-solutions p {
    max-width: 700px;
    color: var(--muted);
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    text-align: left;
}

.div-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.5vw, 30px);
    padding: clamp(40px, 7vw, 90px) max(16px, calc((100vw - var(--container)) / 2));
    background: var(--dark-blue);
    border-block: 7px solid transparent;
    border-image: linear-gradient(90deg, var(--dark-blue), var(--green), var(--dark-blue)) 1;
}

.cards {
    min-width: 0;
    min-height: 290px;
    padding: clamp(24px, 3vw, 38px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cards:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 46px rgba(213, 213, 213, 0.16);
}

.cards>div {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cards-img-div,
.cards-img-div-2 {
    width: clamp(54px, 6vw, 74px);
    aspect-ratio: 1;
    padding: 14px;
    display: grid;
    place-items: center;
    margin-bottom: 26px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
}

.cards-img-div {
    background: rgba(53, 226, 139, 0.6);
}

.cards-img-div-2 {
    background: var(--dark-blue);
}

.cards h2 {
    margin-bottom: 12px;
    color: #ececec;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}

.cards p {
    max-width: 100%;
    color: #cbcbcb;
    font-family: "Oxanium", sans-serif;
    overflow-wrap: anywhere;
}

/* -------------------------------------- Integration -------------------------------------- */
.integration {
    margin-block: clamp(40px, 2vw, 90px);
}

.div-integration {
    display: grid;
    grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: clamp(36px, 7vw, 90px);
}

.div-img-integration {
    width: 100%;
    max-width: 620px;
    justify-self: center;
    padding: clamp(24px, 5vw, 54px);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.div-img-integration:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 24px 54px rgba(3, 16, 63, 0.24);
}

.div-integration img {
    width: min(100%, 520px);
}

.div-integration>div:last-child>div {
    align-items: flex-end;
}

.div-integration h1 {
    width: min(100%, 760px);
    color: #252525;
    font-size: clamp(2rem, 4vw, 4rem);
    text-align: right;
}

.div-integration h5::after {
    left: auto;
    right: 0;
}

.header-integration-p {
    max-width: 700px;
    margin: 16px 0 clamp(28px, 5vw, 52px);
    color: #4b4b4b;
    font-weight: 300;
    text-align: right;
}

.check-things {
    width: 100%;
    padding-top: 10px;
}

.check-things-div {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    margin-bottom: 26px;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(153, 153, 153, 0.36);
}

.check-things-div>div {
    min-width: 0;
}

.check-things-div h3,
.check-things-div p {
    text-align: right;
}

.check-things-div>p:last-child {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--dark-blue);
    background: var(--green);
    font-weight: 800;
}

/* -------------------------------------- About -------------------------------------- */

.about {
    border-top: 2px solid rgb(234, 234, 234);
    border-bottom: 2px solid rgb(234, 234, 234);
    background-color: rgb(239, 239, 239);
}

.about-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(50px, 7vw, 110px);
}

.about-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 900px;
    text-align: center;
}

.about-header>div {
    width: 100%;
}

.about-header h1 {
    margin: 0;
    color: var(--dark-blue);
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.05;
    text-align: center;
}

.about-header h5::after {
    width: 100%;
}

.about-header>p {
    max-width: 680px;
    margin-top: clamp(16px, 1vw, 25px);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    line-height: 1.6;
}

.why {
    margin-bottom: clamp(20px, 4vh, 40px);
    color: var(--purple);
    font-weight: 500;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    overflow: hidden;
}

.about-content-divs {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    min-height: 230px;
    padding: clamp(25px, 3vw, 45px) clamp(20px, 2vw, 35px);
    gap: clamp(18px, 3vh, 30px);
    border-right: 1px solid #29c9796d;
    border-top: 1px solid #29c9796d;
    border-bottom: 1px solid #29c9796d;
}

.about-content-divs:last-child {
    border-right: none;
}

.about-content-divs p1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 4px 8px;
    color: var(--green);
    background-color: #03103f;
    border-radius: 15px;
    font-size: 13px;
    line-height: 1;
}

.about-content-divs h4 {
    color: #0c2f65;
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    line-height: 1.25;
    font-weight: 700;
}

.about-content-divs p {
    color: rgb(100, 100, 100);
    font-size: clamp(0.88rem, 1.2vw, 0.95rem);
    font-weight: 300;
    line-height: 1.6;
    overflow-wrap: anywhere;
}

/* -------------------------------------- About2 -------------------------------------- */

.about-2-div {
    display: flex;
    gap: clamp(4vw, 5vw, 6vw);
    justify-content: center;
    align-items: center;
}

.about-2-texts {
    flex: 1;
    min-width: 0;
}

.about-2-texts h1 {
    margin: 0;
    color: var(--dark-blue);
    margin-bottom: clamp(1vh, 3vh, 50px);
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.05;
}

.about-2-card {
    background-color: var(--dark-blue);
    width: 100%;
    max-width: 420px;
    border-radius: 40px;
    padding: 40px;
    flex-shrink: 0;
}

.about-2-card img {
    max-width: 80%;
    align-self: center;
    margin: 30px 0;
}

.about-2-card p {
    color: var(--white);
    width: fit-content;
    padding: 5px 20px;
    font-size: 12px;
}

.about-2-card-div {
    display: flex;
    align-items: center;
    gap: 16px;
}

.about-2-card-div h1 {
    color: var(--green);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
}

/* -------------------------------------- Video -------------------------------------- */

.video {
    background-color: #010c3b;
}


.div-video {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 5% 0 7%;
    margin: 3% 0 3%;
}

.div-video video {
    border: 3px solid #0ec26888;
    border-radius: 25px;
}

.div-video h3 {
    background-color: #0ec268;
    color: white;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    padding: 1% 2%;
    font-size: 24px;
}

/* -------------------------------------- Contact -------------------------------------- */

.contact {
    background-color: #f2f1f1;
    color: white;
    padding: clamp(40px, 8vw, 10vh) 0;
}

.contact-div {
    display: flex;
    align-items: center;
    gap: clamp(24px, 4vw, 40px);
    border-radius: 25px;
    background: linear-gradient(170deg, var(--purple) 10%, #010c3b 70%);
    padding: clamp(24px, 6vw, 80px);
    min-height: auto;
}

.contact-text {
    flex: 1;
    min-width: 0;
}

.contact-text h6 {
    font-size: 16px;
    color: #48de94;
    margin-bottom: 2vh;
    font-weight: 400;
}

.contact-text h1 {
    color: white;
    margin-bottom: 3vh;
    font-size: clamp(2rem, 4vw, 50px);
}

.contact-text p {
    font-weight: 200;
    color: rgb(202, 202, 202);
}

.contact form {
    flex: 1;
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: flex;
    gap: 16px;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.form-group label {
    font-size: 0.85rem;
    color: #e0e0e0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
}

.form-group textarea {
    min-height: 110px;
    resize: vertical;
}

.contact form button {
    padding: 14px 28px;
    border-radius: 999px;
    border: none;
    background: var(--green);
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    align-self: flex-start;
    transition: transform 0.2s ease, background-color 0.2s ease;
    width: 100%;
}

.contact form button:hover {
    transform: translateY(-2px);
    background: #ffffff;
}

.contact-form {
    background-color: white;
    color: black;
    padding: 40px;
    border-radius: 30px;
}

/* -------------------------------------- Footer -------------------------------------- */

footer {
    background-color: #010c3b;
}

.div-footer {
    padding: 4% 3%;
}

.footer-infos {
    display: grid;
    grid-template-columns: .40fr .4fr .4fr;
}

.footer-divider-1 img {
    max-width: 40%;
    margin-bottom: 24px;
}

.footer-divider-1 h2 {
    color: #bebebe;
    font-size: 14px;
}

.footer-divider-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-divider-2 h3,
.footer-divider-3 h3 {
    color: #48de94;
    margin-bottom: 20px;

}

.footer-divider-2 a,
.footer-divider-3 p {
    color: #bebebe;
    transition: scale .3s ease-in-out;
    margin-bottom: 5px;
}

.footer-divider-3 span {
    color: #b2b2b2;
}

.footer-divider-3 a {
    color: #0ec268;
}

.footer-divider-2 a:hover {
    scale: 1.05;
}


.footer-divider-2 div {
    width: fit-content;
    display: flex;
    flex-direction: column;
}

.footer-jur {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #48de9395;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-jur p {
    color: #929292;
    font-family: "Sora";
}

.footer-jur a {
    color: #48de94;
}

/* -------------------------------------- Privacity -------------------------------------- */

h1 {
    color: #010c3b;
    margin-bottom: 5%;
}

.div-privacity-header {
    border-bottom: 2px solid #010c3b86;
    padding-bottom: 5%;
    margin-bottom: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.div-privacity-main {
    padding: 0% 5%;
}

.div-privacity-main h3 {
    margin-bottom: 2%;
    color: #1b0258;
}

.div-privacity-main p {
    margin-bottom: 5%;
}



/* -------------------------------------- Terms -------------------------------------- */

.div-terms-header {
    width: 100%;
}

h1 {
    color: #010c3b;
    margin-bottom: 5%;
}

.div-terms-header {
    border-bottom: 2px solid #010c3b86;
    padding-bottom: 5%;
    margin-bottom: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.div-terms-main {
    padding: 0% 5%;
}

.div-terms-main h3 {
    margin-bottom: 2%;
    color: #1b0258;
}

.div-terms-main p {
    margin-bottom: 5%;
}

/* -------------------------------------------- Language Switcher -------------------------------------------- */

.language-switcher {
    position: fixed;
    right: 24px;
    bottom: 100px;
    z-index: 2000;
    font-family: "Raleway", sans-serif;
}

.language-switcher__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-width: 68px;
    height: 52px;
    padding: 0 15px;

    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;

    background: rgba(51, 51, 153, 0.94);
    color: #fff;

    box-shadow: 0 14px 34px rgba(28, 28, 90, 0.28);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    cursor: pointer;
    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.language-switcher__toggle:hover {
    transform: translateY(-3px);
    background: var(--purple);
    box-shadow: 0 18px 40px rgba(28, 28, 90, 0.34);
}

.language-switcher__toggle:focus-visible,
.language-switcher__options button:focus-visible {
    outline: 3px solid rgba(0, 204, 204, 0.45);
    outline-offset: 3px;
}

.language-switcher__icon {
    font-size: 1.15rem;
    line-height: 1;
}

.language-switcher__current {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.language-switcher__options {
    position: absolute;
    right: 0;
    bottom: calc(100% + 12px);

    width: 160px;
    padding: 8px;

    border: 1px solid rgba(51, 51, 153, 0.12);
    border-radius: 16px;

    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 18px 45px rgba(30, 30, 80, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    opacity: 0;
    visibility: hidden;
    transform: translateY(8px) scale(0.98);
    transform-origin: bottom right;

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
}

.is-open .language-switcher__options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.language-switcher__options button {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0.5vh 0;
    padding: 11px 12px;

    border: 0;
    border-radius: 10px;

    background: transparent;
    color: var(--mediumBlack);

    font: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: left;

    cursor: pointer;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.language-switcher__options button:hover,
.language-switcher__options button.is-active {
    background: rgba(0, 204, 204, 0.12);
    color: var(--purple);
}

/* -------------------------------------- Tablet -------------------------------------- */

.meta-verified {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 2000;
    background-color: white;
    border: 1px solid #010c3b62;
    border-radius: 25px;
    padding: 1% 1% 1%;
    width: 13%;
    transition: transform 0.1s ease-in-out;
}

.meta-verified div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.meta-verified div p {
    color: #545454;
    font-size: 0.7rem;
    font-weight: 600;
    font: "Sora";
    margin-bottom: -8px;
}

.meta-verified:hover {
    transform: translateY(-3px);
    background-color: #f4f4f4;
    box-shadow: 0 18px 48px rgba(3, 16, 63, 0.1);
    ;
}

/* -------------------------------------- Tablet -------------------------------------- */
@media (max-width: 980px) {

    .about-2-texts h5::after {
        width: 100%;
    }

    .hamburger-btn {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dark-blue);
        flex-direction: column;
        align-items: flex-end;
        gap: 24px;
        padding: 32px 16px;
        margin-left: 0;
        display: none;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu ul {
        width: fit-content;
    }

    .nav-menu div {
        width: fit-content;
    }

    .nav-menu.active {
        display: flex;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    .call-us {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }

    .div-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1,
    .decision-hero,
    .description-hero {
        margin-inline: auto;
        text-align: center;
    }

    .buttons-div,
    .hero-trust {
        justify-content: center;
    }

    .hero-trust strong {
        color: #48de94;
    }

    .div-img {
        max-width: 720px;
        margin-inline: auto;
    }

    .hero-context {
        flex-direction: column;
        text-align: center;
    }

    .div-container-header-solutions {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .div-container-header-solutions p,
    .div-container-header-solutions h1 {
        margin-inline: auto;
        text-align: center;
    }

    .div-container-header-solutions img {
        max-width: 35%;
    }

    .div-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding-inline: 5vh;
    }

    .div-integration {
        display: flex;
        flex-direction: column-reverse;
    }

    .div-integration>div:last-child>div {
        align-items: center !important;
    }

    .div-integration h1,
    .header-integration-p,
    .check-things-div h3,
    .check-things-div p {
        text-align: center;
    }

    .div-integration h5::after {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .check-things-div {
        justify-content: center;
    }

    .about-div {
        gap: 60px;
    }

    .about-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-content-divs {
        min-height: 210px;
    }

    .about-content-divs:nth-child(2n) {
        border-right: none;
    }

    .about-content-divs:nth-child(-n + 2) {
        border-bottom: 1px solid #29c9796d;
    }

    .contact {
        padding: 5vh 3vh;
    }

    .contact-div {
        flex-direction: column;
        padding: auto;
    }

    .contact-text {
        text-align: center;
    }

    .contact form button {
        align-self: center;
        width: 100%;
    }

    video {
        width: 80%;
        height: auto;
    }

    .div-video h3 {
        width: fit-content;
        font-size: 24px;
        padding: 2% 4% 2%;
    }

    .meta-verified div p {
        font-size: 0.6rem;
        margin-bottom:-8px ;
    }

    .meta-verified {
        right: 24px;
        bottom: 30px;
        width: 30%;
    }

    .language-switcher {
    position: fixed;
    right: 24px;
    bottom: 120px;
    
}
}

/* -------------------------------------- Mobile -------------------------------------- */
@media (max-width: 680px) {
    html {
        font-size: 15px;
    }

    nav {
        padding: 14px 16px;
    }

    nav.scrolled {
        padding: 10px 16px;
    }

    .call-us a {
        min-height: 40px;
        padding: 8px 13px;
        font-size: 0.82rem;
    }

    .hero {
        min-height: auto;
        padding-inline: 16px;
    }

    .hero h1,
    .decision-hero {
        font-size: clamp(1.8rem, 9vw, 3rem);
    }

    .buttons-div {
        flex-direction: column;
    }

    .buttons-div a {
        width: 100%;
    }

    .hero-trust {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-context>p:last-child {
        line-height: 1.9;
        word-spacing: 4px;
    }

    .div-cards {
        grid-template-columns: 1fr;
        padding-inline: 5vh;
    }

    .cards {
        min-height: 0;
    }

    .check-things-div {
        align-items: flex-start;
    }

    .check-things-div>p:last-child {
        margin-top: 2px;
    }

    .about-div {
        align-items: stretch;
        gap: 45px;
    }

    .about-header h1 {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
    }

    .about-header>p:last-child {
        padding-inline: 8px;
    }

    .about-content {
        grid-template-columns: 1fr;
        border-radius: 14px;
    }

    .about-content-divs {
        min-height: auto;
        padding: 28px 24px;
        border-right: none;
        border-bottom: 1px solid #29c9796d;
    }

    .about-content-divs:nth-child(-n + 2) {
        border-bottom: 1px solid #29c9796d;
    }

    .about-content-divs:last-child {
        border-bottom: none;
    }

    .about-2-div {
        flex-direction: column;
        text-align: center;
    }

    .about-2-card {
        width: 70%;
        max-width: 100%;
        margin-top: 20px;
        margin-bottom: 50px;
        padding: 24px;
    }

    .about-2-card-div {
        justify-content: center;
    }

    .div-img-integration {
        max-width: 70%;
        padding: 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 16px;
    }

    .language-switcher {
        right: 16px;
        bottom: 80px;
    }

    .language-switcher__toggle {
        min-width: 62px;
        height: 48px;
        padding-inline: 13px;
    }

    .meta-verified div p {
        font-size: 0.5rem;
        margin-bottom:-3px ;
    }

    .meta-verified {
        right: 16px;
        bottom: 30px;
        width: 20%;
    }
}

/* -------------------------------------- Small phones -------------------------------------- */
@media (max-width: 420px) {
    .hero {
        padding-top: 38px;
    }

    .hero h1,
    .decision-hero {
        font-size: clamp(1.6rem, 8.5vw, 2.4rem);
    }

    .container {
        width: min(100% - 24px, var(--container));
    }

    .div-img-integration {
        padding: 18px;
        border-radius: 20px;
    }

    .check-things-div {
        gap: 12px;
    }

    .contact-div {
        padding: 24px 16px;
    }
}