:root {
    --primary-50: #eff6ff;
    --primary-100: #dbeafe;
    --primary-200: #bfdbfe;
    --primary-300: #93c5fd;
    --primary-400: #60a5fa;
    --primary-500: #3b82f6;
    --primary-600: #2563eb;
    --primary-700: #1d4ed8;
    --primary-800: #1e3a8a;
    --primary-soft: rgba(37, 99, 235, 0.1);
    --primary-shadow: rgba(37, 99, 235, 0.22);
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--slate-800);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

.navbar.fixed-top.bg-white {
    background-color: #ffffff !important;
    --bs-bg-opacity: 1;
}

.container-custom {
    width: 100%;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container-custom {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container-custom {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.text-slate-500 { color: var(--slate-500) !important; }
.text-slate-600 { color: var(--slate-600) !important; }
.text-slate-900 { color: var(--slate-900) !important; }
.text-primary-600 { color: var(--primary-600) !important; }
.bg-slate-50 { background-color: var(--slate-50) !important; }
.bg-primary-50 { background-color: var(--primary-50) !important; }
.bg-primary-600 { background-color: var(--primary-600) !important; }
.border-slate-100 { border-color: var(--slate-100) !important; }
.border-slate-200 { border-color: var(--slate-200) !important; }

.border-primary-600 { border-color: var(--primary-600) !important; }
.text-slate-400 { color: var(--slate-400) !important; }

.btn-primary-custom {
    background-color: var(--primary-600);
    color: #ffffff !important;
    border-radius: 9999px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: none;
    transition: all 0.2s ease;
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-primary-custom:hover {
    background-color: var(--primary-700);
    transform: translateY(-1px);
    color: #ffffff !important;
}

.btn-secondary-custom {
    background-color: #ffffff;
    color: var(--slate-700) !important;
    border: 1px solid var(--slate-200);
    border-radius: 9999px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-secondary-custom:hover {
    background-color: var(--slate-50);
    transform: translateY(-1px);
    color: var(--slate-700) !important;
}

.hero-pattern {
    background-color: #ffffff;
    background-image: radial-gradient(#dbeafe 1px, transparent 1px);
    background-size: 24px 24px;
}

.rounded-2xl { border-radius: 1rem !important; }
.rounded-xl { border-radius: 0.75rem !important; }
.shadow-sm-custom { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-lg-custom { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); }

.hover-feature-card {
    transition: all 0.3s ease;
}

.hover-feature-card:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05) !important;
    transform: translateY(-2px);
}

.mobile-nav-link {
    display: block;
    padding: 0.5rem 0.75rem;
    color: var(--slate-600);
    font-weight: 500;
    text-decoration: none;
    border-radius: 0.5rem;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background-color: var(--slate-50);
    color: var(--primary-600);
}

.desktop-nav-link {
    position: relative;
    display: inline-block;
    color: var(--slate-600);
    font-weight: 500;
    text-decoration: none;
    padding-bottom: 0.35rem;
    transition: color 0.2s ease;
}

.desktop-nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-600), #60a5fa);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.desktop-nav-link:hover,
.desktop-nav-link.active {
    color: var(--primary-600);
}

.desktop-nav-link:hover::after,
.desktop-nav-link.active::after {
    transform: scaleX(1);
}

.frontend-nav-dropdown {
    position: relative;
}

.frontend-nav-dropdown__toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: transparent;
    border: 0;
    padding: 0 0 0.35rem;
    cursor: pointer;
    font: inherit;
}

.frontend-nav-dropdown__chevron {
    width: 0.95rem;
    height: 0.95rem;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.frontend-nav-dropdown.is-open .frontend-nav-dropdown__chevron,
.frontend-nav-dropdown:hover .frontend-nav-dropdown__chevron {
    transform: rotate(180deg);
}

.frontend-nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 50%;
    transform: translateX(-50%) translateY(0.35rem);
    min-width: 15.5rem;
    padding: 0.45rem;
    border-radius: 0.85rem;
    background: #fff;
    border: 1px solid var(--slate-100);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    z-index: 40;
}

.frontend-nav-dropdown.is-open .frontend-nav-dropdown__menu,
.frontend-nav-dropdown:hover .frontend-nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.frontend-nav-dropdown__item {
    display: block;
    padding: 0.7rem 0.85rem;
    border-radius: 0.65rem;
    color: var(--slate-700);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.frontend-nav-dropdown__item:hover,
.frontend-nav-dropdown__item.is-active {
    background: var(--slate-50);
    color: var(--primary-600);
}

.mobile-nav-group__toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: 0;
    text-align: left;
}

.mobile-nav-group__chevron {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s ease;
}

.mobile-nav-group.is-open .mobile-nav-group__chevron {
    transform: rotate(180deg);
}

.mobile-nav-group__items {
    display: none;
    padding-left: 0.75rem;
}

.mobile-nav-group.is-open .mobile-nav-group__items {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.mobile-nav-link--sub {
    font-size: 0.92rem;
    color: var(--slate-500);
}

.frontend-pricing-subnav {
    border-bottom: 1px solid var(--slate-100);
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.frontend-pricing-subnav__track {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.85rem 0;
    scrollbar-width: none;
}

.frontend-pricing-subnav__track::-webkit-scrollbar {
    display: none;
}

.frontend-pricing-subnav__item {
    flex: 0 0 auto;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--slate-200);
    background: #fff;
    color: var(--slate-600);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
}

.frontend-pricing-subnav__item:hover {
    border-color: var(--primary-200);
    color: var(--primary-600);
}

.frontend-pricing-subnav__item.is-active {
    background: var(--primary-600);
    border-color: var(--primary-600);
    color: #fff;
}

.addon-pricing-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .addon-pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .addon-pricing-grid--packages {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.addon-pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    padding: 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid var(--slate-100);
    background: #fff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.addon-pricing-card.is-featured {
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.12);
}

.addon-pricing-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: #ecfdf5;
    color: #047857;
    font-size: 0.75rem;
    font-weight: 700;
}

.addon-pricing-card__name {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--slate-900);
}

.addon-pricing-card__price {
    margin: 0;
    font-size: 2rem;
    font-weight: 800;
    color: var(--slate-900);
    line-height: 1.1;
}

.addon-pricing-card__price small {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--slate-500);
}

.addon-pricing-card__meta {
    margin: 0;
    color: var(--slate-500);
    font-size: 0.9rem;
}

.addon-pricing-card__list {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--slate-600);
    font-size: 0.92rem;
}

.addon-pricing-card__list li + li {
    margin-top: 0.35rem;
}

.addon-pricing-card__cta {
    margin-top: auto;
}

.desktop-nav-link.active {
    font-weight: 600;
}

.feature-detail-card {
    transition: all 0.25s ease;
}

.feature-detail-card:hover {
    box-shadow: 0 12px 28px -8px rgba(15, 23, 42, 0.12);
    transform: translateY(-2px);
}

.feature-category-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--slate-600);
    background: #ffffff;
    border: 1px solid var(--slate-200);
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.feature-category-pill:hover {
    border-color: var(--primary-600);
    color: var(--primary-600);
    background: var(--primary-50);
}

.feature-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--slate-600);
}

.feature-highlight-icon {
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 9999px;
    background: var(--primary-50);
    color: var(--primary-600);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Pricing / Plans */
.index-plan-billing-switch {
    border: 2px solid var(--slate-900);
    background: #ffffff;
    box-shadow: 4px 4px 0 0 rgba(15, 23, 42, 0.08);
    padding: 0.3rem;
}

.index-plan-billing-btn {
    border: 0;
    background: transparent;
    color: var(--slate-600);
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.7rem 1.35rem;
    border-radius: 9999px;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.index-plan-billing-btn.active {
    background: var(--slate-900);
    color: #ffffff;
    box-shadow: none;
}

.index-plan-billing-badge {
    font-size: 0.625rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: #d1fae5;
    color: #047857;
    padding: 0.15rem 0.45rem;
    border-radius: 9999px;
}

.index-plan-billing-btn.active .index-plan-billing-badge {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.index-plan-cards-row {
    --plan-card-radius: 1.125rem;
}

.index-plan-card-wrapper {
    display: flex;
}

.index-plan-card {
    --plan-accent: var(--primary-600);
    background: #ffffff;
    border: 2px solid var(--slate-200);
    border-radius: var(--plan-card-radius);
    overflow: hidden;
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.index-plan-card__accent {
    display: block;
    height: 4px;
    width: 100%;
    background: transparent;
    flex-shrink: 0;
}

.index-plan-card--standard:hover {
    border-color: var(--slate-400);
    transform: translateY(-6px);
    box-shadow: 0 18px 36px -20px rgba(15, 23, 42, 0.35);
}

.index-plan-card--featured {
    border-color: var(--plan-accent);
    box-shadow:
        0 0 0 1px color-mix(in srgb, var(--plan-accent) 35%, transparent),
        0 22px 44px -18px color-mix(in srgb, var(--plan-accent) 55%, transparent);
    z-index: 1;
}

.index-plan-card--featured .index-plan-card__accent {
    background: linear-gradient(90deg, var(--plan-accent), color-mix(in srgb, var(--plan-accent) 55%, #60a5fa));
}

.index-plan-card--featured:hover {
    transform: translateY(-8px);
    box-shadow:
        0 0 0 1px color-mix(in srgb, var(--plan-accent) 45%, transparent),
        0 28px 52px -16px color-mix(in srgb, var(--plan-accent) 60%, transparent);
}

@supports not (background: color-mix(in srgb, red 50%, blue)) {
    .index-plan-card--featured {
        box-shadow: 0 22px 44px -18px rgba(37, 99, 235, 0.4);
    }

    .index-plan-card--featured:hover {
        box-shadow: 0 28px 52px -16px rgba(37, 99, 235, 0.48);
    }

    .index-plan-card--featured .index-plan-card__accent {
        background: linear-gradient(90deg, var(--primary-600), #60a5fa);
    }
}

.index-plan-card-body {
    flex: 1 1 auto;
    min-height: 0;
    padding: 1.35rem 1.35rem 1.5rem;
}

@media (min-width: 992px) {
    .index-plan-card-body {
        padding: 1.65rem 1.65rem 1.75rem;
    }

    .index-plan-card--featured {
        transform: scale(1.02);
    }

    .index-plan-card--featured:hover {
        transform: scale(1.02) translateY(-8px);
    }
}

.index-plan-card__name {
    margin: 0 0 0.4rem;
    font-size: clamp(1.2rem, 2.2vw, 1.45rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: var(--slate-900);
}

.index-plan-card--featured .index-plan-card__name {
    color: var(--plan-accent);
}

.index-plan-card-desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--slate-500);
    min-height: calc(1.5em * 2);
}

.index-plan-card-desc--empty {
    visibility: hidden;
}

.index-plan-card-section--head {
    margin-bottom: 1.1rem;
    padding-right: 4.5rem;
}

.index-plan-card-section--price {
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 0.9rem;
    background: linear-gradient(180deg, var(--slate-50) 0%, #ffffff 100%);
    border: 1px solid var(--slate-100);
}

.index-plan-card--featured .index-plan-card-section--price {
    background: linear-gradient(180deg, var(--primary-50) 0%, #ffffff 100%);
    border-color: color-mix(in srgb, var(--plan-accent) 22%, var(--slate-100));
}

.index-plan-card-section--features {
    margin-bottom: 1.35rem;
    padding-top: 0.15rem;
}

@media (min-width: 768px) {
    .index-plan-card-section--head {
        min-height: 5.75rem;
    }
}

.index-plan-tag {
    position: absolute;
    top: 1.15rem;
    right: 1.15rem;
    z-index: 2;
    background: var(--slate-900);
    color: #ffffff;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.4rem 0.7rem;
    border-radius: 0.45rem;
    line-height: 1;
}

.index-plan-price-amount {
    display: block;
    font-size: clamp(1.85rem, 4vw, 2.4rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--slate-900);
    letter-spacing: -0.045em;
    word-break: break-word;
}

.index-plan-price-period {
    margin-top: 0.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--slate-500);
}

.index-plan-savings-badge {
    display: inline-flex;
    align-items: center;
    margin-top: 0.45rem;
    padding: 0.2rem 0.55rem;
    border-radius: 0.4rem;
    background: #ecfdf5;
    color: #047857;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.index-plan-card__footer {
    padding-top: 0.25rem;
}

.index-plan-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.1rem;
    padding: 0.85rem 1.25rem;
    border-radius: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    border-width: 2px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.index-plan-cta--solid {
    background: var(--plan-accent, var(--primary-600));
    border-color: var(--plan-accent, var(--primary-600));
    color: #ffffff !important;
    box-shadow: 0 10px 24px -14px color-mix(in srgb, var(--plan-accent, var(--primary-600)) 80%, transparent);
}

.index-plan-cta--outline {
    background: #ffffff;
    border-color: var(--slate-900);
    color: var(--slate-900) !important;
}

.index-plan-cta:hover {
    transform: translateY(-2px);
}

.index-plan-cta--solid:hover {
    box-shadow: 0 14px 28px -12px color-mix(in srgb, var(--plan-accent, var(--primary-600)) 85%, transparent);
    filter: brightness(1.04);
}

.index-plan-cta--outline:hover {
    background: var(--slate-900);
    color: #ffffff !important;
    box-shadow: 0 12px 24px -14px rgba(15, 23, 42, 0.55);
}

@media (max-width: 575.98px) {
    .index-plan-card-section--head {
        padding-right: 0;
        min-height: 0;
    }

    .index-plan-tag {
        position: static;
        order: 1;
        align-self: flex-start;
        margin: 0.85rem 1.15rem 0;
    }

    .index-plan-card__accent {
        order: 0;
    }

    .index-plan-card-body {
        order: 2;
        padding-top: 1rem;
    }
}

.frontend-plan-features {
    display: flex;
    flex-direction: column;
}

.frontend-plan-features ul.list-style-none {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin: 0;
    padding: 0;
}

.frontend-plan-features .plan-feature-item,
.frontend-plan-features ul.list-style-none > li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 0 !important;
    font-size: 0.875rem;
    line-height: 1.45;
}

.frontend-plan-features .plan-feature-item > i.fas,
.frontend-plan-features ul.list-style-none > li > i.fas {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    margin-top: 0 !important;
    margin-right: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.4rem;
    font-size: 0.75rem !important;
    font-weight: 900 !important;
    border: 1.5px solid transparent;
}

.frontend-plan-features ul.list-style-none > li > i.fa-check,
.frontend-plan-features .plan-feature-item > i.fa-check {
    background-color: #d1fae5;
    border-color: #6ee7b7;
    color: #047857 !important;
}

.frontend-plan-features ul.list-style-none > li > i.fa-times,
.frontend-plan-features .plan-feature-item > i.fa-times {
    background-color: #fee2e2;
    border-color: #fca5a5;
    color: #dc2626 !important;
}

.frontend-plan-features ul.list-style-none > li > div {
    color: var(--slate-700);
    font-weight: 500;
}

.frontend-plan-features ul.list-style-none > li > div.text-muted {
    color: var(--slate-400) !important;
    font-weight: 400;
}

.frontend-plan-features .plan-features-more {
    margin-top: 0.25rem;
}

.frontend-plan-features .plan-features-more__toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    border: 0;
    background: transparent;
    list-style: none;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-600);
    padding: 0.25rem 0;
    user-select: none;
}

.frontend-plan-features summary.plan-features-more__toggle::-webkit-details-marker {
    display: none;
}

.frontend-plan-features .plan-features-more__toggle--open::before,
.frontend-plan-features .plan-features-more__toggle--close::before {
    content: '+';
    font-weight: 800;
    font-size: 1rem;
    line-height: 1;
    margin-right: 0.15rem;
}

.frontend-plan-features .plan-features-more__toggle--close::before {
    content: '\2212';
}

.frontend-plan-features .plan-features-more[open] > .plan-features-more__toggle--open {
    display: none;
}

.frontend-plan-features .plan-features-more__panel {
    display: flex;
    flex-direction: column;
}

.frontend-plan-features .plan-features-more__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.frontend-plan-features .plan-features-more[open] .plan-features-more__list {
    margin-top: 0.75rem;
}

.frontend-plan-features .plan-features-more__toggle--close {
    align-self: flex-start;
    margin-top: 0.75rem;
}

.index-plan-comparison-wrap {
    border: 1px solid var(--slate-200);
    border-radius: 1.25rem;
    background: #fff;
    box-shadow: 0 10px 30px -18px rgba(15, 23, 42, 0.25);
    overflow: hidden;
}

.index-plan-comparison-scroll {
    -webkit-overflow-scrolling: touch;
}

.index-plan-comparison-table {
    min-width: 720px;
    border-collapse: separate;
    border-spacing: 0;
}

.index-plan-comparison-table thead th {
    vertical-align: top;
    border-bottom: 1px solid var(--slate-200);
    background: #fff;
    padding: 1.25rem 1rem;
}

.index-plan-comparison-table tbody th,
.index-plan-comparison-table tbody td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--slate-100);
    vertical-align: middle;
}

.index-plan-comparison-table tbody tr:last-child th,
.index-plan-comparison-table tbody tr:last-child td {
    border-bottom: 0;
}

.index-plan-comparison-feature-col {
    position: sticky;
    left: 0;
    z-index: 2;
    min-width: 12rem;
    max-width: 14rem;
    background: #fff;
    box-shadow: 1px 0 0 var(--slate-100);
}

.index-plan-comparison-table thead .index-plan-comparison-feature-col {
    z-index: 3;
}

.index-plan-comparison-plan-col {
    min-width: 11rem;
    width: 11rem;
}

.index-plan-comparison-plan-col--featured {
    background: linear-gradient(180deg, rgba(239, 246, 255, 0.95) 0%, rgba(255, 255, 255, 1) 100%);
}

.index-plan-comparison-table tbody .index-plan-comparison-plan-col--featured {
    background: rgba(239, 246, 255, 0.35);
}

.index-plan-comparison-tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    margin-bottom: 0.5rem;
    background: var(--primary-600);
    color: #fff;
}

.index-plan-comparison-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 9999px;
}

.index-plan-comparison-icon--yes {
    background: var(--primary-50);
    color: var(--primary-600);
}

.index-plan-comparison-icon--no {
    background: var(--slate-100);
    color: var(--slate-400);
}

.index-plan-comparison-table tbody tr:nth-child(even) .index-plan-comparison-feature-col {
    background: var(--slate-50);
}

.index-plan-comparison-table tbody tr:nth-child(even) .index-plan-comparison-plan-col:not(.index-plan-comparison-plan-col--featured) {
    background: rgba(248, 250, 252, 0.65);
}

.pricing-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 1.25rem;
}

.pricing-trust-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: var(--primary-50);
    color: var(--primary-600);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Public /harga — product-card layout */
.pricing-plans-page {
    --pricing-blue: #2b58c1;
    --pricing-blue-dark: #1e40af;
    --pricing-green: #27c485;
    --pricing-surface: #eef2f7;
}

.pricing-plans-page__plans {
    background: var(--pricing-surface);
}

.pricing-plans-page__trust {
    background: #f8fafc;
}

.pricing-plans-page .index-plan-billing-switch {
    border: 1px solid #dbe3ef;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    padding: 0.28rem;
}

.pricing-plans-page .index-plan-billing-btn.active {
    background: var(--pricing-blue);
    color: #fff;
}

.pricing-plans-page .index-plan-billing-btn.active .index-plan-billing-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.pricing-plans-page .index-plan-card {
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    overflow: visible;
}

.pricing-plans-page .index-plan-card__accent {
    display: none;
}

.pricing-plans-page .index-plan-card--standard:hover,
.pricing-plans-page .index-plan-card--featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.pricing-plans-page .index-plan-card--featured {
    border-color: rgba(43, 88, 193, 0.38);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.12);
    transform: none;
    z-index: 1;
}

@media (min-width: 992px) {
    .pricing-plans-page .index-plan-card--featured,
    .pricing-plans-page .index-plan-card--featured:hover {
        transform: translateY(-4px);
    }
}

.pricing-plans-page .index-plan-card-body {
    padding: 1.5rem 1.45rem 1.45rem;
    gap: 0;
}

.pricing-plans-page .index-plan-card-section--head {
    margin-bottom: 0.85rem;
    padding-right: 5rem;
    min-height: 0;
}

.pricing-plans-page .index-plan-card__name {
    font-size: 1.15rem;
    color: var(--slate-900) !important;
    margin-bottom: 0.3rem;
}

.pricing-plans-page .index-plan-card-desc {
    min-height: 0;
    -webkit-line-clamp: 3;
}

.pricing-plans-page .index-plan-tag {
    top: 1.15rem;
    right: 1.15rem;
    background: #ecfdf5;
    color: #047857;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.75rem;
    border-radius: 999px;
    padding: 0.28rem 0.7rem;
}

.pricing-plans-page .index-plan-card-section--price {
    position: relative;
    margin-bottom: 1.15rem;
    padding: 1rem 1.1rem;
    border: 0;
    border-radius: 0.95rem;
    background: #f0f4f8;
}

.pricing-plans-page .index-plan-card--featured .index-plan-card-section--price {
    background: #eef4ff;
}

.pricing-plans-page .index-plan-price-compare {
    display: block;
    margin-bottom: 0.15rem;
    color: #94a3b8;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: line-through;
}

.pricing-plans-page .index-plan-price-amount {
    color: var(--pricing-blue);
    font-size: clamp(1.65rem, 3vw, 2rem);
    letter-spacing: -0.03em;
}

.pricing-plans-page .index-plan-price-period {
    color: #64748b;
}

.pricing-plans-page .index-plan-savings-badge {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    margin-top: 0;
    background: #ecfdf5;
    color: #047857;
    border-radius: 999px;
    padding: 0.2rem 0.55rem;
}

.pricing-plans-page .index-plan-card-section--features {
    margin-bottom: 1.25rem;
}

.pricing-plans-page .frontend-plan-features ul.list-style-none {
    gap: 0.55rem;
}

.pricing-plans-page .frontend-plan-features .plan-feature-item,
.pricing-plans-page .frontend-plan-features ul.list-style-none > li {
    font-size: 0.9rem;
    color: #475569;
}

.pricing-plans-page .frontend-plan-features ul.list-style-none > li > i.fa-check,
.pricing-plans-page .frontend-plan-features .plan-feature-item > i.fa-check {
    background: #ecfdf5;
    color: var(--pricing-green) !important;
    border-color: transparent;
}

.pricing-plans-page .index-plan-cta {
    min-height: 2.85rem;
    border-radius: 999px;
    border-width: 1px;
    font-size: 0.9rem;
    box-shadow: none;
}

.pricing-plans-page .index-plan-cta--solid {
    background: var(--pricing-blue);
    border-color: var(--pricing-blue);
}

.pricing-plans-page .index-plan-cta--solid:hover {
    background: var(--pricing-blue-dark);
    border-color: var(--pricing-blue-dark);
    filter: none;
    box-shadow: 0 10px 22px rgba(43, 88, 193, 0.28);
}

.pricing-plans-page .index-plan-cta--outline {
    border-color: var(--pricing-blue);
    color: var(--pricing-blue) !important;
}

.pricing-plans-page .index-plan-cta--outline:hover {
    background: var(--pricing-blue);
    border-color: var(--pricing-blue);
    color: #fff !important;
}

.pricing-plans-page__trust .frontend-landing-card {
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    background: #fff;
}

.pricing-plans-page__trust .pricing-trust-icon {
    background: #eef4ff;
    color: var(--pricing-blue);
    border-radius: 0.9rem;
}

@media (max-width: 575.98px) {
    .pricing-plans-page .index-plan-card-section--head {
        padding-right: 0;
    }

    .pricing-plans-page .index-plan-tag {
        position: absolute;
        top: 1rem;
        right: 1rem;
        margin: 0;
    }

    .pricing-plans-page .index-plan-card-body {
        padding-top: 1.5rem;
    }
}

/* Testimonials */
@keyframes marquee-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marquee-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.animate-marquee-left {
    display: flex;
    width: max-content;
    animation: marquee-left 45s linear infinite;
}

.animate-marquee-right {
    display: flex;
    width: max-content;
    animation: marquee-right 45s linear infinite;
}

.animate-marquee-left:hover,
.animate-marquee-right:hover {
    animation-play-state: paused;
}

.frontend-marquee-fade {
    position: absolute;
    top: 0;
    height: 100%;
    width: 8rem;
    z-index: 2;
    pointer-events: none;
}

.frontend-marquee-fade-start {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}

.frontend-marquee-fade-end {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

.frontend-testimonial-card-marquee {
    width: 350px;
    max-width: 350px;
    flex: 0 0 350px;
    transition: all 0.3s ease;
}

.frontend-testimonial-card-marquee p {
    overflow-wrap: break-word;
}

.frontend-testimonial-stars {
    color: #fbbf24 !important;
}

.frontend-testimonial-card-grid {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.frontend-testimonial-card-grid:hover {
    transform: translateY(-4px);
}

.testimonial-stat-item {
    padding: 1rem;
    border-radius: 1rem;
    background: var(--slate-50);
    border: 1px solid var(--slate-100);
}

.testimonial-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-600);
    letter-spacing: -0.02em;
}

.frontend-footer-contact a:hover {
    color: var(--primary-600) !important;
}

@media (min-width: 768px) {
    footer .row.gy-4 > .col-md-6:first-child {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.testimonial-stat-label {
    font-size: 0.875rem;
    color: var(--slate-500);
}

/* FAQ */
.faq-chevron-container {
    transition: all 0.3s ease;
}

.faq-item {
    transition: all 0.3s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.rotate-180 {
    transform: rotate(180deg);
}

.faq-contact-card {
    box-shadow: 0 10px 25px -12px rgba(37, 99, 235, 0.15);
}

.faq-contact-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: #ffffff;
    color: var(--primary-600);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary-100);
}

/* Contact */
.contact-form-card,
.contact-info-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--slate-700);
    margin-bottom: 0.375rem;
}

.contact-form-control {
    border: 1px solid var(--slate-200);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-control:focus {
    border-color: var(--primary-500);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.12);
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.875rem;
    background: var(--primary-50);
    color: var(--primary-600);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon-primary {
    background: #ffffff;
    border: 1px solid var(--primary-100);
}

.contact-info-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--slate-500);
    margin-bottom: 0.25rem;
}

.contact-info-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--slate-900);
}

.contact-form-disabled {
    min-height: 12rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.h-4 { width: 1rem; height: 1rem; }
.w-4 { width: 1rem; }
.min-w-0 { min-width: 0 !important; }

/* Blog */
.blog-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -12px rgba(15, 23, 42, 0.12);
}

.blog-card-title {
    transition: color 0.2s ease;
}

.blog-card:hover .blog-card-title {
    color: var(--primary-600) !important;
}

.blog-card-image-wrap {
    display: block;
}

.blog-card-image {
    height: 16rem;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image {
    transform: scale(1.02);
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-600);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease, gap 0.2s ease;
}

.blog-read-more:hover {
    color: var(--primary-700);
    gap: 0.65rem;
}

.blog-empty-state {
    padding: 3rem 1.5rem;
}

.blog-empty-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: var(--primary-50);
    color: var(--primary-600);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.blog-sidebar-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--slate-900);
}

.blog-sidebar-link {
    font-size: 0.9375rem;
    color: var(--slate-600);
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-sidebar-link:hover {
    color: var(--primary-600);
}

.blog-popular-rank {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--slate-200);
    flex-shrink: 0;
}

.blog-sidebar-popular-title {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--slate-800);
    text-decoration: none;
    line-height: 1.4;
}

.blog-sidebar-popular-title:hover {
    color: var(--primary-600);
}

.blog-popular-thumb {
    width: 3.5rem;
    height: 3.5rem;
    object-fit: cover;
    flex-shrink: 0;
}

.blog-breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    font-size: 0.875rem;
    color: var(--slate-500);
}

.blog-breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--slate-300);
}

.blog-breadcrumb-link {
    color: var(--slate-500);
    text-decoration: none;
}

.blog-breadcrumb-link:hover {
    color: var(--primary-600);
}

.blog-breadcrumb-item.active span {
    color: var(--slate-800);
    font-weight: 600;
}

.blog-post-featured-image img {
    max-height: 28rem;
}

.blog-post-content {
    color: var(--slate-600);
    line-height: 1.75;
}

.blog-post-content p {
    margin-bottom: 1rem;
}

.blog-post-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-post-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.blog-post-content a {
    color: var(--primary-600);
    text-decoration: underline;
}

.blog-post-content img {
    border-radius: 0.75rem;
    margin: 1rem 0;
    max-width: 100%;
    height: auto;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.blog-post-content blockquote {
    border-left: 4px solid var(--primary-100);
    padding-left: 1rem;
    font-style: italic;
    color: var(--slate-500);
}

.blog-pagination-list .page-item.active .blog-page-link {
    background-color: var(--primary-600);
    border-color: var(--primary-600);
    color: #ffffff;
}

.blog-page-link {
    border-radius: 0.625rem !important;
    color: var(--slate-600);
    min-width: 2.25rem;
    text-align: center;
}

.blog-page-link:hover {
    background-color: var(--slate-50);
    color: var(--primary-600);
}

/* Order / Checkout */
.order-page-section {
    margin-top: 5rem;
    padding-top: 1.25rem;
    padding-bottom: 3rem;
    background: var(--primary-50, #e8eef5);
    min-height: calc(100vh - 5rem);
}

.order-page-section--flush {
    margin-top: 0;
    padding-top: 1.5rem;
    min-height: 100vh;
}

.order-page-section > .container-custom {
    width: min(100% - 2rem, 440px);
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

@media (min-width: 640px) {
    .order-page-section > .container-custom {
        width: min(100% - 2.5rem, 520px);
    }

    .order-page-section--flush {
        padding-top: 2.25rem;
    }
}

.partner-order-brandbar {
    background: #ffffff;
    border-bottom: 1px solid var(--slate-100, #f1f5f9);
}

.partner-order-brandbar .container-custom {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
}

.partner-order-brandbar__logo {
    display: block;
    height: 1.5rem;
    width: auto;
    max-width: 7rem;
    max-height: 1.5rem;
    object-fit: contain;
}

.partner-order-brandbar__title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-600);
    letter-spacing: -0.02em;
}

.order-checkout {
    --oc-blue: var(--primary-600, #2563eb);
    --oc-blue-dark: var(--primary-700, #1d4ed8);
    --oc-blue-deep: var(--primary-800, #1e3a8a);
    --oc-blue-light: var(--primary-400, #60a5fa);
    --oc-blue-soft: var(--primary-soft, rgba(37, 99, 235, 0.1));
    --oc-blue-shadow: var(--primary-shadow, rgba(37, 99, 235, 0.22));
    --oc-green: #16a34a;
    --oc-ink: #0f172a;
    --oc-muted: #64748b;
    --oc-line: #e8eef7;
    max-width: none;
    width: 100%;
    margin: 0 auto;
}

.order-checkout-card {
    position: relative;
    background: #fff;
    border: 1px solid color-mix(in srgb, var(--oc-blue) 28%, #ffffff);
    border-radius: 1.25rem;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 18px 50px var(--oc-blue-soft);
    overflow: hidden;
}

.order-checkout-card__head {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, var(--oc-blue-deep) 0%, var(--oc-blue) 52%, var(--oc-blue-light) 100%);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    overflow: hidden;
}

.order-checkout-card__head::before,
.order-checkout-card__head::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.order-checkout-card__head::before {
    width: 140px;
    height: 140px;
    top: -70px;
    right: -20px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
}

.order-checkout-card__head::after {
    width: 90px;
    height: 90px;
    bottom: -40px;
    left: 12%;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.35) 0%, transparent 70%);
}

.order-checkout-card__head-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 0.7rem;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.order-checkout-card__head-icon svg {
    width: 1.05rem;
    height: 1.05rem;
}

.order-checkout-card__body {
    padding: 1.15rem 1.05rem 1.35rem;
}

@media (min-width: 768px) {
    .order-checkout-card__body {
        padding: 1.5rem 1.65rem 1.7rem;
    }
}

.order-checkout-section + .order-checkout-section {
    margin-top: 1.35rem;
    padding-top: 1.3rem;
    border-top: 1px dashed var(--oc-line);
}

.order-checkout-section__title {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin: 0 0 1rem;
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--oc-ink);
    letter-spacing: -0.02em;
}

.order-checkout-section__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 0.7rem;
    background: linear-gradient(180deg, var(--primary-50, #eff6ff) 0%, var(--primary-100, #dbeafe) 100%);
    color: var(--oc-blue);
    box-shadow: 0 0 0 1px var(--oc-blue-soft);
}

.order-checkout-section__icon svg {
    width: 1.05rem;
    height: 1.05rem;
}

.order-checkout-summary {
    border: 1px solid var(--oc-line);
    border-radius: 1rem;
    background: linear-gradient(180deg, var(--primary-50, #f8fbff) 0%, #fff 58%);
    padding: 0.9rem 0.95rem 0.7rem;
}

.order-checkout-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.84rem;
}

.order-checkout-table th {
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #94a3b8;
    padding: 0 0.4rem 0.6rem 0;
    border-bottom: 1px solid var(--oc-line);
}

.order-checkout-table td {
    padding: 0.9rem 0.4rem 0.85rem 0;
    vertical-align: middle;
    color: #334155;
}

.order-checkout-table th:last-child,
.order-checkout-table td:last-child {
    text-align: right;
    padding-right: 0;
}

.order-checkout-product {
    font-weight: 800;
    color: var(--oc-ink);
    letter-spacing: -0.02em;
}

.order-checkout-product small {
    display: block;
    margin-top: 0.2rem;
    font-weight: 600;
    color: var(--oc-muted);
}

.order-checkout-compare {
    display: block;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 600;
    font-size: 0.78rem;
}

.order-checkout-now {
    display: block;
    color: var(--oc-blue);
    font-weight: 800;
}

.order-checkout-subtotal {
    color: var(--oc-ink);
    font-weight: 800;
}

.order-checkout-totals {
    margin-top: 0.15rem;
}

.order-checkout-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem 0;
    font-size: 0.88rem;
    color: var(--oc-muted);
}

.order-checkout-total-row--grand {
    margin-top: 0.35rem;
    padding: 0.75rem 0.85rem;
    border: 0;
    border-radius: 0.8rem;
    background: linear-gradient(90deg, var(--primary-50, #eff6ff) 0%, #fff 100%);
    box-shadow: 0 0 0 1px var(--oc-blue-soft);
    font-weight: 800;
    color: var(--oc-ink);
}

.order-checkout-discount {
    display: inline-flex;
    align-items: center;
    padding: 0.12rem 0.45rem;
    margin-right: 0.4rem;
    border-radius: 999px;
    background: #ecfdf5;
    color: #047857;
    font-size: 0.72rem;
    font-weight: 800;
}

.order-checkout-grand {
    color: var(--oc-blue);
    font-size: 1.15rem;
    letter-spacing: -0.03em;
}

.order-checkout-coupon {
    margin: 0.15rem 0 0.85rem;
    padding: 0.85rem 0.9rem 0.9rem;
    border: 1px solid #bbf7d0;
    border-radius: 0.95rem;
    background: linear-gradient(180deg, #ecfdf5 0%, #f8fffb 100%);
    box-shadow: 0 0 0 1px rgba(22, 163, 74, 0.04);
}

.order-checkout-coupon__head {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.7rem;
}

.order-checkout-coupon__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 0.7rem;
    background: #dcfce7;
    color: #15803d;
    box-shadow: 0 0 0 1px rgba(22, 163, 74, 0.08);
}

.order-checkout-coupon__icon svg {
    width: 1.05rem;
    height: 1.05rem;
}

.order-checkout-coupon__head strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 800;
    color: #14532d;
    letter-spacing: -0.02em;
}

.order-checkout-coupon__head small {
    display: block;
    margin-top: 0.1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #4d7c5a;
}

.order-checkout-coupon__row {
    display: flex;
    align-items: stretch;
    gap: 0.5rem;
}

.order-checkout-coupon__input {
    flex: 1 1 auto;
    min-width: 0;
    height: 2.55rem;
    padding: 0 0.85rem;
    border: 1px solid #bbf7d0;
    border-radius: 0.75rem;
    background: #fff;
    color: var(--oc-ink);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.order-checkout-coupon__input::placeholder {
    color: #94a3b8;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.order-checkout-coupon__input:focus {
    outline: 0;
    border-color: #86efac;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
}

.order-checkout-coupon__input.is-valid {
    border-color: #22c55e;
    background: #f0fdf4;
}

.order-checkout-coupon__input.is-invalid {
    border-color: #fca5a5;
    background: #fff;
}

.order-checkout-coupon__apply {
    flex: 0 0 auto;
    min-width: 6.4rem;
    padding: 0 1rem;
    border: 0;
    border-radius: 0.75rem;
    background: linear-gradient(180deg, var(--primary-500, #3b82f6) 0%, var(--oc-blue) 100%);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 16px var(--oc-blue-shadow);
    white-space: nowrap;
}

.order-checkout-coupon__apply:hover,
.order-checkout-coupon__apply:focus {
    color: #fff;
    filter: brightness(1.05);
}

.order-checkout-coupon__apply:disabled {
    opacity: 0.7;
    cursor: wait;
    filter: none;
}

.order-checkout-coupon__reset {
    display: inline-flex;
    margin-top: 0.55rem;
    padding: 0;
    border: 0;
    background: none;
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.15rem;
}

.order-checkout-coupon__reset:hover {
    color: #b91c1c;
}

.order-checkout-coupon__message {
    margin-top: 0.55rem;
    font-size: 0.78rem;
    font-weight: 700;
}

.order-checkout-coupon__message.is-success {
    color: #15803d;
}

.order-checkout-coupon__message.is-error {
    color: #b91c1c;
}

.order-checkout-coupon-code {
    display: inline-flex;
    align-items: center;
    margin-left: 0.35rem;
    padding: 0.08rem 0.4rem;
    border-radius: 999px;
    background: #ecfdf5;
    color: #047857;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.order-checkout-tabs {
    display: flex;
    gap: 0.2rem;
    overflow-x: auto;
    margin: 0 -0.15rem 1rem;
    padding: 0 0.15rem 0.15rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.order-checkout-tabs::-webkit-scrollbar {
    display: none;
}

.order-checkout-tabs .nav-item {
    flex: 1 0 auto;
}

.order-checkout-tabs .nav-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    width: 100%;
    min-width: 4.35rem;
    padding: 0.55rem 0.5rem 0.6rem;
    border: 1px solid transparent;
    border-radius: 0.85rem;
    color: #94a3b8;
    font-size: 0.72rem;
    font-weight: 800;
    background: #f8fafc;
    transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.order-checkout-tabs .nav-link svg {
    width: 1.15rem;
    height: 1.15rem;
}

.order-checkout-tabs .nav-link:hover {
    color: var(--oc-blue);
    background: var(--primary-50, #eff6ff);
}

.order-checkout-tabs .nav-link.active {
    color: var(--oc-blue);
    background: #fff;
    border-color: color-mix(in srgb, var(--oc-blue) 28%, transparent);
    box-shadow: 0 8px 18px var(--oc-blue-soft);
}

.order-checkout .order-payment-grid {
    --bs-gutter-x: 0.7rem;
    --bs-gutter-y: 0.7rem;
}

.order-checkout .order-payment-grid .order-payment-option {
    min-height: 6.4rem;
    border-width: 1px;
    border-color: var(--oc-line);
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.order-checkout .order-payment-grid .order-payment-option:hover {
    border-color: var(--primary-200, #bfdbfe);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px var(--oc-blue-soft);
}

.order-checkout .order-payment-grid .order-payment-option.selected {
    border-color: var(--oc-blue);
    background: linear-gradient(180deg, var(--primary-50, #f8fbff) 0%, #fff 100%);
    box-shadow: 0 0 0 1px var(--oc-blue), 0 12px 24px var(--oc-blue-soft);
}

.order-checkout .order-payment-grid .order-payment-icon {
    width: 2.75rem;
    height: 2.75rem;
    border: 0;
    background: #f8fafc;
    border-radius: 0.8rem;
}

.order-checkout .order-payment-grid .order-payment-check {
    display: none;
}

.order-checkout-field {
    margin-bottom: 0.95rem;
}

.order-checkout-field label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--oc-ink);
}

.order-checkout-req {
    color: #ef4444;
}

.order-checkout-control {
    position: relative;
}

.order-checkout-field input.form-control {
    border-radius: 0.85rem;
    border: 1px solid #d7e3f4;
    padding: 0.78rem 2.5rem 0.78rem 0.95rem;
    font-size: 0.94rem;
    background: #fff;
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
}

.order-checkout-field input.form-control:focus {
    border-color: var(--primary-300, #93c5fd);
    box-shadow: 0 0 0 4px var(--oc-blue-soft);
}

.order-checkout-field[data-field="password"] input.form-control {
    background: var(--primary-50, #f8fbff);
}

.order-checkout-field.is-valid input.form-control {
    border-color: #86efac;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.08);
}

.order-checkout-valid-icon {
    display: none;
    position: absolute;
    top: 50%;
    right: 0.8rem;
    transform: translateY(-50%);
    color: var(--oc-green);
}

.order-checkout-field.is-valid .order-checkout-valid-icon {
    display: inline-flex;
}

.order-checkout-hint {
    margin-top: 0.35rem;
    font-size: 0.75rem;
}

.order-checkout-hint__ok {
    display: none;
    color: var(--oc-green);
    font-weight: 700;
}

.order-checkout-field.is-valid .order-checkout-hint__ok {
    display: inline;
}

.order-checkout-hint__help {
    display: block;
    color: #94a3b8;
}

.order-checkout-login {
    margin: 0 0 0.95rem;
}

.order-checkout-login .btn {
    border-radius: 999px;
    font-weight: 700;
}

.order-checkout-action {
    margin-top: 1.5rem;
}

.order-checkout-submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    min-height: 3.15rem;
    border: 0;
    border-radius: 0.95rem;
    background: linear-gradient(135deg, var(--oc-blue-dark) 0%, var(--oc-blue) 55%, var(--oc-blue-light) 100%);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    box-shadow: 0 14px 28px var(--oc-blue-shadow);
    overflow: hidden;
}

.order-checkout-submit::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.18) 45%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.45s ease;
}

.order-checkout-submit:hover {
    color: #fff;
    filter: brightness(1.04);
}

.order-checkout-submit:hover::after {
    transform: translateX(100%);
}

.order-checkout-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin: 0.75rem 0 0;
    color: var(--oc-muted);
    font-size: 0.78rem;
    font-weight: 600;
}

.order-checkout-secure svg {
    width: 0.95rem;
    height: 0.95rem;
    color: var(--oc-blue);
}

.order-checkout-terms {
    margin: 0.4rem 0 0;
    text-align: center;
    font-size: 0.75rem;
    color: #94a3b8;
}

.order-checkout-terms a {
    color: var(--oc-blue);
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 575.98px) {
    .order-page-section {
        padding-top: 0.75rem;
    }

    .order-checkout-card {
        border-radius: 1rem;
    }

    .order-checkout-card__body {
        padding: 1rem 0.9rem 1.2rem;
    }

    .order-checkout-qty {
        display: none;
    }

    .order-checkout-table {
        font-size: 0.8rem;
    }

    .order-checkout-grand {
        font-size: 1.05rem;
    }

    .order-checkout-coupon__row {
        flex-direction: column;
    }

    .order-checkout-coupon__apply {
        min-height: 2.55rem;
    }

    .order-checkout-tabs .nav-link {
        min-width: 4.1rem;
        padding: 0.5rem 0.4rem;
    }

    .order-checkout .order-payment-grid .order-payment-option {
        min-height: 5.8rem;
        padding: 0.75rem 0.5rem;
    }
}

.order-confirmation-copy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: 1px solid rgba(13, 110, 253, 0.25);
    background: #fff;
    color: #0d6efd;
    border-radius: 999px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.order-confirmation-copy-btn:hover {
    background: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
}

.order-confirmation-copy-btn.is-copied {
    background: #198754;
    border-color: #198754;
    color: #fff;
}

.order-confirmation-copy-btn svg {
    width: 15px;
    height: 15px;
}

.order-thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.order-thank-you-section > .container-custom {
    width: 100%;
}

.order-thank-you-icon {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ecfdf5;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.order-thank-you-icon svg {
    width: 2.25rem;
    height: 2.25rem;
}

.order-step-indicator {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2.5rem;
    position: relative;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.order-step-indicator::before {
    content: '';
    position: absolute;
    top: 1.125rem;
    left: 15%;
    right: 15%;
    height: 2px;
    background: var(--slate-200);
    z-index: 0;
}

.order-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
    flex: 1;
    text-align: center;
}

.order-step-number {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    background: #ffffff;
    border: 2px solid var(--slate-200);
    color: var(--slate-500);
    transition: all 0.2s ease;
}

.order-step-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--slate-500);
}

.order-step-item.active .order-step-number {
    background: var(--primary-600);
    border-color: var(--primary-600);
    color: #ffffff;
}

.order-step-item.active .order-step-label {
    color: var(--primary-600);
}

.order-step-item.completed .order-step-number {
    background: var(--primary-50);
    border-color: var(--primary-600);
    color: var(--primary-600);
}

.order-step-panel {
    display: none;
}

.order-step-panel.active {
    display: block;
}

.order-form-card,
.order-summary-card {
    transition: box-shadow 0.25s ease;
}

.order-periode-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.order-periode-option {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.875rem 1rem;
    border: 2px solid var(--slate-200);
    border-radius: 0.875rem;
    text-decoration: none;
    color: inherit;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.order-periode-option:hover {
    border-color: var(--primary-300);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
    color: inherit;
}

.order-periode-option.is-selected {
    border-color: var(--primary-600);
    background: var(--primary-50);
    box-shadow: 0 0 0 1px var(--primary-600);
}

.order-periode-option__label {
    font-weight: 700;
    color: var(--slate-900);
    font-size: 0.95rem;
}

.order-periode-option__duration {
    font-size: 0.8rem;
    color: var(--slate-500);
}

.order-periode-option__price {
    margin-top: 0.35rem;
    font-weight: 700;
    color: var(--primary-600);
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .order-periode-grid {
        grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
    }
}

.order-info-box {
    background: var(--primary-50);
    border: 1px solid var(--primary-100);
    border-radius: 0.875rem;
    padding: 1rem 1.125rem;
}

.order-info-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.625rem;
    background: #ffffff;
    color: var(--primary-600);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary-100);
}

.order-payment-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.125rem;
    border: 2px solid var(--slate-200);
    border-radius: 0.875rem;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    margin-bottom: 0;
    height: 100%;
}

.order-payment-grid .order-payment-option {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.625rem;
    padding: 0.875rem 0.75rem;
    position: relative;
    min-height: 7.5rem;
}

.order-payment-grid .order-payment-icon {
    width: 2.5rem;
    height: 2.5rem;
}

.order-payment-grid .order-payment-option .flex-grow-1 {
    flex-grow: 0 !important;
    width: 100%;
}

.order-payment-grid .order-payment-option .fw-semibold {
    font-size: 0.8125rem;
    line-height: 1.35;
    word-break: break-word;
}

.order-payment-grid .order-payment-check {
    position: absolute;
    top: 0.625rem;
    right: 0.625rem;
    width: 1.25rem;
    height: 1.25rem;
}

.order-payment-option:hover {
    border-color: var(--primary-300);
    background: var(--slate-50);
}

.order-payment-option.selected {
    border-color: var(--primary-600);
    background: var(--primary-50);
    box-shadow: 0 0 0 0.15rem rgba(37, 99, 235, 0.08);
}

.order-payment-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: #ffffff;
    border: 1px solid var(--slate-200);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    overflow: hidden;
}

.order-payment-icon-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.35rem;
}

.order-payment-tabs {
    border-bottom: 1px solid var(--slate-200);
    gap: 0.25rem;
}

.order-payment-tabs .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    color: var(--slate-600);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.625rem 1rem;
    white-space: nowrap;
}

.order-payment-tabs .nav-link:hover {
    color: var(--primary-600);
}

.order-payment-tabs .nav-link.active {
    color: var(--primary-600);
    background: transparent;
    border-bottom-color: var(--primary-600);
}

.order-duitku-methods {
    min-height: 12rem;
}

.order-email-checking {
    position: absolute;
    top: 50%;
    right: 0.875rem;
    transform: translateY(-50%);
}

.order-password-field {
    position: relative;
}

.order-password-field .contact-form-control {
    padding-right: 3rem;
}

.order-password-toggle {
    position: absolute;
    top: 50%;
    right: 0.625rem;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: var(--slate-500);
    padding: 0.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
}

.order-password-toggle:hover {
    color: var(--primary-600);
    background: var(--slate-50);
}

.order-payment-check {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 9999px;
    border: 2px solid var(--slate-300);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.order-payment-option.selected .order-payment-check {
    background: var(--primary-600);
    border-color: var(--primary-600);
    color: #ffffff;
}

.order-confirm-item {
    background: var(--slate-50);
    border: 1px solid var(--slate-100);
    border-left: 3px solid var(--primary-600);
    border-radius: 0.75rem;
    padding: 0.875rem 1rem;
    height: 100%;
}

.order-confirm-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--slate-500);
    margin-bottom: 0.25rem;
}

.order-confirm-value {
    font-weight: 600;
    color: var(--slate-900);
    word-break: break-word;
}

.order-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--slate-100);
}

.order-summary-row:last-of-type {
    border-bottom: none;
}

.order-summary-total {
    background: var(--primary-50);
    border: 1px solid var(--primary-100);
}

.order-summary-card {
    position: sticky;
    top: 6rem;
    z-index: 1;
}

.order-loader-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.92);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.order-loader-overlay.show {
    display: flex;
}

@media (max-width: 991.98px) {
    .order-summary-card {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .order-step-indicator {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .order-step-indicator::before {
        display: none;
    }

    .order-step-item {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }
}

.not-found-hero {
    margin-top: 5rem;
    padding-top: 4.5rem;
    padding-bottom: 3.5rem;
}

.not-found-code {
    font-size: clamp(5rem, 18vw, 8rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
    background: linear-gradient(to right, var(--primary-600), #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    max-width: 16rem;
}

.server-error-icon-wrap {
    background: #fff1f2;
    color: #e11d48;
    border-color: #fecdd3;
}

.server-error-code {
    background: linear-gradient(to right, #e11d48, #fb7185);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.not-found-title {
    font-weight: 800;
    letter-spacing: -0.025em;
}

.not-found-description {
    max-width: 42rem;
    font-size: 1.125rem;
}

.not-found-card {
    max-width: 42rem;
    padding: 2rem 1.5rem;
}

.not-found-icon-wrap {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    color: var(--primary-600);
    border: 1px solid var(--primary-100);
}

.not-found-link-card {
    background: #ffffff;
    border: 1px solid var(--slate-100);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    transition: all 0.25s ease;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.not-found-link-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-100);
}

.not-found-link-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--slate-50);
    color: var(--primary-600);
    margin-bottom: 0.875rem;
}

.not-found-debug {
    max-width: 42rem;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    color: var(--slate-700);
    font-size: 0.875rem;
    text-align: left;
}

.not-found-debug pre {
    margin: 0;
    white-space: pre-wrap;
    word-break: break-word;
}

@media (min-width: 768px) {
    .not-found-hero {
        padding-top: 5rem;
        padding-bottom: 4rem;
    }

    .not-found-card {
        padding: 2.5rem 2rem;
    }
}

.rounded-3xl {
    border-radius: 1.5rem !important;
}

.about-hero {
    margin-top: 5rem;
    padding-top: 5rem;
    padding-bottom: 4rem;
}

.about-badge {
    font-size: 0.875rem;
}

.about-title {
    font-weight: 800;
    letter-spacing: -0.025em;
}

.about-gradient-text {
    background: linear-gradient(to right, var(--primary-600), #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-lead {
    max-width: 42rem;
    font-size: 1.125rem;
}

.about-story-card {
    border-radius: 1.5rem;
}

.about-story-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
    margin-top: -4rem;
    margin-right: -4rem;
    background: var(--primary-50);
    border-radius: 9999px;
    filter: blur(48px);
    opacity: 0.5;
    pointer-events: none;
}

.about-values-panel {
    background: var(--slate-50);
    min-height: 18.75rem;
}

.about-value-card {
    background: #ffffff;
    border: 1px solid var(--slate-100);
    border-radius: 0.75rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.25s ease;
    height: 100%;
}

.about-value-card:hover {
    transform: rotate(0deg) translateY(0) !important;
}

.about-value-card-tilt-left {
    transform: rotate(-2deg);
}

.about-value-card-tilt-right {
    transform: rotate(2deg);
}

.about-value-card-offset-down {
    transform: rotate(2deg) translateY(1rem);
}

.about-value-card-offset-up {
    transform: rotate(-2deg) translateY(-1rem);
}

.about-value-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.about-value-icon-blue {
    background: #dbeafe;
    color: var(--primary-600);
}

.about-value-icon-green {
    background: #dcfce7;
    color: #16a34a;
}

.about-value-icon-purple {
    background: #f3e8ff;
    color: #9333ea;
}

.about-value-icon-amber {
    background: #fef3c7;
    color: #d97706;
}

.about-info-card .lead,
.about-story-card .lead {
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-info-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    color: var(--primary-600);
}

.about-mission-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--slate-600);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-mission-list li:last-child {
    margin-bottom: 0;
}

.about-mission-list i {
    color: #22c55e;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.about-cta {
    background: var(--primary-600);
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.about-cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.35) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
    background-size: 40px 40px;
}

.about-cta-text {
    max-width: 42rem;
}

.about-cta-secondary {
    background: var(--primary-700);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.about-cta-secondary:hover {
    background: #1e40af;
    color: #ffffff !important;
}

.legal-doc-hero {
    margin-top: 5rem;
    padding-top: 4.5rem;
    padding-bottom: 3rem;
}

.legal-doc-title {
    font-weight: 800;
    letter-spacing: -0.025em;
}

.legal-doc-layout {
    align-items: stretch;
}

.legal-doc-aside {
    align-self: stretch;
    min-height: 0;
}

.legal-doc-sidebar {
    position: sticky;
    top: 6rem;
    z-index: 20;
    max-height: calc(100vh - 7rem);
    overflow-y: auto;
    overscroll-behavior: contain;
}

@media (min-width: 992px) {
    .legal-doc-layout.row {
        display: grid;
        grid-template-columns: minmax(220px, 18rem) minmax(0, 1fr);
        column-gap: 2rem;
        row-gap: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .legal-doc-layout.row > [class*="col-"] {
        width: 100%;
        max-width: none;
        padding-left: 0;
        padding-right: 0;
        flex: none;
        margin-top: 0;
    }

    .legal-doc-aside {
        align-self: stretch;
        height: auto;
    }
}

@media (min-width: 1200px) {
    .legal-doc-layout.row {
        grid-template-columns: minmax(240px, 20rem) minmax(0, 1fr);
    }
}

.legal-doc-sidebar-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--slate-400);
    margin-bottom: 1rem;
}

.legal-doc-toc {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.legal-doc-toc-link {
    display: block;
    padding: 0.35rem 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-600);
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-doc-toc-link:hover,
.legal-doc-toc-link.is-active {
    color: var(--primary-600);
}

.legal-doc-toc-link.is-active {
    font-weight: 700;
}

.legal-doc-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--slate-200);
    scroll-margin-top: 6.5rem;
}

.legal-doc-content h2:first-child {
    margin-top: 0;
}

.legal-doc-content p,
.legal-doc-content ul,
.legal-doc-content ol {
    color: var(--slate-600);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.legal-doc-content ul,
.legal-doc-content ol {
    padding-left: 1.5rem;
}

.legal-doc-content ul {
    list-style-type: disc;
}

.legal-doc-content ol {
    list-style-type: decimal;
}

.legal-doc-content li {
    margin-bottom: 0.5rem;
}

.legal-doc-content strong {
    color: var(--slate-700);
    font-weight: 600;
}

.legal-doc-content a {
    color: var(--primary-600);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-doc-content a:hover {
    color: var(--primary-700);
}

.legal-doc-note {
    padding: 1.25rem 1.5rem;
    border-radius: 0.75rem;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    text-align: center;
    font-size: 0.875rem;
    color: var(--slate-500);
}

@media (max-width: 991.98px) {
    .legal-doc-sidebar {
        top: 5.5rem;
        max-height: calc(100vh - 6.5rem);
    }
}

/* Public addon checkout - Duitku methods */
.duitku-payment-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1rem;
    border: 2px solid var(--slate-200);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    margin-bottom: 0.75rem;
    background: #fff;
    height: 100%;
}
.duitku-payment-grid .duitku-payment-option {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.625rem;
    padding: 0.875rem 0.75rem;
    margin-bottom: 0;
    position: relative;
    min-height: 7.5rem;
}
.duitku-payment-grid .duitku-payment-icon { width: 2.5rem; height: 2.5rem; }
.duitku-payment-grid .duitku-payment-option .flex-grow-1 { flex-grow: 0 !important; width: 100%; }
.duitku-payment-grid .duitku-payment-option .font-weight-bold { font-size: 0.8125rem; line-height: 1.35; word-break: break-word; }
.duitku-payment-fee { display: block; margin-top: 0.2rem; font-size: 0.6875rem; line-height: 1.35; color: #94a3b8; }
.duitku-payment-fee--free { color: #059669; font-weight: 600; }
.duitku-payment-grid .duitku-payment-check { position: absolute; top: 0.625rem; right: 0.625rem; width: 1.25rem; height: 1.25rem; }
.order-payment-methods .duitku-payment-grid {
    --bs-gutter-x: 0.75rem;
    --bs-gutter-y: 0.75rem;
}
@media (min-width: 768px) {
    .order-payment-methods .duitku-payment-grid .duitku-payment-option {
        min-height: 6.75rem;
        padding: 0.75rem 0.5rem;
        gap: 0.5rem;
    }
    .order-payment-methods .duitku-payment-grid .duitku-payment-icon {
        width: 2.25rem;
        height: 2.25rem;
    }
    .order-payment-methods .duitku-payment-grid .duitku-payment-option .font-weight-bold {
        font-size: 0.75rem;
    }
}
.duitku-payment-option:hover { border-color: #93c5fd; background: #f8fafc; }
.duitku-payment-option.selected {
    border-color: var(--primary-600);
    background: rgba(37, 99, 235, 0.06);
    box-shadow: 0 0 0 0.15rem rgba(37, 99, 235, 0.08);
}
.duitku-payment-icon {
    width: 3rem; height: 3rem; border-radius: 0.75rem; background: #fff;
    border: 1px solid var(--slate-200); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden;
}
.duitku-payment-icon img { width: 100%; height: 100%; object-fit: contain; padding: 0.35rem; }
.duitku-payment-tabs { border-bottom: 1px solid var(--slate-200); gap: 0.25rem; }
.duitku-payment-tabs .nav-link {
    border: none; border-bottom: 2px solid transparent; border-radius: 0; color: var(--slate-500);
    font-size: 0.875rem; font-weight: 600; padding: 0.625rem 1rem; white-space: nowrap; background: transparent;
}
.duitku-payment-tabs .nav-link:hover { color: var(--primary-600); }
.duitku-payment-tabs .nav-link.active { color: var(--primary-600); background: transparent; border-bottom-color: var(--primary-600); }
.duitku-payment-check {
    width: 1.5rem; height: 1.5rem; border-radius: 9999px; border: 2px solid #cbd5e1;
    display: inline-flex; align-items: center; justify-content: center; color: transparent; flex-shrink: 0;
}
.duitku-payment-option.selected .duitku-payment-check { border-color: var(--primary-600); background: var(--primary-600); color: #fff; }
/* Mobile sticky footer navigation */
:root {
    --frontend-mobile-footer-nav-height: 4.25rem;
}

.frontend-mobile-footer-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    display: block;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--slate-200);
    box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.08);
    padding: 0.4rem 0.35rem calc(0.35rem + env(safe-area-inset-bottom, 0px));
}

.frontend-mobile-footer-nav__inner {
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    gap: 0.15rem;
    max-width: 36rem;
    margin: 0 auto;
}

.frontend-mobile-footer-nav__item {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    padding: 0.4rem 0.25rem;
    color: var(--slate-500);
    text-decoration: none !important;
    text-align: center;
    border-radius: 0.75rem;
    transition: color 0.15s ease, background-color 0.15s ease;
}

.frontend-mobile-footer-nav__item:hover,
.frontend-mobile-footer-nav__item:focus {
    color: var(--primary-600);
    background: var(--primary-50);
}

.frontend-mobile-footer-nav__item.is-active {
    color: var(--primary-600);
    background: rgba(37, 99, 235, 0.08);
}

.frontend-mobile-footer-nav__icon {
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 2.25;
}

.frontend-mobile-footer-nav__label {
    font-size: 0.6875rem;
    font-weight: 600;
    line-height: 1.15;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 1199.98px) {
    body.has-public-nav.has-mobile-footer-nav {
        padding-bottom: calc(var(--frontend-mobile-footer-nav-height) + env(safe-area-inset-bottom, 0px));
    }

    body.has-mobile-footer-nav .whatsapp-float {
        bottom: calc(var(--frontend-mobile-footer-nav-height) + env(safe-area-inset-bottom, 0px) + 0.85rem) !important;
    }

    /* Sponsor/referrer badge always clears the sticky footer nav on mobile */
    body.has-mobile-footer-nav .affiliate-referrer-float {
        bottom: calc(var(--frontend-mobile-footer-nav-height) + env(safe-area-inset-bottom, 0px) + 0.85rem) !important;
    }

    body.has-mobile-footer-nav:has(.whatsapp-float) .affiliate-referrer-float {
        bottom: calc(var(--frontend-mobile-footer-nav-height) + env(safe-area-inset-bottom, 0px) + 5.25rem) !important;
    }

    body.has-mobile-footer-nav .pwa-wrapper {
        bottom: calc(var(--frontend-mobile-footer-nav-height) + env(safe-area-inset-bottom, 0px) + 0.5rem);
    }
}
