@import url('https://fonts.googleapis.com/css2?family=Black+Han+Sans&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap&family=Exo+2:ital,wght@0,100..900;1,100..900&family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-color: #040D12;
    --secondary-color: #183D3D;
    --tertiary-color: rgba(92, 131, 116, 0.5);
    --accent-color: #93B1A6;
    --white-color: #FFFFFF;
    --action-color: #00C49A;
    --font-inter: 'Inter', sans-serif;
    --font-exo2: 'Exo 2', sans-serif;
    --font-merriweather: 'Merriweather Sans', sans-serif;
    --font-poppins: 'Poppins', sans-serif;
    --font-raleway: 'Raleway', sans-serif;
    --font-nunito: 'Nunito', sans-serif;
    --font-roboto: 'Roboto', sans-serif;
    --font-hansans: "Black Han Sans", sans-serif;
    --total-lines: 5;
    --left-offset: 1.75rem;
    --clip-height: 2rem;
    --line-height: 1.85rem;
}

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

html {
    scroll-behavior: smooth;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

body {
    font-family: var(--font-inter);
    background-color: Black;
    color: var(--white-color);
    line-height: 1.6;
    overflow: hidden;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(to right, rgba(79, 79, 79, 0.25) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(79, 79, 79, 0.25) 1px, transparent 1px);
    background-size: 54px 54px;
}

body::selection {
    background: var(--secondary-color);
    color: var(--accent-color);
}

.scrollable-content::-webkit-scrollbar {
    width: 8px;
}

.scrollable-content::-webkit-scrollbar-track {
    background: var(--secondary-color);
    border-radius: 10px;
}

.scrollable-content::-webkit-scrollbar-thumb {
    background-color: var(--accent-color);
    border-radius: 10px;
    border: 2px solid var(--secondary-color);
}

.scrollable-content::-webkit-scrollbar-thumb:hover {
    background-color: #bde4c1;
}

/***Main************************************************************************************************/

.lifey-intro {
    height: 100vh;
    margin: 0;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: var(--primary-color);
}

.lifey-title {
    color: var(--accent-color);
    font-family: var(--font-hansans);
    font-size: 7.5vw;
    font-weight: 400;
    letter-spacing: 0.5vw;
}

.lifey-slogan {
    font-family: var(--font-poppins);
    font-weight: 600;
}

.lifey-paragraph {
    margin-top: 1rem;
    margin-bottom: -4rem;
}

.scrollable-content {
    padding: 0 !important;
    overflow-x: hidden;
}

.features-section {
    position: relative;
    display: grid;
    color: white;
    width: 100%;
    height: auto;
    min-height: 100vh;
}

.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.sticky-text {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10rem;
}

.features-grid {
    display: grid;
    gap: 0.5rem;
    padding: 30vh 0;
}

.phone-words {
    display: none;
}

.Words {
    margin: 0 auto 5rem 0;
    font-family: var(--font-nunito);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -2px;
    text-transform: uppercase;
    list-style: none;
    transform: translate3d(0, 0, 0);
    -webkit-font-smoothing: antialiased;
    -webkit-font-kerning: normal;
    -webkit-text-size-adjust: 100%;
    user-select: none;
    -webkit-user-drag: none;
}

.Words-line {
    height: var(--clip-height);
    overflow: hidden;
    position: relative;
}

.Words-line:nth-child(odd) {
    transform: skew(60deg, -30deg) scaleY(0.66667);
}

.Words-line:nth-child(even) {
    transform: skew(0deg, -30deg) scaleY(1.33333);
}

.Words-line:nth-child(1) {
    left: calc(var(--left-offset) * 1);
}

.Words-line:nth-child(2) {
    left: calc(var(--left-offset) * 2);
}

.Words-line:nth-child(3) {
    left: calc(var(--left-offset) * 3);
}

.Words-line:nth-child(4) {
    left: calc(var(--left-offset) * 4);
}

.Words-line:nth-child(5) {
    left: calc(var(--left-offset) * 5);
}

.Words-line:nth-child(6) {
    left: calc(var(--left-offset) * 6);
}

.Words-line:nth-child(7) {
    left: calc(var(--left-offset) * 7);
}

li > p {
    height: var(--clip-height);
    line-height: var(--line-height);
    padding: 0 10px;
    margin: 0;
    transition: all 0.4s ease-in-out;
    transform: translate3d(0, 0, 0);
    vertical-align: top;
    white-space: nowrap;
}

.Words:hover p {
    transform: translate3d(0, calc(-1 * var(--clip-height)), 0);
}

.features-card {
    background: #183d3d;
    background: -webkit-linear-gradient(135deg, rgba(24, 61, 61, 0.35) 0%, rgba(4, 13, 18, 0.35) 90%);
    background: linear-gradient(135deg, rgba(24, 61, 61, 0.35) 0%, rgba(4, 13, 18, 0.35) 90%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.5s ease;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(4, 1fr);
    opacity: 1;
    margin-bottom: 30vh;
    transform: scale(0.8);
    height: fit-content;
    font-family: var(--font-roboto);
}

.card-title {
    font-family: var(--font-poppins);
    font-size: 1.75rem;
    font-weight: 800;
    padding: 0;
    align-content: center;
    grid-column: span 4 / span 4;
    transition: all 0.3s ease;
}

.features-card:hover .card-title {
    transform: scale(1.1);
    margin-left: 1.5rem;
}

.features-card:last-child {
    margin-bottom: 15vh;
}

.image-div {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-items: center;
}

.features-card img {
    display: inline;
    transition: transform 0.3s ease;
    margin: 0;
    padding: 0;
}

.features-card:hover img {
    transform: scale(1.1);
}

.features-card h5 {
    height: fit-content;
    padding-left: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    justify-items: center;
    align-items: center;
    gap: 2vw;
}

.features-card h5::before {
    content: '';
    background: #FFFFFF;
    min-width: 0.5rem;
    min-height: 0.5rem;
    border-radius: 0.25rem;
    display: inline-flex;
    align-content: center;
    justify-content: center;
}

.d1 {
    grid-column: span 5 / span 5;
    grid-row-start: 2;
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-items: flex-start;
}

.d2 {
    grid-column: span 5 / span 5;
    grid-row-start: 3;
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-items: flex-start;
}

.d3 {
    grid-column: span 5 / span 5;
    grid-row-start: 4;
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-items: flex-start;
}

.card-2 {
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 1fr);
}

/***Pricing***********************************************************************************************/

.price-wrapper {
    position: relative;
}

.grid-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background-image: linear-gradient(to right, #4f4f4f2e 1px, transparent 1px),
    linear-gradient(to bottom, #4f4f4f2e 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: radial-gradient(ellipse 45% 20% at 50% 0%, #000 35%, transparent 100%);
    z-index: 0;
}

.price-t-s {
    background-color: var(--primary-color);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 110vh;

}

.price-d {
    display: flex;
    justify-items: center;
    align-items: flex-start;
    padding-top: 15vh;
    flex-direction: column;
    position: relative;
    height: 100%;
    z-index: 1;
}

.price-down-arrow {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    justify-items: center;
    width: 100%;
    padding-top: 5vh;
}

.price-down-arrow svg {
    transform: rotate(90deg);
    fill: #FFFFFF;
    width: 10rem;
}

.price-title {
    font-family: var(--font-raleway);
    font-weight: 900;
    font-size: 8vw;
    display: flex;
    justify-content: center;
    width: 100%;
}

.pricing-s {
    background-color: #0A1F1F;
    position: sticky;
    top: 0;
    z-index: 2;
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
    overflow: hidden;
    width: 100%;
    height: 150vh;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(6, 1fr);
    padding: 4rem 3rem;
}

.pricing-d {
    grid-column: span 6 / span 6;
    display: flex;
    justify-content: center;
    align-content: center;
}

.pricing-title {
    font-family: var(--font-raleway);
    font-size: 3.2rem;
    font-weight: 900;
    color: #b2b2b2;
    text-align: justify;
    text-justify: inter-word;
}

.pricing-cards {
    margin: 4rem 2rem 3rem 2rem;
    border-radius: 1rem;
    background-color: #0f1716;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(9, 1fr);
    padding: 1.5rem 1.5rem 1rem;
}

.p-c-d-title {
    display: flex;
    flex-direction: column;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    grid-row: span 3 / span 3;
    height: fit-content;
}

.p-c-title {
    display: flex;
    justify-content: left;
    align-content: center;
    font-family: var(--font-nunito);
    font-weight: 1000;
    font-size: 2.5rem;
}

.p-c-desc {
    display: flex;
    justify-content: left;
    align-content: center;
    font-family: var(--font-poppins);
    font-size: 1.15rem;
    font-weight: 300;
    color: #bebebe;
}

.p-v-d-features {
    grid-row: span 5 / span 5;
    grid-row-start: 4;
}

.features-list {
    font-family: var(--font-roboto);
    font-weight: 450;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.p-c-d-btn {
    grid-row-start: 9;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
    height: fit-content;
    padding: 0 1rem;
}

.p-c-offer {
    display: flex;
    justify-content: left;
    align-content: center;
    font-family: var(--font-poppins);
    font-size: 1rem;
    font-weight: 300;
    color: #bebebe;
}

.p-c-b-preorder {
    position: relative;
    grid-column: span 5 / span 5;
    grid-row: span 3 / span 3;
    grid-row-start: 2;
    min-height: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 1rem 2.25rem;
    border: 4px solid;
    border-color: transparent;
    font-size: 1.1rem;
    background-color: inherit;
    border-radius: 5rem;
    font-weight: 600;
    color: #58b463;
    box-shadow: 0 0 0 2px #58b463;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.p-c-b-preorder svg {
    position: absolute;
    width: 24px;
    fill: #58b463;
    z-index: 9;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.p-c-b-preorder .arr-1 {
    right: 16px;
}

.p-c-b-preorder .arr-2 {
    left: -25%;
}

.p-c-b-preorder .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: #58b463;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.p-c-b-preorder .pre-order-t {
    position: relative;
    z-index: 1;
    transform: translateX(-12px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.p-c-b-preorder:hover {
    box-shadow: 0 0 0 12px transparent;
    color: #0f1716;
    border-radius: 12px;
}

.p-c-b-preorder:hover .arr-1 {
    right: -25%;
}

.p-c-b-preorder:hover .arr-2 {
    left: 16px;
}

.p-c-b-preorder:hover .pre-order-t {
    transform: translateX(12px);
    color: #0f1716;
}

.p-c-b-preorder:hover svg {
    fill: #0f1716;
}

.p-c-b-preorder:active {
    scale: 0.95;
    box-shadow: 0 0 0 4px #58b463;
}

.p-c-b-preorder:hover .circle {
    width: 100%;
    height: 100%;
    border-radius: 0.75rem;
    opacity: 1;
}

.pro-desc {
    font-size: 1.1rem;
}

.pro-f-list {
    margin-bottom: 1.25rem;
}

.pro-d-features {
    padding-top: 1.5rem;
}

.prop-d-features {
    padding-top: 1.5rem;
}


.recommended-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #58b463;
    border: none;
    color: #0f1716;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.4rem 0.75rem;
    border-top-right-radius: 0.6rem;
    border-bottom-left-radius: 0.5rem;
    font-family: var(--font-poppins);
    z-index: 1000;
}


.pc1 {
    grid-column: span 2 / span 2;
    grid-row: span 5 / span 5;
    grid-row-start: 2;
}

.pc2 {
    grid-column: span 2 / span 2;
    grid-row: span 5 / span 5;
    grid-column-start: 3;
    grid-row-start: 2;
    position: relative;
    border: 0.25rem solid #58b463;
    -webkit-box-shadow: 0 0 2rem 0.4rem #58b463;
    -moz-box-shadow: 0 0 2rem 0.4rem #58b463;
    box-shadow: 0 0 2rem -0.4rem #58b463;
}

.pc3 {
    grid-column: span 2 / span 2;
    grid-row: span 5 / span 5;
    grid-column-start: 5;
    grid-row-start: 2;
}

/***Footer************************************************************************************************/

.footer {
    background: transparent;
    border-top: 1px solid rgba(147, 177, 166, 0.2);
    padding: 2rem 0 2rem 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(24, 61, 61, 0.3) 0%, black 50%),
    radial-gradient(circle at 80% 20%, rgba(24, 61, 29, 0.3) 0%, black 50%);
    pointer-events: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 2;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    font-family: var(--font-exo2);
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.footer-description {
    font-family: var(--font-poppins);
    font-size: 1rem;
    line-height: 1.6;
    color: #b0b0b0;
    max-width: 350px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(147, 177, 166, 0.1);
    border: 1px solid rgba(147, 177, 166, 0.2);
    border-radius: 50%;
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(147, 177, 166, 0.3);
}

.footer-column h4 {
    font-family: var(--font-merriweather);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    font-family: var(--font-poppins);
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 5px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.newsletter-input {
    padding: 12px 16px;
    background: rgba(24, 61, 61, 0.3);
    border: 1px solid rgba(147, 177, 166, 0.3);
    border-radius: 8px;
    color: var(--white-color);
    font-family: var(--font-poppins);
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(147, 177, 166, 0.2);
}

.newsletter-input::placeholder {
    color: #888;
}

.newsletter-btn {
    cursor: pointer;
    font-size: 1rem;
    aspect-ratio: 1/0.25;
    color: var(--white-color);
    background: var(--secondary-color);
    background-size: cover;
    background-blend-mode: overlay;
    border: none;
    transition: all 0.3s ease-in-out;
    position: relative;
    font-family: var(--font-merriweather);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    user-select: none;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    height: 3rem;
}

.newsletter-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 1em 0.45em rgba(0, 0, 0, 0.1);
    background: radial-gradient(circle at bottom, #151515 15%, var(--secondary-color) 70%);
    outline: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(147, 177, 166, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-family: var(--font-poppins);
    color: #888;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-legal a {
    font-family: var(--font-poppins);
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--accent-color);
}

.features-card,
.lifey-text {
    will-change: transform, opacity;
}

.scrollable-content {
    scroll-behavior: smooth;
}

@media (max-width: 450px) {

    .lifey-intro {
        padding: 1.5vh 2vw;
    }

    .lifey-title {
        font-size: 22.5vw;
        letter-spacing: 0;
    }

    .lifey-slogan {
        font-size: 6vw !important;
        font-weight: 700;
        padding: 0 !important;
        margin-top: 4vh !important;
    }

    .lifey-intro > p {
        font-size: 4vw !important;
        margin-top: 3vh !important;
        padding: 0 !important;
        width: 100%;
    }

    .two-col-grid {
        display: flex;
        flex-direction: column;
    }

    .sticky-text {
        position: relative;
        margin: 0;
        align-items: center;
        align-content: center;
        justify-items: center;
        justify-content: center;
        height: 100vh;
    }

    .features-grid {
        padding: 0 7.5vw;
    }

    .Words {
        display: none;
    }

    .phone-words {
        display: flex;
        flex-direction: column;
        align-content: flex-start;
        padding: 8vh 0;
        justify-content: center;
        font-family: var(--font-nunito);
        font-size: 6vw;
        font-weight: 900;
        text-align: center;
        line-height: 5vh;
    }

    .phone-words span {
        font-family: var(--font-nunito);
        font-size: 7vw;
        font-weight: 900;
        color: var(--accent-color);
        padding-bottom: 2vh;
    }

    .features-card {
        border-radius: 7%;
        padding: 6vw 5vw;
        margin-bottom: 15vh;
        transform: scale(1);
        grid-row-gap: 2vh;
    }

    .card-title {
        font-size: 5vw;
        transition: none;
        padding-left: 3vw;
    }

    .card1-title {
        font-size: 4.5vw;
    }

    .card3-title {
        font-size: 7vw;
    }

    .card-4 {
        grid-template-columns: repeat(5, 1fr);
        grid-template-rows: repeat(3, 1fr) 1.5fr;
    }

    .card4-title {
        font-size: 7vw;
    }

    .card-4 .d3 {
        grid-area: 4 / 1 / 5 / 6;
    }

    .features-card:hover .card-title {
        transform: none;
        margin-left: 0;
    }

    .features-card:hover img {
        transform: none;
    }

    .features-card h5 {
        font-size: 4.5vw !important;
        font-width: 500;
    }

    .price-t-s {
        height: 102vh;
    }

    .price-d {
        height: 60vh;
        display: flex;
        justify-items: center;
        align-items: flex-start;
        padding-top: 15vh;
        flex-direction: column;
    }

    .price-title {
        font-size: 12.5vw;
        justify-items: center;
        justify-content: center;
    }

    .pricing-s {
        height: fit-content;
        display: flex;
        justify-items: center;
        padding: 4vh 0;
        flex-direction: column;
    }

    .pricing-title {
        text-align: left;
        text-justify: auto;
        font-size: 11vw;
        padding: 0 3vw;
    }

    .pricing-cards {
        min-height: 60vh;
        max-height: 60vh;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 2fr 1fr;
        display: flex;
        flex-direction: column;
    }

    .p-v-d-features {
        padding-top: 3vh;
        flex-grow: 6;
    }

    .p-c-d-btn {
        height: 10%;
        display: flex;
        flex-grow: 2;
    }

    .p-c-b-preorder{
        width: 100%;
        height: 50%;
    }
}

@media (max-width: 850px) and (min-width: 451px) {
    .lifey-title {
        font-size: 12.5vw;
    }

    .lifey-intro {
        padding: 1.5vh 2vw;
    }

    .lifey-intro > h2 {
        font-size: 5vw;
        padding-top: 5vh !important;
    }

    .lifey-intro > p {
        font-size: 3.5vw !important;
        margin-top: 4vh !important;
        width: 100%;
        line-height: 4vh;
    }

    .two-col-grid {
        display: flex;
        flex-direction: column;
    }

    .sticky-text {
        position: relative;
        margin: 0;
        align-items: center;
        align-content: center;
        justify-items: center;
        justify-content: center;
        height: 100vh;
    }

    .features-grid {
        padding: 0 7.5vw;
    }

    .Words {
        display: none;
    }

    .phone-words {
        display: flex;
        flex-direction: column;
        align-content: flex-start;
        padding: 8vh 0;
        justify-content: center;
        font-family: var(--font-nunito);
        font-size: 6vw;
        font-weight: 900;
        text-align: center;
        line-height: 6vh;
    }

    .phone-words span {
        font-family: var(--font-nunito);
        font-size: 7vw;
        font-weight: 900;
        color: var(--accent-color);
        padding-bottom: 2vh;
    }

    .features-card {
        border-radius: 7%;
        padding: 6vw 5vw;
        margin-bottom: 15vh;
        transform: scale(1);
        grid-row-gap: 2vh;
    }

    .card-title {
        font-size: 5vw;
        transition: none;
        padding-left: 3vw;
    }

    .card1-title {
        font-size: 4.5vw;
    }

    .card3-title {
        font-size: 7vw;
    }

    .card-4 {
        grid-template-columns: repeat(5, 1fr);
        grid-template-rows: repeat(3, 1fr) 1.5fr;
    }

    .card4-title {
        font-size: 7vw;
    }

    .card-4 .d3 {
        grid-area: 4 / 1 / 5 / 6;
    }

    .features-card:hover .card-title {
        transform: none;
        margin-left: 0;
    }

    .features-card:hover img {
        transform: none;
    }

    .features-card h5 {
        font-size: 4.5vw !important;
        font-width: 500;
    }

    .price-t-s {
        height: 102vh;
    }

    .price-d {
        height: 60vh;
        display: flex;
        justify-items: center;
        align-items: flex-start;
        padding-top: 15vh;
        flex-direction: column;
    }

    .price-title {
        font-size: 12.5vw;
        justify-items: center;
        justify-content: center;
    }

    .pricing-s {
        height: fit-content;
        display: flex;
        justify-items: center;
        padding: 4vh 0.5vw;
        flex-direction: column;
    }

    .pricing-title {
        text-align: left;
        text-justify: auto;
        font-size: 11vw;
        padding: 0 3vw;
    }

    .pricing-cards {
        min-height: 75vh;
        max-width: 75vh;
        margin-right: 7vw;
        margin-left: 7vh;
        display: flex;
        flex-direction: column;
    }


    .p-c-d-title h4 {
        font-size: 7.5vw !important;
    }

    .p-c-d-title h6 {
        font-size: 3.75vw !important;
    }

    .features-list {
        font-size: 4.5vw !important;
    }

    .p-v-d-features {
        padding-top: 3vh;
    }

    .p-c-b-preorder svg {
        width: 10%;
    }

    .p-v-d-features {
        padding-top: 3vh;
        flex-grow: 6;
    }

    .p-c-d-btn {
        display: flex;
        flex-grow: 2;
    }

    .p-c-b-preorder{
        width: 100%;
        height: 100% !important;
        font-size: 3.3vw;
    }
}

@media (max-width: 1024px) and (min-width: 851px) and (orientation: portrait) {

    .lifey-title {
        font-size: 12.5vw;
    }

    .lifey-intro {
        padding: 1.5vh 2vw;
    }

    .lifey-intro > h2 {
        font-size: 5vw;
        padding-top: 5vh !important;
    }

    .lifey-intro > p {
        font-size: 3.5vw;
        margin-top: 4vh !important;
        max-width: 100% !important;
        width: 100% !important;
        line-height: 4vh;
    }

    .two-col-grid {
        display: flex;
        flex-direction: column;
    }

    .sticky-text {
        position: relative;
        margin: 0;
        align-items: center;
        align-content: center;
        justify-items: center;
        justify-content: center;
        height: 100vh;
    }

    .features-grid {
        padding: 0 7.5vw;
    }

    .Words {
        display: none;
    }

    .phone-words {
        display: flex;
        flex-direction: column;
        align-content: flex-start;
        padding: 8vh 0;
        justify-content: center;
        font-family: var(--font-nunito);
        font-size: 6vw;
        font-weight: 900;
        text-align: center;
        line-height: 6vh;
    }

    .phone-words span {
        font-family: var(--font-nunito);
        font-size: 7vw;
        font-weight: 900;
        color: var(--accent-color);
        padding-bottom: 2vh;
    }

    .features-card {
        border-radius: 7%;
        padding: 6vw 5vw;
        margin-bottom: 15vh;
        transform: scale(1);
        grid-row-gap: 2vh;
    }

    .card-title {
        font-size: 5vw;
        transition: none;
        padding-left: 3vw;
    }

    .card1-title {
        font-size: 4.5vw;
    }

    .card3-title {
        font-size: 7vw;
    }

    .card-4 {
        grid-template-columns: repeat(5, 1fr);
        grid-template-rows: repeat(3, 1fr) 1.5fr;
    }

    .card4-title {
        font-size: 7vw;
    }

    .card-4 .d3 {
        grid-area: 4 / 1 / 5 / 6;
    }

    .features-card:hover .card-title {
        transform: none;
        margin-left: 0;
    }

    .features-card:hover img {
        transform: none;
    }

    .features-card h5 {
        font-size: 4.5vw !important;
        font-width: 500;
    }

    .price-t-s {
        height: 102vh;
    }

    .price-d {
        height: 60vh;
        display: flex;
        justify-items: center;
        align-items: flex-start;
        padding-top: 15vh;
        flex-direction: column;
    }

    .price-title {
        font-size: 12.5vw;
        justify-items: center;
        justify-content: center;
    }

    .pricing-s {
        height: fit-content;
        display: flex;
        justify-items: center;
        padding: 4vh 0.5vw;
        flex-direction: column;
    }

    .pricing-title {
        text-align: left;
        text-justify: auto;
        font-size: 11vw;
        padding: 0 3vw;
    }

    .pricing-cards {
        padding: 2vh 4vw;
        border-radius: 2rem;
        height: 75vh;
        min-height: 75vh;
        max-width: 75vh;
        margin-right: 7vw;
        margin-left: 7vh;
        display: flex;
        flex-direction: column;
    }

    .recommended-badge{
        font-size: 2vh;
        border-top-right-radius: 1.2rem;
        border-bottom-left-radius: 1rem;
    }

    .p-c-d-title {
        grid-area: 1 / 1 / 2 / 2;
    }

    .p-c-d-title h4 {
        font-size: 7.5vw !important;
    }

    .p-c-d-title h6 {
        font-size: 3.75vw !important;
    }

    .features-list {
        font-size: 4.5vw !important;
    }

    .p-c-d-btn {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .p-c-b-preorder {
        width: 100%;
        height: 9.5vh;
        font-size: 3.3vw;
    }

    .p-c-b-preorder svg {
        width: 10%;
    }
    .p-v-d-features {
        padding-top: 3vh;
        flex-grow: 6;
    }

    .p-c-d-btn {
        display: flex;
        flex-grow: 2;
    }

    .p-c-b-preorder{
        font-size: 3.3vw;
    }
}

@media (min-width: 1025px) and (min-height: 800px) {
    .pricing-cards {
        height: 700px;
    }

    .pricing-s {
        height: 120vh;
    }
}

@media (max-width: 450px) and (max-height: 800px){
    .pricing-cards{
        min-height: 70vh;
        height: fit-content;
    }
}