:root {
    --Neutral-900: hsl(194, 78%, 11%);
    --Neutral-700: hsl(195, 23%, 28%);
    --Neutral-200: #E6E1DF;
    --Neutral-100: hsl(17, 41%, 97%);
    --Neutral-0: hsl(0, 0%, 100%);
    --LightS-500: hsl(22, 99%, 72%);
    --LightS-100: hsl(22, 100%, 91%);
    --LightS-50: hsl(23, 100%, 97%);
    --G: linear-gradient(90deg, #FFE2D1, #FFF5EF);
    --htext: linear-gradient(90deg, #FEA36F 0%, #062630 30%);
}

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

body {
    font-family: 'Inter', Martian Mono, monospace, sans-serif;
    background-color: var(--Neutral-100);
    color: var(--Neutral-900);
    overflow-x: hidden;
}

/*LAYOUT*/
.container {
    width: 100%;
    padding: 30px 20px;
}

section {
    margin-bottom: 50px;
}

/*HERO*/
.logot {
    margin-bottom: 30px;
    margin-left: 30px;
}

.hero {
    position: relative;
    overflow: hidden;
    max-width: 1100px;
    margin-left: 60px;
    padding: 48px 40px 56px;
    border-radius: 10px;
    background: linear-gradient(90deg, #f6efe9, #e8f1f4)
}

.hero-img {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.patt {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.bg {
    position: absolute;
    right: -10%;
    top: -20%;
    width: 60%;
    opacity: 0.8;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
    padding: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 4.2rem;
    background: var(--htext);
    background-clip: text;
    -webkit-background-clip: text;

    color: transparent;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: var(--Neutral-900);
    margin-bottom: 20px;
    justify-content: justify;
    text-align: left;
    word-spacing: 0%;
    line-height: 1.5rem;
    font-size: 16px;
}

.cta-button {
    padding: 12px 20px;
    border-radius: 8px;
    border: 2px solid var(--Neutral-900);
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s ease;
    background: var(--LightS-50);
}

.cta-button a {
    text-decoration: none;
    color: var(--Neutral-900);
    outline: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    background: var(--G);
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 40px;
}

.rating {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    margin-top: 35px;
}

.test-img {
    display: block;
    margin-top: 20px;
}

.stars svg {
    fill: #f5c518;
}

.rating p {
    font-size: 14px;
}

.hero-image {
    position: relative;
    display: inline-block;
    margin-left: 80px;
    margin-right: -30px;
}

.hero-image img:first-child {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    width: 95%;
}

/*FEATURE SECTION*/
.features {
    max-width: 1100px;
    margin-left: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 60px;
}

.feature-img {
    margin-left: 60px;
}

.feature-img img {
    width: 80%;
}

.feature-content {
    padding: 30px;
    border-radius: 20px;
    border: none;
    margin-left: -60px;
}

.feature-content h1 {
    font-size: 3.2rem;
    margin-top: 20px;
    line-height: 4rem;
    margin-bottom: 25px;
}

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

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 20px;
    color: #4a5a5c;
}

.icon {
    color: #12343b;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid;
    font-size: 14px;
    flex-shrink: 0;
}

/*ABOUT*/
.about {
    max-width: 1100px;
    margin-left: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 60px;
}

.headline {
    font-size: 60px;
    font-weight: 700;
    color: var(--Neutral-900);
    line-height: 1.1;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
}

.path {
    position: relative;
    display: inline-block;
}

.path img {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 140%;
    height: auto;
    z-index: -1;
    pointer-events: none;
}

.path {
    z-index: 1;
}

.about-img {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    margin-left: 50px;
}

.main-img {
    width: 80%;
    display: block;
    border-radius: 20px;
}

.icons-img {
    position: absolute;
    left: -40px;
    bottom: 40px;
    width: 90px;
    height: auto;
}

/*JOURNEY*/
.journey {
    position: relative;
    overflow: hidden;
    max-width: 1100px;
    margin-left: 60px;
    padding: 48px 40px 56px;
    border-radius: 10px;
    background: linear-gradient(90deg, #f6efe9, #e8f1f4);
}

.journey h1 {
    text-align: center;
    font-size: 36px;
    line-height: 1.15;
    margin: 0 0 56px;
    letter-spacing: -0.02em;
}

.steps,
.step,
.arrow {
    position: relative;
    z-index: 2;
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-left: -25px;
}

.step {
    width: 180px;
    text-align: center;
    flex-shrink: 0;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 2px solid #0f2a2e;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    background: #ffffff;
}

.step p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.arrow {
    width: 120px;
    height: 40px;
    margin-top: 6px;
    flex-shrink: 0;
}

.journey-image {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.pattern {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.glow {
    position: absolute;
    right: -10%;
    top: -20%;
    width: 60%;
    opacity: 0.8;
}

/*MEMBERSHIP*/
.membership {
    position: relative;
    max-width: 1100px;
    margin: 0 40px;
    padding: 56px 40px 64px;
    border-radius: 12px;
    overflow: hidden;
}

.membership h2 {
    text-align: center;
    font-size: 36px;
    margin: 0 0 48px;
    letter-spacing: -0.02em;
}

.plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.plan {
    background: #ffffff;
    border-radius: 8px;
    padding: 24px 22px 26px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.plan-featured {
    background: linear-gradient(90deg, #f6efe9, #e8f1f4);
    border-radius: 8px;
    padding: 24px 22px 26px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.plan h3 {
    margin: 0 0 8px;
    font-size: 16px;
}

.price {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.price span {
    font-size: 13px;
    font-weight: 500;
    color: #5c6f73;
}

.divider {
    width: 100%;
    height: 1px;
    color: var(--Neutral-900);
    background-color: #d9d9d9;
    margin: 30px 0;
}

.feature {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.feature li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 8px;
}

.feature li::before {
    content: "✓";
    display: inline-flex;
    width: 16px;
    height: 16px;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    border: 1.5px solid #0f2a2e;
    border-radius: 3px;
}

.plan button {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 2px solid var(--Neutral-900);
    background: var(--LightS-50);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.plan button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    background: var(--LightS-100);
}

.plan-featured button {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 2px solid var(--Neutral-900);
    background: var(--LightS-50);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.plan-featured button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    background: var(--LightS-100);
}

.plan-featured h3 {
    margin: 0 0 8px;
    font-size: 16px;
}

/*TESTIMONIAL*/
.testimonial {
    padding: 50px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial blockquote {
    font-size: 28px;
    line-height: 1.6;
    margin: 0 0 16px;
    color: var(--Neutral-900);
    font-weight: 900;
}

.testimonial cite {
    font-size: 14px;
    color: var(--Neutral-700);
    font-style: normal;
}

.star svg {
    fill: #f5c518;
}

/*CTA*/
.cta {
    position: relative;
    padding: 80px 40px;
    text-align: center;
    color: #ffffff;
    background: var(--Neutral-900);
    overflow: hidden;
    margin-bottom: -20px;
    border-radius: 15px 15px 0px 0px;
}

.cta h2 {
    font-size: 36px;
    line-height: 1.2;
    margin: 0 0 28px;
    letter-spacing: -0.02em;
}

.cta button {
    background: transparent;
    border: 2px solid var(--Neutral-200);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    gap: 8px;
    margin-top: 20px;
}

.cta button a {
    text-decoration: none;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    border: none;
    outline: none;
}

.cta button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    background: var(--Neutral-700);
}

.social-proofs {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    opacity: 0.9;
}

.cta-rate {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    margin-top: 15px;
}

.starred svg {
    fill: #f5c518;
}

.cta-rate p {
    font-size: 14px;
}

.avatars img {
    margin-left: -8px;
}

.cta-divider {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 48px;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
}

.cta footer {
    position: absolute;
    bottom: 16px;
    left: 40px;
    font-size: 11px;
    opacity: 0.6;
}

.cta .icons {
    position: absolute;
    bottom: 16px;
    right: 40px;
    display: flex;
    gap: 12px;
    opacity: 0.8;

}

.icons:hover {
    opacity: 2;
    color: gray;
}

/*Focus*/
.plan button,
.plan-featured button,
.cta-button,
.cta button {
    position: relative;
}

.plan button:focus,
.plan-featured button:focus,
.cta-button:focus {
    outline: none;
}

.cta button:focus {
    outline: none;
}

.plan button::after,
.plan-featured button::after,
.cta-button::after {
    content: "";
    position: absolute;
    inset: 4px;
    border: 2.5px solid var(--Neutral-900);
    border-radius: 3px;
    fill: var(--LightS-50);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.cta button::after {
    content: "";
    position: absolute;
    inset: 4px;
    fill: var(--LightS-50);
    border: 2.5px solid var(--LightS-100);
    border-radius: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.plan button:focus-visible::after,
.plan-featured button:focus-visible::after,
.cta-button:focus-visible::after {
    opacity: 1;
}

.cta button:focus-visible::after {
    opacity: 1;
}

/*TABLET (≤1024px)*/
@media (max-width: 1024px) {

    .hero,
    .features,
    .about,
    .journey {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        padding: 40px 24px;
    }

    section {
        margin-bottom: 60px;
    }

    /* HERO */
    .hero {
        margin-bottom: -60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero h1 {
        font-size: 4rem;
        line-height: 3.8rem;
    }

    .hero p {
        font-size: 24px;
        word-spacing: 2px;
        line-height: 2.5rem;
        margin-bottom: 30px;
    }

    .cta-button {
        padding: 12px 30px;
        margin-bottom: 15px;
    }

    .cta-button a {
        font-weight: 900;
    }

    .hero-image {
        margin: 0;
        text-align: center;
    }

    .hero-image img {
        width: 100%;
    }

    .avatar img {
        width: 150px;
    }

    /* FEATURES */
    .features {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: -50px;
    }

    .feature-img {
        order: 1;
        margin-left: 0;
        text-align: center;
    }

    .feature-img img {
        width: 100%;
    }

    .feature-content {
        margin-left: 0;
        padding: 0;
        order: -1;
    }

    .feature-content h1 {
        font-size: 5.8rem;
        line-height: 4.8rem;
        margin-bottom: 60px;
    }

    .feature-list {
        margin-left: 0;
        padding: 0;
    }

    .feature-list span {
        gap: 12px;
        margin-left: 10px;
    }

    .feature-list img,
    .feature-list p {
        font-size: 26px
    }

    /* ABOUT */
    .about {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-left: 0;
        margin-bottom: -20px;
    }

    .headline {
        font-size: 90px;
    }

    .about-content p {
        font-size: 24px;
    }

    .about-img {
        margin-left: 0;
        text-align: center;
    }

    .main-img {
        width: 100%;
        margin: 0 auto;
    }

    .icons-img {
        position: absolute;
        left: 750px;
        bottom: 50px;
        width: 120px;
        height: auto;
    }

    /* JOURNEY */
    .journey {
        margin-left: 0;
        padding: 32px 20px;
    }

    .journey h1 {
        text-align: left;
        font-size: 75px;
        font-weight: 900;
    }

    .steps {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        margin-left: 0;
        gap: 24px;
    }

    .step {
        width: 100%;
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 16px;
    }

    .step p {
        flex: 1;
        min-width: 0;
        font-size: 20px;
    }

    .arrow {
        display: none;
    }

    /* MEMBERSHIP */
    .membership {
        margin-left: 0;
        padding: 40px 24px;
    }

    .membership h2 {
        text-align: left;
        font-size: 70px;
    }

    .plans {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .plan,
    .plan-featured {
        width: 100%;
    }

    .plan h3 {
        font-size: 40px;
    }

    .plan button {
        padding: 18px 6px;
        font-size: 20px;
        font-weight: 700;
    }

    .plan-featured h3 {
        font-size: 40px;
    }

    .plan-featured button {
        padding: 18px 6px;
        font-size: 20px;
        font-weight: 700;
    }

    .price {
        font-size: 35px;
    }

    .feature {
        margin-bottom: 20px;
    }

    .feature li {
        font-size: 30px;
        font-weight: 700;
    }

    /* TESTIMONIAL */
    .testimonial {
        margin-left: 0;
        padding: 40px 24px;
        text-align: left;
    }

    .star {
        text-align: left;
        margin-bottom: 15px;
    }

    .testimonial blockquote {
        font-size: 40px;
        text-align: left;
    }

    .testimonial cite {
        text-align: left;
        font-size: 30px;
        margin-bottom: 20px;
    }

    /* CTA */
    .cta h2 {
        font-size: 60px;
    }

    .cta button {
        font-size: 30px
    }

    .avatars img {
        margin-left: -30px;
        width: 200px;
        height: auto;
    }

    .cta-rate p {
        font-size: 25px;
    }

    .cta footer {
        font-size: 20px;
    }
}

/*Tablet (≤900px)*/
@media (max-width: 900px) {

    .hero,
    .features,
    .about,
    .journey {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        padding: 40px 24px;
    }

    section {
        margin-bottom: 60px;
    }

    /* HERO */
    .logot {
        width: 300px;
        margin-left: 0;
    }

    .hero {
        margin-bottom: -60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero h1 {
        font-size: 4rem;
        line-height: 3.8rem;
        margin-left: 0;
    }

    .hero p {
        font-size: 24px;
        word-spacing: 2px;
        line-height: 2.5rem;
        margin-bottom: 30px;
    }

    .cta-button {
        padding: 12px 30px;
        margin-bottom: 15px;
    }

    .cta-button a {
        font-weight: 900;
    }

    .hero-image {
        margin: 0;
        text-align: center;
    }

    .hero-image img {
        width: 100%;
    }

    .avatar img {
        width: 150px;
    }

    /* FEATURES */
    .features {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: -50px;
    }

    .feature-img {
        order: 1;
        margin-left: 0;
        text-align: center;
    }

    .feature-img img {
        width: 100%;
    }

    .feature-content {
        margin-left: 0;
        padding: 0;
        order: -1;
    }

    .feature-content h1 {
        font-size: 4.5rem;
        line-height: 4.8rem;
        margin-bottom: 40px;
    }

    .feature-list {
        margin-left: 0;
        padding: 0;
    }

    .feature-list span {
        gap: 12px;
        margin-left: 10px;
    }

    .feature-list img,
    .feature-list p {
        font-size: 26px
    }

    /* ABOUT */
    .about {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-left: 0;
        margin-bottom: 40px;
    }

    .headline {
        font-size: 70px;
    }

    .about-content p {
        font-size: 24px;
    }

    .about-img {
        margin-left: 0;
        text-align: center;
    }

    .main-img {
        width: 100%;
        margin: 0 auto;
    }

    .icons-img {
        position: absolute;
        left: 600px;
        bottom: 50px;
        width: 100px;
        height: auto;
    }

    /* JOURNEY */
    .journey {
        margin-left: 0;
        padding: 32px 20px;
    }

    .journey h1 {
        text-align: left;
        font-size: 75px;
        font-weight: 900;
    }

    .steps {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        margin-left: 0;
        gap: 24px;
    }

    .step {
        width: 100%;
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 16px;
    }

    .step p {
        flex: 1;
        min-width: 0;
        font-size: 20px;
    }

    .arrow {
        display: none;
    }

    /* MEMBERSHIP */
    .membership {
        margin-left: 0;
        padding: 40px 24px;
    }

    .membership h2 {
        text-align: left;
        font-size: 70px;
    }

    .plans {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .plan,
    .plan-featured {
        width: 100%;
    }

    .plan h3 {
        font-size: 40px;
    }

    .plan button {
        padding: 18px 6px;
        font-size: 20px;
        font-weight: 700;
    }

    .plan-featured h3 {
        font-size: 40px;
    }

    .plan-featured button {
        padding: 18px 6px;
        font-size: 20px;
        font-weight: 700;
    }

    .price {
        font-size: 35px;
    }

    .feature {
        margin-bottom: 20px;
    }

    .feature li {
        font-size: 30px;
        font-weight: 700;
    }

    /* TESTIMONIAL */
    .testimonial {
        margin-left: 0;
        padding: 40px 24px;
        text-align: left;
    }

    .star {
        text-align: left;
        margin-bottom: 15px;
    }

    .testimonial blockquote {
        font-size: 35px;
        text-align: left;
    }

    .testimonial cite {
        text-align: left;
        font-size: 25px;
        margin-bottom: 20px;
    }

    /* CTA */
    .cta h2 {
        font-size: 50px;
        margin-top: -20px;
    }

    .cta button {
        font-size: 20px
    }

    .avatars img {
        margin-left: -30px;
        width: 150px;
        height: auto;
    }

    .cta-rate p {
        font-size: 20px;
    }

    .cta footer {
        font-size: 15px;
    }
}

/*MOBILE (≤768px)*/
@media (max-width: 768px) {
.hero,
    .features,
    .about,
    .journey {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        padding: 40px 24px;
    }

    section {
        margin-bottom: 60px;
    }

    /* HERO */
    .logot {
        width: 300px;
        margin-left: 0;
    }

    .hero {
        margin-bottom: -60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero h1 {
        font-size: 4rem;
        line-height: 3.8rem;
        margin-left: 0;
    }

    .hero p {
        font-size: 24px;
        word-spacing: 2px;
        line-height: 2.5rem;
        margin-bottom: 30px;
    }

    .cta-button {
        padding: 12px 30px;
        margin-bottom: 15px;
    }

    .cta-button a {
        font-weight: 900;
    }

    .hero-image {
        margin: 0;
        text-align: center;
    }

    .hero-image img {
        width: 100%;
    }

    .avatar img {
        width: 150px;
    }

    /* FEATURES */
    .features {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: -50px;
    }

    .feature-img {
        order: 1;
        margin-left: 0;
        text-align: center;
    }

    .feature-img img {
        width: 100%;
    }

    .feature-content {
        margin-left: 0;
        padding: 0;
        order: -1;
    }

    .feature-content h1 {
        font-size: 4.5rem;
        line-height: 4.8rem;
        margin-bottom: 40px;
    }

    .feature-list {
        margin-left: 0;
        padding: 0;
    }

    .feature-list span {
        gap: 12px;
        margin-left: 10px;
    }

    .feature-list img {
        font-size: 35px
    }

    .feature-list p {
        font-size: 40px
    }

    /* ABOUT */
    .about {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-left: 0;
        margin-bottom: 40px;
    }

    .headline {
        font-size: 70px;
    }

    .about-content p {
        font-size: 24px;
    }

    .about-img {
        margin-left: 0;
        text-align: center;
    }

    .main-img {
        width: 100%;
        margin: 0 auto;
    }

    .icons-img {
        position: absolute;
        left: 500px;
        bottom: 50px;
        width: 100px;
        height: auto;
    }

    /* JOURNEY */
    .journey {
        margin-left: 0;
        padding: 32px 20px;
    }

    .journey h1 {
        text-align: left;
        font-size: 60px;
        font-weight: 900;
    }

    .steps {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        margin-left: 0;
        gap: 24px;
    }

    .step {
        width: 100%;
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 16px;
    }

    .step p {
        flex: 1;
        min-width: 0;
        font-size: 20px;
    }

    .arrow {
        display: none;
    }

    /* MEMBERSHIP */
    .membership {
        margin-left: 0;
        padding: 40px 24px;
    }

    .membership h2 {
        text-align: left;
        font-size: 50px;
    }

    .plans {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .plan,
    .plan-featured {
        width: 100%;
    }

    .plan h3 {
        font-size: 40px;
    }

    .plan button {
        padding: 18px 6px;
        font-size: 20px;
        font-weight: 700;
    }

    .plan-featured h3 {
        font-size: 40px;
    }

    .plan-featured button {
        padding: 18px 6px;
        font-size: 20px;
        font-weight: 700;
    }

    .price {
        font-size: 35px;
    }

    .feature {
        margin-bottom: 20px;
    }

    .feature li {
        font-size: 30px;
        font-weight: 700;
    }

    /* TESTIMONIAL */
    .testimonial {
        margin-left: 0;
        padding: 40px 24px;
        text-align: left;
    }

    .star {
        text-align: left;
        margin-bottom: 15px;
    }

    .testimonial blockquote {
        font-size: 35px;
        text-align: left;
    }

    .testimonial cite {
        text-align: left;
        font-size: 25px;
        margin-bottom: 20px;
    }

    /* CTA */
    .cta h2 {
        font-size: 50px;
        margin-top: -20px;
    }

    .cta button {
        font-size: 20px
    }

    .avatars img {
        margin-left: -30px;
        width: 150px;
        height: auto;
    }

    .cta-rate p {
        font-size: 20px;
    }

    .cta footer {
        font-size: 15px;
    }
}

/* MOBILE (≤480px) */
@media (max-width: 480px) {
    /* GLOBAL */
    body {
        overflow-x: hidden;
    }

    .container {
        padding: 20px 16px;
        overflow-x: hidden;
    }

    .hero,
    .features,
    .about,
    .journey {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        padding: 40px 24px;
    }

    section {
        margin-bottom: 60px;
    }

    /* HERO */
    .hero {
        margin-bottom: -60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .logot {
        width: 250px;
        margin-left: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 3rem;
    }

    .hero p {
        font-size: 18px;
        word-spacing: 2px;
        line-height: 2rem;
        margin-bottom: 30px;
        text-align: justify;
    }

    .cta-button {
        padding: 10px 10px;
        margin-bottom: 15px;
    }

    .cta-button a {
        font-weight: 900;
        display: inline-flex;
        align-items: center;
    }

    .hero-image {
        margin: 0;
        text-align: center;
    }

    .hero-image img {
        width: 100%;
    }

    .social-proof {
        justify-content: left;
        margin-left: 0;
        gap: 10px;
    }

    .avatar img {
        margin-top: -90px;
        width: 100px;
    }

    .rating {
        margin-top: 20px;
    }

    .stars {
        justify-content: left;
        gap: 2px;
    }

    .rating p {
        font-size: 16px;
    }

    /* FEATURES */
    .features {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: -50px;
        margin-top: -30px;
        margin-left: 0;
    }

    .feature-img {
        order: 1;
        margin-left: 0;
        text-align: center;
    }

    .feature-img img {
        width: 90%;
    }

    .feature-content {
        margin-left: 0;
        padding: 0;
        order: -1;
    }

    .feature-content h1 {
        font-size: 2.5rem;
        line-height: 2.8rem;
        margin-bottom: 60px;
    }

    .feature-list {
        margin-top: -20px;
        margin-left: 0;
        padding: 0;
    }

    .feature-list span {
        gap: 12px;
        margin-left: 8px;
    }

    .feature-list img,
    .feature-list p {
        font-size: 20px
    }

    /* ABOUT */
    .about {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-left: 0;
        margin-bottom: -20px;
    }

    .headline {
        font-size: 40px;
        margin-top: -30px;
    }

    .about-content p {
        font-size: 24px;
    }

    .about-img {
        margin-left: 0;
        text-align: center;
    }

    .main-img {
        width: 100%;
        margin: 0 auto;
    }

    .icons-img {
        display: none;
        position: absolute;
        left: 600px;
        bottom: 50px;
        width: 100px;
        height: auto;
    }

    /* JOURNEY */
    .journey {
        margin-left: 0;
        padding: 32px 20px;
    }

    .journey h1 {
        text-align: left;
        font-size: 40px;
        font-weight: 900;
    }

    .steps {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        margin-left: 0;
        gap: 24px;
    }

    .step {
        width: 100%;
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 16px;
    }

    .step p {
        flex: 1;
        min-width: 0;
        font-size: 20px;
    }

    .arrow {
        display: none;
    }

    /* MEMBERSHIP */
    .membership {
        margin-left: 0;
        padding: 40px 24px;
        margin-top: -60px;
    }

    .membership h2 {
        text-align: left;
        font-size: 35px;
    }

    .plans {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .plan,
    .plan-featured {
        width: 90%;
    }

    .plan h3 {
        font-size: 30px;
    }

    .plan button {
        padding: 16px 6px;
        font-size: 20px;
        font-weight: 700;
    }

    .plan-featured h3 {
        font-size: 30px;
    }

    .plan-featured button {
        padding: 16px 6px;
        font-size: 20px;
        font-weight: 700;
    }

    .price {
        font-size: 30px;
    }

    .feature {
        margin-bottom: 30px;
    }

    .feature li {
        font-size: 25px;
        font-weight: 700;
    }

    /* TESTIMONIAL */
    .testimonial {
        margin-left: 0;
        padding: 40px 24px;
        text-align: left;
    }

    .star {
        text-align: left;
        margin-bottom: 15px;
    }

    .testimonial blockquote {
        font-size: 25px;
        text-align: left;
    }

    .testimonial cite {
        text-align: left;
        font-size: 20px;
        margin-bottom: 20px;
    }

    /* CTA */
    .cta h2 {
        font-size: 30px;
    }

    .cta button {
        font-size: 20px
    }

    .avatars img {
        margin-left: 0px;
        width: 150px;
        height: auto;
    }

    .cta-rate p {
        font-size: 16px;
    }

    .cta footer {
        font-size: 14px;
    }
}

/* MOBILE (≤360px) */
@media (max-width: 375px) {
    /* GLOBAL */
    body {
        overflow-x: hidden;
    }

    .container {
        padding: 20px 16px;
        overflow-x: hidden;
    }

    .hero,
    .features,
    .about,
    .journey {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        padding: 40px 24px;
    }

    section {
        margin-bottom: 60px;
    }

    /* HERO */
    .hero {
        margin-bottom: -60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .logot {
        width: 200px;
        margin-left: 0;
        margin-bottom: -5px;
    }

    .hero h1 {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .hero p {
        font-size: 15px;
        line-height: 1.5rem;
        margin-bottom: 30px;
    }

    .cta-button {
        padding: 10px 10px;
        margin-bottom: 15px;
        font-size: 10px;
    }

    .cta-button a {
        font-weight: 900;
        display: inline-flex;
        align-items: center;
        font-size: 10px;
    }

    .cta-button a svg {
        width: 12px;
        height: 12px;
    }

    .hero-image {
        margin: 0;
        text-align: center;
    }

    .hero-image img {
        width: 100%;
    }

    .social-proof {
        justify-content: left;
        margin-left: 0;
        gap: 10px;
    }

    .avatar img {
        margin-top: -90px;
        width: 100%;
    }

    .rating {
        margin-top: 10px;
    }

    .stars {
        /* justify-content: left; */
        gap: 2px;
    }

    .stars svg {
        width: 16px;
        height: 16px;
    }

    .rating p {
        font-size: 12px;
    }

    /* FEATURES */
    .features {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: -50px;
        margin-top: -30px;
        margin-left: 0;
    }

    .feature-img {
        order: 1;
        margin-left: 0;
        text-align: center;
    }

    .feature-img img {
        width: 100%;
    }

    .feature-content {
        margin-left: 0;
        padding: 0;
        order: -1;
    }

    .feature-content h1 {
        font-size: 2rem;
        line-height: 2.5rem;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .feature-list {
        margin-top: -20px;
        margin-left: 0;
        padding: 0;
    }

    .feature-list span {
        gap: 12px;
        margin-left: 8px;
    }

    .feature-list svg {
        width: 20px;
        height: 20px;
    }

    .icon {
        font-size: 14px;
    }

    /* ABOUT */
    .about {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-left: 0;
        margin-bottom: -20px;
    }

    .headline {
        font-size: 30px;
        margin-top: -30px;
    }

    .about-content p {
        font-size: 16px;
    }

    .about-img {
        margin-left: 0;
        text-align: center;
    }

    .main-img {
        width: 100%;
        margin: 0 auto;
    }

    .icons-img {
        display: none;
        position: absolute;
        left: 600px;
        bottom: 50px;
        width: 100px;
        height: auto;
    }

    /* JOURNEY */
    .journey {
        margin-left: 0;
        padding: 32px 20px;
    }

    .journey h1 {
        text-align: left;
        font-size: 35px;
        font-weight: 900;
    }

    .steps {
        display: grid;
        align-items: stretch;
        justify-content: flex-start;
        margin-left: 0;
        gap: 24px;
    }

    .step {
        width: 100%;
        grid-template-columns: 1fr;
        align-items: flex-start;
        text-align: left;
        gap: 16px;
    }

    .step p {
        flex: 1;
        display: block;
        min-width: 0;
        font-size: 16px;
    }

    .arrow {
        display: none;
    }

    /* MEMBERSHIP */
    .membership {
        margin-left: 0;
        padding: 40px 24px;
        margin-top: -60px;
    }

    .membership h2 {
        text-align: left;
        font-size: 30px;
    }

    .plans {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .plan,
    .plan-featured {
        width: 100%;
        height: auto;
    }

    .plan h3 {
        font-size: 20px;
    }

    .plan button {
        padding: 16px 6px;
        font-size: 14px;
        font-weight: 700;
    }

    .plan-featured h3 {
        font-size: 20px;
    }

    .plan-featured button {
        padding: 16px 6px;
        font-size: 14px;
        font-weight: 700;
    }

    .price {
        font-size: 20px;
    }

    .feature {
        margin-bottom: 20px;
    }

    .feature li {
        font-size: 16px;
        font-weight: 700;
    }

    /* TESTIMONIAL */
    .testimonial {
        margin-left: 0;
        padding: 40px 24px;
        text-align: left;
    }

    .star {
        text-align: left;
        margin-bottom: 15px;
    }

    .testimonial blockquote {
        font-size: 18px;
        text-align: left;
    }

    .testimonial cite {
        text-align: left;
        font-size: 14px;
        margin-bottom: 20px;
    }

    /* CTA */
    .cta h2 {
        font-size: 20px;
    }

    .cta button a {
        font-size: 14px;
    }

    .cta button a svg {
        width: 16px;
        height: 16px;
    }

    .avatars img {
        margin-left: 0px;
        width: 90px;
        height: auto;
    }

    .cta-rate p {
        font-size: 13px;
    }

    .cta-rate .starred svg {
        width: 16px;
        height: 16px;
    }

    .social-proofs {
        margin-top: 5px;
    }

    .cta footer {
        font-size: 10px;
    }

    .icons svg {
        width: 16px;
        height: 16px;
    }
}