:root {
    --color-primary: #262626;
    --color-primary-dark: #0b0b0b;
    --color-primary-light: #464646;
    --color-primary-soft: #f2f2f2;
    --color-primary-gradient: var(--color-primary);
    --color-primary-glow: rgba(11, 11, 11, 0.15);
    --color-action: #ffeb00;
    --color-action-dark: #e6d700;
    --color-on-action: #0b0b0b;
    --color-secondary: #FFFFFF;
    --color-tertiary: #0b0b0b;
    --color-neutral: #efefef;
    --color-accent: #262626;
    --color-accent-dark: #0b0b0b;
    --color-accent-light: #5b5b5b;
    --color-accent-soft: #f2f2f2;
    --color-accent-gradient: var(--color-accent);
    --color-text-primary: #0b0b0b;
    --color-text-secondary: #5b5b5b;
    --color-text-muted: #9a9a9a;
    --color-border: #dcdcdc;
    --color-card-border: var(--color-border);
    --shadow-card-yellow: 0 8px 24px rgba(255, 235, 0, 0.18);
    --color-background: #FFFFFF;
    --color-background-soft: #f7f7f8;
    --color-danger: #eb001b;
    --color-warning: #F59E0B;
    --color-success: #10B981;
    --font-family: 'Archivo', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-family-heading: 'Archivo Black', 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-h1: clamp(2.25rem, 5vw, 3.5rem);
    --font-h2: clamp(1.75rem, 4vw, 2.5rem);
    --font-h3: 1.5rem;
    --font-h4: 1.25rem;
    --font-body: 1rem;
    --font-small: 0.875rem;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semi-bold: 600;
    --font-weight-bold: 700;
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;
    --container-max-width: 1280px;
    --container-padding-desktop: 32px;
    --container-padding-tablet: 24px;
    --container-padding-mobile: 8px;
    --section-spacing-desktop: 24px;
    --section-spacing-mobile: 16px;
    --radius-sm: 8px;
    --radius-md: 10px;
    --radius-lg: 5px;
    --radius-xl: 18px;
    --radius-2xl: 22px;
    --radius-full: 9999px;
    --shadow-xs: 0 1px 2px rgba(16, 24, 40, 0.04);
    --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.04), 0 2px 6px rgba(16, 24, 40, 0.06);
    --shadow-md: 0 2px 4px rgba(16, 24, 40, 0.06), 0 6px 16px rgba(16, 24, 40, 0.08);
    --shadow-lg: 0 4px 8px rgba(16, 24, 40, 0.06), 0 12px 28px rgba(16, 24, 40, 0.10);
    --shadow-xl: 0 8px 16px rgba(16, 24, 40, 0.08), 0 20px 48px rgba(16, 24, 40, 0.12);
    --shadow-glow: 0 0 0 3px rgba(11, 11, 11, 0.12);
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 320ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
    --z-sticky: 100;
    --z-fixed: 200;
    --z-modal-backdrop: 300;
    --z-modal: 400;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

@media (max-width:767.98px) {
    html {
        font-size: 15px;
    }

    :root {
        --font-h1: clamp(1.85rem, 7vw, 2.75rem);
        --font-h2: clamp(1.5rem, 6vw, 2rem);
        --font-h3: 1.3rem;
        --font-h4: 1.15rem;
    }
}

@media (max-width:480px) {
    html {
        font-size: 14px;
    }

    :root {
        --font-h1: clamp(1.65rem, 7.5vw, 2.25rem);
        --font-h2: clamp(1.35rem, 6.5vw, 1.75rem);
    }
}

body {
    font-family: var(--font-family);
    font-size: var(--font-body);
    font-weight: var(--font-weight-regular);
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-background);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 var(--spacing-md);
    font-family: var(--font-family);
    font-weight: var(--font-weight-bold);
    line-height: 1.25;
    letter-spacing: 0;
    color: var(--color-tertiary);
}

h1,
h2,
.hero-title,
.page-hero-title,
.cta-title,
.section-header h2,
.page-highlight-heading,
.service-detail-title,
.portfolio-detail-title,
.product-detail-title {
    font-family: var(--font-family-heading);
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.navbar-brand,
.footer-brand {
    font-family: var(--font-family-heading);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

p {
    margin: 0 0 var(--spacing-md);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

img {
    max-width: 100%;
    height: auto;
}

::selection {
    background-color: var(--color-action);
    color: var(--color-on-action);
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding-left: var(--container-padding-mobile);
    padding-right: var(--container-padding-mobile);
}

.container-promo {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0;
}

@media (min-width:576px) {
    .container {
        padding-left: var(--container-padding-tablet);
        padding-right: var(--container-padding-tablet);
    }
}

@media (min-width:992px) {
    .container {
        padding-left: var(--container-padding-desktop);
        padding-right: var(--container-padding-desktop);
    }
}

.section {
    padding-top: var(--section-spacing-mobile);
}

@media (min-width:992px) {
    .section {
        padding-top: var(--section-spacing-desktop);
        padding-bottom: var(--section-spacing-desktop);
    }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    height: 72px;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: all var(--transition-base);
    padding: 0 var(--container-padding-mobile);
}

.navbar.scrolled {
    background: rgba(10, 16, 32, 0.55);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

@media (max-width:767.98px) {
    .navbar.scrolled {
        background: rgb(12, 18, 36);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

.navbar-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    justify-content: space-between;
    align-items: center;
    column-gap: var(--spacing-xl);
    height: 100%;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 0 var(--container-padding-mobile);
}

@media (min-width:576px) {
    .navbar-container {
        padding: 0 var(--container-padding-tablet);
    }
}

@media (min-width:992px) {
    .navbar-container {
        padding: 0 var(--container-padding-desktop);
    }
}

@media (max-width:991.98px) {
    .navbar-container {
        display: flex;
        justify-content: flex-start;
        column-gap: var(--spacing-sm);
    }

    .navbar-actions {
        margin-left: auto;
    }
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    justify-self: start;
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: #ffffff;
    text-decoration: none;
    transition: all var(--transition-fast);
    white-space: nowrap;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 2px 14px rgba(0, 0, 0, 0.3);
}

.navbar-brand:hover {
    color: #ffffff;
    opacity: 0.9;
    transform: translateY(-1px);
}

.navbar-logo {
    display: block;
    height: 32px;
    width: auto;
}

.navbar-wordmark {
    display: block;
    height: 15px;
    width: auto;
}

.navbar-logo-sm {
    height: 22px;
}

.navbar-wordmark-sm {
    height: 11px;
}

@media (max-width:575.98px) {
    .navbar-logo {
        height: 26px;
    }

    .navbar-wordmark {
        height: 13px;
    }
}

.navbar-menu {
    display: none;
    align-items: center;
    justify-self: center;
    gap: var(--spacing-xl);
}

@media (min-width:992px) {
    .navbar-menu {
        display: flex;
    }
}

.navbar-icon-btn.navbar-desktop-only {
    display: none;
}

@media (min-width:992px) {
    .navbar-icon-btn.navbar-desktop-only {
        display: inline-flex;
    }
}

.navbar-menu a {
    font-size: var(--font-body);
    font-weight: var(--font-weight-medium);
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    padding: var(--spacing-sm) 0;
    position: relative;
    transition: all var(--transition-fast);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 2px 14px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.navbar-menu a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffffff;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    transform: translateX(-50%);
}

.navbar-menu a:hover,
.navbar-menu a.active {
    color: #ffffff;
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
    width: 100%;
}

.navbar-menu a.nav-link-core {
    color: var(--color-action);
    font-weight: var(--font-weight-bold);
}

.navbar-menu a.nav-link-core:hover,
.navbar-menu a.nav-link-core.active {
    color: var(--color-action);
}

.badge-mini {
    display: inline-block;
    margin-left: 6px;
    padding: 1px 7px;
    font-size: 0.62rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.03em;
    color: #fff;
    background: var(--color-accent);
    border-radius: var(--radius-full);
    vertical-align: middle;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: var(--font-body);
    font-weight: var(--font-weight-medium);
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    padding: var(--spacing-sm) 0;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    transition: all var(--transition-fast);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 2px 14px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.nav-dropdown-trigger::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffffff;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    transform: translateX(-50%);
}

.nav-dropdown-trigger:hover,
.nav-dropdown-trigger.active {
    color: #ffffff;
}

.nav-dropdown-trigger:hover::after,
.nav-dropdown-trigger.active::after {
    width: 100%;
}

.nav-dropdown-caret {
    font-size: 0.65rem;
    transition: transform var(--transition-fast);
    opacity: 0.7;
}

.nav-dropdown.show .nav-dropdown-caret {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: rgba(18, 18, 22, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 8px;
    z-index: calc(var(--z-dropdown, 1000) + 10);
    animation: navDropdownIn 0.18s ease;
}

.nav-dropdown.show .nav-dropdown-menu {
    display: block;
}

@keyframes navDropdownIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
    transition: background var(--transition-fast), color var(--transition-fast);
    white-space: nowrap;
}

.nav-dropdown-item:hover,
.nav-dropdown-item.active {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.nav-dropdown-item-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
}

.nav-dropdown-item:hover .nav-dropdown-item-icon,
.nav-dropdown-item.active .nav-dropdown-item-icon {
    background: rgba(255, 235, 0, 0.12);
    color: var(--color-action);
}

.navbar-btn-login {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold, 600);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--radius-full);
    transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
    white-space: nowrap;
    cursor: pointer;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.navbar-btn-login:hover,
.navbar-btn-login:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.55);
}

.navbar-btn-login:active {
    transform: scale(0.97);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    justify-self: end;
    flex-shrink: 0;
    white-space: nowrap;
}

.navbar-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-md);
    cursor: pointer;
    position: relative;
    transition: all var(--transition-fast);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 2px 14px rgba(0, 0, 0, 0.3);
}

.navbar-icon-btn:hover,
.navbar-icon-btn:focus-visible {
    color: var(--color-action);
}

.navbar-icon-btn:active {
    transform: scale(0.95);
}

.cart-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    font-size: 10px;
    font-weight: var(--font-weight-bold);
    line-height: 18px;
    text-align: center;
    color: white;
    background: var(--color-danger);
    border-radius: var(--radius-full);
    display: none;
    animation: badgePop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cart-badge.has-items {
    display: block;
}

@keyframes badgePop {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.navbar-toggler {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 2px 14px rgba(0, 0, 0, 0.3);
}

@media (min-width:992px) {
    .navbar-toggler {
        display: none;
    }
}

.navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 90%;
    height: 100vh;
    background: var(--color-secondary);
    box-shadow: var(--shadow-xl);
    transform: translateX(-100%);
    transition: transform var(--transition-slow);
    z-index: var(--z-modal);
    overflow-y: auto;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--color-border);
}

.mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: var(--color-text-primary);
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.mobile-menu-close:hover {
    background: var(--color-neutral);
    color: var(--color-danger);
}

.mobile-menu-body {
    padding: var(--spacing-lg);
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: var(--font-body);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-primary);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.mobile-menu a:hover {
    background: var(--color-primary-soft);
    color: var(--color-primary);
    padding-left: calc(var(--spacing-lg) + 4px);
}

.mobile-menu a i {
    font-size: 1.25rem;
    transition: transform var(--transition-fast);
}

.mobile-menu a:hover i {
    transform: scale(1.1);
}

.mobile-menu a.nav-link-core {
    font-weight: var(--font-weight-bold);
}

.mobile-menu-group-label {
    padding: 10px var(--spacing-lg) 4px;
    font-size: 0.72rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.mobile-menu a.mobile-menu-sub {
    padding-left: calc(var(--spacing-lg) + 10px);
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.mobile-menu a.mobile-menu-sub:hover {
    color: var(--color-text-primary);
    padding-left: calc(var(--spacing-lg) + 14px);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: var(--z-modal-backdrop);
}

.mobile-menu-overlay.show {
    opacity: 1;
    visibility: visible;
}

.web-gratis-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 150;
    display: flex;
    align-items: stretch;
    justify-content: center;
    border-radius: 0;
    background: linear-gradient(135deg, #fff35c 0%, var(--color-action) 45%, #ffd400 100%);
    box-shadow: 0 -8px 24px -4px rgba(11, 11, 11, 0.18), 0 -2px 10px rgba(255, 235, 0, 0.3);
    overflow: hidden;
    isolation: isolate;
    animation: webGratisStickyIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transition: box-shadow 0.25s ease;
}

.web-gratis-sticky:hover {
    box-shadow: 0 -10px 30px -4px rgba(11, 11, 11, 0.22), 0 -2px 14px rgba(255, 235, 0, 0.4);
}

.web-gratis-sticky::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(100deg, transparent 35%, rgba(255, 255, 255, 0.6) 50%, transparent 65%);
    transform: translateX(-130%);
    pointer-events: none;
}

.web-gratis-sticky-link {
    position: relative;
    z-index: 2;
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.7rem 0.85rem;
    text-decoration: none;
    color: var(--color-primary-dark);
}

.web-gratis-sticky-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.3rem;
    height: 2.3rem;
    flex-shrink: 0;
    background: var(--color-primary-dark);
    color: var(--color-action);
    border-radius: 50%;
    font-size: 1.15rem;
    animation: webGratisFabIconWiggle 4s ease-in-out infinite;
}

.web-gratis-sticky-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(11, 11, 11, 0.3);
    animation: webGratisIconRing 2.6s ease-in-out infinite;
    pointer-events: none;
}

.web-gratis-sticky-text {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    line-height: 1.25;
    min-width: 0;
    font-size: 0.92rem;
    font-weight: 800;
}

.web-gratis-sticky-text strong,
.web-gratis-sticky-text small {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.web-gratis-sticky-text small {
    font-size: 0.68rem;
    font-weight: 600;
    opacity: 0.75;
}

.web-gratis-sticky-badge {
    position: relative;
    align-self: flex-start;
    background: linear-gradient(135deg, #ff3b4e 0%, var(--color-danger) 55%, #a8000f 100%);
    color: #fff;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 0.12rem 0.5rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.2rem;
    box-shadow: 0 3px 8px rgba(168, 0, 15, 0.35);
}

.web-gratis-sticky-badge::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 2px rgba(235, 0, 27, 0.55);
    animation: webGratisBadgePulse 1.8s ease-in-out infinite;
    pointer-events: none;
}

.web-gratis-sticky-cta {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    gap: 0.4rem;
    align-self: center;
    margin-left: auto;
    background: var(--color-primary-dark);
    color: var(--color-action);
    font-weight: 800;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 10px rgba(11, 11, 11, 0.22);
    white-space: nowrap;
}

.web-gratis-sticky-cta i {
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.web-gratis-sticky:hover .web-gratis-sticky-cta i {
    transform: translateX(3px);
}

@media (min-width:992px) {
    .web-gratis-sticky-link {
        flex: 0 1 640px;
    }
}

@keyframes webGratisStickyIn {
    from {
        transform: translateY(140%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes webGratisFabIconWiggle {

    0%,
    80%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    88% {
        transform: rotate(-18deg) scale(1.15);
    }

    92% {
        transform: rotate(12deg) scale(1.1);
    }

    96% {
        transform: rotate(0deg) scale(1);
    }
}

@keyframes webGratisIconRing {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.35);
        opacity: 0;
    }
}

@keyframes webGratisBadgePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.65;
    }

    50% {
        transform: scale(1.3);
        opacity: 0;
    }
}

@media (prefers-reduced-motion:no-preference) {
    .web-gratis-sticky::before {
        animation: webGratisShimmer 4.5s ease-in-out infinite;
    }
}

@keyframes webGratisShimmer {

    0%,
    40% {
        transform: translateX(-130%);
    }

    60%,
    100% {
        transform: translateX(130%);
    }
}

@media (prefers-reduced-motion:reduce) {

    .web-gratis-sticky,
    .web-gratis-sticky-icon,
    .web-gratis-sticky-badge,
    .web-gratis-sticky-icon::after,
    .web-gratis-sticky-badge::after {
        animation: none;
    }
}

@media (max-width:575.98px) {
    .web-gratis-sticky-link {
        padding: 0.55rem 0.6rem;
        gap: 0.45rem;
    }

    .web-gratis-sticky-icon {
        width: 1.8rem;
        height: 1.8rem;
        font-size: 0.9rem;
    }

    .web-gratis-sticky-text {
        font-size: 0.74rem;
    }

    .web-gratis-sticky-text small {
        font-size: 0.6rem;
    }

    .web-gratis-sticky-badge {
        font-size: 0.52rem;
        padding: 0.08rem 0.4rem;
    }

    .web-gratis-sticky-cta {
        font-size: 0.68rem;
        padding: 0.38rem 0.6rem;
        gap: 0.2rem;
    }
}

@media (max-width:767.98px) {}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 44px;
    padding: 0.625rem 1.5rem;
    font-family: var(--font-family);
    font-size: var(--font-body);
    font-weight: var(--font-weight-bold);
    line-height: 1.5;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.06), 0 2px 8px rgba(16, 24, 40, 0.08);
    transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.18s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.18s ease, border-color 0.18s ease;
    -webkit-tap-highlight-color: transparent;
}

.btn:focus {
    outline: none;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.06), 0 2px 8px rgba(16, 24, 40, 0.08), var(--shadow-glow);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn:hover:not(:active):not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(16, 24, 40, 0.08), 0 12px 28px rgba(16, 24, 40, 0.14);
}

.btn:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.06);
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
    transform: translateX(-120%);
    pointer-events: none;
}

.btn:hover:not(:disabled)::before {
    transform: translateX(120%);
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:not(:hover)::before {
    transition: none;
}

.btn i {
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover:not(:disabled) i {
    transform: translateX(3px);
}

.btn-primary {
    background: var(--color-action);
    color: var(--color-on-action);
    border-color: transparent;
}

.btn-primary:hover:not(:disabled) {
    background: var(--color-action-dark);
    color: var(--color-on-action);
    border-color: transparent;
}

.btn-outline-action {
    background: transparent;
    color: var(--color-action);
    border: 1px solid var(--color-action);
}

.btn-outline-action:hover:not(:disabled) {
    background: rgba(255, 235, 0, 0.1);
    color: var(--color-action);
    border-color: var(--color-action);
}

.btn-secondary {
    background: var(--color-primary);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(255, 235, 0, 0.18);
}

.btn-secondary:hover:not(:active):not(:disabled) {
    background: var(--color-primary-dark);
    color: #fff;
    box-shadow: 0 8px 28px rgba(255, 235, 0, 0.28);
}

.btn-secondary:active:not(:disabled) {
    box-shadow: 0 2px 8px rgba(255, 235, 0, 0.15);
}

.btn-secondary:focus {
    box-shadow: 0 4px 20px rgba(255, 235, 0, 0.18), var(--shadow-glow);
}

.btn-accent {
    background: var(--color-accent);
    color: #fff;
    border-color: transparent;
}

.btn-accent:hover:not(:disabled) {
    background: var(--color-accent-dark);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-border);
    box-shadow: none;
}

.btn-outline:hover:not(:disabled) {
    background: var(--color-primary-soft);
    color: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(16, 24, 40, 0.08);
}

.btn-outline::before,
.btn-outline-light::before {
    display: none;
}

.btn-outline-light {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: none;
}

.btn-outline-light:hover:not(:active):not(:disabled) {
    background: rgba(255, 255, 255, 0.12);
    border-color: white;
    color: white;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15);
}

.btn-outline-light:active:not(:disabled) {
    box-shadow: none;
}

.btn-cta-secondary {
    background: transparent;
    color: var(--text-dark, #1e293b);
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: none;
}

.btn-cta-secondary::before {
    display: none;
}

.btn-cta-secondary:hover:not(:disabled) {
    background: rgba(0, 0, 0, 0.05);
    color: #0f172a;
    border-color: rgba(0, 0, 0, 0.4);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.btn-cta-secondary:active:not(:disabled) {
    box-shadow: none;
    transform: translateY(0);
}

.btn-cta-secondary:focus-visible {
    outline: 2px solid rgba(0, 0, 0, 0.6);
    outline-offset: 2px;
}

.btn-cta-tertiary {
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: none;
    font-weight: 500;
}

.btn-cta-tertiary::before {
    display: none;
}

.btn-cta-tertiary:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.30);
}

.btn-cta-tertiary:active:not(:disabled) {
    box-shadow: none;
    transform: translateY(0);
}

.btn-cta-tertiary:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.4);
    outline-offset: 2px;
}

.btn-light {
    background: white;
    color: var(--color-tertiary);
    border-color: var(--color-border);
}

.btn-light:hover:not(:disabled) {
    background: var(--color-primary-soft);
    color: var(--color-primary);
}

.btn-sm {
    min-height: 36px;
    padding: 0.375rem 1rem;
    font-size: var(--font-small);
    border-radius: 9px;
}

.btn-lg {
    min-height: 52px;
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
    border-radius: 14px;
}

.btn-block {
    width: 100%;
}

@media (max-width:767.98px) {
    .btn {
        min-height: 40px;
        padding: 0.55rem 1.15rem;
        font-size: 12px;
        border-radius: 10px;
    }

    .btn-lg {
        min-height: 44px;
        padding: 0.65rem 1.35rem;
        font-size: 0.95rem;
        border-radius: 12px;
    }

    .btn-sm {
        min-height: 32px;
        padding: 0.3rem 0.85rem;
        font-size: 0.75rem;
    }
}

@media (prefers-reduced-motion:reduce) {

    .btn,
    .btn:hover:not(:active):not(:disabled),
    .btn i,
    .btn:hover:not(:disabled) i {
        transform: none;
        transition: none;
    }

    .btn::before {
        display: none;
    }
}

.hero-section {
    position: relative;
    margin-top: -72px;
    padding: calc(6rem + 72px) 0 6rem;
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

@media (max-width:767.98px) {
    .hero-section {
        min-height: auto;
        padding: calc(4rem + 90px) 0 2.5rem;
    }
}

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

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 11, 11, 0.6);
}

@keyframes floatShape {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-40px) rotate(5deg);
    }
}

@keyframes pulseShape {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
}

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

.hero-badge {
    animation: fadeInUp 0.6s ease-out;
}

@media (max-width:575.98px) {
    .hero-badge .badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.7rem;
    }
}

.hero-title {
    font-size: var(--font-h1);
    font-weight: var(--font-weight-bold);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #ffffff;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.text-gradient {
    background: var(--color-primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, var(--color-action) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 600px;
    margin: 0;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-actions {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-stats {
    margin: 3rem auto 0;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-sm);
}

.hero-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    line-height: 1;
}

.hero-stat-number.is-typing::after {
    content: '';
    display: inline-block;
    width: 2px;
    height: 1em;
    margin-left: 2px;
    background: currentColor;
    vertical-align: -0.15em;
    animation: heroStatCaretBlink 0.8s step-end infinite;
}

@keyframes heroStatCaretBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@media (prefers-reduced-motion:reduce) {
    .hero-stat-number.is-typing::after {
        animation: none;
    }
}

.hero-title-rotate {
    position: relative;
}

.hero-stat-label {
    display: block;
    font-size: var(--font-small);
    color: var(--color-text-secondary);
    margin-top: 0.25rem;
}

.hero-v2 {
    --hero-v2-accent: var(--color-action);
    --hero-v2-accent-dark: var(--color-on-action);
    background: #0a0a08;
}

.hero-v2 .hero-bg-overlay {
    background: radial-gradient(ellipse 900px 480px at 50% 0%, rgba(255, 235, 0, 0.16), transparent 70%), rgba(8, 8, 5, 0.9);
}

.hero-v2 .hero-badge .badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.75);
    box-shadow: none;
    text-transform: none;
    letter-spacing: normal;
}

.hero-v2 .hero-badge .badge i {
    display: none;
}

.hero-v2 .hero-title {
    color: #ffffff;
}

.hero-v2 .hero-title .text-gradient {
    background: none;
    -webkit-text-fill-color: var(--hero-v2-accent);
    color: var(--hero-v2-accent);
}

.hero-v2 .hero-subtitle {
    color: rgba(255, 255, 255, 0.55);
}

.hero-v2 .hero-actions .btn-primary {
    background: var(--hero-v2-accent);
    color: var(--hero-v2-accent-dark);
    border-radius: var(--radius-full);
    box-shadow: 0 0 28px rgba(255, 235, 0, 0.3);
}

.hero-v2 .hero-actions .btn-primary:hover:not(:disabled) {
    background: var(--color-action-dark);
    color: var(--hero-v2-accent-dark);
    box-shadow: 0 0 36px rgba(255, 235, 0, 0.45);
}

.hero-v2 .hero-actions .btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-full);
    box-shadow: none;
}

.hero-v2 .hero-actions .btn-secondary:hover:not(:active):not(:disabled) {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.4);
    text-underline-offset: 3px;
    padding: 12px 4px;
    margin: -12px -4px;
    transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.hero-cta-link i {
    font-size: 0.85rem;
    transition: transform 0.15s ease;
}

.hero-cta-link:hover {
    color: #ffffff;
    text-decoration-color: rgba(255, 255, 255, 0.7);
}

.hero-cta-link:hover i {
    transform: translateX(2px);
}

.hero-v2-checks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.75rem;
    margin: 2.5rem auto 0;
    animation: fadeInUp 0.6s ease-out 0.35s both;
}

.hero-v2-checks span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
}

.hero-v2-checks i {
    color: var(--hero-v2-accent);
}

@media (max-width:575.98px) {
    .hero-v2-checks {
        gap: 0.5rem 1.1rem;
    }
}

.hero-v2.page-hero.tone-primary,
.hero-v2.page-hero.tone-accent,
.hero-v2.page-hero.tone-blend {
    background: radial-gradient(ellipse 900px 480px at 50% 0%, rgba(255, 235, 0, 0.14), transparent 70%), #0b0b0b;
}

.page-hero.hero-v2.tone-primary .page-hero-overlay,
.page-hero.hero-v2.tone-accent .page-hero-overlay,
.page-hero.hero-v2.tone-blend .page-hero-overlay {
    background: radial-gradient(ellipse 900px 480px at 50% 0%, rgba(255, 235, 0, 0.16), transparent 70%), rgba(8, 8, 5, 0.68);
}

.page-hero.hero-v2 .page-hero-badge {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.8);
}

.hero-v2 .page-hero-badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--hero-v2-accent);
    box-shadow: 0 0 8px var(--hero-v2-accent);
    margin-right: 0.5rem;
}

.hero-v2 .text-highlight.is-white::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 20' preserveAspectRatio='none'%3E%3Cpath d='M2 14 Q 50 2 100 12 T 198 10' stroke='%23FFEB00' stroke-width='7' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    opacity: 1;
}

.hero-v2 .text-marker.is-white {
    background-image: linear-gradient(120deg, rgba(255, 235, 0, 0.5) 0%, rgba(255, 235, 0, 0.5) 100%);
    color: #fff;
}

.hero-v2 .text-pop.is-white {
    color: var(--hero-v2-accent);
}

.hero-v2 .badge-accent {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85) !important;
}

.hero-v2 .badge-accent::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--hero-v2-accent);
    box-shadow: 0 0 8px var(--hero-v2-accent);
    margin-right: 0.5rem;
}

.hero-v2 .category-hero-actions .btn-primary,
.hero-v2 .category-hero-actions .btn-outline-light {
    border-radius: var(--radius-full);
}

.hero-v2 .category-hero-actions .btn-primary {
    box-shadow: 0 0 28px rgba(255, 235, 0, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-spotlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 480px;
    margin: 1.5rem auto 0;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.hero-spotlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    color: inherit;
}

.hero-spotlight-thumb {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-neutral);
}

.hero-spotlight-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-spotlight-info {
    flex: 1;
    min-width: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.hero-spotlight-label {
    font-size: 0.68rem;
    font-weight: var(--font-weight-semi-bold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
}

.hero-spotlight-name {
    font-size: 0.92rem;
    font-weight: var(--font-weight-semi-bold);
    color: var(--color-text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hero-spotlight-price {
    font-size: 0.95rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.hero-spotlight-price-original {
    font-size: 0.78rem;
    font-weight: var(--font-weight-regular);
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.hero-spotlight-arrow {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-action);
    color: var(--color-on-action);
    font-size: 0.9rem;
    transition: transform var(--transition-fast);
}

.hero-spotlight:hover .hero-spotlight-arrow {
    transform: translateX(3px);
}

@media (max-width:575.98px) {
    .hero-spotlight {
        max-width: 100%;
        padding: 0.85rem 1rem;
    }

    .hero-spotlight-thumb {
        width: 52px;
        height: 52px;
    }
}

.feature-card-modern {
    box-shadow: var(--shadow-lg), var(--shadow-card-yellow);
    background: var(--color-secondary);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
    height: 100%;
}

.feature-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), var(--shadow-card-yellow);
}

.feature-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-soft);
    color: var(--color-primary);
    border-radius: var(--radius-lg);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: all var(--transition-base);
}

.feature-card-modern:hover .feature-card-icon {
    background: var(--color-primary-gradient);
    color: white;
    transform: scale(1.1) rotate(-5deg);
}

.feature-card-accent .feature-card-icon {
    background: var(--color-accent-soft);
    color: var(--color-accent);
}

.feature-card-accent:hover .feature-card-icon {
    background: var(--color-accent-gradient);
}

.feature-card-accent {
    background: linear-gradient(155deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    border-color: transparent;
}

.feature-card-accent .card-blob-bg {
    background: rgba(11, 11, 11, 0.45);
}

.feature-card-accent .feature-card-icon {
    background: rgba(255, 235, 0, 0.14);
    color: var(--color-action);
}

.feature-card-accent:hover .feature-card-icon {
    background: var(--color-action);
    color: var(--color-primary-dark);
}

.feature-card-accent .feature-card-content h3 {
    color: #ffffff;
}

.feature-card-accent .feature-card-content p {
    color: rgba(255, 255, 255, 0.7);
}

.feature-card-accent .feature-list li {
    color: rgba(255, 255, 255, 0.75);
}

.feature-card-accent .badge-accent {
    background: rgba(255, 235, 0, 0.16);
    border: 1px solid rgba(255, 235, 0, 0.4);
    color: var(--color-action);
}

.feature-card-content h3 {
    margin-bottom: 1rem;
    font-size: var(--font-h3);
}

.feature-card-content p {
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: var(--font-small);
    color: var(--color-text-secondary);
}

.feature-list li i {
    color: var(--color-success);
    font-size: 1rem;
}

.est-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.est-check-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: var(--font-small);
    color: var(--color-text-secondary);
    border-bottom: 1px dashed var(--color-border);
}

.est-check-list li:last-child {
    border-bottom: none;
}

.est-check-list li i {
    color: var(--color-primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.feature-card-decoration {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    pointer-events: none;
}

.deco-circle {
    width: 100%;
    height: 100%;
    background: var(--color-primary-gradient);
    opacity: 0.05;
    border-radius: 50%;
}

.feature-card-accent .deco-circle {
    background: var(--color-accent-gradient);
}

.feature-card-blob {
    isolation: isolate;
}

.card-blob-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    pointer-events: none;
}

.card-blob {
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: var(--color-action);
    opacity: 0.6;
    filter: blur(42px);
    animation: cardBlobBounce 9s infinite ease;
    pointer-events: none;
}

.feature-card-accent .card-blob {
    background: var(--color-action);
    opacity: 0.35;
}

.feature-card-blob .feature-card-icon,
.feature-card-blob .feature-card-content {
    position: relative;
    z-index: 2;
}

@keyframes cardBlobBounce {
    0% {
        transform: translate(-100%, -100%) translate3d(0, 0, 0);
    }

    25% {
        transform: translate(-100%, -100%) translate3d(100%, 0, 0);
    }

    50% {
        transform: translate(-100%, -100%) translate3d(100%, 100%, 0);
    }

    75% {
        transform: translate(-100%, -100%) translate3d(0, 100%, 0);
    }

    100% {
        transform: translate(-100%, -100%) translate3d(0, 0, 0);
    }
}

@media (prefers-reduced-motion:reduce) {
    .card-blob {
        animation: none;
    }
}

.promo-carousel {
    position: relative;
}

.promo-carousel-viewport {
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.promo-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.promo-slide {
    flex: 0 0 100%;
    position: relative;
    overflow: hidden;
}

.promo-slide-image {
    display: block;
    aspect-ratio: 16 / 9;
    background-color: var(--color-primary-dark, var(--color-primary));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: filter var(--transition-base);
}

.promo-slide-image:hover {
    filter: brightness(1.04);
}

.promo-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
    z-index: 2;
}

.promo-carousel-arrow:hover {
    background: var(--color-action);
}

.promo-carousel-prev {
    left: 1rem;
}

.promo-carousel-next {
    right: 1rem;
}

.promo-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.promo-carousel-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--color-border);
    padding: 0;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.promo-carousel-dots button.is-active {
    background: var(--color-action);
    width: 22px;
    border-radius: var(--radius-full);
}

@media (max-width:767.98px) {
    .promo-carousel-arrow {
        display: none;
    }
}

.section-header {
    text-align: center;
    margin: 0 auto 3rem;
}

.section-header h2 {
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--color-text-secondary);
    font-size: 1.125rem;
}

.flash-sale-banner {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.1rem;
    background: linear-gradient(155deg, var(--color-primary-dark, var(--color-primary)) 0%, var(--color-primary) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: 1.1rem 1.75rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    margin-bottom: 2rem;
}

.flash-sale-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

@keyframes flashSaleDecorFlicker {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.55;
    }

    52% {
        opacity: 1;
    }

    54% {
        opacity: 0.7;
    }
}

.flash-sale-banner>* {
    position: relative;
    z-index: 1;
}

.flash-sale-badge {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: linear-gradient(135deg, #ff3b4e 0%, var(--color-danger) 55%, #a8000f 100%);
    border: none;
    color: #fff;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.66rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 10px rgba(235, 0, 27, 0.5);
}

.flash-sale-badge::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.65) 50%, transparent 65%);
    transform: translateX(-100%) skewX(-20deg);
    animation: flashSaleBadgeShine 2.2s ease-in-out infinite;
}

@keyframes flashSaleBadgeShine {
    0% {
        transform: translateX(-100%) skewX(-20deg);
    }

    45%,
    100% {
        transform: translateX(100%) skewX(-20deg);
    }
}

.flash-sale-banner-left h2 {
    color: #ffffff;
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    margin-bottom: 0.25rem;
}

.flash-sale-banner-left .text-action {
    color: var(--color-danger);
}

.flash-sale-banner-left p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
}

@media (prefers-reduced-motion:reduce) {

    .flash-sale-banner,
    .flash-sale-banner-decor,
    .flash-sale-badge,
    .flash-sale-badge::after {
        animation: none;
    }
}

@media (max-width:767.98px) {
    .flash-sale-banner {
        padding: 1.1rem 1rem;
        text-align: center;
        justify-content: center;
    }

    .flash-sale-banner-left {
        width: 100%;
    }
}

.categories-section {
    background: var(--color-background-soft);
}

.category-card {
    box-shadow: var(--shadow-lg), var(--shadow-card-yellow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    min-height: 140px;
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    background: var(--color-secondary);
    color: var(--color-text-primary);
    text-align: center;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), var(--shadow-card-yellow);
}

.category-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-primary-soft);
    color: var(--color-primary);
    font-size: 1.5rem;
    transition: all var(--transition-base);
}

.category-card:hover .category-icon {
    background: var(--color-action);
    color: var(--color-primary-dark);
    transform: scale(1.1) rotate(-5deg);
}

.category-card-compact {
    min-height: auto;
    padding: 1rem 0.5rem;
    gap: 0.5rem;
    border-radius: var(--radius-lg);
}

.category-card-compact .category-icon {
    width: 42px;
    height: 42px;
    font-size: 1.15rem;
}

.category-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.category-card-compact .category-name {
    font-size: 0.78rem;
    line-height: 1.25;
}

.category-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.68rem;
    line-height: 1.3;
    color: var(--color-text-secondary);
    text-align: center;
}

.category-name {
    font-weight: var(--font-weight-semi-bold);
}

.products-section {
    background: var(--color-background-soft);
    position: relative;
}

.products-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(255, 235, 0, 0.08) 0%, transparent 100%);
    pointer-events: none;
}

.bg-pattern {
    background-image: linear-gradient(135deg, rgba(11, 11, 11, 0.03) 25%, transparent 25%), linear-gradient(225deg, rgba(11, 11, 11, 0.03) 25%, transparent 25%), linear-gradient(45deg, rgba(11, 11, 11, 0.03) 25%, transparent 25%), linear-gradient(315deg, rgba(11, 11, 11, 0.03) 25%, transparent 25%);
    background-position: 32px 0, 32px 0, 0 0, 0 0;
    background-size: 64px 64px;
    background-repeat: repeat;
}

.section-ambient {
    position: relative;
    isolation: isolate;
}

.section-ambient::after {
    content: '';
    position: absolute;
    z-index: -1;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: var(--color-action);
    opacity: 0.12;
    filter: blur(90px);
    top: -140px;
    right: -120px;
    pointer-events: none;
}

.section-ambient-alt::after {
    right: auto;
    left: -120px;
    top: auto;
    bottom: -140px;
}

.motif-dots::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: radial-gradient(rgba(11, 11, 11, 0.08) 1.5px, transparent 1.5px);
    background-size: 22px 22px;
    pointer-events: none;
}

.motif-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: linear-gradient(rgba(11, 11, 11, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 11, 11, 0.055) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.motif-diagonal::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: repeating-linear-gradient(45deg, rgba(11, 11, 11, 0.055) 0 2px, transparent 2px 14px);
    pointer-events: none;
}

.motif-cross::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath d='M12 7v10M7 12h10' stroke='%230b0b0b' stroke-width='1.5' stroke-linecap='round' opacity='0.09'/%3E%3C/svg%3E");
    background-size: 26px 26px;
    background-repeat: repeat;
    pointer-events: none;
}

.product-card {
    background: var(--color-secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-card-yellow);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-base);
    position: relative;
    animation: fadeInUp 0.45s ease both;
    animation-delay: calc(var(--card-i, 0) * 0.05s);
}

@media (prefers-reduced-motion:reduce) {
    .product-card {
        animation: none;
    }
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl), var(--shadow-card-yellow);
}

.product-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--color-neutral);
}

.product-image-link {
    display: block;
    width: 100%;
    height: 100%;
}

.product-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-thumb {
    transform: scale(1.05);
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary-soft) 0%, var(--color-accent-soft) 100%);
    transition: all var(--transition-base);
}

.product-image-placeholder i {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    color: var(--color-primary);
    font-size: 1.5rem;
}

.product-card:hover .product-image-placeholder {
    transform: scale(1.02);
}

.product-badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 3;
}

.product-badges-right {
    left: auto;
    right: 0.75rem;
    align-items: flex-end;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: var(--font-weight-semi-bold);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    line-height: 1;
}

.badge-gratis {
    background: linear-gradient(135deg, var(--color-success) 0%, #059669 100%);
    color: white;
}

.badge-diskon {
    background: linear-gradient(135deg, #ff3b4e 0%, var(--color-danger) 55%, #a8000f 100%);
    color: white;
}

.badge-new {
    background: var(--color-tertiary);
    color: white;
}

.badge-flash-sale {
    background: linear-gradient(135deg, #ff9a3c 0%, #ff3b4e 60%, #a8000f 100%);
    color: white;
}

.badge-flash-sale i {
    margin-right: 0.25rem;
}

.flash-sale-card-timer {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.65rem;
    margin-bottom: 0.5rem;
    border-radius: var(--radius-full);
    background: rgba(235, 0, 27, 0.08);
    color: var(--color-danger);
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
    width: fit-content;
}

.flash-sale-card-timer i {
    color: #ff6a00;
}

.flash-sale-card-timer strong {
    font-variant-numeric: tabular-nums;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.02em;
}

.flash-sale-card-timer.is-expired {
    background: var(--color-neutral);
    color: var(--color-text-muted);
}

.flash-sale-card-timer.is-expired i {
    color: var(--color-text-muted);
}

.product-share {
    position: absolute;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 4;
}

.product-share-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border: none;
    border-radius: var(--radius-full);
    color: var(--color-text-secondary);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
    font-size: 0.9rem;
}

.product-share-btn:hover,
.product-share-btn.is-active {
    background: var(--color-primary);
    color: white;
    transform: scale(1.08);
}

.product-share-menu {
    position: absolute;
    right: 0;
    bottom: calc(100% + 0.5rem);
    min-width: 170px;
    background: var(--color-surface, #fff);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 0.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.9);
    transform-origin: bottom right;
    transition: opacity 0.2s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.2s;
}

.product-share-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.product-share-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.65rem;
    border: none;
    background: none;
    border-radius: var(--radius-sm);
    color: var(--color-text-primary);
    font-size: 0.82rem;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    width: 100%;
}

.product-share-option:hover {
    background: var(--color-neutral);
    color: var(--color-text-primary);
}

.product-share-option i {
    width: 1.1rem;
    text-align: center;
    color: var(--color-text-secondary);
}

.product-share-option[data-share-option="whatsapp"] i {
    color: #25d366;
}

.product-share-option[data-share-option="facebook"] i {
    color: #1877f2;
}

.product-share-option[data-share-option="twitter"] i {
    color: #111;
}

.product-sold-count {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: var(--font-small);
    color: var(--color-text-muted);
}

.product-sold-count i {
    font-size: 0.8rem;
}

.product-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.5rem;
}

.product-category-link {
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: var(--font-weight-semi-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.25rem;
    transition: color var(--transition-fast);
}

.product-category-link:hover {
    color: var(--color-primary-dark);
}

.product-category-link i {
    margin-right: 0.2rem;
}

.product-title {
    font-size: 1rem;
    font-weight: var(--font-weight-semi-bold);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
    min-height: 3rem;
}

.product-title a {
    color: var(--color-text-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.product-tagline {
    margin: -0.15rem 0 0;
    font-size: 0.78rem;
    color: var(--color-text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.35rem 0.5rem;
    margin: 0.5rem 0;
    padding: 0.5rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.product-meta-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-meta-left .product-sold-count::before {
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--color-text-muted);
    flex-shrink: 0;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: var(--font-small);
    color: var(--color-text-secondary);
}

.product-rating i {
    color: var(--color-warning);
    font-size: 0.85rem;
}

.product-rating span:last-child {
    color: var(--color-text-muted);
    font-size: 0.8rem;
}

.product-meta .pdp-rating-new {
    font-size: var(--font-small);
}

.product-format {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    background: var(--color-primary-soft);
    color: var(--color-primary);
    font-size: 0.7rem;
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 0.25rem 0 1rem;
    min-height: 2rem;
}

.price-current {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.02em;
    line-height: 1;
}

.price-original {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.price-free {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-success);
    letter-spacing: -0.02em;
    line-height: 1;
}

.product-card-body .btn-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
    font-weight: var(--font-weight-bold);
    border-radius: var(--radius-md);
    background: var(--color-action);
    color: var(--color-on-action);
    border: none;
    text-decoration: none;
    transition: all var(--transition-fast);
    margin-top: auto;
}

.btn-card:hover {
    background: var(--color-action-dark);
    box-shadow: inset 0 0 0 2px var(--color-on-action);
    color: var(--color-on-action);
}

.btn-card i {
    transition: transform var(--transition-fast);
}

.btn-card:hover i {
    transform: translateX(3px);
}

.product-card-actions {
    display: flex;
    align-items: stretch;
    gap: 0.5rem;
    margin-top: auto;
}

.product-card-buy-form {
    display: flex;
}

.product-card-actions .btn-card-buy {
    width: 100%;
    margin-top: 0;
}

.btn-card-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    flex-shrink: 0;
    padding: 0;
    font-size: 1.1rem;
    border-radius: var(--radius-md);
    background: transparent;
    color: var(--color-action);
    border: 2px solid var(--color-action);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-card-cart:hover {
    background: var(--color-action);
    color: var(--color-on-action);
}

@media (max-width:767.98px) {
    .product-card-image {
        aspect-ratio: auto;
    }

    .product-thumb {
        height: auto;
        object-fit: contain;
    }

    .product-image-placeholder {
        aspect-ratio: 1/1;
    }

    .product-badges {
        top: 0.4rem;
        left: 0.4rem;
        gap: 0.3rem;
    }

    .product-badges-right {
        right: 0.4rem;
    }

    .badge {
        padding: 0.22rem 0.5rem;
        font-size: 0.58rem;
    }

    .product-share {
        right: 0.4rem;
        bottom: 0.4rem;
    }

    .product-share-btn {
        width: 26px;
        height: 26px;
        font-size: 0.7rem;
    }

    .flash-sale-card-timer {
        padding: 0.2rem 0.45rem;
        margin-bottom: 0.3rem;
        font-size: 0.62rem;
        gap: 0.25rem;
    }

    .product-card-body {
        padding: 0.65rem;
        gap: 0.25rem;
    }

    .product-category-link {
        font-size: 0.62rem;
        margin-bottom: 0;
    }

    .product-title {
        font-size: 0.8rem;
        line-height: 1.35;
        min-height: 2.2rem;
    }

    .product-meta {
        margin: 0.3rem 0;
        padding: 0.35rem 0;
        gap: 0.2rem 0.35rem;
    }

    .product-meta-left {
        gap: 0.35rem;
    }

    .product-rating,
    .product-meta .pdp-rating-new,
    .product-sold-count {
        font-size: 0.66rem;
    }

    .product-rating i,
    .product-sold-count i {
        font-size: 0.68rem;
    }

    .product-format {
        padding: 0.12rem 0.4rem;
        font-size: 0.58rem;
    }

    .product-price {
        margin: 0.15rem 0 0.5rem;
        min-height: 0;
        gap: 0.3rem;
    }

    .price-current,
    .price-free {
        font-size: 0.95rem;
    }

    .price-original {
        font-size: 0.68rem;
    }

    .product-card-actions {
        display: none;
    }
}

.products-main {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    min-width: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

@media (max-width:991.98px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1.25rem;
    }
}

@media (max-width:767.98px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
    }
}

@media (max-width:400px) {
    .products-grid {
        gap: 0.6rem;
    }
}

.jasa-promo-banner {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex-wrap: wrap;
    background: linear-gradient(155deg, #0b0b0b 0%, #1c1c1c 100%);
    border-radius: var(--radius-2xl);
    padding: 2.25rem 2.5rem;
    box-shadow: var(--shadow-lg);
}

.jasa-promo-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.jasa-promo-banner::after {
    content: '';
    position: absolute;
    top: -90px;
    right: -60px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: var(--color-action);
    opacity: 0.16;
    pointer-events: none;
}

.jasa-promo-banner>* {
    position: relative;
    z-index: 1;
}

.jasa-promo-icon {
    width: 68px;
    height: 68px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-action) 0%, var(--color-action-dark) 100%);
    color: var(--color-on-action);
    border-radius: 50%;
    font-size: 1.9rem;
    box-shadow: 0 0 0 6px rgba(255, 235, 0, 0.14);
    animation: jasaPromoIconFloat 3s ease-in-out infinite;
}

@keyframes jasaPromoIconFloat {

    0%,
    100% {
        transform: translateY(0);
        box-shadow: 0 0 0 6px rgba(255, 235, 0, 0.14);
    }

    50% {
        transform: translateY(-6px);
        box-shadow: 0 0 0 10px rgba(255, 235, 0, 0.08);
    }
}

.jasa-promo-copy {
    flex: 1;
    min-width: 260px;
}

.jasa-promo-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--color-action);
    background: rgba(255, 235, 0, 0.12);
    border: 1px solid rgba(255, 235, 0, 0.35);
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}

.jasa-promo-copy h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.jasa-promo-copy p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.95rem;
    max-width: 46em;
}

.jasa-promo-banner .btn {
    flex-shrink: 0;
    border-radius: var(--radius-full);
}

@media (max-width:767.98px) {
    .jasa-promo-banner {
        text-align: center;
        flex-direction: column;
    }

    .jasa-promo-copy p {
        max-width: none;
    }
}

.service-card {
    background: var(--color-secondary);
    border-radius: var(--radius-xl);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-lg), var(--shadow-card-yellow);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), var(--shadow-card-yellow);
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--color-primary-gradient);
    border-radius: inherit;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-popular::after {
    background: var(--color-accent-gradient);
}

.service-card:hover::after {
    transform: translateY(0);
}

.service-name,
.service-price-label,
.service-price-value,
.service-price-original,
.service-value-text,
.service-desc,
.service-meta,
.service-features li,
.service-features li i,
.service-features-label,
.service-payment-scheme,
.service-payment-scheme i,
.maintenance-price-main,
.maintenance-price-yearly {
    transition: color 0.3s ease 0.1s;
}

.service-card:hover .service-name,
.service-card:hover .service-price-label,
.service-card:hover .service-price-value,
.service-card:hover .service-value-text,
.service-card:hover .service-desc,
.service-card:hover .service-meta,
.service-card:hover .service-features li,
.service-card:hover .service-features li i,
.service-card:hover .service-features-label,
.service-card:hover .service-payment-scheme,
.service-card:hover .service-payment-scheme i,
.service-card:hover .maintenance-price-main,
.service-card:hover .maintenance-price-yearly {
    color: #fff;
}

.service-card:hover .service-price-original {
    color: rgba(255, 255, 255, 0.7);
}

.service-card:hover .service-payment-scheme {
    background: rgba(255, 255, 255, 0.15);
}

.service-card:hover .btn-outline {
    background: #fff;
    color: var(--color-tertiary);
    border-color: #fff;
}

.service-card-popular:hover .btn-accent {
    background: #fff;
    color: var(--color-tertiary);
}

.service-card-popular:hover .service-popular-badge {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.service-card-popular {
    box-shadow: var(--shadow-xl), var(--shadow-card-yellow);
}

.service-card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.service-popular-badge {
    display: inline-flex;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
    background: var(--color-accent-soft);
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: var(--font-weight-semi-bold);
}

.service-promo-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
    background: var(--color-danger);
    color: #fff;
    font-size: 0.75rem;
    font-weight: var(--font-weight-semi-bold);
}

.service-price-original {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    text-decoration: line-through;
}

.service-name {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-price,
.service-value {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.service-price-label {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
}

.service-price-value {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
}

.service-value-text {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: var(--font-weight-semi-bold);
    color: var(--color-primary);
}

.maintenance-price-block {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-bottom: 1rem;
}

.maintenance-price-main {
    font-size: 1.6rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
}

.maintenance-price-main small {
    font-size: 0.95rem;
    font-weight: var(--font-weight-medium);
    opacity: 0.7;
}

.maintenance-price-yearly {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.service-desc {
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
}

.service-features-label {
    display: block;
    font-size: 0.72rem;
    font-weight: var(--font-weight-semi-bold);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-text-muted);
    margin-bottom: 0.35rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0;
    color: var(--color-text-secondary);
}

.service-features li i {
    color: var(--color-success);
}

.service-payment-scheme {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: var(--color-text-secondary);
    background: var(--color-background-soft);
    border-radius: var(--radius-md);
    padding: 0.6rem 0.85rem;
    margin-bottom: 1.25rem;
}

.service-payment-scheme i {
    color: var(--color-success);
}

.marketplace-page {
    padding-bottom: 4rem;
    background: var(--color-background-soft);
    min-height: 100vh;
}

.page-header {
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, rgba(11, 11, 11, 0.06) 0%, rgba(11, 11, 11, 0.04) 100%);
    border-bottom: 1px solid var(--color-border);
}

.page-header-content {
    max-width: 760px;
}

.page-header-content h1 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.page-header-content p {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    margin-bottom: 0;
    line-height: 1.6;
}

.section-products {
    padding: 2rem 0;
}

.products-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    min-width: 0;
}

.products-layout.is-loading {
    opacity: 0.55;
    pointer-events: none;
    transition: opacity 0.15s ease;
}

@media (min-width:992px) {
    .products-layout {
        grid-template-columns: 280px 1fr;
        gap: 2.5rem;
        align-items: start;
    }
}

.filters-sidebar {
    background: var(--color-secondary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    position: sticky;
    top: 90px;
    box-shadow: var(--shadow-lg), var(--shadow-card-yellow);
}

.filters-sidebar-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.filters-sidebar-header i {
    color: var(--color-primary);
}

.filter-title-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: var(--radius-sm);
    background: var(--color-primary-soft);
    color: var(--color-primary);
    font-size: 0.75rem;
    margin-right: 0.4rem;
    vertical-align: middle;
}

.filter-section {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--color-border);
}

.filter-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.filter-title,
.filter-label {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    font-weight: var(--font-weight-semi-bold);
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.filter-option a,
.filter-rating a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.75rem;
    border-radius: var(--radius-md);
    color: var(--color-text-secondary);
    background: var(--color-background-soft);
    transition: all var(--transition-fast);
    font-size: 0.9rem;
    border: 1px solid transparent;
}

.filter-option.active a,
.filter-option a:hover,
.filter-rating a:hover {
    background: var(--color-primary-soft);
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.form-input,
.form-select {
    width: 100%;
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-md);
    padding: 0.7rem 0.9rem;
    font: inherit;
    color: var(--color-text-primary);
    background: var(--color-secondary);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-control {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.03);
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.form-control:hover {
    border-color: #d0d4db;
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-glow), 0 1px 2px rgba(16, 24, 40, 0.03);
}

body.bg-light .form-select {
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.03);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

body.bg-light .form-select:hover {
    border-color: #d0d4db;
}

body.bg-light .form-control:focus,
body.bg-light .form-select:focus {
    border-color: #4338ca;
    box-shadow: 0 0 0 3px rgba(67, 56, 202, 0.14), 0 1px 2px rgba(16, 24, 40, 0.03);
}

textarea.form-input {
    resize: vertical;
    min-height: unset;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-glow);
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-separator {
    color: var(--color-text-secondary);
}

.products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    padding: 1rem 1.25rem;
    background: var(--color-secondary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg), var(--shadow-card-yellow);
}

.products-count {
    color: var(--color-text-secondary);
    font-weight: var(--font-weight-medium);
}

.toolbar-left {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.category-quickfilter-wrap {
    position: relative;
    margin-bottom: 1.25rem;
}

.category-quickfilter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.category-quickfilter-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem;
    border-radius: var(--radius-full);
    background: var(--color-secondary);
    border: 2px solid var(--color-primary-dark);
    color: var(--color-text-secondary);
    font-size: 0.85rem;
    font-weight: var(--font-weight-medium);
    white-space: nowrap;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.category-quickfilter-chip i {
    color: var(--color-primary);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.category-quickfilter-chip:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xs);
}

.category-quickfilter-chip.active {
    background: var(--color-primary-gradient);
    border-color: transparent;
    color: white;
}

.category-quickfilter-chip.active i {
    color: white;
}

@media (max-width:767.98px) {
    .category-quickfilter {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.4rem;
        margin-left: -1px;
        scrollbar-width: none;
    }

    .category-quickfilter::-webkit-scrollbar {
        display: none;
    }

    .category-quickfilter-chip {
        padding: 0.5rem 0.9rem;
        font-size: 0.8rem;
    }

    .category-quickfilter-wrap::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0.4rem;
        width: 32px;
        background: linear-gradient(to right, rgba(247, 249, 248, 0), var(--color-background-soft));
        pointer-events: none;
    }
}

.category-fullgrid-heading {
    margin: 0.5rem 0 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--color-border);
}

.category-fullgrid-heading h3 {
    font-size: 1.1rem;
    font-weight: var(--font-weight-semi-bold);
    color: var(--color-text-primary);
    margin: 0;
}

.category-fullgrid-heading i {
    color: var(--color-text-secondary);
}

.category-hero {
    position: relative;
    overflow: hidden;
    margin-top: -72px;
    padding: 168px 0 72px;
    background: radial-gradient(circle at 78% 24%, rgba(255, 235, 0, 0.14), transparent 25rem), linear-gradient(135deg, #0b0b0b 0%, #151515 60%, #241f00 100%);
    color: #fff;
}

.category-hero-grid-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: linear-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.25) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black, transparent);
    -webkit-mask-image: linear-gradient(to bottom, black, transparent);
    pointer-events: none;
}

.category-hero-breadcrumb {
    margin-bottom: 2rem;
    justify-content: flex-start !important;
}

.category-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width:991.98px) {
    .category-hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.category-hero-eyebrow {
    display: inline-block;
    color: var(--color-action);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.category-hero-title {
    font-family: var(--font-family-heading);
    font-size: clamp(2.75rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 1.25rem;
}

.category-hero-title-accent {
    display: block;
    width: 5.5rem;
    max-width: 40%;
    height: 0.5rem;
    margin-top: 0.6rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 20' preserveAspectRatio='none'%3E%3Cpath d='M2 14 Q 50 2 100 12 T 198 10' stroke='%23FFEB00' stroke-width='7' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.category-hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.68);
    max-width: 540px;
    margin-bottom: 1.75rem;
}

.category-hero-search {
    max-width: 460px;
    margin: 0 0 1.5rem;
}

.category-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

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

@media (max-width:991.98px) {
    .category-hero-visual {
        min-height: 260px;
    }
}

@keyframes categoryHeroPanelEnter {
    from {
        opacity: 0;
        transform: rotate(5deg) translateY(28px) scale(0.94);
    }

    to {
        opacity: 1;
        transform: rotate(5deg) translateY(0) scale(1);
    }
}

@keyframes categoryHeroPanelFloat {

    0%,
    100% {
        transform: rotate(5deg) translateY(0);
    }

    50% {
        transform: rotate(3deg) translateY(-10px);
    }
}

.category-hero-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 15rem;
    height: 17.5rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border: 3px solid var(--color-action);
    background: linear-gradient(160deg, #3a3a3a 0%, #1a1a1a 55%, #0b0b0b 100%);
    box-shadow: 18px 22px 0 rgba(255, 235, 0, 0.22);
    transform: rotate(5deg);
    animation: categoryHeroPanelEnter 0.7s ease-out both, categoryHeroPanelFloat 6s ease-in-out 0.7s infinite;
}

.category-hero-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px);
    background-size: 14px 14px;
    opacity: 0.55;
    pointer-events: none;
}

@media (max-width:575.98px) {
    .category-hero-visual {
        min-height: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1.5rem 0 0.5rem;
    }
}

@media (max-width:767.98px) {
    .category-hero-panel {
        display: none;
    }
}

.category-hero-panel-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.category-hero-panel-brand {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--color-action);
}

.category-hero-panel-tag {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    padding: 0.15rem 0.55rem;
    white-space: nowrap;
}

.category-hero-panel-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.6rem;
    line-height: 1;
    color: var(--color-action);
}

.category-hero-panel-name {
    position: relative;
    z-index: 1;
    margin: 0;
    font-family: var(--font-family-heading);
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: #fff;
}

@keyframes categoryHeroSpotlightEnter {
    from {
        opacity: 0;
        transform: rotate(-4deg) translateY(32px) scale(0.92);
    }

    to {
        opacity: 1;
        transform: rotate(-4deg) translateY(0) scale(1);
    }
}

@keyframes categoryHeroSpotlightFloat {

    0%,
    100% {
        transform: rotate(-4deg) translateY(0);
    }

    50% {
        transform: rotate(-6deg) translateY(-8px);
    }
}

.category-hero-spotlight {
    position: absolute;
    left: 0;
    bottom: -2rem;
    z-index: 2;
    display: block;
    width: 13.5rem;
    padding: 1.25rem;
    background: #fff;
    color: var(--color-text-primary);
    text-decoration: none;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    transform: rotate(-4deg);
    transition: transform var(--transition-base);
    animation: categoryHeroSpotlightEnter 0.7s ease-out 0.15s both, categoryHeroSpotlightFloat 5s ease-in-out 0.85s infinite;
}

.category-hero-spotlight:hover {
    animation: none;
    transform: rotate(0deg) translateY(-4px);
    color: var(--color-text-primary);
}

@media (prefers-reduced-motion:reduce) {

    .category-hero-panel,
    .category-hero-spotlight {
        animation: none;
    }
}

@media (max-width:575.98px) {
    .category-hero-spotlight {
        position: relative;
        left: auto;
        bottom: auto;
        width: 11.5rem;
        padding: 1rem;
        margin: -1.75rem auto 0;
    }
}

.category-hero-spotlight-thumb {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    margin-bottom: 0.85rem;
    overflow: hidden;
    background: var(--color-neutral);
}

.category-hero-spotlight-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.category-hero-spotlight-label {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    margin-bottom: 0.3rem;
}

.category-hero-spotlight-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.category-hero-spotlight-price {
    display: block;
    font-size: 1rem;
    font-weight: 800;
}

.category-hero-spotlight-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.6rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-text-muted);
    transition: gap var(--transition-base), color var(--transition-base);
}

.category-hero-spotlight-cta i {
    font-size: 0.7rem;
    transition: transform var(--transition-base);
}

.category-hero-spotlight:hover .category-hero-spotlight-cta {
    gap: 0.5rem;
    color: var(--color-primary);
}

.category-hero-spotlight:hover .category-hero-spotlight-cta i {
    transform: translateX(2px);
}

.category-hero-metrics {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 3rem;
}

@media (max-width:575.98px) {
    .category-hero-metrics {
        grid-template-columns: 1fr 1fr;
    }
}

.category-hero-metric {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    padding: 1rem 1.2rem;
}

.category-hero-metric strong {
    display: block;
    font-size: 1.7rem;
    font-weight: 900;
    color: #fff;
}

.category-hero-metric span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.78rem;
}

.category-page .category-fullgrid-heading {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin: 0.5rem 0 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.category-page .category-fullgrid-ghost-icon {
    position: absolute;
    top: 0.5rem;
    right: -0.5rem;
    font-size: 6.5rem;
    line-height: 1;
    color: rgba(11, 11, 11, 0.05);
    z-index: 0;
    pointer-events: none;
}

.category-page .category-fullgrid-eyebrow {
    position: relative;
    z-index: 1;
    font-size: 0.72rem;
    font-weight: var(--font-weight-semi-bold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.category-page .category-fullgrid-heading h3 {
    position: relative;
    z-index: 1;
    font-size: 1.4rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
}

.category-page .category-note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 0.85rem 1.1rem;
    background: var(--color-secondary);
    box-shadow: var(--shadow-lg), var(--shadow-card-yellow);
    font-size: 0.88rem;
    color: var(--color-text-secondary);
    line-height: 1.55;
}

.category-page .category-note i {
    color: var(--color-primary);
    font-size: 1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.category-page .category-note strong {
    color: var(--color-text-primary);
}

.category-page .category-note p {
    margin: 0;
}

.category-page .category-note a {
    color: var(--color-text-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.category-page .products-toolbar {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
    box-shadow: none;
    padding: 0 0 1rem;
}

.category-page .products-count {
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    font-weight: var(--font-weight-semi-bold);
    color: var(--color-text-primary);
}

.category-page .product-card {
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg), var(--shadow-card-yellow);
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-page .product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl), var(--shadow-card-yellow);
}

.category-page .product-card:hover .product-thumb {
    filter: saturate(1.08) contrast(1.03);
}

.category-page .product-card-image {
    aspect-ratio: 4/5;
}

.category-page .product-card-body {
    padding: 1.1rem 1.25rem 1.25rem;
    gap: 0.35rem;
}

.category-page .product-title {
    font-size: 0.95rem;
    min-height: 2.7rem;
}

.category-page .product-card-body .btn-card {
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    padding: 0.7rem 1rem;
}

.category-page .page-highlight-section .page-highlight-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0.5rem 1.5rem;
    text-align: center;
    position: relative;
}

.category-page .page-highlight-section .page-highlight-card:hover {
    transform: none;
    box-shadow: none;
}

.category-page .page-highlight-section .page-highlight-card::before {
    display: none;
}

.category-page .page-highlight-section .page-highlight-card:not(:first-child)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.25rem;
    bottom: 0.25rem;
    width: 1px;
    background: var(--color-card-border);
}

.category-page .page-highlight-section .page-highlight-icon {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width:767.98px) {
    .category-page .page-highlight-section .page-highlight-card:not(:first-child)::before {
        display: none;
    }
}

.category-page .category-delivery-section {
    position: relative;
    overflow: hidden;
    background: var(--color-primary-dark);
}

.category-page .category-delivery-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
    background-size: 26px 26px;
    mask-image: radial-gradient(ellipse at 15% 25%, black 0%, transparent 65%);
    -webkit-mask-image: radial-gradient(ellipse at 15% 25%, black 0%, transparent 65%);
    pointer-events: none;
}

.category-page .category-delivery-ghost-icon {
    position: absolute;
    right: -2.5rem;
    bottom: -3.5rem;
    font-size: 18rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.04);
    z-index: 0;
    pointer-events: none;
}

@media (max-width:767.98px) {
    .category-page .category-delivery-ghost-icon {
        font-size: 11rem;
    }
}

.category-page .category-delivery-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width:991.98px) {
    .category-page .category-delivery-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.category-page .category-delivery-section .category-fullgrid-eyebrow {
    color: var(--color-action);
}

.category-page .category-delivery-copy h2 {
    font-size: 1.6rem;
    font-weight: var(--font-weight-bold);
    color: #fff;
    margin: 0.5rem 0 1rem;
    line-height: 1.3;
}

.category-page .category-delivery-copy p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.category-page .category-delivery-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: var(--font-weight-semi-bold);
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 0.15rem;
    transition: gap var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.category-page .category-delivery-link:hover {
    gap: 0.65rem;
    color: var(--color-action);
    border-color: var(--color-action);
}

.category-page .category-delivery-list-wrap {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-sm);
    padding: 1.75rem;
    backdrop-filter: blur(6px);
}

.category-page .category-delivery-list-label {
    font-size: 0.72rem;
    font-weight: var(--font-weight-semi-bold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1.1rem;
}

.category-page .category-delivery-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-page .category-delivery-list li {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 1.02rem;
    color: #fff;
    line-height: 1.4;
}

.category-page .category-delivery-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.category-page .category-delivery-list li:first-child {
    padding-top: 0;
}

.category-page .category-delivery-list-index {
    font-family: var(--font-family-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-action);
    flex-shrink: 0;
}

.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.75rem;
    border-radius: var(--radius-full);
    background: var(--color-primary-soft);
    color: var(--color-primary);
    font-size: 0.9rem;
}

.filter-chip-remove {
    color: inherit;
}

.clear-all-filters {
    color: var(--color-accent);
    font-weight: var(--font-weight-medium);
}

.empty-state {
    background: var(--color-secondary);
    border: 1px dashed var(--color-border);
    border-radius: var(--radius-xl);
    padding: 4rem 2rem;
    text-align: center;
}

.empty-state-icon {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-primary-soft);
    color: var(--color-primary);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.load-more-wrapper {
    display: flex;
    justify-content: center;
}

.load-more-btn {
    min-width: 220px;
}

.load-more-btn:disabled {
    opacity: 0.7;
    cursor: default;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pagination a,
.pagination strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
    padding: 0 0.75rem;
    border-radius: var(--radius-md);
    border: 2px solid var(--color-primary-dark);
    background: var(--color-secondary);
    color: var(--color-text-primary);
}

.pagination strong {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

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

.offcanvas {
    background: var(--color-secondary);
}

.offcanvas-header {
    border-bottom: 1px solid var(--color-border);
}

.products-main {
    min-height: 400px;
}

.no-horizontal-scroll {
    overflow-x: hidden;
}

.sort-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sort-icon {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.sort-dropdown .form-select {
    padding-right: 2.5rem;
    min-width: 180px;
}

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.toolbar-search-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.toolbar-search-icon {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.toolbar-search-input {
    min-height: 38px;
    width: 220px;
    padding: 0.5rem 0.85rem;
}

.mobile-filter-toggle {
    border-radius: var(--radius-md);
}

@media (max-width:991.98px) {
    .products-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .products-toolbar.toolbar-pinned {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        z-index: var(--z-sticky);
        border-radius: 0;
    }

    #toolbarPinPlaceholder {
        height: 0;
    }

    .toolbar-left {
        display: none;
    }

    .mobile-filter-toggle {
        width: 100%;
        justify-content: center;
    }

    .toolbar-right {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .toolbar-search-form {
        width: 100%;
    }

    .toolbar-search-input {
        width: 100%;
    }

    .sort-dropdown {
        width: 100%;
    }

    .sort-dropdown .form-select {
        width: 100%;
    }
}

.cta-section-wrapper {
    padding-top: 0;
}

.cta-modern {
    background: var(--color-primary-gradient);
    border-radius: var(--radius-2xl);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

@media (min-width:992px) {
    .cta-modern {
        padding: 5rem 3rem;
    }
}

.cta-bg-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.cta-shape-1 {
    width: 400px;
    height: 400px;
    background: white;
    top: -150px;
    right: -100px;
    animation: floatShape 10s ease-in-out infinite;
}

.cta-shape-2 {
    width: 300px;
    height: 300px;
    background: white;
    bottom: -100px;
    left: -50px;
    animation: floatShape 8s ease-in-out infinite reverse;
}

.cta-shape-3 {
    width: 200px;
    height: 200px;
    background: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseShape 6s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    margin: 0 auto 1.5rem;
}

.cta-icon i {
    font-size: 2.5rem;
    color: white;
}

.cta-title {
    color: white;
    margin-bottom: 1rem;
    font-size: var(--font-h2);
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    max-width: 500px;
    margin: 0 auto 1.5rem;
}

.trust-section {
    background: var(--color-secondary);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width:768px) {
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.trust-item {
    text-align: center;
    padding: 1.5rem;
}

.trust-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-soft);
    color: var(--color-primary);
    border-radius: var(--radius-lg);
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    transition: all var(--transition-base);
}

.trust-item:hover .trust-icon {
    background: var(--color-primary-gradient);
    color: white;
    transform: scale(1.1);
}

.trust-item h5 {
    font-size: 1rem;
    font-weight: var(--font-weight-semi-bold);
    margin-bottom: 0.25rem;
}

.trust-item p {
    font-size: var(--font-small);
    color: var(--color-text-secondary);
    margin: 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.75rem;
    font-size: var(--font-small);
    font-weight: var(--font-weight-medium);
    line-height: 1;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.badge-sm {
    padding: 0.25rem 0.5rem;
    font-size: 11px;
}

.badge-lg {
    padding: 0.5rem 1rem;
    font-size: var(--font-body);
}

.badge-primary {
    background: var(--color-primary-soft);
    color: var(--color-primary);
    border: 2px solid var(--color-primary-dark);
}

.badge-primary:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary-dark);
}

.badge-secondary {
    background: var(--color-neutral);
    color: var(--color-text-secondary);
    border: 1px solid var(--color-border);
}

.badge-accent {
    background: var(--color-accent-gradient);
    color: white;
}

.badge-action {
    background: var(--color-action);
    color: var(--color-on-action);
}

.badge-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
}

.badge-danger {
    background: rgba(220, 38, 38, 0.1);
    color: var(--color-danger);
}

.badge-warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--color-warning);
}

.badge-outline {
    background: transparent;
    border: 1px solid currentColor;
}

.badge-dot {
    position: relative;
    padding-left: 1rem;
}

.badge-dot::before {
    content: "";
    position: absolute;
    left: 0.375rem;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: currentColor;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.footer {
    background: linear-gradient(180deg, var(--color-tertiary) 0%, #0f1115 100%);
    color: var(--color-secondary);
    padding: 5rem 0 2rem;
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width:768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width:992px) {
    .footer-grid {
        grid-template-columns: 2fr repeat(4, 1fr);
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.footer-logo {
    display: block;
    height: 38px;
    width: auto;
}

.footer-wordmark {
    display: block;
    height: 18px;
    width: auto;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1rem;
    font-weight: var(--font-weight-semi-bold);
    color: white;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--color-action);
    border-radius: var(--radius-full);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 0.5rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: var(--font-small);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
}

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

.text-primary {
    color: var(--color-primary) !important;
}

.text-secondary {
    color: var(--color-text-secondary) !important;
}

.text-danger {
    color: var(--color-danger) !important;
}

.text-success {
    color: var(--color-success) !important;
}

.text-warning {
    color: var(--color-warning) !important;
}

.text-white {
    color: white !important;
}

.text-center {
    text-align: center !important;
}

.text-gradient {
    background: var(--color-primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-primary {
    background-color: var(--color-primary) !important;
}

.bg-soft {
    background-color: var(--color-background-soft) !important;
}

.bg-neutral {
    background-color: var(--color-neutral) !important;
}

.bg-gradient {
    background: var(--color-primary-gradient) !important;
}

.font-weight-medium {
    font-weight: var(--font-weight-medium) !important;
}

.font-weight-semi-bold {
    font-weight: var(--font-weight-semi-bold) !important;
}

.font-weight-bold {
    font-weight: var(--font-weight-bold) !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-column {
    flex-direction: column !important;
}

.flex-1 {
    flex: 1 !important;
}

.align-items-center {
    align-items: center !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.gap-1 {
    gap: var(--spacing-sm) !important;
}

.gap-2 {
    gap: var(--spacing-md) !important;
}

.gap-3 {
    gap: var(--spacing-lg) !important;
}

.m-0 {
    margin: 0 !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: var(--spacing-sm) !important;
}

.mt-2 {
    margin-top: var(--spacing-md) !important;
}

.mt-3 {
    margin-top: var(--spacing-lg) !important;
}

.mt-4 {
    margin-top: var(--spacing-xl) !important;
}

.mt-5 {
    margin-top: var(--spacing-2xl) !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: var(--spacing-sm) !important;
}

.mb-2 {
    margin-bottom: var(--spacing-md) !important;
}

.mb-3 {
    margin-bottom: var(--spacing-lg) !important;
}

.mb-4 {
    margin-bottom: var(--spacing-xl) !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.p-0 {
    padding: 0 !important;
}

.p-1 {
    padding: var(--spacing-sm) !important;
}

.p-2 {
    padding: var(--spacing-md) !important;
}

.p-3 {
    padding: var(--spacing-lg) !important;
}

.p-4 {
    padding: var(--spacing-xl) !important;
}

.py-section {
    padding-top: var(--section-spacing-mobile);
    padding-bottom: var(--section-spacing-mobile);
}

.w-100 {
    width: 100% !important;
}

.h-100 {
    height: 100% !important;
}

.rounded {
    border-radius: var(--radius-md) !important;
}

.rounded-lg {
    border-radius: var(--radius-lg) !important;
}

.rounded-xl {
    border-radius: var(--radius-xl) !important;
}

.rounded-full {
    border-radius: var(--radius-full) !important;
}

.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

.shadow-md {
    box-shadow: var(--shadow-md) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

.shadow-xl {
    box-shadow: var(--shadow-xl) !important;
}

.overflow-hidden {
    overflow: hidden !important;
}

.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute !important;
}

.cursor-pointer {
    cursor: pointer !important;
}

.user-select-none {
    user-select: none !important;
}

.transition {
    transition: all var(--transition-base) !important;
}

.list-unstyled {
    list-style: none !important;
    padding-left: 0 !important;
}

[data-tooltip] {
    position: relative;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    padding: 6px 10px;
    background: var(--color-tertiary);
    color: white;
    font-size: 12px;
    white-space: nowrap;
    border-radius: var(--radius-sm);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: 100;
    pointer-events: none;
}

[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-8px);
}

@media (max-width:575.98px) {
    .text-sm-center {
        text-align: center !important;
    }
}

@media (min-width:768px) {
    .text-md-center {
        text-align: center !important;
    }
}

@media (min-width:992px) {
    .text-lg-center {
        text-align: center !important;
    }
}

.hero-search-bar {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.hero-search-inner {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(11, 11, 11, 0.2);
    border-radius: var(--radius-2xl);
    padding: 6px 6px 6px 20px;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.hero-search-inner:focus-within {
    background: #ffffff;
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow), var(--shadow-xl);
    transform: translateY(-2px);
}

.hero-search-icon {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-right: 12px;
}

.hero-search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 0;
    font-size: 1.05rem;
    color: var(--color-text-primary);
    outline: none;
    width: 100%;
}

.hero-search-input::placeholder {
    color: var(--color-text-muted);
}

.hero-search-btn {
    border-radius: var(--radius-xl) !important;
    padding: 0.75rem 2rem !important;
    min-height: 48px !important;
}

.hero-search-suggestions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: var(--font-small);
}

.hero-search-suggestion-label {
    color: rgba(255, 255, 255, 0.85);
    font-weight: var(--font-weight-medium);
}

.hero-search-tag {
    color: var(--color-text-secondary);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.hero-search-tag:hover {
    color: var(--color-primary);
    background: var(--color-primary-soft);
    border-color: var(--color-primary-light);
    transform: translateY(-1px);
}

.category-card .category-desc {
    font-size: 0.85rem;
    line-height: 1.45;
    color: var(--color-text-secondary);
}

.portfolio-card {
    box-shadow: var(--shadow-lg), var(--shadow-card-yellow);
    background: #ffffff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-base);
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl), var(--shadow-card-yellow);
}

.portfolio-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    display: block;
    background: var(--color-neutral);
}

.portfolio-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.portfolio-card:hover .portfolio-thumb {
    transform: scale(1.06);
}

.portfolio-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary-soft) 0%, var(--color-accent-soft) 100%);
}

.portfolio-image-placeholder i {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    color: var(--color-primary);
    font-size: 2rem;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 11, 11, 0.4);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.portfolio-type {
    font-size: 11px;
    font-weight: var(--font-weight-bold);
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
    display: block;
}

.portfolio-title {
    font-size: 1.15rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 8px;
    line-height: 1.35;
}

.portfolio-title a {
    color: var(--color-text-primary);
}

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

.portfolio-tag {
    font-size: var(--font-small);
    color: var(--color-text-secondary);
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}

.tech-badge {
    font-size: 10px;
    font-weight: var(--font-weight-medium);
    background: var(--color-background-soft);
    color: var(--color-text-secondary);
    padding: 2px 8px;
    border: 2px solid var(--color-primary-dark);
    border-radius: var(--radius-sm);
}

.breadcrumb-section {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 0;
}

.breadcrumb-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--font-small);
    flex-wrap: wrap;
}

.breadcrumb-nav a {
    color: var(--color-text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color var(--transition-fast);
}

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

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-item:not(:last-child)::after {
    content: '\f285';
    font-family: 'bootstrap-icons';
    font-size: 0.65rem;
    color: var(--color-text-muted);
}

.breadcrumb-item.active {
    color: var(--color-text-muted);
}

.portfolio-detail-header {
    margin-bottom: 2rem;
}

.portfolio-detail-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: 0.75rem;
    color: var(--color-text-primary);
}

.portfolio-detail-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin: 0;
}

.portfolio-tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tech-badge {
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
    background: var(--color-primary-soft);
    color: var(--color-primary);
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
}

.portfolio-preview-desktop {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--color-neutral);
}

.portfolio-preview-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.portfolio-preview-desktop:hover .portfolio-preview-img {
    transform: scale(1.01);
}

.portfolio-img-fallback {
    width: 100%;
    aspect-ratio: 16/10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-neutral) 0%, var(--color-background-soft) 100%);
    color: var(--color-text-muted);
    border-radius: var(--radius-lg);
    gap: 0.75rem;
}

.portfolio-img-fallback i {
    font-size: 3rem;
}

.portfolio-img-fallback p {
    margin: 0;
    font-size: var(--font-small);
    font-weight: var(--font-weight-medium);
}

.portfolio-psr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.portfolio-psr-card {
    box-shadow: var(--shadow-lg), var(--shadow-card-yellow);
    background: var(--color-secondary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all var(--transition-base);
}

.portfolio-psr-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), var(--shadow-card-yellow);
}

.psr-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.portfolio-psr-problem .psr-icon {
    background: rgba(220, 38, 38, 0.1);
    color: var(--color-danger);
}

.portfolio-psr-solution .psr-icon {
    background: rgba(11, 11, 11, 0.1);
    color: var(--color-primary);
}

.portfolio-psr-result .psr-icon {
    background: rgba(245, 158, 11, 0.1);
    color: var(--color-warning);
}

.psr-label {
    font-size: 0.85rem;
    font-weight: var(--font-weight-semi-bold);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.75rem;
}

.portfolio-psr-card p {
    font-size: var(--font-small);
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}

.portfolio-preview-mobile-wrapper {
    margin-top: 3rem;
}

.portfolio-preview-mobile-wrapper h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.portfolio-preview-mobile {
    max-width: 320px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 8px solid #1f1f1f;
    background: var(--color-neutral);
    position: relative;
}

.portfolio-preview-mobile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 20px;
    background: #1f1f1f;
    border-radius: 0 0 12px 12px;
    z-index: 2;
}

.portfolio-mobile-img {
    width: 100%;
    height: auto;
    display: block;
}

.portfolio-img-fallback--mobile {
    aspect-ratio: 9/16;
    max-width: 320px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    border: 8px solid #1f1f1f;
}

.portfolio-sidebar {
    position: sticky;
    top: 90px;
}

.portfolio-info-card {
    background: var(--color-secondary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg), var(--shadow-card-yellow);
}

.portfolio-info-card h5 {
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-card-border);
}

.portfolio-info-list {
    margin: 0 0 1.25rem;
}

.portfolio-info-list dt {
    font-size: 0.75rem;
    font-weight: var(--font-weight-semi-bold);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
}

.portfolio-info-list dd {
    font-size: var(--font-small);
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.portfolio-info-list dd:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-cta-banner {
    background: linear-gradient(135deg, var(--color-primary-soft) 0%, rgba(11, 11, 11, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    text-align: center;
}

.service-cta-banner i {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    display: block;
}

.service-cta-banner p {
    font-size: var(--font-small);
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
}

.service-detail-header {
    margin-bottom: 0.5rem;
}

.service-detail-title {
    font-size: var(--font-h2);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin-bottom: 0.75rem;
}

.service-detail-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: 0;
}

.service-detail-description p {
    color: var(--color-text-secondary);
    line-height: 1.75;
    font-size: var(--font-body);
    margin-bottom: 0;
}

.badge-popular {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    color: #fff;
}

.service-features-section h3,
.service-timeline-section h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
}

.service-features-section h3 i,
.service-timeline-section h3 i {
    color: var(--color-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (max-width:575.98px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.hero-search-input {
    font-size: 12px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    background: var(--color-secondary);
    border-radius: var(--radius-md);
    padding: 0.85rem 1rem;
    font-size: var(--font-small);
    color: var(--color-text-primary);
    box-shadow: var(--shadow-md), var(--shadow-card-yellow);
    transition: all var(--transition-fast);
}

.feature-item:hover {
    box-shadow: var(--shadow-lg), var(--shadow-card-yellow);
}

.feature-item i {
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.timeline-modern {
    position: relative;
}

.timeline-step {
    position: relative;
    display: flex;
    gap: 1.25rem;
    padding-bottom: 2rem;
}

.timeline-step:last-child {
    padding-bottom: 0;
}

.timeline-step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-primary-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    position: relative;
    z-index: 1;
}

.timeline-step:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 40px;
    width: 2px;
    height: calc(100% - 20px);
    background: var(--color-border);
}

.timeline-step-content {
    padding-top: 0.4rem;
}

.timeline-step-content h5 {
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.25rem;
}

.timeline-step-content p {
    color: var(--color-text-secondary);
    font-size: var(--font-small);
    margin-bottom: 0;
}

.service-sidebar {
    position: sticky;
    top: 100px;
}

@media (max-width:991.98px) {
    .service-sidebar {
        position: static;
    }
}

.service-price-card {
    background: var(--color-secondary);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    box-shadow: var(--shadow-xl), var(--shadow-card-yellow);
    text-align: center;
}

.service-price-label {
    font-size: var(--font-small);
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: var(--font-weight-semi-bold);
}

.service-price-value {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin: 0.35rem 0 1rem;
}

.service-consult-value {
    font-size: 1.4rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin: 0.35rem 0 0.75rem;
}

.service-price-meta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: var(--font-small);
    color: var(--color-text-secondary);
    flex-wrap: wrap;
}

.consult-points {
    list-style: none;
    padding: 0;
    margin: 1.1rem 0 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.consult-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: var(--font-small);
    color: var(--color-text-secondary);
}

.consult-points li i {
    color: var(--color-primary);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.service-addons-card {
    background: var(--color-secondary);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg), var(--shadow-card-yellow);
}

.addon-list {
    display: flex;
    flex-direction: column;
}

.addon-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--color-border);
    font-size: var(--font-small);
}

.addon-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.addon-item>i {
    color: var(--color-primary);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.addon-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    color: var(--color-text-primary);
}

.addon-name {
    font-weight: var(--font-weight-semi-bold);
}

.addon-desc {
    color: var(--color-text-secondary);
    font-size: 0.8rem;
}

.other-service-card {
    box-shadow: var(--shadow-lg), var(--shadow-card-yellow);
    display: block;
    background: var(--color-secondary);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    color: var(--color-text-primary);
    transition: all var(--transition-fast);
}

.other-service-card:hover {
    box-shadow: var(--shadow-xl), var(--shadow-card-yellow);
    transform: translateY(-2px);
    color: var(--color-text-primary);
}

.other-service-card i {
    color: var(--color-primary);
    transition: transform var(--transition-fast);
}

.other-service-card:hover i {
    transform: translateX(4px);
}

@media (max-width:991.98px) {
    .portfolio-psr-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width:767.98px) {
    .portfolio-detail-title {
        font-size: 1.5rem;
    }

    .portfolio-preview-mobile {
        max-width: 260px;
    }

    .portfolio-img-fallback--mobile {
        max-width: 260px;
    }
}

.trust-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width:991.98px) {
    .trust-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:575.98px) {
    .trust-grid-modern {
        grid-template-columns: 1fr;
    }
}

.trust-item-modern {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg), var(--shadow-card-yellow);
    transition: all var(--transition-base);
}

.trust-item-modern:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), var(--shadow-card-yellow);
}

.trust-icon-modern {
    width: 52px;
    height: 52px;
    background: rgba(255, 235, 0, 0.14);
    color: var(--color-primary-dark);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 0 0 5px rgba(255, 235, 0, 0.08);
    transition: all var(--transition-base);
}

.trust-item-modern:hover .trust-icon-modern {
    background: var(--color-action);
    color: var(--color-primary-dark);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 0 0 5px rgba(255, 235, 0, 0.2);
}

.trust-item-modern h4 {
    font-size: 1.1rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.5rem;
}

.trust-item-modern p {
    font-size: var(--font-small);
    color: var(--color-text-secondary);
    margin-bottom: 0;
    line-height: 1.5;
}

.how-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 3rem;
}

.how-tab-btn {
    background: #ffffff;
    border: 2px solid var(--color-primary-dark);
    border-radius: var(--radius-full);
    padding: 8px 24px;
    font-weight: var(--font-weight-semi-bold);
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.how-tab-btn.active {
    background: var(--color-primary-gradient);
    border-color: transparent;
    color: #ffffff;
    box-shadow: var(--shadow-sm);
}

.how-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

@media (max-width:991.98px) {
    .how-steps {
        flex-direction: column;
        gap: 2rem;
    }

    .how-step-connector {
        display: none;
    }
}

.how-step {
    text-align: center;
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    position: relative;
    height: 100%;
    box-shadow: var(--shadow-lg), var(--shadow-card-yellow);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.how-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), var(--shadow-card-yellow);
}

.how-step-number {
    width: 44px;
    height: 44px;
    background: var(--color-action);
    color: var(--color-primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0 auto 1rem;
    box-shadow: 0 0 0 6px rgba(255, 235, 0, 0.16);
    transition: transform var(--transition-base);
}

.how-step:hover .how-step-number {
    transform: scale(1.1);
}

.how-step h4 {
    font-size: 1.05rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 8px;
}

.how-step p {
    font-size: var(--font-small);
    color: var(--color-text-secondary);
    margin-bottom: 0;
    line-height: 1.5;
}

.how-step-connector {
    width: 30px;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--color-action) 0 6px, transparent 6px 10px);
    position: relative;
}

.how-step-connector::after {
    content: "\F285";
    font-family: "bootstrap-icons";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-primary);
    background: #fff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width:991.98px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:767.98px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    box-shadow: var(--shadow-lg), var(--shadow-card-yellow);
    background: var(--color-background-soft);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all var(--transition-base);
}

.testimonial-card-featured {
    background: var(--color-secondary);
    box-shadow: var(--shadow-xl), var(--shadow-card-yellow);
}

.testimonial-card-featured::before {
    content: "\F2CB";
    font-family: "bootstrap-icons";
    position: absolute;
    top: -12px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--color-primary);
}

.testimonial-stars {
    margin-bottom: 0.65rem;
    display: flex;
    gap: 3px;
}

.testimonial-stars i {
    color: #FFC107;
    font-size: 0.75rem;
}

.testimonial-text {
    text-decoration: underline;
    color: var(--color-text-primary);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: auto;
}

.testimonial-avatar {
    width: 36px;
    height: 36px;
    background: var(--color-primary-gradient);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.testimonial-card-featured .testimonial-avatar {
    background: var(--color-accent-gradient);
}

.testimonial-info strong {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-primary);
}

.testimonial-info span {
    font-size: 0.72rem;
    color: var(--color-text-secondary);
}

.testimonial-product {
    font-size: 10px;
    color: var(--color-text-secondary);
    margin-top: 0.75rem;
    border-top: 1px solid var(--color-border);
    padding-top: 0.5rem;
    display: flex;
    align-items: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-card-yellow);
    transition: all var(--transition-base);
}

.faq-item.open {
    box-shadow: var(--shadow-xl), var(--shadow-card-yellow);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    font-size: 1.025rem;
    font-weight: var(--font-weight-semi-bold);
    color: var(--color-text-primary);
    text-align: left;
    cursor: pointer;
    outline: none;
}

.faq-chevron {
    transition: transform var(--transition-base);
    color: var(--color-text-secondary);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    border-top: 1px solid transparent;
}

.faq-item.open .faq-answer {
    border-top-color: var(--color-neutral);
}

.faq-category:not(:first-child) {
    padding-top: 3rem;
    border-top: 1px solid var(--color-border);
}

.faq-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-category-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.faq-category-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin-bottom: 0;
}

.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--font-small);
}

.breadcrumb-list a {
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
}

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

.breadcrumb-separator {
    color: var(--color-text-muted);
    font-size: 0.65rem;
}

.pagination-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pagination-pages {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-primary-dark);
    border-radius: var(--radius-md);
    background: #ffffff;
    color: var(--color-text-primary);
    font-size: 0.95rem;
    font-weight: var(--font-weight-medium);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.pagination-btn:hover:not(.disabled):not(.active) {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-1px);
}

.pagination-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
    font-weight: var(--font-weight-bold);
    cursor: default;
}

.pagination-btn.disabled {
    opacity: 0.5;
    background: var(--color-background-soft);
    cursor: not-allowed;
}

.pagination-dots {
    color: var(--color-text-secondary);
    width: 24px;
    text-align: center;
    font-weight: var(--font-weight-bold);
}

.offcanvas {
    max-width: 320px;
}

.filter-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.filter-options-row {
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 8px !important;
}

.filter-options-row .filter-option {
    flex: 1;
    min-width: 100px;
}

.filter-options-row .filter-option a {
    justify-content: center;
    padding: 0.6rem 0.5rem;
}

.filter-stars {
    color: #FFC107;
    display: flex;
    gap: 2px;
}

.filter-chip-option {
    cursor: pointer;
}

.filter-chip-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.filter-chip-option span {
    display: inline-block;
    padding: 4px 12px;
    border: 2px solid var(--color-primary-dark);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: var(--font-weight-medium);
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
}

.filter-chip-option:hover span {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.filter-chip-option.active span,
.filter-chip-option input:checked+span {
    background: var(--color-primary-soft);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.filter-options-wrap {
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 8px !important;
}

.filter-count-badge {
    background: var(--color-primary);
    color: white;
    font-size: 10px;
    font-weight: var(--font-weight-bold);
    padding: 2px 6px;
    border-radius: var(--radius-full);
    margin-left: 4px;
}

.active-filters {
    align-items: center;
}

.filter-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--color-border);
}

.filter-chip-remove:hover {
    color: var(--color-danger);
}

.clear-all-filters:hover {
    text-decoration: underline;
}

.products-count {
    font-size: 0.95rem;
}

@media (prefers-reduced-motion:reduce) {
    * {
        animation-delay: 0s !important;
        animation-duration: 0s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0s !important;
        scroll-behavior: auto !important;
        transform: none !important;
    }
}

.product-detail-title {
    font-size: clamp(1.5rem, 3vw, 2.15rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-tertiary);
    line-height: 1.3;
}

.pdp-top-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "gallery" "purchase" "tabcard";
    gap: 1rem;
    margin-top: 20px;
}

.pdp-grid-gallery {
    grid-area: gallery;
}

.pdp-grid-purchase {
    grid-area: purchase;
}

.pdp-grid-tabcard {
    grid-area: tabcard;
}

@media (min-width:992px) {
    .pdp-top-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: "gallery purchase" "tabcard purchase";
        column-gap: 3rem;
        row-gap: 1.5rem;
    }
}

.pdp-header-band {
    background: #0b0b0b;
    padding: 4.5rem 0 1.75rem;
    position: relative;
    overflow: hidden;
}

.pdp-header-band::after {
    content: '';
    position: absolute;
    top: -70px;
    right: -70px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 235, 0, 0.22) 0%, rgba(255, 235, 0, 0) 70%);
    pointer-events: none;
}

.pdp-header-band .breadcrumb-list a {
    color: rgba(255, 255, 255, 0.62);
}

.pdp-header-band .breadcrumb-list a:hover {
    color: var(--color-action);
}

.pdp-header-band .breadcrumb-separator {
    color: rgba(255, 255, 255, 0.28);
}

.pdp-header-band .breadcrumb-list li[aria-current] {
    color: var(--color-action);
    font-weight: var(--font-weight-semi-bold);
}

@media (max-width:767.98px) {
    .pdp-header-band {
        display: none;
    }

    .product-detail-page {
        padding-top: 60px;
    }

    .pdp-top-grid {
        margin-top: 0;
    }
}

.pdp-heading {
    position: relative;
    padding-left: 14px;
}

.pdp-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    border-radius: 2px;
    background: var(--color-action);
}

.product-gallery {
    background: #ffffff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl), var(--shadow-card-yellow);
    padding: 1.25rem;
}

.gallery-main {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.gallery-main img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
}

.gallery-main .product-image-placeholder {
    aspect-ratio: 16/10;
    border-radius: 0;
}

.gallery-thumbs {
    overflow-x: auto;
    padding-bottom: 4px;
}

@media (max-width:767.98px) {
    .product-gallery {
        background: transparent;
        box-shadow: none;
        padding: 0;
        margin-left: calc(-1 * var(--container-padding-mobile));
        margin-right: calc(-1 * var(--container-padding-mobile));
    }

    .gallery-main {
        border-radius: 0;
    }

    .gallery-thumbs {
        padding-left: var(--container-padding-mobile);
        padding-right: var(--container-padding-mobile);
    }
}

@media (min-width:576px) and (max-width:767.98px) {
    .product-gallery {
        margin-left: calc(-1 * var(--container-padding-tablet));
        margin-right: calc(-1 * var(--container-padding-tablet));
    }

    .gallery-thumbs {
        padding-left: var(--container-padding-tablet);
        padding-right: var(--container-padding-tablet);
    }
}

.thumb-item {
    width: 80px;
    height: 60px;
    flex-shrink: 0;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    overflow: hidden;
    opacity: 0.7;
    transition: all var(--transition-fast);
}

.thumb-item:hover,
.thumb-item.active {
    opacity: 1;
    border-color: var(--color-action);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pdp-live-preview-row {
    margin-top: 0.85rem;
}

.pdp-live-preview-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    padding: 0.75rem 1.25rem;
    background: #0b0b0b;
    color: #fff;
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-bold);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.pdp-live-preview-btn:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.pdp-live-preview-btn i {
    color: var(--color-action);
}

.pdp-live-preview-ext {
    font-size: 0.75rem;
    margin-left: 0.15rem;
    color: rgba(255, 255, 255, 0.6) !important;
}

@media (max-width:767.98px) {
    .pdp-live-preview-row {
        padding: 0 var(--container-padding-mobile);
    }
}

@media (min-width:576px) and (max-width:767.98px) {
    .pdp-live-preview-row {
        padding: 0 var(--container-padding-tablet);
    }
}

.purchase-card {
    position: relative;
    background: #ffffff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl), var(--shadow-card-yellow);
    padding: 1.75rem;
    overflow: hidden;
}

.purchase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-action) 0%, var(--color-action-dark) 100%);
}

.pdp-kicker {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: var(--font-weight-semi-bold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-action-dark);
    margin-bottom: 0.35rem;
}

.pdp-label-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--color-action);
    color: var(--color-on-action);
    font-size: 0.72rem;
    font-weight: var(--font-weight-bold);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    box-shadow: 0 2px 10px rgba(255, 235, 0, 0.35);
}

.purchase-card .product-category-link {
    display: inline-flex;
    align-items: center;
    background: #0b0b0b;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: var(--font-weight-semi-bold);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 0;
}

.purchase-card .product-category-link:hover {
    color: var(--color-action);
}

.pdp-meta-row {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.pdp-rating-new {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-primary);
    font-weight: var(--font-weight-medium);
}

.product-detail-price-box {
    background: #0b0b0b;
    padding: 1.1rem 1.35rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-action);
}

.product-detail-price-box .price-label {
    font-weight: var(--font-weight-medium);
    color: rgba(255, 255, 255, 0.6);
}

.product-detail-price-box .price-current {
    color: var(--color-action);
    font-size: 1.6rem;
}

.product-detail-price-box .price-original {
    color: rgba(255, 255, 255, 0.4);
}

.price-save-badge {
    font-size: 0.72rem;
    font-weight: var(--font-weight-semi-bold);
    color: var(--color-on-action);
    background: var(--color-action);
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

.pdp-delivery-row {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    background: var(--color-background-soft);
    border-radius: var(--radius-lg);
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
}

.pdp-delivery-row .pdp-delivery-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--color-text-secondary);
}

.pdp-delivery-row .pdp-delivery-item i {
    color: var(--color-primary);
    margin-top: 2px;
}

.pdp-delivery-row .pdp-delivery-item strong {
    color: var(--color-text-primary);
    font-weight: var(--font-weight-semi-bold);
}

.pdp-trust-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
}

.pdp-trust-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--color-text-secondary);
    background: var(--color-background-soft);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 0.55rem 0.75rem;
}

.pdp-trust-chip i {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b0b0b;
    color: var(--color-action);
    border-radius: 50%;
    font-size: 0.9rem;
}

.pdp-share-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.1rem;
    padding-top: 1.1rem;
    border-top: 1px solid var(--color-border);
}

.pdp-share-label {
    font-size: 0.82rem;
    font-weight: var(--font-weight-semi-bold);
    color: var(--color-text-secondary);
    margin-right: 0.15rem;
}

.pdp-share-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-background-soft);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-text-secondary);
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.pdp-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.pdp-share-btn[data-share-option="whatsapp"]:hover {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

.pdp-share-btn[data-share-option="facebook"]:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: #fff;
}

.pdp-share-btn[data-share-option="twitter"]:hover {
    background: #111;
    border-color: #111;
    color: #fff;
}

.pdp-share-btn[data-share-option="copy"].is-copied {
    background: var(--color-success);
    border-color: var(--color-success);
    color: #fff;
}

.feature-checklist-card {
    box-shadow: var(--shadow-xl), var(--shadow-card-yellow);
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 1.75rem;
}

.feature-checklist {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.9rem;
    margin: 0;
}

@media (min-width:768px) {
    .feature-checklist {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--color-text-primary);
    background: var(--color-background-soft);
    border-radius: var(--radius-md);
    padding: 0.65rem 0.85rem;
}

.feature-checklist-item i {
    color: var(--color-action-dark);
    background: #0b0b0b;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.85rem;
    margin-top: 1px;
}

.specs-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.specs-inline-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--color-background-soft);
    border-radius: var(--radius-full);
    padding: 6px 14px;
    font-size: 0.82rem;
    color: var(--color-text-secondary);
    box-shadow: var(--shadow-sm), var(--shadow-card-yellow);
}

.specs-inline-item i {
    color: var(--color-primary);
}

.specs-inline-item strong {
    color: var(--color-text-primary);
    font-weight: var(--font-weight-semi-bold);
}

.product-description-card {
    box-shadow: var(--shadow-xl), var(--shadow-card-yellow);
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 1.75rem;
}

.product-description-content {
    line-height: 1.85;
    font-size: 0.98rem;
    color: var(--color-text-secondary);
}

.product-description-content p {
    margin: 0 0 1.15rem;
}

.product-description-content p:last-child {
    margin-bottom: 0;
}

@media (max-width:767.98px) {
    .product-description-content {
        line-height: 1.7;
        font-size: 0.92rem;
    }

    .product-description-content p {
        margin-bottom: 0.9rem;
    }
}

.pdp-tab-card {
    box-shadow: var(--shadow-xl), var(--shadow-card-yellow);
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 1.75rem;
}

.pdp-tab-nav {
    display: inline-flex;
    gap: 4px;
    background: var(--color-background-soft);
    padding: 5px;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.pdp-tab-btn {
    border: none;
    background: transparent;
    padding: 0.55rem 1.35rem;
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-semi-bold);
    font-size: 0.88rem;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.pdp-tab-btn:hover {
    color: var(--color-text-primary);
}

.pdp-tab-btn.is-active {
    background: #0b0b0b;
    color: var(--color-action);
    box-shadow: var(--shadow-sm);
}

.pdp-tab-panel {
    display: none;
}

.pdp-tab-panel.is-active {
    display: block;
    animation: pdpTabIn 0.25s ease;
}

@keyframes pdpTabIn {
    from {
        opacity: 0;
        transform: translateX(10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.product-detail-page #addToCartForm .btn-lg {
    border-radius: var(--radius-full);
    min-height: 44px;
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    white-space: nowrap;
}

@media (max-width:575.98px) {
    .product-detail-page #addToCartForm .d-flex.gap-3.flex-wrap {
        flex-direction: column;
    }

    .product-detail-page #addToCartForm .btn-lg {
        width: 100%;
        white-space: normal;
    }
}

.cta-box-sidebar {
    transition: all var(--transition-base);
}

.cta-box-sidebar:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.cart-thumb-wrapper img {
    box-shadow: var(--shadow-xs);
}

.cart-license-select {
    min-width: 140px;
    font-size: 0.85rem;
}

@media (max-width:767.98px) {
    .cart-items-wrapper thead {
        display: none;
    }

    .cart-items-wrapper table,
    .cart-items-wrapper tbody {
        display: block;
        width: 100%;
    }

    .cart-items-wrapper tr {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.75rem 0.75rem;
        padding: 1rem !important;
        border-bottom: 1px solid var(--color-border);
    }

    .cart-items-wrapper td {
        padding: 0 !important;
        border: none !important;
    }

    .cart-items-wrapper td:nth-child(1) {
        flex: 1 1 100%;
        order: 1;
    }

    .cart-items-wrapper td:nth-child(2) {
        order: 2;
    }

    .cart-items-wrapper td:nth-child(3) {
        order: 3;
        margin-left: auto;
    }

    .cart-items-wrapper td:nth-child(4) {
        order: 4;
    }
}

.checkout-card {
    transition: all var(--transition-base);
}

.payment-method-card {
    cursor: pointer;
    margin: 0;
}

.payment-card-content {
    box-shadow: var(--shadow-card-yellow);
    background: #ffffff;
    border: 2px solid var(--color-card-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.payment-method-card:hover .payment-card-content {
    border-color: var(--color-primary-light);
}

.payment-method-card.selected .payment-card-content,
.payment-method-card input:checked~.payment-card-content {
    border-color: var(--color-primary) !important;
    background-color: var(--color-primary-soft) !important;
    box-shadow: var(--shadow-sm);
}

.payment-icon {
    width: 40px;
    height: 40px;
    background: rgba(11, 11, 11, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (max-width:575.98px) {
    .payment-card-content {
        align-items: flex-start;
    }

    .payment-card-content .badge {
        flex-shrink: 0;
        margin-top: 2px;
    }
}

.letter-spacing-1 {
    letter-spacing: 0.1em;
}

.qris-qr-box {
    border: 2px dashed var(--color-primary);
}

.success-circle {
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    animation: badgePop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pay-summary-item-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pay-summary-item {
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-border);
}

.pay-summary-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.pay-summary-item-name {
    display: block;
    margin-bottom: 0.2rem;
}

.pay-summary-item-price {
    display: block;
    text-align: right;
    color: var(--color-text-primary);
}

.receipt-items-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.receipt-item-row {
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--color-border);
}

.receipt-item-row:last-child {
    border-bottom: none;
}

.receipt-item-name {
    display: block;
    color: var(--color-text-primary);
    font-weight: var(--font-weight-semi-bold);
}

.receipt-item-price {
    display: block;
    text-align: right;
    color: var(--color-primary);
}

.rounded-2xl {
    border-radius: 24px;
}

.max-h-300 {
    max-height: 300px;
}

.web-gratis-promo-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-2xl);
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-tertiary) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width:992px) {
    .web-gratis-promo-card {
        padding: 4rem 3rem;
    }
}

.web-gratis-promo-card h2 {
    color: #fff;
}

.web-gratis-promo-card p {
    color: rgba(255, 255, 255, 0.72);
}

.web-gratis-promo-card .feature-list li {
    color: rgba(255, 255, 255, 0.85);
}

.web-gratis-promo-card .feature-list li i {
    color: var(--color-action);
}

.web-gratis-promo-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.3;
    pointer-events: none;
}

.web-gratis-promo-shape-1 {
    width: 320px;
    height: 320px;
    background: var(--color-action);
    top: -120px;
    right: -80px;
    animation: floatShape 13s ease-in-out infinite;
}

.web-gratis-promo-shape-2 {
    width: 260px;
    height: 260px;
    background: var(--color-action);
    bottom: -100px;
    left: -60px;
    animation: floatShape 10s ease-in-out infinite reverse;
}

.lb-phone {
    position: relative;
    max-width: 300px;
    margin: 70px auto 30px;
    perspective: 1400px;
}

.lb-phone-3d {
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(var(--ry, -14deg)) rotateX(var(--rx, 8deg));
    transition: transform .5s cubic-bezier(.16, 1, .3, 1);
    will-change: transform;
}

.lb-phone-ground-shadow {
    position: absolute;
    left: 6%;
    right: 6%;
    bottom: -10px;
    height: 36px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.55), transparent 72%);
    filter: blur(6px);
    transform: translateZ(-140px) scale(1.15);
}

.lb-phone-frame {
    position: relative;
    z-index: 2;
    background: var(--color-primary-dark);
    border-radius: 32px;
    padding: 10px;
    box-shadow: 34px 46px 70px -28px rgba(0, 0, 0, 0.55), 0 10px 24px rgba(0, 0, 0, 0.35);
}

.lb-phone-screen {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: radial-gradient(ellipse 220px 160px at 50% 0%, rgba(255, 235, 0, 0.16), transparent 70%), linear-gradient(165deg, #1c1c1c 0%, #0b0b0b 65%);
    padding-bottom: 14px;
}

.lb-phone-screen::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(115deg, rgba(255, 255, 255, 0.14) 0%, transparent 26%, transparent 74%, rgba(255, 255, 255, 0.05) 100%);
}

.lb-phone-statusbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px 6px;
    color: rgba(255, 255, 255, 0.9);
    font-size: .78rem;
    font-weight: 700;
}

.lb-phone-statusbar-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lb-phone-cart {
    position: relative;
    display: inline-flex;
}

.lb-phone-cart em {
    position: absolute;
    top: -7px;
    right: -8px;
    background: var(--color-action);
    color: var(--color-on-action);
    border-radius: 999px;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .55rem;
    font-weight: 800;
    font-style: normal;
}

.lb-phone-profile {
    position: relative;
    text-align: center;
    padding: 4px 20px 18px;
}

.lb-phone-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-action);
    color: var(--color-on-action);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    margin: 0 auto 10px;
    border: 3px solid rgba(255, 255, 255, 0.15);
}

.lb-phone-name {
    font-weight: 700;
    font-size: .92rem;
    color: #fff;
}

.lb-phone-bio {
    color: rgba(255, 255, 255, 0.6);
    font-size: .68rem;
    margin: 2px 0 12px;
}

.lb-phone-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.lb-phone-socials span {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
}

.lb-phone-offers {
    position: relative;
    padding: 0 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lb-phone-featured {
    background: #fff;
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 14px 30px -10px rgba(11, 11, 11, 0.4);
    text-align: left;
}

.lb-phone-featured-top {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}

.lb-phone-featured-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--color-primary-soft);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
}

.lb-phone-featured-title {
    display: block;
    font-weight: 700;
    font-size: .78rem;
    color: var(--color-text-primary);
}

.lb-phone-featured-desc {
    display: block;
    font-size: .65rem;
    color: var(--color-text-muted);
    margin-top: 2px;
    line-height: 1.35;
}

.lb-phone-featured-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 8px;
}

.lb-phone-featured-price .was {
    font-size: .65rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.lb-phone-featured-price .now {
    font-size: .82rem;
    font-weight: 800;
    color: var(--color-text-primary);
}

.lb-phone-cta {
    display: block;
    text-align: center;
    text-decoration: none;
    background: var(--color-action);
    color: var(--color-on-action);
    border-radius: 10px;
    padding: 8px;
    font-size: .7rem;
    font-weight: 800;
}

.lb-phone-row {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border-radius: 12px;
    padding: 8px 10px;
    box-shadow: 0 10px 24px -12px rgba(11, 11, 11, 0.35);
}

.lb-phone-row-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: var(--color-primary-soft);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
}

.lb-phone-row-title {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: .72rem;
    font-weight: 600;
    color: var(--color-text-primary);
    text-align: left;
}

.lb-phone-row-price {
    flex-shrink: 0;
    background: linear-gradient(135deg, #ff3b4e 0%, var(--color-danger) 55%, #a8000f 100%);
    color: #fff;
    font-size: .62rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 999px;
}

.lb-phone-row-price-affiliate {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 55%, #0f7a34 100%);
}

.lb-phone-home-indicator {
    position: relative;
    width: 90px;
    height: 4px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.25);
    margin: 10px auto 0;
}

.lb-phone-badge {
    position: absolute;
    top: -16px;
    right: 2px;
    z-index: 4;
    transform: translateZ(95px) rotate(6deg);
}

.lb-phone-badge-inner {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--color-action);
    color: var(--color-on-action);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: .72rem;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(255, 235, 0, 0.4);
}

.lb-phone-chip {
    position: absolute;
    z-index: 3;
}

.lb-phone-chip-inner {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    border-radius: 14px;
    padding: 8px 12px;
    box-shadow: 0 18px 34px -10px rgba(0, 0, 0, 0.4);
}

.lb-phone-chip-inner i {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    flex-shrink: 0;
    background: var(--color-primary-soft);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
}

.lb-phone-chip-inner span {
    font-size: .68rem;
    font-weight: 700;
    color: var(--color-text-primary);
    white-space: nowrap;
}

.lb-phone-chip-a {
    top: 10%;
    left: -30%;
    transform: translateZ(80px) rotate(-7deg);
}

.lb-phone-chip-b {
    bottom: 32%;
    right: -32%;
    transform: translateZ(110px) rotate(6deg);
}

.lb-phone-chip-c {
    bottom: 2%;
    left: -24%;
    transform: translateZ(50px) rotate(-4deg);
}

@media (max-width:767.98px) {
    .lb-phone {
        max-width: 230px;
        margin: 50px auto 20px;
    }

    .lb-phone-3d {
        --ry: -9deg;
        --rx: 6deg;
    }

    .lb-phone-badge {
        top: -14px;
        right: -6px;
    }

    .lb-phone-chip-inner {
        padding: 6px 9px;
        gap: 5px;
    }

    .lb-phone-chip-inner i {
        width: 20px;
        height: 20px;
        font-size: .68rem;
    }

    .lb-phone-chip-inner span {
        font-size: .58rem;
    }

    .lb-phone-chip-a {
        top: 8%;
        left: -12%;
        transform: translateZ(40px) rotate(-7deg);
    }

    .lb-phone-chip-b {
        bottom: 30%;
        right: -14%;
        transform: translateZ(55px) rotate(6deg);
    }

    .lb-phone-chip-c {
        bottom: 0;
        left: -9%;
        transform: translateZ(25px) rotate(-4deg);
    }
}

@media (prefers-reduced-motion:no-preference) {
    .lb-phone-frame {
        animation: lbPhoneBob 6s ease-in-out infinite;
    }

    .lb-phone-chip-a .lb-phone-chip-inner {
        animation: lbChipFloat 5.5s ease-in-out infinite;
    }

    .lb-phone-chip-b .lb-phone-chip-inner {
        animation: lbChipFloat 6.5s ease-in-out infinite 0.6s;
    }

    .lb-phone-chip-c .lb-phone-chip-inner {
        animation: lbChipFloat 5s ease-in-out infinite 1.1s;
    }

    .lb-phone-badge-inner {
        animation: lbBadgePulse 3.2s ease-in-out infinite;
    }
}

@keyframes lbPhoneBob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

@keyframes lbChipFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes lbBadgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

.auth-card {
    background: var(--color-secondary);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04), 0 20px 48px rgba(16, 24, 40, 0.10);
}

@media (max-width:575.98px) {
    .auth-card {
        padding: 1.75rem 1.5rem;
        border-radius: 18px;
    }
}

.field-float {
    position: relative;
}

.field-float .form-input {
    border-color: #e5e7eb;
}

.field-float .form-input,
.field-float .form-control {
    padding: 0.65rem 0.9rem;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.03);
    transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.field-float textarea.form-control {
    padding-top: 0.7rem;
}

.field-float .form-input:hover,
.field-float .form-control:hover {
    border-color: #d0d4db;
}

.field-float .form-input:focus,
.field-float .form-control:focus {
    transform: translateY(-1px);
}

.field-float .form-input::placeholder,
.field-float .form-control::placeholder {
    color: #a3a9b3;
    opacity: 1;
}

body.bg-light .field-float .form-input:focus,
body.bg-light .field-float .form-control:focus {
    border-color: #4338ca;
    box-shadow: 0 0 0 4px rgba(67, 56, 202, 0.12), 0 3px 10px rgba(67, 56, 202, 0.08);
}

.field-float label {
    position: absolute;
    left: 0.8rem;
    top: -0.55rem;
    margin: 0;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #9199a8;
    background: var(--color-secondary);
    border-radius: 4px;
    padding: 0 0.45rem;
    pointer-events: none;
    opacity: 0;
    transform: translateY(7px) scale(0.92);
    transform-origin: left center;
    transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
}

.field-float .form-input:not(:placeholder-shown)+label,
.field-float .form-input:focus+label,
.field-float .form-control:not(:placeholder-shown)+label,
.field-float .form-control:focus+label {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.field-float .form-input:focus+label,
.field-float .form-control:focus+label {
    color: var(--color-primary);
}

body.bg-light .field-float .form-input:focus+label,
body.bg-light .field-float .form-control:focus+label {
    color: #4338ca;
}

html.js-reveal .reveal-section {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

html.js-reveal .reveal-section.is-visible {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}

.promo-carousel-section,
.categories-section,
.services-preview,
.portfolio-section {
    display: flex;
    justify-content: center;
}

.testimonial-section>.container {
    margin-left: auto;
    margin-right: auto;
}

@media (prefers-reduced-motion:reduce) {
    html.js-reveal .reveal-section {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.reveal-word {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    padding-bottom: 0.15em;
    margin-bottom: -0.15em;
}

.reveal-word-inner {
    display: inline-block;
    transform: translateY(115%);
    transition: transform .65s cubic-bezier(.16, 1, .3, 1);
}

[data-words-ready].is-visible .reveal-word-inner {
    transform: translateY(0);
}

@media (prefers-reduced-motion:reduce) {
    .reveal-word-inner {
        transform: none !important;
        transition: none !important;
    }
}

html.js-reveal .reveal-section .section-header>.badge {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .55s cubic-bezier(.22, 1, .36, 1), transform .55s cubic-bezier(.22, 1, .36, 1);
}

html.js-reveal .reveal-section.is-visible .section-header>.badge {
    opacity: 1;
    transform: translateY(0);
}

html.js-reveal .reveal-section .section-header>p {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .5s cubic-bezier(.22, 1, .36, 1) .5s, transform .5s cubic-bezier(.22, 1, .36, 1) .5s;
}

html.js-reveal .reveal-section.is-visible .section-header>p {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion:reduce) {

    html.js-reveal .reveal-section .section-header>.badge,
    html.js-reveal .reveal-section .section-header>p {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.page-hero {
    position: relative;
    overflow: hidden;
    margin-top: -72px;
    padding: 200px 0 120px;
    background: #0b0b0b;
}

.page-hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 72%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 72%);
}

.page-hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    background: white;
    opacity: 0.15;
    pointer-events: none;
}

.page-hero-shape-a {
    width: 420px;
    height: 420px;
    top: -160px;
    right: -100px;
    animation: floatShape 15s ease-in-out infinite;
}

.page-hero-shape-b {
    width: 320px;
    height: 320px;
    bottom: -110px;
    left: -70px;
    animation: floatShape 12s ease-in-out infinite reverse;
}

.page-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.page-hero-breadcrumb {
    display: flex;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.page-hero-breadcrumb .breadcrumb-list {
    justify-content: center;
    flex-wrap: wrap;
}

.page-hero-breadcrumb .breadcrumb-list a {
    color: rgba(255, 255, 255, 0.8);
}

.page-hero-breadcrumb .breadcrumb-list a:hover {
    color: #fff;
}

.page-hero-breadcrumb .breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
}

.page-hero-breadcrumb li[aria-current="page"] {
    color: rgba(255, 255, 255, 0.95);
}

.page-hero .badge {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-hero-title {
    color: #fff;
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: 0.9rem;
}

.page-hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.65;
}

.page-hero-meta {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0.75rem 0 0;
}

@media (max-width:575.98px) {
    .page-hero {
        padding: 180px 0 48px;
    }

    .page-hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.7rem;
    }
}

.page-hero.tone-primary {
    background: #1a1a1a;
}

.page-hero.tone-accent {
    background: #1a1a1a;
}

.page-hero.tone-blend {
    background: #0b0b0b;
}

.page-hero.has-bg-image {
    background: none;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
}

.page-hero-bg-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(11, 11, 11, 0.62);
}

.page-hero.tone-primary .page-hero-overlay {
    background: rgba(11, 11, 11, 0.55);
}

.page-hero.tone-accent .page-hero-overlay {
    background: rgba(11, 11, 11, 0.6);
}

.page-hero.tone-blend .page-hero-overlay {
    background: rgba(11, 11, 11, 0.6);
}

.page-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 3rem;
    align-items: start;
}

.page-hero-grid>* {
    min-width: 0;
}

.page-hero-grid .hero-search-bar {
    margin-left: 0;
    margin-right: 0;
}

@media (max-width:991.98px) {
    .page-hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.page-hero-stat-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(20px);
    padding: 1.75rem;
    box-shadow: 0 24px 60px -12px rgba(0, 0, 0, .5);
}

.page-hero-stat-card-glow {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 235, 0, .12);
    filter: blur(60px);
    pointer-events: none;
}

.page-hero-stat-head {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.page-hero-stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(255, 235, 0, .14);
    color: var(--color-action);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.page-hero-stat-big {
    font-size: 1.7rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.page-hero-stat-label {
    font-size: .82rem;
    color: rgba(255, 255, 255, .55);
}

.page-hero-stat-progress {
    position: relative;
    margin-bottom: 1.4rem;
}

.page-hero-stat-progress-row {
    display: flex;
    justify-content: space-between;
    font-size: .82rem;
    margin-bottom: .5rem;
}

.page-hero-stat-progress-row span:first-child {
    color: rgba(255, 255, 255, .55);
}

.page-hero-stat-progress-row span:last-child {
    color: #fff;
    font-weight: 600;
}

.page-hero-progress-track {
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    overflow: hidden;
}

.page-hero-progress-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-action), #fff);
}

.page-hero-stat-divider {
    height: 1px;
    background: rgba(255, 255, 255, .1);
    margin-bottom: 1.3rem;
}

.page-hero-stat-grid {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.page-hero-stat-grid>div {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.page-hero-stat-grid span {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
}

.page-hero-stat-grid small {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: rgba(255, 255, 255, .45);
    margin-top: .2rem;
}

.page-hero-stat-grid>.page-hero-stat-sep {
    flex: 0 0 1px;
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, .12);
}

.page-hero-pills {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.page-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .05);
    border-radius: 999px;
    padding: .35rem .7rem;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: rgba(255, 255, 255, .75);
}

.page-hero-pill i {
    color: var(--color-action);
    font-size: .75rem;
}

.page-hero-pill-dot {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
}

.page-hero-pill-dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: #22c55e;
    opacity: .5;
    animation: pageHeroPillPulse 1.6s ease-out infinite;
}

@keyframes pageHeroPillPulse {
    0% {
        transform: scale(.6);
        opacity: .6;
    }

    100% {
        transform: scale(2.1);
        opacity: 0;
    }
}

@media (max-width:767.98px) {
    .page-hero-stat-card {
        display: none;
    }
}

.page-hero-icons {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.page-hero-icon {
    position: absolute;
    color: #fff;
    opacity: 0.16;
    animation: pageHeroIconFloat 9s ease-in-out infinite;
}

.page-hero-icon-1 {
    top: 16%;
    left: 7%;
    font-size: 3.2rem;
    --phi-rot: -12deg;
    animation-delay: 0s;
}

.page-hero-icon-2 {
    top: 64%;
    left: 13%;
    font-size: 2.2rem;
    --phi-rot: 10deg;
    animation-delay: 1.1s;
}

.page-hero-icon-3 {
    top: 18%;
    right: 9%;
    font-size: 2.9rem;
    --phi-rot: 13deg;
    animation-delay: 0.6s;
}

.page-hero-icon-4 {
    top: 66%;
    right: 15%;
    font-size: 2.1rem;
    --phi-rot: -9deg;
    animation-delay: 1.7s;
}

@keyframes pageHeroIconFloat {

    0%,
    100% {
        transform: translateY(0) rotate(var(--phi-rot, 0deg));
    }

    50% {
        transform: translateY(-14px) rotate(var(--phi-rot, 0deg));
    }
}

@media (max-width:767.98px) {
    .page-hero-icons {
        display: none;
    }
}

.page-highlight-section {
    background: var(--color-background-soft);
    border-bottom: 1px solid var(--color-border);
}

.page-highlight-heading {
    font-size: var(--font-h2);
    font-weight: var(--font-weight-bold);
    margin: 0;
}

.page-highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.page-highlight-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width:991.98px) {

    .page-highlight-grid,
    .page-highlight-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:575.98px) {

    .page-highlight-grid,
    .page-highlight-grid-3 {
        grid-template-columns: 1fr;
    }
}

.page-highlight-card {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-card-yellow);
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    transition: all var(--transition-base);
}

.page-highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-action) 0%, var(--color-action-dark) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.page-highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), var(--shadow-card-yellow);
}

.page-highlight-card:hover::before {
    transform: scaleX(1);
}

.page-highlight-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #0b0b0b;
    color: var(--color-action);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.1rem;
    transition: all var(--transition-base);
}

.page-highlight-icon.is-accent {
    background: var(--color-action);
    color: var(--color-on-action);
}

.page-highlight-card:hover .page-highlight-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(255, 235, 0, 0.3);
}

.page-highlight-label {
    font-size: 1.05rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.4rem;
}

.page-highlight-text {
    font-size: var(--font-small);
    color: var(--color-text-secondary);
    line-height: 1.55;
    margin-bottom: 0;
}

.text-highlight {
    position: relative;
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    left: -3px;
    right: -3px;
    bottom: -0.1em;
    height: 0.3em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 20' preserveAspectRatio='none'%3E%3Cpath d='M2 14 Q 50 2 100 12 T 198 10' stroke='%23FFEB00' stroke-width='7' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: -1;
}

.text-highlight.is-accent::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 20' preserveAspectRatio='none'%3E%3Cpath d='M2 14 Q 50 2 100 12 T 198 10' stroke='%23262626' stroke-width='7' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}

.text-highlight.is-white::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 20' preserveAspectRatio='none'%3E%3Cpath d='M2 14 Q 50 2 100 12 T 198 10' stroke='white' stroke-width='7' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    opacity: 0.9;
}

.text-marker {
    background-image: linear-gradient(120deg, rgba(255, 235, 0, 0.55) 0%, rgba(255, 235, 0, 0.55) 100%);
    background-repeat: no-repeat;
    background-size: 100% 42%;
    background-position: 0 88%;
    padding: 0 0.15em;
}

.text-marker.is-accent {
    background-image: linear-gradient(120deg, rgba(11, 11, 11, 0.28) 0%, rgba(11, 11, 11, 0.28) 100%);
}

.text-marker.is-white {
    background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.28) 100%);
    color: #fff;
}

.text-pop {
    display: inline-block;
    position: relative;
    color: var(--color-primary);
}

.text-pop::after {
    content: '';
    position: absolute;
    left: 2px;
    right: 2px;
    bottom: -0.14em;
    height: 0.18em;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 20' preserveAspectRatio='none'%3E%3Cpath d='M2 14 Q 50 2 100 12 T 198 10' stroke='black' stroke-width='7' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 20' preserveAspectRatio='none'%3E%3Cpath d='M2 14 Q 50 2 100 12 T 198 10' stroke='black' stroke-width='7' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.text-pop.is-accent {
    color: var(--color-accent);
}

.text-pop.is-white {
    color: #fff;
}

html.js-reveal .reveal-section .text-pop {
    opacity: 0;
    transform: scale(.8);
}

html.js-reveal .reveal-section.is-visible .text-pop {
    animation: textPopIn .5s cubic-bezier(.34, 1.56, .64, 1) .55s both;
}

@media (prefers-reduced-motion:reduce) {
    html.js-reveal .reveal-section .text-pop {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

@keyframes textPopIn {
    0% {
        opacity: 0;
        transform: scale(.7) rotate(-2deg);
    }

    65% {
        opacity: 1;
        transform: scale(1.08) rotate(1deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

.news-card {
    height: 100%;
}

.news-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
}

.news-card-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    display: block;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-neutral);
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.news-card-link:hover .news-card-image img {
    transform: scale(1.05);
}

.news-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary-soft) 0%, var(--color-accent-soft) 100%);
}

.news-image-placeholder i {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    color: var(--color-primary);
    font-size: 1.75rem;
}

.news-title {
    margin-top: 0.65rem;
    font-size: 0.92rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.4;
    color: var(--color-text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--transition-fast);
}

.news-card-link:hover .news-title {
    color: var(--color-primary);
}

@media (max-width:767.98px) {
    .row .news-card-link {
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
    }

    .row .news-card-image {
        aspect-ratio: auto;
        width: 96px;
        height: 68px;
        flex-shrink: 0;
    }

    .row .news-title {
        margin-top: 0;
        font-size: 0.88rem;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }
}

.news-section {
    position: relative;
}

.ticker-strip {
    background: var(--color-primary-dark, var(--color-primary));
    overflow: hidden;
}

.ticker-strip .marquee-track {
    padding: 0.65rem 0;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 0 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.ticker-item i {
    color: var(--color-action);
}

.marquee {
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 48px, black calc(100% - 48px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, black 48px, black calc(100% - 48px), transparent 100%);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll linear infinite;
    animation-duration: var(--marquee-duration, 40s);
    padding: 1rem 0;
}

.marquee:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion:reduce) {
    .marquee-track {
        animation: none;
        flex-wrap: wrap;
        width: 100%;
    }

    .marquee {
        -webkit-mask-image: none;
        mask-image: none;
    }
}

.marquee .testimonial-card {
    flex: 0 0 300px;
    margin-right: 1.5rem;
}

.marquee .news-card {
    flex: 0 0 320px;
    margin-right: 1.5rem;
}

@media (max-width:575.98px) {
    .marquee .testimonial-card {
        flex-basis: 250px;
    }

    .marquee .news-card {
        flex-basis: 190px;
    }

    .marquee .news-title {
        font-size: 0.8rem;
        margin-top: 0.45rem;
    }
}

.discovery-progress {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.discovery-progress-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.5;
}

.discovery-progress-step.is-active,
.discovery-progress-step.is-done {
    opacity: 1;
}

.discovery-progress-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: var(--color-neutral);
    color: var(--color-text-secondary);
    font-weight: 700;
    font-size: 0.85rem;
}

.discovery-progress-step.is-active .discovery-progress-dot {
    background: var(--color-action);
    color: var(--color-text-primary);
}

.discovery-progress-step.is-done .discovery-progress-dot {
    background: var(--color-primary);
    color: #fff;
}

.discovery-progress-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    white-space: nowrap;
}

@media (max-width:767.98px) {
    .discovery-progress-label {
        display: none;
    }
}

.discovery-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.discovery-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.5rem;
}

.discovery-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--color-primary-dark);
    border-radius: var(--radius-md);
    padding: 0.55rem 0.75rem;
    font-size: 0.88rem;
    cursor: pointer;
}

.discovery-checkbox input {
    accent-color: var(--color-primary);
}

.discovery-progress-step.is-clickable {
    cursor: pointer;
}

.discovery-progress-step.is-clickable:hover .discovery-progress-dot {
    box-shadow: 0 0 0 3px var(--color-primary-glow);
}

.discovery-progress-step.has-content:not(.is-active) .discovery-progress-dot {
    box-shadow: 0 0 0 2px var(--color-action);
}

.discovery-review-group {
    margin-bottom: 1.25rem;
}

.discovery-review-group-title {
    font-weight: 700;
    color: var(--color-primary);
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0.4rem;
    margin-bottom: 0.6rem;
}

.discovery-review-list {
    display: grid;
    grid-template-columns: minmax(140px, 220px) 1fr;
    gap: 0.35rem 1rem;
    margin: 0;
}

.discovery-review-list dt {
    font-weight: 600;
    color: var(--color-text-secondary);
    font-size: 0.85rem;
}

.discovery-review-list dd {
    margin: 0;
    font-size: 0.9rem;
}

.analysis-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}

.analysis-header-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.analysis-confirm-box,
.discovery-edit-box {
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    background: var(--color-background-soft);
    box-shadow: var(--shadow-lg), var(--shadow-card-yellow);
}

.analysis-processing-card {
    box-shadow: var(--shadow-lg), var(--shadow-card-yellow);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    background: var(--color-background-soft);
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}

.analysis-processing-spinner {
    width: 2.75rem;
    height: 2.75rem;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    border: 3px solid var(--color-border);
    border-top-color: var(--color-action);
    animation: analysisProcessingSpin 0.8s linear infinite;
}

@keyframes analysisProcessingSpin {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion:reduce) {
    .analysis-processing-spinner {
        animation: none;
    }
}

.fulfillment-card {
    box-shadow: var(--shadow-lg), var(--shadow-card-yellow);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    background: #fff;
}

.fulfillment-status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.75rem;
}

.fulfillment-status-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    box-shadow: var(--shadow-md), var(--shadow-card-yellow);
}

.fulfillment-status-item i {
    font-size: 1.1rem;
}

.fulfillment-status-item.is-done {
    background: rgba(25, 135, 84, 0.06);
    color: #146c43;
}

.fulfillment-package-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 2px solid var(--color-primary-dark);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.fulfillment-package-name {
    flex: 1;
    font-weight: 600;
    margin-left: 0.5rem;
}

.fulfillment-package-price {
    font-weight: 700;
    white-space: nowrap;
}

.confirm-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    white-space: nowrap;
}

.confirm-pill.is-confirmed {
    background: rgba(25, 135, 84, 0.12);
    color: #146c43;
}

.confirm-pill.is-ai-recommendation {
    background: rgba(255, 235, 0, 0.18);
    color: #8a6d00;
}

.confirm-pill.is-needs-confirmation {
    background: rgba(220, 53, 69, 0.1);
    color: #b02a37;
}

.doc-tabs {
    display: inline-flex;
    gap: 0.25rem;
    background: var(--color-background-soft);
    border-radius: var(--radius-full);
    padding: 0.3rem;
    max-width: 100%;
    overflow-x: auto;
}

.doc-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: none;
    border: none;
    border-radius: var(--radius-full);
    padding: 0.6rem 1.2rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    white-space: nowrap;
    cursor: pointer;
    transition: background var(--transition-fast, 0.15s ease), color var(--transition-fast, 0.15s ease), box-shadow var(--transition-fast, 0.15s ease);
}

.doc-tab:hover {
    color: var(--color-primary);
}

.doc-tab.is-active {
    background: #fff;
    color: var(--color-primary-dark);
    box-shadow: var(--shadow-sm);
}

.doc-boc,
.doc-wrf {
    border: none;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-lg);
}

.doc-cover {
    position: relative;
    background: linear-gradient(155deg, var(--color-primary-dark, var(--color-primary)) 0%, var(--color-primary) 100%);
    color: #fff;
    padding: 3.5rem 2rem 3rem;
    text-align: center;
    overflow: hidden;
}

.doc-cover::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.doc-cover::after {
    content: '';
    position: absolute;
    top: -70px;
    right: -70px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: var(--color-action);
    opacity: 0.12;
    pointer-events: none;
}

.doc-cover>* {
    position: relative;
    z-index: 1;
}

.doc-cover-eyebrow {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 235, 0, 0.14);
    border: 1px solid rgba(255, 235, 0, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    color: var(--color-action);
    font-weight: 800;
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.2rem;
}

.doc-cover-title {
    font-family: var(--font-family-heading);
    text-transform: uppercase;
    font-weight: 800;
    font-size: clamp(1.9rem, 4.5vw, 2.75rem);
    margin-bottom: 0.6rem;
}

.doc-cover-meta {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.4rem;
    font-size: 0.95rem;
}

.doc-cover-version {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.55);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 0.9rem;
}

.doc-section {
    padding: 2.25rem 2rem;
    border-top: 1px solid var(--color-border);
}

.doc-section-head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.doc-section-badge {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    background: var(--color-primary-dark, var(--color-primary));
    color: #fff;
    font-family: var(--font-family-heading);
    font-weight: 800;
    font-size: 1.05rem;
}

.doc-section-badge i {
    font-size: 1.1rem;
}

.doc-section-title {
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0;
}

.doc-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.1rem;
}

.doc-card-grid-tight {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.85rem;
}

.doc-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 1.15rem 1.25rem;
    background: #fff;
    box-shadow: var(--shadow-xs);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.doc-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.doc-card:has(.confirm-pill.is-confirmed) {
    border-left-color: var(--color-success);
}

.doc-card:has(.confirm-pill.is-needs-confirmation) {
    border-left-color: var(--color-danger);
}

.doc-card:has(.confirm-pill.is-ai-recommendation) {
    border-left-color: var(--color-warning);
}

.doc-card-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-text-secondary);
    margin-bottom: 0.5rem;
}

.doc-card-value {
    font-size: 0.92rem;
    margin: 0;
    line-height: 1.55;
}

.doc-card-list {
    background: var(--color-background-soft);
    border-left-color: rgba(11, 11, 11, 0.06);
}

.doc-check-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.doc-check-list li {
    display: flex;
    align-items: flex-start;
    font-size: 0.88rem;
    line-height: 1.5;
}

.doc-question-card {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    background: #fff;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-left: 1px dashed rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-xs);
}

.doc-question-card:nth-child(odd) {
    transform: rotate(-0.4deg);
}

.doc-question-card:nth-child(even) {
    transform: rotate(0.4deg);
}

.doc-question-card:hover {
    transform: rotate(0deg) translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.doc-question-card i {
    color: var(--color-action-dark);
    font-size: 1.15rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.doc-roadmap-grid {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-left: 0;
}

.doc-roadmap-grid::before {
    content: '';
    position: absolute;
    top: 1.125rem;
    bottom: 1.125rem;
    left: 1.125rem;
    width: 2px;
    background: var(--color-border);
    z-index: 0;
}

.doc-roadmap-card {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 1.1rem;
}

.doc-roadmap-card>div {
    flex: 1;
    border-radius: var(--radius-xl);
    padding: 1rem 1.2rem;
    background: #fff;
    box-shadow: var(--shadow-lg), var(--shadow-card-yellow);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.doc-roadmap-card:hover>div {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), var(--shadow-card-yellow);
}

.doc-roadmap-num {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: var(--color-primary-dark, var(--color-primary));
    color: #fff;
    font-weight: 800;
    font-family: var(--font-family-heading);
    box-shadow: 0 0 0 4px #fff;
}

.doc-canvas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.1rem;
}

.doc-canvas-card {
    position: relative;
    border-radius: var(--radius-xl);
    padding: 1.25rem 1.1rem 1.1rem;
    background: #fff;
    box-shadow: var(--shadow-lg), var(--shadow-card-yellow);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.doc-canvas-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 1.1rem;
    right: 1.1rem;
    height: 3px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    background: var(--color-primary-dark, var(--color-primary));
}

.doc-canvas-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md), var(--shadow-card-yellow);
}

.doc-canvas-card h5 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.92rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--color-card-border);
}

.doc-canvas-card h5 i {
    color: var(--color-text-secondary);
    font-size: 1rem;
}

.doc-canvas-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.doc-canvas-card li {
    font-size: 0.88rem;
    line-height: 1.5;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
}

.doc-open-questions {
    background: linear-gradient(180deg, rgba(255, 235, 0, 0.07) 0%, rgba(255, 235, 0, 0.02) 100%);
}

.doc-signature {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 2rem;
    border-top: 1px solid var(--color-border);
    background: var(--color-background-soft);
    text-align: center;
}

.doc-signature>div {
    position: relative;
    padding: 0 1rem;
}

.doc-signature>div:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 0.1rem;
    right: 0;
    bottom: 0.1rem;
    width: 1px;
    background: var(--color-border);
}

.doc-signature i {
    display: block;
    font-size: 1.3rem;
    color: var(--color-text-secondary);
    margin-bottom: 0.5rem;
}

@media (max-width:575.98px) {
    .doc-signature {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 1.25rem;
    }

    .doc-signature>div:not(:last-child)::after {
        display: none;
    }
}

.doc-feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.doc-feature-item {
    border-left: 4px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.1rem 1.25rem;
    background: #fff;
    box-shadow: var(--shadow-lg), var(--shadow-card-yellow);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.doc-feature-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), var(--shadow-card-yellow);
}

.doc-feature-item:has(.badge-danger) {
    border-left-color: var(--color-danger);
}

.doc-feature-item:has(.badge-warning) {
    border-left-color: var(--color-warning);
}

.doc-feature-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.doc-sitemap {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.85rem;
}

.doc-sitemap li {
    border-left: 3px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
    background: #fff;
    box-shadow: var(--shadow-lg), var(--shadow-card-yellow);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.doc-sitemap li:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), var(--shadow-card-yellow);
}

.doc-sitemap li:has(.badge-danger) {
    border-left-color: var(--color-danger);
}

@media (max-width:767.98px) {

    .feature-card-modern,
    .auth-card,
    .web-gratis-promo-card,
    .analysis-processing-card {
        padding: 1.35rem;
    }

    .service-card,
    .service-price-card,
    .purchase-card,
    .feature-checklist-card,
    .product-description-card,
    .pdp-tab-card,
    .page-highlight-card,
    .fulfillment-card,
    .trust-item-modern {
        padding: 1.15rem;
    }

    .product-card-body,
    .portfolio-card-body,
    .portfolio-psr-card,
    .portfolio-info-card,
    .service-addons-card,
    .testimonial-card,
    .other-service-card {
        padding: 1rem;
    }

    .trust-section {
        padding-top: 2.25rem;
        padding-bottom: 2.25rem;
    }

    .doc-section {
        padding: 1.35rem 1.15rem;
    }

    .trust-grid-modern,
    .testimonial-grid {
        gap: 1.1rem;
    }
}

@media (max-width:767.98px) {
    .row-scroll-mobile {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: .25rem;
        margin-left: calc(-1 * var(--container-padding-mobile));
        margin-right: calc(-1 * var(--container-padding-mobile));
        padding-left: var(--container-padding-mobile);
        padding-right: var(--container-padding-mobile);
    }

    .row-scroll-mobile::-webkit-scrollbar {
        display: none;
    }

    .row-scroll-mobile>[class*="col-"] {
        flex: 0 0 84%;
        max-width: 84%;
        scroll-snap-align: start;
    }
}

.promo-slide-image {
    background-size: 112%;
}

@media (max-width:767.98px) {
    .promo-slide-image {
        background-size: 112%;
    }
}

@media (max-width:767.98px) {

    .portfolio-tag,
    .portfolio-tech {
        display: none;
    }
}

@media (max-width:767.98px) {
    #portofolioRow.row-scroll-mobile>[class*="col-"] {
        flex: 0 0 62%;
        max-width: 62%;
    }

    #portofolioRow .portfolio-title {
        font-size: 1rem;
    }
}

@media (max-width:767.98px) {
    .promo-carousel-section {
        display: none;
    }
}

#web-gratis-promo .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

#web-gratis-promo .web-gratis-promo-card {
    border-radius: 0;
}

@media (max-width:767.98px) {
    .category-desc {
        display: none;
    }
}

.dash-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-xl);
    padding: 1.25rem;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04), 0 4px 16px rgba(16, 24, 40, 0.06);
}

.dash-identity-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    color: #4338ca;
    font-weight: 700;
    font-size: 1.15rem;
    overflow: hidden;
}

.dash-identity-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dash-status-line {
    font-size: 0.85rem;
}

.dash-primary-card {
    position: relative;
    background: linear-gradient(155deg, #0b0b0b 0%, #262626 100%);
    color: #fff;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(11, 11, 11, 0.18);
}

.dash-primary-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffeb00;
    margin-bottom: 0.6rem;
}

.dash-primary-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 235, 0, 0.15);
    color: #ffeb00;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.dash-primary-card p {
    color: rgba(255, 255, 255, 0.75);
}

.dash-progress-bar {
    height: 8px;
    border-radius: var(--radius-full);
    background: #eef0f3;
    overflow: hidden;
}

.dash-progress-fill {
    height: 100%;
    border-radius: var(--radius-full);
    background: linear-gradient(90deg, #4338ca, #7c3aed);
    transition: width 0.3s ease;
}

.dash-progress-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.dash-progress-list li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.85rem;
    color: var(--color-text-primary, #111827);
}

.dash-progress-list li.is-done {
    color: #9ca3af;
    text-decoration: line-through;
}

.dash-progress-list li i {
    font-size: 1rem;
    color: #4338ca;
    flex-shrink: 0;
}

.dash-progress-list li.is-done i {
    color: #16a34a;
}

.dash-progress-list li a {
    color: inherit;
    text-decoration: none;
}

.dash-progress-list li a:hover {
    color: #4338ca;
    text-decoration: underline;
}

.dash-activity-list {
    display: flex;
    flex-direction: column;
}

.dash-activity-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0;
}

.dash-activity-row+.dash-activity-row {
    border-top: 1px solid #f1f2f4;
}

.dash-activity-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff7ed;
    color: #ea580c;
}

.dash-quicklinks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.dash-quicklink {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.95rem;
    border-radius: var(--radius-full);
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #111827;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.dash-quicklink:hover {
    color: #111827;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 16, 16, 0.09);
    border-color: #d1d5db;
}

.dash-quicklink i {
    color: #4338ca;
}

.defer-render {
    content-visibility: auto;
    contain-intrinsic-size: auto 1000px;
}
.service-price-plus{font-size:1rem;font-weight:400;color:#6b7280;transition:color .3s ease .1s}
.service-price-note{font-size:.75rem;color:#4b5563;line-height:1.4;background:rgba(var(--color-primary-rgb),.05);padding:8px 12px;border-radius:6px;border-left:3px solid var(--color-primary);transition:color .3s ease .1s,background .3s ease .1s,border-color .3s ease .1s}
.service-card:hover .service-price-plus,.service-card:hover .service-price-note{color:rgba(255,255,255,.85)}
.service-card:hover .service-price-note{background:rgba(255,255,255,.15);border-color:#fff}