:root {
    --primary-color: #0284C7;
    --primary-dark: #0369A1;
    --secondary-color: #64748B;
    --accent-color: #F59E0B;
    --bg-main: #FFFFFF;
    --bg-surface: #F8FAFC;
    --bg-alt-surface: #F1F5F9;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;
    --border-color: #E2E8F0;
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --danger-color: #EF4444;
}

html {
    scroll-behavior: smooth;
}

body.detailproof-layout {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

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

.btn-pill {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary-custom {
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-dark));
    color: #fff;
    border: none;
}

.btn-primary-custom:hover {
    transform: scale(1.05);
    color: #fff;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
}

.btn-outline-custom {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-custom:hover {
    background: var(--primary-color);
    color: #fff;
}

.card-custom {
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--bg-main);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-custom:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.glass-nav {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid var(--border-color);
}

* {
    box-sizing: border-box;
}

/* ===== header ===== */
#detailproof-header {
    background-color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    z-index: 1030;
    transition: all 0.3s ease;
}

#detailproof-header .navbar {
    padding: 0.75rem 0;
    background-color: #FFFFFF !important;
}

#detailproof-header .navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

#detailproof-header .brand-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #0F172A;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

#detailproof-header .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #475569;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

#detailproof-header .nav-link:hover,
#detailproof-header .nav-link:focus,
#detailproof-header .nav-link.show {
    color: #0284C7;
}

#detailproof-header .dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 0.75rem 0;
    margin-top: 0.5rem;
    background-color: #FFFFFF !important;
}

#detailproof-header .dropdown-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    padding: 0.6rem 1.5rem;
    color: #475569;
    transition: all 0.2s ease;
}

#detailproof-header .dropdown-item:hover {
    background-color: #F8FAFC;
    color: #0284C7;
    padding-left: 1.75rem;
}

#detailproof-header .btn-cta {
    background: linear-gradient(135deg, #0284C7, #0369A1);
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: #FFFFFF;
    padding: 0.6rem 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.2);
}

#detailproof-header .btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(2, 132, 199, 0.3);
    color: #FFFFFF;
}

#detailproof-header .navbar-toggler {
    border: none;
    color: #0F172A;
    font-size: 1.5rem;
}

#detailproof-header .navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 991.98px) {
    #detailproof-header .navbar-collapse {
        background-color: #FFFFFF;
        padding: 1.5rem 0;
        border-top: 1px solid #E2E8F0;
        margin-top: 0.75rem;
    }

    #detailproof-header .nav-link {
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid #F1F5F9;
    }

    #detailproof-header .dropdown-menu {
        box-shadow: none;
        padding-left: 1rem;
        margin-top: 0;
        border-left: 2px solid #E2E8F0;
        border-radius: 0;
    }

    #detailproof-header .navbar-nav.flex-lg-fill {
        text-align: left !important;
    }
}

/* ===== hero ===== */
.detail-hero {
    background-color: #F8FAFC;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.detail-hero .hero-badge {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #0284C7;
    background: rgba(2, 132, 199, 0.1);
    border-radius: 4px;
}

.detail-hero .hero-display-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    color: #0F172A;
    font-size: clamp(2rem, 5vw, 4.5rem);
    position: relative;
    z-index: 2;
}

.detail-hero .hero-lead-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    color: #475569;
    max-width: 540px;
    line-height: 1.6;
}

.detail-hero .btn-primary {
    background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%);
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #FFFFFF;
    font-weight: 600;
}

.detail-hero .btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(2, 132, 199, 0.2);
    color: #FFFFFF;
}

.detail-hero .hero-form {
    border: 1px solid #E2E8F0;
    min-width: 320px;
    transition: border-color 0.3s ease;
}

.detail-hero .hero-form:focus-within {
    border-color: #0284C7;
}

.detail-hero .js-hero-input::placeholder {
    color: #94A3B8;
    opacity: 1;
}

.detail-hero .hero-magazine-wrap {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.detail-hero .magazine-bg-text {
    position: absolute;
    font-size: 12rem;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.03);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    z-index: 1;
    user-select: none;
}

.detail-hero .tilted-frame {
    position: relative;
    width: 80%;
    height: 70%;
    z-index: 2;
    perspective: 1000px;
}

.detail-hero .tilted-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    transform: rotate(-3deg) rotateY(5deg);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.detail-hero .tilted-image-container:hover {
    transform: rotate(0deg) rotateY(0deg);
}

.detail-hero .play-overlay-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.detail-hero .play-overlay-btn i {
    font-size: 2.5rem;
    color: #0284C7;
    margin-left: 5px;
}

.detail-hero .play-overlay-btn:hover {
    background: #0284C7;
    transform: translate(-50%, -50%) scale(1.1);
}

.detail-hero .play-overlay-btn:hover i {
    color: #FFFFFF;
}

.detail-hero .floating-card {
    position: absolute;
    bottom: 10%;
    left: -10%;
    z-index: 3;
    width: 240px;
    border-left: 4px solid #0284C7;
    animation: float 6s ease-in-out infinite;
}

.detail-hero .status-dot {
    width: 8px;
    height: 8px;
    background-color: #10B981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px #10B981;
}

@keyframes float {

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

    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 991.98px) {
    .detail-hero .hero-display-title {
        font-size: 18px;
        text-align: center;
    }

    .detail-hero .hero-lead-text {
        font-size: 14px;
        text-align: center;
        margin-inline: auto;
    }

    .detail-hero .hero-actions-container {
        width: 100%;
    }

    .detail-hero .hero-form {
        width: 100%;
        min-width: auto;
    }

    .detail-hero .hero-text-wrapper {
        text-align: center;
    }
}

/* ===== cases_highlight ===== */
.cases-highlight-section {
    background-color: #F8FAFC;
}

.cases-highlight-section .highlight-card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cases-highlight-section .highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(2, 132, 199, 0.1);
}

.cases-highlight-section .img-wrapper {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.cases-highlight-section .img-wrapper img {
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cases-highlight-section .highlight-card:hover .img-wrapper img {
    transform: scale(1.08);
}

.cases-highlight-section .btn-primary {
    background-color: #0284C7;
    border-color: #0284C7;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cases-highlight-section .btn-primary:hover {
    background-color: #0369A1;
    border-color: #0369A1;
    transform: scale(1.02);
}

.cases-highlight-section h3 {
    font-family: 'Inter', sans-serif;
    line-height: 1.3;
}

.cases-highlight-section p {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .cases-highlight-section .img-wrapper {
        height: 180px;
    }

    .cases-highlight-section h2 {
        font-size: 24px;
    }
}

/* ===== concern_selector ===== */
.concern-selector-block {
    background-color: #F8FAFC;
}

.concern-selector-block .concern-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #64748B;
}

.concern-selector-block .concern-card i {
    transition: color 0.3s ease;
}

.concern-selector-block .concern-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: #0284C7;
    color: #0284C7;
}

.concern-selector-block .concern-card.active {
    background-color: #0284C7;
    border-color: #0284C7;
    color: #FFFFFF !important;
}

.concern-selector-block .concern-card.active i {
    color: #FFFFFF !important;
}

.concern-selector-block .case-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.concern-selector-block .case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.concern-selector-block .case-card img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.concern-selector-block .case-card:hover img {
    transform: scale(1.05);
}

.concern-selector-block .btn-primary {
    background: linear-gradient(to right, #0284C7, #0369A1);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.concern-selector-block .btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.concern-selector-block .alert-info {
    background-color: #F1F5F9;
    border-left: 4px solid #0284C7 !important;
}

@media (max-width: 767.98px) {
    .concern-selector-block .display-5 {
        font-size: 1.5rem;
    }

    .concern-selector-block .h6 {
        font-size: 0.85rem;
    }

    .concern-selector-block .concern-card {
        padding: 1rem !important;
    }

    .concern-selector-block .concern-card i {
        font-size: 1.5rem !important;
    }
}

/* ===== contractor_questions ===== */
.contractor-questions-section {
    background-color: #F8FAFC;
    font-family: 'Montserrat', sans-serif;
}

.contractor-questions-section .section-title {
    color: #0F172A;
    font-family: 'Inter', sans-serif;
}

.contractor-questions-section .section-subtitle {
    color: #475569;
}

.contractor-questions-section .question-card {
    background-color: #FFFFFF;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), shadow 0.3s ease;
    border: 1px solid #E2E8F0 !important;
}

.contractor-questions-section .question-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}

.contractor-questions-section .icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: #0284C7;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
}

.contractor-questions-section .card-heading {
    color: #0F172A;
    line-height: 1.3;
}

.contractor-questions-section .card-text {
    color: #475569;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.contractor-questions-section .expert-tip {
    background-color: #F1F5F9;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #0F172A;
    border-left: 4px solid #F59E0B;
}

.contractor-questions-section .cta-box {
    background-color: #FFFFFF;
    border: 2px dashed #E2E8F0;
}

.contractor-questions-section .section-cta-title {
    color: #0F172A;
}

.contractor-questions-section .section-cta-text {
    color: #64748B;
}

.contractor-questions-section .btn-primary {
    background: linear-gradient(to right, #0284C7, #0369A1);
    border: none;
    transition: transform 0.2s ease;
}

.contractor-questions-section .btn-primary:hover {
    transform: scale(1.05);
    background: linear-gradient(to right, #0369A1, #075985);
}

.contractor-questions-section .btn-outline-dark {
    border: 2px solid #0F172A;
    font-weight: 600;
}

.contractor-questions-section .btn-outline-dark:hover {
    background-color: #0F172A;
    color: #FFFFFF;
}

/* ===== cost_of_inaction ===== */
.cost-of-inaction-section {
    background-color: #F8FAFC;
    overflow: hidden;
}

.cost-of-inaction-section .calculator-card {
    border: 1px solid #E2E8F0;
}

.cost-of-inaction-section .form-control {
    padding: 0.75rem 1rem;
    border: 1px solid #CBD5E1;
    background-color: #FFFFFF;
    color: #0F172A;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.cost-of-inaction-section .form-control:focus {
    border-color: #0284C7;
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.1);
    outline: none;
}

.cost-of-inaction-section .form-control::placeholder {
    color: #94A3B8;
}

.cost-of-inaction-section .result-box {
    transition: transform 0.3s ease;
}

.cost-of-inaction-section .consequence-visual {
    min-height: 450px;
}

.cost-of-inaction-section .overlay-content {
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0) 100%);
}

.cost-of-inaction-section .glass-pill {
    background: rgba(2, 132, 199, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cost-of-inaction-section .text-primary {
    color: #0284C7 !important;
}

@media (max-width: 767.98px) {
    .cost-of-inaction-section .consequence-visual {
        min-height: 350px;
    }

    .cost-of-inaction-section h2 {
        font-size: 1.25rem;
    }

    .cost-of-inaction-section h3 {
        font-size: 1.1rem;
    }
}

/* ===== how_we_work ===== */
.how-we-work-section {
    background-color: #F8FAFC;
    position: relative;
    overflow: hidden;
}

.how-we-work-section .section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #0F172A;
    text-transform: none;
    letter-spacing: -0.02em;
    font-size: 2.5rem;
}

.how-we-work-section .section-subtitle {
    font-family: 'Montserrat', sans-serif;
    color: #475569;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.how-we-work-section .step-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.how-we-work-section .step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(2, 132, 199, 0.1);
}

.how-we-work-section .step-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(2, 132, 199, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0284C7;
    font-size: 1.75rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.how-we-work-section .step-card:hover .step-icon-wrapper {
    background: #0284C7;
    color: #FFFFFF;
}

.how-we-work-section .step-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #E2E8F0;
    font-size: 1.25rem;
}

.how-we-work-section .step-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #0F172A;
    font-size: 1.25rem;
}

.how-we-work-section .step-text {
    font-family: 'Montserrat', sans-serif;
    color: #64748B;
    font-size: 0.95rem;
    line-height: 1.6;
}

.how-we-work-section .btn-primary {
    background: linear-gradient(to right, #0284C7, #0369A1);
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    padding: 1rem 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-we-work-section .btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.3);
}

@media (min-width: 992px) {
    .how-we-work-section .js-steps-container::before {
        content: '';
        position: absolute;
        top: 35%;
        left: 10%;
        right: 10%;
        height: 2px;
        border-top: 2px dashed #E2E8F0;
        z-index: 1;
    }
}

@media (max-width: 767px) {
    .how-we-work-section .section-title {
        font-size: 1.75rem;
    }

    .how-we-work-section .step-card {
        padding: 2rem 1.5rem !important;
    }
}

/* ===== key_benefits ===== */
.key-benefits-section {
    background-color: #F8FAFC;
    position: relative;
    overflow: hidden;
}

.key-benefits-section .section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #0F172A;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.key-benefits-section .section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.6;
}

.key-benefits-section .benefit-card {
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    border: 1px solid #E2E8F0;
    opacity: 0;
    transform: translateY(20px);
}

.key-benefits-section .benefit-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.key-benefits-section .benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.key-benefits-section .benefit-icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: rgba(2, 132, 199, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.key-benefits-section .benefit-icon-wrapper i {
    font-size: 1.5rem;
    color: #0284C7;
}

.key-benefits-section .card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #0F172A;
    line-height: 1.3;
}

.key-benefits-section .benefit-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
}

.key-benefits-section .benefit-cta {
    background: linear-gradient(90deg, #0284C7 0%, #0369A1 100%);
    border: none;
    border-radius: 50px;
    padding: 12px 36px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #FFFFFF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
}

.key-benefits-section .benefit-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.4);
    color: #FFFFFF;
}

@media (max-width: 767px) {
    .key-benefits-section .section-title {
        font-size: 1.75rem;
    }

    .key-benefits-section .section-subtitle {
        font-size: 1rem;
    }

    .key-benefits-section .benefit-card {
        padding: 1.5rem !important;
    }
}

/* ===== cases_grid ===== */
#cases-grid-section {
    font-family: 'Montserrat', sans-serif;
}

#cases-grid-section h2 {
    font-family: 'Inter', sans-serif;
    color: #0284C7 !important;
}

#cases-grid-section .case-card {
    border: none;
    border-radius: 12px;
    background-color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    overflow: hidden;
}

#cases-grid-section .case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#cases-grid-section .case-card-img-link {
    display: block;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 9;
}

#cases-grid-section .case-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

#cases-grid-section .case-card:hover .case-card-img {
    transform: scale(1.1);
}

#cases-grid-section .case-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

#cases-grid-section .case-category {
    font-size: 0.75rem;
    font-weight: 700;
    color: #F59E0B;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

#cases-grid-section .case-title-link {
    text-decoration: none;
    color: #0F172A;
    transition: color 0.2s ease;
}

#cases-grid-section .case-title-link:hover {
    color: #0284C7;
}

#cases-grid-section .case-meta {
    font-size: 0.8rem;
    color: #64748B;
}

#cases-grid-section .btn-primary {
    background: linear-gradient(to right, #0284C7, #0369A1);
    border: none;
    font-weight: 600;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

#cases-grid-section .btn-primary:hover {
    transform: scale(1.03);
    opacity: 0.95;
}

#cases-grid-section .btn-outline-primary {
    border: 2px solid #0284C7;
    color: #0284C7;
    font-weight: 600;
}

#cases-grid-section .btn-outline-primary:hover {
    background-color: #0284C7;
    color: #FFFFFF;
}

/* ===== footer ===== */
.dp-footer-section {
    background-color: #0F172A !important;
    color: #E2E8F0 !important;
}

.dp-footer-section .dp-footer-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
}

.dp-footer-section .dp-footer-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #CBD5E1;
}

.dp-footer-section .dp-footer-link {
    color: #CBD5E1;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.dp-footer-section .dp-footer-link:hover {
    color: #0284C7;
}

.dp-footer-section .dp-contact-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #CBD5E1;
}

.dp-footer-section .dp-contact-item i {
    color: #0284C7;
    font-size: 1.1rem;
}

.dp-footer-section .border-[#1E293B] {
    border-color: #1E293B !important;
}

.dp-footer-section .dp-copyright {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #94A3B8;
}

#detailproof-header {
    background-color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    z-index: 1030;
    transition: all 0.3s ease;
}

#detailproof-header .navbar {
    padding: 0.75rem 0;
    background-color: #FFFFFF !important;
}

#detailproof-header .brand-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #0F172A;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

#detailproof-header .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #475569;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

#detailproof-header .nav-link:hover {
    color: #0284C7;
}

#detailproof-header .dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 0.75rem 0;
    margin-top: 0.5rem;
    background-color: #FFFFFF !important;
}

#detailproof-header .btn-cta {
    background: linear-gradient(135deg, #0284C7, #0369A1);
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: #FFFFFF;
    padding: 0.6rem 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#detailproof-header .btn-cta:hover {
    transform: scale(1.05);
    color: #FFFFFF;
}

.detail-hero {
    background-color: #F8FAFC;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.detail-hero .hero-badge {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #0284C7;
    background: rgba(2, 132, 199, 0.1);
    border-radius: 4px;
}

.detail-hero .hero-display-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #0F172A;
    font-size: clamp(2rem, 5vw, 4.5rem);
}

.detail-hero .hero-lead-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    color: #475569;
    max-width: 540px;
}

.detail-hero .btn-primary {
    background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%);
    border: none;
    color: #FFFFFF;
    font-weight: 600;
}

.detail-hero .hero-form {
    border: 1px solid #E2E8F0;
    min-width: 320px;
    transition: border-color 0.3s ease;
}

.detail-hero .magazine-bg-text {
    position: absolute;
    font-size: 12rem;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.03);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    z-index: 1;
}

.detail-hero .tilted-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    transform: rotate(-3deg) rotateY(5deg);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.detail-hero .play-overlay-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.detail-hero .status-dot {
    width: 8px;
    height: 8px;
    background-color: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10B981;
}

.dp-category-template .dp-grid-section {
    background-color: #FFFFFF;
}

.dp-category-template .grid-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 0;
}

.dp-category-template .search-wrapper {
    position: relative;
    flex-grow: 1;
    max-width: 300px;
}

.dp-category-template .search-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94A3B8;
}

.dp-category-template .search-wrapper .form-control {
    padding-left: 40px;
    border-radius: 50px;
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
}

.dp-category-template .js-grid-sort {
    border-radius: 50px;
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    padding: 0.5rem 2rem 0.5rem 1rem;
    width: auto;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
}

.dp-category-template .dp-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    background-color: #FFFFFF;
}

.dp-category-template .dp-card:hover {
    transform: translateY(-5px);
}

.dp-category-template .dp-card-img-wrap {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.dp-category-template .dp-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #0284C7;
    color: #FFFFFF;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.dp-category-template .dp-card-meta {
    font-size: 0.8rem;
    color: #64748B;
    font-family: 'Montserrat', sans-serif;
}

.dp-category-template .dp-card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #0F172A;
}

.dp-category-template .dp-card-title a {
    color: #0F172A;
    transition: color 0.3s ease;
}

.dp-category-template .dp-card-title a:hover {
    color: #0284C7;
}

.dp-category-template .dp-card-text {
    font-family: 'Montserrat', sans-serif;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}

.dp-category-template .btn-outline-primary {
    border: 2px solid #0284C7;
    color: #0284C7;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.dp-category-template .btn-outline-primary:hover {
    background-color: #0284C7;
    color: #FFFFFF;
}

.dp-footer-section {
    background-color: #0F172A !important;
    color: #E2E8F0 !important;
}

.dp-footer-section .dp-footer-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #FFFFFF !important;
}

.dp-footer-section .dp-footer-desc,
.dp-footer-section .dp-footer-link,
.dp-footer-section .dp-contact-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #CBD5E1 !important;
}

.dp-footer-section .dp-footer-link:hover {
    color: #0284C7 !important;
}

.dp-footer-section .dp-contact-item i {
    color: #0284C7;
    font-size: 1.1rem;
}

.dp-footer-section .border-[#1E293B] {
    border-color: #1E293B !important;
}

@media (max-width: 991.98px) {
    .detail-hero .hero-display-title {
        font-size: 18px;
        text-align: center;
    }

    .detail-hero .hero-lead-text {
        font-size: 14px;
        text-align: center;
        margin-inline: auto;
    }

    .detail-hero .hero-text-wrapper {
        text-align: center;
    }

    .dp-category-template .search-wrapper {
        max-width: 100%;
    }
}


/* ===== PAGE: chitubox ===== */
.chitubox-case-details {
  font-family: 'Montserrat', sans-serif;
  background-color: #FFFFFF;
  color: #0F172A;
}

.chitubox-case-details h2 {
  font-family: 'Inter', sans-serif;
  color: #0F172A;
}

.chitubox-case-details .cb-img-wrapper {
  transition: transform 0.3s ease-in-out;
}

.chitubox-case-details .cb-img-wrapper:hover {
  transform: translateY(-4px);
}

.chitubox-case-details .cb-img-wrapper img {
  transition: transform 0.6s ease;
  object-fit: cover;
  aspect-ratio: 16/10;
}

.chitubox-case-details .cb-img-wrapper:hover img {
  transform: scale(1.05);
}

.chitubox-case-details .bg-accent-soft {
  background-color: rgba(245, 158, 11, 0.1);
}

.chitubox-case-details .card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chitubox-case-details .card:hover {
  transform: translateY(-8px);
}

.chitubox-case-details .btn-primary {
  background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%);
  border: none;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.3);
  transition: all 0.3s ease;
}

.chitubox-case-details .btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.4);
}

.chitubox-case-details .form-control::placeholder {
  color: #94A3B8;
}

.chitubox-case-details .form-control:focus {
  background-color: #475569 !important;
  color: #FFFFFF !important;
}

@media (max-width: 767.98px) {
  .chitubox-case-details h2.display-5 {
    font-size: 1.75rem;
  }
  .chitubox-case-details .lead {
    font-size: 1rem;
  }
  .chitubox-case-details .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* ===== PAGE: about ===== */
.about-page-content { --primary-color: #0284C7; --secondary-color: #64748B; font-family: 'Montserrat', sans-serif; }
.about-page-content h2, .about-page-content h3, .about-page-content h4 { font-family: 'Inter', sans-serif; }
.about-page-content .about-card { transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease; border-radius: 12px; }
.about-page-content .about-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important; }
.about-page-content .btn-primary { background: linear-gradient(to right, #0284C7, #0369A1); border: none; transition: transform 0.2s ease; }
.about-page-content .btn-primary:hover { transform: scale(1.05); }
.about-page-content .about-image-wrapper img { transition: transform 0.8s ease; }
.about-page-content .about-image-wrapper:hover img { transform: scale(1.05); }
.about-page-content .badge { padding: 0.6em 1.2em; border-radius: 50px; font-weight: 600; }
.about-page-content .text-primary { color: var(--primary-color) !important; }
.about-page-content .list-unstyled i { font-size: 1.25rem; }
@media (max-width: 768px) {
  .about-page-content .display-5 { font-size: 1.8rem; }
  .about-page-content .display-6 { font-size: 1.5rem; }
  .about-page-content h2 { font-size: 1.5rem; }
  .about-page-content .about-image-wrapper img { height: 300px !important; }
  .about-page-content .p-5 { padding: 2rem !important; }
}

/* ===== PAGE: contact ===== */
.contact-section {
  background-color: #F8FAFC;
  overflow: hidden;
}

.contact-section .contact-info-card {
  background: #0284C7;
  color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-section .contact-info-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #FFFFFF;
  font-size: 2rem;
}

.contact-section .contact-info-text {
  font-family: 'Montserrat', sans-serif;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.contact-section .contact-icon-wrapper {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-section .contact-detail-content {
  min-width: 0;
}

.contact-section .contact-link {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.contact-section .contact-link:hover {
  opacity: 0.8;
}

.contact-section .contact-text {
  font-weight: 600;
}

.contact-section .contact-link,
.contact-section .contact-text {
  display: inline-block;
  max-width: 100%;
  line-height: 1.4;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-section .contact-image-wrapper img {
  object-fit: cover;
  height: 200px;
  width: 100%;
}

.contact-section .contact-form-container {
  border: 1px solid #E2E8F0;
}

.contact-section .form-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #0F172A;
}

.contact-section .form-subtitle {
  color: #64748B;
  font-family: 'Montserrat', sans-serif;
}

.contact-section .form-control,
.contact-section .form-select {
  background-color: #F1F5F9 !important;
  border: 1px solid #E2E8F0 !important;
  color: #0F172A !important;
}

.contact-section .form-control:focus {
  border-color: #0284C7 !important;
  box-shadow: 0 0 0 0.25rem rgba(2, 132, 199, 0.1) !important;
}

.contact-section .form-label {
  color: #64748B !important;
}

.contact-section .contact-submit-btn {
  background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%);
  border: none;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.contact-section .contact-submit-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.3);
  background: linear-gradient(135deg, #0369A1 0%, #0284C7 100%);
}

@media (max-width: 768px) {
  .contact-section .contact-info-title {
    font-size: 1.5rem;
  }
  .contact-section .form-title {
    font-size: 1.5rem;
  }
  .contact-section .contact-detail-item {
    align-items: flex-start !important;
  }
}

/* ===== PAGE: privacy ===== */
.privacy-policy-section { background-color: #F8FAFC; font-family: 'Montserrat', sans-serif; }
.privacy-policy-section .privacy-content-card { border: 1px solid #E2E8F0; }
.privacy-policy-section h2 { font-family: 'Inter', sans-serif; color: #0284C7 !important; border-left: 4px solid #0284C7; padding-left: 1rem; }
.privacy-policy-section h3 { font-family: 'Inter', sans-serif; color: #0F172A; }
.privacy-policy-section p, .privacy-policy-section li { color: #475569; line-height: 1.7; }
.privacy-policy-section .list-group-item i { font-size: 1.1rem; }
.privacy-policy-section .border { border-color: #E2E8F0 !important; }
@media (max-width: 767px) {
  .privacy-policy-section h2 { font-size: 1.25rem; }
  .privacy-policy-section .privacy-content-card { padding: 1.5rem !important; }
}

/* ===== PAGE: terms ===== */
.terms-section {
  background-color: #F8FAFC;
  font-family: 'Montserrat', sans-serif;
  color: #0F172A;
}
.terms-section .terms-content-card {
  border-radius: 12px;
  border: 1px solid #E2E8F0;
}
.terms-section .terms-nav {
  top: 100px;
  z-index: 10;
}
.terms-section .terms-nav .nav-link {
  color: #64748B;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}
.terms-section .terms-nav .nav-link:hover {
  color: #0284C7;
  background-color: #F1F5F9;
}
.terms-section .terms-nav .nav-link.active {
  color: #0284C7;
  background-color: #E0F2FE;
  font-weight: 600;
}
.terms-section h2 {
  font-family: 'Inter', sans-serif;
  position: relative;
  padding-bottom: 0.5rem;
}
.terms-section .terms-block p {
  line-height: 1.8;
  color: #475569;
}
.terms-section .list-group-item {
  border-color: #E2E8F0;
  color: #475569;
  font-size: 0.95rem;
}
.terms-section .btn-primary {
  background: linear-gradient(135deg, #0284C7, #0369A1);
  border: none;
  transition: transform 0.3s ease;
}
.terms-section .btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.2);
}
@media (max-width: 767px) {
  .terms-section h2 {
    font-size: 1.25rem;
  }
  .terms-section .terms-content-card {
    padding: 1.5rem !important;
  }
}

/* ===== PAGE: disclaimer ===== */
.disclaimer-content {
  background-color: #F8FAFC;
  font-family: 'Montserrat', sans-serif;
}

.disclaimer-content__card {
  border-color: #E2E8F0 !important;
}

.disclaimer-content h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.disclaimer-content .text-primary {
  color: #0284C7 !important;
}

.disclaimer-content .text-secondary {
  color: #475569 !important;
  line-height: 1.8;
}

.disclaimer-content ul {
  padding-left: 1.25rem;
}

.disclaimer-content .bg-primary {
  background-color: #0284C7 !important;
}

@media (max-width: 767.98px) {
  .disclaimer-content h2 {
    font-size: 1.1rem;
  }
  .disclaimer-content .disclaimer-content__card {
    padding: 1.5rem !important;
  }
}

.main-comment-wrapper {
    border-color: #E2E8F0 !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-comment-wrapper:hover {
    transform: translateY(-4px);
}

.avatar-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(2, 132, 199, 0.2);
    background: linear-gradient(135deg, #0284C7, #0369A1) !important;
}

.comment-author-name {
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
}

.comment-body {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
}

.action-btn {
    color: #64748B !important;
    font-weight: 600;
    font-size: 0.85rem;
}

.action-btn:hover {
    color: #0284C7 !important;
}

.reply-comment-wrapper {
    background-color: #F8FAFC !important;
    border-color: #0284C7 !important;
}

.avatar-circle-sm {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    background: #64748B !important;
}

.action-btn-sm {
    color: #94A3B8 !important;
    font-weight: 600;
    font-size: 0.75rem;
}

.action-btn-sm:hover {
    color: #0284C7 !important;
}

.x-small {
    font-size: 0.75rem;
}

.comment-body.small {
    font-size: 0.875rem;
}


/* ===== PAGE TEMPLATE: cases ===== */
.detail-template-wrapper {
    overflow-x: hidden;
}

.detailproof-layout #detailproof-header {
    background-color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    z-index: 1030;
    transition: all 0.3s ease;
}

.detailproof-layout #detailproof-header .navbar-brand .brand-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #0F172A;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.detailproof-layout .detail-hero {
    background-color: #F8FAFC;
    min-height: 60vh;
}

.detailproof-layout .hero-display-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #0F172A;
    font-size: clamp(1.75rem, 4vw, 3.5rem);
    line-height: 1.2;
}

.detailproof-layout .hero-badge {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #0284C7;
    background: rgba(2, 132, 199, 0.1);
    border-radius: 4px;
}

.detailproof-layout .magazine-bg-text {
    position: absolute;
    font-size: 10rem;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.03);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    z-index: 1;
    user-select: none;
}

.detailproof-layout .tilted-frame {
    position: relative;
    width: 85%;
    height: 75%;
    z-index: 2;
    perspective: 1000px;
    margin: auto;
}

.detailproof-layout .tilted-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    transform: rotate(-2deg) rotateY(3deg);
    transition: transform 0.5s ease;
}

.detailproof-layout .dp-content-body {
    font-family: 'Montserrat', sans-serif;
    color: #475569;
    line-height: 1.8;
}

.detailproof-layout .dp-content-body h2 {
    color: #0F172A;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.detailproof-layout .dp-content-body p {
    margin-bottom: 1.25rem;
}

.detailproof-layout .dp-content-body ul {
    padding-left: 1.25rem;
    margin-bottom: 1.25rem;
    list-style-type: square;
}

.detailproof-layout .sidebar-card {
    transition: transform 0.3s ease;
}

.detailproof-layout .sidebar-card:hover {
    transform: translateY(-4px);
}

.detailproof-layout .avatar-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-weight: 700;
}

.detailproof-layout .avatar-circle-sm {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
}

.detailproof-layout .action-btn,
.detailproof-layout .action-btn-sm {
    font-weight: 600;
    color: #0284C7;
}

.detailproof-layout .action-btn:hover {
    color: #0369A1;
}

.detailproof-layout .hover-primary:hover {
    color: #0284C7 !important;
}

.detailproof-layout .dp-footer-section {
    background-color: #0F172A !important;
    color: #E2E8F0 !important;
}

@media (max-width: 991.98px) {
    .detailproof-layout .hero-display-title {
        font-size: 1.5rem;
        text-align: left;
    }

    .detailproof-layout .min-vh-75 {
        min-height: auto !important;
    }

    .detailproof-layout .dp-sidebar {
        margin-top: 2rem;
    }
}

/* ===== Final header dropdown stability (must stay last) ===== */
#detailproof-header .dropdown,
.detailproof-layout #detailproof-header .dropdown {
    position: relative;
}

#detailproof-header .dropdown-menu,
.detailproof-layout #detailproof-header .dropdown-menu {
    position: absolute !important;
    inset: auto auto auto 0 !important;
    top: calc(100% + 0.5rem) !important;
    right: auto !important;
    bottom: auto !important;
    left: 0 !important;
    margin: 0 !important;
    transform: none !important;
    will-change: auto !important;
}

#detailproof-header .dropdown-menu-end,
.detailproof-layout #detailproof-header .dropdown-menu-end {
    inset: auto 0 auto auto !important;
    top: calc(100% + 0.5rem) !important;
    right: 0 !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
}

@media (max-width: 991.98px) {
    #detailproof-header .dropdown-menu,
    .detailproof-layout #detailproof-header .dropdown-menu,
    #detailproof-header .dropdown-menu-end,
    .detailproof-layout #detailproof-header .dropdown-menu-end {
        position: static !important;
        inset: auto !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
    }
}

/* ===== Final header dropdown stability ===== */
#detailproof-header .dropdown,
.detailproof-layout #detailproof-header .dropdown {
    position: relative;
}

#detailproof-header .dropdown-menu,
.detailproof-layout #detailproof-header .dropdown-menu {
    position: absolute !important;
    inset: auto auto auto 0 !important;
    top: calc(100% + 0.5rem) !important;
    right: auto !important;
    bottom: auto !important;
    left: 0 !important;
    margin: 0 !important;
    transform: none !important;
    will-change: auto !important;
}

#detailproof-header .dropdown-menu-end,
.detailproof-layout #detailproof-header .dropdown-menu-end {
    inset: auto 0 auto auto !important;
    top: calc(100% + 0.5rem) !important;
    right: 0 !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
}

@media (max-width: 991.98px) {
    #detailproof-header .dropdown-menu,
    .detailproof-layout #detailproof-header .dropdown-menu,
    #detailproof-header .dropdown-menu-end,
    .detailproof-layout #detailproof-header .dropdown-menu-end {
        position: static !important;
        inset: auto !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
    }
}

/* ===== Header stability override ===== */
#detailproof-header,
.detailproof-layout #detailproof-header {
    padding: 0 !important;
    background-color: #FFFFFF !important;
    border-bottom: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06) !important;
}

#detailproof-header.is-scrolled,
.detailproof-layout #detailproof-header.is-scrolled {
    padding: 0 !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1) !important;
}

#detailproof-header .navbar,
.detailproof-layout #detailproof-header .navbar {
    padding-top: 0.7rem !important;
    padding-bottom: 0.7rem !important;
}

/* ===== DetailProof remediation layer ===== */
#detailproof-header {
    background-color: #fff !important;
    border-bottom: 1px solid rgba(226, 232, 240, 0.95);
}

#detailproof-header.is-scrolled {
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
}

#detailproof-header .navbar {
    padding: 0.7rem 0;
}

#detailproof-header .navbar-brand {
    gap: 0.25rem;
    min-width: 0;
}

#detailproof-header .navbar-brand .brand-text {
    color: #0F172A;
    white-space: nowrap;
}

#detailproof-header .navbar-collapse:not(.show) {
    display: none;
}

#detailproof-header .dropdown-menu.show {
    display: block;
}

#detailproof-header .dropdown:focus-within > .dropdown-menu {
    display: block;
}

#detailproof-header .dropdown-menu {
    min-width: 18rem;
    border: 1px solid #E2E8F0;
}

#detailproof-header .dropdown-divider {
    margin: 0.45rem 0;
}

#detailproof-header .dropdown-item {
    white-space: normal;
    line-height: 1.35;
}

.dp-footer-section {
    background-color: #0F172A !important;
    color: #E2E8F0 !important;
}

.dp-footer-section .footer-brand {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.dp-footer-section .dp-footer-title,
.dp-footer-section .dp-footer-desc,
.dp-footer-section .dp-footer-link,
.dp-footer-section .dp-contact-item,
.dp-footer-section .dp-copyright {
    color: #CBD5E1 !important;
}

.dp-footer-section .dp-footer-title {
    color: #fff !important;
}

.dp-footer-section .dp-footer-link:hover {
    color: #38BDF8 !important;
}

.dp-footer-section .dp-contact-item i {
    color: #38BDF8;
}

.dp-footer-section .dp-footer-bottom {
    border-top: 1px solid #1E293B;
}

.detail-hero .play-overlay-btn {
    display: none !important;
}

.hero-form.is-submitted {
    border-color: #10B981 !important;
    box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.12), 0 6px 16px rgba(15, 23, 42, 0.08) !important;
}

.contact-info-card .contact-detail-label,
.contact-info-card .contact-detail-content .text-muted {
    color: #FFFFFF !important;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.contact-info-card .contact-link,
.contact-info-card .contact-text {
    color: #FFFFFF !important;
    font-weight: 700;
}

.contact-info-card,
.contact-info-card .contact-info-title,
.contact-info-card .contact-info-text,
.contact-info-card .contact-detail-content,
.contact-info-card .contact-detail-content span,
.contact-info-card .contact-detail-content a {
    color: #FFFFFF !important;
}

.contact-info-card .contact-icon-wrapper {
    background: rgba(2, 132, 199, 0.12);
    color: #0369A1;
}

.dp-content-body {
    color: #334155;
    font-size: 1rem;
    line-height: 1.75;
}

.dp-content-body p,
.dp-content-body li {
    color: #334155 !important;
    font-size: 1rem !important;
    line-height: 1.75 !important;
    margin-bottom: 1rem;
}

.dp-content-body p.lead,
.dp-content-body .lead,
.dp-content-body .text-muted,
.dp-content-body .text-secondary {
    color: #334155 !important;
    font-size: 1rem !important;
    line-height: 1.75 !important;
    font-weight: 400 !important;
}

.dp-content-body ul,
.dp-content-body ol {
    padding-left: 1.25rem !important;
    margin-left: 0 !important;
}

.dp-content-body h2,
.dp-content-body h3,
.dp-content-body h4 {
    color: #0F172A !important;
    margin-top: 1.8rem;
    margin-bottom: 0.85rem;
}

.chitubox-case-details .form-control::placeholder,
.chitubox-case-details textarea::placeholder,
.chitubox-case-details .js-hero-input::placeholder {
    color: #F8FAFC !important;
    opacity: 0.9 !important;
}

.chitubox-case-details .form-control.bg-secondary,
.chitubox-case-details .form-select.bg-secondary {
    background-color: #334155 !important;
    color: #fff !important;
}

.chitubox-meta-panel {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
}

.chitubox-meta-panel .label {
    color: #475569;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.chitubox-meta-panel .value {
    color: #0F172A;
    font-weight: 700;
}

.chitubox-cta-row .btn {
    font-weight: 700;
}

@media (min-width: 992px) {
    #detailproof-header .navbar-collapse {
        display: flex !important;
    }
}

@media (max-width: 991.98px) {
    #detailproof-header .navbar-brand .brand-text {
        font-size: 1rem;
    }

    #detailproof-header .navbar-collapse {
        background-color: #fff;
        border-top: 1px solid #E2E8F0;
        margin-top: 0.75rem;
        padding: 0.75rem 0 1rem;
    }

    #detailproof-header .dropdown-menu {
        border: 0;
        border-left: 2px solid #E2E8F0;
        box-shadow: none;
        margin: 0.25rem 0 0.75rem;
        padding: 0.25rem 0 0.25rem 0.75rem;
    }

    #detailproof-header .btn-cta {
        display: inline-flex;
        justify-content: center;
    }
}

/* ===== PAGE TEMPLATE: mastery ===== */
.detail-template-wrapper {
    overflow-x: hidden;
}

.detailproof-layout #detailproof-header {
    background-color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    z-index: 1030;
    transition: all 0.3s ease;
}

.detailproof-layout #detailproof-header .navbar-brand .brand-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #0F172A;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.detailproof-layout .detail-hero {
    background-color: #F8FAFC;
    min-height: 60vh;
}

.detailproof-layout .hero-display-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #0F172A;
    font-size: clamp(1.75rem, 4vw, 3.5rem);
    line-height: 1.2;
}

.detailproof-layout .hero-badge {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #0284C7;
    background: rgba(2, 132, 199, 0.1);
    border-radius: 4px;
}

.detailproof-layout .magazine-bg-text {
    position: absolute;
    font-size: 10rem;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.03);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    z-index: 1;
    user-select: none;
}

.detailproof-layout .tilted-frame {
    position: relative;
    width: 85%;
    height: 75%;
    z-index: 2;
    perspective: 1000px;
    margin: auto;
}

.detailproof-layout .tilted-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    transform: rotate(-2deg) rotateY(3deg);
    transition: transform 0.5s ease;
}

.detailproof-layout .dp-content-body {
    font-family: 'Montserrat', sans-serif;
    color: #475569;
    line-height: 1.8;
}

.detailproof-layout .dp-content-body h2 {
    color: #0F172A;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.detailproof-layout .dp-content-body p {
    margin-bottom: 1.25rem;
}

.detailproof-layout .dp-content-body ul {
    padding-left: 1.25rem;
    margin-bottom: 1.25rem;
    list-style-type: square;
}

.detailproof-layout .sidebar-card {
    transition: transform 0.3s ease;
}

.detailproof-layout .sidebar-card:hover {
    transform: translateY(-4px);
}

.detailproof-layout .avatar-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-weight: 700;
}

.detailproof-layout .avatar-circle-sm {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
}

.detailproof-layout .action-btn,
.detailproof-layout .action-btn-sm {
    font-weight: 600;
    color: #0284C7;
}

.detailproof-layout .action-btn:hover {
    color: #0369A1;
}

.detailproof-layout .hover-primary:hover {
    color: #0284C7 !important;
}

.detailproof-layout .dp-footer-section {
    background-color: #0F172A !important;
    color: #E2E8F0 !important;
}

@media (max-width: 991.98px) {
    .detailproof-layout .hero-display-title {
        font-size: 1.5rem;
        text-align: left;
    }

    .detailproof-layout .min-vh-75 {
        min-height: auto !important;
    }

    .detailproof-layout .dp-sidebar {
        margin-top: 2rem;
    }
}

/* ===== PAGE TEMPLATE: reviews ===== */
.detail-template-wrapper {
    overflow-x: hidden;
}

.detailproof-layout #detailproof-header {
    background-color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    z-index: 1030;
    transition: all 0.3s ease;
}

.detailproof-layout #detailproof-header .navbar-brand .brand-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #0F172A;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.detailproof-layout .detail-hero {
    background-color: #F8FAFC;
    min-height: 60vh;
}

.detailproof-layout .hero-display-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #0F172A;
    font-size: clamp(1.75rem, 4vw, 3.5rem);
    line-height: 1.2;
}

.detailproof-layout .hero-badge {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #0284C7;
    background: rgba(2, 132, 199, 0.1);
    border-radius: 4px;
}

.detailproof-layout .magazine-bg-text {
    position: absolute;
    font-size: 10rem;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.03);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    z-index: 1;
    user-select: none;
}

.detailproof-layout .tilted-frame {
    position: relative;
    width: 85%;
    height: 75%;
    z-index: 2;
    perspective: 1000px;
    margin: auto;
}

.detailproof-layout .tilted-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    transform: rotate(-2deg) rotateY(3deg);
    transition: transform 0.5s ease;
}

.detailproof-layout .dp-content-body {
    font-family: 'Montserrat', sans-serif;
    color: #475569;
    line-height: 1.8;
}

.detailproof-layout .dp-content-body h2 {
    color: #0F172A;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.detailproof-layout .dp-content-body p {
    margin-bottom: 1.25rem;
}

.detailproof-layout .dp-content-body ul {
    padding-left: 1.25rem;
    margin-bottom: 1.25rem;
    list-style-type: square;
}

.detailproof-layout .sidebar-card {
    transition: transform 0.3s ease;
}

.detailproof-layout .sidebar-card:hover {
    transform: translateY(-4px);
}

.detailproof-layout .avatar-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-weight: 700;
}

.detailproof-layout .avatar-circle-sm {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
}

.detailproof-layout .action-btn,
.detailproof-layout .action-btn-sm {
    font-weight: 600;
    color: #0284C7;
}

.detailproof-layout .action-btn:hover {
    color: #0369A1;
}

.detailproof-layout .hover-primary:hover {
    color: #0284C7 !important;
}

.detailproof-layout .dp-footer-section {
    background-color: #0F172A !important;
    color: #E2E8F0 !important;
}

@media (max-width: 991.98px) {
    .detailproof-layout .hero-display-title {
        font-size: 1.5rem;
        text-align: left;
    }

    .detailproof-layout .min-vh-75 {
        min-height: auto !important;
    }

    .detailproof-layout .dp-sidebar {
        margin-top: 2rem;
    }
}

/* ===== PAGE TEMPLATE: regulations ===== */
.detail-template-wrapper {
    overflow-x: hidden;
}

.detailproof-layout #detailproof-header {
    background-color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    z-index: 1030;
    transition: all 0.3s ease;
}

.detailproof-layout #detailproof-header .navbar-brand .brand-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #0F172A;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.detailproof-layout .detail-hero {
    background-color: #F8FAFC;
    min-height: 60vh;
}

.detailproof-layout .hero-display-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #0F172A;
    font-size: clamp(1.75rem, 4vw, 3.5rem);
    line-height: 1.2;
}

.detailproof-layout .hero-badge {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #0284C7;
    background: rgba(2, 132, 199, 0.1);
    border-radius: 4px;
}

.detailproof-layout .magazine-bg-text {
    position: absolute;
    font-size: 10rem;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.03);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    z-index: 1;
    user-select: none;
}

.detailproof-layout .tilted-frame {
    position: relative;
    width: 85%;
    height: 75%;
    z-index: 2;
    perspective: 1000px;
    margin: auto;
}

.detailproof-layout .tilted-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    transform: rotate(-2deg) rotateY(3deg);
    transition: transform 0.5s ease;
}

.detailproof-layout .dp-content-body {
    font-family: 'Montserrat', sans-serif;
    color: #475569;
    line-height: 1.8;
}

.detailproof-layout .dp-content-body h2 {
    color: #0F172A;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.detailproof-layout .dp-content-body p {
    margin-bottom: 1.25rem;
}

.detailproof-layout .dp-content-body ul {
    padding-left: 1.25rem;
    margin-bottom: 1.25rem;
    list-style-type: square;
}

.detailproof-layout .sidebar-card {
    transition: transform 0.3s ease;
}

.detailproof-layout .sidebar-card:hover {
    transform: translateY(-4px);
}

.detailproof-layout .avatar-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-weight: 700;
}

.detailproof-layout .avatar-circle-sm {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
}

.detailproof-layout .action-btn,
.detailproof-layout .action-btn-sm {
    font-weight: 600;
    color: #0284C7;
}

.detailproof-layout .action-btn:hover {
    color: #0369A1;
}

.detailproof-layout .hover-primary:hover {
    color: #0284C7 !important;
}

.detailproof-layout .dp-footer-section {
    background-color: #0F172A !important;
    color: #E2E8F0 !important;
}

@media (max-width: 991.98px) {
    .detailproof-layout .hero-display-title {
        font-size: 1.5rem;
        text-align: left;
    }

    .detailproof-layout .min-vh-75 {
        min-height: auto !important;
    }

    .detailproof-layout .dp-sidebar {
        margin-top: 2rem;
    }
}

/* ===== Final header dropdown stability (must stay last) ===== */
#detailproof-header .dropdown,
.detailproof-layout #detailproof-header .dropdown {
    position: relative;
}

#detailproof-header .dropdown-menu,
.detailproof-layout #detailproof-header .dropdown-menu {
    position: absolute !important;
    inset: auto auto auto 0 !important;
    top: calc(100% + 0.5rem) !important;
    right: auto !important;
    bottom: auto !important;
    left: 0 !important;
    margin: 0 !important;
    transform: none !important;
    will-change: auto !important;
}

#detailproof-header .dropdown-menu-end,
.detailproof-layout #detailproof-header .dropdown-menu-end {
    inset: auto 0 auto auto !important;
    top: calc(100% + 0.5rem) !important;
    right: 0 !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
}

@media (max-width: 991.98px) {
    #detailproof-header .dropdown-menu,
    .detailproof-layout #detailproof-header .dropdown-menu,
    #detailproof-header .dropdown-menu-end,
    .detailproof-layout #detailproof-header .dropdown-menu-end {
        position: static !important;
        inset: auto !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
    }
}

/* ===== Final mobile header menu ===== */
@media (max-width: 991.98px) {
    #detailproof-header .navbar-collapse,
    .detailproof-layout #detailproof-header .navbar-collapse {
        display: none !important;
        width: 100%;
        max-height: calc(100vh - 76px);
        overflow-y: auto;
        padding: 0.75rem 0 1rem;
        margin-top: 0.75rem;
        border-top: 1px solid #E2E8F0;
        transition: none !important;
        transform: none !important;
    }

    #detailproof-header .navbar-collapse.show,
    .detailproof-layout #detailproof-header .navbar-collapse.show {
        display: block !important;
    }

    #detailproof-header .navbar-nav,
    .detailproof-layout #detailproof-header .navbar-nav {
        gap: 0;
        align-items: stretch !important;
    }

    #detailproof-header .nav-link,
    .detailproof-layout #detailproof-header .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 44px;
        padding: 0.75rem 0.25rem !important;
        border-bottom: 1px solid #F1F5F9;
    }

    #detailproof-header .dropdown-menu,
    .detailproof-layout #detailproof-header .dropdown-menu,
    #detailproof-header .dropdown:focus-within > .dropdown-menu,
    .detailproof-layout #detailproof-header .dropdown:focus-within > .dropdown-menu {
        display: none !important;
        position: static !important;
        min-width: 0;
        width: 100%;
        margin: 0.25rem 0 0.75rem !important;
        padding: 0.35rem 0 0.35rem 0.85rem;
        border: 0;
        border-left: 2px solid #0284C7;
        border-radius: 0;
        box-shadow: none !important;
        background: #F8FAFC !important;
        transform: none !important;
    }

    #detailproof-header .dropdown-menu.show,
    .detailproof-layout #detailproof-header .dropdown-menu.show,
    #detailproof-header .dropdown.is-open > .dropdown-menu,
    .detailproof-layout #detailproof-header .dropdown.is-open > .dropdown-menu {
        display: block !important;
    }

    #detailproof-header .dropdown-item,
    .detailproof-layout #detailproof-header .dropdown-item {
        padding: 0.65rem 0.75rem;
        border-radius: 8px;
        color: #334155;
    }

    #detailproof-header .dropdown-item:hover,
    .detailproof-layout #detailproof-header .dropdown-item:hover {
        padding-left: 0.75rem;
        background: #E0F2FE;
    }

    #detailproof-header .dropdown-toggle::after,
    .detailproof-layout #detailproof-header .dropdown-toggle::after {
        margin-left: 0.5rem;
        transition: transform 0.15s ease;
    }

    #detailproof-header .dropdown-toggle.show::after,
    .detailproof-layout #detailproof-header .dropdown-toggle.show::after,
    #detailproof-header .dropdown.is-open > .dropdown-toggle::after,
    .detailproof-layout #detailproof-header .dropdown.is-open > .dropdown-toggle::after {
        transform: rotate(180deg);
    }

    #detailproof-header .navbar-toggler,
    .detailproof-layout #detailproof-header .navbar-toggler {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        padding: 0;
    }

    #detailproof-header .btn-cta,
    .detailproof-layout #detailproof-header .btn-cta {
        width: 100%;
        margin-top: 0.5rem;
    }
}

.detail-hero .hero-actions-container .hero-form {
    position: relative !important;
    overflow: visible !important;
    border-radius: 999px !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.detail-hero .hero-actions-container .hero-form:hover,
.detail-hero .hero-actions-container .hero-form:focus-within {
    border-color: #0284C7 !important;
    box-shadow: 0 0 0 0.2rem rgba(2, 132, 199, 0.12), 0 6px 16px rgba(15, 23, 42, 0.08) !important;
}

.detail-hero .hero-actions-container .hero-form .form-control,
.detail-hero .hero-actions-container .hero-form .form-control:hover,
.detail-hero .hero-actions-container .hero-form .form-control:focus,
.detail-hero .hero-actions-container .hero-form .form-control:focus-visible {
    border-radius: 999px 0 0 999px !important;
    box-shadow: none !important;
    outline: none !important;
}

.detail-hero .hero-actions-container .hero-form .btn {
    border-radius: 999px !important;
    flex: 0 0 auto;
}

.detail-hero .hero-actions-container .hero-form.is-submitted {
    border-color: #10B981 !important;
    box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.16), 0 6px 16px rgba(15, 23, 42, 0.08) !important;
}

.detail-hero .hero-actions-container .hero-form.is-submitted .btn {
    background-color: #10B981 !important;
    border-color: #10B981 !important;
    color: #FFFFFF !important;
}

.detail-hero .hero-actions-container .hero-form-feedback {
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 1rem;
    color: #047857;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.2;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-3px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.detail-hero .hero-actions-container .hero-form.is-submitted .hero-form-feedback {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 575.98px) {
    .detail-hero .hero-actions-container .hero-form {
        width: min(100%, 340px);
        min-width: 0 !important;
    }

    .detail-hero .hero-actions-container .hero-form-feedback {
        left: 50%;
        transform: translate(-50%, -3px);
    }

    .detail-hero .hero-actions-container .hero-form.is-submitted .hero-form-feedback {
        transform: translate(-50%, 0);
    }
}
