

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 0;
    gap: 40px;
}

.hero-content {
    flex: 1.5;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

.highlight {
    color: var(--color-primary);
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-description {
    flex: 1;
}

.hero-description p {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
}


.features-section {
    padding-bottom: 100px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 20px;
}


.card-large {
    grid-column: span 2;
}

.card-tall {
    grid-row: span 2;
}

.card-wide {
    grid-column: span 3;
}

.card {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.card:hover {
    background-color: var(--color-surface-hover);
    border-color: var(--color-primary-muted);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    z-index: 2;
}

.card-header .icon {
    font-size: 1.4rem;
    color: var(--color-primary);
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.card-desc {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    z-index: 2;
    position: relative;
    flex-grow: 1;
}



.card-visual {
    margin-top: auto;
    height: 160px;
    border-radius: 12px;
    background-color: var(--color-surface-muted);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}


.menu-skeleton {
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.skeleton-header {
    height: 16px; width: 40%;
    background-color: var(--color-border-light);
    border-radius: 4px;
    margin-bottom: 8px;
}
.skeleton-item {
    display: flex; gap: 12px; align-items: center;
    transform: translateX(0);
    transition: transform 0.4s ease;
}
.skel-img {
    width: 40px; height: 40px;
    background-color: var(--color-border-light);
    border-radius: 8px;
    transition: background-color 0.4s ease;
}
.skel-text { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.skel-line { height: 8px; background-color: var(--color-border-light); border-radius: 4px; }

.card:hover .visual-menu .skeleton-item { transform: translateX(-10px); }
.card:hover .visual-menu .skeleton-item:nth-child(3) { transform: translateX(-20px); transition-delay: 0.1s;}
.card:hover .visual-menu .skel-img { background-color: var(--color-primary-muted); }



.visual-nfc {
    perspective: 1000px;
}
.smart-card {
    width: 120px; height: 75px;
    background: linear-gradient(135deg, #1E231C, var(--color-border-light));
    border: 1px solid var(--color-border);
    border-radius: 10px;
    position: relative;
    display: flex; align-items: center; justify-content: flex-end; padding: 12px;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s ease;
    z-index: 2;
}
.card-chip {
    width: 20px; height: 16px;
    background-color: var(--color-secondary);
    border-radius: 3px; position: absolute; left: 12px;
}
.card-signal { color: var(--color-primary); font-size: 1.2rem; transform: rotate(90deg);}

.ripple-container {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
}
.ripple {
    position: absolute; width: 0; height: 0;
    border: 2px solid var(--color-primary); border-radius: 50%; opacity: 0;
}
.card:hover .visual-nfc .smart-card {
    transform: rotateX(20deg) rotateY(-25deg) translateZ(30px);
    box-shadow: 15px 15px 30px rgba(0,0,0,0.5);
    background: linear-gradient(135deg, var(--color-primary-muted), var(--color-primary));
}
.card:hover .visual-nfc .card-signal { color: var(--color-background); }
.card:hover .visual-nfc .ripple { animation: rippleEffect 2s infinite ease-out; }
.card:hover .visual-nfc .ripple.delay { animation-delay: 1s; }

@keyframes rippleEffect {
    0% { width: 0; height: 0; opacity: 0.8; }
    100% { width: 200px; height: 200px; opacity: 0; }
}



.qr-mockup {
    width: 80px; height: 80px;
    border: 2px solid var(--color-primary-muted);
    border-radius: 8px; position: relative;
    padding: 8px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.qr-dot { background-color: var(--color-border-light); border-radius: 4px; transition: all 0.3s ease;}
.scanner-line {
    position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background-color: var(--color-secondary);
    box-shadow: 0 0 10px var(--color-secondary);
    opacity: 0; transition: opacity 0.3s ease;
}
.card:hover .visual-qr .qr-dot { background-color: var(--color-primary); }
.card:hover .visual-qr .qr-dot.d1 { border-radius: 0 8px 0 0; }
.card:hover .visual-qr .scanner-line {
    opacity: 1; animation: scan 2s infinite linear alternate;
}
@keyframes scan {
    0% { top: 0; }
    100% { top: 100%; }
}



.chart-bars {
    display: flex; align-items: flex-end; gap: 12px; height: 80px; width: 80%;
}
.chart-bars .bar {
    flex: 1; height: 10%;
    background-color: var(--color-border-light);
    border-radius: 4px 4px 0 0;
    transition: height 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), background-color 0.3s ease;
}
.card:hover .visual-chart .bar {
    height: var(--target-height); background-color: var(--color-primary);
}
.card:hover .visual-chart .bar:nth-child(4) { background-color: var(--color-secondary); }



.api-nodes {
    position: relative; width: 100%; height: 100%;
}
.node {
    position: absolute; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; background-color: var(--color-surface);
    border: 2px solid var(--color-border-light); transition: all 0.5s ease;
}
.central-node {
    width: 60px; height: 60px; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2;
    border-color: var(--color-primary);
}
.central-node img { width: 30px; }
.connection {
    width: 40px; height: 40px; font-size: 1.1rem; color: var(--color-text-secondary); opacity: 0.5;
}
.pos-1 { top: 20%; left: 30%; }
.pos-2 { top: 60%; left: 20%; }
.pos-3 { top: 40%; right: 25%; }

.card:hover .visual-api .connection {
    opacity: 1; color: var(--color-primary); border-color: var(--color-primary-muted);
}
.card:hover .visual-api .pos-1 { top: 15%; left: 35%; }
.card:hover .visual-api .pos-2 { top: 65%; left: 25%; }
.card:hover .visual-api .pos-3 { top: 35%; right: 30%; }



@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .card-large, .card-wide {
        grid-column: span 2;
    }
    .card-tall {
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 0;
    }
    .hero-actions {
        justify-content: center;
    }
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .card-large, .card-wide, .card-tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
}

.visual-loyalty {
    perspective: 1000px;
}
.reward-box {
    width: 64px; height: 64px;
    background-color: var(--color-surface);
    border: 2px solid var(--color-border-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
}
.reward-star {
    color: var(--color-warning);
    font-size: 1.8rem;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.spark {
    position: absolute; width: 6px; height: 6px;
    background-color: var(--color-warning);
    border-radius: 50%; opacity: 0;
    transition: all 0.5s ease-out; z-index: 1;
}

.card:hover .visual-loyalty .reward-box {
    transform: scale(1.15) translateY(-5px);
    border-color: var(--color-warning);
    box-shadow: 0 10px 25px rgba(214, 166, 111, 0.2);
    background-color: rgba(214, 166, 111, 0.1);
}
.card:hover .visual-loyalty .reward-star {
    transform: rotate(360deg) scale(1.1);
}
.card:hover .visual-loyalty .spark { opacity: 1; }
.card:hover .visual-loyalty .s1 { transform: translate(35px, -35px) scale(1.5); }
.card:hover .visual-loyalty .s2 { transform: translate(-35px, -25px) scale(1.2); }
.card:hover .visual-loyalty .s3 { transform: translate(15px, -45px) scale(0.8); }
.card:hover .visual-loyalty .s4 { transform: translate(-20px, 35px) scale(1.3); }




.visual-nfc {
    perspective: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pro-smart-card {
    width: 140px; height: 90px;
    background: linear-gradient(145deg, #2A3228, #171B16);
    border: 1px solid var(--color-border-light);
    border-radius: 12px;
    position: relative;
    display: flex; align-items: center; justify-content: flex-end; padding: 16px;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s ease;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0,0,0,0.4);
}

.card-glare {
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: left 0.8s ease;
}

.pro-smart-card .card-chip {
    width: 24px; height: 20px;
    background: linear-gradient(135deg, #FFD700, #DAA520);
    border-radius: 4px; position: absolute; left: 16px;
    border: 1px solid rgba(0,0,0,0.2);
}

.pro-smart-card .card-signal { 
    color: var(--color-primary-muted); 
    font-size: 1.5rem; 
    transform: rotate(90deg);
    transition: color 0.3s ease;
}

.card:hover .visual-nfc .pro-smart-card {
    transform: rotateX(25deg);
    box-shadow: 20px 25px 40px rgba(0,0,0,0.6);
    border-color: var(--color-primary);
}

.card:hover .visual-nfc .card-glare {
    left: 200%;
}

.card:hover .visual-nfc .card-signal { 
    color: var(--color-primary); 
    text-shadow: 0 0 10px var(--color-primary);
}



.visual-digital-cards {
    perspective: 1000px;
}

.card-stack {
    position: relative;
    width: 140px;
    height: 80px;
}

.d-card {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: 10px;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    display: flex; align-items: flex-end; padding: 12px;
    font-size: 0.8rem; font-weight: 600;
}

.d-card-back {
    background-color: var(--color-surface-hover);
    border: 1px solid var(--color-border);
    transform: translateY(-10px) scale(0.9);
    z-index: 1;
}

.d-card-middle {
    background-color: var(--color-primary-muted);
    border: 1px solid var(--color-border-light);
    transform: translateY(-5px) scale(0.95);
    z-index: 2;
}

.d-card-front {
    background: linear-gradient(135deg, var(--color-secondary), #D6A66F);
    color: #10130F;
    border: 1px solid rgba(255,255,255,0.2);
    transform: translateY(0) scale(1);
    z-index: 3;
    gap: 6px;
    justify-content: flex-end;
}

.card:hover .visual-digital-cards .d-card-back {
    transform: translateY(-30px) translateZ(-40px) rotate(-10deg) scale(0.9);
}

.card:hover .visual-digital-cards .d-card-middle {
    transform: translateY(-15px) translateZ(-20px) rotate(5deg) scale(0.95);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.card:hover .visual-digital-cards .d-card-front {
    transform: translateY(10px) translateZ(30px) rotate(-5deg) scale(1.05);
    box-shadow: 0 15px 30px rgba(214, 166, 111, 0.3);
}



.dashboard-preview-section {
    padding: 60px 24px 120px;
}


.dash-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.dash-section-header h2 {
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--color-text-secondary);
    line-height: 1.3;
}

.dash-section-header h2 strong {
    color: var(--color-text-primary);
    font-weight: 600;
}

.view-all-link {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    text-decoration: underline;
    text-underline-offset: 6px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-all-link:hover {
    color: var(--color-text-primary);
}


.dash-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dash-large {
    grid-column: span 2;
}


.dash-card {
    background-color: var(--color-background); 
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.dash-card:hover {
    border-color: var(--color-border-light);
    background-color: var(--color-surface);
}


.dash-large {
    min-height: 400px;
    justify-content: space-between;
}

.dash-card-content {
    padding: 32px 32px 0;
}

.dash-icon-wrapper {
    width: 40px; height: 40px;
    background-color: var(--color-surface-hover);
    border: 1px solid var(--color-border-light);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--color-primary);
    margin-bottom: 20px;
}

.dash-large h3 {
    font-size: 1.25rem;
    color: var(--color-text-primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.dash-large p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}



.dash-mockup-wrapper {
    margin-top: 32px;
    padding: 0 32px;
    display: flex;
    justify-content: center;
}

.mockup-window {
    width: 100%;
    height: 180px;
    background-color: #0B0D0A;
    border: 1px solid var(--color-border);
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    display: flex;
    flex-direction: column;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
    overflow: hidden;
    transition: transform 0.4s ease;
}

.dash-large:hover .mockup-window {
    transform: translateY(-5px);
}


.m-header {
    height: 28px;
    border-bottom: 1px solid var(--color-border);
    background-color: #121511;
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 6px;
}

.m-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background-color: var(--color-border-light);
}


.m-body {
    display: flex;
    flex: 1;
    padding: 12px;
    gap: 16px;
}

.m-sidebar {
    width: 25%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-left: 1px solid var(--color-border); 
    padding-left: 12px;
}

.m-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}


.m-line {
    height: 6px;
    background-color: var(--color-border-light);
    border-radius: 3px;
    transition: background-color 0.3s ease;
}
.w-full { width: 100%; }
.w-75 { width: 75%; }
.w-50 { width: 50%; }

.m-line.active { background-color: var(--color-primary-muted); }
.m-line.active-sec { background-color: rgba(243, 216, 194, 0.4); } 


.m-top-stats {
    display: flex; gap: 8px;
}

.m-stat-box {
    flex: 1; height: 30px;
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 6px;
}

.m-chart-area {
    flex: 1;
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding: 8px;
}

.m-chart-bar {
    width: 12%;
    background-color: var(--color-border-light);
    border-radius: 2px 2px 0 0;
    transition: height 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), background-color 0.3s;
}


.h-1 { height: 20%; } .h-2 { height: 40%; } .h-3 { height: 30%; } .h-4 { height: 60%; } .h-5 { height: 45%; }


.dash-large:hover .m-chart-area .m-chart-bar { background-color: var(--color-primary-muted); }
.dash-large:hover .m-chart-area .h-1 { height: 40%; }
.dash-large:hover .m-chart-area .h-2 { height: 70%; }
.dash-large:hover .m-chart-area .h-3 { height: 50%; }
.dash-large:hover .m-chart-area .h-4 { height: 90%; background-color: var(--color-primary); }
.dash-large:hover .m-chart-area .h-5 { height: 65%; }



.m-grid-area {
    display: flex;
    gap: 8px;
    height: 100%;
}

.m-grid-item {
    flex: 1;
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform 0.4s ease, border-color 0.3s;
}

.m-img-placeholder {
    width: 100%;
    height: 40px;
    background-color: var(--color-border-light);
    border-radius: 4px;
    transition: background-color 0.3s;
}


.dash-large:hover .target-item {
    border-color: var(--color-secondary);
    transform: translateY(-4px);
    box-shadow: 0 4px 10px rgba(243, 216, 194, 0.1);
}
.dash-large:hover .target-item .m-img-placeholder {
    background-color: rgba(243, 216, 194, 0.2);
}


@media (max-width: 1024px) {
    .dash-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .dash-large {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .dash-section-header h2 {
        font-size: 1.8rem;
    }
    .dash-grid {
        grid-template-columns: 1fr;
    }
    .dash-card-content, .dash-mockup-wrapper {
        padding: 24px 20px;
    }
}


.trust-section {
    padding: 60px 0 100px 0;
    margin-top: 20px;
    overflow: hidden; 
}

.trust-title {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 50px;
    letter-spacing: 0.5px;
}


.trust-circle-container {
    position: relative;
    width: 100%;
    max-width: 650px; 
    height: 400px; 
    margin: 0 auto;
}


.trust-item-glass {
    position: absolute; 
    background: var(--color-text-primary); 
    border: 1px solid rgba(255, 255, 255, 0.08); 
    border-radius: 20px; 
    width: 160px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}



.pos-1 { top: 0; left: 50%; margin-left: -80px; animation: float-1 5s ease-in-out infinite; }

.pos-2 { top: 32%; right: 0; animation: float-2 6.2s ease-in-out infinite 1.2s; }

.pos-3 { top: 60%; right: 15%; animation: float-2 5.8s ease-in-out infinite 0.5s; }

.pos-4 { bottom: 0; left: 12%; animation: float-2 6.5s ease-in-out infinite 1.8s; }

.pos-5 { top: 32%; left: 0; animation: float-2 5.3s ease-in-out infinite 0.9s; }



.trust-logo {
    height: 100%;
    max-height: 100%;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(70%); 
    transition: all 0.4s ease;
}


.trust-item-glass:hover {
    background: rgba(255, 255, 255, 0.87); 
    border-color: rgba(143, 164, 134, 0.5); 
    box-shadow: 0 15px 30px rgba(143, 164, 134, 0.15); 
    z-index: 10;
    animation-play-state: paused; 
}

.trust-item-glass:hover .trust-logo {
    filter: grayscale(0%) opacity(100%); 
    transform: scale(1.15); 
}


@keyframes float-1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
@keyframes float-2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}


@media (max-width: 768px) {
    .trust-section {
        padding: 40px 0 60px 0;
    }
    .trust-circle-container {
        max-width: 320px; 
        height: 320px;
    }
    
    .trust-item-glass {
        width: 100px;
        height: 65px;
        padding: 10px 14px;
        border-radius: 14px;
    }
    
    .pos-1 { margin-left: -50px; } 
    .pos-2 { right: -10px; top: 25%; }
    .pos-3 { right: 8%; bottom: 10px; }
    .pos-4 { left: 8%; bottom: 10px; }
    .pos-5 { left: -10px; top: 25%; }
}


.pricing-section {
    padding: 80px 0;
}

.section-header-center {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.section-header-center h2 {
    font-size: 2.2rem;
    color: var(--color-text-primary);
    margin-bottom: 16px;
}

.section-header-center p {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}


.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: center; 
    margin: 0 2pc;
}


.pricing-card {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary-muted);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.plan-name {
    font-size: 1.4rem;
    color: var(--color-text-primary);
    margin-bottom: 8px;
}

.plan-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    height: 48px; 
}

.plan-price {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--color-border-light);
}

.plan-price span {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.plan-features {
    flex-grow: 1;
    margin-bottom: 40px;
}

.plan-features li {
    margin-bottom: 16px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.plan-features li i {
    color: var(--color-primary);
    font-size: 1rem;
}

.plan-features li.disabled {
    color: var(--color-text-muted);
    opacity: 0.6;
}

.plan-features li.disabled i {
    color: var(--color-error);
}


.popular-plan {
    background: linear-gradient(145deg, var(--color-primary) 0%, #6d8264 100%);
    border: none;
    transform: scale(1.05); 
    position: relative;
    box-shadow: 0 20px 40px rgba(143, 164, 134, 0.2);
    color: var(--color-background);
}

.popular-plan:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 50px rgba(143, 164, 134, 0.3);
}

.popular-plan .plan-name,
.popular-plan .plan-price span,
.popular-plan .plan-price {
    color: var(--color-background);
}

.popular-plan .plan-desc {
    color: rgba(16, 19, 15, 0.7);
}

.popular-plan .plan-price {
    border-bottom-color: rgba(16, 19, 15, 0.1);
}

.popular-plan .plan-features li {
    color: var(--color-background);
}

.popular-plan .plan-features li i {
    color: var(--color-background); 
}


.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-warning);
    color: var(--color-background);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    white-space: nowrap;
}


@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .popular-plan {
        transform: scale(1); 
    }
    
    .popular-plan:hover {
        transform: translateY(-10px);
    }
}

.product-box-container {
    max-width: 400px;
    margin: 0 auto;
    cursor: pointer;
    perspective: 1000px;
}

.real-product-box {
    background: linear-gradient(145deg, var(--color-surface) 0%, rgba(143,164,134,0.05) 100%);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.real-product-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 5px;
    background: var(--color-primary);
}

.real-product-box:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(143,164,134,0.2);
    border-color: var(--color-primary);
}

.product-box-img {
    width: 100%;
    max-width: 250px;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
}

.real-product-box:hover .product-box-img {
    transform: scale(1.05);
}

.product-box-title {
    font-size: 1.5rem;
    color: var(--color-text-primary);
    margin-bottom: 8px;
}

.product-box-subtitle {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.view-product-btn {
    background: rgba(143,164,134,0.1);
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight:900;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-family: 'Thmanyah Sans', sans-serif;
    cursor: pointer;
    width: 100%;
    justify-content: center;
}

.real-product-box:hover .view-product-btn {
    background: var(--color-primary);
    color: #fff;
}




.product-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.product-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.product-modal-content {
    background: var(--color-background);
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    display: flex;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.product-modal-overlay.active .product-modal-content {
    transform: scale(1) translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 24px;
    left: 24px; 
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.modal-close-btn:hover {
    background: var(--color-error);
}

.modal-gallery {
    flex: 1;
    background: var(--color-surface);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


.modal-images-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    overflow: hidden;
}

.modal-images-wrapper img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: perfectCrossfade 12s infinite;
}
.modal-images-wrapper img:nth-child(1) { animation-delay: 0s; }
.modal-images-wrapper img:nth-child(2) { animation-delay: 4s; }
.modal-images-wrapper img:nth-child(3) { animation-delay: 8s; }

@keyframes perfectCrossfade {
    0% { opacity: 0; }
    10% { opacity: 1; }
    33% { opacity: 1; }
    43% { opacity: 0; }
    100% { opacity: 0; }
}

.modal-info {
    flex: 1;
    padding: 48px;
    overflow-y: auto;
}

.modal-info h2 {
    font-size: 2.2rem;
    color: var(--color-text-primary);
    margin-bottom: 16px;
}

.modal-info p {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.modal-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.modal-features li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 1.05rem;
    background: rgba(255,255,255,0.02);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}
.modal-features li i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

@media (max-width: 900px) {
    .product-modal-content {
        flex-direction: column;
        overflow-y: auto;
    }
    .modal-gallery {
        padding: 24px;
    }
    .modal-info {
        padding: 24px;
    }
}

.pricing-teaser-section {
    margin: 80px auto;
    max-width: 1100px;
    padding: 0 20px;
}

.teaser-box {
    background: linear-gradient(145deg, var(--color-surface) 0%, rgba(143,164,134,0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 64px;
    display: flex;
    align-items: center;
    gap: 64px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}


.teaser-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(143,164,134,0.05) 0%, transparent 70%);
    animation: pulse-glow 6s infinite alternate;
    z-index: 0;
}

.teaser-content {
    flex: 1.2;
    position: relative;
    z-index: 1;
}

.teaser-content h2 {
    font-size: 2.6rem;
    color: var(--color-text-primary);
    margin-bottom: 16px;
    line-height: 1.4;
}

.teaser-content p {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.teaser-visual {
    flex: 1;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}


.floating-cards-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
}


.float-card.primary {
    position: absolute;
    width: 70%;
    top: 0%;
    right: 0%;
    z-index: 2;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.1);
    animation: float-main 6s ease-in-out infinite;
}


.float-sub-card {
    position: absolute;
    width: 75%;
    bottom: 5%;
    left: -10%;
    background: rgb(22 26 21 / 94%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
    z-index: 3;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    animation: float-alt 7s ease-in-out infinite;
}

.sub-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--color-text-primary);
}

.sub-header i {
    color: #D6A66F;
    font-size: 1.4rem;
}

.sub-header span {
    font-size: 1.2rem;
    font-weight: 700;
}

.sub-line {
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    margin-bottom: 12px;
}
.sub-line.w-full { width: 100%; }
.sub-line.w-75 { width: 75%; }
.sub-line.w-50 { width: 50%; background: var(--color-primary); }


@keyframes float-main {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float-alt {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(15px) rotate(-2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulse-glow {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.3); opacity: 1; }
}


@media (max-width: 992px) {
    .float-sub-card {
        display: none;
    }

    .teaser-box {
        flex-direction: column;
        text-align: center;
        padding: 48px 24px;
        gap: 48px;
    }
    .teaser-content h2 {
        font-size: 2.2rem;
    }
    .floating-cards-container {
        max-width: 320px;
        margin: 0 auto;
    }
    .teaser-content .btn-primary {
        width: 100%;
        justify-content: center;
    }
}
