/* ============================================================
   HAKKUMA LANDING
============================================================ */

:root {
    --hakkuma-purple: #5425c9;
    --hakkuma-purple-dark: #33127f;
    --hakkuma-purple-light: #7652df;

    --hakkuma-yellow: #ffc400;
    --hakkuma-yellow-dark: #efae00;
    --hakkuma-yellow-light: #ffe58c;

    --hakkuma-text: #17113d;
    --hakkuma-text-soft: #6f6a86;

    --hakkuma-bg: #ffffff;
    --hakkuma-soft: #f7f5ff;

    --border-soft: #ebe7f5;

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;

    --shadow-soft: 0 12px 40px rgba(64, 34, 133, .08);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--hakkuma-text);
    background: var(--hakkuma-bg);
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.section-space {
    padding: 95px 0;
}

.bg-soft {
    background: var(--hakkuma-soft);
}


/* ============================================================
   NAV
============================================================ */

.hakkuma-navbar {
    padding: 16px 0;
    box-shadow: 0 3px 20px rgba(30, 15, 70, .04);
}

.navbar-logo {
    width: 145px;
    max-height: 44px;
}

.hakkuma-navbar .nav-link {
    color: var(--hakkuma-text);
    font-weight: 600;
    font-size: .91rem;
    padding: 10px 15px !important;
    position: relative;
}

.hakkuma-navbar .nav-link:hover,
.hakkuma-navbar .nav-link.active {
    color: var(--hakkuma-purple);
}

.hakkuma-navbar .nav-link.active::after {
    content: "";
    position: absolute;
    height: 3px;
    width: 25px;
    border-radius: 10px;
    background: var(--hakkuma-yellow);
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.social-top a {
    color: var(--hakkuma-purple);
    font-size: 1.1rem;
}


/* ============================================================
   BOTONES
============================================================ */

.btn {
    border-radius: 10px;
    font-weight: 700;
    transition: all .25s ease;
    padding: 11px 20px;
}

.btn-hakkuma-purple {
    color: white;
    border: 0;
    background: linear-gradient(
        135deg,
        var(--hakkuma-purple),
        var(--hakkuma-purple-dark)
    );
}

.btn-hakkuma-purple:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(84, 37, 201, .25);
}

.btn-hakkuma-yellow {
    color: var(--hakkuma-text);
    border: 0;
    background: linear-gradient(
        135deg,
        var(--hakkuma-yellow),
        #ffd94f
    );
}

.btn-hakkuma-yellow:hover {
    color: var(--hakkuma-text);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 196, 0, .25);
}


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

.hero-section {
    position: relative;
    padding: 90px 0 70px;
    min-height: 650px;
    background:
        radial-gradient(circle at 70% 40%, #f4efff 0, transparent 45%),
        linear-gradient(135deg, #ffffff, #faf8ff);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 4vw, 4.4rem);
    line-height: 1.05;
    font-weight: 850;
    letter-spacing: -2px;
}

.hero-content h1 span {
    color: var(--hakkuma-purple);
}

.hero-description {
    margin: 26px 0;
    max-width: 530px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--hakkuma-text-soft);
}

.hero-buttons {
    margin-top: 32px;
}

.hero-button {
    min-width: 210px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 15px 18px;
    border-radius: 14px;
}

.hero-button small,
.hero-button strong {
    display: block;
}

.hero-button small {
    font-size: .68rem;
    opacity: .8;
    margin-bottom: 3px;
}

.hero-button strong {
    font-size: .96rem;
}

.hero-business {
    color: #fff;
    background: var(--hakkuma-purple);
}

.hero-business:hover {
    color: #fff;
    background: var(--hakkuma-purple-dark);
}

.hero-benefit {
    color: var(--hakkuma-text);
    background: var(--hakkuma-yellow);
}

.hero-benefit:hover {
    color: var(--hakkuma-text);
    background: var(--hakkuma-yellow-dark);
}

.hero-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-promo {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 12px 16px;
    border-radius: 12px;
    background: white;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    font-size: .87rem;
}

.hero-promo-icon {
    font-size: 1.25rem;
}


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

.hero-visual {
    min-height: 500px;
    position: relative;
}

.hero-laptop {
    width: 79%;
    position: absolute;
    top: 8%;
    left: 4%;
    z-index: 1;
}

.hero-phone {
    width: 25%;
    position: absolute;
    right: 17%;
    top: 13%;
    z-index: 3;
    filter: drop-shadow(0 15px 20px rgba(0,0,0,.18));
}

.hero-mascot {
    width: 30%;
    position: absolute;
    bottom: 0;
    right: -5%;
    z-index: 2;
}

.hero-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: .8;
}

.hero-decoration-purple {
    width: 420px;
    height: 420px;
    right: -200px;
    top: 50px;
    background: rgba(84, 37, 201, .1);
}

.hero-decoration-yellow {
    width: 320px;
    height: 320px;
    right: -80px;
    bottom: -170px;
    background: rgba(255, 196, 0, .25);
}


/* ============================================================
   FEATURES
============================================================ */

.features-strip {
    background: #fff;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    padding: 28px 0;
}

.mini-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.mini-feature i {
    font-size: 1.5rem;
    color: var(--hakkuma-purple);
}

.mini-feature strong,
.mini-feature span {
    display: block;
}

.mini-feature strong {
    font-size: .87rem;
}

.mini-feature span {
    font-size: .72rem;
    color: var(--hakkuma-text-soft);
}


/* ============================================================
   TITULOS
============================================================ */

.section-title {
    margin-bottom: 50px;
}

.section-title h2,
.section-heading h2 {
    font-weight: 800;
    letter-spacing: -.7px;
}

.section-title h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
}

.section-title p,
.section-heading p {
    color: var(--hakkuma-text-soft);
}

.section-eyebrow {
    display: block;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 800;
    color: var(--hakkuma-purple);
    margin-bottom: 8px;
}


/* ============================================================
   AUDIENCE
============================================================ */

.audience-wrapper {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-soft);
}

.audience-card {
    padding: 50px 45px;
    height: 100%;
}

.audience-business {
    background:
        linear-gradient(135deg, #f4f0ff, #ffffff);
}

.audience-user {
    background:
        linear-gradient(135deg, #fffdf4, #fff1ac);
}

.audience-card h3 {
    font-weight: 800;
    margin: 7px 0 15px;
}

.audience-card p {
    color: var(--hakkuma-text-soft);
    line-height: 1.65;
}

.audience-label {
    font-size: .75rem;
    font-weight: 800;
    color: var(--hakkuma-purple);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.audience-user .audience-label {
    color: #b07900;
}

.audience-image {
    width: 100%;
    max-width: 180px;
}

.audience-help {
    display: block;
    margin-top: 10px;
    color: var(--hakkuma-text-soft);
}


/* ============================================================
   CHECK LISTS
============================================================ */

.check-list,
.benefit-list,
.pricing-card ul {
    padding: 0;
    margin: 22px 0;
    list-style: none;
}

.check-list li,
.benefit-list li {
    padding: 5px 0;
    display: flex;
    gap: 9px;
    align-items: flex-start;
}

.check-list li::before {
    content: "✓";
    font-weight: 900;
}

.purple-check li::before {
    color: var(--hakkuma-purple);
}

.yellow-check li::before {
    color: #d49200;
}


/* ============================================================
   STEPS
============================================================ */

.steps-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 35px;
}

.step-item {
    text-align: center;
}

.step-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: #eee8ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hakkuma-purple);
    font-size: 1.6rem;
}

.step-item > span {
    display: inline-flex;
    width: 23px;
    height: 23px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: var(--hakkuma-purple);
    font-size: .7rem;
    font-weight: 800;
}

.step-item h4 {
    font-size: .9rem;
    font-weight: 800;
    margin: 10px 0 7px;
}

.step-item p {
    font-size: .73rem;
    color: var(--hakkuma-text-soft);
}


/* ============================================================
   FIDELIZACIONES
============================================================ */

.loyalty-card {
    height: 100%;
    padding: 22px;
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-soft);
    display: flex;
    gap: 18px;
    transition: .25s ease;
}

.loyalty-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.loyalty-icon {
    flex: 0 0 55px;
    height: 55px;
    border-radius: 17px;
    background: #fff6cd;
    color: #eaaa00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.loyalty-card h4 {
    font-size: 1rem;
    font-weight: 800;
}

.loyalty-card p {
    font-size: .82rem;
    margin: 0;
    color: var(--hakkuma-text-soft);
}


/* ============================================================
   BENEFICIOS
============================================================ */

.benefit-box {
    border-radius: var(--radius-md);
    padding: 42px;
    height: 100%;
    overflow: hidden;
}

.business-benefit {
    background:
        linear-gradient(
            135deg,
            var(--hakkuma-purple-dark),
            var(--hakkuma-purple)
        );
    color: #fff;
}

.user-benefit {
    background:
        linear-gradient(135deg, #ffdc5a, #fff2b0);
}

.benefit-box h3 {
    font-weight: 800;
}

.benefit-list li {
    font-size: .9rem;
}

.benefit-list li::before {
    content: "✓";
    font-weight: 900;
}

.business-benefit .benefit-list li::before {
    color: var(--hakkuma-yellow);
}

.user-benefit .benefit-list li::before {
    color: var(--hakkuma-purple);
}


/* ============================================================
   VIDEO / PROMO
============================================================ */

.video-section {
    border-radius: var(--radius-md);
    padding: 35px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.hakkuma-video {
    overflow: hidden;
    border-radius: 18px;
    background: var(--hakkuma-purple-dark);
}

.launch-promo {
    color: white;
    border-radius: var(--radius-md);
    padding: 50px;
    text-align: center;
    background:
        radial-gradient(circle at 90% 10%, #7d54eb, transparent 30%),
        linear-gradient(
            135deg,
            var(--hakkuma-purple-dark),
            var(--hakkuma-purple)
        );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.launch-promo > span {
    font-weight: 700;
}

.launch-promo h2 {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 900;
    margin: 12px 0;
}

.launch-discount {
    background: var(--hakkuma-yellow);
    color: var(--hakkuma-text);
    padding: 9px 25px;
    border-radius: 30px;
    font-weight: 900;
}

.launch-promo p {
    margin: 20px 0;
}


/* ============================================================
   PRICING
============================================================ */

.pricing-card {
    position: relative;
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-soft);
    padding: 35px;
    height: 100%;
    transition: .25s ease;
}

.pricing-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-soft);
}

.pricing-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
}

.plan-family {
    color: var(--hakkuma-text-soft);
    font-size: .77rem;
}

.price {
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
}

.price sup {
    font-weight: 700;
    margin-top: 12px;
}

.price strong {
    font-size: 3.2rem;
    color: var(--hakkuma-purple);
    line-height: 1;
}

.price small {
    align-self: flex-end;
    margin-bottom: 7px;
    color: var(--hakkuma-text-soft);
}

.pricing-card li {
    padding: 7px 0;
    color: var(--hakkuma-text-soft);
    font-size: .9rem;
}

.pricing-card li i {
    color: var(--hakkuma-purple);
    margin-right: 8px;
}

.pricing-featured,
.pricing-pro {
    border: 2px solid var(--hakkuma-yellow);
}

.pricing-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 18px;
    border-radius: 20px;
    background: var(--hakkuma-yellow);
    color: var(--hakkuma-text);
    font-size: .65rem;
    font-weight: 900;
    white-space: nowrap;
}


/* ============================================================
   CLIENTES
============================================================ */

.clients-section {
    padding: 65px 0;
}


/* ============================================================
   FAQ
============================================================ */

.faq-accordion .accordion-item {
    border: 0;
    margin-bottom: 12px;
    border-radius: var(--radius-sm) !important;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-weight: 700;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--hakkuma-purple);
    background: #f3efff;
}


/* ============================================================
   CONTACT
============================================================ */

.contact-card {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.contact-card .form-control {
    min-height: 48px;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
}

.contact-card textarea.form-control {
    min-height: 115px;
}

.contact-card .form-control:focus {
    box-shadow: 0 0 0 3px rgba(84, 37, 201, .08);
    border-color: var(--hakkuma-purple);
}

.contact-mascot {
    width: 130%;
    max-width: 260px;
    margin-left: -20px;
}


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

.footer {
    background:
        linear-gradient(
            135deg,
            #271067,
            var(--hakkuma-purple-dark)
        );
    color: white;
    padding: 70px 0 20px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 20px;
}

.footer p {
    color: rgba(255,255,255,.7);
    font-size: .86rem;
}

.footer h5 {
    font-size: 1rem;
    margin-bottom: 18px;
}

.footer a {
    display: block;
    color: rgba(255,255,255,.7);
    font-size: .86rem;
    margin-bottom: 8px;
}

.footer a:hover {
    color: var(--hakkuma-yellow);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 50px;
    padding-top: 20px;
    text-align: center;
    font-size: .78rem;
    color: rgba(255,255,255,.55);
}


/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1199.98px) {

    .hero-section {
        padding-top: 70px;
    }

    .hero-visual {
        min-height: 440px;
    }

    .hero-mascot {
        right: 0;
    }

    .steps-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}


@media (max-width: 991.98px) {

    .section-space {
        padding: 75px 0;
    }

    .navbar-actions {
        margin-top: 20px;
        align-items: flex-start !important;
    }

    .hero-section {
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-promo {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        min-height: 490px;
        max-width: 700px;
        margin: 0 auto;
    }

    .hero-laptop {
        width: 78%;
        left: 2%;
    }

    .hero-phone {
        width: 23%;
        right: 17%;
    }

    .hero-mascot {
        width: 27%;
        right: 0;
    }

    .audience-card {
        padding: 45px 35px;
    }

    .audience-business {
        border-bottom: 1px solid var(--border-soft);
    }
}


@media (max-width: 767.98px) {

    .section-space {
        padding: 60px 0;
    }

    .hero-section {
        padding: 60px 0 30px;
    }

    .hero-content h1 {
        letter-spacing: -1px;
    }

    .hero-buttons {
        width: 100%;
    }

    .hero-button {
        width: 100%;
    }

    .hero-visual {
        min-height: 410px;
    }

    .hero-laptop {
        width: 90%;
        left: 0;
    }

    .hero-phone {
        width: 27%;
        right: 9%;
    }

    .hero-mascot {
        width: 32%;
        right: -3%;
    }

    .features-strip {
        padding: 35px 0;
    }

    .mini-feature {
        justify-content: flex-start;
    }

    .audience-card {
        padding: 35px 25px;
        text-align: center;
    }

    .check-list {
        text-align: left;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .steps-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-box {
        padding: 30px;
    }

    .launch-promo {
        padding: 40px 25px;
    }

    .contact-card {
        padding: 30px 22px;
    }
}


@media (max-width: 575.98px) {

    .hero-content h1 {
        font-size: 2.35rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-visual {
        min-height: 330px;
    }

    .hero-laptop {
        width: 96%;
        left: -5%;
    }

    .hero-phone {
        width: 30%;
        right: 5%;
    }

    .hero-mascot {
        width: 34%;
        bottom: 5px;
    }

    .steps-wrapper {
        grid-template-columns: 1fr;
    }

    .step-item {
        max-width: 280px;
        margin: 0 auto;
    }

    .section-title {
        margin-bottom: 35px;
    }

    .pricing-card {
        padding: 28px;
    }
}


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

.hero-buttons {
    margin-top: 32px;
}

.hero-cta-primary,
.hero-cta-secondary {
    min-height: 54px;
    padding: 13px 20px;
    border-radius: 30px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    font-size: .95rem;
    font-weight: 800;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}


/* CTA PRINCIPAL */
.hero-cta-primary {
    color: #fff;
    border: 0;

    background:
        linear-gradient(
            135deg,
            var(--hakkuma-purple),
            var(--hakkuma-purple-dark)
        );

    box-shadow:
        0 10px 26px rgba(84, 37, 201, .24);
}

.hero-cta-primary:hover {
    color: #fff;

    transform: translateY(-2px);

    box-shadow:
        0 14px 32px rgba(84, 37, 201, .30);
}


/* CTA SECUNDARIO */
.hero-cta-secondary {
    color: var(--hakkuma-purple);

    background: #fff;

    border: 2px solid rgba(84, 37, 201, .35);
}

.hero-cta-secondary:hover {
    color: var(--hakkuma-purple-dark);

    border-color: var(--hakkuma-purple);

    background: #fbf9ff;

    transform: translateY(-2px);
}


/* ICONO CIRCULAR */
.hero-cta-icon {
    width: 26px;
    height: 26px;

    flex: 0 0 26px;

    border-radius: 50%;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: .72rem;
}

.hero-cta-primary .hero-cta-icon {
    background: rgba(255,255,255,.18);
    color: #fff;
}

.hero-cta-secondary .hero-cta-icon {
    background: #f2edff;
    color: var(--hakkuma-purple);
}


/* MOBILE */
@media (max-width: 575.98px) {

    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
    }

}


/* ============================================================
   FEATURES
============================================================ */

.features-strip {
    background: #fff;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    padding: 30px 0 0;
}


/* ============================================================
   FILA 1
============================================================ */

.features-main-row {
    padding-bottom: 28px;
}

.mini-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    height: 100%;
}

.mini-feature i {
    font-size: 1.55rem;
    color: var(--hakkuma-purple);
    min-width: 30px;
}

.mini-feature strong,
.mini-feature span {
    display: block;
}

.mini-feature strong {
    font-size: .95rem;
    color: var(--hakkuma-text);
    font-weight: 800;
}

.mini-feature span {
    margin-top: 2px;
    font-size: .78rem;
    color: var(--hakkuma-text-soft);
}


/* ============================================================
   FILA 2 - MÉTRICAS
============================================================ */

.features-stats {
    overflow: hidden;
    border-radius: 24px 24px 0 0;

    background:
        linear-gradient(
            135deg,
            var(--hakkuma-purple-dark),
            var(--hakkuma-purple)
        );

    box-shadow:
        0 15px 40px rgba(65, 32, 145, .15);
}

.stat-feature {
    min-height: 175px;
    padding: 32px 24px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    color: #fff;

    position: relative;
}

.stat-feature::after {
    content: "";
    position: absolute;
    top: 25%;
    right: 0;
    width: 1px;
    height: 50%;
    background: rgba(255,255,255,.14);
}

.features-stats .col-lg-3:last-child .stat-feature::after {
    display: none;
}

.stat-feature i {
    font-size: 2rem;
    color: var(--hakkuma-yellow);
    flex: 0 0 auto;
}

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

.stat-feature strong {
    display: block;

    font-size: 2rem;
    line-height: 1;
    font-weight: 900;

    color: #fff;
}

.stat-feature span {
    display: block;

    margin-top: 7px;

    font-size: .95rem;
    font-weight: 800;

    color: #fff;
}

.stat-feature small {
    display: block;

    margin-top: 4px;

    font-size: .72rem;
    line-height: 1.35;

    color: rgba(255,255,255,.72);
}


/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 991.98px) {

    .stat-feature {
        min-height: 155px;
    }

    .features-stats .col-6:nth-child(2) .stat-feature::after,
    .features-stats .col-6:nth-child(4) .stat-feature::after {
        display: none;
    }

    .features-stats .col-6:nth-child(1),
    .features-stats .col-6:nth-child(2) {
        border-bottom: 1px solid rgba(255,255,255,.12);
    }
}


@media (max-width: 767.98px) {

    .features-strip {
        padding-top: 26px;
    }

    .mini-feature {
        justify-content: flex-start;
        padding-left: 12px;
    }

    .stat-feature {
        min-height: 145px;
        padding: 25px 18px;

        flex-direction: column;
        gap: 10px;

        text-align: center;
    }

    .stat-feature-content {
        text-align: center;
    }

    .stat-feature strong {
        font-size: 1.7rem;
    }

    .stat-feature span {
        font-size: .88rem;
    }

    .stat-feature small {
        font-size: .68rem;
    }
}


@media (max-width: 575.98px) {

    .features-main-row {
        row-gap: 26px !important;
    }

    .features-stats {
        border-radius: 20px 20px 0 0;
    }

}


/* ============================================================
   CÓMO FUNCIONA
============================================================ */

.how-title {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.how-title p {
    max-width: 620px;
    margin: 15px auto 0;
}


/* ============================================================
   PASOS
============================================================ */

.how-steps {
    margin-top: 55px;
    position: relative;
}

.how-steps .step-item {
    position: relative;
    padding: 0 18px;
}

/* Línea que conecta los pasos */
.how-steps .step-item:not(:last-child)::after {
    content: "";
    position: absolute;

    top: 38px;
    right: -8%;

    width: 16%;
    height: 2px;

    background:
        linear-gradient(
            to right,
            rgba(84, 37, 201, .2),
            rgba(84, 37, 201, .7)
        );
}

.how-steps .step-icon {
    width: 82px;
    height: 82px;

    margin: 0 auto 16px;

    background:
        linear-gradient(
            135deg,
            #eee8ff,
            #f7f3ff
        );

    border: 1px solid rgba(84,37,201,.08);

    box-shadow:
        0 10px 25px rgba(84,37,201,.06);
}

.how-steps .step-item > span {
    margin-top: -5px;
}

.how-steps .step-item h4 {
    margin-top: 14px;

    font-size: 1rem;
    line-height: 1.35;
}

.how-steps .step-item p {
    max-width: 235px;

    margin: 8px auto 0;

    line-height: 1.6;
}


/* ============================================================
   INFORMACIÓN IMPORTANTE
============================================================ */

.how-info-box {
    max-width: 850px;

    margin: 65px auto 0;
    padding: 24px 30px;

    display: flex;
    align-items: center;
    gap: 20px;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f7f3ff
        );

    border: 1px solid rgba(84,37,201,.12);
    border-radius: 18px;

    box-shadow:
        0 12px 35px rgba(65, 32, 145, .07);
}

.how-info-icon {
    width: 58px;
    height: 58px;

    flex: 0 0 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: var(--hakkuma-yellow);
    color: var(--hakkuma-bg);

    font-size: 1.4rem;
}

.how-info-content strong {
    display: block;

    margin-bottom: 5px;

    font-size: 1rem;
    color: var(--hakkuma-text);
}

.how-info-content p {
    margin: 0;

    color: var(--hakkuma-text-soft);

    font-size: .9rem;
    line-height: 1.6;
}


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

.how-cta {
    margin-top: 55px;
}

.how-cta h3 {
    font-weight: 800;
    font-size: 1.5rem;
}

.how-cta p {
    max-width: 600px;

    margin: 10px auto 22px;

    color: var(--hakkuma-text-soft);
}


/* ============================================================
   VIDEO
============================================================ */

.how-video-wrapper {
    margin-top: 80px;
    padding-top: 65px;

    border-top: 1px solid var(--border-soft);
}

.how-video-content {
    max-width: 430px;
}

.how-video-content h3 {
    margin: 10px 0 15px;

    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
}

.how-video-content p {
    color: var(--hakkuma-text-soft);

    line-height: 1.7;
}

.how-video {
    overflow: hidden;

    border-radius: 22px;

    background: #fff;

    box-shadow:
        0 18px 45px rgba(50, 25, 120, .10);

    border: 1px solid var(--border-soft);
}

.how-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 991.98px) {

    .how-steps .step-item:not(:last-child)::after {
        display: none;
    }

    .how-video-content {
        max-width: 100%;

        text-align: center;
    }

}


@media (max-width: 767.98px) {

    .how-info-box {
        align-items: flex-start;

        margin-top: 45px;

        padding: 22px;
    }

    .how-info-icon {
        width: 50px;
        height: 50px;

        flex-basis: 50px;
    }

    .how-video-wrapper {
        margin-top: 60px;
        padding-top: 50px;
    }

}


@media (max-width: 575.98px) {

    .how-info-box {
        flex-direction: column;

        text-align: center;

        align-items: center;
    }

    .how-video-content h3 {
        font-size: 1.6rem;
    }

}



/* Pasos relacionados con Hakkuma Business */
.step-business .step-icon {
    color: var(--hakkuma-purple);
    background: #eee8ff;
    border-color: rgba(84, 37, 201, .12);
}

.step-business > span {
    background: var(--hakkuma-purple);
    color: #fff;
}


/* Pasos relacionados con el cliente / Benefit */
.step-benefit .step-icon {
    color: #d99200;
    background: #fff3c4;
    border-color: rgba(255, 193, 7, .25);
}

.step-benefit > span {
    background: var(--hakkuma-yellow);
    color: #25174f;
}




/* ============================================================
   FORMAS DE FIDELIZACIÓN
============================================================ */

.loyalty-programs-section {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #fffaf0 0%,
            #fff6d8 48%,
            #fffdf8 100%
        );
}


/* ============================================================
   DECORACIÓN
============================================================ */

.loyalty-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.loyalty-decoration-left {
    width: 360px;
    height: 360px;

    top: 80px;
    left: -210px;

    background: rgba(255, 196, 0, .10);
}

.loyalty-decoration-right {
    width: 280px;
    height: 280px;

    top: -90px;
    right: -110px;

    background: rgba(255, 196, 0, .12);
}


/* ============================================================
   TÍTULO
============================================================ */

.loyalty-programs-title {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.loyalty-programs-title .section-eyebrow {
    color: var(--hakkuma-purple);
}

.loyalty-programs-title h2 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;

    line-height: 1.12;
}

.loyalty-programs-title h2 span {
    color: var(--hakkuma-purple);
}

.loyalty-programs-title p {
    max-width: 670px;

    margin:
        18px auto
        0;

    line-height: 1.7;
}


/* ============================================================
   GRID
============================================================ */

.loyalty-programs-grid {
    margin-top: 20px;
}


/* ============================================================
   TARJETA
============================================================ */

.loyalty-program-card {
    position: relative;

    height: 100%;

    overflow: hidden;

    background: rgba(255,255,255,.94);

    border:
        1px solid
        rgba(77, 48, 150, .08);

    border-radius: 26px;

    box-shadow:
        0 16px 42px
        rgba(65, 32, 145, .08);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.loyalty-program-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 22px 55px
        rgba(65, 32, 145, .14);
}


/* ============================================================
   NÚMERO
============================================================ */

.loyalty-program-number {
    position: absolute;

    top: 22px;
    left: 22px;

    z-index: 4;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: .85rem;
    font-weight: 900;
}

.loyalty-purple {
    color: #fff;
    background: var(--hakkuma-purple);
}

.loyalty-yellow {
    color: var(--hakkuma-purple-dark);
    background: var(--hakkuma-yellow);
}


/* ============================================================
   ILUSTRACIÓN
============================================================ */

.loyalty-program-visual {
    position: relative;

    height: 240px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.loyalty-visual-purple {
    background:
        radial-gradient(
            circle,
            #f2edff 0%,
            #faf8ff 60%,
            #fff 100%
        );
}

.loyalty-visual-yellow {
    background:
        radial-gradient(
            circle,
            #fff2b3 0%,
            #fff9df 58%,
            #fff 100%
        );
}


/* ICONO CENTRAL */
.loyalty-main-icon {
    width: 120px;
    height: 120px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 34px;

    font-size: 3.4rem;

    background: #fff;

    box-shadow:
        0 18px 35px
        rgba(57, 31, 124, .12);
}

.loyalty-visual-purple .loyalty-main-icon {
    color: var(--hakkuma-purple);
}

.loyalty-visual-yellow .loyalty-main-icon {
    color: #e6a300;
}


/* ICONOS FLOTANTES */
.loyalty-floating-icon {
    position: absolute;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    box-shadow:
        0 10px 22px
        rgba(65, 32, 145, .12);
}

.floating-star,
.floating-check {
    color: var(--hakkuma-purple);

    background: #fff;
}

.floating-gift,
.floating-heart {
    color: #d99500;

    background: #fff8d7;
}

.floating-star {
    right: 21%;
    bottom: 43px;
}

.floating-check {
    right: 19%;
    bottom: 46px;
}

.floating-gift {
    right: 20%;
    bottom: 45px;
}

.floating-heart {
    right: 19%;
    bottom: 45px;
}


/* ============================================================
   CONTENIDO
============================================================ */

.loyalty-program-content {
    padding: 4px 28px 30px;

    text-align: center;
}

.loyalty-program-content h3 {
    margin: 0;

    color: var(--hakkuma-text);

    font-size: 1.35rem;
    font-weight: 850;
}

.loyalty-title-line {
    width: 38px;
    height: 3px;

    display: block;

    margin: 14px auto 18px;

    border-radius: 10px;
}

.line-purple {
    background: var(--hakkuma-purple);
}

.line-yellow {
    background: var(--hakkuma-yellow);
}

.loyalty-program-content > p {
    min-height: 95px;

    margin: 0;

    color: var(--hakkuma-text-soft);

    font-size: .9rem;
    line-height: 1.65;
}


/* ============================================================
   EJEMPLO
============================================================ */

.loyalty-example {
    min-height: 70px;

    margin-top: 24px;
    padding: 14px 15px;

    display: flex;
    align-items: center;
    gap: 12px;

    border-radius: 14px;

    text-align: left;

    font-size: .78rem;
    line-height: 1.45;
}

.loyalty-example i {
    flex: 0 0 22px;

    font-size: 1.15rem;
}

.example-purple {
    color: var(--hakkuma-purple-dark);

    background: #f4f0ff;
}

.example-yellow {
    color: #8b6500;

    background: #fff5c9;
}

.loyalty-example strong {
    font-weight: 800;
}


/* ============================================================
   CTA INFERIOR
============================================================ */

.loyalty-programs-cta {
    max-width: 1120px;

    margin:
        50px auto
        0;

    padding: 24px 30px;

    display: flex;
    align-items: center;

    gap: 22px;

    background:
        linear-gradient(
            135deg,
            #f5f1ff,
            #fff
        );

    border:
        1px solid
        rgba(84,37,201,.10);

    border-radius: 20px;

    box-shadow:
        0 12px 35px
        rgba(65, 32, 145, .06);
}

.loyalty-cta-icon {
    width: 62px;
    height: 62px;

    flex: 0 0 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--hakkuma-purple),
            var(--hakkuma-purple-dark)
        );

    font-size: 1.5rem;
}

.loyalty-cta-content {
    flex: 1;
}

.loyalty-cta-content strong {
    display: block;

    margin-bottom: 5px;

    color: var(--hakkuma-text);

    font-size: 1rem;
    font-weight: 800;
}

.loyalty-cta-content p {
    margin: 0;

    color: var(--hakkuma-text-soft);

    font-size: .85rem;
}

.loyalty-cta-action {
    flex: 0 0 auto;
}


/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1199.98px) {

    .loyalty-program-content > p {
        min-height: auto;
    }

}


@media (max-width: 991.98px) {

    .loyalty-programs-cta {
        flex-wrap: wrap;
    }

    .loyalty-cta-action {
        width: 100%;

        padding-left: 84px;
    }

}


@media (max-width: 767.98px) {

    .loyalty-program-visual {
        height: 210px;
    }

    .loyalty-main-icon {
        width: 105px;
        height: 105px;

        font-size: 3rem;
    }

    .loyalty-programs-cta {
        padding: 24px;
    }

}


@media (max-width: 575.98px) {

    .loyalty-programs-title h2 {
        font-size: 2rem;
    }

    .loyalty-program-card {
        max-width: 380px;

        margin-left: auto;
        margin-right: auto;
    }

    .loyalty-program-visual {
        height: 220px;
    }

    .loyalty-program-content {
        padding:
            5px
            23px
            26px;
    }

    .loyalty-programs-cta {
        flex-direction: column;

        text-align: center;
    }

    .loyalty-cta-content {
        text-align: center;
    }

    .loyalty-cta-action {
        width: 100%;

        padding-left: 0;
    }

    .loyalty-cta-action .btn {
        width: 100%;
    }

}




/* ============================================================
   IMÁGENES DE FORMAS DE FIDELIZACIÓN
============================================================ */

.loyalty-program-image-wrapper {
    position: relative;

    height: 250px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.loyalty-image-purple {
    background:
        radial-gradient(
            circle at center,
            #f0ebff 0%,
            #f8f5ff 56%,
            #ffffff 100%
        );
}

.loyalty-image-yellow {
    background:
        radial-gradient(
            circle at center,
            #fff0ad 0%,
            #fff8d9 56%,
            #ffffff 100%
        );
}

.loyalty-program-image {
    width: 88%;
    height: 88%;

    object-fit: contain;

    position: relative;
    z-index: 2;

    transition:
        transform .3s ease,
        filter .3s ease;
}

.loyalty-program-card:hover .loyalty-program-image {
    transform: scale(1.04);
}


/* Sombra muy suave para integrar la ilustración */
.loyalty-program-image-wrapper::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 22px;

    bottom: 24px;
    left: 50%;

    transform: translateX(-50%);

    border-radius: 50%;

    background: rgba(51, 18, 127, .08);

    filter: blur(10px);
}


/* ============================================================
   AJUSTES DE CONTENIDO
============================================================ */

.loyalty-program-content {
    padding: 8px 28px 30px;

    text-align: center;
}

.loyalty-program-content h3 {
    margin: 0;

    color: var(--hakkuma-text);

    font-size: 1.35rem;
    font-weight: 850;
}

.loyalty-program-content > p {
    min-height: 95px;

    margin: 0;

    color: var(--hakkuma-text-soft);

    font-size: .9rem;
    line-height: 1.65;
}


/* ============================================================
   RESPONSIVE IMÁGENES
============================================================ */

@media (max-width: 1199.98px) {

    .loyalty-program-image-wrapper {
        height: 230px;
    }

}


@media (max-width: 767.98px) {

    .loyalty-program-image-wrapper {
        height: 225px;
    }

    .loyalty-program-image {
        width: 82%;
        height: 82%;
    }

}


@media (max-width: 575.98px) {

    .loyalty-program-image-wrapper {
        height: 240px;
    }

    .loyalty-program-image {
        width: 78%;
        height: 78%;
    }

}



/* ============================================================
   ILUSTRACIONES SUPERIORES
============================================================ */

.loyalty-programs-container {
    position: relative;
    z-index: 2;
}


/* REGALO IZQUIERDO */
.loyalty-header-gift {
    position: absolute;

    top: 75px;
    left: 4%;

    width: clamp(130px, 12vw, 215px);
    height: auto;

    object-fit: contain;

    z-index: 1;

    pointer-events: none;

    filter:
        drop-shadow(
            0 14px 20px
            rgba(84, 37, 201, .10)
        );
}


/* ARDILLA DERECHA */
.loyalty-header-mascot {
    position: absolute;

    top: 55px;
    right: 3%;

    width: clamp(170px, 16vw, 285px);
    height: auto;

    object-fit: contain;

    z-index: 1;

    pointer-events: none;

    filter:
        drop-shadow(
            0 16px 24px
            rgba(84, 37, 201, .10)
        );
}

/* ============================================================
   RESPONSIVE - ILUSTRACIONES SUPERIORES FIDELIZACIÓN
============================================================ */

@media (max-width: 1199.98px) {

    .loyalty-header-gift {
        display: none;
    }

    .loyalty-header-mascot {
        width: 145px;
        top: 72px;
        right: 2%;
    }

}


/* Desde tablet en adelante: ocultamos ambos */
@media (max-width: 991.98px) {

    .loyalty-header-gift,
    .loyalty-header-mascot {
        display: none;
    }

    .loyalty-programs-title {
        max-width: 720px;
    }

}



/* ============================================================
   HERRAMIENTAS PARA TU NEGOCIO
============================================================ */

.business-tools-section {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}


/* ============================================================
   TÍTULO
============================================================ */

.business-tools-title {
    max-width: 900px;
    margin-bottom: 52px;
}

.business-tools-title h2 {
    max-width: 850px;
    margin-bottom: 14px;

    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
}

.business-tools-title h2 span {
    color: var(--hakkuma-purple);
}

.business-tools-title p {
    max-width: 720px;
    margin: 0;

    font-size: 1rem;
    line-height: 1.7;

    color: var(--hakkuma-text-soft);
}


/* ============================================================
   GRID
============================================================ */

.business-tools-grid {
    align-items: stretch;
}


/* ============================================================
   TARJETA
============================================================ */

.business-tool-card {
    height: 100%;

    padding: 30px 24px 28px;

    background: #ffffff;

    border: 1px solid rgba(84, 37, 201, .08);
    border-radius: 20px;

    box-shadow:
        0 10px 35px
        rgba(25, 20, 70, .06);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


.business-tool-card:hover {
    transform: translateY(-6px);

    border-color: rgba(84, 37, 201, .15);

    box-shadow:
        0 18px 42px
        rgba(25, 20, 70, .10);
}


/* ============================================================
   ICONOS
============================================================ */

.business-tool-icon {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    border-radius: 17px;

    font-size: 1.65rem;
}


/* MORADO */
.business-tool-icon.tool-purple {
    color: var(--hakkuma-purple);
    background: rgba(84, 37, 201, .08);
}


/* AMARILLO */
.business-tool-icon.tool-yellow {
    color: #d99400;
    background: rgba(255, 193, 7, .14);
}


/* ============================================================
   TEXTOS
============================================================ */

.business-tool-card h3 {
    margin-bottom: 15px;

    font-size: 1.08rem;
    line-height: 1.35;

    color: var(--hakkuma-dark);
}

.business-tool-card h3 span {
    display: block;
}


.business-tool-card p {
    margin: 0;

    font-size: .91rem;
    line-height: 1.65;

    color: var(--hakkuma-text-soft);
}


/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1199.98px) {

    .business-tool-card {
        padding: 28px 26px;
    }

}


@media (max-width: 991.98px) {

    .business-tools-title {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .business-tools-title p {
        margin-left: auto;
        margin-right: auto;
    }

}


@media (max-width: 575.98px) {

    .business-tools-title {
        margin-bottom: 36px;
    }

    .business-tools-title h2 {
        font-size: 2rem;
    }

    .business-tool-card {
        padding: 24px;
    }

    .business-tool-icon {
        width: 56px;
        height: 56px;

        margin-bottom: 18px;

        font-size: 1.45rem;
    }

}




/* ============================================================
   BENEFICIOS PARA TU NEGOCIO
============================================================ */

.business-benefits-section {
    background: #ffffff;
}


/* CONTENEDOR PRINCIPAL */
.business-benefits-box {
    position: relative;

    overflow: hidden;

    padding: 70px 70px;

    border-radius: 32px;

    color: #fff;

    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(118, 82, 223, .9),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #2c106f 0%,
            #5425c9 55%,
            #6c36db 100%
        );

    box-shadow:
        0 24px 55px
        rgba(54, 24, 126, .18);
}


/* ============================================================
   TEXTO
============================================================ */

.business-benefits-content {
    position: relative;
    z-index: 2;
}

.business-benefits-eyebrow {
    display: inline-block;

    margin-bottom: 14px;

    font-size: .78rem;
    font-weight: 800;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: var(--hakkuma-yellow);
}

.business-benefits-content h2 {
    max-width: 570px;

    margin-bottom: 18px;

    font-size: clamp(2rem, 3vw, 3.2rem);
    font-weight: 850;
    line-height: 1.08;

    color: #fff;
}

.business-benefits-description {
    max-width: 580px;

    margin-bottom: 32px;

    font-size: 1rem;
    line-height: 1.7;

    color: rgba(255,255,255,.78);
}


/* ============================================================
   LISTA DE BENEFICIOS
============================================================ */

.business-benefits-list {
    margin: 0;
    padding: 0;

    list-style: none;
}

.business-benefits-list li {
    display: flex;
    gap: 14px;

    margin-bottom: 20px;
}

.business-benefits-list li:last-child {
    margin-bottom: 0;
}

.benefit-check {
    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 2px;

    border-radius: 50%;

    background: var(--hakkuma-yellow);

    color: var(--hakkuma-purple-dark);

    font-size: .75rem;
}

.business-benefits-list strong {
    display: block;

    margin-bottom: 3px;

    font-size: .98rem;

    color: #fff;
}

.business-benefits-list small {
    display: block;

    max-width: 470px;

    font-size: .82rem;
    line-height: 1.5;

    color: rgba(255,255,255,.68);
}


/* ============================================================
   VISUAL
============================================================ */

.business-benefits-visual {
    position: relative;

    min-height: 420px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.business-benefits-glow {
    position: absolute;

    width: 360px;
    height: 360px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,196,0,.20),
            transparent 68%
        );
}

.business-benefits-image {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 560px;

    object-fit: contain;

    filter:
        drop-shadow(
            0 25px 35px
            rgba(14, 6, 45, .25)
        );
}


/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1199.98px) {

    .business-benefits-box {
        padding: 60px 50px;
    }

}


@media (max-width: 991.98px) {

    .business-benefits-box {
        padding: 55px 40px;
    }

    .business-benefits-content {
        text-align: center;
    }

    .business-benefits-description {
        margin-left: auto;
        margin-right: auto;
    }

    .business-benefits-list {
        max-width: 620px;

        margin-left: auto;
        margin-right: auto;

        text-align: left;
    }

    .business-benefits-visual {
        min-height: 330px;
        margin-top: 20px;
    }

    .business-benefits-image {
        max-width: 500px;
    }

}


@media (max-width: 575.98px) {

    .business-benefits-box {
        padding: 38px 24px;

        border-radius: 24px;
    }

    .business-benefits-content h2 {
        font-size: 2rem;
    }

    .business-benefits-description {
        font-size: .95rem;
    }

    .business-benefits-list li {
        gap: 12px;
    }

    .business-benefits-visual {
        min-height: 250px;
    }

    .business-benefits-image {
        max-width: 320px;
    }

}




/* ============================================================
   NEGOCIOS QUE CONFÍAN EN HAKKUMA
============================================================ */

.trusted-businesses-section {
    padding: 55px 0;
    background: #fff;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}

.trusted-businesses-heading {
    margin-bottom: 30px;
}

.trusted-businesses-heading h2 {
    margin: 0;
    font-size: 1.7rem;
    font-weight: 850;
}

.trusted-businesses-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 35px;
    align-items: center;
}

.trusted-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
}

.trusted-logo-item img {
    max-width: 150px;
    max-height: 55px;
    width: auto;
    height: auto;
    object-fit: contain;

    filter: grayscale(1);
    opacity: .72;

    transition:
        filter .2s ease,
        opacity .2s ease,
        transform .2s ease;
}

.trusted-logo-item img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-2px);
}


/* ============================================================
   PLANES
============================================================ */

.pricing-section {
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #faf8ff 100%
        );
}

.pricing-title {
    max-width: 760px;
}

.pricing-title p {
    margin-top: 10px;
}


/* GRID */
.pricing-grid {
    margin-top: 15px;
}


/* TARJETA */
.pricing-card {
    position: relative;

    height: 100%;

    padding: 36px 30px 30px;

    display: flex;
    flex-direction: column;

    background: #fff;

    border: 1px solid var(--border-soft);
    border-radius: 22px;

    box-shadow:
        0 12px 38px
        rgba(47, 28, 98, .06);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 20px 45px
        rgba(47, 28, 98, .11);
}

.pricing-card-featured {
    border: 2px solid var(--hakkuma-purple);

    box-shadow:
        0 20px 48px
        rgba(84, 37, 201, .13);
}


/* BADGE */
.pricing-badge {
    position: absolute;

    top: -15px;
    left: 50%;

    transform: translateX(-50%);

    padding: 7px 21px;

    border-radius: 20px;

    background: var(--hakkuma-yellow);
    color: var(--hakkuma-purple-dark);

    font-size: .68rem;
    font-weight: 900;
    white-space: nowrap;
}


/* NOMBRE */
.plan-family {
    display: block;

    margin-bottom: 4px;

    color: var(--hakkuma-purple);

    font-size: .72rem;
    font-weight: 700;
}

.pricing-card h3 {
    margin-bottom: 15px;

    font-size: 1.2rem;
    font-weight: 850;
}


/* PRECIO */
.price {
    margin: 0 0 18px;

    display: flex;
    align-items: flex-start;
}

.price sup {
    margin-top: 8px;
    margin-right: 4px;

    font-weight: 800;
}

.price strong {
    font-size: 3.2rem;
    line-height: .95;

    color: var(--hakkuma-purple-dark);
}

.price small {
    align-self: flex-end;

    margin-left: 5px;
    margin-bottom: 5px;

    color: var(--hakkuma-text-soft);
}


/* DESCRIPCIÓN */
.pricing-description {
    min-height: 50px;

    margin-bottom: 15px;

    color: var(--hakkuma-text-soft);

    font-size: .86rem;
    line-height: 1.5;
}


/* LISTA */
.pricing-card ul {
    margin: 10px 0 28px;
    padding: 0;

    list-style: none;

    flex: 1;
}

.pricing-card li {
    padding: 7px 0;

    color: var(--hakkuma-text-soft);

    font-size: .86rem;
}

.pricing-card li i {
    margin-right: 8px;

    color: var(--hakkuma-purple);
}


/* BOTONES */
.pricing-button {
    width: 100%;

    border-radius: 12px;

    text-align: center;
}

.pricing-button-outline {
    color: var(--hakkuma-purple);

    background: #f7f3ff;

    border: 1px solid rgba(84,37,201,.12);
}

.pricing-button-outline:hover {
    color: #fff;

    background: var(--hakkuma-purple);
}

.pricing-button-primary {
    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--hakkuma-purple),
            var(--hakkuma-purple-dark)
        );
}

.pricing-button-primary:hover {
    color: #fff;
}


/* ============================================================
   PROMOCIÓN PLANES
============================================================ */

.pricing-promo {
    margin-top: 32px;

    padding: 18px 25px;

    display: flex;
    align-items: center;
    gap: 18px;

    border-radius: 18px;

    background:
        linear-gradient(
            90deg,
            #fff5c9,
            #fff9e2
        );

    border: 1px solid rgba(255,196,0,.22);
}

.pricing-promo-icon {
    width: 50px;
    height: 50px;

    flex: 0 0 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: var(--hakkuma-yellow);
    color: var(--hakkuma-purple-dark);

    font-size: 1.3rem;
}

.pricing-promo-content {
    flex: 1;
}

.pricing-promo-content strong {
    display: block;

    margin-bottom: 3px;

    color: var(--hakkuma-yellow-dark);

    font-size: 1rem;
}

.pricing-promo-content span {
    color: var(--hakkuma-text-soft);

    font-size: .82rem;
}


/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 991.98px) {

    .trusted-businesses-logos {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-title {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-promo {
        flex-wrap: wrap;
    }

    .pricing-promo .btn {
        margin-left: 68px;
    }

}


@media (max-width: 767.98px) {

    .trusted-businesses-heading {
        text-align: center;
    }

    .trusted-businesses-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .pricing-promo .btn {
        width: 100%;
        margin-left: 0;
    }

}


@media (max-width: 575.98px) {

    .trusted-businesses-section {
        padding: 45px 0;
    }

    .trusted-businesses-logos {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .trusted-logo-item img {
        max-width: 120px;
    }

    .pricing-card {
        padding: 30px 24px;
    }

    .pricing-promo {
        flex-direction: column;
        align-items: flex-start;
    }

    .pricing-promo .btn {
        width: 100%;
    }

}


/* ============================================================
   BOTONES FLOTANTES
============================================================ */

.floating-actions {
    position: fixed;

    right: 22px;
    bottom: 24px;

    z-index: 1050;

    display: flex;
    flex-direction: column;
    align-items: flex-end;

    gap: 12px;
}


/* ============================================================
   BOTÓN INICIO
============================================================ */

.floating-home {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--hakkuma-yellow);
    color: var(--hakkuma-purple-dark);

    box-shadow:
        0 8px 24px
        rgba(40, 20, 90, .16);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.floating-home:hover {
    color: var(--hakkuma-purple-dark);

    transform: translateY(-2px);

    box-shadow:
        0 12px 28px
        rgba(40, 20, 90, .20);
}


/* ============================================================
   BOTONES BUSINESS / BENEFIT
============================================================ */

.floating-platform {
    width: 220px;
    min-height: 64px;

    padding: 11px 14px;

    display: flex;
    align-items: center;

    gap: 11px;

    border-radius: 15px;

    box-shadow:
        0 10px 28px
        rgba(35, 20, 85, .16);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


/* BUSINESS */
.floating-business {
    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--hakkuma-purple),
            var(--hakkuma-purple-dark)
        );
}

.floating-business:hover {
    color: #fff;
}


/* BENEFIT */
.floating-benefit {
    color: #fff;

    background:
        linear-gradient(
            135deg,
            #f2ae00,
            #ffc400
        );
}

.floating-benefit:hover {
    color: #fff;
}


.floating-platform:hover {
    transform: translateY(-2px);

    box-shadow:
        0 13px 32px
        rgba(35, 20, 85, .21);
}


/* PARTE SUPERIOR */
.floating-platform-top {
    display: flex;
    align-items: center;

    gap: 9px;
}

.floating-platform-icon {
    width: 36px;
    height: 36px;

    flex: 0 0 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: .95rem;
}

.floating-business .floating-platform-icon {
    background: rgba(255,255,255,.16);
    color: #fff;
}

.floating-benefit .floating-platform-icon {
    background: rgba(255,255,255,.22);
    color: #fff;
}

.floating-platform strong {
    font-size: .9rem;
    font-weight: 800;
}


/* SEGUNDA LÍNEA */
.floating-platform-action {
    display: block;

    margin-top: 10px;
    padding-top: 9px;

    border-top: 1px solid rgba(255,255,255,.20);

    font-size: .75rem;
    font-weight: 700;
}

.floating-benefit .floating-platform-action {
    border-top-color: rgba(51,18,127,.15);
}


/* ============================================================
   TEXTO
============================================================ */

.floating-platform-text {
    min-width: 0;

    display: flex;
    flex-direction: column;

    line-height: 1.15;
}

.floating-platform-text strong {
    color: inherit;

    font-size: .88rem;
    font-weight: 800;

    white-space: nowrap;
}

.floating-platform-text small {
    display: block;

    margin-top: 4px;

    color: rgba(255,255,255,.78);

    font-size: .66rem;
    font-weight: 600;

    white-space: nowrap;
}

/* ============================================================
   TABLET Y MÓVIL
============================================================ */

@media (max-width: 991.98px) {

    .floating-actions {
        right: 16px;
        bottom: 18px;

        gap: 10px;
    }

    .floating-platform {
        width: 48px;
        height: 48px;

        padding: 0;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 50%;
    }

    .floating-platform-top {
        display: flex;
    }

    .floating-platform-top strong,
    .floating-platform-action {
        display: none;
    }

    .floating-platform-icon {
        width: auto;
        height: auto;

        background: transparent !important;

        font-size: 1.15rem;
    }

    .floating-home {
        width: 48px;
        height: 48px;
    }

}


/* ============================================================
   MÓVIL PEQUEÑO
============================================================ */

@media (max-width: 575.98px) {

    .floating-actions {
        right: 12px;
        bottom: 14px;
    }

    .floating-home,
    .floating-platform {
        width: 44px;
        height: 44px;
    }

}


/* ============================================================
   FAQ + CONTACTO
============================================================ */

#contacto {
    position: relative;
}


/* ============================================================
   FAQ
============================================================ */

.faq-heading {
    margin-bottom: 28px;
}

.faq-heading h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 850;
}


/* TARJETAS FAQ */
.faq-accordion .accordion-item {
    overflow: hidden;

    margin-bottom: 16px;

    border: 1px solid rgba(84, 37, 201, .06);

    border-radius: 18px !important;

    background: #ffffff;

    box-shadow:
        0 10px 30px
        rgba(45, 24, 98, .04);
}


/* BOTÓN */
.faq-accordion .accordion-button {
    padding: 22px 24px;

    color: var(--hakkuma-text);

    background: #fff;

    font-size: 1rem;
    font-weight: 800;

    box-shadow: none;
}


/* ABIERTO */
.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--hakkuma-purple);

    background:
        linear-gradient(
            135deg,
            #f4f0ff,
            #f8f5ff
        );

    box-shadow: none;
}


/* BODY */
.faq-accordion .accordion-body {
    padding: 22px 24px;

    color: var(--hakkuma-text-soft);

    font-size: .92rem;
    line-height: 1.7;
}


/* ============================================================
   CONTACTO WHATSAPP
============================================================ */

.whatsapp-contact-card {
    position: relative;

    height: 100%;

    overflow: hidden;

    padding: 38px 36px 28px;

    background: #ffffff;

    border:
        1px solid
        rgba(84, 37, 201, .07);

    border-radius: 28px;

    box-shadow:
        0 18px 45px
        rgba(52, 29, 110, .08);
}


/* DECORACIÓN SUAVE */
.whatsapp-contact-bg {
    position: absolute;

    width: 320px;
    height: 320px;

    right: -90px;
    top: 45px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(84, 37, 201, .10),
            rgba(84, 37, 201, .03) 55%,
            transparent 70%
        );

    pointer-events: none;
}


/* ============================================================
   TEXTO
============================================================ */

.whatsapp-contact-content {
    position: relative;

    z-index: 2;
}


/* BADGE */
.whatsapp-help-badge {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin-bottom: 20px;

    padding: 8px 13px;

    border-radius: 30px;

    background: rgba(37, 211, 102, .10);

    color: #249c50;

    font-size: .74rem;
    font-weight: 800;
}


.whatsapp-contact-content h2 {
    margin-bottom: 18px;

    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 850;

    line-height: 1.05;

    color: var(--hakkuma-text);
}


.whatsapp-contact-content h2 span {
    display: block;

    margin-top: 4px;

    color: #25b95a;
}


.whatsapp-contact-content p {
    max-width: 450px;

    margin-bottom: 24px;

    color: var(--hakkuma-text-soft);

    font-size: .96rem;

    line-height: 1.7;
}


/* ============================================================
   BOTÓN WHATSAPP
============================================================ */

.whatsapp-contact-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 13px 20px;

    border: 0;

    border-radius: 12px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #21c45a,
            #25d366
        );

    box-shadow:
        0 10px 25px
        rgba(37, 211, 102, .20);
}


.whatsapp-contact-button:hover {
    color: #fff;

    transform: translateY(-2px);

    box-shadow:
        0 14px 30px
        rgba(37, 211, 102, .28);
}


/* ============================================================
   NOTA
============================================================ */

.whatsapp-contact-note {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 18px;
}


.whatsapp-contact-note span {
    width: 24px;
    height: 24px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f0ebff;

    color: var(--hakkuma-purple);

    font-size: .65rem;
}


.whatsapp-contact-note small {
    color: var(--hakkuma-text-soft);

    font-size: .72rem;
}


/* ============================================================
   ILUSTRACIÓN
============================================================ */

.whatsapp-contact-visual {
    position: relative;

    min-height: 300px;

    display: flex;

    align-items: flex-end;
    justify-content: center;
}


.whatsapp-contact-shape {
    position: absolute;

    width: 230px;
    height: 230px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(84, 37, 201, .12),
            rgba(84, 37, 201, .02) 70%
        );
}


.whatsapp-contact-mascot {
    position: relative;

    z-index: 2;

    width: 120%;

    max-width: 320px;

    object-fit: contain;

    filter:
        drop-shadow(
            0 18px 25px
            rgba(35, 18, 82, .12)
        );
}


/* ============================================================
   BENEFICIOS RÁPIDOS
============================================================ */

.whatsapp-support-features {
    position: relative;

    z-index: 3;

    margin-top: 28px;

    padding: 18px 20px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

    background:
        linear-gradient(
            135deg,
            #f7f3ff,
            #fbf9ff
        );

    border-radius: 18px;
}


.whatsapp-support-item {
    display: flex;

    align-items: center;

    gap: 10px;
}


.whatsapp-support-item > span {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eee7ff;

    color: var(--hakkuma-purple);

    font-size: .85rem;
}


.whatsapp-support-item strong {
    display: block;

    color: var(--hakkuma-text);

    font-size: .76rem;

    line-height: 1.25;
}


/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1199.98px) {

    .whatsapp-contact-card {
        padding: 34px 30px 26px;
    }

    .whatsapp-support-features {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 991.98px) {

    .faq-heading {
        text-align: center;
    }

    .whatsapp-contact-card {
        margin-top: 10px;
    }

}


@media (max-width: 767.98px) {

    .whatsapp-contact-card {
        padding: 30px 24px;
    }

    .whatsapp-contact-content {
        text-align: center;
    }

    .whatsapp-contact-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .whatsapp-contact-note {
        justify-content: center;
    }

    .whatsapp-contact-visual {
        min-height: 260px;
    }

    .whatsapp-contact-mascot {
        max-width: 250px;
    }

}


@media (max-width: 575.98px) {

    .whatsapp-contact-card {
        padding: 26px 18px;

        border-radius: 22px;
    }

    .whatsapp-contact-content h2 {
        font-size: 2rem;
    }

    .whatsapp-contact-button {
        width: 100%;
    }

    .whatsapp-contact-visual {
        min-height: 220px;
    }

    .whatsapp-contact-mascot {
        max-width: 220px;
    }

    .whatsapp-support-features {
        padding: 16px;
    }

}


/* ============================================================
   VIDEO - HAKKUMA EN ACCIÓN
============================================================ */

.how-video-wrapper {
    margin-top: 75px;
    padding-top: 60px;

    border-top: 1px solid var(--border-soft);
}


/* TARJETA COMPLETA */
.how-video-card {
    width: 100%;
    max-width: 780px;

    margin: 0 auto;

    padding: 32px;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #faf8ff 100%
        );

    border: 1px solid rgba(84, 37, 201, .08);
    border-radius: 26px;

    box-shadow:
        0 16px 45px
        rgba(50, 25, 120, .08);
}


/* ============================================================
   CABECERA
============================================================ */

.how-video-header {
    max-width: 580px;

    margin:
        0 auto
        25px;
}

.how-video-header .section-eyebrow {
    margin-bottom: 8px;
}

.how-video-header h3 {
    margin: 0;

    color: var(--hakkuma-text);

    font-size: 1.65rem;
    font-weight: 850;
    line-height: 1.2;
}

.how-video-header p {
    margin:
        8px 0
        0;

    color: var(--hakkuma-text-soft);

    font-size: .9rem;
}


/* ============================================================
   VIDEO
============================================================ */

.how-video {
    overflow: hidden;

    border-radius: 18px;

    background: var(--hakkuma-purple-dark);

    border:
        1px solid
        rgba(84, 37, 201, .12);

    box-shadow:
        0 14px 35px
        rgba(39, 16, 103, .14);
}

.how-video video {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 767.98px) {

    .how-video-wrapper {
        margin-top: 55px;
        padding-top: 45px;
    }

    .how-video-card {
        padding: 24px;
        border-radius: 22px;
    }

    .how-video-header {
        margin-bottom: 20px;
    }

    .how-video-header h3 {
        font-size: 1.45rem;
    }

}


@media (max-width: 575.98px) {

    .how-video-card {
        padding: 18px;
    }

    .how-video {
        border-radius: 14px;
    }

    .how-video-header h3 {
        font-size: 1.3rem;
    }

}


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

.hakkuma-navbar {
    padding: 14px 0;

    background: rgba(255,255,255,.96) !important;

    backdrop-filter: blur(10px);

    border-bottom:
        1px solid
        rgba(84, 37, 201, .06);

    box-shadow:
        0 5px 25px
        rgba(30, 15, 70, .04);
}


.navbar-logo {
    width: 145px;
    height: auto;
}


/* LINKS */
.hakkuma-navbar .nav-link {
    position: relative;

    padding:
        10px 12px !important;

    color: var(--hakkuma-text);

    font-size: .86rem;
    font-weight: 650;

    white-space: nowrap;

    transition:
        color .2s ease;
}


.hakkuma-navbar .nav-link:hover,
.hakkuma-navbar .nav-link.active {
    color: var(--hakkuma-purple);
}


/* INDICADOR ACTIVO */
.hakkuma-navbar .nav-link::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 2px;

    width: 0;
    height: 3px;

    transform: translateX(-50%);

    border-radius: 20px;

    background: var(--hakkuma-yellow);

    transition:
        width .2s ease;
}


.hakkuma-navbar .nav-link:hover::after,
.hakkuma-navbar .nav-link.active::after {
    width: 24px;
}


/* REDES */
.social-top a {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    color: var(--hakkuma-purple);

    border-radius: 50%;

    font-size: .95rem;

    transition:
        background .2s ease,
        color .2s ease;
}


.social-top a:hover {
    color: #fff;

    background: var(--hakkuma-purple);
}


/* CTA */
.navbar-main-cta {
    padding:
        10px 17px;

    border-radius: 22px;

    font-size: .82rem;

    white-space: nowrap;
}


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

@media (max-width: 991.98px) {

    .hakkuma-navbar {
        padding: 11px 0;
    }

    .navbar-logo {
        width: 130px;
    }

    .navbar-collapse {
        margin-top: 12px;

        padding:
            16px
            18px
            20px;

        border-radius: 0 0 18px 18px;

        background: #fff;

        box-shadow:
            0 15px 30px
            rgba(40, 20, 90, .08);
    }

    .hakkuma-navbar .nav-link {
        padding:
            11px 4px !important;
    }

    .hakkuma-navbar .nav-link::after {
        display: none;
    }

    .navbar-actions {
        margin-top: 12px;

        padding-top: 15px;

        border-top:
            1px solid
            var(--border-soft);
    }

    .navbar-main-cta {
        width: 100%;

        text-align: center;
    }

}