/*================== FONTS =====================*/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&display=swap');

/*================== VARIABLES =====================*/

:root {
    --bg: #fff;
    --text: #111;
    --muted: #575757;
    --brand: #c59c2b;
    --brand-dark: #a07f1f;
    --dark: #06090c;
    --surface: #fbfbfb;
    --border: #e5e5e5;
}

/*================== GENERAL =====================*/

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

.section {
    max-width: 1160px;
    margin: 0 auto;
    padding: 4rem 1.25rem;
}

.section h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin-bottom: .8rem;
    text-align: center;
}

.section p.lead {
    max-width: 720px;
    margin: 0 auto 2rem;
    text-align: center;
    color: var(--muted);
}

/*================== NAVBAR =====================*/

.landing-navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #fff;
    ;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    z-index: 999;
    transition: transform 0.2s ease-out, background-color 0.5s ease, backdrop-filter 0.5s ease, border-color 0.5s ease;
}

.landing-navbar.scrolled {
    background-color: #fff;
    border-bottom: 1px solid var(--brand);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.landing-navbar.hidden {
    transform: translateY(-100%);
}

.landing-navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-logo img {
    height: 50px;
    display: block;
}

.landing-menu .menu-list {
    display: flex;
    gap: 50px;
    list-style: none;
}

.landing-menu .menu-list li a {
    text-decoration: none;
    color: var(--text);
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

.landing-menu .menu-list li a:hover {
    color: var(--brand);
}

.landing-navbar .landing-cta {
    letter-spacing: .02em;
    background: linear-gradient(120deg, var(--brand), var(--brand-dark));
    border: 0;
    color: #FFF;
    padding: .55rem 1rem;
    border-radius: .45rem;
    font-weight: 600;
    transition: .24s;
}

.landing-navbar .landing-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .25);
}

.menu-cta {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    height: 3px;
    width: 100%;
    background-color: #FFF;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/*================== HERO =====================*/

.hero {
    position: relative;
    min-height: 100vh;
    background: #FFF;
    display: grid;
    align-items: center;
    padding-top: 35px;
}

.hero .container-hero {
    max-width: 1350px;
    margin: 0 auto;
    padding: 3.2rem 0 3.2rem 1.25rem;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2rem;
    align-items: center;
}

.hero .text {
    color: var(--dark);
}

.hero h1 {
    font-size: clamp(2.2rem, 4vw, 4.8rem);
    line-height: 1;
    margin: 0;
    font-weight: 800;
    max-width: 600px;
}

.hero h1 span {
    color: var(--brand);
}

.hero p {
    margin-top: 1rem;
    color: #1f2933;
    max-width: 640px;
    font-size: 1.2rem;
    line-height: 1.6;
}

.hero .actions {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
}

.hero .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    font-weight: 700;
    border-radius: .5rem;
    border: 0;
    cursor: pointer;
    padding: .9rem 1.2rem;
    transition: .24s;
}

.hero .btn-primary {
    background: linear-gradient(120deg, var(--brand), var(--brand-dark));
    color: #fff;
}

.hero .btn-secondary {
    background: rgba(255, 255, 255, .88);
    color: var(--dark);
}

.hero .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .25);
}

.hero .hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero .hero-image-wrapper {
    max-width: 100%;
    width: auto;
    height: auto;
    overflow: hidden;
}

.hero .hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/*================== FEATURE =====================*/

.aboutus-container {
    display: grid;
    grid-template-rows: auto auto;
    gap: 24px;
    max-width: 1180px;
    padding-top: 50px;
    margin: 0 auto;
}

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

.aboutus-title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.aboutus-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.aboutus-text {
    font-size: 16px;
    line-height: 1.5;
    color: #3F3F3F;
}

.cta-link {
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    color: rgba(184, 140, 28, 0.7);
}

.cta-link span {
    font-weight: 500;
    font-size: 26px;
    vertical-align: middle;
    margin-left: 8px;
}

.cta-link:hover {
    color: rgba(184, 140, 28, 1);
}

.aboutus-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.aboutus-cards .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(184, 140, 28, 0.3);
    text-align: center;
    transition: all 0.3s;
}

.aboutus-cards .card:hover {
    border: 1px solid rgba(184, 140, 28, 1);
}

.aboutus-cards .card .material-symbols-rounded {
    font-size: 36px;
    color: #B88C1C;
    margin-bottom: 10px;
}

.aboutus-cards .card p {
    font-size: 12px;
    font-weight: 500;
    color: #3F3F3F;
}

/*================== TIMELINE =====================*/

.timeline {
    display: flex;
    gap: 2.2rem;
    align-items: center;
    justify-content: space-between;
    margin-top: 2.8rem;
    padding: 0 1rem;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 4.5rem;
    right: 4.5rem;
    top: 40px;
    height: 2px;
    background: #e5e5e5;
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 33%;
    padding-top: 10px;
    transition: .24s;
}

.step:hover {
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.step:hover .step-icon {
    background: var(--brand);
    border-color: var(--brand);
}

.step:hover h3 {
    color: var(--brand);
}

.step-icon {
    width: 70px;
    height: 70px;
    aspect-ratio: 1 / 1;
    min-width: 70px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(184, 140, 28, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .8rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

.step-icon span {
    font-size: 1.9rem;
    font-weight: 300;
    color: var(--brand);
    font-variation-settings: 'FILL' 1;
}

.step:hover .step-icon span {
    color: #fff;
}

.step h3 {
    margin: 0;
    font-size: 1.18rem;
    line-height: 1.2;
    font-weight: 800;
    color: #1f2937;
}

.step p {
    margin: 0.4rem 0 0;
    color: #6b7280;
    font-size: .95rem;
    line-height: 1.45;
}

.video-section {
    padding: 1rem 0;
}

.video-box {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16/9;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(0, 0, 0, .14);
}

.video-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .25));
}

.video-box iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/*================== MOBILE =====================*/

.mobile-section {
    width: 100%;
    background: #081314;
    padding: 3rem 0;
    color: #fff;
}

.mobile-section .container {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2.5rem;
    align-items: start;
    box-sizing: border-box;
}

.mobile-left h2 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.mobile-left p {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 2rem;
}

.mobile-left-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.feature {
    display: flex;
    gap: 0.65rem;
    height: 70px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 0.8rem;
    padding: 0.8rem 0.95rem;
    align-items: center;
}

.feature-text strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
}

.feature-text span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.85rem;
}

.feature-icon span {
    font-size: 1.9rem;
    font-weight: 300;
    color: var(--brand);
    font-variation-settings: 'FILL' 0;
}

.store-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: start;
    width: auto;
    max-width: 250px;
}

.store-buttons img {
    width: auto;
    max-width: 250px;
    height: 70px;
    cursor: pointer;
}

.mobile-right {
    display: flex;
    justify-content: center;
}

.video-wrap {
    width: 240px;
    aspect-ratio: 9/16;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.35);
}

.video-wrap iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177%;
    height: 100%;
    transform: translate(-50%, -50%);
    border: 0;
}

/*================== CASOS DE EXITO =====================*/

.success-section {
    background: #ffffff;
    color: #111827;
    padding: 4rem 1.25rem;
}

.success-section .content {
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
}

.success-section h2 {
    margin-bottom: .7rem;
    font-size: clamp(2rem, 4vw, 2.7rem);
}

.success-section p.lead {
    margin-bottom: 2rem;
    color: #475569;
    font-size: 1.08rem;
}

.case-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    justify-content: center;

    max-width: 1100px;
    margin: 4rem auto;

    padding: 0 1.5rem;
}

.case-hero.reverse .case-image {
    order: 2;
}

.case-hero.reverse .case-content {
    order: 1;
}

.case-hero .case-image {
    position: relative;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid #f7e7c2;
}

.case-hero .case-image img {
    width: 100%;
    height: auto;
    display: block;
}

.case-hero .case-content {
    color: #111827;
    padding: 1.1rem 0;
}

.case-hero .case-meta {
    text-transform: uppercase;
    font-size: .78rem;
    letter-spacing: .14em;
    color: #b38309;
    margin-bottom: .85rem;
}

.case-hero .case-title {
    margin: 0 0 1rem;
    font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    line-height: 1.1;
}

.case-hero .case-label {
    display: block;
    text-transform: uppercase;
    color: #a67a17;
    font-weight: 800;
    letter-spacing: .11em;
    margin-top: .85rem;
    font-size: .74rem;
}

.case-hero .case-text {
    color: #334155;
    line-height: 1.62;
    margin-bottom: 1.2rem;
}

.case-hero .case-cta {
    font-weight: 800;
    color: #111827;
    text-decoration: none;
    border-bottom: 2px solid #d2b14c;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.case-hero .case-cta::after {
    content: '→';
    font-size: 1.1rem;
}

/*================== TESTIMONIOS =====================*/

.testimonials-section {
    background: #ffffff;
    padding: 4rem 1.25rem;
}

.testimonials-section .content {
    max-width: 1180px;
    margin: 0 auto;
}

.testimonials-section h2 {
    text-align: center;
    color: #111827;
    margin-bottom: 0.6rem;
}

.testimonials-section p.lead {
    text-align: center;
    color: #475569;
    margin-bottom: 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.testimonial-card {
    background: #fff;
    border: 1px solid #f0e4b0;
    border-radius: 1rem;
    box-shadow: 0 16px 35px rgba(15, 23, 42, .09);
    padding: 1.1rem 1.25rem;
}

.testimonial-card .meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .7rem;
}

.testimonial-card .meta .company {
    font-weight: 700;
    color: #1f2937;
}

.testimonial-card .meta .rating {
    color: #f8b800;
}

.testimonial-card .verified {
    margin-top: .65rem;
    font-size: .87rem;
    color: #64748b;
}

.testimonial-card p {
    margin: 0;
    color: #334155;
    line-height: 1.55;
}

.testimonial-card strong {
    color: #0d1724;
}

.testimonials-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

/*================== CTA FINAL =====================*/

.final-cta {
    background: #081314;
    color: #fff;
    padding: 4rem 1.25rem;
    margin: 4rem 0 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 195, 46, .17);
}

.final-cta h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0 0 .9rem;
    line-height: 1.1;
    font-weight: 800;
}

.final-cta p {
    margin: 0 0 1.5rem;
    color: rgba(255, 255, 255, .86);
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

.final-cta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: .5rem;
    border: 0;
    cursor: pointer;
    padding: 1rem 1.4rem;
    transition: .24s;
}

.final-cta .btn-primary {
    background: linear-gradient(120deg, var(--brand), var(--brand-dark));
    color: #fff;
}

.final-cta .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .25);
}

/*================== FOOTER =====================*/

.footer {
    background: #081314;
    color: rgba(255, 255, 255, .75);
    padding: .9rem 1.25rem;
}

.footer .bottom {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
    font-size: .9rem;
}

.footer .bottom .item {
    flex: 1 1 220px;
    text-align: center;
    color: #f8f8ff;
}

.footer .bottom .item a {
    color: #f8f8ff;
    text-decoration: none;
    font-weight: 600;
}

.footer .bottom .item a:hover {
    text-decoration: underline;
}

.footer .line {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: .8rem;
}

.footer a {
    color: #f8f8ff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.copyright {
    text-align: center;
    margin-top: 1.4rem;
    color: rgba(255, 255, 255, .55);
    font-size: .9rem;
}

/*================== RESPONSIVE: 1024px =====================*/

@media (max-width: 1024px) {
    .landing-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #FFF;
        flex-direction: column;
        align-items: center;
        padding: 24px 1rem;
        gap: 18px;
        border-bottom: 1px solid var(--brand)
    }

    .landing-menu.show {
        display: flex;
    }

    .landing-menu .menu-list {
        flex-direction: column;
        gap: 18px;
        align-items: center;
        padding: 0;
    }

    .landing-menu .menu-list li a {
        font-size: 17px;
        color: #06090c;
        font-weight: 600;
    }

    .landing-navbar-container {
        justify-content: space-between;
    }

    .landing-cta {
        display: none;
    }

    .menu-cta {
        width: 60%;
        display: flex;
        justify-content: center;
        background: linear-gradient(120deg, var(--brand), var(--brand-dark));
        border: 0;
        border-radius: 8px;
        color: #FFF;
        padding: .55rem 1rem;
        font-weight: 600;
        transition: .24s;
    }

    .menu-cta .btn {
        width: auto;
        padding: .3rem;
    }

    .menu-cta:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, .25);
    }

    .hamburger {
        display: block;
        width: 26px;
        height: 20px;
        position: relative;
        border: none;
        background: none;
        cursor: pointer;
        z-index: 1000;
        flex-shrink: 0;
    }

    .hamburger span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: #06090c;
        border-radius: 2px;
        position: absolute;
        left: 0;
        transition: all 0.3s ease;
    }

    .hamburger span:nth-child(1) {
        top: 0;
    }

    .hamburger span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }

    .hamburger span:nth-child(3) {
        bottom: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 50%;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg);
        top: 50%;
    }

    .hero {
        min-height: auto;
        padding: 6rem 0 3rem;
    }

    .hero .container-hero {
        padding: 2.5rem 1.25rem;
        gap: 1.5rem;
    }

    .aboutus {
        max-width: 90%;
        margin: 0 auto;
    }

    .aboutus-title {
        font-size: 22px;
    }

    .aboutus-text {
        font-size: 16px;
    }

    .cta-link {
        font-size: 12px;
    }

    .aboutus-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .aboutus-cards .card {
        padding: 18px 12px;
        gap: 8px;
    }

    .aboutus-cards .card .material-symbols-rounded {
        font-size: 28px;
        margin-bottom: 6px;
    }

    .aboutus-cards .card:last-child {
        grid-column: span 2;
    }

    .mobile-section .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        grid-template-columns: 1fr;
    }

    .mobile-left h2,
    .mobile-left p {
        text-align: center;
    }

    .mobile-left-inner {
        width: 100%;
        justify-content: center;
    }
}

/*================== RESPONSIVE: 768px =====================*/

@media (max-width: 768px) {
    .landing-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #FFF;
        flex-direction: column;
        align-items: center;
        padding: 24px 1rem;
        gap: 18px;
        border-bottom: 1px solid var(--brand)
    }

    .landing-menu.show {
        display: flex;
    }

    .landing-menu .menu-list {
        flex-direction: column;
        gap: 18px;
        align-items: center;
        padding: 0;
    }

    .landing-menu .menu-list li a {
        font-size: 17px;
        color: #06090c;
        font-weight: 600;
    }

    .landing-navbar-container {
        justify-content: space-between;
    }

    .landing-cta {
        display: none;
    }

    .menu-cta {
        width: 100%;
        display: flex;
        justify-content: center;
        background: linear-gradient(120deg, var(--brand), var(--brand-dark));
        border: 0;
        border-radius: 8px;
        color: #FFF;
        padding: .55rem 1rem;
        font-weight: 600;
        transition: .24s;
    }

    .menu-cta .btn {
        width: auto;
        padding: .3rem;
    }

    .menu-cta:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, .25);
    }

    .hamburger {
        display: block;
        width: 26px;
        height: 20px;
        position: relative;
        border: none;
        background: none;
        cursor: pointer;
        z-index: 1000;
        flex-shrink: 0;
    }

    .hamburger span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: #06090c;
        border-radius: 2px;
        position: absolute;
        left: 0;
        transition: all 0.3s ease;
    }

    .hamburger span:nth-child(1) {
        top: 0;
    }

    .hamburger span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }

    .hamburger span:nth-child(3) {
        bottom: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 50%;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg);
        top: 50%;
    }

    .hero {
        margin-top: 30px;
        min-height: 100vh;
    }

    .hero .container-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero .actions {
        flex-direction: column;
    }

    .aboutus {
        max-width: 90%;
        margin: 0 auto;
    }

    .aboutus-top {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .aboutus-title {
        font-size: 22px;
    }

    .aboutus-text {
        font-size: 16px;
    }

    .cta-link {
        font-size: 12px;
    }

    .aboutus-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .aboutus-cards .card {
        padding: 18px 12px;
        gap: 8px;
    }

    .aboutus-cards .card .material-symbols-rounded {
        font-size: 28px;
        margin-bottom: 6px;
    }

    .aboutus-cards .card:last-child {
        grid-column: span 2;
    }

    .timeline {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .timeline::before {
        display: none;
    }

    .step {
        width: 100%;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.6rem;
    }

    .step::after {
        left: 35px;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .mobile-section {
        padding: 2.5rem 1rem;
    }

    .mobile-section .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mobile-left-inner {
        grid-template-columns: 1fr;
    }

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

    .mobile-left p {
        margin-left: auto;
        margin-right: auto;
    }

    .features-column {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }

    .feature {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
        text-align: left;
    }

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

    .store-buttons {
        margin: 0 auto;      
        justify-content: center;
        width: fit-content;  
    }

    .store-buttons a {
        display: flex;
        justify-content: center;
    }

    .store-buttons img {
        height: 50px;
    }

    .video-wrap {
        margin: 0 auto;
    }

    .case-hero {
        grid-template-columns: 1fr;
        gap: .5rem;
        margin-top: 3.5rem;
    }

    .case-hero .case-content {
        padding: 0.5rem 0;
    }

    .case-hero.reverse .case-image,
    .case-hero.reverse .case-content {
        order: unset;
    }

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