.single-post{
    overflow:hidden;
    border-radius:18px;
}
.single-post .post-meta{
    font-size:0.9rem;
}
.single-post .post-meta i{
    color:var(--color-primary);
}
.post-content{
    line-height:1.8;
    font-size:1.05rem;
    color:var(--color-text);
}
.post-content :is(h2,h3,h4){
    margin-block:2rem 1rem;
    font-weight:700;
    color:var(--color-primary-darker);
    line-height:1.4;
}
.post-content h2{
    font-size:1.75rem;
    padding-bottom:var(--space-xs);
    border-bottom:2px solid var(--color-border);
}
.post-content h3{
    font-size:1.35rem;
}
.post-content :is(p,li){
    margin-bottom:var(--space-sm);
}
.post-content blockquote{
    border-inline-start:4px solid var(--color-primary);
    padding:var(--space-sm) var(--space-md);
    background:var(--color-bg-soft);
    border-radius:0 20px 20px 0;
    margin-block:var(--space-md);
    color:var(--color-text-muted);
    font-style:italic;
    box-shadow:0 6px 14px rgba(45,45,45,0.06),0 18px 42px -18px rgba(45,45,45,0.15);
}
.post-content img{
    max-width:100%;
    height:auto;
    border-radius:16px;
    margin-block:var(--space-sm);
    box-shadow:0 4px 10px rgba(45,45,45,0.08),0 22px 48px -18px rgba(45,45,45,0.18);
}
.post-content a{
    color:var(--color-primary);
    text-decoration:underline;
    transition:color 380ms ease, text-shadow 380ms ease;
    text-shadow:0 0 0 rgba(0,0,0,0);
}
.post-content a:hover{
    color:var(--color-primary-dark);
    text-shadow:0 6px 18px rgba(196,123,90,0.18);
}
.post-content ul,.post-content ol{
    padding-inline-start:1.5rem;
}
.post-content code{
    background:var(--color-bg-muted);
    padding:2px 6px;
    border-radius:6px;
    font-size:0.9em;
    color:var(--color-danger);
    box-shadow:0 3px 10px rgba(45,45,45,0.06);
}
.post-content pre{
    background:var(--color-primary-darker);
    color:#fff;
    padding:var(--space-md);
    border-radius:18px;
    overflow-x:auto;
    margin-block:var(--space-md);
    box-shadow:0 10px 30px rgba(0,0,0,0.14),0 1px 0 rgba(255,255,255,0.06) inset;
}
.post-content pre code{
    background:transparent;
    color:inherit;
    padding:0;
}
.post-content table{
    width:100%;
    border-collapse:collapse;
    margin-block:var(--space-md);
}
.post-content table th,.post-content table td{
    padding:var(--space-xs) var(--space-sm);
    border:1px solid var(--color-border);
    text-align:start;
    box-shadow:none;
}
.post-content table th{
    background:var(--color-bg-muted);
    font-weight:600;
}
.toc-box{
    border-inline-start:3px solid var(--color-primary);
    border-radius:12px;
}
.toc-box ol{
    padding-inline-start:1.2rem;
}
.toc-box ol li{
    margin:0.4rem 0;
}
.toc-box ol li a{
    transition:color 380ms ease, padding 380ms ease, text-decoration-color 380ms ease;
}
.toc-box ol li a:hover{
    color:var(--color-primary-dark);
    text-decoration:underline !important;
    padding-inline-start:4px;
}
.post-tags .badge{
    background:var(--color-bg-muted) !important;
    color:#5a6a4e !important;
    padding:6px 12px;
    font-weight:500;
    transition:background-color 380ms ease, color 380ms ease, transform 380ms ease, box-shadow 380ms ease;
    border-radius:999px;
    box-shadow:0 6px 18px rgba(45,45,45,0.06);
}
.post-tags .badge:hover{
    background:var(--color-primary) !important;
    color:#faf8f3 !important;
    transform:translateY(-1px);
    box-shadow:0 12px 30px rgba(135,168,120,0.22);
}
.post-nav{
    flex-wrap:wrap;
    gap:var(--space-sm);
}
.post-nav .btn{
    max-width:100%;
    overflow:hidden;
    text-overflow:ellipsis;
    border-radius:14px;
    transition:transform 380ms ease, box-shadow 380ms ease, background-color 380ms ease, border-color 380ms ease, color 380ms ease;
}

.app-hero-section{
    background:var(--gradient-hero);
    color:#fff;
    position:relative;
    overflow:hidden;
    border-radius:22px;
    box-shadow:0 22px 60px -26px rgba(45,45,45,0.28);
}
.app-hero-section::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(45,45,45,0.18);
    z-index:0;
}
.app-hero-section > .container{
    position:relative;
    z-index:1;
}
.app-hero-section h1{
    font-size:clamp(2rem,4vw,3rem);
    line-height:1.2;
    text-shadow:0 10px 30px rgba(0,0,0,0.25);
}
.app-hero-section img{
    transition:transform 520ms ease, filter 520ms ease;
    filter:drop-shadow(0 16px 34px rgba(0,0,0,0.28)) saturate(1.02);
    border-radius:18px;
}
.app-hero-section img:hover{
    transform:translateY(-10px);
    filter:drop-shadow(0 24px 50px rgba(0,0,0,0.32)) saturate(1.05);
}
.text-white-50{
    color:rgba(255,255,255,0.7) !important;
}

.app-qr-section{
    background:var(--color-bg-soft);
    border-radius:22px;
}
.qr-card{
    transition:transform 420ms ease, border-color 420ms ease, box-shadow 420ms ease;
    border:2px solid transparent;
    border-radius:18px;
    box-shadow:0 6px 18px rgba(45,45,45,0.06);
}
.qr-card:hover{
    transform:scale(1.03);
    border-color:var(--color-accent);
    box-shadow:0 10px 28px rgba(45,45,45,0.14),0 22px 60px -26px rgba(196,123,90,0.35);
}
.qr-card img{
    image-rendering:pixelated;
    image-rendering:-moz-crisp-edges;
    image-rendering:crisp-edges;
    border-radius:14px;
}

.app-install-section{
    background:var(--color-bg-soft);
    border-radius:22px;
}
.app-install-section .badge.rounded-circle{
    width:50px;
    height:50px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:1.2rem;
    font-weight:700;
    border-radius:999px;
    background:rgba(135,168,120,0.16);
    color:#2d2d2d;
    border:1px solid rgba(135,168,120,0.28);
    box-shadow:0 10px 24px rgba(135,168,120,0.18);
}
.app-install-section .bg-white{
    transition:transform 420ms ease, box-shadow 420ms ease;
    position:relative;
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 10px 26px rgba(45,45,45,0.06);
}
.app-install-section .bg-white:hover{
    transform:translateY(-5px);
    box-shadow:0 24px 60px -30px rgba(45,45,45,0.32),0 10px 24px rgba(45,45,45,0.12);
}
.app-install-section .bg-white::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:4px;
    height:100%;
    background:var(--gradient-icon);
    transform:scaleY(0);
    transform-origin:top;
    transition:transform 420ms ease;
    opacity:0.95;
}
.app-install-section .bg-white:hover::before{
    transform:scaleY(1);
}

.app-showcase-section{
    background:var(--color-bg);
    border-radius:22px;
}
.app-showcase-section img{
    transition:transform 520ms ease, filter 520ms ease;
    filter:drop-shadow(0 18px 36px rgba(45,45,45,0.18)) saturate(1.02);
    border-radius:18px;
}
.app-showcase-section img:hover{
    transform:translateY(-5px) rotate(-1deg);
    filter:drop-shadow(0 26px 48px rgba(45,45,45,0.22)) saturate(1.06);
}
.app-showcase-section .bg-white{
    transition:transform 420ms ease, box-shadow 420ms ease, border-color 420ms ease;
    border-inline-start:3px solid transparent;
    border-radius:18px;
    box-shadow:0 10px 26px rgba(45,45,45,0.06);
}
.app-showcase-section .bg-white:hover{
    border-inline-start-color:var(--color-primary);
    transform:translateX(5px);
    box-shadow:0 26px 62px -36px rgba(45,45,45,0.35),0 10px 24px rgba(45,45,45,0.12);
}

.contact-channels-section{
    background:var(--color-bg);
    border-radius:22px;
}
.contact-channels-section article{
    transition:transform 420ms ease, box-shadow 420ms ease, border-color 420ms ease;
    border:1px solid var(--color-border-soft);
    border-radius:18px;
    box-shadow:0 8px 22px rgba(45,45,45,0.05);
}
.contact-channels-section article:hover{
    transform:translateY(-5px);
    box-shadow:0 22px 60px -30px rgba(45,45,45,0.32),0 10px 26px rgba(45,45,45,0.12);
    border-color:var(--color-primary);
}
.contact-channels-section article ul li{
    transition:padding 260ms ease, color 260ms ease;
}
.contact-channels-section article ul li:hover{
    padding-inline-start:4px;
    color:var(--color-primary-dark);
}

.contact-quick-section{
    background:var(--color-bg-soft);
    border-radius:22px;
}
.contact-quick-section .contact-card{
    transition:transform 420ms ease, box-shadow 420ms ease, border-color 420ms ease;
    border-radius:18px;
    box-shadow:0 10px 26px rgba(45,45,45,0.06);
}
.contact-quick-section .contact-card:hover{
    transform:translateY(-5px);
    box-shadow:0 26px 62px -36px rgba(45,45,45,0.35),0 10px 24px rgba(45,45,45,0.12);
}
.contact-quick-section .contact-card i{
    transition:transform 420ms ease, color 420ms ease, text-shadow 420ms ease;
    color:var(--color-primary);
    text-shadow:0 8px 24px rgba(135,168,120,0.18);
}
.contact-quick-section .contact-card:hover i{
    transform:scale(1.1) rotate(-5deg);
    color:var(--color-primary-dark);
}

.contact-form-section{
    background:var(--color-bg-soft);
    border-radius:22px;
}
.contact-form-section .form-control,.contact-form-section .form-select{
    border:2px solid var(--color-border);
    transition:border-color 280ms ease, box-shadow 280ms ease, background-color 280ms ease, filter 280ms ease;
    border-radius:14px;
    background:rgba(250,248,243,0.7);
    box-shadow:0 6px 18px rgba(45,45,45,0.04);
}
.contact-form-section .form-control:focus,.contact-form-section .form-select:focus{
    border-color:var(--color-primary);
    box-shadow:0 0 0 0.2rem rgba(135,168,120,0.18),0 14px 34px rgba(45,45,45,0.10);
    background:rgba(255,255,255,0.9);
}
.contact-form-section button[type="submit"]{
    transition:transform 420ms ease, box-shadow 420ms ease, background-color 420ms ease, border-color 420ms ease;
    border-radius:14px;
}
.contact-form-section button[type="submit"]:hover{
    transform:translateY(-2px);
    box-shadow:0 22px 60px -30px rgba(45,45,45,0.35),0 10px 24px rgba(45,45,45,0.12);
}

.contact-commitments-section{
    background:var(--color-bg-soft);
    border-radius:22px;
}
.contact-commitments-section .bg-white{
    transition:transform 420ms ease, box-shadow 420ms ease;
    text-align:center;
    border-radius:18px;
    box-shadow:0 10px 26px rgba(45,45,45,0.06);
}
.contact-commitments-section .bg-white:hover{
    transform:translateY(-5px);
    box-shadow:0 26px 62px -36px rgba(45,45,45,0.35),0 10px 24px rgba(45,45,45,0.12);
}
.contact-commitments-section .bg-white i{
    transition:transform 420ms ease, color 420ms ease, text-shadow 420ms ease;
    color:var(--color-accent);
    text-shadow:0 10px 26px rgba(196,123,90,0.22);
}
.contact-commitments-section .bg-white:hover i{
    transform:scale(1.15);
    color:var(--color-primary-dark);
}

main:has(> .container > .bg-white > form) .input-group-text{
    background-color:var(--color-bg-muted);
    border-color:var(--color-border);
    border-inline-end:none;
    border-radius:14px 0 0 14px;
    box-shadow:0 6px 18px rgba(45,45,45,0.04);
}
main:has(> .container > .bg-white > form) .input-group .form-control{
    border-inline-start:none;
    border-radius:0 14px 14px 0;
}
main:has(> .container > .bg-white > form) .input-group:focus-within .input-group-text{
    border-color:var(--color-primary);
    background-color:#eef7f0;
    box-shadow:0 0 0 0.2rem rgba(135,168,120,0.16),0 14px 34px rgba(45,45,45,0.10);
}
main:has(> .container > .bg-white > form) .input-group:focus-within .form-control{
    border-color:var(--color-primary);
    box-shadow:0 0 0 0.2rem rgba(135,168,120,0.16),0 14px 34px rgba(45,45,45,0.10);
}
main:has(> .container > .bg-white > form) .form-check-input:checked{
    background-color:var(--color-primary);
    border-color:var(--color-primary);
    box-shadow:0 10px 26px rgba(135,168,120,0.22);
}
main:has(> .container > .bg-white > form) button[type="submit"]{
    transition:transform 420ms ease, box-shadow 420ms ease, background-color 420ms ease, border-color 420ms ease;
    font-weight:600;
    border-radius:14px;
}
main:has(> .container > .bg-white > form) button[type="submit"]:hover{
    transform:translateY(-2px);
    box-shadow:0 22px 60px -30px rgba(45,45,45,0.35),0 10px 24px rgba(45,45,45,0.12);
}

.icon-img{
    max-width:32px;
    max-height:32px;
    object-fit:contain;
    border-radius:10px;
}
.icon-emoji{
    display:inline-block;
    line-height:1;
}

.hero-buttons .btn{
    transition:transform 420ms ease, box-shadow 420ms ease, background-color 420ms ease, border-color 420ms ease, color 420ms ease;
    border-radius:14px;
}
.hero-buttons .btn:hover{
    transform:translateY(-3px);
    box-shadow:0 26px 62px -36px rgba(45,45,45,0.35),0 10px 24px rgba(45,45,45,0.12);
}
.hero-buttons .btn-warning{
    background-color:var(--color-accent);
    border-color:var(--color-accent);
    color:var(--color-primary-darker);
    font-weight:600;
    box-shadow:0 16px 40px rgba(196,123,90,0.22);
}
.hero-buttons .btn-warning:hover{
    background-color:var(--color-accent-dark);
    border-color:var(--color-accent-dark);
    box-shadow:0 22px 60px -30px rgba(196,123,90,0.35),0 10px 24px rgba(45,45,45,0.12);
}
.hero-buttons .btn-outline-light:hover{
    background-color:rgba(255,255,255,0.15);
    color:#fff;
    box-shadow:0 18px 44px -26px rgba(255,255,255,0.16),0 10px 24px rgba(45,45,45,0.12);
}

::-webkit-scrollbar{
    width:10px;
    height:10px;
}
::-webkit-scrollbar-track{
    background:var(--color-bg-muted);
    border-radius:10px;
}
::-webkit-scrollbar-thumb{
    background:#87a878;
    border-radius:5px;
    box-shadow:inset 0 0 0 1px rgba(250,248,243,0.35);
}
::-webkit-scrollbar-thumb:hover{
    background:var(--color-primary);
    box-shadow:inset 0 0 0 1px rgba(250,248,243,0.45),0 10px 26px rgba(135,168,120,0.22);
}

/* Firefox */
*{
    scrollbar-width:thin;
    scrollbar-color:#87a878 var(--color-bg-muted);
}

@media print{
    :is(.header,
        .footer,
        .sidebar-widgets,
        .social-share,
        #back-to-top,
        .breadcrumb-nav,
        .notice-bar,
        .cta-banner-section,
        .post-nav,
        .related-posts,
        .author-box,
        .pagination,
        .navbar-toggler,
        .nav-item){
        display:none !important;
    }
    body{
        background:#fff !important;
        color:#000 !important;
        font-size:12pt;
    }
    .single-post{
        box-shadow:none !important;
        border:none !important;
        padding:0 !important;
        max-width:100% !important;
        border-radius:0 !important;
    }
    .post-content{
        font-size:11pt;
        line-height:1.6;
    }
    a{
        text-decoration:underline;
        color:#000 !important;
    }
    a[href^="http"]::after{
        content:" (" attr(href) ")";
        font-size:9pt;
        color:#555;
    }
    a[href^="#"]::after,
    a[href^="javascript:"]::after,
    a[href^="mailto:"]::after,
    a[href^="tel:"]::after{
        content:"";
    }
    .post-content img{
        max-width:100% !important;
        page-break-inside:avoid;
    }
    :is(h1,h2,h3,h4){
        page-break-after:avoid;
        color:#000 !important;
    }
    p,li{
        orphans:3;
        widows:3;
    }
}

@keyframes fadeInUp{
    from{
        opacity:0;
        transform:translateY(20px);
        filter:blur(2px);
    }
    to{
        opacity:1;
        transform:translateY(0);
        filter:blur(0);
    }
}
@keyframes pulse{
    0%,100%{
        transform:scale(1);
        filter:saturate(1);
        opacity:1;
    }
    50%{
        transform:scale(1.05);
        filter:saturate(1.06);
        opacity:0.98;
    }
}
.animate-fade-in{
    animation:fadeInUp 0.6s ease-out;
}
.animate-pulse{
    animation:pulse 2s infinite;
}

@media (max-width:991.98px){
    .post-content{
        font-size:1rem;
    }
    .post-content h2{
        font-size:1.5rem;
    }
    .post-content h3{
        font-size:1.2rem;
    }
}
@media (max-width:767.98px){
    .single-post{
        padding:var(--space-md) !important;
        border-radius:16px;
    }
    .post-content{
        font-size:0.95rem;
    }
    .post-content h2{
        font-size:1.35rem;
    }
    .post-nav{
        flex-direction:column;
    }
    .post-nav .btn{
        width:100%;
    }
    .post-tags .badge{
        font-size:0.8rem;
        padding:4px 8px;
    }
    .app-hero-section h1{
        font-size:1.75rem;
    }
    .app-install-section .badge.rounded-circle{
        width:40px;
        height:40px;
        font-size:1rem;
    }
    .toc-box{
        padding:var(--space-sm) !important;
    }
    .qr-card img{
        max-width:140px !important;
    }
}

@media (max-width: 575.98px) {
    .app-hero-section .row .col-lg-7 {
        text-align: center;
        transition: color 0.38s ease, text-shadow 0.38s ease;
        text-shadow: 0 1px 0 rgba(45, 45, 45, 0.06);
        caret-color: #c47b5a;
        accent-color: #87a878;
    }

    .app-hero-section .badge.bg-warning {
        font-size: 0.85rem;
        transition: background-color 0.45s ease, color 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease, filter 0.45s ease;
        border-radius: 16px;
        border-style: solid;
        border-color: rgba(196, 123, 90, 0.35);
        border-width: 0;
        box-shadow:
            0 2px 6px rgba(0, 0, 0, 0.06),
            0 14px 28px -14px rgba(0, 0, 0, 0.18);
        filter: saturate(0.98) contrast(1.02);
        opacity: 0.98;
        text-shadow: 0 1px 0 rgba(45, 45, 45, 0.06);
        background: linear-gradient(180deg, rgba(196, 123, 90, 0.22) 0%, rgba(196, 123, 90, 0.12) 100%);
        color: rgba(45, 45, 45, 0.92);
    }

    .contact-channels-section article,
    .contact-quick-section .contact-card {
        padding: var(--space-md) !important;
        transition: box-shadow 0.42s ease, transform 0.42s ease, background-color 0.42s ease, border-color 0.42s ease, color 0.42s ease, filter 0.42s ease;
        border-radius: 18px;
        border-style: solid;
        border-color: rgba(135, 168, 120, 0.35);
        outline: 1px solid rgba(250, 248, 243, 0.35);
        outline-offset: -2px;
        box-shadow:
            0 4px 10px rgba(0, 0, 0, 0.05),
            0 22px 44px -18px rgba(0, 0, 0, 0.16);
        background: radial-gradient(120% 90% at 10% 0%, rgba(135, 168, 120, 0.12) 0%, rgba(250, 248, 243, 0) 55%),
                    linear-gradient(180deg, rgba(250, 248, 243, 0.88) 0%, rgba(250, 248, 243, 0.70) 100%);
        color: rgba(45, 45, 45, 0.92);
        filter: drop-shadow(0 1px 0 rgba(45, 45, 45, 0.03));
        opacity: 0.985;
    }
}