/* Mighty Delivery–inspired public chrome, using CMS brand tokens */
:root {
    --site-font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
    --site-text: #1b1230;
    --site-muted: #6b6478;
    --site-line: rgba(86, 51, 145, .08);
    --site-header-h: 0px;
    --md-buy: #d4f542;
    --md-buy-ink: #3d246b;
    --md-surface: #f7f4ff;
    --md-card: #ffffff;
    --md-radius: 14px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 6.5rem;
}

.site-body {
    font-family: var(--site-font);
    color: var(--site-text);
    background: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-body main {
    flex: 1 0 auto;
    background: #fff;
}

.site-body h1, .site-body h2, .site-body h3, .site-body h4, .site-body h5, .site-body h6 {
    font-weight: 700;
    letter-spacing: -.03em;
    color: var(--site-text);
}

.md-arrow {
    flex-shrink: 0;
    margin-left: .15rem;
}

/* Buttons */
.btn-st,
.btn-md-demo {
    background: var(--st-brand);
    border: 0;
    color: #fff;
    font-weight: 700;
    border-radius: 10px;
    padding: .62rem 1.15rem;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    box-shadow: 0 10px 22px rgba(var(--st-brand-rgb), .28);
}

.btn-st:hover,
.btn-st:focus,
.btn-md-demo:hover,
.btn-md-demo:focus {
    background: var(--st-brand-dark);
    color: #fff;
}

.btn-st-outline,
.btn-md-ghost {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, .55);
    color: #fff;
    font-weight: 700;
    border-radius: 10px;
    padding: .58rem 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}

.btn-st-outline {
    border-color: var(--st-brand);
    color: var(--st-brand);
}

.btn-st-outline:hover,
.btn-st-outline:focus {
    background: var(--st-brand);
    border-color: var(--st-brand);
    color: #fff;
}

.btn-md-ghost:hover,
.btn-md-ghost:focus {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.btn-md-buy {
    background: var(--md-buy);
    border: 0;
    color: var(--md-buy-ink);
    font-weight: 700;
    border-radius: 10px;
    padding: .62rem 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    box-shadow: 0 8px 18px rgba(212, 245, 66, .35);
}

.btn-md-buy:hover,
.btn-md-buy:focus {
    background: #c7ea32;
    color: var(--md-buy-ink);
}

.text-st { color: var(--st-brand); }
.bg-st { background: var(--st-gradient); }

.section-title {
    position: relative;
    padding-bottom: .85rem;
    margin-bottom: 2rem;
    font-weight: 800;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 56px;
    height: 4px;
    border-radius: 99px;
    background: var(--st-brand);
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Header — Mighty sticky white bar */
.site-header {
    z-index: 1030;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: box-shadow .2s ease, border-color .2s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 12px 40px rgba(61, 36, 107, .08);
    border-bottom-color: var(--site-line);
}

.site-navbar {
    padding-top: .7rem;
    padding-bottom: .7rem;
}

.md-nav-wrap {
    max-width: 1240px;
}

.site-navbar .navbar-brand {
    font-weight: 800;
    color: var(--st-brand) !important;
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: 0;
}

.site-navbar .navbar-brand img {
    height: 44px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: height .2s ease;
}

@media (min-width: 992px) {
    .site-navbar .navbar-brand img { height: 50px; }
    .site-header.is-scrolled .site-navbar .navbar-brand img { height: 42px; }
}

.md-menu .nav-link {
    color: #2a2140;
    font-weight: 600;
    font-size: .9rem;
    padding: .45rem .7rem !important;
    border-radius: .5rem;
}

.md-menu .nav-link:hover,
.md-menu .nav-link:focus {
    color: var(--st-brand);
    background: transparent;
}

.md-menu .nav-link.active {
    color: var(--st-brand) !important;
    background: transparent;
}

.md-menu .dropdown-toggle::after {
    margin-left: .35rem;
    vertical-align: .15em;
    border-top-width: .32em;
    opacity: .55;
}

.md-dropdown {
    border: 0;
    border-radius: 12px;
    padding: .45rem 0;
    min-width: 220px;
    box-shadow: 0 18px 50px rgba(61, 36, 107, .14);
    margin-top: .55rem !important;
}

.md-dropdown .dropdown-item {
    font-size: .9rem;
    font-weight: 600;
    color: #2a2140;
    padding: .55rem 1.05rem;
}

.md-dropdown .dropdown-item:hover,
.md-dropdown .dropdown-item:focus {
    background: var(--md-surface);
    color: var(--st-brand);
}

.site-navbar .navbar-toggler {
    border: 0;
    box-shadow: none;
}

.site-navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 .2rem rgba(var(--st-brand-rgb), .2);
}

.site-actions {
    display: flex;
    align-items: center;
    gap: .55rem;
}

.site-actions .btn-md-buy,
.site-actions .btn-md-demo {
    font-size: .88rem;
    padding: .55rem 1rem;
    white-space: nowrap;
}

.track-menu {
    min-width: min(320px, 90vw);
    padding-top: .55rem;
}

.track-menu .form-control {
    border-radius: .5rem 0 0 .5rem;
}

.track-menu .btn {
    border-radius: 0 .5rem .5rem 0;
}

.nav-user-toggle {
    display: flex;
    align-items: center;
    gap: .45rem;
    color: #2a2140 !important;
    font-weight: 600;
}

.nav-user-toggle:hover,
.nav-user-toggle:focus,
.nav-user-toggle.show {
    color: var(--st-brand) !important;
}

.nav-user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--st-gradient);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 700;
}

.nav-user-menu {
    min-width: 240px;
}

.nav-user-menu .dropdown-header {
    padding: .75rem 1rem .35rem;
}

.nav-user-menu .dropdown-item.text-danger:hover {
    background: #fff5f5;
    color: #dc3545 !important;
}

.site-alerts {
    background: #fff;
    padding: 1rem 0 0;
}

.site-alerts .alert {
    border: 0;
    border-radius: .9rem;
    box-shadow: 0 8px 24px rgba(61, 36, 107, .06);
}

/* Trust / what you can ship */
.site-trust {
    background: var(--md-surface);
    padding: 3.2rem 0 2.6rem;
}

.site-trust .section-title {
    font-size: 1.7rem;
}

.md-trust-grid .trust-item {
    background: #fff;
    border-radius: 1rem;
    padding: 1.1rem .9rem 1rem;
    height: 100%;
    box-shadow: 0 10px 28px rgba(61, 36, 107, .06);
    flex-direction: column;
    align-items: flex-start;
    gap: .7rem;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}

.trust-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--st-gradient);
    flex-shrink: 0;
}

.trust-item strong {
    display: block;
    font-size: .9rem;
}

.trust-item span {
    color: var(--site-muted);
    font-size: .78rem;
}

.trust-photo {
    width: 52px;
    height: 52px;
    border-radius: .9rem;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

/* Footer — light Mighty style */
.site-footer {
    background: #fbfbfe;
    color: var(--site-muted);
    border-top: 1px solid var(--site-line);
}

.site-footer a {
    color: #3d246b;
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--st-brand);
}

.site-footer .footer-logo {
    height: 52px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.footer-brand-name {
    color: var(--site-text);
    font-size: 1.05rem;
    margin-bottom: .65rem;
}

.site-footer .footer-title {
    color: var(--st-brand);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    margin-bottom: 1.1rem;
}

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

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

.site-footer .footer-links a {
    font-size: .92rem;
    font-weight: 500;
    color: #4a4260;
}

.footer-contact li {
    display: flex;
    gap: .7rem;
    margin-bottom: .75rem;
    font-size: .9rem;
}

.footer-contact i {
    color: var(--st-brand);
    margin-top: .2rem;
}

.footer-social a,
.app-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: .55rem;
    background: var(--md-surface);
    color: var(--st-brand);
}

.footer-social a {
    width: 36px;
    height: 36px;
}

.footer-social a:hover,
.app-badge:hover {
    background: var(--st-brand);
    color: #fff;
}

.app-badge {
    gap: .45rem;
    padding: .45rem .75rem;
    font-size: .78rem;
    font-weight: 600;
    margin-right: .4rem;
    margin-bottom: .4rem;
}

.site-footer-bottom {
    border-top: 1px solid var(--site-line);
    font-size: .82rem;
}

.back-to-top {
    position: fixed;
    right: 1.1rem;
    bottom: 1.1rem;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: var(--st-brand);
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(var(--st-brand-rgb), .35);
    z-index: 1040;
}

.back-to-top.is-visible {
    display: inline-flex;
}

.back-to-top:hover {
    background: var(--st-brand-dark);
    color: #fff;
}

@media (max-width: 991.98px) {
    .site-actions {
        margin-top: .85rem;
        padding-top: .85rem;
        border-top: 1px solid var(--site-line);
        flex-wrap: wrap;
    }

    .md-menu .nav-link {
        padding: .6rem .2rem !important;
    }
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -3rem;
    z-index: 1080;
    background: var(--st-brand);
    color: #fff;
    padding: .5rem .9rem;
    border-radius: .5rem;
    font-weight: 600;
}

.skip-link:focus {
    top: 1rem;
    color: #fff;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--st-brand);
    margin-bottom: .75rem;
}

/* Inner page banner */
.page-hero {
    position: relative;
    overflow: hidden;
    color: var(--site-text);
    background:
        radial-gradient(900px 280px at 8% -20%, rgba(var(--st-brand-rgb), .16), transparent 60%),
        radial-gradient(700px 240px at 92% 120%, rgba(var(--st-secondary-rgb), .18), transparent 55%),
        linear-gradient(180deg, #f4efff 0%, #fff 100%);
}

.md-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
    pointer-events: none;
}

.md-blob-a {
    width: 180px;
    height: 180px;
    background: rgba(var(--st-brand-rgb), .14);
    top: -40px;
    right: 12%;
}

.md-blob-b {
    width: 120px;
    height: 120px;
    background: rgba(var(--st-secondary-rgb), .2);
    bottom: -30px;
    left: 8%;
}

.md-breadcrumb {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: .86rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--site-muted);
}

.md-breadcrumb a {
    color: var(--st-brand);
    text-decoration: none;
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    padding: 3.4rem 0 3.1rem;
}

.page-hero h1 {
    font-size: clamp(1.9rem, 3.2vw, 2.8rem);
    max-width: 18ch;
    margin-bottom: .75rem;
}

.page-hero-lead {
    max-width: 38rem;
    margin: 0;
    color: var(--site-muted);
    font-size: 1.05rem;
}

/* Home hero */
.home-hero {
    position: relative;
    background:
        radial-gradient(900px 380px at 12% -10%, rgba(var(--st-brand-rgb), .16), transparent 60%),
        radial-gradient(700px 320px at 90% 10%, rgba(var(--st-secondary-rgb), .16), transparent 55%),
        linear-gradient(180deg, #f6f1ff 0%, #fff 72%);
    overflow: hidden;
}

.home-hero-inner {
    padding: 3.6rem 0 2.8rem;
}

.home-hero h1 {
    font-size: clamp(2.1rem, 4.2vw, 3.4rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.home-hero .lead {
    color: var(--site-muted);
    font-size: 1.08rem;
    max-width: 36rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem 1.4rem;
    margin: 1.4rem 0 1.6rem;
}

.hero-stat strong {
    display: block;
    font-size: 1.05rem;
}

.hero-stat span {
    color: var(--site-muted);
    font-size: .8rem;
}

.home-hero-media {
    position: relative;
}

.home-hero-media img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 1.6rem;
    box-shadow: 0 28px 60px rgba(61, 36, 107, .16);
}

.hero-float {
    position: absolute;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 16px 40px rgba(61, 36, 107, .14);
    padding: .85rem 1rem;
    display: flex;
    align-items: center;
    gap: .7rem;
    max-width: 220px;
}

.hero-float i {
    width: 36px;
    height: 36px;
    border-radius: .7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--st-gradient);
    color: #fff;
}

.hero-float strong,
.hero-float span {
    display: block;
}

.hero-float span {
    color: var(--site-muted);
    font-size: .75rem;
}

.hero-float-pickup {
    left: -1rem;
    bottom: 1.6rem;
}

.hero-float-cod {
    right: .6rem;
    top: 1.4rem;
}

.hero-carousel .carousel-item {
    position: relative;
    min-height: 560px;
}

.hero-carousel .carousel-item > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-carousel-copy {
    position: relative;
    z-index: 1;
    min-height: 560px;
    display: flex;
    align-items: center;
    background: linear-gradient(105deg, rgba(27, 18, 48, .82) 0%, rgba(162, 17, 246, .38) 100%);
    color: #fff;
    padding: 4.4rem 0;
}

.hero-carousel-copy h1,
.hero-carousel-copy .lead {
    color: #fff;
}

.hero-carousel-copy .hero-kicker {
    color: var(--md-buy);
}

.split-panel {
    overflow: hidden;
    border-radius: 1.4rem;
    box-shadow: 0 18px 50px rgba(61, 36, 107, .08);
}

.split-panel img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}

.calc-result {
    padding: 1.15rem 1.25rem;
    border-radius: 1rem;
    background: var(--md-surface);
    border: 1px solid var(--site-line);
}

.calc-result h3 {
    font-size: 1.85rem;
    letter-spacing: -.03em;
}

.calc-breakdown {
    border-top: 1px dashed var(--site-line);
    padding-top: .85rem;
}

.calc-breakdown li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: .86rem;
    color: var(--site-muted);
    padding: .15rem 0;
}

.calc-breakdown strong {
    color: var(--site-text);
    font-weight: 600;
}

.how-step img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.how-step .step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--st-gradient);
    color: #fff;
    font-weight: 800;
    font-size: .85rem;
    margin-bottom: .7rem;
}

/* CTA band */
.site-cta {
    padding: 0 0 3.4rem;
    background: #fff;
}

.md-cta-band {
    position: relative;
    overflow: hidden;
    border-radius: 1.6rem;
    color: #fff;
    padding: 2.8rem 2rem;
    background:
        radial-gradient(600px 220px at 90% 0%, rgba(1, 220, 253, .28), transparent 60%),
        var(--st-gradient);
}

.md-cta-band h2 {
    color: #fff;
    font-size: clamp(1.5rem, 2.4vw, 2.15rem);
    margin-bottom: .7rem;
}

.md-cta-band p {
    color: rgba(255, 255, 255, .88);
    max-width: 38rem;
}

.md-cta-band .hero-kicker {
    color: var(--md-buy);
}

.footer-track .form-control {
    background: #fff;
    border: 1px solid var(--site-line);
    color: var(--site-text);
}

.whatsapp-float {
    position: fixed;
    right: 1.1rem;
    bottom: 4.4rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 10px 24px rgba(37, 211, 102, .4);
    z-index: 1040;
}

.whatsapp-float:hover {
    color: #fff;
    background: #1ebe5d;
}

.site-body .card {
    border-radius: 1.1rem;
}

.site-body .accordion-item {
    border: 0;
    border-radius: 1rem !important;
    overflow: hidden;
    margin-bottom: .75rem;
    box-shadow: 0 10px 28px rgba(61, 36, 107, .06);
}

.site-body .accordion-button {
    font-weight: 700;
    color: var(--site-text);
}

.site-body .accordion-button:not(.collapsed) {
    background: var(--md-surface);
    color: var(--st-brand);
    box-shadow: none;
}

.site-body .form-control,
.site-body .form-select {
    border-radius: .7rem;
    border-color: #e4def2;
    padding: .7rem .9rem;
}

.site-body .form-control:focus,
.site-body .form-select:focus {
    border-color: var(--st-brand);
    box-shadow: 0 0 0 .2rem rgba(var(--st-brand-rgb), .15);
}

@media (max-width: 991.98px) {
    .home-hero-media img {
        height: 280px;
        margin-top: 1.5rem;
    }

    .hero-float-pickup {
        left: .6rem;
        bottom: .8rem;
    }

    .hero-float-cod {
        right: .6rem;
        top: 2.2rem;
    }

    .hero-carousel .carousel-item,
    .hero-carousel-copy {
        min-height: 440px;
    }

    .md-cta-band {
        padding: 2rem 1.25rem;
    }
}
