:root {
    --rp-bg-main: #FAFBFC;
    --rp-bg-surface: #FFFFFF;
    --rp-mesh-gradient: radial-gradient(at 0% 0%, hsla(225, 100%, 98%, 1) 0, transparent 50%), radial-gradient(at 50% 0%, hsla(210, 100%, 96%, 1) 0, transparent 50%), radial-gradient(at 100% 0%, hsla(190, 100%, 97%, 1) 0, transparent 50%);
    --rp-text-primary: #1A1D23;
    --rp-text-secondary: #505967;
    --rp-text-muted: #8E9AAF;
    --rp-accent: #3B71CA;
    --rp-gradient-primary: linear-gradient(135deg, #6366F1 0%, #3B82F6 100%);
    --rp-glass-bg: rgba(255, 255, 255, 0.7);
    --rp-border: rgba(0, 0, 0, 0.05);
}

* {
    box-sizing: border-box;
}

body.room-priority-layout {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--rp-bg-main);
    background-image: var(--rp-mesh-gradient);
    background-attachment: fixed;
    color: var(--rp-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

.rp-glass-card {
    background: var(--rp-glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--rp-border);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.rp-btn-primary {
    background: var(--rp-gradient-primary);
    color: #fff !important;
    border-radius: 50px;
    padding: 12px 32px;
    border: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    display: inline-block;
    text-decoration: none;
}

.rp-btn-secondary {
    background: var(--rp-bg-surface);
    color: var(--rp-text-primary) !important;
    border-radius: 50px;
    padding: 12px 32px;
    border: 1px solid var(--rp-border);
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
}

@media (max-width: 768px) {
    body.room-priority-layout {
        font-size: 1rem;
    }
}

/* ===== header ===== */
.room-priority-header {
    background-color: #FFFFFF;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1050;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.02);
}

.room-priority-header .navbar {
    min-height: 70px;
}

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

.room-priority-header .brand-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: #1A1D23;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.room-priority-header .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #505967;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.room-priority-header .nav-link:hover,
.room-priority-header .nav-link:focus {
    color: #3B71CA;
}

.room-priority-header .navbar-toggler {
    color: #1A1D23;
}

.room-priority-header .dropdown-menu {
    border-radius: 12px;
    padding: 0.75rem 0;
    margin-top: 0.5rem;
    animation: dropdownFade 0.2s ease-in-out;
}

.room-priority-header .dropdown-item {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #505967;
    font-size: 0.9rem;
}

.room-priority-header .dropdown-item:hover {
    background-color: rgba(59, 113, 202, 0.05);
    color: #3B71CA;
}

@media (min-width: 992px) {
    .room-priority-header .navbar-brand.mx-auto {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }

    .room-priority-header .nav-link {
        position: relative;
    }

    .room-priority-header .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 1rem;
        right: 1rem;
        height: 3px;
        background-color: #3B71CA;
        transform: scaleX(0);
        transition: transform 0.2s ease;
    }

    .room-priority-header .nav-link:hover::after {
        transform: scaleX(1);
    }
}

@media (max-width: 991.98px) {
    .room-priority-header .navbar-collapse {
        background-color: #FFFFFF;
        padding: 1rem 0 2rem;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .room-priority-header .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.02);
    }

    .room-priority-header .dropdown-menu {
        background-color: #FAFBFC;
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* ===== hero ===== */
.hero-block {
    min-height: 100vh;
    background-color: #FAFBFC;
    position: relative;
}

.hero-block.hero-block-compact {
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.hero-block.hero-block-compact .hero-main-container {
    width: 100%;
}

.hero-block.hero-block-compact .hero-mesh-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 20, 40, 0.55) 0%, rgba(10, 20, 40, 0.7) 100%);
}

.hero-block.hero-block-compact .hero-title {
    color: #FFFFFF;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.hero-block.hero-block-compact .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.hero-block.hero-block-compact .hero-category-label {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #FFFFFF !important;
    border: 1px solid rgba(255, 255, 255, 0.45) !important;
    backdrop-filter: blur(6px);
}

.hero-mesh-overlay {
    background: radial-gradient(at 0% 0%, hsla(225, 100%, 98%, 0.9) 0, transparent 50%), radial-gradient(at 50% 0%, hsla(210, 100%, 96%, 0.8) 0, transparent 50%), radial-gradient(at 100% 0%, hsla(190, 100%, 97%, 0.9) 0, transparent 50%);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.hero-bg-video {
    opacity: 0.4;
    filter: grayscale(20%);
    z-index: 0;
}

.hero-main-container {
    z-index: 10;
}

.hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #1A1D23;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #505967;
    max-width: 500px;
    line-height: 1.6;
}

.hero-category-label {
    background: #ffffff !important;
    color: #0a2d5c !important;
    font-weight: 700 !important;
    font-size: 0.875rem !important;
    border: 1px solid #3B71CA !important;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #6366F1 0%, #3B82F6 100%);
    color: #FFFFFF !important;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-weight: 600;
    border: none;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(99, 102, 241, 0.3);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    color: #1A1D23 !important;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.2s ease;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.vector-illustration-container {
    position: relative;
    padding: 20px;
    transition: transform 0.3s ease;
}

.vector-illustration {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.05));
    max-height: 500px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.2s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: #3B71CA;
}

.stat-icon-box {
    width: 40px;
    height: 40px;
    background: #EEF2FF;
    color: #3B71CA;
    font-size: 1.25rem;
}

.stat-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1A1D23;
}

.stat-value {
    color: #3B71CA;
    font-size: 0.9rem;
    min-width: 25px;
}

.progress {
    background-color: rgba(0, 0, 0, 0.05);
}

.progress-bar {
    background: linear-gradient(90deg, #6366F1, #3B82F6);
}

@media (max-width: 991.98px) {
    .hero-block {
        padding-top: 100px;
    }

    .hero-block.hero-block-compact {
        min-height: 40vh;
        padding-top: 3rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .vector-illustration {
        max-height: 350px;
        margin: 2rem 0;
    }

    .hero-stats-stack {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ===== featured-comparison ===== */
.featured-comparison-section {
    background: radial-gradient(at 0% 0%, hsla(225, 100%, 98%, 1) 0, transparent 50%), radial-gradient(at 50% 0%, hsla(210, 100%, 96%, 1) 0, transparent 50%), #FAFBFC;
    position: relative;
    overflow: hidden;
}

.featured-comparison-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: #1A1D23;
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.featured-comparison-intro {
    color: #505967;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.featured-comparison-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.featured-comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: #3B71CA;
}

.featured-comparison-img-link {
    display: block;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
    aspect-ratio: 16 / 9;
}

.featured-comparison-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-comparison-card:hover .featured-comparison-img {
    transform: scale(1.05);
}

.featured-comparison-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.featured-comparison-icon {
    font-size: 1.5rem;
    color: #3B71CA;
}

.featured-comparison-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #1A1D23;
    font-size: 1.5rem;
}

.featured-comparison-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    color: #505967;
}

.featured-comparison-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.featured-comparison-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3B71CA;
    font-weight: bold;
}

.featured-comparison-impact {
    background: rgba(59, 113, 202, 0.05);
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #1A1D23;
    margin-bottom: 1.5rem;
}

.featured-comparison-btn {
    display: inline-block;
    text-align: center;
    background: #3B71CA;
    color: #FFFFFF !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
    margin-top: auto;
    border: none;
}

.featured-comparison-btn:hover {
    background: #2a5bb0;
}

.featured-comparison-question-box {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 3rem 2rem;
    border-radius: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.featured-comparison-question {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #1A1D23;
    font-size: 1.75rem;
}

.featured-comparison-subtext {
    color: #8E9AAF;
}

.featured-comparison-vote-btn {
    background: #FFFFFF;
    color: #1A1D23;
    border: 2px solid #E5E7EB;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.featured-comparison-vote-btn:hover {
    border-color: #3B71CA;
    color: #3B71CA;
}

.featured-comparison-vote-btn.active {
    background: #3B71CA;
    color: #FFFFFF;
    border-color: #3B71CA;
}

@media (max-width: 768px) {
    .featured-comparison-title {
        font-size: 1.75rem;
    }

    .featured-comparison-question {
        font-size: 1.25rem;
    }
}

/* ===== grid-categories ===== */
.grid-categories-section {
    background: #FAFBFC;
    background-image: radial-gradient(at 0% 0%, hsla(225, 100%, 98%, 1) 0, transparent 50%), radial-gradient(at 50% 0%, hsla(210, 100%, 96%, 1) 0, transparent 50%), radial-gradient(at 100% 0%, hsla(190, 100%, 97%, 1) 0, transparent 50%);
    position: relative;
    overflow: hidden;
}

.grid-categories-section .section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1A1D23;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.grid-categories-section .section-subtitle {
    color: #505967;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.grid-categories-section .category-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    display: flex;
    flex-direction: column;
}

.grid-categories-section .category-card:hover {
    box-shadow: 0 15px 35px rgba(59, 113, 202, 0.1);
    border-color: #3B71CA;
}

.grid-categories-section .card-img-link {
    display: block;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    height: 220px;
}

.grid-categories-section .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-categories-section .card-title-link {
    text-decoration: none;
    color: inherit;
}

.grid-categories-section .card-title-link h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #1A1D23;
    transition: color 0.2s ease;
}

.grid-categories-section .card-title-link:hover h3 {
    color: #3B71CA;
}

.grid-categories-section .card-text {
    color: #505967;
    font-size: 0.95rem;
    line-height: 1.5;
}

.grid-categories-section .btn-action {
    background: linear-gradient(135deg, #6366F1 0%, #3B82F6 100%);
    color: #FFFFFF !important;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: opacity 0.2s ease;
    border: none;
}

.grid-categories-section .btn-action:hover {
    opacity: 0.9;
}

.grid-categories-section .btn-outline-primary {
    border: 2px solid #3B71CA;
    color: #3B71CA;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all 0.2s ease;
    background: transparent;
}

.grid-categories-section .btn-outline-primary:hover {
    background: #3B71CA;
    color: #FFFFFF;
}

@media (max-width: 767.98px) {
    .grid-categories-section .section-title {
        font-size: 1.5rem;
    }

    .grid-categories-section .card-img-link {
        height: 180px;
    }
}

/* ===== grid-trade-offs ===== */
.grid-trade-offs-block {
    padding: 80px 0;
    background-color: #FAFBFC;
    background-image: radial-gradient(at 0% 0%, hsla(225, 100%, 98%, 1) 0, transparent 50%),
        radial-gradient(at 50% 0%, hsla(210, 100%, 96%, 1) 0, transparent 50%),
        radial-gradient(at 100% 0%, hsla(190, 100%, 97%, 1) 0, transparent 50%);
    position: relative;
    overflow: hidden;
}

.grid-trade-offs-block .section-title {
    color: #1A1D23;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 16px;
}

.grid-trade-offs-block .section-subtitle {
    color: #505967;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.grid-trade-offs-block .search-wrapper {
    position: relative;
    margin-bottom: 56px;
}

.grid-trade-offs-block .js-search-input {
    width: 100%;
    padding: 16px 24px 16px 52px;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #FFFFFF;
    color: #1A1D23;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    outline: none;
    transition: border-color 0.2s ease;
}

.grid-trade-offs-block .js-search-input:focus {
    border-color: #3B71CA;
}

.grid-trade-offs-block .js-search-input::placeholder {
    color: #8E9AAF;
    opacity: 1;
}

.grid-trade-offs-block .search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #8E9AAF;
    font-size: 1.25rem;
}

.grid-trade-offs-block .trade-off-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background-image: radial-gradient(circle at top left, rgba(99, 102, 241, 0.05), transparent);
}

.grid-trade-offs-block .trade-off-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.grid-trade-offs-block .card-img-link {
    display: block;
    height: 200px;
    overflow: hidden;
}

.grid-trade-offs-block .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-trade-offs-block .card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.grid-trade-offs-block .card-title {
    margin-bottom: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.3;
}

.grid-trade-offs-block .card-title a {
    color: #1A1D23;
    text-decoration: none;
}

.grid-trade-offs-block .card-title a:hover {
    color: #3B71CA;
}

.grid-trade-offs-block .card-text {
    color: #505967;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.grid-trade-offs-block .btn-trade-off {
    color: #3B71CA;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.grid-trade-offs-block .btn-trade-off:hover {
    gap: 10px;
}

.grid-trade-offs-block .btn-view-all {
    background: linear-gradient(135deg, #6366F1 0%, #3B82F6 100%);
    color: #FFFFFF;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(59, 113, 202, 0.3);
    transition: box-shadow 0.2s ease;
}

.grid-trade-offs-block .btn-view-all:hover {
    box-shadow: 0 6px 20px rgba(59, 113, 202, 0.4);
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .grid-trade-offs-block {
        padding: 56px 0;
    }

    .grid-trade-offs-block .section-title {
        font-size: 1.75rem;
    }

    .grid-trade-offs-block .section-subtitle {
        font-size: 1rem;
    }
}

/* ===== short-form ===== */
.short-form-section {
    background: radial-gradient(at 0% 0%, hsla(225, 100%, 98%, 1) 0, transparent 50%), radial-gradient(at 50% 0%, hsla(210, 100%, 96%, 1) 0, transparent 50%), radial-gradient(at 100% 0%, hsla(190, 100%, 97%, 1) 0, transparent 50%);
    position: relative;
    overflow: hidden;
}

.short-form-section .form-container {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.short-form-section h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1A1D23;
    font-weight: 800;
}

.short-form-section p.lead {
    font-family: 'Inter', sans-serif;
    color: #505967;
    font-size: 1.1rem;
    line-height: 1.6;
}

.short-form-section .form-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #1A1D23;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.short-form-section .form-control,
.short-form-section .form-select {
    background-color: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    color: #1A1D23;
    font-family: 'Inter', sans-serif;
    padding: 0.8rem 1.2rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.short-form-section .form-control:focus,
.short-form-section .form-select:focus {
    border-color: #3B71CA;
    box-shadow: 0 0 0 4px rgba(59, 113, 202, 0.1);
    outline: none;
}

.short-form-section .form-control::placeholder {
    color: #8E9AAF;
    opacity: 1;
}

.short-form-section .btn-primary {
    background: linear-gradient(135deg, #6366F1 0%, #3B82F6 100%);
    border: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.short-form-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, #5558e6 0%, #2b72e9 100%);
}

.short-form-section .info-text {
    font-size: 0.9rem;
    color: #8E9AAF;
    line-height: 1.5;
}

@media (max-width: 767.98px) {
    .short-form-section h2 {
        font-size: 1.5rem;
    }

    .short-form-section .form-container {
        padding: 1.5rem;
    }

    .short-form-section .btn-primary {
        width: 100%;
    }
}

/* ===== calculator ===== */
.calculator-section {
    background: radial-gradient(at 0% 0%, hsla(225, 100%, 98%, 1) 0, transparent 50%), radial-gradient(at 50% 0%, hsla(210, 100%, 96%, 1) 0, transparent 50%), radial-gradient(at 100% 0%, hsla(190, 100%, 97%, 1) 0, transparent 50%);
    position: relative;
    overflow: hidden;
}

.calculator-section .calculator-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-color: rgba(0, 0, 0, 0.05) !important;
}

.calculator-section .form-control,
.calculator-section .form-select {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background-color: #ffffff;
    transition: border-color 0.2s ease;
}

.calculator-section .form-control:focus,
.calculator-section .form-select:focus {
    border-color: #3B71CA;
    box-shadow: 0 0 0 0.25rem rgba(59, 113, 202, 0.1);
}

.calculator-section .results-dashboard {
    background: radial-gradient(circle at top left, rgba(99, 102, 241, 0.05), transparent);
}

.calculator-section .btn-primary {
    background: linear-gradient(135deg, #6366F1 0%, #3B82F6 100%);
    border: none;
    color: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.calculator-section .btn-primary:hover {
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    opacity: 0.95;
}

.calculator-section .text-primary-light-bg {
    color: #1A1D23;
}

.calculator-section .text-secondary-light-bg {
    color: #505967;
}

.calculator-section .text-muted-light-bg {
    color: #8E9AAF;
}

@media (max-width: 767.98px) {
    .calculator-section .h2 {
        font-size: 1.5rem;
    }

    .calculator-section .calculator-card {
        padding: 1.5rem !important;
    }
}

/* ===== stages ===== */
.stages-index {
    background: radial-gradient(at 0% 0%, hsla(225, 100%, 98%, 1) 0, transparent 50%), radial-gradient(at 50% 0%, hsla(210, 100%, 96%, 1) 0, transparent 50%), radial-gradient(at 100% 0%, hsla(190, 100%, 97%, 1) 0, transparent 50%), #FAFBFC;
    position: relative;
    overflow: hidden;
}

.stages-index .stage-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.stages-index .stage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.stages-index .stage-icon-wrapper {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at top left, rgba(99, 102, 241, 0.1), transparent);
    border: 1px solid rgba(59, 113, 202, 0.1);
}

.stages-index .stage-number {
    font-size: 0.75rem;
    letter-spacing: 0.1rem;
    color: #3B71CA;
}

.stages-index h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1A1D23 !important;
}

.stages-index h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1A1D23 !important;
    line-height: 1.3;
}

.stages-index .text-secondary {
    color: #505967 !important;
    line-height: 1.6;
}

.stages-index .btn-primary {
    background: linear-gradient(135deg, #6366F1 0%, #3B82F6 100%);
    border: none;
    transition: opacity 0.2s ease;
}

.stages-index .btn-primary:hover {
    opacity: 0.9;
    transform: none;
    box-shadow: 0 8px 20px rgba(59, 113, 202, 0.3);
}

@media (max-width: 768px) {
    .stages-index h2 {
        font-size: 1.75rem;
    }

    .stages-index .stage-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .stages-index .stage-icon-wrapper i {
        font-size: 1.5rem !important;
    }
}

/* ===== footer ===== */
.rp-footer {
    background: #FAFBFC;
    background-image: radial-gradient(at 0% 0%, hsla(225, 100%, 98%, 1) 0, transparent 50%), radial-gradient(at 50% 0%, hsla(210, 100%, 96%, 1) 0, transparent 50%), radial-gradient(at 100% 0%, hsla(190, 100%, 97%, 1) 0, transparent 50%);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.rp-footer h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #1A1D23;
}

.rp-footer p,
.rp-footer a,
.rp-footer span {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.rp-footer-logo {
    max-width: 50px;
    height: auto;
    object-fit: contain;
}

.rp-footer-disclaimer-box {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 113, 202, 0.15) !important;
}

.rp-footer-link {
    color: #505967;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.rp-footer-link:hover {
    color: #3B71CA;
}

.rp-footer .border-top {
    border-color: rgba(0, 0, 0, 0.05) !important;
}

@media (max-width: 767.98px) {
    .rp-footer h5 {
        font-size: 1rem;
    }

    .rp-footer-link {
        font-size: 0.875rem;
    }
}

/* ===== PAGE: priority-index ===== */
.priority-index-header {
  background: radial-gradient(at 0% 0%, hsla(225, 100%, 98%, 1) 0, transparent 50%), radial-gradient(at 50% 0%, hsla(210, 100%, 96%, 1) 0, transparent 50%), radial-gradient(at 100% 0%, hsla(190, 100%, 97%, 1) 0, transparent 50%);
  position: relative;
  overflow: hidden;
}

.priority-index-header h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #1A1D23;
}

.priority-index-grid .priority-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.priority-index-grid .priority-card:hover {
  box-shadow: 0 1rem 3rem rgba(0,0,0,0.1) !important;
  border-color: rgba(59, 113, 202, 0.2) !important;
}

.priority-index-grid .card-img-top {
  transition: transform 0.4s ease;
}

.priority-index-grid .priority-card:hover .card-img-top {
  transform: scale(1.05);
}

.priority-index-grid a {
  text-decoration: none;
}

.priority-index-grid .js-item-title:hover {
  color: #3B71CA !important;
}

.priority-index-grid .input-group {
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.priority-index-grid .form-control:focus {
  box-shadow: none;
  background: #fff;
}

.priority-index-grid .btn-outline-primary {
  border-width: 2px;
  transition: all 0.2s ease;
}

.priority-index-grid .btn-outline-primary:hover {
  background-color: #3B71CA;
  border-color: #3B71CA;
  color: #fff;
}

/* ===== PAGE: layout-trade-offs ===== */
.layout-trade-offs-section {
  background: radial-gradient(at 0% 0%, hsla(225, 100%, 98%, 1) 0, transparent 50%), radial-gradient(at 50% 0%, hsla(210, 100%, 96%, 1) 0, transparent 50%), radial-gradient(at 100% 0%, hsla(190, 100%, 97%, 1) 0, transparent 50%);
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  color: #1A1D23;
}

.layout-trade-offs-section .category-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #3B71CA;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.layout-trade-offs-section .category-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
  color: #1A1D23;
}

.layout-trade-offs-section .category-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #505967;
}

.layout-trade-offs-section .search-filter-container {
  max-width: 500px;
}

.layout-trade-offs-section .search-filter-container .input-group {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 50px;
  overflow: hidden;
}

.layout-trade-offs-section .search-filter-container .form-control {
  padding: 1rem 1.5rem;
  font-size: 1rem;
  border: 1px solid rgba(0,0,0,0.05);
}

.layout-trade-offs-section .search-filter-container .input-group-text {
  padding-left: 1.5rem;
  color: #3B71CA;
  border: 1px solid rgba(0,0,0,0.05);
}

.layout-trade-offs-section .conflict-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.layout-trade-offs-section .conflict-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: #3B71CA;
}

.layout-trade-offs-section .card-img-link {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.layout-trade-offs-section .card-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.layout-trade-offs-section .conflict-card:hover .card-img-top {
  transform: scale(1.05);
}

.layout-trade-offs-section .card-body {
  padding: 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.layout-trade-offs-section .card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.layout-trade-offs-section .card-title a {
  color: #1A1D23;
  transition: color 0.3s ease;
}

.layout-trade-offs-section .card-title a:hover {
  color: #3B71CA;
}

.layout-trade-offs-section .card-text {
  color: #505967;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.layout-trade-offs-section .btn-primary {
  background: linear-gradient(135deg, #6366F1 0%, #3B82F6 100%);
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  align-self: flex-start;
}

.layout-trade-offs-section .btn-primary:hover {
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
  opacity: 0.95;
}

@media (max-width: 767.98px) {
  .layout-trade-offs-section .category-title {
    font-size: 1.75rem;
  }
  .layout-trade-offs-section .category-subtitle {
    font-size: 1rem;
  }
  .layout-trade-offs-section .card-body {
    padding: 1.25rem;
  }
}

/* ===== PAGE: comparison-examples ===== */
.comparison-examples-page {
  --accent-blue: #3B71CA;
  --accent-alpha: rgba(59, 113, 202, 0.08);
  --surface-blur: rgba(255, 255, 255, 0.8);
  --border-subtle: rgba(0, 0, 0, 0.05);
  background: #FAFBFC;
}

.comparison-examples-page .category-header-section {
  background: radial-gradient(at 0% 0%, hsla(225, 100%, 98%, 1) 0, transparent 50%), 
              radial-gradient(at 50% 0%, hsla(210, 100%, 96%, 1) 0, transparent 50%), 
              radial-gradient(at 100% 0%, hsla(190, 100%, 97%, 1) 0, transparent 50%);
  position: relative;
  z-index: 1;
}

.comparison-examples-page .search-wrapper .search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #8E9AAF;
  pointer-events: none;
}

.comparison-examples-page .js-search-input {
  padding-left: 45px;
  height: 50px;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  color: #1A1D23;
}

.comparison-examples-page .js-search-input::placeholder {
  color: #8E9AAF;
}

.comparison-examples-page .js-search-input:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px var(--accent-alpha);
}

.comparison-examples-page .btn-filter {
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid var(--border-subtle);
  background: #FFFFFF;
  color: #505967;
  font-weight: 500;
  margin-left: 8px;
  transition: all 0.2s ease;
}

.comparison-examples-page .btn-filter:first-child {
  margin-left: 0;
}

.comparison-examples-page .btn-filter.active {
  background: var(--accent-blue);
  color: #FFFFFF;
  border-color: var(--accent-blue);
}

.comparison-examples-page .solution-card-inner {
  background: var(--surface-blur);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.comparison-examples-page .solution-card-inner:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.comparison-examples-page .card-img-top {
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.comparison-examples-page .solution-card-inner:hover .card-img-top {
  transform: scale(1.05);
}

.comparison-examples-page .btn-view-solution {
  background: #1A1D23;
  color: #FFFFFF;
  border-radius: 10px;
  padding: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: background 0.2s ease;
}

.comparison-examples-page .btn-view-solution:hover {
  background: #3B71CA;
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .comparison-examples-page .display-4 {
    font-size: 2rem;
  }
  .comparison-examples-page .btn-filter {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  .comparison-examples-page .filter-tabs {
    width: 100%;
    overflow-x: auto;
    display: flex;
    padding-bottom: 5px;
  }
  .comparison-examples-page .btn-filter {
    white-space: nowrap;
  }
}

/* ===== PAGE: guides ===== */
.guides-section {
  background-color: #FAFBFC;
  min-height: 80vh;
  font-family: 'Inter', sans-serif;
}

.guides-section .guides-header-wrapper {
  background: radial-gradient(at 0% 0%, hsla(225, 100%, 98%, 1) 0, transparent 50%), 
              radial-gradient(at 50% 0%, hsla(210, 100%, 96%, 1) 0, transparent 50%), 
              radial-gradient(at 100% 0%, hsla(190, 100%, 97%, 1) 0, transparent 50%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.guides-section .guides-main-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #1A1D23;
  letter-spacing: -0.02em;
}

.guides-section .guides-search-container {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.guides-section .guides-search-container input:focus {
  box-shadow: none;
  outline: none;
}

.guides-section .guides-card {
  transition: all 0.3s ease;
  background: #FFFFFF;
  border-radius: 16px;
}

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

.guides-section .guides-img {
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.guides-section .guides-card:hover .guides-img {
  transform: scale(1.05);
}

.guides-section .card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.3;
  color: #1A1D23;
}

.guides-section .btn-primary {
  background: linear-gradient(135deg, #6366F1 0%, #3B82F6 100%);
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(99, 102, 241, 0.2);
}

.guides-section .btn-primary:hover {
  background: linear-gradient(135deg, #4F46E5 0%, #2563EB 100%);
  box-shadow: 0 6px 15px rgba(99, 102, 241, 0.3);
}

@media (max-width: 768px) {
  .guides-section .guides-main-title {
    font-size: 2.25rem;
  }
  .guides-section .guides-header-wrapper {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

/* ===== PAGE: room-types ===== */
.room-types-page { background: radial-gradient(at 0% 0%, hsla(225, 100%, 98%, 1) 0, transparent 50%), radial-gradient(at 50% 0%, hsla(210, 100%, 96%, 1) 0, transparent 50%), radial-gradient(at 100% 0%, hsla(190, 100%, 97%, 1) 0, transparent 50%); min-height: 80vh; }.room-types-page .category-header-block { padding-top: 80px; padding-bottom: 60px; }.room-types-page .room-card { transition: transform 0.2s ease, box-shadow 0.2s ease; border: 1px solid rgba(0,0,0,0.05) !important; background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(10px); }.room-types-page .room-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important; }.room-types-page .room-card-img { height: 200px; object-fit: cover; transition: transform 0.3s ease; }.room-types-page .room-card:hover .room-card-img { transform: scale(1.05); }.room-types-page .btn-primary { background: linear-gradient(135deg, #6366F1 0%, #3B82F6 100%); border: none; box-shadow: 0 4px 15px rgba(59, 113, 202, 0.2); }.room-types-page .btn-primary:hover { opacity: 0.9; box-shadow: 0 6px 20px rgba(59, 113, 202, 0.3); }.room-types-page .search-wrapper input:focus { box-shadow: 0 0 0 0.25rem rgba(59, 113, 202, 0.1); border-color: #3B71CA; outline: none; }.room-types-page .search-wrapper i { font-size: 1.2rem; color: #8E9AAF; }@media (max-width: 768px) { .room-types-page .display-4 { font-size: 1.75rem !important; } .room-types-page .lead { font-size: 1rem !important; } .room-types-page .category-header-block { padding-top: 40px; padding-bottom: 30px; } }

/* ===== PAGE: review-questions ===== */
.review-questions-section {
  background: radial-gradient(at 0% 0%, hsla(225, 100%, 98%, 1) 0, transparent 50%), radial-gradient(at 50% 0%, hsla(210, 100%, 96%, 1) 0, transparent 50%), radial-gradient(at 100% 0%, hsla(190, 100%, 97%, 1) 0, transparent 50%);
  min-height: 600px;
}

.review-questions-section .category-header-badge {
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  text-transform: uppercase;
}

.review-questions-section .audit-controls-container {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-color: rgba(0, 0, 0, 0.05) !important;
}

.review-questions-section .search-box .form-control {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  background-color: #ffffff;
  border-color: #e0e4e9;
}

.review-questions-section .search-box .form-control:focus {
  border-color: #3B71CA;
  box-shadow: none;
}

.review-questions-section .filter-chip {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.review-questions-section .question-item {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  background: #ffffff;
}

.review-questions-section .question-item .icon-box {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 113, 202, 0.05);
  border-radius: 12px;
}

.review-questions-section .question-item ul li span {
  font-size: 0.95rem;
  line-height: 1.5;
}

.review-questions-section .question-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}

@media (max-width: 767.98px) {
  .review-questions-section .js-filter-group {
    justify-content: center !important;
  }
}

/* ===== PAGE: decision-vocabulary ===== */
.decision-vocabulary-section {
  background: radial-gradient(at 0% 0%, hsla(225, 100%, 98%, 1) 0, transparent 50%), 
              radial-gradient(at 50% 0%, hsla(210, 100%, 96%, 1) 0, transparent 50%), 
              radial-gradient(at 100% 0%, hsla(190, 100%, 97%, 1) 0, transparent 50%);
  min-height: 80vh;
}

.decision-vocabulary-section .search-filter-container {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.8) !important;
}

.decision-vocabulary-section .vocabulary-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.decision-vocabulary-section .vocabulary-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}

.decision-vocabulary-section .icon-box {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.decision-vocabulary-section .bg-light-blue { background-color: #e0f2fe; color: #0369a1; }
.decision-vocabulary-section .bg-light-purple { background-color: #f3e8ff; color: #7e22ce; }
.decision-vocabulary-section .bg-light-teal { background-color: #f0fdf4; color: #15803d; }
.decision-vocabulary-section .bg-light-orange { background-color: #fff7ed; color: #c2410c; }
.decision-vocabulary-section .bg-light-red { background-color: #fef2f2; color: #b91c1c; }
.decision-vocabulary-section .bg-light-yellow { background-color: #fefce8; color: #a16207; }
.decision-vocabulary-section .bg-primary-soft { background-color: #eff6ff; color: #1d4ed8; }
.decision-vocabulary-section .bg-light-indigo { background-color: #eef2ff; color: #4338ca; }
.decision-vocabulary-section .bg-light-pink { background-color: #fdf2f8; color: #be185d; }

.decision-vocabulary-section .js-alpha-btn.active {
  background-color: #3B71CA !important;
  color: #fff !important;
  border-color: #3B71CA !important;
}

.decision-vocabulary-section .form-control:focus {
  box-shadow: none;
  border-color: #3B71CA;
}

.decision-vocabulary-section .input-group-text {
  border-color: #dee2e6;
}

/* ===== PAGE: about ===== */
.about-methodology {
  background: radial-gradient(at 0% 0%, hsla(225, 100%, 98%, 1) 0, transparent 50%), radial-gradient(at 50% 0%, hsla(210, 100%, 96%, 1) 0, transparent 50%), radial-gradient(at 100% 0%, hsla(190, 100%, 97%, 1) 0, transparent 50%);
  font-family: 'Inter', sans-serif;
  color: #1A1D23;
}

.about-methodology h1, .about-methodology h2, .about-methodology h3, .about-methodology h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #1A1D23;
}

.about-methodology .badge {
  background: rgba(59, 113, 202, 0.1);
  color: #3B71CA;
  font-weight: 700;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
}

.about-methodology .method-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-methodology .method-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-methodology .icon-wrapper {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #6366F1 0%, #3B82F6 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.5rem;
}

.about-methodology .interactive-tabs-container {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(20px);
}

.about-methodology .btn-pill {
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  background: #FFFFFF;
  color: #505967;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: none;
}

.about-methodology .btn-pill.active {
  background: #1A1D23;
  color: #FFFFFF;
  border-color: #1A1D23;
}

.about-methodology .tab-pane-custom {
  animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 767px) {
  .about-methodology h1 { font-size: 1.5rem; }
  .about-methodology h2 { font-size: 1.25rem; }
  .about-methodology .interactive-tabs-container { padding: 1.5rem !important; }
}

/* ===== PAGE: contact ===== */
.contact-section {
  background: radial-gradient(at 0% 0%, hsla(225, 100%, 98%, 1) 0, transparent 50%), radial-gradient(at 50% 0%, hsla(210, 100%, 96%, 1) 0, transparent 50%), radial-gradient(at 100% 0%, hsla(190, 100%, 97%, 1) 0, transparent 50%);
  position: relative;
  overflow: hidden;
}

.contact-section .contact-info-card,
.contact-section .contact-form-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.contact-section .contact-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: #1A1D23;
  line-height: 1.2;
}

.contact-section .contact-desc {
  color: #505967;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-section .icon-box {
  width: 48px;
  height: 48px;
  background: #3B71CA;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.5rem;
}

.contact-section .text-primary-light {
  color: #1A1D23;
  font-weight: 600;
}

.contact-section .text-secondary-light {
  color: #505967;
  text-decoration: none;
}

.contact-section .btn-whatsapp {
  background-color: #25D366;
  color: #FFFFFF;
  border-radius: 50px;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.contact-section .btn-whatsapp:hover {
  background-color: #20BA5A;
  color: #FFFFFF;
  opacity: 0.9;
}

.contact-section .pill-btn {
  border-radius: 50px;
  background: linear-gradient(135deg, #6366F1 0%, #3B82F6 100%);
  border: none;
  box-shadow: 0 4px 15px rgba(59, 113, 202, 0.3);
  font-weight: 600;
  transition: transform 0.2s ease;
}

.contact-section .pill-btn:hover {
  box-shadow: 0 6px 20px rgba(59, 113, 202, 0.4);
}

.contact-section .form-outline .form-control {
  background: #FFFFFF !important;
  border-radius: 12px;
}

.contact-section .form-outline .form-label {
  color: #8E9AAF;
}

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

/* ===== PAGE: privacy ===== */
.privacy-policy-section {
  background: radial-gradient(at 0% 0%, hsla(225, 100%, 98%, 1) 0, transparent 50%), radial-gradient(at 50% 0%, hsla(210, 100%, 96%, 1) 0, transparent 50%), radial-gradient(at 100% 0%, hsla(190, 100%, 97%, 1) 0, transparent 50%);
  min-height: 80vh;
}

.privacy-policy-section .privacy-content-wrapper {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.privacy-policy-section h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #1A1D23;
  font-weight: 800;
}

.privacy-policy-section h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #1A1D23;
  font-weight: 700;
  margin-top: 2rem;
}

.privacy-policy-section p {
  font-family: 'Inter', sans-serif;
  color: #505967;
  line-height: 1.7;
  font-size: 1.1rem;
}

.privacy-policy-section .badge {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.privacy-policy-section .policy-section i {
  font-size: 1.5rem;
}

.privacy-policy-section ul li {
  color: #505967;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
}

@media (max-width: 767px) {
  .privacy-policy-section h1 {
    font-size: 1.75rem;
  }
  .privacy-policy-section h2 {
    font-size: 1.35rem;
  }
  .privacy-policy-section p {
    font-size: 1rem;
  }
  .privacy-policy-section .privacy-content-wrapper {
    padding: 1.5rem !important;
  }
}

/* ===== PAGE: terms ===== */
.terms-section { background: radial-gradient(at 0% 0%, hsla(225, 100%, 98%, 1) 0, transparent 50%), radial-gradient(at 50% 0%, hsla(210, 100%, 96%, 1) 0, transparent 50%), radial-gradient(at 100% 0%, hsla(190, 100%, 97%, 1) 0, transparent 50%); min-height: 100vh; font-family: 'Inter', sans-serif; }.terms-section .terms-card { background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(10px); border: 1px solid rgba(0, 0, 0, 0.05); border-radius: 24px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03); }.terms-section h1, .terms-section h2, .terms-section h3 { font-family: 'Plus Jakarta Sans', sans-serif; }.terms-section .terms-divider { width: 60px; height: 4px; background: linear-gradient(135deg, #6366F1 0%, #3B82F6 100%); border-radius: 2px; margin-top: 1.5rem; }.terms-section .text-secondary { color: #505967 !important; line-height: 1.7; }.terms-section .badge.bg-primary { background: linear-gradient(135deg, #6366F1 0%, #3B82F6 100%) !important; font-weight: 600; letter-spacing: 0.5px; }.terms-section .ph-bold { font-size: 1.5rem; vertical-align: middle; }@media (max-width: 768px) { .terms-section .display-5 { font-size: 1.8rem; } .terms-section .h3 { font-size: 1.3rem; } .terms-section .terms-card { padding: 1.5rem !important; } }

/* ===== PAGE: disclaimer ===== */
.disclaimer-section {
  background: radial-gradient(at 0% 0%, hsla(225, 100%, 98%, 1) 0, transparent 50%), radial-gradient(at 50% 0%, hsla(210, 100%, 96%, 1) 0, transparent 50%), radial-gradient(at 100% 0%, hsla(190, 100%, 97%, 1) 0, transparent 50%);
  min-height: 80vh;
  font-family: 'Inter', sans-serif;
}

.disclaimer-section .text-primary-dark {
  color: #1A1D23;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.disclaimer-section .text-secondary-dark {
  color: #505967;
  line-height: 1.7;
}

.disclaimer-section .text-accent {
  color: #3B71CA;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.disclaimer-section .disclaimer-card {
  background-color: #FFFFFF !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  backdrop-filter: blur(10px);
}

.disclaimer-section h1 {
  font-size: 2.75rem;
  line-height: 1.2;
}

.disclaimer-section h2 {
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.disclaimer-section .lead {
  font-size: 1.15rem;
  font-weight: 400;
}

@media (max-width: 768px) {
  .disclaimer-section h1 {
    font-size: 1.75rem;
  }
  .disclaimer-section h2 {
    font-size: 1.15rem;
  }
  .disclaimer-section .lead {
    font-size: 1rem;
  }
  .disclaimer-section .disclaimer-card {
    padding: 1.5rem !important;
  }
}

.comment-container.main-comment-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    box-shadow: 0 10px 30px -10px rgba(59, 113, 202, 0.08);
    position: relative;
    overflow: hidden;
}

.comment-container.main-comment-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #6366F1 0%, #3B82F6 100%);
}

.avatar-initials {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    letter-spacing: -0.5px;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #6366F1 0%, #3B82F6 100%);
}

.comment-author-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #1A1D23;
    font-size: 1.1rem;
}

.comment-timestamp {
    font-size: 0.85rem;
    color: #8E9AAF;
    font-family: 'Inter', sans-serif;
}

.comment-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #505967;
}

.btn-action {
    background: transparent;
    border: none;
    color: #8E9AAF;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0;
    cursor: pointer;
    transition: color 0.2s ease;
}

.btn-action:hover {
    color: #3B71CA;
}

.btn-action i {
    font-size: 1.2rem;
}

.reply-wrapper {
    border-left: 2px solid rgba(59, 113, 202, 0.1) !important;
}

.reply-comment-item {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 16px;
}

.avatar-initials-sm {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
}

.bg-light-accent {
    background: rgba(59, 113, 202, 0.1);
}

.text-accent {
    color: #3B71CA;
}

.comment-text-sm {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #505967;
}

.reply-comment-item .comment-author-name {
    font-size: 1rem;
}

.reply-comment-item .btn-action i {
    font-size: 1rem;
}


/* ===== PAGE TEMPLATE: priority-index ===== */
.detail-content-wrapper {
    background-color: #FAFBFC;
    background-image: radial-gradient(at 0% 0%, hsla(225, 100%, 98%, 1) 0, transparent 50%), radial-gradient(at 50% 0%, hsla(210, 100%, 96%, 1) 0, transparent 50%), radial-gradient(at 100% 0%, hsla(190, 100%, 97%, 1) 0, transparent 50%);
}

.detail-content-wrapper .detail-main-card,
.detail-content-wrapper .sidebar-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.detail-content-wrapper .detail-sub-card {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.3s ease;
}

.detail-content-wrapper .detail-sub-card:hover {
    background: rgba(255, 255, 255, 0.9);
}

.detail-content-wrapper h3,
.detail-content-wrapper h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #1A1D23;
}

.detail-content-wrapper .detail-text p {
    line-height: 1.8;
    font-size: 1.15rem;
    color: #505967;
}

.detail-content-wrapper .nav-pills .nav-link {
    background: rgba(0, 0, 0, 0.05);
    color: #505967;
    font-weight: 500;
    transition: all 0.3s ease;
}

.detail-content-wrapper .nav-pills .nav-link.active {
    background: linear-gradient(135deg, #6366F1 0%, #3B82F6 100%);
    color: #FFFFFF;
}

.detail-content-wrapper .accordion-button {
    font-weight: 600;
    color: #1A1D23;
    background: transparent;
    padding-left: 0;
    padding-right: 0;
}

.detail-content-wrapper .accordion-button:not(.collapsed) {
    color: #3B71CA;
    box-shadow: none;
}

.detail-content-wrapper .accordion-item {
    background: transparent;
}

.detail-content-wrapper .breadcrumb-item+.breadcrumb-item::before {
    color: #8E9AAF;
}

@media (max-width: 768px) {
    .detail-content-wrapper .detail-text p {
        font-size: 1rem;
    }

    .detail-content-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* ===== PAGE TEMPLATE: layout-trade-offs ===== */
.tradeoff-hero {
    background: radial-gradient(at 0% 0%, hsla(225, 100%, 98%, 1) 0, transparent 50%), radial-gradient(at 100% 0%, hsla(190, 100%, 97%, 1) 0, transparent 50%), linear-gradient(135deg, #6366F1 0%, #3B82F6 100%);
    min-height: 320px;
    display: flex;
    align-items: center;
}

.tradeoff-main-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tradeoff-rich-text h2,
.tradeoff-rich-text h3 {
    color: #1A1D23;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    margin-top: 2rem;
}

.tradeoff-rich-text p {
    color: #505967;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.comparison-item {
    background: rgba(59, 113, 202, 0.03);
    border: 1px solid rgba(59, 113, 202, 0.1);
    transition: transform 0.2s ease;
}

.comparison-item:hover {
    transform: translateY(-5px);
    border-color: #3B71CA;
}

.tradeoff-recommendation {
    border-left: 5px solid #198754;
}

.sidebar-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.impact-stat .progress-bar {
    background: linear-gradient(90deg, #6366F1, #3B82F6);
}

.tradeoff-links-list a {
    color: #505967;
    font-weight: 500;
    transition: all 0.2s ease;
}

.tradeoff-links-list a:hover {
    color: #3B71CA;
    transform: translateX(5px);
}

.cta-card {
    background: linear-gradient(135deg, #1A1D23 0%, #2D333D 100%);
}

.cta-card h2 {
    color: #FFFFFF !important;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.cta-card .btn-white {
    background: #3B82F6;
    color: #FFFFFF !important;
}

.cta-card .btn-white:hover,
.cta-card .btn-white:focus,
.cta-card .btn-white:active {
    background: #2563EB;
    color: #FFFFFF !important;
}

.btn-white {
    background: #FFFFFF;
    color: #1A1D23 !important;
}

.btn-white:hover {
    background: #f8f9fa;
}

.rp-footer {
    background: #FAFBFC;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.room-priority-header .navbar-brand .brand-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: #1A1D23;
    font-size: 1.25rem;
}

.room-priority-header .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #505967;
    transition: color 0.2s ease;
}

.room-priority-header .nav-link:hover {
    color: #3B71CA;
}

/* ===== PAGE TEMPLATE: comparison-examples ===== */
.rp-detail-page {
    background: radial-gradient(at 0% 0%, hsla(225, 100%, 98%, 1) 0, transparent 50%), radial-gradient(at 50% 0%, hsla(210, 100%, 96%, 1) 0, transparent 50%), radial-gradient(at 100% 0%, hsla(190, 100%, 97%, 1) 0, transparent 50%);
    font-family: 'Inter', sans-serif;
}

.rp-detail-page h1,
.rp-detail-page h2,
.rp-detail-page h3,
.rp-detail-page h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1A1D23;
}

.rp-detail-page .hero-block {
    min-height: 50vh;
    display: flex;
    align-items: center;
    background-color: #FAFBFC;
    position: relative;
}

.rp-detail-page .hero-main-container {
    width: 100%;
}

.rp-detail-page .hero-main-container .row {
    min-height: auto !important;
}

.rp-detail-page .hero-mesh-overlay {
    background: radial-gradient(at 0% 0%, hsla(225, 100%, 98%, 0.9) 0, transparent 50%), radial-gradient(at 50% 0%, hsla(210, 100%, 96%, 0.8) 0, transparent 50%);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.rp-detail-page .hero-bg-video {
    opacity: 0.3;
    filter: grayscale(30%);
    z-index: 0;
}

.rp-detail-page .hero-title {
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: -0.02em;
}

.rp-detail-page .hero-btn-primary {
    background: linear-gradient(135deg, #6366F1 0%, #3B82F6 100%);
    color: #FFFFFF !important;
    border-radius: 50px;
    padding: 0.8rem 2rem;
    border: none;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
}

.rp-detail-page .hero-btn-secondary {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    color: #1A1D23 !important;
    border-radius: 50px;
    padding: 0.8rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.rp-detail-page .stat-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.rp-detail-page .progress-bar {
    background: linear-gradient(90deg, #6366F1, #3B82F6);
}

.rp-detail-page .nav-tabs .nav-link {
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: #505967;
    font-weight: 600;
    transition: all 0.2s;
    background: #fff;
}

.rp-detail-page .nav-tabs .nav-link.active {
    background: #3B71CA;
    color: #fff;
    border-color: #3B71CA;
}

.rp-detail-page ::placeholder {
    color: #8E9AAF;
    opacity: 1;
    font-size: 0.9rem;
}

.rp-detail-page .related-card {
    transition: transform 0.2s, box-shadow 0.2s;
}

.rp-detail-page .related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: #3B71CA !important;
}

@media (max-width: 767.98px) {
    .rp-detail-page h1 {
        font-size: 18px !important;
    }

    .rp-detail-page h2 {
        font-size: 16px !important;
    }

    .rp-detail-page h3 {
        font-size: 14px !important;
    }

    .rp-detail-page .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .rp-detail-page .hero-actions .btn {
        width: 100%;
    }

    .rp-detail-page .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.room-priority-header {
    background-color: #FFFFFF;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1050;
}

.room-priority-header .brand-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: #1A1D23;
    font-size: 1.25rem;
}

.room-priority-header .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #505967;
}

.rp-footer {
    background: #FAFBFC;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.rp-footer-link {
    color: #505967;
    text-decoration: none;
    transition: color 0.2s;
}

.rp-footer-link:hover {
    color: #3B71CA;
}

/* ===== PAGE TEMPLATE: guides ===== */
.guide-detail-page {
    background-color: #FAFBFC;
    background-image: radial-gradient(at 0% 0%, hsla(225, 100%, 98%, 1) 0, transparent 50%), radial-gradient(at 50% 0%, hsla(210, 100%, 96%, 1) 0, transparent 50%), radial-gradient(at 100% 0%, hsla(190, 100%, 97%, 1) 0, transparent 50%);
}

.hero-detail {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.hero-detail .hero-image-container {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-detail .breadcrumb-item a {
    color: #8E9AAF;
    text-decoration: none;
    font-size: 0.9rem;
}

.hero-detail .breadcrumb-item.active {
    font-size: 0.9rem;
}

.hero-detail h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1A1D23;
    line-height: 1.2;
}

.guide-body-wrapper {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.guide-text-content h3 {
    color: #1A1D23;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-top: 2rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.guide-text-content p {
    color: #505967;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.guide-text-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.guide-text-content ul li {
    position: relative;
    padding-left: 1.5rem;
    color: #505967;
    margin-bottom: 0.75rem;
}

.guide-text-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3B71CA;
    font-weight: bold;
}

.calculator-container {
    background: #EEF2FF;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.calculator-container h4 {
    color: #1A1D23;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.calculator-container .form-control {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
}

.calculator-container .form-control:focus {
    border-color: #3B71CA;
    box-shadow: 0 0 0 0.25rem rgba(59, 113, 202, 0.1);
}

.faq-section .accordion-button {
    background-color: #FFFFFF;
    color: #1A1D23;
    box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
    color: #3B71CA;
    background-color: #FFFFFF;
}

.faq-section .accordion-item {
    overflow: hidden;
    border-color: rgba(0, 0, 0, 0.05) !important;
}

.guide-sidebar .sidebar-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.guide-sidebar .sidebar-cta {
    background: linear-gradient(135deg, #6366F1 0%, #3B82F6 100%);
}

.sticky-top-offset {
    position: sticky;
    top: 100px;
}

@media (max-width: 991.98px) {
    .hero-detail {
        text-align: center;
        padding-top: 2rem;
    }

    .hero-detail .meta-info {
        justify-content: center;
        margin-bottom: 2rem;
    }

    .guide-body-wrapper {
        padding: 1.5rem;
    }

    .guide-detail-page .display-4 {
        font-size: 2rem;
    }
}

.room-priority-header {
    background-color: #FFFFFF;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1050;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.02);
}

.room-priority-header .navbar-brand .brand-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: #1A1D23;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.room-priority-header .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #505967;
    transition: color 0.2s ease;
}

.room-priority-header .nav-link:hover {
    color: #3B71CA;
}

.rp-footer {
    background: #FAFBFC;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.rp-footer-disclaimer-box {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 113, 202, 0.15) !important;
}

.rp-footer-link {
    color: #505967;
    text-decoration: none;
    transition: color 0.2s ease;
}

.rp-footer-link:hover {
    color: #3B71CA;
}

/* ===== PAGE TEMPLATE: room-types ===== */
.rt-hero {
    background: radial-gradient(at 0% 0%, hsla(225, 100%, 98%, 1) 0, transparent 50%), radial-gradient(at 50% 0%, hsla(210, 100%, 96%, 1) 0, transparent 50%), radial-gradient(at 100% 0%, hsla(190, 100%, 97%, 1) 0, transparent 50%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.rt-hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: #1A1D23;
    letter-spacing: -0.02em;
}

.rt-hero-lead {
    color: #505967;
    max-width: 650px;
}

.rt-hero-score-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.rt-stat-item .progress-bar {
    background: linear-gradient(90deg, #6366F1, #3B82F6);
}

.rt-article-body .rt-main-img-wrap img {
    border-radius: 16px;
}

.rt-text-container .rt-rich-text {
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    color: #1A1D23;
}

.rt-text-container .rt-rich-text p {
    margin-bottom: 1.5rem;
}

.rt-priority-card {
    transition: border-color 0.2s ease;
    background-color: #FFFFFF;
}

.rt-priority-card:hover {
    border-color: #3B71CA !important;
}

.rt-sidebar-card {
    background: #FFFFFF;
}

.rt-cta-card {
    background: linear-gradient(135deg, #6366F1 0%, #3B82F6 100%);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
}

.rt-related-link {
    transition: all 0.2s ease;
}

.rt-related-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: #3B71CA !important;
}

.room-priority-layout h1,
.room-priority-layout h2,
.room-priority-layout h3 {
    color: #1A1D23;
}

@media (max-width: 768px) {
    .rt-hero-title {
        font-size: 1.75rem;
    }

    .rt-main-img-wrap img {
        height: 300px !important;
    }

    .rt-sidebar {
        position: static !important;
    }
}

.pi-page .hero-block {
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.pi-page .hero-actions {
    margin-bottom: 0;
}

.pi-page .hero-main-container {
    width: 100%;
}

.pi-page .hero-main-container .row {
    min-height: auto !important;
    padding-top: 0;
    padding-bottom: 0;
}
