@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/assets/fonts/inter-latin-400-normal.woff2') format('woff2')
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/assets/fonts/inter-latin-500-normal.woff2') format('woff2')
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/assets/fonts/inter-latin-600-normal.woff2') format('woff2')
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/assets/fonts/inter-latin-700-normal.woff2') format('woff2')
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('/assets/fonts/inter-latin-800-normal.woff2') format('woff2')
}

:root {
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --amber-500: #f59e0b;
    --amber-400: #fbbf24;
    --amber-600: #d97706;
    --teal: #5cbdb9;
    --teal-dark: #4aafac;
    --navy: #0c2340;
    --navy-light: #1a4a6e;
    --green: #16a34a;
    --green-light: #22c55e;
    --topbar-h: 44px;
    --white: #ffffff;
    --radius: 0.75rem;
    --radius-sm: 0.5rem;
    --radius-lg: 1rem;
    --shadow-md: 0 4px 14px rgba(0, 0, 0, .08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, .12)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--slate-900);
    background: var(--slate-50);
    margin: 0;
    padding: 0;
    line-height: 1.6
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

.container-xl {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem
}

@media (min-width:640px) {
    .container-xl {
        padding: 0 1.5rem
    }
}

@media (min-width:1024px) {
    .container-xl {
        padding: 0 2rem
    }
}

/* Bootstrap row-gutter overflow fix (mobile only) — see style.css for
   full explanation. Caps .row.g-5's gutter below 640px so its negative
   margin no longer exceeds .container-xl's 1rem mobile padding. */
@media (max-width:639.98px) {
    .row.g-5 {
        --bs-gutter-x: 1.5rem
    }
}

.bg-white {
    background: #fff
}

.bg-gray-50 {
    background: var(--slate-50)
}

.bg-slate-900 {
    background: var(--slate-900)
}

.bg-navy {
    background: var(--navy)
}

.text-white {
    color: #fff
}

.text-amber {
    color: var(--amber-500)
}

.text-teal {
    color: var(--teal)
}

.py-section {
    padding: 5rem 0
}

@media (max-width:768px) {
    .py-section {
        padding: 3rem 0
    }
}

.fw-extrabold {
    font-weight: 800
}

.btn-amber {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: var(--amber-500);
    color: var(--slate-900) !important;
    font-weight: 700;
    padding: .9rem 2rem;
    border-radius: .5rem;
    border: none;
    font-size: 1rem;
    transition: background .2s ease;
    box-shadow: 0 4px 14px rgba(245, 158, 11, .25)
}

.btn-amber:hover {
    background: var(--amber-400);
    color: var(--slate-900) !important
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    border: 1px solid var(--slate-600);
    color: var(--slate-300) !important;
    font-weight: 600;
    padding: .9rem 2rem;
    border-radius: .5rem;
    background: 0 0;
    font-size: 1rem;
    transition: all .2s ease
}

.btn-outline-dark:hover {
    border-color: var(--slate-400);
    color: #fff !important
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: var(--green);
    color: #fff !important;
    font-weight: 800;
    padding: .7rem 1.2rem;
    border-radius: .4rem;
    transition: background .2s
}

.btn-whatsapp:hover {
    background: var(--green-light)
}

.btn-sm-amber {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    background: var(--amber-500);
    color: var(--slate-900) !important;
    font-weight: 700;
    padding: .6rem .9rem;
    border-radius: .35rem;
    font-size: .85rem;
    border: none
}

.btn-sm-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    border: 1px solid var(--amber-500);
    color: var(--amber-500) !important;
    font-weight: 700;
    padding: .6rem .9rem;
    border-radius: .35rem;
    font-size: .85rem;
    background: 0 0
}

.btn-sm-outline:hover {
    background: var(--amber-500);
    color: var(--slate-900) !important
}

.top-contact-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--slate-900);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding: .55rem 0
}

.top-contact-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 1rem
}

.top-contact-left {
    display: flex;
    align-items: center;
    gap: .85rem;
    min-height: 1.1rem
}

.top-contact-left a {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: #fff;
    font-size: .8rem;
    font-weight: 500;
    white-space: nowrap;
    line-height: 1.1rem;
    transition: color .2s
}

.top-contact-left a:hover,
.top-contact-left a:hover i {
    color: var(--amber-400)
}

.top-contact-left a i {
    font-size: .78rem;
    color: #fff;
    transition: color .2s;
    width: 1em;
    text-align: center
}

.top-contact-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, .25);
    flex-shrink: 0
}

.top-contact-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 1.1rem
}

.top-contact-right a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .85rem;
    width: 1.4rem;
    height: 1.1rem;
    transition: color .2s
}

.top-contact-right a:hover {
    color: var(--amber-400)
}

@media (max-width:1023px) {
    .top-contact-left {
        gap: .6rem
    }

    .top-contact-left a {
        font-size: .72rem
    }

    .top-contact-right {
        gap: .7rem
    }

    .top-contact-right a {
        font-size: .78rem;
        width: 1.2rem
    }
}

@media (max-width:767px) {
    .top-contact-inner {
        flex-direction: column;
        gap: .4rem
    }

    .top-contact-left {
        justify-content: center;
        flex-wrap: wrap;
        gap: .5rem .8rem
    }

    .top-contact-left a {
        font-size: .7rem
    }

    .top-contact-divider {
        display: none
    }

    .top-contact-right {
        justify-content: center;
        gap: .9rem
    }
}

.site-header {
    position: fixed;
    top: var(--topbar-h);
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--slate-900);
    transition: box-shadow .3s, top .2s
}

.site-header.scrolled {
    box-shadow: 0 6px 20px rgba(0, 0, 0, .35)
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
    gap: .5rem
}

.brand {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-shrink: 0
}

.brand img {
    height: 48px;
    width: 48px;
    object-fit: contain
}

.brand-text-main {
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: .02em
}

.brand-text-sub {
    color: var(--teal);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase
}

.nav-links {
    display: none;
    align-items: center;
    gap: .15rem
}

.nav-links a {
    color: #fff;
    font-weight: 700;
    font-size: .875rem;
    padding: .5rem .75rem;
    border-radius: .35rem;
    transition: .2s
}

.nav-links a:hover {
    color: var(--amber-400);
    background: rgba(255, 255, 255, .08)
}

.nav-links a.active {
    color: var(--amber-400);
    background: rgba(251, 191, 36, .1)
}

.nav-call {
    display: none;
    align-items: center;
    gap: .5rem;
    background: var(--amber-500);
    color: var(--slate-900) !important;
    font-weight: 700;
    font-size: .875rem;
    padding: .55rem 1rem;
    border-radius: .5rem;
    flex-shrink: 0
}

.nav-call:hover {
    background: var(--amber-400);
    color: var(--slate-900) !important
}

.nav-toggle {
    background: 0 0;
    border: none;
    color: #fff;
    padding: .5rem;
    display: block
}

.mobile-menu {
    display: none;
    background: var(--slate-900);
    border-top: 1px solid var(--slate-700);
    padding: .75rem 1rem 1rem
}

.mobile-menu.open {
    display: block
}

.mobile-menu a {
    display: block;
    padding: .65rem 1rem;
    border-radius: .35rem;
    color: #fff;
    font-weight: 700;
    font-size: .9rem
}

.mobile-menu a.active {
    color: var(--amber-400);
    background: rgba(251, 191, 36, .1)
}

.mobile-menu .nav-call {
    display: flex;
    margin-top: .5rem
}

@media (min-width:768px) {
    .nav-links {
        display: flex
    }

    .nav-call {
        display: flex
    }

    .nav-toggle {
        display: none
    }

    .mobile-menu {
        display: none !important
    }
}

.hero {
    position: relative;
    min-height: 92vh;
    background: linear-gradient(135deg, var(--slate-900), var(--slate-800) 50%, var(--slate-900));
    overflow: hidden
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .05;
    z-index: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255, 255, 255, .05) 39px, rgba(255, 255, 255, .05) 40px), repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255, 255, 255, .05) 39px, rgba(255, 255, 255, .05) 40px)
}

.hero-swiper {
    position: absolute;
    inset: 0;
    z-index: 1
}

.hero-slide {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1)
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(15, 23, 42, .9), rgba(15, 23, 42, .65) 55%, rgba(15, 23, 42, .92))
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: calc(6rem + var(--topbar-h));
    padding-bottom: 4rem
}

.hero-slide-inner {
    max-width: 44rem
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(245, 158, 11, .1);
    border: 1px solid rgba(245, 158, 11, .3);
    border-radius: 999px;
    padding: .4rem 1rem;
    margin-bottom: 1.5rem
}

.hero-badge .dot {
    width: .5rem;
    height: .5rem;
    border-radius: 50%;
    background: var(--amber-400);
    animation: pulse 2s infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .4
    }
}

.hero-badge span.label {
    color: var(--amber-400);
    font-size: .875rem;
    font-weight: 500
}

.hero h1,
.hero .hero-slide-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem
}

.hero h1 .accent,
.hero .hero-slide-title .accent {
    display: block;
    color: var(--amber-400)
}

.hero p.lead {
    color: var(--slate-400);
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 36rem;
    margin-bottom: 2.5rem
}

.hero .hero-badge,
.hero .hero-slide-buttons,
.hero h1,
.hero .hero-slide-title,
.hero p.lead {
    opacity: 0;
    transform: translateY(24px)
}

.swiper-slide-active .hero-badge {
    animation: heroFadeUp .7s ease-out .15s forwards
}

.swiper-slide-active h1,
.swiper-slide-active .hero-slide-title {
    animation: heroFadeUp .7s ease-out .3s forwards
}

.swiper-slide-active p.lead {
    animation: heroFadeUp .7s ease-out .45s forwards
}

.swiper-slide-active .hero-slide-buttons {
    animation: heroFadeUp .7s ease-out .6s forwards
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.swiper-slide-active .hero-bg img {
    animation: heroKenBurns 6s ease-out forwards
}

@keyframes heroKenBurns {
    from {
        transform: scale(1)
    }

    to {
        transform: scale(1.08)
    }
}

@media (prefers-reduced-motion:reduce) {

    .hero .hero-badge,
    .hero .hero-slide-buttons,
    .hero h1,
    .hero .hero-slide-title,
    .hero p.lead {
        opacity: 1;
        transform: none;
        animation: none
    }

    .swiper-slide-active .hero-bg img {
        animation: none
    }
}

.hero-swiper-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, .45);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    font-size: 1rem;
    transition: background .2s, border-color .2s
}

.hero-swiper-nav:hover {
    background: var(--amber-500);
    border-color: var(--amber-500);
    color: var(--slate-900)
}

.hero-swiper-prev {
    left: 1rem
}

.hero-swiper-next {
    right: 1rem
}

@media (min-width:1024px) {
    .hero-swiper-prev {
        left: 2rem
    }

    .hero-swiper-next {
        right: 2rem
    }
}

.hero-swiper-pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6.5rem;
    z-index: 3;
    text-align: center
}

.hero-swiper-pagination .swiper-pagination-bullet {
    width: .55rem;
    height: .55rem;
    background: #fff;
    opacity: .4;
    margin: 0 .3rem;
    transition: opacity .2s, width .2s
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--amber-400);
    width: 1.5rem;
    border-radius: 999px
}

@media (max-width:767px) {
    .hero-swiper-nav {
        width: 2.25rem;
        height: 2.25rem;
        font-size: .85rem
    }

    .hero-swiper-pagination {
        bottom: 6.75rem
    }
}

.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    border-top: 1px solid rgba(51, 65, 85, .6);
    background: rgba(15, 23, 42, .8);
    backdrop-filter: blur(6px)
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr)
}

@media (min-width:768px) {
    .hero-stats-grid {
        grid-template-columns: repeat(4, 1fr)
    }
}

.hero-stat {
    padding: 1.25rem 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(51, 65, 85, .4)
}

.hero-stat:last-child {
    border-right: none
}

.hero-stat .val {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--amber-400)
}

.hero-stat .lbl {
    color: var(--slate-400);
    font-size: .7rem;
    margin-top: .15rem;
    text-transform: uppercase;
    letter-spacing: .08em
}

.client-strip {
    background: var(--navy);
    padding: 3.5rem 1.25rem;
    margin: 0 1rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 20px 60px -25px rgba(0, 0, 0, .55);
    overflow: hidden
}

@media (min-width:1024px) {
    .client-strip {
        margin: 0 auto;
        max-width: 1280px;
        padding: 4rem 3rem
    }
}

.client-strip .section-title {
    text-align: center;
    margin-bottom: 2.5rem
}

.client-marquee {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent)
}

.client-track {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    width: max-content;
    animation: client-scroll 45s linear infinite;
    will-change: transform
}

.client-marquee:hover .client-track {
    animation-play-state: paused
}

.client-logo {
    flex: 0 0 auto;
    width: 150px;
    height: 80px;
    margin: 0 1.25rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: .75rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .18)
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain
}

@keyframes client-scroll {
    from {
        transform: translateX(0)
    }
    to {
        transform: translateX(-50%)
    }
}

@media (max-width:1023px) {
    .client-logo {
        width: 140px;
        height: 76px;
        margin: 0 .875rem;
        padding: .85rem
    }
}

@media (max-width:640px) {
    .client-strip {
        margin: 0;
        border-radius: 0;
        padding: 2.75rem 1rem
    }
}

@media (prefers-reduced-motion:reduce) {
    .client-track {
        animation: none
    }
    .client-logo[aria-hidden="true"] {
        display: none
    }
}

.eyebrow {
    color: var(--amber-500);
    font-weight: 600;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    margin-bottom: .5rem
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--slate-900)
}

.section-title.on-dark {
    color: #fff
}

.section-title .accent {
    color: var(--amber-500)
}

.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem
}

@media (min-width:640px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (min-width:1024px) {
    .card-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

.product-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    overflow: hidden;
    transition: .3s;
    display: flex;
    flex-direction: column;
    height: 100%
}

.product-card:hover {
    border-color: var(--amber-400);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px)
}

.product-card .thumb {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f3f4f6
}

.product-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.product-card:hover .thumb img {
    transform: scale(1.05)
}

.product-card .body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column
}

.product-card h3 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: .4rem;
    color: var(--slate-800)
}

.product-card p {
    color: var(--slate-500);
    font-size: .875rem;
    line-height: 1.6;
    margin: 0
}

.product-card .view-link {
    margin-top: 1rem;
    color: var(--amber-500);
    font-size: .875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .25rem
}

.strength-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: .2s;
    height: 100%
}

.strength-card:hover {
    border-color: var(--amber-400);
    box-shadow: var(--shadow-md)
}

.strength-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--amber-500)
}

.strength-card h3 {
    font-weight: 700;
    font-size: 1rem;
    color: var(--slate-900);
    margin-bottom: .5rem
}

.strength-card p {
    color: var(--slate-500);
    font-size: .875rem;
    margin: 0
}

.testimonial-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    display: flex;
    flex-direction: column
}

.testimonial-avatar {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
    border: 4px solid #fff;
    box-shadow: 0 0 0 4px rgba(45, 212, 191, .4)
}

.testimonial-body {
    background: var(--slate-900);
    border-radius: .75rem;
    padding: 1.25rem;
    margin: 0 1rem 1rem;
    flex: 1
}

.testimonial-body p {
    color: var(--slate-300);
    font-size: .875rem;
    font-style: italic;
    line-height: 1.7
}

.cta-band {
    background: var(--amber-500);
    padding: 4rem 0;
    text-align: center
}

.cta-band h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 1rem
}

.cta-band p {
    color: #1e293b;
    font-size: 1.1rem;
    margin-bottom: 2rem
}

.site-footer {
    background: var(--slate-900)
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 0
}

@media (min-width:768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

.footer-heading {
    color: var(--teal);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem
}

.footer-heading.white {
    color: #fff
}

.footer-text {
    color: #fff;
    font-weight: 600;
    font-size: .875rem;
    line-height: 1.7
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.footer-contact-list li {
    display: flex;
    gap: .5rem;
    align-items: flex-start;
    color: #fff;
    font-weight: 700;
    font-size: .875rem;
    margin-bottom: .6rem
}

.footer-contact-list li a {
    color: #fff
}

.footer-contact-list li a:hover {
    color: var(--teal)
}

.footer-products {
    list-style: none;
    padding: 0;
    margin: 0
}

.footer-products li {
    margin-bottom: .5rem
}

.footer-products a {
    color: #fff;
    font-weight: 600;
    font-size: .875rem
}

.footer-products a:hover {
    color: var(--teal)
}

.footer-social {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem
}

.footer-social a {
    width: 2.25rem;
    height: 2.25rem;
    background: var(--navy-light);
    color: #fff;
    border-radius: .35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s
}

.footer-social a:hover {
    background: var(--teal)
}

.footer-subscribe input {
    width: 100%;
    background: var(--navy-light);
    color: #fff;
    font-weight: 600;
    font-size: .875rem;
    padding: .75rem 1rem;
    border: 0;
    border-radius: .35rem .35rem 0 0
}

.footer-subscribe input::placeholder {
    color: rgba(255, 255, 255, .5)
}

.footer-subscribe button {
    width: 100%;
    background: var(--teal);
    color: var(--navy);
    font-weight: 800;
    font-size: .875rem;
    padding: .75rem;
    border: 0;
    border-radius: 0 0 .35rem .35rem;
    letter-spacing: .02em
}

.footer-subscribe button:hover {
    background: var(--teal-dark)
}

.footer-bottom {
    border-top: 1px solid rgba(92, 189, 185, .2)
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    padding: 1rem 0
}

@media (min-width:640px) {
    .footer-bottom-inner {
        flex-direction: row
    }
}

.footer-bottom p {
    color: #fff;
    font-weight: 600;
    font-size: .75rem;
    margin: 0
}

.footer-bottom p.muted {
    color: rgba(255, 255, 255, .7)
}

.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(34, 197, 94, .35);
    transition: background .2s
}

.whatsapp-float:hover {
    background: var(--green-light)
}

.whatsapp-float.is-hidden {
    opacity: 0;
    transform: scale(.85);
    pointer-events: none;
    transition: opacity .2s, transform .2s
}

.whatsapp-float img {
    width: 1.75rem;
    height: 1.75rem
}

.page-banner {
    background: var(--slate-900);
    padding-top: calc(7rem + var(--topbar-h));
    padding-bottom: 3.5rem
}

.page-banner h1 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: .75rem
}

.page-banner p {
    color: var(--slate-400);
    font-size: 1.1rem;
    max-width: 40rem
}

.hero-banner {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 650px;
    padding: calc(8rem + var(--topbar-h)) 0 3.5rem;
    background: linear-gradient(135deg, var(--slate-900), var(--slate-800) 55%, var(--slate-900))
}

@media (min-width:1440px) {
    .hero-banner {
        min-height: 750px
    }
}

@media (max-width:1023px) {
    .hero-banner {
        min-height: 560px;
        padding: calc(7rem + var(--topbar-h)) 0 3rem
    }
}

@media (max-width:640px) {
    .hero-banner {
        min-height: 440px;
        padding: calc(6.5rem + var(--topbar-h)) 0 2.5rem
    }
}

.hero-banner-bg {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.hero-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(15, 23, 42, .94), rgba(30, 41, 59, .88) 55%, rgba(15, 23, 42, .95))
}

.hero-banner.has-image .hero-banner-overlay {
    background: linear-gradient(135deg, rgba(15, 23, 42, .88), rgba(15, 23, 42, .62) 55%, rgba(15, 23, 42, .9))
}

.hero-banner-content {
    position: relative;
    z-index: 2;
    width: 100%
}

.hero-banner-subtitle {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(245, 158, 11, .12);
    border: 1px solid rgba(245, 158, 11, .3);
    border-radius: 999px;
    padding: .4rem 1.1rem;
    margin-bottom: 1.25rem;
    color: var(--amber-400);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .02em
}

.hero-banner h1 {
    color: #fff;
    font-size: clamp(2.1rem, 4.5vw, 3.25rem);
    font-weight: 800;
    margin-bottom: .9rem;
    line-height: 1.15
}

.hero-banner-desc {
    color: var(--slate-300);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 42rem
}

.hero-banner-cta {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-top: 2rem
}

@media (max-width:480px) {
    .hero-banner-cta {
        flex-direction: column
    }

    .hero-banner-cta a {
        text-align: center
    }
}

.breadcrumb-nav {
    margin-bottom: 1rem
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    padding: 0;
    margin: 0;
    font-size: .875rem
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: .4rem;
    color: var(--slate-500)
}

.breadcrumb-list a {
    color: var(--slate-500)
}

.breadcrumb-list a:hover {
    color: var(--amber-400)
}

.breadcrumb-list .current {
    color: var(--slate-300)
}

.breadcrumb-list .sep {
    color: var(--slate-600)
}

.about-stat {
    background: var(--slate-900);
    border: 1px solid var(--slate-700);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    color: #fff
}

.about-stat .icon {
    color: var(--amber-400);
    margin-bottom: .75rem;
    font-size: 1.75rem
}

.about-stat .val {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: .25rem
}

.about-stat .lbl {
    color: var(--slate-400);
    font-size: .875rem
}

.profile-table {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    overflow: hidden
}

.profile-table .head {
    background: var(--slate-900);
    color: #fff;
    font-weight: 700;
    padding: 1rem 1.5rem
}

.profile-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: .85rem 1.5rem;
    border-top: 1px solid #f1f5f9
}

.profile-row .k {
    color: var(--slate-500);
    font-size: .875rem;
    font-weight: 500
}

.profile-row .v {
    color: var(--slate-900);
    font-size: .875rem;
    font-weight: 700
}

.pill {
    display: inline-block;
    background: #fff;
    color: #fff;
    font-size: .875rem;
    padding: .4rem .9rem;
    border-radius: 999px;
    margin: .2rem .3rem .2rem 0
}

.strengths-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.strengths-list li {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    margin-bottom: .75rem;
    color: var(--slate-600);
    font-size: .9rem
}

.search-box {
    position: relative;
    max-width: 28rem
}

.search-box input {
    width: 100%;
    background: var(--slate-800);
    border: 1px solid var(--slate-600);
    color: #fff;
    border-radius: .5rem;
    padding: .65rem 1rem .65rem 2.5rem;
    font-size: .9rem
}

.search-box input::placeholder {
    color: var(--slate-500)
}

.search-box .icon {
    position: absolute;
    left: .9rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--slate-400)
}

.cat-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem
}

.cat-tab {
    padding: .5rem 1rem;
    border-radius: .5rem;
    font-size: .875rem;
    font-weight: 600;
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    color: var(--slate-300)
}

.cat-tab.active {
    background: var(--amber-500);
    color: var(--slate-900);
    border-color: var(--amber-500)
}

.cat-tab:hover {
    color: #fff;
    border-color: var(--slate-500)
}

.category-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 1.25rem;
    overflow: hidden;
    transition: .3s;
    display: flex;
    flex-direction: column;
    height: 100%
}

.category-card:hover {
    border-color: rgba(245, 158, 11, .4);
    box-shadow: var(--shadow-lg)
}

.category-card .thumb {
    position: relative;
    aspect-ratio: 16/10;
    background: #f1f5f9;
    overflow: hidden
}

.category-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.category-card:hover .thumb img {
    transform: scale(1.05)
}

.cat-badge {
    position: absolute;
    top: .75rem;
    left: .75rem;
    background: var(--amber-500);
    color: var(--slate-900);
    font-size: .75rem;
    font-weight: 700;
    padding: .25rem .6rem;
    border-radius: 999px
}

.category-card .body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1
}

.category-card h3 {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--slate-900);
    margin-bottom: .5rem
}

.category-card p {
    color: var(--slate-500);
    font-size: .875rem;
    margin-bottom: 1rem
}

.variant-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    flex: 1
}

.variant-list li {
    display: flex;
    gap: .4rem;
    align-items: flex-start;
    color: var(--slate-500);
    font-size: .8rem;
    margin-bottom: .3rem
}

.variant-list .amber {
    color: var(--amber-500)
}

.cat-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
    margin-top: auto
}

.related-card:hover {
    transform: translateY(-4px)
}

.related-card-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1
}

.related-card-btn {
    transition: background-color .3s, color .3s;
    margin-top: auto;
    align-self: flex-start
}

.related-card:hover .related-card-btn {
    background: var(--amber-500);
    color: var(--slate-900) !important
}

.pd-gallery-main {
    aspect-ratio: 4/3;
    border-radius: 1rem;
    overflow: hidden;
    background: var(--slate-800);
    border: 1px solid var(--slate-700)
}

.pd-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.pd-thumbs {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-top: 1rem
}

.pd-thumb {
    width: 4rem;
    height: 4rem;
    border-radius: .5rem;
    overflow: hidden;
    border: 2px solid var(--slate-600);
    cursor: pointer;
    opacity: .7
}

.pd-thumb.active {
    border-color: var(--amber-400);
    opacity: 1
}

.pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.media-chip {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .75rem;
    font-weight: 600;
    padding: .35rem .8rem;
    border-radius: 999px;
    margin: 0 .4rem .4rem 0
}

.media-chip.amber {
    background: rgba(245, 158, 11, .1);
    border: 1px solid rgba(245, 158, 11, .3);
    color: var(--amber-400)
}

.media-chip.red {
    background: rgba(239, 68, 68, .1);
    border: 1px solid rgba(239, 68, 68, .3);
    color: #f87171
}

.media-chip.blue {
    background: rgba(59, 130, 246, .1);
    border: 1px solid rgba(59, 130, 246, .3);
    color: #60a5fa
}

.variant-box {
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: .75rem;
    padding: 1.25rem
}

.variant-box h3 {
    color: var(--amber-400);
    font-weight: 700;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: .75rem
}

.variant-box .item {
    display: flex;
    gap: .6rem;
    align-items: center;
    color: var(--slate-300);
    font-size: .875rem;
    margin-bottom: .4rem
}

.spec-table {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: .75rem;
    overflow: hidden
}

.spec-table .head {
    background: var(--slate-900);
    color: #fff;
    font-weight: 600;
    font-size: .875rem;
    padding: .75rem 1.25rem
}

.spec-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: .85rem 1.25rem;
    border-top: 1px solid #f1f5f9
}

.spec-row .k {
    color: var(--slate-500);
    font-size: .875rem
}

.spec-row .v {
    color: var(--slate-900);
    font-size: .875rem;
    font-weight: 700
}

.app-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.app-list li {
    display: flex;
    gap: .6rem;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: .5rem;
    padding: .7rem 1rem;
    margin-bottom: .6rem;
    color: var(--slate-800);
    font-size: .875rem
}

.custom-cta {
    background: var(--amber-500);
    border-radius: .75rem;
    padding: 1.5rem;
    margin-top: 2rem
}

.custom-cta h3 {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--slate-900);
    margin-bottom: .5rem
}

.custom-cta p {
    color: #1e293b;
    font-size: .875rem;
    margin-bottom: 1rem
}

.media-block {
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: 1rem;
    overflow: hidden
}

.media-block .head {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.25rem;
    border-bottom: 1px solid var(--slate-700);
    color: #fff;
    font-weight: 700;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .08em
}

.v360-stage {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--slate-800);
    cursor: grab;
    touch-action: pan-y pinch-zoom;
    outline: 0;
    -webkit-tap-highlight-color: transparent
}

.v360-stage.grabbing,
.v360-stage:active {
    cursor: grabbing
}

.v360-stage:focus-visible {
    box-shadow: inset 0 0 0 2px var(--amber-400)
}

.v360-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
    transition: transform .15s ease-out;
    will-change: transform
}

.v360-spinner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--slate-800);
    z-index: 3
}

.v360-spinner span {
    width: 2rem;
    height: 2rem;
    border: 3px solid rgba(255, 255, 255, .15);
    border-top-color: var(--amber-400);
    border-radius: 50%;
    animation: v360-spin .8s linear infinite
}

@keyframes v360-spin {
    to {
        transform: rotate(360deg)
    }
}

.v360-controls {
    position: absolute;
    top: .6rem;
    right: .6rem;
    display: flex;
    flex-direction: column;
    gap: .4rem;
    z-index: 2
}

.v360-btn {
    width: 2rem;
    height: 2rem;
    border-radius: .5rem;
    background: rgba(15, 23, 42, .7);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s;
    padding: 0
}

.v360-btn:hover {
    background: var(--amber-400);
    color: var(--slate-900);
    border-color: var(--amber-400)
}

.v360-hint {
    position: absolute;
    bottom: .6rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 23, 42, .7);
    color: #fff;
    font-size: .68rem;
    padding: .35rem .8rem;
    border-radius: 999px;
    pointer-events: none;
    transition: opacity .3s;
    z-index: 2;
    letter-spacing: .02em;
    white-space: nowrap
}

.v360-hint.is-hidden {
    opacity: 0
}

.v360-stage.is-fullscreen {
    background: #000
}

.v360-counter {
    font-weight: 400;
    color: var(--slate-500);
    font-size: .75rem
}

.pdf-icon-box {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(239, 68, 68, .1);
    border: 1px solid rgba(239, 68, 68, .2);
    border-radius: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.4rem;
    color: #f87171
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: .75rem;
    overflow: hidden;
    margin-bottom: .75rem;
    background: #fff;
    transition: .2s
}

.faq-item.open {
    border-color: var(--amber-400);
    box-shadow: 0 4px 12px rgba(251, 191, 36, .15)
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: 0 0;
    border: 0;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    color: var(--slate-800);
    cursor: pointer
}

.faq-item.open .faq-question {
    color: var(--amber-600)
}

.faq-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #f3f4f6;
    color: var(--slate-500);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: .2s
}

.faq-item.open .faq-icon {
    background: var(--amber-500);
    color: #fff
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.25rem;
    border-top: 1px solid #fef3c7;
    color: var(--slate-600);
    font-size: .9rem;
    line-height: 1.7
}

.faq-item.open .faq-answer {
    display: block;
    padding-top: 1rem
}

.contact-icon-box {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(245, 158, 11, .1);
    border-radius: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--amber-500)
}

.form-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 1.25rem;
    padding: 2rem
}

.form-group label {
    display: block;
    font-size: .875rem;
    font-weight: 500;
    margin-bottom: .4rem;
    color: var(--slate-800)
}

.form-control-custom {
    width: 100%;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: .5rem;
    padding: .65rem .9rem;
    font-size: .9rem;
    color: var(--slate-900)
}

.form-control-custom:focus {
    outline: 0;
    border-color: var(--amber-500)
}

.form-error {
    color: #ef4444;
    font-size: .75rem;
    margin-top: .25rem
}

.success-box {
    text-align: center;
    padding: 3rem 1rem
}

.admin-details {
    border: 1px solid #e5e7eb;
    border-radius: .6rem;
    overflow: hidden;
    margin-bottom: 1.25rem
}

.admin-details summary {
    cursor: pointer;
    padding: .9rem 1.1rem;
    font-weight: 700;
    font-size: .95rem;
    list-style: none;
    background: #f9fafb;
    user-select: none;
    color: var(--slate-900)
}

.admin-details summary::-webkit-details-marker {
    display: none
}

.admin-details summary::before {
    content: "\25B8";
    display: inline-block;
    width: 1rem;
    color: var(--amber-500);
    transition: transform .15s
}

.admin-details[open] summary::before {
    transform: rotate(90deg)
}

.admin-details-body {
    padding: 1.1rem;
    border-top: 1px solid #e5e7eb
}

.seo-preview {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: .5rem;
    padding: 1rem 1.1rem;
    margin-bottom: 1.25rem;
    font-family: arial, sans-serif
}

.seo-preview-title {
    color: #1a0dab;
    font-size: 1.15rem;
    line-height: 1.3;
    margin-bottom: .15rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.seo-preview-url {
    color: #006621;
    font-size: .82rem;
    margin-bottom: .3rem
}

.seo-preview-desc {
    color: #4d5156;
    font-size: .85rem;
    line-height: 1.45
}

.blog-card {
    background: rgba(30, 41, 59, .6);
    border: 1px solid var(--slate-700);
    border-radius: 1.25rem;
    overflow: hidden;
    transition: .3s;
    height: 100%;
    display: flex;
    flex-direction: column
}

.blog-card:hover {
    border-color: rgba(245, 158, 11, .4);
    box-shadow: 0 10px 30px rgba(245, 158, 11, .06)
}

.blog-card .thumb {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--slate-800);
    overflow: hidden
}

.blog-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.blog-card:hover .thumb img {
    transform: scale(1.05)
}

.blog-card .body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column
}

.blog-card h3 {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: .5rem
}

.blog-card p {
    color: var(--slate-400);
    font-size: .875rem;
    flex: 1
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .75rem;
    font-weight: 600;
    padding: .25rem .7rem;
    border-radius: 999px;
    border: 1px solid
}

.badge-blue {
    background: rgba(59, 130, 246, .1);
    color: #60a5fa;
    border-color: rgba(59, 130, 246, .3)
}

.badge-green {
    background: rgba(34, 197, 94, .1);
    color: #4ade80;
    border-color: rgba(34, 197, 94, .3)
}

.badge-amber {
    background: rgba(245, 158, 11, .1);
    color: var(--amber-400);
    border-color: rgba(245, 158, 11, .3)
}

.badge-purple {
    background: rgba(168, 85, 247, .1);
    color: #c084fc;
    border-color: rgba(168, 85, 247, .3)
}

.badge-slate {
    background: rgba(100, 116, 139, .1);
    color: var(--slate-300);
    border-color: rgba(100, 116, 139, .3)
}

.featured-post {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    margin-bottom: 2.5rem;
    border: 1px solid var(--slate-700)
}

.featured-post .img-wrap {
    position: relative;
    height: 24rem;
    background: var(--slate-800)
}

.featured-post .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.featured-post .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--slate-900) 10%, rgba(15, 23, 42, .5) 60%, transparent)
}

.featured-post .content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.75rem
}

.sidebar-box {
    background: rgba(30, 41, 59, .6);
    border: 1px solid var(--slate-700);
    border-radius: 1.25rem;
    padding: 1.25rem;
    margin-bottom: 1.5rem
}

.sidebar-box h3 {
    color: #fff;
    font-weight: 700;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem
}

.sidebar-cat-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .6rem .75rem;
    border-radius: .5rem;
    font-size: .875rem;
    color: var(--slate-400);
    background: 0 0;
    border: 0;
    text-align: left
}

.sidebar-cat-btn.active {
    background: rgba(245, 158, 11, .1);
    color: var(--amber-400)
}

.sidebar-cat-btn:hover {
    background: rgba(51, 65, 85, .5);
    color: #fff
}

.recent-post-link {
    display: flex;
    gap: .75rem;
    margin-bottom: 1rem
}

.recent-post-num {
    width: 2rem;
    height: 2rem;
    background: rgba(245, 158, 11, .1);
    border: 1px solid rgba(245, 158, 11, .2);
    border-radius: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--amber-400);
    font-size: .75rem;
    font-weight: 700
}

.article-hero {
    aspect-ratio: 21/9;
    border-radius: 1rem;
    overflow: hidden;
    background: var(--slate-800);
    margin-bottom: 2rem
}

.article-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.article-content {
    color: var(--slate-700);
    font-size: 1.05rem;
    line-height: 1.9
}

.article-content p {
    margin-bottom: 1.25rem;
    white-space: pre-line
}

.text-muted-c {
    color: var(--slate-500)
}

.rounded-xl {
    border-radius: 1rem
}

.divider {
    width: 4rem;
    height: .25rem;
    background: var(--amber-500);
    margin: 1rem auto 0;
    border-radius: 999px
}

.lazy-fade {
    opacity: 0;
    transition: opacity .4s
}

.lazy-fade.loaded {
    opacity: 1
}

.admin-body {
    background: #f1f5f9;
    font-family: Inter, sans-serif
}

.admin-sidebar {
    background: var(--slate-900);
    min-height: 100vh;
    width: 230px;
    position: fixed;
    top: 0;
    left: 0;
    padding: 1.5rem 0
}

.admin-sidebar .brand {
    padding: 0 1.25rem 1.5rem;
    color: #fff;
    font-weight: 800;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--slate-700);
    margin-bottom: 1rem
}

.admin-sidebar-toggle {
    display: none
}

.admin-sidebar a {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: var(--slate-300);
    padding: .7rem 1.25rem;
    font-size: .9rem;
    font-weight: 600
}

.admin-sidebar a.active,
.admin-sidebar a:hover {
    background: rgba(245, 158, 11, .1);
    color: var(--amber-400)
}

.admin-nav-section {
    padding: 1rem 1.25rem .4rem;
    color: var(--slate-500);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    border-top: 1px solid var(--slate-700);
    margin-top: .5rem
}

.admin-content {
    margin-left: 230px;
    padding: 2rem
}

@media (max-width:768px) {
    .admin-sidebar {
        width: 100%;
        position: relative;
        min-height: auto
    }

    .admin-content {
        margin-left: 0
    }

    .admin-sidebar .brand {
        display: flex;
        align-items: center;
        justify-content: space-between
    }

    .admin-sidebar-toggle {
        display: block;
        background: 0 0;
        border: 1px solid var(--slate-700);
        color: #fff;
        font-size: 1.25rem;
        line-height: 1;
        padding: .35rem .65rem;
        border-radius: .375rem;
        cursor: pointer
    }

    .admin-sidebar nav {
        display: none
    }

    .admin-sidebar.open nav {
        display: block;
        padding-bottom: .5rem
    }
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem
}

.admin-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: .75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem
}

.stat-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: .75rem;
    padding: 1.5rem
}

.stat-card .val {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--slate-900)
}

.stat-card .lbl {
    color: var(--slate-500);
    font-size: .85rem
}

.admin-table {
    width: 100%;
    border-collapse: collapse
}

.admin-table th {
    text-align: left;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--slate-500);
    border-bottom: 2px solid #e5e7eb;
    padding: .75rem .5rem
}

.admin-table td {
    padding: .75rem .5rem;
    border-bottom: 1px solid #f1f5f9;
    font-size: .875rem;
    vertical-align: middle
}

.admin-table img.thumb-sm {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: cover;
    border-radius: .35rem
}

.badge-status-published {
    background: #dcfce7;
    color: #15803d;
    font-size: .7rem;
    font-weight: 700;
    padding: .2rem .6rem;
    border-radius: 999px
}

.badge-status-draft {
    background: #f1f5f9;
    color: #64748b;
    font-size: .7rem;
    font-weight: 700;
    padding: .2rem .6rem;
    border-radius: 999px
}

.login-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--slate-900)
}

.login-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2.5rem;
    width: 100%;
    max-width: 24rem;
    box-shadow: var(--shadow-lg)
}

.alert-custom {
    padding: .85rem 1.1rem;
    border-radius: .5rem;
    font-size: .875rem;
    margin-bottom: 1rem
}

.alert-success {
    background: #dcfce7;
    color: #15803d;
    border: 1px solid #86efac
}

.alert-danger {
    background: #fee2e2;
    color: #b91c1c;
    border: 1px solid #fca5a5
}

.alert-info {
    background: #dbeafe;
    color: #1d4ed8;
    border: 1px solid #93c5fd
}

.pagination-nav {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem
}

.pagination-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    list-style: none;
    margin: 0;
    padding: 0
}

.pagination-list li {
    display: flex
}

.pagination-list .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 .85rem;
    border: 1px solid #e5e7eb;
    border-radius: .6rem;
    color: var(--slate-600);
    font-weight: 600;
    font-size: .875rem;
    text-decoration: none;
    transition: .2s;
    background: #fff
}

.pagination-list a.page-link:hover {
    border-color: var(--amber-400);
    color: var(--amber-600);
    background: #fffbeb
}

.pagination-list .page-link.active {
    background: var(--amber-500);
    border-color: var(--amber-500);
    color: var(--slate-900)
}

.pagination-list .page-link.disabled {
    color: var(--slate-400);
    background: #f9fafb;
    cursor: not-allowed
}

.pagination-list .page-ellipsis {
    display: inline-flex;
    align-items: center;
    padding: 0 .35rem;
    color: var(--slate-400);
    font-weight: 600
}

@media (max-width:576px) {
    .pagination-list {
        gap: .35rem
    }

    .pagination-list .page-link {
        min-width: 2.15rem;
        height: 2.15rem;
        padding: 0 .6rem;
        font-size: .8rem
    }
}

.price-block {
    margin: .5rem 0 .75rem;
    line-height: 1.5
}

.price-block-compact {
    margin: .35rem 0 .6rem
}

.price-current {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--slate-900)
}

.price-block-compact .price-current {
    font-size: 1rem
}

.price-old {
    font-size: .85rem;
    color: var(--slate-500);
    text-decoration: line-through;
    margin-left: .35rem
}

.price-discount {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    color: #fff;
    background: #dc2626;
    padding: .1rem .4rem;
    border-radius: .3rem;
    margin-left: .35rem;
    vertical-align: middle
}

.price-save {
    font-size: .75rem;
    font-weight: 600;
    color: var(--green)
}

.price-contact {
    font-size: .95rem;
    font-weight: 700;
    color: var(--amber-600)
}

.price-gst-note {
    font-size: .7rem;
    color: var(--slate-500);
    font-weight: 500;
    margin-left: .25rem
}

.on-dark-price .price-current {
    color: #fff
}

.on-dark-price .price-contact {
    color: var(--amber-400)
}

.on-dark-price .price-gst-note,
.on-dark-price .price-old {
    color: var(--slate-400)
}

.offer-badge {
    position: absolute;
    top: .75rem;
    right: .75rem;
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .03em;
    padding: .3rem .65rem;
    border-radius: 999px;
    color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .25);
    z-index: 1
}

.offer-badge-amber {
    background: var(--amber-500);
    color: var(--slate-900)
}

.offer-badge-green {
    background: var(--green)
}

.offer-badge-red {
    background: #dc2626
}

.offer-badge-blue {
    background: #2563eb
}

.offer-badge-purple {
    background: #9333ea
}

.offer-badge-slate {
    background: var(--slate-500)
}

.offer-detail-list {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    margin: .75rem 0 1.25rem
}

.offer-detail-item {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    background: rgba(245, 158, 11, .08);
    border: 1px solid rgba(245, 158, 11, .25);
    border-radius: .6rem;
    padding: .6rem .85rem
}

.offer-detail-item .offer-badge {
    position: static;
    box-shadow: none;
    flex-shrink: 0
}

.offer-detail-item .offer-text {
    font-size: .8rem;
    color: var(--slate-300)
}

.offer-detail-item .offer-text strong {
    display: block;
    color: #fff;
    font-size: .85rem;
    margin-bottom: .1rem
}

.offer-color-swatch {
    display: inline-block;
    width: .85rem;
    height: .85rem;
    border-radius: 50%;
    margin-right: .4rem;
    vertical-align: middle
}

.offer-checklist {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    max-height: 16rem;
    overflow-y: auto;
    border: 1px solid var(--slate-700, #334155);
    border-radius: .5rem;
    padding: .75rem
}

.offer-checklist label {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    cursor: pointer
}
.ckeditor-youtube {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 1.5rem 0;
    overflow: hidden;
    border-radius: .75rem;
    background: #000
}

.ckeditor-youtube iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block
}
