:root {
    --nav-bar-height: 50px;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    width: 100%;
    flex: 1 1 auto;
}

.text-page-content {
    box-sizing: border-box;
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    font-size: 16px;
    line-height: 1.6;
}


/* * MARK: Navbar
---------------------------------------------------------------------------- */

.nav-bar-space {
    height: var(--nav-bar-height);
    width: 100%;
}

nav {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #236F7B;
    box-sizing: border-box;
    height: var(--nav-bar-height);
    color: white;
    gap: 50px;
    z-index: 100;
    transition: 0.1s ease;
    padding: 0 14px;
}

nav .site-logo {
    flex: 0 1 200px;
}

nav .profile-zone {
    flex: 0 0 200px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 40px;
}

nav ul li a {
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    text-wrap: nowrap;
}

nav a:hover {
    color: var(--cyan-white);
}

nav ul li.socials {
    width: fit-content;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

nav .socials-icon {
    display: block;
    height: 16px;
    transition: .1s;
}

nav .socials-icon:hover {
    transform: scale(1.1);
    transition: .01s;
}

/* Profile zone and auth buttons */
nav .profile-zone {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
    position: relative;
    visibility: hidden;
}

nav .auth-buttons {
    display: flex;
    gap: 5px;
    align-items: center;
}

nav .auth-buttons a {
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s, transform 0.1s;
    text-transform: none;
    white-space: nowrap;
    opacity: 0.9;
}

nav .auth-buttons .btn-signin {
    background-color: white;
    color: #236F7B;
}

nav .auth-buttons .btn-signin:hover {
    color: #236F7B;
    transform: scale(1.02);
    opacity: 1;
}

nav .auth-buttons .btn-signup {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

nav .auth-buttons .btn-signup:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transform: none;
    opacity: 1;
}

nav .profile-box {
    padding: 5px 8px 5px 5px;
    background-color: rgba(0, 0, 0, 0.30);
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    box-sizing: border-box;
    font-size: 13px;
    color: white;
    user-select: none;
    width: fit-content;
    cursor: pointer;
    position: relative;
}

nav .profile-box:hover {
    background-color: rgba(0, 0, 0, 0.45);
}

nav .profile-box .name {
    max-width: 120px;
    text-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

nav .profile-box img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
}

nav .profile-options {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    background-color: #123f46;
    border-radius: 8px;
    padding: 8px 0;
    min-width: 160px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: none;
    flex-direction: column;
    z-index: 1000;
}

nav .profile-box.active .profile-options {
    display: flex;
}

nav .profile-options a {
    padding: 10px 16px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s;
    text-transform: none;
    font-weight: 400;
}

nav .profile-options a:hover {
    background-color: #236F7B;
}

/* Override positioning for main nav burger menu */
nav .burger-menu {
    right: 28px;
}

section {
    width: 100%;
    padding: 30px 0;
    overflow: hidden;
}

#home section:nth-of-type(odd) {
    background-color: var(--background-alt);
}

main:not(#home) section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

section.fill-page {
    min-height: calc(100vh - var(--nav-bar-height) - 250px);
}

h3 {
    text-transform: uppercase;
    font-size: 23px;
    font-weight: 900;
}

h3:first-child {
    margin-top: 0;
}

.left, .right {
    box-sizing: border-box;
    width: 50%;
}

/** MARK: Home Top
---------------------------------------------------------------------------- */

#home #home-section-top {
    position: relative;
    height: 75vh;
    min-height: 600px;
    overflow: hidden;
    padding: 0;
    background-color: transparent;
}

#home-section-top .bg {
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('../img/top-gradient.png');
    background-repeat: repeat-x;
    background-size: 389px 100%;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.2;
}

#home-section-top>.container {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: baseline;
    height: 100%;
    width: 100%;
    max-width: 100%;
}

#top-texts {
    display: flex;
    width: 45%;
    height: 100%;
    text-align: center;
    align-items: center;
    justify-content: flex-end;
    z-index: 0;
}

#top-texts .content {
    width: 100%;
    max-width: 400px;
    height: fit-content;
    margin-right: 40px;
}

#top-texts .top-logo {
    display: block;
    width: 245px;
    margin: auto;
    height: auto;
}

#top-texts h1 {
    opacity: 0;
    font-size: 1px;
}

#top-texts h2 {
    max-width: 300px;
    margin: 25px auto;
    font-weight: 900;
    font-size: 22px;
    color: var(--cyan-highest);
    line-height: 1.2;
}

#top-texts .hook {
    font-size: 15px;
    opacity: 0.9;
    font-weight: 400;
    margin-bottom: 16px;
}

#top-texts .cta {
    padding: 10px 30px;
    font-size: 16.5px;
    font-weight: 600;
    min-width: 180px;
    max-width: 250px;
}

#top-texts .cta:hover {
    background-color: var(--pink-high-hover);
}

#top-texts .cta:hover {
    background-color: var(--pink-high-hover);
}

#top-texts .small {
    font-size: 14px;
    opacity: 0.6;
    margin-top: 4px;
    font-weight: normal;
    font-style: italic;
}

#top-visuals {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 55%;
    height: 100%;
    z-index: 0;
    position: relative;
}

#top-visuals-frame {
    position: absolute;
    top: 0;
    left: 0;
    outline-offset: -1px;
    width: 100%;
    height: 100%;
    max-width: 900px;
}

#home-top-animation {
    outline-offset: -1px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.grain-fx-container {
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
    pointer-events: none !important;
}

.grain-fx {
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    width: 200%;
    height: 200%;
    background-repeat: repeat;
    animation: grain-animation .2s infinite;
    mix-blend-mode: soft-light;
    visibility: visible;
    background-repeat: repeat;
    pointer-events: none !important;
    opacity: .2;
    z-index: -1;
}

@keyframes grain-animation {
    0% { transform: translate(0,0) }
    10% { transform: translate(-5%,-5%) }
    20% { transform: translate(-10%,5%) }
    30% { transform: translate(5%,-10%) }
    40% { transform: translate(-5%,15%) }
    50% { transform: translate(-10%,5%) }
    60% { transform: translate(15%,0) }
    70% { transform: translate(0,10%) }
    80% { transform: translate(-15%,0) }
    90% { transform: translate(10%,5%) }
    100% { transform: translate(5%,0) }
}


/** MARK: Pres/include
---------------------------------------------------------------------------- */

#home-section-presentation,
#home-section-includes {
    padding: 70px 0;
}

#home-section-presentation>.centered-container,
#home-section-includes>.centered-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8%;
    box-sizing: border-box;
    height: 100%;
}

#home-section-includes>.centered-container {
    gap: 5%;
}

#home-section-presentation .left {
    width: 50%;
    max-width: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#home-section-presentation .right {
    width: 40%;
    max-width: 420px;
}

#home-section-includes .left {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#home-section-includes .right {
    width: 40%;
    max-width: 400px;
}

#home-section-includes .left img {
    max-height: 380px;
    max-width: 100%;
    object-fit: contain;
}

#home-section-presentation ul,
#home-section-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#home-section-presentation ul li,
#home-section-includes ul li {
    position: relative;
    padding-left: 20px;
    margin: 7px 0;
}

#home-section-presentation ul li::before {
    display: block;
    content: ' ';
    background-image: url('../img/checkmark-circled.svg');
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    left: 0px;
    top: 5px;
    width: 14px;
    height: 14px;
}

#home-section-includes ul li::before {
    display: block;
    content: ' ';
    background-image: url('../img/circle.svg');
    width: 6px;
    height: 6px;
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    left: 2px;
    top: 8px;
    opacity: 0.6;
}

#home-section-includes h3 {
    margin-bottom: 30px;
}

/** MARK: Partners
---------------------------------------------------------------------------- */

#home-section-partners {
    text-align: center;
    padding: 70px 0;
}

#partners-scroll-container {
    position: relative;
    height: fit-content;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#partners-scroll-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 50px;
    width: fit-content;
}

/* Gradients on the left and right with before and after */
#partners-scroll-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(to right, var(--background) 0%, transparent 100%);
    z-index: 1;
}
#partners-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(to left, var(--background) 0%, transparent 100%);
    z-index: 1;
}

#partners-scroll-content img {
    height: 80px;
    max-width: 220px;
    object-fit: contain;
}

@keyframes partners-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/** MARK: Reviews
---------------------------------------------------------------------------- */

#home-section-reviews {
    text-align: center;
    padding: 70px 0;
}

#home-section-reviews h3 {
    text-align: center;
}

.reviews-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 10px auto;
}

.carousel-nav {
    position: absolute;
    z-index: 10;
    width: 29px;
    height: 29px;
    border-radius: 50%;
    background-color: var(--cyan-mid);
    border: none;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0;
    padding: 0;
}

.carousel-nav:hover:not(:disabled) {
    transform: scale(1.1);
    background-color: var(--cyan-high);
}

.carousel-nav:disabled {
    opacity: 0.2;
    cursor: default;
}

.carousel-nav:hover:disabled {
    transform: none;
}

.carousel-nav-left {
    left: 10px;
}

.carousel-nav-left .i-chevron-right-b {
    transform: rotate(180deg) translate(3px, 1px);
    margin-left: 0;
}

.carousel-nav-right .i-chevron-right-b {
    transform: translate(-1px, -1px);
}

.carousel-nav-right {
    right: 10px;
}

.reviews-carousel {
    position: relative;
    width: calc(100% - 100px);
    box-sizing: border-box;
    padding: 10px 0;
    transform: translateY(-5px);
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.reviews-carousel::-webkit-scrollbar {
    display: none;
}

.reviews-carousel>.carousel-content {
    display: flex;
    flex-direction: row;
    gap: 21px;
}

.reviews-carousel .review {
    flex: 0 0 calc(33.333% - 14px);
}

.review {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    background-color: #1b2a33;
    box-sizing: border-box;
    padding: 20px;
    font-size: 14px;
    overflow: visible;
}

.review .source {
    position: absolute;
    top: -10px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--cyan-mid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
}

.review .head {
    width: 100%;
    margin-bottom: 6px;
}

.review h4 {
    margin: 0;
    font-size: 16px;
}

.review .studio {
    display: block;
    font-size: 13px;
    color: var(--cyan-high);
    margin-top: 0px;
}

.review .content {
    margin-top: 10px;
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
    font-size: 14px;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    -webkit-box-orient: vertical;
    height: fit-content;
}

.review .content::before,
.review .content::after {
    display: inline-block;
    content: '"';
    vertical-align: top;
    color: #aaa;
}

.review .content::before { margin-right: 2px; }
.review .content::after { margin-left: 2px; }

.review .spacer {
    height: auto;
    flex: 1 1 auto;
    margin-bottom: 5px;
}

.review .bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    width: 100%;
}

.review .date {
    color: #888;
    font-size: 13px;
    text-align: right;
    margin-left: auto;
}

.star-rating {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3px;
}

/* Stars are defined in common.css */

/** MARK: About Me
---------------------------------------------------------------------------- */

#home #about-me {
    padding: 90px 0;
}

#about-me>.centered-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    box-sizing: border-box;
}

#about-me .left {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
}

#about-me .left svg {
    width: 100%;
    height: auto;
    max-width: 350px;
}

#about-me .right {
    width: 50%;
    max-width: 400px;
}

#about-me .right h3 {
    color: #ed7a9b;
}

/** MARK: Pricings
---------------------------------------------------------------------------- */

#pricings {
    padding: 70px 0;
}

#pricings h3 {
    text-align: center;
    font-size: 24px;
}

.pricings-container {
    display: flex;
    flex-direction: row;
    gap: 21px;
    justify-content: center;
    width: calc(100% - 20px);
    margin: 40px auto;
    max-width: 850px;
}

.pricing-card {
    position: relative;
    background-color: #1b2a33;
    box-sizing: border-box;
    padding: 20px;
    width: calc(33.333% - 14px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 1px 10px rgba(0,0,0,0.2);
}

.pricing-card .icon {
    height: 44px;
    margin-top: 10px;
}

.pricing-card .popular-badge {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
    top: 20px;
    right: -60px;
    background-color: #FFC400;
    color: black;
    font-size: 11px;
    font-weight: 700;
    height: 20px;
    width: 180px;
    text-transform: uppercase;
}

.pricing-card h4 {
    margin: 25px 0 5px 0;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--cyan-high);
}

.pricing-card.starter h4 {
    color: #BBA5DE;
}

.pricing-card .price {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 42px;
    height: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.pricing-card.starter .price {
    font-size: 36px;
}

.pricing-card .price-subtitle {
    font-size: 13px;
    color: #ccccccaa;
    text-transform: uppercase;
    margin-top: -10px;
    margin-bottom: 15px;
    min-height: 18px;
}

.pricing-card .cta {
    display: inline-block;
    background-color: var(--cyan-highest);
    padding: 8px;
    font-size: 16.5px;
    font-weight: 600;
    width: 100%;
    color: black;
    text-decoration: none;
    box-sizing: border-box;
}

.pricing-card.starter .cta {
    background-color: #BBA5DE;
    border-color: #7660a8;
}

.pricing-card .not-available {
    font-size: 13px;
    color: #859c97;
    margin: 8px auto;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #859c97;
    border-radius: 6px;
    user-select: none;
    font-style: italic;
    transition: 0.2s;
}

.pricing-card .not-available:hover {
    color: white;
    border-color: rgb(255, 87, 87);
}

.pricing-card ul.features {
    margin-top: 20px;
    width: 100%;
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricing-card ul.features li {
    position: relative;
    margin: 8px 0;
    padding-left: 28px;
    font-size: 15px;
}

.pricing-card ul.features li::before {
    display: block;
    content: ' ';
    background-image: url('../img/checkmark-circled.svg');
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    left: 5px;
    top: 3px;
    width: 15px;
    height: 15px;
}

.pricing-card ul.features li.star::before {
    background-image: url('../img/star-full.svg');
    width: 17px;
    height: 17px;
    top: 1px;
}

#pricing-page {
    text-align: center;
}


/** MARK: End CTA
---------------------------------------------------------------------------- */

#end-cta {
    padding: 70px 0;
}

#end-cta>.centered-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin: 30px auto;
    gap: 60px;
}

#end-cta .left {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    height: fit-content;
    width: fit-content;
    padding: 0 30px;
}

#end-cta .right {
    max-width: 400px;
}

#end-cta-image {
    position: relative;
    width: 303px;
    height: 323px;
    box-sizing: border-box;
}

#end-cta .text {
    font-size: 16px;
    line-height: 1.4;
}

#end-cta h3 {
    font-size: 25px;
}

#end-cta .btn {
    font-size: 17px;
    font-weight: 600;
    padding: 8px 24px;
    margin-top: 26px;
}


/** MARK: Newsletter
---------------------------------------------------------------------------- */

#newsletter {
    text-align: center;
    padding: 70px 0;
}

#newsletter-form {
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc(100% - 40px);
    max-width: 420px;
}

#newsletter-form .error-message {
    display: none;
    color: #ff5151;
    font-size: 14px;
    margin-top: 8px;
    min-height: 18px;
    font-weight: 700;
}

.newsletter-form .sub-confirm {
    display: none;
    color: #44e739;
    padding: 20px 40px;
    width: fit-content;
    margin-inline: auto;
    border-radius: 8px;
    font-size: 18px;
    margin-top: 8px;
    min-height: 18px;
    font-weight: 700;
}

#newsletter-form .field-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    transform: translateX(8px);
    margin: 5px 0;
}

#newsletter-form input[type="email"] {
    padding: 6px 10px;
    height: 33px;
    font-size: 16px;
    box-sizing: border-box;
    border: 1px solid #555;
    background-color: #1b2a33;
    color: white;
    margin-right: 5px;
    border-radius: 6px;
    outline: none;
    flex: 1 1 auto;
}

#newsletter-form input[type="email"]::placeholder {
    color: #888;
    font-style: italic;
}

#newsletter-form input[type="email"]:focus {
    border-color: var(--cyan-mid);
    background-color: #22303a;
}

#newsletter-form button {
    height: 33px;
    margin: 0;
}

#newsletter small {
    display: block;
    margin: 10px auto;
    width: 90%;
    max-width: 320px;
    font-size: 14px;
}

#newsletter .unsub {
    display: block;
    text-decoration: none;
    font-size: 14px;
    margin-top: 4px;
}

#newsletter .unsub a {
    font-style: italic;
    margin-inline: 4px;
}


/** MARK: Footer
---------------------------------------------------------------------------- */

footer {
    background-color: #283550;
    color: white;
    font-size: 13px;
    padding: 15px 0;
    box-sizing: border-box;
}

footer a {
    color: white;
    text-decoration: none;
    display: block;
    margin: 3px 0;
}

footer h4 {
    font-size: 15px;
    margin-bottom: 8px;
    color: #BBA5DE;
    text-transform: uppercase;
}

#footer-columns {
    display: flex;
    flex-direction: row;
    gap: 50px;
    justify-content: start;
    width: calc(100% - 20px);
    margin: 0 auto;
    max-width: 1100px;
    box-sizing: border-box;
}

#footer-columns section {
    background-color: transparent;
    margin: 0;
    padding: 0;
    width: 25%;
}

#footer-columns .socials {
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-bottom: 10px;
}

#footer-columns .socials .icon {
    display: block;
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: .1s;
}

#footer-columns .socials .icon:hover {
    opacity: 0.8;
}

#footer-columns .socials .icon-email {
    background-image: url('../img/ico-mail.svg');
}

#footer-columns .socials .icon-x {
    background-image: url('../img/ico-x-twitter.svg');
}

#footer-columns .socials .icon-linkedin {
    background-image: url('../img/ico-linkedin.svg');
}

#footer-bottom {
    margin: auto;
    margin-top: 15px;
    padding-top: 10px;
    text-align: right;
    width: calc(100% - 40px);
    max-width: 1100px;
    color: #BBA5DE;
}

#footer-bottom a {
    display: inline;
    text-decoration: underline;
    color: #BBA5DE;
}


/** MARK: Forms
---------------------------------------------------------------------------- */

.form-logo img {
    height: 40px;
    margin-bottom: 20px;
    opacity: 0.50;
    transition: 0.7s;
}

.form-logo img:hover {
    opacity: 1.0;
    transition: .08s;
}

.center-form-container h2 {
    font-size: 28px;
}

.center-form-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(84vh - var(--nav-bar-height));
    width: 100%;
}

.center-form-container form {
    box-sizing: border-box;
    width: calc(100% - 30px);
    max-width: 380px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.center-form-container form .form-description {
    margin: 0 0 10px 0;
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.4;
    text-align: center;
}

.center-form-container form .error-message {
    display: none;
    color: #ff5151;
    font-size: 14px;
    margin-top: 4px;
    min-height: 18px;
    font-weight: 700;
}

.center-form-container form .buttons-area {
    width: 100%;
}

.center-form-container form .button-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    margin: 10px auto;
}

.center-form-container form .button-row button {
    display: block;
    padding: 9px 30px;
    font-size: 15px;
    font-weight: 600;
    margin: 0 auto;
    border-radius: 10px;
    width: 100%;
}

.center-form-container form .bottom-link {
    display: block;
    margin: 0 auto;
    font-size: 13px;
}

.center-form-container form .bottom-link.bigger {
    font-size: 15px;
}

.center-form-container form .bottom-link:first-of-type {
    margin-top: 25px;
}

.center-form-container form .conditions {
    font-size: 12.5px;
    color: #aaa;
    margin-top: 10px;
    margin-inline: auto;
    text-align: center;
}

.center-form-container #purchase-process-message {
    box-sizing: border-box;
    width: calc(100% - 30px);
    max-width: 550px;
    text-align: center;
    margin: 4px auto 35px auto;
}

.center-form-container #purchase-process-message h1 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 700;
    color: var(--cyan-highest);
}

#signup-form-container,
#signin-form-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.form-success {
    display: none;
    box-sizing: border-box;
    width: calc(100% - 30px);
    max-width: 500px;
    text-align: center;
    margin: 0 auto;
}

.form-success h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
    color: var(--cyan-highest);
}

.form-error {
    display: none;
    box-sizing: border-box;
    width: calc(100% - 30px);
    max-width: 500px;
    text-align: center;
    margin: 0 auto;
}

.form-error h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
    color: var(--pink-high);
}

.error-message-box {
    background-color: rgba(255, 107, 107, 0.1);
    border: 1px solid var(--pink-high);
    border-radius: 8px;
    padding: 20px;
    margin: 10px 0;
}

.success-message-box {
    background-color: rgba(35, 111, 123, 0.1);
    border: 1px solid var(--cyan-mid);
    border-radius: 8px;
    padding: 20px;
    margin: 10px 0;
}

fieldset {
    border: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

fieldset label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 13px;
    color: var(--cyan-higher)
}

input[type="text"].form-input,
fieldset input[type="text"],
fieldset input[type="email"],
fieldset input[type="password"] {
    margin: 0 auto;
    display: block;
    padding: 7px 12px;
    font-size: 15px;
    line-height: 1.25em;
    border-radius: 6px;
    border: 1px solid #0f424a;
    background-color: #1a2831;
    color: white;
    font-family: var(--main-font);
    box-sizing: border-box;
    width: 100%;
    outline: none;
}

fieldset input[type="text"]:focus,
fieldset input[type="email"]:focus,
fieldset input[type="password"]:focus {
    border: 1px solid var(--cyan-high);
    background-color: #1f303b;
    outline: none;
}

fieldset input::placeholder {
    color: #ffffff85;
    opacity: 1;
}

fieldset input::selection {
    background-color: #236F7B;
    color: white;
}

fieldset small {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #a0a0a0;
    min-height: 16px;
    text-align: left;
}

fieldset.newsletter-fieldset {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

/* Hide native appearance while keeping accessibility */
fieldset.newsletter-fieldset input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin: 0;
    border-radius: 2px;
    box-sizing: border-box;
    border: 1px solid rgba(58, 245, 255, 0.442);
    background-color: #1a2831;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    transition: background-color 0.12s ease, border-color 0.12s ease, transform 0.06s ease;
}

/* Checkmark using ::after */
fieldset.newsletter-fieldset input[type="checkbox"]:checked {
    background-color: var(--cyan-higher);
}

fieldset.newsletter-fieldset input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0.5px;
    width: 16px;
    height: 16px;
    background-image: url('../img/checkmark.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

fieldset.newsletter-fieldset label {
    font-size: 14px;
    font-weight: normal;
    cursor: pointer;
    margin: 0;
    user-select: none;
    padding-bottom: 1px;
}

fieldset.newsletter-fieldset label small {
    display: inline-block;
    margin-inline: 2px;
}


/** MARK: Animated images
---------------------------------------------------------------------------- */

#home-tablet-1 {
    position: relative;
    width: 311px;
    min-width: 311px;
    height: 382px;
    box-sizing: border-box;
    opacity: 0;
    perspective: 1000px;
    transform: translateX(-100px) scale(0.5) rotate3d(-0.5, 0.8, 0, -90deg);
    transition: all 0.6s ease;
}

#home-tablet-1.active {
    opacity: 1;
    transform: translateX(0) scale(0.9) rotate3d(0, 0, 0, 0deg);
}

#home-tablet-1>img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    user-select: none;
    pointer-events: none;
}

#home-tablet-1>img.active {
    opacity: 1;
}

#home-tablet-2 {
    position: relative;
    width: 518px;
    height: 426px;
    box-sizing: border-box;
    opacity: 0;
    perspective: 1000px;
    transform: translateY(100px) scale(0.5) rotate3d(0.5, 0.8, 0, 90deg);
    transition: all 0.8s ease-out;
}

#home-tablet-2.active {
    opacity: 1;
    transform: translateY(0) scale(1.0) rotate3d(0, 0, 0, 0deg);
}

#home-tablet-2>img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.5s ease;
    transform: scale(0.1);
    user-select: none;
    pointer-events: none;
}

#home-tablet-2>img.sparkle-1 {
    transform: none;
    transition: all 0.25s ease;
}

#home-tablet-2>img.sparkle-2 {
    transform: none;
    transition: all 0.25s ease;
}

#home-tablet-2>img.active {
    opacity: 1;
    transform: scale(1);
}

#end-cta-image>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: all 0.5s ease;
    pointer-events: none;
    user-select: none;
}

#end-cta-image>img:first-child {
    perspective: 1000px;
    transform: translateX(-100px) rotate3D(-0.5, 1, 0, 50deg);
}

#end-cta-image>img.active {
    transform: translateX(0) rotate3D(0, 0, 0, 0deg);
    opacity: 1;
}


/** MARK: Media Queries
---------------------------------------------------------------------------- */


@media (max-width: 920px) {
    .carousel-nav {
        display: none;
    }
    
    .reviews-carousel {
        width: 100%;
    }
    nav .burger-menu {
        display: flex;
    }

    nav .profile-zone {
        position: absolute;
        right: 80px;
    }

    nav ul {
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        box-sizing: border-box;
        position: absolute;
        top: var(--nav-bar-height);
        left: 0;
        width: 100%;
        max-width: 100%;
        padding: 20px 0 40px 0;
        background-color: #236F7B;
    }

    nav.opened ul {
        display: flex;
    }

    nav.opened ul li {
        margin: 0;
        width: 100%;
        text-align: center;
        text-wrap: nowrap;
    }

    nav.opened ul li a {
        display: block;
        font-size: 17px;
        padding: 5px 20px;
    }

    nav.opened .socials {
        margin-top: 20px;
        gap: 25px;
    }

    nav.opened .socials-icon {
        height: 20px;
    }

    #home #home-section-top {
        height: fit-content;
        min-height: auto;
    }

    #home-section-top>.container {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
        height: auto;
        max-height: auto;
    }

    #top-texts {
        width: 100%;
        max-width: none;
        height: fit-content;
        margin: 5px auto 50px auto;
    }

    #top-visuals {
        width: 100%;
        max-width: 600px;
        flex: 400px;
        transform: translateX(70px);
    }

    #top-texts .content {
        margin: 0 auto;
        width: 90%;
        max-width: 400px;
    }

    #top-texts .top-logo {
        width: 220px;
    }

    #top-texts h2 {
        margin: 20px auto 5px auto;
    }

    #home-section-presentation {
        padding: 40px 0 60px 0;
    }

    #home-section-presentation > .centered-container,
    #home-section-includes > .centered-container,
    #about-me > .centered-container,
    #end-cta > .centered-container {
        flex-direction: column;
        gap: 40px;
    }

    #home-section-presentation .right,
    #home-section-includes .left,
    #home-section-includes .right,
    #about-me .left,
    #about-me .right,
    #end-cta .left,
    #end-cta .right {
        width: 95%;
        max-width: none;
    }

    #home-section-presentation .left {
        height: 320px;
    }

    .text ul li {
        text-align: left;
    }

    #home-section-reviews>.centered-container {
        width: 100%;
    }
    .reviews-carousel {
        width: 100%;
    }
    .reviews-carousel .review {
        flex: 0 0 300px;
    }
    .reviews-carousel .carousel-end {
        display: block;
        flex: 0 0 40px;
    }
    .reviews-carousel .review:first-child {
        margin-left: 20px;
    }

    #about-me {
        text-align: center;
    }
    
    #newsletter-form .field-row {
        flex-direction: column;
        gap: 10px;
        transform: translateX(0);
    }
    #newsletter-form input[type="email"] {
        margin: 0;
        width: 100%;
        height: 40px;
    }
    #newsletter-form button {
        width: 90%;
        max-width: 200px;
    }

    #end-cta > .centered-container {
        margin-top: 0;
    }
    #end-cta .left {
        min-height: auto;
        padding: 0;
    }
    #end-cta .left img {
        height: 220px;
    }
    #end-cta .right {
        max-width: 90%;
        text-align: center;
    }

    footer #footer-columns {
        flex-direction: row;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 30px;
        padding: 5px 0 40px 0;
        text-align: center;
    }
    footer #footer-columns section {
        width: 45%;
        flex: 0 0 45%;
        margin: 0 auto;
    }
    footer .socials {
        justify-content: center;
    }
    footer #footer-bottom {
        text-align: center;
        margin-top: 0;
    }
}

@media (max-width: 750px) {
    #pricings .pricings-container {
        flex-direction: column;
        gap: 30px;
        width: 90%;
        max-width: 400px;
    }

    .pricing-card {
        width: 100%;
    }

    #home-section-partners>.centered-container {
        width: 100%;
    }

    #partners-scroll-content img {
        height: 70px;
    }

    #home-tablet-1.active {
        opacity: 1;
        transform: translateX(0) scale(0.8) rotate3d(0, 0, 0, 0deg);
    }
}

@media (max-width: 600px) {
    #top-visuals {
        flex: 320px;
        transform: translateX(40px);
    }
}

@media (max-width: 380px) {
    #top-visuals {
        flex: 320px;
        transform: translateX(10px);
    }
}