.hero-section {
    text-align: center;
    position: relative;
    flex-direction: column;
    min-height: 100vh;
}

.hero-section .glow {
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    filter: blur(50px);
    background: var(--primary-color);
    box-shadow:
        0 0 250px var(--primary-color),
        0 0 250px var(--primary-color),
        0 0 191.52px var(--primary-color),
        0 0 54.72px var(--primary-color),
        0 0 27.36px var(--primary-color);
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

.hero-section img {
    width: 300px;
    height: auto;
    z-index: 2;
}

.hero-section .group {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    z-index: 2;
}

.hero-section .group .section-heading {
    font-size: clamp(1.7rem, 3vw + 0.5rem, 4rem);
    font-weight: 800;
}

.hero-section .group .scrolldown {
    position: relative;
    padding: 5px 10px;
    height: 40px;
    cursor: pointer;
    border: 2px solid var(--text-color);
    border-radius: 999px;
    background-color: transparent;
}

.hero-section .group .scrolldown .circle {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 11px;
    border-radius: 999px;
    background-color: var(--text-color);
    animation: scrolldown 2s infinite;
    user-select: none;
    pointer-events: none;
}

@keyframes scrolldown {
    from {
        transform: translateX(-50%) translateY(0);
    }

    to {
        transform: translateX(-50%) translateY(15px);
    }
}

.transition-wrapper {
    position: relative;
    overflow: hidden;
}

.transition-wrapper .explanation-section,
.transition-wrapper .result-section {
    position: absolute;
    inset: 0;
}

.transition-wrapper .explanation-section {
    text-align: center;
    position: relative;
    flex-direction: column;
    min-height: 100vh;
    z-index: 2;
    overflow: hidden;
}

.transition-wrapper .explanation-section .section-heading {
    position: relative;
    font-size: clamp(2.3rem, 6vw, 6rem);
    z-index: 2;
}

.transition-wrapper .explanation-section .section-heading .img-span {
    position: relative;
    width: 0;
    height: 110px;
    border-radius: 5px;
    overflow: hidden;
}

.transition-wrapper .explanation-section .text-section {
    text-align: center;
    position: absolute;
    flex-direction: column;
    gap: 50px;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    color: var(--bg-color);
    background-color: var(--text-color);
    clip-path: circle(0% at 50% 50%); 
    will-change: clip-path;
    z-index: 3;
    overflow: hidden;
}

.transition-wrapper .explanation-section .text-section > * {
    z-index: 2;
}

.transition-wrapper .explanation-section .text-section h2 {
    font-size: clamp(1.6rem, 6vw, 3rem);
    font-weight: 400;
    color: var(--bg-color);
}

.transition-wrapper .explanation-section .text-section h2 span {
    font-weight: 800;
}

.transition-wrapper .explanation-section .text-section p {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    color: var(--bg-color);
}

.transition-wrapper .explanation-section .text-section .transition-text {
    position: absolute;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    font-size: clamp(3rem, 5vw, 10rem);
    font-weight: 800;
    color: var(--bg-color);
}

.transition-wrapper .result-section {
    text-align: center;
    flex-direction: column;
    padding: 80px 0;
    min-height: 100vh;
    background-color: var(--primary-color);
    opacity: 0;
    z-index: 4;
    overflow: hidden;
}

.transition-wrapper .result-section > * {
    z-index: 2;
}

.transition-wrapper .result-section h2 {
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 800;
    color: var(--bg-color);
}

.transition-wrapper .result-section .svg-text-wrapper {
    position: relative;
    margin: 0  auto;
    width: 100%;
    overflow: visible;
}

.transition-wrapper .result-section .svg-text-wrapper svg {
    height: 100%;
    overflow: visible;
}

.transition-wrapper .result-section .svg-text-wrapper svg .svg-curved-text {
    letter-spacing: 1px;
    color: var(--bg-color);
}

.transition-wrapper .result-section .trail-image {
    position: absolute;
    transform: translate(-50%, -50%) scale(0);
    width: 220px;
    height: 220px;
    border-radius: 36px;
    opacity: 20%;
    object-fit: contain;
    pointer-events: none;
    z-index: 1;
}

.reason-section {
    text-align: center;
    flex-direction: column;
    gap: 30px;
    min-height: 100vh !important;
    height: max-content !important;
}

.reason-section .cards {
    flex-direction: column;
    gap: 50px;
    width: 100%;
    height: 40%;
}

.reason-section .cards .card {
    text-align: right;
    flex-direction: column;
    gap: 25px;
    padding: 30px;
    width: 300px;
    height: 250px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: .5s ease;
}

.reason-section .cards .card:hover {
    transform: translateY(5px);
}

.reason-section .cards .card .icon-container {
    padding: 10px;
    width: 50px;
    height: 50px;
    border-radius: 999px;
    color: var(--bg-color);
    background-color: var(--primary-color);
}

.reason-section .cards .card .icon-container svg {
    width: 100%;
    height: 100%;
}

.reason-section .cards .card .text-group {
    flex-direction: column;
    gap: 5px;
    color: var(--text-color);
}

.reason-section .cards .card .text-group h3,
.reason-section .cards .card .text-group p {
    margin: 0;
}

.reason-section .cards .card .text-group h3 {
    font-size: clamp(2rem ,2vw, 2.3rem);
    font-weight: 800;
}

.reason-section .cards .card .text-group p {
    font-size: clamp(0.8rem, 2vw, 1rem);
    font-weight: 400;
}

.reason-section p.section-heading {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.about-section {
    position: relative;
}

.about-section .container {
    text-align: center;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 30px;
    width: 100%;
    border-radius: 36px;
    background-color: #1d2841;
    z-index: 2;
}

.about-section .container .image-container {
    position: relative;
}

.about-section .container .image-container img {
    width: 300px;
    height: auto;
}

.about-section .container .image-container h2 {
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    font-size: clamp(1.5rem, 3vw, 3rem);
    width: 51%;
    font-weight: 400;
    color: var(--text-color);
}

.about-section .container .image-container h2 span {
    font-weight: 800;
}

.about-section .container h3 {
    width: 100%;
    font-size: clamp(1.1rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--text-color);
}

.about-section .glow {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    filter: blur(50px);
    background: var(--primary-color);
    box-shadow:
        0 0 250px var(--primary-color),
        0 0 250px var(--primary-color),
        0 0 191.52px var(--primary-color),
        0 0 54.72px var(--primary-color),
        0 0 27.36px var(--primary-color);
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

.process-section {
    flex-direction: column;
    gap: 50px;
    min-height: 100vh;
    overflow: hidden;
}

.process-section .steps {
    align-items: center;
    width: max-content;
    height: 100%;
}

.process-section .steps .step {
    align-items: center;
    flex: 0 0 100vw;
    gap: 50px;
    height: 100%;
}

.process-section .steps .step .number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    -webkit-text-stroke: 2px var(--primary-color);
    color: transparent;
    user-select: none;
    pointer-events: none;
}

.process-section .steps .step .number.desktop {
    display: none;
}

.process-section .steps .step .text-group {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    color: var(--text-color);
}

.process-section .steps .step .text-group .group {
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.process-section .steps .step .text-group h3 {
    align-items: center;
    gap: 10px;
    font-size: 3rem;
    font-weight: 800;
}

.process-section .steps .step .text-group p {
    width: 80%;
    font-size: 1.2rem;
    font-weight: 400;
}

.process-section .steps .step .text-group p span {
    font-weight: 800;
    color: var(--primary-color);
}

@media (min-width: 1225px) {
    .about-section .container {
        text-align: right;
        flex-direction: row;
        padding: 80px;
    }

    .about-section .container .image-container img {
        width: 500px;
        height: auto;
    }
    
    .about-section .container .image-container h2 {
        width: 80%;
    }

    .about-section .container h3 {
        width: 60%;
    }
}

@media (min-width: 768px) {
    .hero-section .glow {
        top: 50px;
        width: 368px;
        height: 368px;
        filter: blur(150px);
    }

    .hero-section img {
        width: 450px;
    }

    .hero-section .group .section-heading {
        font-size: 2.5rem;
    }

    .process-section .steps .step .number {
        -webkit-text-stroke: 5px var(--primary-color);
    }

    .process-section .steps .step .number.desktop {
        display: block;
        font-size: 10rem;
    }

    .process-section .steps .step .number.mobile {
        display: none;
    }

    .process-section .steps .step .text-group p {
        width: 50%;
    }
}

@media (min-width: 1024px) {
    .hero-section img {
        width: min(35vw, 500px);
    }

    .hero-section .group .section-heading {
        font-size: clamp(1.7rem, 3vw + 0.5rem, 4rem);
    }

    .reason-section {
        gap: 50px;
    }

    .reason-section .cards {
        flex-direction: row;
    }

    .reason-section .cards .card {
        width: 350px;
        height: 300px;
    }

    .process-section .steps .step .number.desktop {
        font-size: 20rem;
    }
}