:root {
    --sx-maroon: #7a0c13;
    --sx-maroon-dark: #250306;
    --sx-gold: #d4a017;
    --sx-bg: #f8f9fc;
    --sx-ink: #15161f;
    --sx-muted: #6e7483;
    --sx-white: #ffffff;
    --sx-shadow: 0 24px 70px rgba(33, 20, 22, .14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--sx-bg);
    color: var(--sx-ink);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.section-pad {
    padding: 110px 0;
}

.bg-soft {
    background:
        radial-gradient(circle at 15% 0%, rgba(212, 160, 23, .12), transparent 30%),
        var(--sx-bg);
}

.softx-navbar {
    padding: 18px 0;
    transition: all .28s ease;
    background: rgba(37, 3, 6, .18);
    backdrop-filter: blur(18px);
}

.softx-navbar.is-scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 14px 35px rgba(35, 3, 6, .1);
}

.softx-navbar .navbar-brand {
    color: #fff;
    font-weight: 800;
    letter-spacing: .2px;
}

.softx-navbar.is-scrolled .navbar-brand,
.softx-navbar.is-scrolled .nav-link {
    color: var(--sx-ink);
}

.softx-navbar .navbar-brand img {
    border-radius: 14px;
    object-fit: contain;
}

.softx-navbar .nav-link {
    color: rgba(255, 255, 255, .82);
    font-weight: 650;
    margin: 0 3px;
}

.softx-navbar .nav-link:hover {
    color: var(--sx-gold);
}

.navbar-toggler {
    border: 0;
    box-shadow: none !important;
    background: rgba(255, 255, 255, .8);
}

.btn {
    border-radius: 999px;
    font-weight: 800;
    padding: 12px 22px;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, #f5c84e, var(--sx-gold));
    color: #2a070a;
    border: 0;
    box-shadow: 0 14px 34px rgba(212, 160, 23, .35);
}

.btn-gold:hover {
    color: #1d0305;
    box-shadow: 0 18px 46px rgba(212, 160, 23, .45);
}

.btn-soft {
    background: rgba(122, 12, 19, .08);
    color: var(--sx-maroon);
}

.btn-login-nav {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .54);
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(12px);
}

.btn-login-nav:hover {
    color: #210507;
    border-color: var(--sx-gold);
    background: rgba(255, 255, 255, .88);
}

.softx-navbar.is-scrolled .btn-login-nav {
    color: var(--sx-maroon);
    border-color: rgba(122, 12, 19, .18);
    background: rgba(122, 12, 19, .06);
}

.softx-navbar.is-scrolled .btn-login-nav:hover {
    color: #210507;
    border-color: var(--sx-gold);
    background: rgba(212, 160, 23, .18);
}

.hero-section {
    background:
        radial-gradient(circle at 16% 28%, rgba(212, 160, 23, .2), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(255, 255, 255, .12), transparent 24%),
        linear-gradient(120deg, rgba(37, 3, 6, .98), rgba(122, 12, 19, .93) 45%, rgba(12, 10, 18, .98));
    color: #fff;
}

.particles-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: .55;
}

.hero-orbit {
    position: absolute;
    border-radius: 999px;
    filter: blur(10px);
    pointer-events: none;
}

.hero-orbit-one {
    width: 360px;
    height: 360px;
    right: -90px;
    top: 110px;
    background: radial-gradient(circle, rgba(212, 160, 23, .2), transparent 62%);
    animation: float 7s ease-in-out infinite;
}

.hero-orbit-two {
    width: 260px;
    height: 260px;
    left: 4%;
    bottom: 8%;
    background: radial-gradient(circle, rgba(255, 255, 255, .12), transparent 65%);
    animation: float 8s ease-in-out infinite reverse;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sx-gold);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.eyebrow::before,
.section-kicker::before {
    content: "";
    width: 32px;
    height: 2px;
    border-radius: 999px;
    background: var(--sx-gold);
}

.hero-title {
    line-height: .98;
    letter-spacing: 0;
    margin-bottom: 24px;
}

.hero-copy {
    color: rgba(255, 255, 255, .76);
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 680px;
    margin-bottom: 34px;
}

.hero-visual {
    min-height: 560px;
    position: relative;
}

.glass-panel {
    background: linear-gradient(145deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .08));
    border: 1px solid rgba(255, 255, 255, .24);
    backdrop-filter: blur(22px);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .32);
}

.command-panel {
    position: absolute;
    inset: 58px 34px auto auto;
    width: min(470px, 92%);
    border-radius: 28px;
    padding: 26px;
    transform: rotate(-2deg);
}

.panel-top {
    display: flex;
    gap: 8px;
    margin-bottom: 26px;
}

.panel-top span {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .34);
}

.mini-chart {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .12);
}

.mini-chart i {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    color: #220508;
    background: var(--sx-gold);
    font-size: 1.55rem;
}

.mini-chart strong,
.mini-chart small {
    display: block;
}

.mini-chart small {
    color: rgba(255, 255, 255, .68);
    margin-top: 4px;
}

.progress-row {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, .84);
    margin: 22px 0 8px;
    font-size: .92rem;
}

.progress {
    height: 10px;
    background: rgba(255, 255, 255, .14);
    border-radius: 999px;
}

.progress-bar {
    width: 92%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--sx-gold), #fff1a7);
    animation: fillBar 1.5s ease both;
}

.progress-second .progress-bar {
    width: 85%;
}

.floating-stat {
    position: absolute;
    display: flex;
    flex-direction: column;
    min-width: 166px;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .92);
    color: var(--sx-ink);
    box-shadow: 0 24px 50px rgba(0, 0, 0, .22);
    animation: float 5.5s ease-in-out infinite;
}

.floating-stat strong {
    color: var(--sx-maroon);
    font-size: 1.65rem;
    line-height: 1;
}

.floating-stat span {
    color: var(--sx-muted);
    font-size: .86rem;
    margin-top: 5px;
}

.stat-one { left: 0; top: 62px; }
.stat-two { right: 0; bottom: 80px; animation-delay: .8s; }
.stat-three { left: 34px; bottom: 172px; animation-delay: 1.2s; }
.stat-four { right: 92px; top: 318px; animation-delay: 1.7s; }

.section-heading {
    max-width: 760px;
    margin-bottom: 58px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.35rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0;
    color: var(--sx-ink);
    margin-bottom: 18px;
}

.section-text {
    color: var(--sx-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.showcase-section {
    position: relative;
    background:
        radial-gradient(circle at 80% 20%, rgba(122, 12, 19, .13), transparent 30%),
        linear-gradient(180deg, #fff, #fbf7ec 52%, var(--sx-bg));
}

.animated-blob {
    position: absolute;
    border-radius: 999px;
    filter: blur(16px);
    opacity: .42;
    animation: morph 9s ease-in-out infinite;
}

.blob-one {
    width: 330px;
    height: 330px;
    top: 90px;
    right: 8%;
    background: rgba(212, 160, 23, .28);
}

.blob-two {
    width: 260px;
    height: 260px;
    left: 7%;
    bottom: 40px;
    background: rgba(122, 12, 19, .18);
    animation-delay: 1s;
}

.showcase-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.showcase-pills span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 10px 14px;
    background: #fff;
    color: var(--sx-maroon);
    font-weight: 800;
    box-shadow: 0 12px 32px rgba(32, 25, 22, .08);
}

.device-stage {
    min-height: 560px;
    position: relative;
}

.device-glow {
    position: absolute;
    inset: 12% 8%;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(212, 160, 23, .35), rgba(122, 12, 19, .18), transparent 68%);
    filter: blur(25px);
}

.laptop-mockup {
    position: absolute;
    right: 0;
    top: 50px;
    width: min(680px, 100%);
    border-radius: 28px 28px 16px 16px;
    padding: 18px 18px 0;
    background: linear-gradient(145deg, #231316, #070608);
    box-shadow: 0 44px 90px rgba(37, 3, 6, .28);
}

.laptop-camera {
    width: 7px;
    height: 7px;
    margin: 0 auto 10px;
    border-radius: 999px;
    background: #555;
}

.laptop-screen {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 14px;
    background: #fff;
}

.laptop-screen img,
.tablet-mockup img,
.phone-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left top;
    display: block;
}

.laptop-base {
    width: 108%;
    height: 28px;
    margin-left: -4%;
    border-radius: 0 0 34px 34px;
    background: linear-gradient(180deg, #d7d8df, #94969f);
    box-shadow: 0 18px 34px rgba(0, 0, 0, .22);
}

.tablet-mockup,
.phone-mockup {
    position: absolute;
    overflow: hidden;
    background: #101014;
    border: 10px solid #101014;
    box-shadow: 0 24px 60px rgba(37, 3, 6, .24);
}

.tablet-mockup {
    left: 10px;
    bottom: 55px;
    width: 230px;
    aspect-ratio: 4 / 5;
    border-radius: 26px;
    transform: rotate(-5deg);
}

.phone-mockup {
    right: 18px;
    bottom: 22px;
    width: 142px;
    aspect-ratio: 9 / 16;
    border-radius: 30px;
    transform: rotate(7deg);
}

.feature-card,
.reason-card,
.pricing-card,
.testimonial-card,
.contact-panel {
    border-radius: 8px;
}

.feature-card {
    position: relative;
    padding: 30px;
    background: #fff;
    border: 1px solid rgba(122, 12, 19, .08);
    box-shadow: 0 16px 42px rgba(26, 14, 16, .07);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    overflow: hidden;
}

.feature-card::after {
    content: "";
    position: absolute;
    inset: auto -40px -60px auto;
    width: 145px;
    height: 145px;
    border-radius: 999px;
    background: rgba(212, 160, 23, .11);
    transition: transform .25s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 160, 23, .48);
    box-shadow: 0 24px 70px rgba(122, 12, 19, .13);
}

.feature-card:hover::after {
    transform: scale(1.2);
}

.icon-bubble {
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--sx-maroon), #c21d2a 55%, var(--sx-gold));
    font-size: 1.55rem;
    margin-bottom: 22px;
    box-shadow: 0 14px 30px rgba(122, 12, 19, .25);
}

.feature-card h3,
.reason-card h3,
.pricing-card h3 {
    font-size: 1.15rem;
    font-weight: 900;
    margin-bottom: 11px;
}

.feature-card p,
.reason-card p,
.pricing-card p {
    color: var(--sx-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.why-section,
.contact-section {
    background:
        radial-gradient(circle at 18% 15%, rgba(212, 160, 23, .18), transparent 28%),
        radial-gradient(circle at 82% 80%, rgba(255, 255, 255, .1), transparent 26%),
        linear-gradient(140deg, rgba(37, 3, 6, .98), rgba(122, 12, 19, .94));
}

.reason-card {
    padding: 26px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(18px);
    transition: transform .25s ease, background .25s ease;
}

.reason-card:hover {
    transform: translateY(-7px);
    background: rgba(255, 255, 255, .13);
}

.reason-card > i {
    color: var(--sx-gold);
    font-size: 1.8rem;
}

.counter-line {
    margin: 18px 0 6px;
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
}

.reason-card p {
    color: rgba(255, 255, 255, .62);
}

.module-timeline {
    display: grid;
    grid-template-columns: repeat(11, minmax(150px, 1fr));
    gap: 16px;
    overflow-x: auto;
    padding: 20px 4px 28px;
    scroll-snap-type: x proximity;
}

.module-step {
    position: relative;
    min-height: 122px;
    padding: 22px;
    border-radius: 8px;
    background: linear-gradient(180deg, #fff, #fffaf0);
    border: 1px solid rgba(212, 160, 23, .22);
    box-shadow: 0 15px 34px rgba(44, 29, 19, .07);
    scroll-snap-align: start;
}

.module-step::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -18px;
    width: 20px;
    height: 2px;
    background: rgba(122, 12, 19, .22);
}

.module-step:last-child::after {
    display: none;
}

.module-step span {
    display: block;
    color: var(--sx-gold);
    font-weight: 900;
    margin-bottom: 18px;
}

.module-step strong {
    color: var(--sx-maroon);
    font-size: 1.05rem;
}

.pricing-section {
    background:
        radial-gradient(circle at 14% 20%, rgba(212, 160, 23, .13), transparent 25%),
        radial-gradient(circle at 84% 70%, rgba(122, 12, 19, .13), transparent 28%),
        #fff;
}

.billing-toggle {
    display: inline-flex;
    padding: 6px;
    border-radius: 999px;
    background: #f0edf0;
}

.billing-toggle button {
    border: 0;
    border-radius: 999px;
    padding: 10px 18px;
    color: var(--sx-muted);
    background: transparent;
    font-weight: 900;
}

.billing-toggle button.active {
    color: #210507;
    background: var(--sx-gold);
    box-shadow: 0 12px 24px rgba(212, 160, 23, .27);
}

.pricing-card {
    position: relative;
    padding: 34px;
    background: #fff;
    border: 1px solid rgba(122, 12, 19, .1);
    box-shadow: 0 16px 42px rgba(26, 14, 16, .06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 70px rgba(122, 12, 19, .13);
}

.pricing-card.featured {
    transform: scale(1.055);
    border: 2px solid rgba(212, 160, 23, .9);
    box-shadow: 0 0 0 8px rgba(212, 160, 23, .08), 0 34px 90px rgba(122, 12, 19, .2);
    z-index: 2;
}

.pricing-card.muted {
    opacity: .74;
}

.pricing-card.muted:hover {
    opacity: 1;
}

.plan-ribbon {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 7px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--sx-maroon), #b71926);
    color: #fff;
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.price-block {
    margin: 24px 0;
}

.price-block .currency {
    color: var(--sx-maroon);
    font-size: 1.3rem;
    font-weight: 900;
}

.price-block strong {
    color: var(--sx-maroon);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 950;
}

.price-block .period {
    color: var(--sx-muted);
    font-weight: 800;
}

.price-block em {
    display: block;
    margin-top: 4px;
    color: #a7aab3;
    font-size: .76rem;
    font-style: normal;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.plan-features li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #3f424b;
    margin-bottom: 13px;
}

.plan-features i {
    color: var(--sx-gold);
    font-size: 1.15rem;
}

.testimonial-card {
    max-width: 820px;
    padding: 42px;
    background: #fff;
    box-shadow: var(--sx-shadow);
    text-align: center;
}

.stars {
    color: var(--sx-gold);
    margin-bottom: 20px;
}

.testimonial-card p {
    color: #343741;
    font-size: 1.22rem;
    line-height: 1.75;
}

.testimonial-card strong,
.testimonial-card span {
    display: block;
}

.testimonial-card strong {
    color: var(--sx-maroon);
    font-size: 1.05rem;
}

.testimonial-card span {
    color: var(--sx-muted);
}

.carousel-control-prev,
.carousel-control-next {
    width: 46px;
    height: 46px;
    top: 50%;
    border-radius: 999px;
    background: var(--sx-maroon);
    opacity: 1;
}

.contact-list {
    display: grid;
    gap: 14px;
    margin: 32px 0;
}

.contact-list a,
.contact-list span {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .82);
    font-weight: 800;
}

.contact-list i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .12);
    color: var(--sx-gold);
}

.qr-box {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px;
    border-radius: 8px;
    max-width: 420px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .14);
}

.qr-code {
    width: 92px;
    height: 92px;
    border-radius: 8px;
    background:
        linear-gradient(90deg, #111 8px, transparent 8px) 0 0 / 18px 18px,
        linear-gradient(#111 8px, transparent 8px) 0 0 / 18px 18px,
        #fff;
}

.qr-box strong,
.qr-box small {
    display: block;
    color: #fff;
}

.qr-box small {
    color: rgba(255, 255, 255, .58);
    margin-top: 6px;
}

.contact-panel {
    padding: 30px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .22);
}

.form-label {
    color: #3b3d45;
    font-weight: 800;
    font-size: .9rem;
}

.form-control {
    min-height: 52px;
    border-radius: 8px;
    border: 1px solid #e3e4ea;
    background: #f9fafc;
}

.form-control:focus {
    border-color: rgba(212, 160, 23, .8);
    box-shadow: 0 0 0 .2rem rgba(212, 160, 23, .14);
}

.map-wrap {
    overflow: hidden;
    border-radius: 8px;
    height: 230px;
    border: 1px solid #e7e8ee;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.landing-footer {
    padding: 70px 0 28px;
    color: rgba(255, 255, 255, .72);
    background: #170203;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 900;
    font-size: 1.2rem;
    margin-bottom: 18px;
}

.footer-brand img {
    border-radius: 14px;
    object-fit: contain;
}

.landing-footer h3 {
    color: var(--sx-gold);
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.landing-footer a:not(.btn):not(.footer-brand) {
    display: block;
    color: rgba(255, 255, 255, .72);
    margin-bottom: 10px;
}

.landing-footer a:hover {
    color: var(--sx-gold);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: grid !important;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .09);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}

@keyframes morph {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(18px, -22px) scale(1.08); }
}

@keyframes fillBar {
    from { transform: scaleX(0); transform-origin: left; }
    to { transform: scaleX(1); transform-origin: left; }
}

@media (max-width: 1199px) {
    .pricing-card.featured {
        transform: none;
    }

    .device-stage {
        min-height: 520px;
    }

    .tablet-mockup {
        width: 190px;
    }
}

@media (max-width: 991px) {
    .section-pad {
        padding: 82px 0;
    }

    .softx-navbar {
        background: rgba(255, 255, 255, .94);
    }

    .softx-navbar .navbar-brand,
    .softx-navbar .nav-link {
        color: var(--sx-ink);
    }

    .hero-section .min-vh-100 {
        min-height: auto !important;
        padding-top: 130px !important;
        padding-bottom: 80px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-visual {
        min-height: 500px;
    }

    .command-panel {
        inset: 20px auto auto 50%;
        transform: translateX(-50%);
        width: min(470px, 100%);
    }
}

@media (max-width: 767px) {
    .section-pad {
        padding: 68px 0;
    }

    .hero-title {
        font-size: 2.45rem;
    }

    .hero-copy,
    .section-text {
        font-size: 1rem;
    }

    .hero-visual {
        min-height: 560px;
    }

    .floating-stat {
        min-width: 140px;
        padding: 14px;
    }

    .stat-one { left: 0; top: 315px; }
    .stat-two { right: 0; bottom: 24px; }
    .stat-three { left: 0; bottom: 118px; }
    .stat-four { right: 0; top: 410px; }

    .device-stage {
        min-height: 470px;
    }

    .laptop-mockup {
        top: 40px;
        padding: 10px 10px 0;
    }

    .laptop-base {
        height: 18px;
    }

    .tablet-mockup {
        width: 145px;
        bottom: 72px;
    }

    .phone-mockup {
        width: 98px;
        bottom: 48px;
    }

    .pricing-card {
        padding: 28px;
    }

    .testimonial-card {
        padding: 30px 24px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 420px) {
    .hero-title {
        font-size: 2.15rem;
    }

    .btn-lg {
        width: 100%;
    }

    .command-panel {
        padding: 18px;
    }

    .mini-chart {
        align-items: flex-start;
    }

    .mini-chart i {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .qr-box {
        align-items: flex-start;
        flex-direction: column;
    }
}
