:root {
    --primary-color: #6592e6;
    --primary-hover: #2260d2;
    --secondary-color: #6888a7;
    --brand-red: #dc2626;
    --brand-dark-red: #3d0505;
    --brand-accent: #01a8ea;
    --accent-gold: #ff9900;
    --accent-yellow: #ffff00;
    --text-dark: #111827;
    --text-muted: #374151;
    --text-secondary: #4b5563;
    --bg-light: #ffffff;
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Jost', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease, background-position 2s ease-in-out;
}

a:hover {
    color: var(--primary-hover);
}

/* --- Typography Helpers --- */
.display-1 {
    font-family: 'Jost', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    line-height: 1.1;
    font-weight: 700;
}
.display-1 > .mbr-iconfont { font-size: 3rem; }

.display-2 {
    font-family: 'Jost', sans-serif;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    line-height: 1.15;
    font-weight: 700;
}
.display-2 > .mbr-iconfont { font-size: 2.5rem; }

.display-4 {
    font-family: 'Jost', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 1.5;
}
.display-4 > .mbr-iconfont { font-size: 1.75rem; }

.display-5 {
    font-family: 'Jost', sans-serif;
    font-size: clamp(1.6rem, 3.8vw, 2.3rem);
    line-height: 1.4;
}
.display-5 > .mbr-iconfont { font-size: 3.125rem; }

.display-7 {
    font-family: 'Jost', sans-serif;
    font-size: clamp(1.2rem, 2.8vw, 1.6rem);
    line-height: 1.5;
}
.display-7 > .mbr-iconfont { font-size: 2.125rem; }

.display-8 {
    font-family: 'Jost', sans-serif;
    font-size: 1.4rem;
    line-height: 1.5;
}

/* Utility Text Colors */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--accent-gold) !important; }
.text-danger { color: var(--brand-red) !important; }
.text-warning { color: var(--accent-yellow) !important; }
.text-white { color: #ffffff !important; }
.text-black { color: #232323 !important; }

/* --- Sticky Header Navigation --- */
.visiflora-nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #0b2652;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    z-index: 9999;
    padding: 14px 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-logo {
    height: 40px;
    width: auto;
    display: block;
    border-radius: 8px;
    background-color: #8e1309;
}

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.menu-link {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.menu-link:hover {
    color: #fef9c3;
}

.nav-cta-btn {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    background-color: var(--brand-accent);
    padding: 12px 24px;
    border-radius: 40px;
    text-decoration: none;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 12px rgba(222, 119, 40, 0.2);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-cta-btn:hover {
    background-color: #ef9a0b;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(239, 154, 11, 0.35);
}

@media (max-width: 991px) {
    .nav-menu { display: none !important; }
}

.hero-video {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 68px);
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 68px;
    margin-bottom: 38px;
    padding: 50px 0 60px;
    background: #02498c; 
}

.bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
    opacity: 0.35;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.95) 0%,
        rgba(15, 23, 42, 0.85) 50%,
        rgba(30, 41, 59, 0.75) 100%
    );
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-trust-bar {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    color: #e2e8f0;
    font-size: 0.88rem;
    font-weight: 600;
}

.trust-pill-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.3px;
}

.trust-divider {
    color: rgba(255, 255, 255, 0.3);
}

.hero-text {
    padding-left: 15px;
}

.hero-text h1 {
    color: #ffffff;
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-text h4 {
    color: #cbd5e1;
    font-size: 1.25rem;
    line-height: 1.5;
    font-weight: 400;
}

.hero-highlight-tag {
    color: #38bdf8;
    font-weight: 700;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 12px 16px;
    backdrop-filter: blur(4px);
    transition: transform 0.2s ease, background 0.2s ease;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.benefit-check {
    color: #4ade80;
    font-weight: 900;
    font-size: 1.2rem;
    margin-right: 12px;
    line-height: 1.2;
}

.benefit-card p {
    color: #f8fafc;
    font-size: 1rem;
    line-height: 1.45;
    margin: 0;
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.image-inner-container {
    display: inline-block;
    position: relative;
}

.hero-product-img {
    max-width: 100%;
    width: 380px;
    height: auto;
    border-radius: 16px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45));
    transition: transform 0.3s ease-in-out;
}

.hero-product-img:hover {
    transform: translateY(-6px);
}

.trust-badge-seal {
    position: absolute;
    bottom: 10px;
    right: -10px;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%);
    border: 3px solid #ffffff;
    border-radius: 50%;
    color: #0f172a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 900;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    line-height: 1.1;
    transform: rotate(12deg);
}

.trust-badge-seal span {
    font-size: 1.1rem;
}

.trust-badge-seal small {
    font-size: 0.58rem;
    letter-spacing: 0.5px;
}

.hero-cta-btn {
    position: relative;
    overflow: hidden;
    background: #09244d;
    border: 1px solid #fff;
    color: #fff !important;
    font-size: 0.9rem;
    letter-spacing: 0.6px;
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.45);
    transition: all 0.6s ease;
}

.hero-cta-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    transform: skewX(-25deg);
    animation: autoLight 3s linear infinite;
}

@keyframes autoLight {
    0% { left: -120%; }
    100% { left: 160%; }
}

.hero-guarantee-note {
    font-size: 0.85rem;
    color: #94a3b8 !important;
}

@media (max-width: 991px) {
    .trust-divider {
        display: none;
    }
    .hero-trust-bar {
        gap: 8px !important;
        font-size: 0.8rem;
        border-radius: 12px;
        padding: 8px 12px;
    }
}

@media (max-width: 767px) {
    .hero-video {
        min-height: auto;
        padding: 25px 0 35px;
        margin-top: 60px;
    }

    .hero-text h1 {
        font-size: 1.85rem !important;
        line-height: 1.25;
        text-align: center;
    }

    .hero-text h4 {
        font-size: 1.05rem !important;
        text-align: center;
    }

    .hero-product-img {
        width: 260px !important;
    }

    .trust-badge-seal {
        width: 75px;
        height: 75px;
        bottom: 5px;
        right: 0px;
    }

    .trust-badge-seal span {
        font-size: 0.95rem;
    }

    .trust-badge-seal small {
        font-size: 0.5rem;
    }

    .benefit-card {
        padding: 10px 12px;
    }

    .benefit-card p {
        font-size: 0.92rem !important;
        text-align: left;
    }

    .hero-cta-btn {
        font-size: 0.95rem !important;
        padding: 14px 16px !important;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.65rem !important;
    }

    .hero-product-img {
        width: 220px !important;
    }
}

.cid-trimorin-product {
    padding: 80px 0;
    background: #ffffff;
}

.cid-trimorin-product .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.cid-trimorin-product .text-wrapper {
    max-width: 720px;
}

.cid-trimorin-product .image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.product-animate {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-animate:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 55px rgba(0,0,0,0.12) !important;
}

.simple-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 40px;
    background: #28a745;
    color: #ffffff !important;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
}

.simple-btn:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(40, 167, 69, 0.4);
}

.premium-title-box,
.cid-uiqzvBZJLN .title-box,
.cid-ukJMqCUtnY .title {
    position: relative;
    overflow: hidden;
    max-width: 980px;
    margin: 50px auto;
    padding: 28px 40px;
    text-align: center;
    background: radial-gradient(circle at 12% 0%, #0b2652 0%, #0b2652 40%, #020617 100%);
    border: 1px solid rgba(148,163,184,0.55);
    border-radius: 30px 10px 24px 14px;
    box-shadow: 0 0 0 1px rgba(15,23,42,0.7), 0 18px 40px rgba(0,0,0,0.75);
}

.premium-title-box::before,
.cid-uiqzvBZJLN .title-box::before,
.cid-ukJMqCUtnY .title::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(ellipse at 20% 0%, rgba(255,255,255,0.22) 0%, transparent 55%),
                radial-gradient(ellipse at 80% 100%, rgba(52,211,153,0.20) 0%, transparent 65%);
    opacity: 0.8;
    mix-blend-mode: screen;
}

.premium-title-box h3,
.cid-uiqzvBZJLN .mbr-section-title,
.cid-ukJMqCUtnY .mbr-section-title {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #fef9c3 !important;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6), 0 0 18px rgba(190,242,100,0.55);
}

.trust-card {
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    background: #ffffff;
    padding: 25px 15px;
    height: 100%;
    transition: transform 0.4s ease;
}

.trust-card:hover {
    transform: translateY(-8px);
}

.trust-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.cid-ukc4wRHbTT .item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.cid-ukc4wRHbTT .icon-box {
    background: #20803f;
    width: 60px;
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-weight: 700;
}

.cid-ukc4wRHbTT .step-number {
    color: #ffffff !important;
    font-weight: 800;
}

.counter-container ul {
    list-style: none;
    padding-left: 0;
}

.counter-container ul li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.counter-container ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.rh1-review-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.rh1-review-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 25px;
}

.rh1-stars {
    color: #f59e0b;
    font-size: 1.2rem;
    margin-right: 10px;
}

.rh1-verified {
    color: #10b981;
    font-size: 0.9rem;
    font-weight: 600;
}

.bottles-section {
    padding-bottom: 40px;
}

.bottles-header {
    background: var(--brand-dark-red);
    color: #ffffff;
    text-align: center;
    padding: 3rem 1rem 5rem 1rem;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
    margin-bottom: 3.5rem;
}

.bottles-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.bottles-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 600;
    opacity: 0.9;
}

.pricing-container {
    max-width: 1100px;
    margin: 40px auto;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
    padding: 0 20px;
    font-family: Arial, Helvetica, sans-serif;
}

.pricing-card {
    flex: 1;
    max-width: 340px;
    background: #fff;
    border: 1px solid #000000;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative; 
}

.card-header {
    background: #8faada;
    color: #ffffff;
    padding: 15px 10px;
}

.pricing-card.advanced .card-header {
    background: #6382b8;
}

.pricing-card.ultimate .card-header {
    background: #ffb301;
}

.card-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
}

.card-header .supply {
    margin: 5px 0 0 0;
    font-size: 15px;
    font-weight: 600;
}

.card-body {
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    position: relative;
}

.product-img {
    width: 100%;
    max-width: 220px;
    height: auto;
    margin-top: 45px;
    margin-bottom: 55px;
}

.price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 10px 0 35px 0;
}

.original-price {
    font-size: 24px;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 700;
}

.price {
    font-size: 48px;
    font-weight: 900;
    color: #000;
}

.per-bottle {
    font-size: 16px;
    color: #000;
    font-weight: 700;
    text-align: left;
    line-height: 1.1;
}

.total-price {
    font-size: 22px;
    font-weight: 900;
    color: #0f172a;
    margin: 0;
}

.savings-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.benefit-cards,
.ebooks-bonus {
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); 
    font-size: 14px;
    font-weight: 800;
    color: #120852;
}

.benefit-cards {
    font-weight: 700;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.ebooks-bonus {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.savings-list > *:last-child,
.benefit-cards:last-of-type {
    border-bottom: none;
}

.buy-btn {
    width: 100%;
    background: linear-gradient(135deg, #ffb703 0%, #fb8500 100%);
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    padding: 12px 0;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: filter 0.2s ease;
}

.buy-btn:hover {
    filter: brightness(1.05);
}

.payment {
    max-width: 85%;
    height: auto;
    margin-bottom: 15px;
}

.shipping-info {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    background-color: #0b4d8d;
    padding: 5px 15px; 
    border-radius: 6px;  
    text-align: center;
}

.savings-info {
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
}

.pricing-card.ultimate {
    background: #ffffff;
    border: 1px solid #000000;
}

.pricing-card.ultimate .total-price.best-value {
    color: #000;
}

.pricing-card.ultimate .shipping-info,
.pricing-card.ultimate .savings-info {
    color: #ffffff;
    background-color: #0b4d8d;
    padding: 5px 15px; 
    border-radius: 6px;  
    text-align: center;
}

@media (max-width: 850px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 100%;
        max-width: 380px;
    }
}

.bonuses-section {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.bonuses-header {
    background: linear-gradient(135deg, #DF7F07 0%, #327139 100%);
    color: white;
    text-align: center;
    padding: 1rem 0;
    position: relative;
}

.bonuses-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.bonuses-subtitle {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.text-yellow {
    color: #fbbf24;
}

.underline {
    text-decoration: underline;
    text-decoration-color: #fbbf24;
    text-decoration-thickness: 3px;
    text-underline-offset: 5px;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.bonus-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
    border: 2px solid #f1f5f9;
}

.bonus-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.2);
    border-color: #DF7F07;
}

.bonus-image {
    position: relative;
    height: auto;
    min-height: 200px;
    overflow: visible;
    text-align: center;
    margin: 10px 0;
}

.bonus-image img {
    max-width: 30%;
    height: auto;
    max-height: 30%;
    object-fit: contain;
    display: inline-block;
}

.bonus-book {
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bonus-item:hover .bonus-book {
    transform: scale(1.05);
}

.digital-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.bonus-content {
    padding: 2rem;
    text-align: center;
}

.bonus-number {
    color: #10b981;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.bonus-name {
    color: #DF7F07;
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.bonus-value {
    color: #fbbf24;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.bonus-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    text-align: justify;
}

#money-back-guarantee {
    background: radial-gradient(circle at 12% 0%, #120852 0%, #120852 40%, #5d932d 100%);
    padding: 60px 0;
    color: #ffffff;
}

.cid-uiBzoX4Giw .cardfaq {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    margin-bottom: 16px;
    padding: 16px 24px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cid-uiBzoX4Giw .cardfaq:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.08);
    transform: translateY(-2px);
}

.cid-uiBzoX4Giw .panel-title-edit {
    font-weight: 700;
    color: #000;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.cid-uiBzoX4Giw .cardfaq:hover .panel-title-edit {
    color: #2563eb;
}

.cid-uiBzoX4Giw .card-headerfaq a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none !important;
    gap: 15px;
}

.cid-uiBzoX4Giw .sign {
    color: #2563eb;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cid-uiBzoX4Giw .panel-body {
    padding-top: 14px;
    margin-top: 10px;
    border-top: 1px solid #f1f5f9;
}

#content13-1s {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

#content13-1s ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

#content13-1s li {
    margin-bottom: 14px;
    position: relative;
    padding-left: 24px;
    transition: transform 0.2s ease;
}

#content13-1s li:hover {
    transform: translateX(4px);
}

#content13-1s li::before {
    content: "➔";
    color: #f59e0b; 
    position: absolute;
    left: 0;
    font-size: 0.9rem;
    top: 2px;
}

#content13-1s a {
    color: #f8fafc !important;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

#content13-1s a:hover {
    color: #f59e0b !important;
}

#footer3-1v {
    background-color: #090d16;
    padding: 50px 0 30px 0;
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.7;
    border-top: 1px solid #1e293b;
}

.foot-menu {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    margin: 0 auto 24px auto;
    list-style: none;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

.foot-menu-item {
    margin: 0;
}

.foot-menu-item a {
    display: inline-block;
    padding: 8px 18px;
    color: #e2e8f0 !important;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.foot-menu-item a:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .cid-uiBzoX4Giw .cardfaq {
        padding: 14px 18px;
    }

    .cid-uiBzoX4Giw .panel-title-edit {
        font-size: 1.05rem;
    }

    #content13-1s {
        padding: 35px 0;
    }

    #content13-1s li {
        margin-bottom: 12px;
    }

    .foot-menu {
        gap: 12px;
        flex-direction: column;
        align-items: center;
        border-radius: 20px;
    }
}

.sliding-sidebar-cta-right {
    position: fixed;
    top: 85%;
    right: 0;
    z-index: 9999;
    display: flex;
    padding: 10px;
    animation: infiniteSideSlide 8s cubic-bezier(0.25, 1, 0.5, 1) infinite;
    transition: transform 0.3s ease-out;
}

.sliding-sidebar-cta-right:hover {
    animation-play-state: paused;
    transform: translateY(-50%) translateX(0);
}

.custom-3d-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #101a2b 0%, #120852 50%, #061924 100%);
    padding: 2px 5px 2px 3px;
    border-radius: 60px;
    text-decoration: none !important;
    border: 1px solid #1a2027;
    animation: autoGlowPulse 3s ease-in-out infinite;
}

.text-recessed-container {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 40px;
    background: #ef9a0b;
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.4);
}

.cta-product-img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 10px;
    border: 2px solid #fff;
    box-shadow: 0 0 10px rgba(255,255,255,.35);
    background: #fff;
    flex-shrink: 0;
}

@keyframes infiniteSideSlide {
    0%, 100% { transform: translateY(-50%) translateX(calc(100% - 70px)); }
    10%, 40% { transform: translateY(-50%) translateX(0%); }
    50%, 90% { transform: translateY(-50%) translateX(calc(100% - 70px)); }
}

@keyframes autoGlowPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(126, 184, 70, 0.4); }
    50% { box-shadow: 0 0 25px rgba(126, 184, 70, 0.8); }
}

@media (max-width: 768px) {
    .sliding-sidebar-cta-right {
        top: auto;
        bottom: 12px;
        right: 50%;
        transform: translateX(50%);
        animation: none;
        width: 90%;
        max-width: 380px;
        padding: 0;
    }
    
    .sliding-sidebar-cta-right:hover {
        transform: translateX(50%);
    }

    .custom-3d-btn { 
        width: 100%; 
        justify-content: center; 
    }
    
    .text-recessed-container { 
        font-size: 15px; 
        text-align: center;
        flex-grow: 1;
    }

    .cta-product-img {
        width: 40px;
        height: 40px;
        margin-right: 8px;
    }
}