:root {
    --green: #00FF97;
    --white: #FFFFFF;
    --black: #000000;
    --light-blue: #C3E4FF;
    --pink: #F8D5E5;
    --light-green: #CBFFEA;
    --gray: #585858;
    --red: #FF1D25;
    --crimson: #ED1E79;
    --blue: #3FA9FF;
    --dark-blue: #1555E6;
    --wrapper-width: 1236px;
    --hero-width: 920px;
    --problem-width: 990px;
    --problem-left-padding: 20rem;
    --problem-padding: 6.5rem 5rem 8rem var(--problem-left-padding);
    --problem-image-width: 380px;
    --problem-image-height: 520px;
    --problem-image-top: 1.5rem;
    --icon-size-multiplier: 1;
    --icon-position-multiplier: 1;
    --data-row-width: 90%;
    --data-item-padding: 0;
    --more-information-grid-columns: repeat(4, 1fr);
    --opportunity-grid-columns: 1fr 1fr;
    --cta-quote-width: calc(640px - 9rem);
    --section-padding: 6.5rem 5rem;
    --opportunity-image-width: unset;
    --font-size-multiplier: 1;
    --footer-flex-direction: row;
}

* {
    font-family: "Geologica", sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--black);
    max-width: 100vw;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

main {
    overflow-x: hidden;
}

fieldset {
    border: none;
}


.wrapper {
    max-width: var(--wrapper-width);
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.logo-image {
    width: 100px;
    height: 70px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 4px;
}

.language-selector--mobile {
    display: none;
}

.language-selector__link {
    text-decoration: none;
    color: var(--white);
}

.language-selector__link:hover {
    text-decoration: underline;
}

.language-selector__separator {
    color: var(--white);
}


.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.header__breadcrumb {
    display: flex;
    justify-content: end;
    display: none;
}

.header__breadcrumb-btn {
    text-align: right;
    display: flex;
    flex-direction: column;
    row-gap: .25rem;
    align-items: end;
    width: fit-content;
    padding: 12px 11px;
    background: var(--green);
    border-radius: 50%;
}

.header__breadcrumb-btn.is-open {
    z-index: 100;
}

.header__nav--mobile.is-open {
    transform: translateX(0);
    left: 0;
}

.header__breadcrumb-btn span {
    display: inline-block;
    height: 2px;
    width: 1rem;
    background-color: var(--black);
    transition: transform .5s;
}

.header__breadcrumb-btn.is-open span:nth-of-type(1) {
    /* transform: rotate(45deg) translate(.25rem, .25rem); */
    transform: rotate(45deg) translate(4px, 4.5px);
}

.header__breadcrumb-btn.is-open span:nth-of-type(3) {
    /* transform: rotate(-45deg) translate(.25rem, -.25rem); */
    transform: rotate(-45deg) translate(4px, -4px);
}

.header__breadcrumb-btn.is-open span:nth-of-type(2) {
    opacity: 0;
}

.header__nav--mobile {
    transform: translateX(120%);
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    background-color: var(--black);
    z-index: 99;
    transition: transform .5s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__nav--mobile-list {
    display: flex;
    flex-direction: column;
    row-gap: 3.5rem;
    font-size: 1.5rem;
    text-align: center;
    padding-inline-start: 0;
}

.header__nav-link {
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
}

.nav-list {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color .3s, color .3s;
}

.nav-link.button:hover {
    background-color: var(--green);
    color: var(--black);
}

.button {
    padding: 0.625rem 1.5rem;
    border-radius: 1.5rem;
    border: 2px solid var(--green);
    text-decoration: none;
    width: fit-content;
}

.button--outline {
    background-color: transparent;
    color: var(--white);
}

.button--primary {
    background-color: var(--green);
    color: var(--black);
    padding: 1rem 3rem;
    font-weight: 700;
}

.button--blue {
    background-color: var(--dark-blue);
    color: var(--white);
    border-color: var(--dark-blue);
}

.hero {
    color: var(--white);
    margin: 2rem auto;
    text-align: center;
    position: relative;
}

.hero--narrow {
    margin: 2rem auto;
    width: 800px;
}

.hero-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: var(--hero-width);
    margin: 0 auto;
}

.hero-container--narrow {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 100px;
}

.hero-title {
    font-size: calc(3rem * var(--font-size-multiplier));
    margin: 0;
}

.hero-title--underlined {
    border-bottom: 1px solid var(--green);
    width: fit-content;
    margin: 0 auto;
}

.hero-description {
    font-size: 1.25rem;
}

.hero-button {
    margin: 3rem auto 0;
    font-size: 1.5rem;
    transition: background-color .3s, color .3s;
    display: block;
}

.hero-button:hover,
.cta__form--button:hover {
    background-color: var(--black);
    color: var(--green);
}

.hero-icons {
    z-index: -1;
}

.hero-icon {
    position: absolute;
}

.hero-icon--message {
    width: 105px;
    height: 105px;
    right: 0;
    top: 0;
}

.hero-icon--follower {
    width: calc(75px * var(--icon-size-multiplier));
    height: calc(65px * var(--icon-size-multiplier));
    right: calc(50vw - (var(--wrapper-width) / 2) * 0.65 * var(--icon-position-multiplier));
    top: calc(-100px * var(--icon-position-multiplier));
}

.hero-icon--heart {
    width: calc(45px * var(--icon-size-multiplier));
    height: calc(40px * var(--icon-size-multiplier));
    left: calc(50vw - (var(--wrapper-width) / 2) * var(--icon-position-multiplier));
    top: calc(-80px * var(--icon-position-multiplier));
}

.hero-icon--bookmark {
    width: calc(100px * var(--icon-size-multiplier));
    height: calc(100px * var(--icon-size-multiplier));
    left: 0;
    bottom: calc(50% - 100px * var(--icon-position-multiplier));
}

.hero-icon--send {
    width: calc(50px * var(--icon-size-multiplier));
    height: calc(45px * var(--icon-size-multiplier));
    left: calc(50vw - (var(--wrapper-width) / 2) * var(--icon-position-multiplier));
    bottom: 0;
}

.hero-icon--photo {
    width: calc(40px * var(--icon-size-multiplier));
    height: calc(35px * var(--icon-size-multiplier));
    right: calc(50vw - (var(--wrapper-width) / 2) * 0.8 * var(--icon-position-multiplier));
    bottom: 0;
}

.hero-icon--share {
    width: calc(70px * var(--icon-size-multiplier));
    height: calc(70px * var(--icon-size-multiplier));
    right: calc(-1.5rem * var(--icon-position-multiplier));
    bottom: 0;
}

.problem {
    margin-top: 16rem;
    margin-bottom: 16rem;
    position: relative;
}

.problem__content {
    background-color: var(--light-blue);
    padding: var(--problem-padding);
    max-width: calc(var(--problem-width) - var(--problem-left-padding));
    margin-left: auto;
    border-radius: 1.5rem;
}

.problem__image {
    position: absolute;
    top: var(--problem-image-top);
    left: 0;
    width: var(--problem-image-width);
    height: var(--problem-image-height);
}

.problem__image-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.problem__title {
    font-size: 2.25rem;
}

.problem__icon {
    position: absolute;
    z-index: -1;
}

.problem__icon--views {
    width: calc(145px * var(--icon-size-multiplier));
    height: calc(110px * var(--icon-size-multiplier));
    left: 0;
    top: calc(-75px * var(--icon-position-multiplier));
}

.problem__icon--smile {
    width: 63px;
    height: 63px;
    right: calc(60vw - (var(--wrapper-width) / 2) * 0.8 * var(--icon-position-multiplier));
    top: calc(-150px * var(--icon-position-multiplier));
}

.problem__icon--user {
    width: 79px;
    height: 90px;
    right: calc(-40px * var(--icon-position-multiplier));
    bottom: calc(-150px * var(--icon-position-multiplier));
}

.problem__icon--videogame {
    width: 50px;
    height: 35px;
    left: calc(50px * var(--icon-position-multiplier));
    bottom: calc(-60px * var(--icon-position-multiplier));
}

.opportunity {
    background-color: var(--pink);
    padding: var(--section-padding);
    border-radius: 1.5rem;
}

.opportunity__container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: var(--opportunity-grid-columns);
    gap: 6rem;
}

.opportunity__title {
    font-size: 2.25rem;
}

.opportunity__description {
    line-height: 1.5;
}

.opportunity__description__lg {
    font-size: 1.125rem;
    font-weight: bold;
}

.opportunity__image {
    position: relative;
    width: var(--opportunity-image-width);
    z-index: 0;
}

.opportunity__image--mobile {
    display: none;
}

.opportunity__image-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.opportunity__icon {
    position: absolute;
    z-index: -1;
}

.opportunity__icon--link {
    width: calc(80px * var(--icon-size-multiplier));
    height: calc(60px * var(--icon-size-multiplier));
    right: 0;
    top: calc(-40px * var(--icon-position-multiplier));
}

.opportunity__icon--video {
    width: calc(105px * var(--icon-size-multiplier));
    height: calc(70px * var(--icon-size-multiplier));
    left: 0;
    bottom: calc(-30px * var(--icon-position-multiplier));
    z-index: 0;
}

.cta {
    color: var(--white);
    text-align: center;
    padding: 10rem 5rem 6rem;
    max-width: 950px;
    margin: 0 auto;
}

.cta__content {
    position: relative;
}

.cta__subtitle {
    font-size: 1.25rem;
}

.cta__title {
    font-size: 3rem;
}

.cta__quote {
    background-image: url(./assets/icons/quote-box.png);
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--cta-quote-width);
    margin: 0 auto;
    padding: 5rem;
    font-size: 1.25rem;
}

.cta__form {
    max-width: 810px;
    margin: 4rem auto;
}

.cta__form--scroll {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cta__form--row-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.cta__form--row-2 {
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 80px;
}

.cta__form--input {
    width: 100%;
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid var(--black);
    line-height: 2;
}

.cta__form--input--uppercase {
    text-transform: uppercase;
}

.cta__form--input::placeholder {
    color: var(--gray);
    font-size: 18px;
    text-transform: none;
}

.cta__form--button {
    font-size: 18px;
    cursor: pointer;
    transition: background-color .3s, color .3s;
}

.cta__form--button:disabled {
    cursor: not-allowed;
}

/* Hide the original checkbox */
.cta__form--checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
  
/* Style the label to include a custom radio-style indicator */
.cta__form-checkbox-group label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    display: inline-block;
    line-height: 20px;
}
  
/* Create the circle outline */
.cta__form-checkbox-group label::before {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--white);
    border-radius: 50%;
    background-color: var(--white);
    box-sizing: border-box;
}

/* Create the inner filled circle (checked state) */
.cta__form--checkbox:checked + label::after {
    content: "";
    position: absolute;
    left: 3px;
    top: 3px;
    width: 14px;
    height: 14px;
    background-color: var(--dark-blue);
    border-radius: 50%;
}
  

.cta__icon {
    position: absolute;
    z-index: -1;
}

.cta__icon--follower {
    width: calc(70px * var(--icon-size-multiplier));
    height: calc(60px * var(--icon-size-multiplier));
    left: calc(-70px * var(--icon-position-multiplier));
    top: calc(-90px * var(--icon-position-multiplier));
}

.cta__icon--users {
    width: calc(130px * var(--icon-size-multiplier));
    height: calc(100px * var(--icon-size-multiplier));
    right: -5%;
    top: calc(-120px * var(--icon-position-multiplier));
}

.cta__icon--link {
    width: calc(80px * var(--icon-size-multiplier));
    height: calc(55px * var(--icon-size-multiplier));
    right: -18%;
    top: 25%;
}

.cta__icon--gaming {
    width: calc(110px * var(--icon-size-multiplier));
    height: calc(80px * var(--icon-size-multiplier));
    left: -18%;
    bottom: 40%;
}

.cta__icon--play {
    width: calc(70px * var(--icon-size-multiplier));
    height: calc(70px * var(--icon-size-multiplier));
    left: 0;
    bottom: -5%;
}

.cta__icon--wave {
    width: calc(130px * var(--icon-size-multiplier));
    height: calc(140px * var(--icon-size-multiplier));
    right: -10%;
    bottom: -10%;
}

.cta__form--link {
    color: var(--white);
    text-decoration: underline;
}

.data {
    background-color: var(--light-green);
    padding: var(--section-padding);
    border-radius: 1.5rem;
}

.data__title {
    font-size: 3rem;
}

.data__description {
    font-size: 1.75rem;
}

.data__content {
    border: 2px solid var(--black);
    border-radius: 1.5rem;
    padding: 2rem;
}

.data__row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--black);
    max-width: var(--data-row-width);
    margin: auto;
}

.data__row .data__item,
.data__row--2 .data__item {
    border-right: 2px solid var(--black);
    word-break: break-word;
    padding: 0 var(--data-item-padding);
}

.data__row .data__item:nth-child(2),
.data__row--2 .data__item:nth-child(2) {
    border-right: none;
}

.data__row .data__item:last-child {
    border-left: 2px solid var(--black);
    border-right: none;
}

.data__item__title {
    font-size: 3rem;
    margin: 0;
    max-width: 240px;
}

.data__item__description {
    font-size: 1.25rem;
    max-width: 240px;
}

.data__item__link {
    color: var(--black);
}

.data__row .data__item:nth-child(2) .data__item__title,
.data__row .data__item:nth-child(2) .data__item__description,
.data__row--2 .data__item:nth-child(2) .data__item__title,
.data__row--2 .data__item:nth-child(2) .data__item__description {
    margin: auto;
}

.data__row .data__item:nth-child(2) .data__item__description {
    margin: 1.25rem auto;
}

.data__row .data__item:nth-child(3) .data__item__title,
.data__row .data__item:nth-child(3) .data__item__description,
.data__row--2 .data__item:nth-child(3) .data__item__title,
.data__row--2 .data__item:nth-child(3) .data__item__description {
    margin-left: auto;
}

.data__row .data__item:nth-child(3) .data__item__description {
    margin: 1.25rem 0 1.25rem auto;
}

.data__row--2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    max-width: var(--data-row-width);
    margin: 2rem auto 0 auto;
}

.data__row--2 .data__item:nth-child(2) {
    border-right: none;
}

.data__row--2 .data__item:nth-child(3) {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
    border-right: none;
    border-left: 2px solid var(--black);
}

.data__row--2 .data__item:nth-child(3) .data__item__description {
    margin-top: 0;
    margin-bottom: 0;
}

.data__row--2 .data__item:nth-child(4) {
    grid-column: 1 / 3;
    grid-row: 2;
    border-right: none;
    font-size: 0.75rem;
}

.data__item__list {
    padding: 0;
    max-width: 600px;
}

.who-we-are {
    color: var(--white);
    text-align: center;
    padding: var(--section-padding);
    padding-bottom: 0;
}

.who-we-are__title {
    font-size: 3rem;
}

.who-we-are__content {
    margin-top: 6rem;
}

.who-we-are__description {
    font-size: 1.25rem;
    margin: 0 auto;
    text-align: left;
    margin-top: 2rem;
    position: relative;
}

.who-we-are__icon {
    position: absolute;
    z-index: -1;
}

.who-we-are__icon--bookmark {
    width: calc(50px * var(--icon-size-multiplier));
    height: calc(60px * var(--icon-size-multiplier));
    left: -8%;
    top: 20%;
}

.who-we-are__icon--share {
    width: calc(70px * var(--icon-size-multiplier));
    height: calc(70px * var(--icon-size-multiplier));
    right: -5%;
    top: 20%;
}

.who-we-are__icon--gaming {
    width: calc(110px * var(--icon-size-multiplier));
    height: calc(80px * var(--icon-size-multiplier));
    right: 0;
    bottom: -30%;
}

.who-we-are__icon--smile {
    width: calc(80px * var(--icon-size-multiplier));
    height: calc(80px * var(--icon-size-multiplier));
    left: 10%;
    bottom: -30%;
}

.who-we-are__icon--wave {
    width: calc(90px * var(--icon-size-multiplier));
    height: calc(100px * var(--icon-size-multiplier));
    right: 20%;
    top: -50%;
}

.who-we-are__partners-title {
    font-size: 2rem;
    margin-top: 4rem;
}

.carousel {
    position: relative;
    display: flex;
    overflow-x: hidden;
    width: 95%;
    margin: 0 auto;
}

.carousel__container {
    width: calc(var(--items) * var(--item-width));
    display: flex;
    position: relative;
}

.carousel__item {
    width: var(--item-width);
}

.who-we-are__partners {
    gap: 2rem;
    margin-top: 4rem;
    display: flex;
}

.who-we-are__partner {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    padding: 1rem;
    border-radius: 10px;
}

.who-we-are__partner.no-background {
    background-color: transparent;
}

.who-we-are__partner__image {
    width: 100%;
}

.more-information {
    color: var(--white);
    text-align: center;
    padding: var(--section-padding);
}

.more-information__title {
    font-size: 3rem;
}

.more-information__description {
    font-size: 1.25rem;
    max-width: 900px;
    margin: 0 auto;
}

.more-information__content {
    display: grid;
    grid-template-columns: var(--more-information-grid-columns);
    gap: 2rem;
    margin-top: 4rem;
}

.more-information__item {
    transition: transform .3s;
    text-decoration: none;
}

.more-information__item:hover {
    cursor: pointer;
    transform: scale(1.05);
}

.more-information__item__image-container {
    height: 200px;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.more-information__item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.more-information__item__content {
    padding: 1rem 1.5rem;
    background-color: var(--white);
    border-radius: 1rem;
    color: var(--black);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    height: 110px;
}

.more-information__item__description {
    margin: 0;
}

.more-information__item__date {
    font-size: 0.875rem;
    color: var(--gray);
}

.more-information__item:nth-child(3) .more-information__item__image-container {
    background-color: var(--light-blue);
}

.more-information__item--pink .more-information__item__image-container {
    background-color: var(--pink);
    display: flex;
    align-items: center;
    justify-content: center;
}

.more-information__item--pink .more-information__item__image {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.footer {
    display: flex;
    flex-direction: var(--footer-flex-direction);
    justify-content: space-between;
    align-items: center;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--red), var(--crimson), var(--blue));
    z-index: -1;
    border-radius: 1.5rem;
}

.footer__logo {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    color: var(--gray);
}

.footer__logo-image {
    width: 165px;
    height: 110px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer__inner-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__inner-link {
    color: var(--white);
    font-size: 1.25rem;
    text-decoration: none;
}

.footer__inner-link:hover {
    text-decoration: underline;
}

.footer__get-in-touch {
    display: flex;
    flex-direction: column;
    color: var(--white);
    gap: 0.5rem;
}

.footer__get-in-touch__title {
    font-size: 1.75rem;
    margin: 0;
}

.footer__get-in-touch__email {
    color: var(--green);
    font-size: 1.25rem;
}

#thank-you-page {
    position: relative;
    top: -6rem;
}

.thank-you-page__container {
    width: 946px;
    margin: 0 auto 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.thank-you-page__logo {
    width: 90px;
    height: 80px;
}

.thank-you-page__title {
    font-size: 3rem;
    color: var(--white);
    text-align: center;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.thank-you-page__description {
    font-size: 1.25rem;
    color: var(--white);
    text-align: center;
}

.share-website {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.share-website__image {
    width: 450px;
    height: 450px;
    top: calc(50% - 225px);
}

.share-website__image-image {
    object-fit: cover;
}

.share-website__buttons {
    margin-top: 2rem;
    display: flex;
    gap: 2rem;
}

.body {
    color: var(--white);
    margin-bottom: 2rem;
    padding: 0 2rem;
}

.body__section {
    padding: 1rem 0;
}

.body__section-title {
    font-size: 2rem;
}

.body__section-content {
    font-size: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.body__section-content p {
    margin: 0;
}

.body__section-content a {
    color: var(--white);
    text-decoration: underline;
}

@media screen and (max-width: 1200px) {
    :root {
        --wrapper-width: 990px;
        --hero-width: 720px;
        --problem-width: 790px;
        --problem-left-padding: 15rem;
        --problem-padding: 4rem 5rem 4rem var(--problem-left-padding);
        --problem-image-width: 300px;
        --problem-image-height: 400px;
        --problem-image-top: 3rem;
        --icon-size-multiplier: 0.8;
        --icon-position-multiplier: 0.8;
        --data-row-width: 100%;
        --data-item-padding: 2rem;
    }

    .share-website__image {
        width: 300px;
        height: 300px;
        top: calc(50% - 150px);
    }

    .who-we-are__partners {
        grid-template-columns: 1fr 1fr;
    }
}


@media screen and (max-width: 990px) {
    :root {
        --wrapper-width: 790px;
        --hero-width: 520px;
        --problem-width: 600px;
        --problem-left-padding: 12rem;
        --problem-padding: 2rem 4rem 2rem var(--problem-left-padding);
        --problem-image-width: 250px;
        --problem-image-height: 350px;
        --icon-size-multiplier: 0.65;
        --font-size-multiplier: 0.7;
        --more-information-grid-columns: 1fr 1fr;
    }

    /* Collapse data section to single column on tablets/small screens */
    .data__row,
    .data__row--2 {
        grid-template-columns: 1fr;
        border-bottom: 0;
        margin-top: 0;
    }

    .data__row .data__item,
    .data__row .data__item:last-child,
    .data__row--2 .data__item {
        border: 0;
        border-bottom: 2px solid var(--black);
        text-align: center;
        padding: 1.5rem 0;
        font-size: inherit;
    }

    .data__row--2 .data__item:nth-child(3),
    .data__row--2 .data__item:nth-child(4) {
        grid-column: unset;
        grid-row: unset;
    }

    .data__row--2 .data__item:nth-child(3) {
        border-left: 0;
    }

    /* Last item in each row has no bottom border (it's a row terminator visually) */
    .data__row--2 .data__item:last-child {
        border-bottom: 0;
    }

    /* Center every item's title + description in the stacked view; override desktop
       per-column margin shorthands by writing the shorthand back at this breakpoint. */
    .data__row .data__item .data__item__title,
    .data__row--2 .data__item .data__item__title,
    .data__row .data__item:nth-child(2) .data__item__title,
    .data__row .data__item:nth-child(3) .data__item__title,
    .data__row--2 .data__item:nth-child(2) .data__item__title,
    .data__row--2 .data__item:nth-child(3) .data__item__title {
        margin: 0 auto;
        max-width: 100%;
        text-align: center;
    }

    .data__row .data__item .data__item__description,
    .data__row--2 .data__item .data__item__description,
    .data__row .data__item:nth-child(2) .data__item__description,
    .data__row .data__item:nth-child(3) .data__item__description,
    .data__row--2 .data__item:nth-child(2) .data__item__description,
    .data__row--2 .data__item:nth-child(3) .data__item__description {
        margin: 1.25rem auto 0;
        max-width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    :root {
        --wrapper-width: 90vw;
        --hero-width: 90vw;
        --problem-width: 90vw;
        --problem-left-padding: 4rem;
        --problem-padding: 2rem;
        --problem-image-width: 250px;
        --problem-image-height: 350px;
        --icon-size-multiplier: 0.8;
        --font-size-multiplier: 0.7;
        --opportunity-grid-columns: 1fr;
        --cta-quote-width: calc(100% - 5rem);
        --data-item-padding: 1rem;
        --section-padding: 4rem 0;
        --footer-flex-direction: column-reverse;
        --more-information-grid-columns: 1fr;
    }

    .language-selector {
        display: none;
    }

    .language-selector--mobile {
        display: flex;
    }

    .hero {
        margin: 14rem auto;
    }

    .hero--narrow {
        margin: 2rem auto;
    }

    .hero-container {
        gap: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }
    
    .hero-icon--message {
        right: -20vw;
        top: -30px;
    }

    .hero-icon--heart {
        left: 8vw;
        top: -100px;
    }

    .hero-icon--bookmark {
        left: -20vw;
        bottom: 45%;
    }

    .hero-icon--send {
        left: 0;
        bottom: 25%;
    }

    .hero-icon--photo {
        right: 0;
        bottom: 25%;
    }
    
    .hero-icon--follower {
        right: 15vw;
    }

    .hero-button {
        font-size: 13px;
        padding: 0.625rem 1.5rem;
    }

    .problem {
        margin-top: 20rem;
        margin-bottom: 8rem;
    }

    .problem__image {
        left: calc(50vw - ((var(--problem-image-width) + var(--problem-padding)) / 2));
        top: calc(-1 * var(--problem-image-height) / 2);
    }

    .problem__content {
        padding-top: calc(var(--problem-image-height) / 2);
    }

    .problem__title {
        font-size: 26px;
    }

    .problem__description {
        letter-spacing: 0.01rem;
        line-height: 1.5;
    }

    .problem__icon--smile {
        right: 20%;
        top: calc(-20rem);
    }

    .problem__icon--views {
        top: calc(-12rem);
    }
    
    .problem__icon--videogame {
        left: 0;
        bottom: -10%;
    }

    .problem__icon--user {
        right: 0;
        bottom: -20%;
    }

    .opportunity__title {
        font-size: 26px;
    }

    .opportunity__description__lg {
        font-size: 16px;
    }

    .opportunity__image {
        display: none;
    }

    .opportunity__image--mobile {
        display: block;
        position: relative;
        margin-top: 2rem;
    }

    .opportunity__icon--link {
        right: 0;
    }

    .opportunity__icon--video {
        bottom: 0;
    }

    .cta__subtitle {
        font-size: 16px;
    }

    .cta__title {
        font-size: 26px;
        max-width: 300px;
        margin: 1.5rem auto;
    }

    .cta__content {
        max-width: 350px;
        margin: 0 auto;
    }

    .cta__quote {
        background-image: url(./assets/icons/quote-box-mobile.png);
        font-size: 16px;
        padding: 4rem 2rem 2rem;
        line-height: 2;
    }

    .data__title {
        font-size: 1.5rem;
    }

    .data__description {
        font-size: 18px;
    }

    .data__content {
        padding: 1.5rem;
    }

    .data__row,
    .data__row--2 {
        grid-template-columns: 1fr;
        border-bottom: 0;
        margin-top: 0;
    }

    .data__item__title {
        font-size: 24px;
        margin: 0!important;
    }

    .data__item__description {
        font-size: 18px;
        margin: 20px 0!important;
    }

    .data__row .data__item,
    .data__row .data__item:last-child,
    .data__row--2 .data__item {
        border: 0;
        border-bottom: 2px solid var(--black);
    }

    .data__row--2 .data__item:nth-child(3),
    .data__row--2 .data__item:nth-child(4) {
        grid-column: unset;
        grid-row: unset;
    }

    .data__row .data__item:nth-child(3) .data__item__title,
    .data__row .data__item:nth-child(3) .data__item__description,
    .data__row--2 .data__item:nth-child(3) .data__item__title,
    .data__row--2 .data__item:nth-child(3) .data__item__description {
        margin-left: 0;
    }

    .data__row--2 .data__item:nth-child(2) .data__item__description {
        margin: 20px 0;
    }

    .data__row--2 .data__item:nth-child(3) {
        border-left: 0;
    }

    .data__row--2 .data__item:nth-child(3) .data__item__description {
        margin: 0 0 20px!important;
        max-width: 280px;
    }

    .data__row--2 .data__item:nth-child(4) {
        border-bottom: 0;
    }

    .who-we-are__title {
        font-size: 2rem;
    }

    .who-we-are__description {
        font-size: 1.125rem;
    }

    .who-we-are__partners {
        grid-template-columns: 1fr;
    }

    .who-we-are__icon--bookmark {
        top: -10%;
        left: -10%;
    }

    .who-we-are__icon--share {
        top: -10%;
        right: -10%;
    }

    .who-we-are__icon--gaming {
        bottom: -10%;
        left: -10%;
    }

    .who-we-are__icon--smile {
        left: 90%;
        bottom: -10%;
    }

    .who-we-are__icon--wave {
        display: none;
    }

    .more-information {
        padding-top: 2rem;
    }

    .more-information__title {
        font-size: 2rem;
    }

    .more-information__description {
        font-size: 15px;
        max-width: 350px;
        line-height: 1.5;
    }

    .footer {
        align-items: flex-start;
        padding-top: 2rem;
        row-gap: 4rem;
    }

    .footer__logo {
        row-gap: 2rem;
    }

    .footer__logo-image {
        width: 120px;
        height: 80px;
    }

    .nav-list li:nth-child(1),
    .nav-list li:nth-child(2) {
        display: none;
    }

    .logo-image {
        width: 65px;
        height: 45px;
    }

    #thank-you-page {
        top: -4rem;
    }

    .thank-you-page__logo {
        width: 45px;
        height: 40px;
    }

    .thank-you-page__title {
        font-size: 2rem;
    }

    .share-website {
        margin-top: 10rem;
        margin-bottom: 0;
    }

    .share-website__image {
        width: 250px;
        height: 250px;
        top: -125px;
    }

    .share-website__buttons {
        flex-direction: column;
    }

    .cta {
        padding: 10rem 2rem 0;
    }

    .cta__icon--follower {
        left: 0;
    }

    .cta__icon--link {
        top: 18%;
    }

    .cta__icon--gaming {
        bottom: 70%;
        left: -22%;
    }

    .cta__icon--wave {
        bottom: -10%;
    }

    .cta__form--scroll {
        gap: 1rem;
    }

    .cta__form--row-1 {
        gap: 10px;
    }

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

    .cta__form--input {
        padding: 12px 9px;
    }

    .cta__form--row-1 .cta__form--input {
        width: 150px;
    }

    .cta__form--row-2 .cta__form--input {
        width: calc(100% - 18px);
    }

    .header__breadcrumb {
        display: flex;
    }

    .button {
        padding: 0.5rem 1rem;
        font-size: 14px;
    }

    .cta__form-checkbox-group label {
        text-align: left;
    }

    .body {
        padding: 0;
    }

    .body__section-title {
        font-size: 1.5rem;
        margin: 1rem 0;
    }

    .body__section-content {
        font-size: 1rem;
    }
}