@font-face {
    font-family: "Gotham";
    src: url("fonts/gotham-light.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham";
    src: url("fonts/gotham-book.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham";
    src: url("fonts/gotham-bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
:root {
    --max-width: 960px;
    --page-bg: #ffffff;
    --text: #111111;
    --blue-gradient: linear-gradient(180deg, #92F1FF 0%, #A0BCC0 47.6%, #565657 100%);
    --Grey-gradient: linear-gradient(177deg, #C4C4C4 2.11%, #979EA3 97.89%);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: #494949;
    font-family: Gotham, Arial, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.36px;
    background: var(--page-bg);
}

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

button {
    background: var(--Grey-gradient, linear-gradient(177deg, #C4C4C4 2.11%, #979EA3 97.89%));
    color: #ffffff;
}

.container {
    width: min(100% - 2rem, var(--max-width));
    margin: 0 auto;
}

.site-header {
    padding: 1rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.logo {
    font-weight: 700;
}

.hero {
    padding: 0rem 0 4rem;
    background-color: lightgray;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.12) 100%), url("img/bubbles.png");
    background-repeat: no-repeat, no-repeat;
    background-position: center, center;
    background-size: 100% 100%, cover;
    overflow: hidden;
}

.hero .container {
    width: min(100% - 2rem, 1100px);
}

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

.hero-left {
    flex: 1 1 54%;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hero-right {
    flex: 1 1 46%;
    margin-bottom: -180px;
    overflow: hidden;
}

.hero-logo {
    width: 180px;
    height: auto;
}

.hero-title {
    color: #ffffff;
    font-family: Gotham;
    font-size: 43px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.hero-subheader {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 30px 0px;
}

.hero-subheader-strong {
    font-weight: 700;
    font-size: 23px;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero-subheader-text {
    margin: 0.5rem 0 0;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 21px 40px;
    border-radius: 50px;
    background: var(--Grey-gradient, linear-gradient(177deg, #C4C4C4 2.11%, #979EA3 97.89%));
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease;
    font-size: 15px;
}

.hero-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(86, 86, 87, 0.35);
    filter: brightness(1.05);
}

.hero-image {
    width: auto;
    height: auto;
    border-radius: 16px;
    width: 435px;
    /* height: 920.104px; */
}

.hero-image-mobile {
    display: none;
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.section3,
.section4,
.section5,
.section6,
.section7,
.section8,
.section9 {
    padding: 4rem 0 5rem;
}

.section-title-xl {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    margin-bottom: 0;
    /* background: var(--Grey-gradient, linear-gradient(177deg, #C4C4C4 2.11%, #979EA3 97.89%)); */
    /* background-clip: text; */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
}

.section-title-lg {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0;
}

.section-title-ml {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.64px;
    text-transform: uppercase;
}

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

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

.text-white {
    color: #ffffff!important;
    /* background-clip: content-box; */
    /* background: white; */
}

.text-grey {
    color: #494949;
}

.text-blue {
    color: #71B9C3;
    /* background: var(--Grey-gradient, linear-gradient(177deg, #C4C4C4 2.11%, #979EA3 97.89%)); */
    /* background-clip: text; */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    color: #DDB9C3;
}

.text-pink {
    color: #DDB9C3;
}

.section1 {
    padding: 4rem 0 3.5rem;
    background: var(--Grey-gradient, linear-gradient(177deg, #C4C4C4 2.11%, #979EA3 97.89%));
}

.section1 .container {
    width: 80%;
    max-width: 960px;
    margin: 0 auto;
}

.section1-inner {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.section1-left {
    flex: 1 1 45%;
}

.section1-right {
    flex: 1 1 55%;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.section1-image {
    width: 100%;
    height: auto;
}

.section1-image-mobile {
    display: none;
    width: 100%;
    height: auto;
}

.section1-headline {
    margin: 0;
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 0.96px;
    text-transform: uppercase;
}

.section1-body {
    color: #494949;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.36px;
}

.section1-body p {
    margin: 0 0 1.5rem;
}

.section1-body p:last-child {
    margin-bottom: 0;
}

.section1-body b {
    font-weight: 700;
}

.section1-middle {
    padding-top: 3rem;
    color: #494949;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.36px;
}

.section1-middle b {
    font-weight: 700;
}

@media (max-width: 900px) {
    .hero-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-title {
        font-size: 36px;
    }

    .section1-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .section1-headline {
        font-size: 26px;
    }

    .section3-block1 {
        flex-direction: column;
        align-items: flex-start;
    }

    .section3-block1-right {
        width: 100%;
    }

    .section3-kicker, .section4-title, .section5-title, .section6-title {
        font-size: 36px!important;
    }
    .section7-title {
        font-size: 26px !important;
        letter-spacing: -1px;
    }

    .section3-block2 {
        grid-template-columns: 1fr;
    }

    .section3-research-row {
        grid-template-columns: 1fr;
    }
}

.section2 {
    padding: 3rem 0 4.5rem;
}

.section2-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.section2-title {
    color: #494949;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.36px;
    text-transform: uppercase;
}

.section2-body {
    color: #494949;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.36px;
}

.section2-body p {
    margin: 0 0 1.5rem;
}

.section2-body p:last-child {
    margin-bottom: 0;
}

.section2-features {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.section2-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section2-feature-icon {
    width: 150px;
    height: 150px;
    margin-bottom: 1rem;
}

.section2-feature-title {
    margin: 0 0 0.75rem;
    text-align: center;
    font-family: Gotham;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.48px;
    text-transform: uppercase;
    background: var(--Grey-gradient, linear-gradient(177deg, #C4C4C4 2.11%, #979EA3 97.89%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section2-feature-body {
    margin: 0;
    color: #494949;
    text-align: center;
    font-family: Gotham;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.36px;
}

.section2-image {
    /* width: 397px; */
    max-width: 100%;
    /* height: auto; */
    align-self: center;
    /* width: 1440px; */
    /* height: 733px; */
    margin-top: -150px;
}

.section2-image-eper {
    width: 960px;
    max-width: 100%;
    height: auto;
    align-self: center;
}

.section2-starred {
    color: #DDB9C3;
    font-size: 18px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0.36px;
}

.section2-details {
    margin-top: 1.5rem;
}

.section2-details summary {
    list-style: none;
    cursor: pointer;
    color: #DDB9C3;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.36px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.section2-details summary::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 200ms ease;
}

.section2-details[open] summary::after {
    transform: translateY(2px) rotate(225deg);
}

.section2-details summary::-webkit-details-marker {
    display: none;
}

.section2-details-content {
    margin-top: 1.5rem;
    overflow: hidden;
    transition: height 250ms ease, opacity 250ms ease;
}

.section3 {
    padding: 2rem 0 5rem;
    background: var(--Grey-gradient, linear-gradient(178deg, #C4C4C4 2.11%, #979EA3 97.89%));
}

.section3-block1 {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    justify-content: space-between;
    margin-bottom: 0;
    overflow: visible;
}

.section3-block1-left {
    flex: 1 1 55%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.section3-block1-right {
    flex: 0 0 47%;
    width: 47%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.section3-atoms {
    width: 100%;
    max-width: 469px;
    height: auto;
    /* margin-top: 1rem; */
}

.section3-atoms-mobile {
    display: none;
    width: min(85%, 320px);
    height: auto;
    margin: 1.5rem auto 0;
}

.section3-kicker {
    margin: 0;
}

.section3-title {
    margin: 0;
}

.section3-accordions {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.section3-accordion {
    border-radius: 20px;
    width: 100%;
    background: var(--Grey-gradient, linear-gradient(177deg, #C4C4C4 2.11%, #979EA3 97.89%));
}

.section3-accordion summary {
    list-style: none;
    cursor: pointer;
    color: #FFF;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.32px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 32px 24px;
}

.section3-accordion summary::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 200ms ease;
    margin-left: auto;
}

.section3-accordion[open] summary::after {
    transform: translateY(2px) rotate(225deg);
}

.section3-accordion summary::-webkit-details-marker {
    display: none;
}

.section3-accordion-content {
    overflow: hidden;
    transition: height 250ms ease, opacity 250ms ease;
}

.section3-accordion-text {
    margin: 0;
    padding: 0 24px 20px;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.32px;
    background: linear-gradient(119deg, #FFF 17.78%, #EED2D4 74.16%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section5-title {/* margin-bottom: -20px; */}

.section3-research-title {margin-bottom: 0;}

.section3-text {
    color: #494949;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.36px;
}

.section3-block2 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
    margin-bottom: 9rem;
    position: relative;
    z-index: 1;
}

.section3-block3 {
    /* margin-top: 3rem; */
}

.section3-card {
    position: relative;
    padding: 2rem 1.5rem 5.5rem;
    border-radius: 20px;
    background: #DDB9C3;
    box-shadow: 4px 7px 5.8px 0 rgba(0, 0, 0, 0.25);
    text-align: center;
    overflow: visible;
}

.section3-card-title {
    color: #494949;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    margin-top: 0;
}

.section3-card-text {
    color: #494949;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.36px;
}

.section3-card-image {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    width: 160px;
    height: auto;
    border-radius: 187px;
}

.section3-research-subtitle {
    margin-top: 3.5rem;
}

.section3-research-row {
    margin-top: 2rem;
    display: grid;
    /* grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); */
    gap: 2rem;
    align-items: start;
}

.section3-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .5em;
}

.section3-list li {
    position: relative;
    padding-left: 2.25rem;
    color: white;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.36px;
}

.section3-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 9px;
    background: #4CAF50;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.section3-details {
    align-self: start;
    width: 100%;
    border-radius: 20px;
    background: #ffffff;
    padding: 12px;
    margin-top: 40px;
}

.section3-details summary {
    list-style: none;
    cursor: pointer;
    color: #494949;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.64px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 0.5rem;
    width: 100%;
}

.section3-details summary::after {
    content: "";
    width: 12px;
    height: 12px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-3px) rotate(45deg);
    transition: transform 200ms ease;
    margin-left: auto;
}

.section3-details[open] summary::after {
    transform: translateY(3px) rotate(225deg);
}

.section3-details summary::-webkit-details-marker {
    display: none;
}

.section3-details-content {
    margin-top: 1rem;
    padding: 0;
    margin-left: 10px;
    overflow: hidden;
    transition: height 250ms ease, opacity 250ms ease;
}

.section3-links {
    list-style: disc;
    padding: 0;
    margin: 0 0 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.section3-links-title {
    color: #494949;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section3-links a {
    color: #71B9C3;
    font-family: Gotham, Arial, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.32px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    text-transform: uppercase;
}

.section3-links a:hover {
    text-decoration-line: underline;
}

.section4 {
    padding: 4rem 0 0rem;
}

.section4-inner {
    text-align: center;
}

.section4-subtitle {
    margin-top: 0.75rem;
}

.section4-accordions {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
    align-items: center;
}

.section4-details {
    border-radius: 20px;
    width: 700px;
    max-width: 100%;
    background: #71B9C3;
}

.section4-details summary {
    list-style: none;
    cursor: pointer;
    color: #ffffff;
    padding: 32px;
    border-radius: 20px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.36px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section4-details summary::after {
    content: "";
    width: 12px;
    height: 12px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-3px) rotate(45deg);
    transition: transform 200ms ease;
    margin-left: auto;
}

.section4-details[open] summary::after {
    transform: translateY(3px) rotate(225deg);
}

.section4-details summary::-webkit-details-marker {
    display: none;
}

.section4-details-content {
    overflow: hidden;
    transition: height 250ms ease, opacity 250ms ease;
}

.section4-details-inner {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 1.5rem;
    padding: 0 32px 32px;
}

.section4-image {
    width: 100%;
    height: auto;
}

.section4-text-title {
    color: #494949;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section4-text-body {
    margin-top: 0.75rem;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.36px;
    text-transform: uppercase;
}

.section5 {
    padding: 4rem 0 0rem;
    text-align: center;
}

.section5-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section5-grid {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.section5-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.section5-item img {
    width: clamp(98px, 6vw, 80px);
    height: auto;
}

.section5-item-text {
    color: #71B9C3;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.36px;
    text-transform: uppercase;
}

.section5-footnote {
    color: #494949;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.36px;
}

.section6 {
    padding: 4rem 0 0rem;
    text-align: center;
}

.section6-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.review-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    align-items: center;
}

.review-card {
    margin-top: 1rem;
    width: 100%;
    max-width: 700px;
    padding: 2rem;
    border-radius: 24px;
    background: #eeeeee;
    border: 2px solid rgb(166 166 166 / 35%);
    text-align: left;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.review-card.is-hidden {
    display: none;
}

.review-load-more {
    margin-top: 0.5rem;
    padding: 12px 28px;
    border-radius: 999px;
    border: none;
    background: var(--Grey-gradient, linear-gradient(177deg, #C4C4C4 2.11%, #979EA3 97.89%));
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.36px;
    text-transform: uppercase;
    cursor: pointer;
}

.review-load-more:hover {
    filter: brightness(1.05);
}

.review-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    justify-content: space-between;
}

.review-name {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.review-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 2px solid rgb(191 191 191 / 90%);
    color: #bababa;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    background: transparent;
}

.review-shield {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: #bababa;
    color: #ffffff;
}

.review-stars {
    margin-top: 0.5rem;
    color: #F2C94C;
    font-size: 28px;
    letter-spacing: 3px;
}

.review-text {
    margin-top: 1rem;
    color: #494949;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.36px;
}

.section7 {
    padding: 4rem 0 0rem;
}

.section7-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section7-title {
    font-size: clamp(24px, 6vw, 48px);
    line-height: 1.1;
    text-wrap: balance;
    /* background: var(--Grey-gradient, linear-gradient(177deg, #C4C4C4 2.11%, #979EA3 97.89%)); */
    /* background-clip: text; */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    margin-top: 0;
}

.section7-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 2rem;
    padding: 2.5rem;
    border-radius: 24px;
}

.section7-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section7-image {
    width: 100%;
    max-width: 380px;
    height: auto;
}

.section7-right {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.section7-desc {
    color: #494949;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.36px;
}

.section7-price {
    color: #494949;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.36px;
}

.section7-deal {
    color: #494949;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.36px;
}

.section7-strike {
    color: #A4A8AD;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration-line: line-through;
    text-transform: uppercase;
}

.section7-now {
    color: #DDB9C3;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.36px;
}

.section7-now b {
    font-size: 38px;
    letter-spacing: 0.76px;
    text-transform: uppercase;
}

.section7-save {
    color: #494949;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.36px;
}

.section7-info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

.section7-info-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #565657;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.26px;
}

.section7-info-row img {
    width: 18px;
    height: auto;
}

.section7-cta {
    align-self: flex-start;
    margin-top: 0.75rem;
}

.section8 {
    padding: 4rem 0 5rem;
}
.section8-title {
    /* padding: 4rem 0 5rem; */
    /* background: var(--Grey-gradient, linear-gradient(177deg, #C4C4C4 2.11%, #979EA3 97.89%)); */
    /* background-clip: text; */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
}

.section8-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-top: 8px solid #b1b4b6;
    padding-top: 1rem;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 18px;
    /* font-weight: 700; */
    letter-spacing: 0.36px;
    text-transform: uppercase;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary img {
    width: 18px;
    height: 18px;
}

.faq-content {
    margin-top: 0.75rem;
    color: #494949;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.36px;
}

.section8-footer {
    color: #494949;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.36px;
}

.section9 {
    padding: 4rem 0 5rem;
    background: urL(img/footerhero.png);
    background-color: #bababa;
    background-size: cover;
}

.section9-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.section9-cta {
    background: var(--Grey-gradient, linear-gradient(177deg, #C4C4C4 2.11%, #979EA3 97.89%));
    color: #ffffff;
    margin-top: 30px;
}

.section9-cta:hover {
    filter: brightness(0.98);
}

.site-footer {
    padding: 3.5rem 0 4rem;
    background: #ffffff;
}

.footer-row1 {
    margin-bottom: 2rem;
}

.footer-logo {
    width: 180px;
    height: auto;
}

.footer-row2 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: start;
}

.footer-text {
    color: #494949;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.32px;
}

.footer-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #494949;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.32px;
    text-decoration: underline;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer-right img {
    width: 28px;
    height: 28px;
}

.table-desktop {
    width: 953px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.table-mobile {
    width: 293px;
    max-width: 100%;
    height: auto;
    display: none;
    margin: 0 auto;
}

.section2-kicker .platinum {font-family: Gotham;font-size: 48px;font-weight: normal;}

@media (max-width: 700px) {
    .table-desktop {
        display: none;
    }

    .table-mobile {
        display: block;
    }
}

@media (max-width: 600px) {
    .section3-atoms {display: none;}
    .section3-atoms-mobile {display: block;}
    .hero {
        padding: 2.5rem 0 3rem;
    }

    .hero-subheader-strong{
        max-width: calc(100% - 80px);
        font-size: 20px;
        margin-top: -20px;
    }

    .section2-kicker {
        margin-top: -30px;
        padding-bottom: 50px;
    }
    .section2-kicker .platinum {fz32;font-size: 35px;}
    .section2-image{top: 30px;max-width: unset;width: calc(100% + 30px);}

    .hero-title {
        font-size: 30px;
        max-width: calc(100% - 160px);
        font-size: 24px;
    }

    .hero-cta {
        width: 100%;
        text-align: center;
    }

    .hero-logo {
        margin: 0 auto;
    }

    .hero-left {
        align-items: left;
        text-align: left;
        display: b;
        /* overflow: hidden; */
        position: relative;
    }

    .hero-right {
        display: none;
    }

    .hero-image-mobile {
        display: block;
        margin: 0 auto;
        transform: rotate(-35deg);
        position: absolute;
        width: 200px;
        right: -60px;
        /* display: none; */
        top: 60px;
    }

    .section1-image {
        display: none;
    }

    .section1-image-mobile {
        display: block;
    }

    .section3-card {
        padding: 1.75rem 1.25rem 5rem;
    }

    .section2-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section3-card-image {
        width: 140px;
    }

    .section3-block2 {
        grid-template-columns: 1fr;
        gap: 6.5rem;
        margin-bottom: 9rem;
    }

    .section3-research-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section4-details-inner {
        grid-template-columns: 1fr;
        text-align: left;
    }

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

    .review-card {
        padding: 1.5rem;
    }

    .section7-card {
        grid-template-columns: 1fr;
        padding: 2rem 0;
    }

    .section7-cta {
        width: 100%;
        text-align: center;
    }

    .section-title-xl {
        font-size: 22px;
    }

    .section-title-lg {
        font-size: 20px;
    }

    .section-title-ml {
        font-size: 24px;
    }

    .footer-row2 {
        grid-template-columns: 1fr;
    }

    .footer-right {
        flex-direction: row;
        justify-content: flex-start;
    }
}

.cc-overlay {
    position: fixed;
    inset: 0;
    background: rgba(86, 86, 87, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.cc-modal {
    background: #ffffff;
    color: #494949;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow: auto;
    border-radius: 16px;
    padding: 32px;
    box-sizing: border-box;
    border: 2px solid #EED2D4;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.cc-title {
    text-align: center;
    text-transform: uppercase;
    font-weight: normal;
    margin: 0 0 32px 0;
    letter-spacing: 1px;
}

.cc-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .cc-options {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cc-option {
    border: 2px solid rgb(178 178 178 / 60%);
    border-radius: 14px;
    padding: 20px;
    cursor: pointer;
    background: rgb(127 127 127 / 12%);
    transition: all 0.2s ease;
}

.cc-option:hover {
    border-color: #71B9C3;
    background: rgba(113, 185, 195, 0.2);
}

.cc-option.active {
    background: #bababa;
    color: #ffffff;
    border-color: #bababa;
}

.cc-option-title {
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 16px;
    background: #fff;
    color: #494949;
    font-weight: bold;
}

.cc-option.active .cc-option-title {
    background: #565657;
    color: #ffffff;
}

.cc-option ul {
    margin: 0;
    padding-left: 18px;
    font-size: 14px;
}

.cc-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 768px) {
    .cc-buttons {
        flex-direction: row;
        justify-content: space-between;
    }
}

.cc-button {
    padding: 12px 16px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    background: var(--Grey-gradient, linear-gradient(177deg, #C4C4C4 2.11%, #979EA3 97.89%));
    color: #ffffff;
}

.cc-secondary {
    background: var(--Grey-gradient, linear-gradient(177deg, #C4C4C4 2.11%, #979EA3 97.89%));
    color: #ffffff;
}

.cc-primary {
    background: var(--Grey-gradient, linear-gradient(177deg, #C4C4C4 2.11%, #979EA3 97.89%));
    color: #ffffff;
}

.cc-primary:hover,
.cc-secondary:hover {
    opacity: 0.85;
}

@media (max-width: 767px) {
    .cc-modal {
        padding: 20px;
        border-radius: 12px;
    }

    .cc-title {
        margin: 0 0 16px 0;
        letter-spacing: 0.5px;
        font-size: 18px;
    }

    .cc-options {
        gap: 12px;
        margin-bottom: 16px;
    }

    .cc-option {
        padding: 14px;
    }

    .cc-option-title {
        padding: 8px;
        margin-bottom: 10px;
        font-size: 12px;
    }

    .cc-option ul {
        font-size: 13px;
    }

    .cc-buttons {
        gap: 8px;
    }

    .cc-button {
        padding: 10px 12px;
        font-size: 14px;
    }
}
