:root {
    --primary-accent: #FF8A3D;
    --primary-accent-rgb: 255, 138, 61;
    --ambient-glow-color: rgba(255, 138, 61, 0.15);
    --background-base: #0B0806;
    --background-card: #16110E;
    --background-card-border: rgba(255, 138, 61, 0.1);
    --text-primary: #FFFFFF;
    --text-secondary: #A09690;
    --text-muted: #6E6560;
    --font-headers: 'Space Grotesk', 'Segoe UI', sans-serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--background-base);
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

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

.site-title {
    font-family: var(--font-headers);
    font-weight: 700;
    color: var(--text-primary);
}

.site-body-text {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-secondary);
}

.manual-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.manual-card {
    background-color: var(--background-card);
    border: 1px solid var(--background-card-border);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.manual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top left, var(--ambient-glow-color), transparent 70%);
    pointer-events: none;
}

.btn-manual-primary {
    background-color: var(--primary-accent);
    color: var(--background-base);
    font-family: var(--font-headers);
    font-weight: 600;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 14px rgba(255, 138, 61, 0.3);
}

.btn-manual-primary:hover {
    background-color: var(--background-base);
    color: var(--primary-accent);
    border: 1px solid var(--primary-accent);
}

.btn-manual-secondary {
    background-color: transparent;
    color: var(--text-primary);
    font-family: var(--font-headers);
    font-weight: 600;
    border: 1px solid var(--primary-accent);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
}

.btn-manual-secondary:hover {
    background-color: var(--primary-accent);
    color: var(--background-base);
}

.manual-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(11, 8, 6, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--background-card-border);
}

.manual-footer {
    background-color: var(--background-card);
    border-top: 1px solid var(--background-card-border);
    padding: 48px 0;
}

/* ===== header ===== */
.fielddecision-header {
    background-color: #16110E;
    border-bottom: 1px solid rgba(255, 138, 61, 0.15);
    position: sticky;
    top: 0;
    z-index: 1050;
}

.fielddecision-header .navbar {
    background-color: #16110E !important;
    padding: 15px 0;
}

.fielddecision-header .header-logo {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.fielddecision-header .brand-text {
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.fielddecision-header .nav-link {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-weight: 500;
    color: #A09690 !important;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    transition: color 0.2s ease-in-out;
}

.fielddecision-header .nav-link:hover,
.fielddecision-header .nav-link:focus,
.fielddecision-header .nav-link.active {
    color: #FF8A3D !important;
}

.fielddecision-header .header-cta-btn {
    background-color: #FF8A3D;
    color: #16110E !important;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
}

.fielddecision-header .header-cta-btn:hover {
    background-color: #FFFFFF;
    color: #16110E !important;
}

@media (max-width: 991.98px) {
    .fielddecision-header .navbar-collapse {
        background-color: #16110E;
        padding: 15px;
        border-top: 1px solid rgba(255, 138, 61, 0.15);
        margin-top: 10px;
    }

    .fielddecision-header .header-cta-btn {
        margin-top: 10px;
        display: block;
    }
}

/* ===== hero ===== */
.field-hero {
    background-color: #0B0806;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: #FFFFFF;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    position: relative;
}

.field-hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.field-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.field-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 8, 6, 0.95) 0%, rgba(22, 17, 14, 0.85) 100%);
    z-index: 2;
}

.field-hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 138, 61, 0.12) 0%, rgba(255, 138, 61, 0) 70%);
    top: 10%;
    right: 5%;
    pointer-events: none;
    z-index: 2;
}

.field-hero .container {
    z-index: 3;
}

.field-hero-tag {
    background-color: rgba(255, 138, 61, 0.1);
    color: #FF8A3D;
    border: 1px solid rgba(255, 138, 61, 0.2);
    padding: 8px 16px;
    border-radius: 30px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.field-hero-title {
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.2;
    color: #FFFFFF !important;
}

.field-hero-description {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #A09690;
    max-width: 600px;
}

.field-hero .btn-primary-custom {
    background-color: #FF8A3D;
    color: #16110E;
    border: 2px solid #FF8A3D;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 138, 61, 0.25);
}

.field-hero .btn-primary-custom:hover {
    background-color: transparent;
    color: #FF8A3D;
    border-color: #FF8A3D;
}

.field-hero .btn-secondary-custom {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 138, 61, 0.4);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.field-hero .btn-secondary-custom:hover {
    background-color: #FF8A3D;
    color: #16110E;
    border-color: #FF8A3D;
}

.field-hero .field-hero-card {
    background-color: #16110E;
    border: 1px solid rgba(255, 138, 61, 0.15);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    position: relative;
}

.field-hero .field-hero-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 138, 61, 0.2), transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.field-hero .field-hero-card-header {
    margin-bottom: 24px;
}

.field-hero .field-hero-card-header .badge {
    background-color: rgba(255, 138, 61, 0.1);
    color: #FF8A3D;
    border: 1px solid rgba(255, 138, 61, 0.25);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 12px;
}

.field-hero .field-hero-card-header .card-title {
    font-family: 'Space Grotesk', sans-serif;
    color: #FFFFFF !important;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.field-hero .flow-step {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid transparent;
    cursor: pointer;
    outline: none;
}

.field-hero .flow-step:last-child {
    margin-bottom: 0;
}

.field-hero .flow-step:hover {
    border-color: rgba(255, 138, 61, 0.2);
    background-color: rgba(255, 138, 61, 0.02);
}

.field-hero .flow-step.is-active {
    background-color: rgba(255, 138, 61, 0.05);
    border-color: rgba(255, 138, 61, 0.3);
}

.field-hero .flow-step .step-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #A09690;
    background-color: rgba(255, 255, 255, 0.05);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.field-hero .flow-step.is-active .step-num {
    color: #16110E;
    background-color: #FF8A3D;
}

.field-hero .flow-step .step-content h4 {
    font-family: 'Space Grotesk', sans-serif;
    color: #FFFFFF !important;
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 6px 0;
}

.field-hero .flow-step .step-content p {
    font-family: 'Inter', sans-serif;
    color: #A09690;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

.field-hero .flow-step.is-active .step-content p {
    color: #FFFFFF;
}

@media (max-width: 991.98px) {
    .field-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .field-hero-title {
        font-size: 18px !important;
    }

    .field-hero .field-hero-card-header .card-title {
        font-size: 14px !important;
    }

    .field-hero .flow-step .step-content h4 {
        font-size: 13px !important;
    }

    .field-hero-description {
        font-size: 1rem;
    }
}

/* ===== grid-methodology ===== */
.methodology-grid-section {
    background-color: #0B0806;
    background-image: radial-gradient(circle at 50% 0%, rgba(255, 138, 61, 0.08), transparent 50%);
    position: relative;
    padding: 80px 0;
}

.methodology-grid-section .meth-subtitle {
    color: #FF8A3D;
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    display: inline-block;
}

.methodology-grid-section .meth-title {
    color: #FFFFFF;
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
}

.methodology-grid-section .meth-lead {
    color: #A09690;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 1.1rem;
}

.methodology-grid-section .meth-search-wrapper {
    position: relative;
}

.methodology-grid-section .meth-search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #FF8A3D;
    pointer-events: none;
}

.methodology-grid-section .js-meth-search {
    background-color: #16110E;
    border: 1px solid rgba(255, 138, 61, 0.2);
    color: #FFFFFF;
    padding: 12px 20px 12px 45px;
    border-radius: 8px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.methodology-grid-section .js-meth-search::placeholder {
    color: #6E6560;
    opacity: 1;
}

.methodology-grid-section .js-meth-search:focus {
    border-color: #FF8A3D;
    box-shadow: 0 0 10px rgba(255, 138, 61, 0.2);
    outline: none;
    background-color: #16110E;
    color: #FFFFFF;
}

.methodology-grid-section .meth-card {
    background-color: #16110E;
    border: 1px solid rgba(255, 138, 61, 0.15);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.methodology-grid-section .meth-card:hover {
    border-color: rgba(255, 138, 61, 0.5);
    box-shadow: 0 0 20px rgba(255, 138, 61, 0.15);
}

.methodology-grid-section .meth-card-img-wrapper {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

.methodology-grid-section .meth-card-meta {
    font-size: 0.8rem;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.methodology-grid-section .meth-meta-tag {
    color: #FF8A3D;
    font-weight: 600;
}

.methodology-grid-section .meth-meta-dot {
    color: #6E6560;
    margin: 0 8px;
}

.methodology-grid-section .meth-meta-date {
    color: #A09690;
}

.methodology-grid-section .meth-card-title {
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
}

.methodology-grid-section .meth-title-link {
    color: #FFFFFF;
    text-decoration: none;
}

.methodology-grid-section .meth-title-link:hover {
    color: #FF8A3D;
}

.methodology-grid-section .meth-card-excerpt {
    color: #A09690;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
}

.methodology-grid-section .meth-card-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    background-color: #FF8A3D;
    color: #16110E;
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid #FF8A3D;
}

.methodology-grid-section .meth-card-btn:hover {
    background-color: transparent;
    color: #FF8A3D;
    border-color: #FF8A3D;
}

.methodology-grid-section .meth-btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #FFFFFF;
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid #FF8A3D;
}

.methodology-grid-section .meth-btn-secondary:hover {
    background-color: #FF8A3D;
    color: #16110E;
}

@media (max-width: 767.98px) {
    .methodology-grid-section {
        padding: 60px 0;
    }

    .methodology-grid-section h2.meth-title {
        font-size: 16px !important;
    }

    .methodology-grid-section h3.meth-card-title {
        font-size: 14px !important;
    }

    .methodology-grid-section .meth-subtitle {
        font-size: 12px !important;
    }

    .methodology-grid-section p.meth-lead,
    .methodology-grid-section p.meth-card-excerpt {
        font-size: 13px !important;
        hyphens: auto;
    }
}

/* ===== qualification ===== */
.field-qualification {
    background-color: #0B0806;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.field-qualification::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 138, 61, 0.15) 0%, rgba(255, 138, 61, 0) 70%);
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.field-qualification .qual-title {
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
    color: #FFFFFF;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.field-qualification .qual-subtitle {
    color: #A09690;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 48px auto;
    line-height: 1.6;
}

.field-qualification .qual-card {
    background-color: #16110E;
    border: 1px solid rgba(255, 138, 61, 0.15);
    border-radius: 16px;
    padding: 40px;
    height: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field-qualification .qual-card:hover,
.field-qualification .qual-card.active {
    border-color: rgba(255, 138, 61, 0.4);
    box-shadow: 0 0 20px rgba(255, 138, 61, 0.1);
}

.field-qualification .qual-card-title {
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.field-qualification .qual-card-title.for-title {
    color: #FF8A3D;
}

.field-qualification .qual-card-title.not-for-title {
    color: #6E6560;
}

.field-qualification .qual-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.field-qualification .qual-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.field-qualification .qual-item:last-child {
    margin-bottom: 0;
}

.field-qualification .qual-icon {
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.field-qualification .qual-icon.icon-check {
    color: #FF8A3D;
}

.field-qualification .qual-icon.icon-times {
    color: #6E6560;
}

.field-qualification .qual-item-title {
    font-weight: 600;
    margin-bottom: 4px;
    color: #FFFFFF;
    font-size: 1.1rem;
}

.field-qualification .qual-item-desc {
    color: #A09690;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .field-qualification {
        padding: 48px 0;
    }

    .field-qualification .qual-title {
        font-size: 1.8rem;
    }

    .field-qualification .qual-subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .field-qualification .qual-card {
        padding: 24px;
    }
}

/* ===== tech-stack ===== */
.tech-stack-section {
    background-color: #0B0806;
    background-image: radial-gradient(circle at 50% 0%, rgba(255, 138, 61, 0.08), transparent 60%);
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: #FFFFFF;
    position: relative;
}

.tech-stack-badge {
    background-color: rgba(255, 138, 61, 0.1);
    border: 1px solid rgba(255, 138, 61, 0.3);
    color: #FF8A3D;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tech-stack-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: #FFFFFF;
    font-size: 2.25rem;
}

.tech-stack-desc {
    color: #A09690;
    font-size: 1.1rem;
    line-height: 1.6;
}

.tech-stack-filter-btn {
    background-color: #16110E;
    border: 1px solid rgba(255, 138, 61, 0.15);
    color: #A09690;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    cursor: pointer;
    transition: none;
}

.tech-stack-filter-btn:hover,
.tech-stack-filter-btn.active {
    background-color: #FF8A3D;
    border-color: #FF8A3D;
    color: #16110E;
}

.tech-stack-card {
    background-color: #16110E;
    border: 1px solid rgba(255, 138, 61, 0.15);
    border-radius: 16px;
    padding: 2rem;
    transition: none;
    position: relative;
    overflow: hidden;
}

.tech-stack-card:hover {
    border-color: rgba(255, 138, 61, 0.5);
    box-shadow: 0 0 20px rgba(255, 138, 61, 0.1);
}

.tech-stack-card-icon {
    font-size: 2rem;
    color: #FF8A3D;
    display: inline-block;
}

.tech-stack-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #FFFFFF;
}

.tech-stack-card-category {
    font-size: 0.75rem;
    color: #FF8A3D;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.tech-stack-card-text {
    color: #A09690;
    font-size: 0.95rem;
    line-height: 1.5;
}

.tech-stack-card-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    background-color: #FF8A3D;
    border: 1px solid #FF8A3D;
    color: #16110E;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: none;
}

.tech-stack-card-btn:hover {
    background-color: transparent;
    border-color: #FF8A3D;
    color: #FFFFFF;
}

@media (max-width: 767.98px) {
    .tech-stack-section h2.tech-stack-title {
        font-size: 16px !important;
    }

    .tech-stack-section h3.tech-stack-card-title {
        font-size: 14px !important;
    }

    .tech-stack-desc {
        font-size: 0.95rem;
    }

    .tech-stack-card {
        padding: 1.5rem;
    }
}

/* ===== dictionary ===== */
.field-decision-dictionary {
    background-color: #0B0806;
    background-image: radial-gradient(circle at 50% 0%, rgba(255, 138, 61, 0.1) 0%, transparent 70%);
    padding: 80px 0;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.field-decision-dictionary h2,
.field-decision-dictionary h3 {
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
}

.field-decision-dictionary .text-accent {
    color: #FF8A3D;
}

.field-decision-dictionary .text-secondary {
    color: #A09690 !important;
}

.field-decision-dictionary .font-semibold {
    font-weight: 600;
}

.field-decision-dictionary .tracking-wider {
    letter-spacing: 0.05em;
}

.field-decision-dictionary .search-box-container {
    position: relative;
}

.field-decision-dictionary .search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #A09690;
    pointer-events: none;
}

.field-decision-dictionary .search-input {
    background-color: #16110E;
    border: 1px solid rgba(255, 138, 61, 0.2);
    border-radius: 8px;
    color: #FFFFFF;
    padding: 12px 16px 12px 48px;
    font-size: 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field-decision-dictionary .search-input::placeholder {
    color: #8C8078;
    opacity: 1;
}

.field-decision-dictionary .search-input:focus {
    background-color: #16110E;
    border-color: #FF8A3D;
    box-shadow: 0 0 0 3px rgba(255, 138, 61, 0.25);
    color: #FFFFFF;
    outline: none;
}

.field-decision-dictionary .filter-btn {
    background-color: transparent;
    border: 1px solid rgba(255, 138, 61, 0.2);
    color: #A09690;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
}

.field-decision-dictionary .filter-btn:hover {
    border-color: #FF8A3D;
    color: #FFFFFF;
}

.field-decision-dictionary .filter-btn.active {
    background-color: #FF8A3D;
    border-color: #FF8A3D;
    color: #0B0806;
    font-weight: 600;
}

.field-decision-dictionary .dictionary-card {
    background-color: #16110E;
    border: 1px solid rgba(255, 138, 61, 0.15);
    border-radius: 16px;
    padding: 28px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field-decision-dictionary .dictionary-card:hover {
    border-color: rgba(255, 138, 61, 0.4);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 138, 61, 0.05);
}

.field-decision-dictionary .term-badge {
    background-color: rgba(255, 138, 61, 0.1);
    color: #FF8A3D;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.field-decision-dictionary .term-acronym {
    color: #8C8078;
    font-size: 13px;
    font-weight: 500;
}

.field-decision-dictionary .term-title {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 600;
}

.field-decision-dictionary .term-definition {
    color: #A09690;
    font-size: 15px;
    line-height: 1.6;
}

.field-decision-dictionary .js-no-results h4 {
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
}

.field-decision-dictionary .border-accent {
    border-color: #FF8A3D !important;
}

/* ===== press-mentions ===== */
.press-mentions-section {
    background-color: #0B0806;
    color: #FFFFFF;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    position: relative;
    overflow: hidden;
}

.press-mentions-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 138, 61, 0.15);
    filter: blur(120px);
    top: -50px;
    left: -50px;
    pointer-events: none;
    z-index: 1;
}

.press-mentions-section .container {
    position: relative;
    z-index: 2;
}

.press-mentions-section .press-section-tag {
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
    color: #FF8A3D;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.press-mentions-section .press-section-title {
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
    color: #FFFFFF;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.press-mentions-section .press-section-subtitle {
    color: #A09690;
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 0;
}

.press-mentions-section .press-filter-buttons {
    background-color: #16110E;
    padding: 6px;
    border-radius: 30px;
    border: 1px solid rgba(255, 138, 61, 0.15);
}

.press-mentions-section .press-filter-btn {
    background: transparent;
    border: none;
    color: #A09690;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 20px;
    cursor: pointer;
}

.press-mentions-section .press-filter-btn.active {
    background-color: #FF8A3D;
    color: #16110E;
    font-weight: 600;
}

.press-mentions-section .press-card {
    background-color: #16110E;
    border: 1px solid rgba(255, 138, 61, 0.15);
    border-radius: 16px;
    padding: 24px;
}

.press-mentions-section .press-card:hover {
    border-color: rgba(255, 138, 61, 0.5);
    box-shadow: 0 0 20px rgba(255, 138, 61, 0.15);
}

.press-mentions-section .press-quote-icon {
    color: rgba(255, 138, 61, 0.3);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.press-mentions-section .press-quote-text {
    color: #FFFFFF;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.press-mentions-section .press-publisher-name {
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
    color: #FF8A3D;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.press-mentions-section .press-publisher-meta {
    color: #6E6560;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 767.98px) {
    .press-mentions-section .press-section-title {
        font-size: 1.75rem;
    }

    .press-mentions-section .press-section-subtitle {
        font-size: 1rem;
    }
}

/* ===== support-sla ===== */
.support-sla-section {
    background-color: #0B0806;
    padding: 80px 0;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.support-sla-section .sla-card,
.support-sla-section .contact-channels-card {
    background-color: #16110E;
    border: 1px solid rgba(255, 138, 61, 0.15);
    border-radius: 16px;
}

.support-sla-section .sla-title,
.support-sla-section .channels-title {
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 600;
}

.support-sla-section .channels-subtitle {
    color: #A09690;
    font-size: 15px;
    line-height: 1.6;
}

.support-sla-section .sla-toggle-group {
    background: #0B0806;
    padding: 4px;
    border-radius: 30px;
    border: 1px solid rgba(255, 138, 61, 0.15);
}

.support-sla-section .sla-toggle-btn {
    border-radius: 26px;
    padding: 6px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #A09690;
    background: transparent;
    border: none;
}

.support-sla-section .sla-toggle-btn.active {
    background: #FF8A3D;
    color: #0B0806;
    font-weight: 600;
}

.support-sla-section .sla-toggle-btn:hover:not(.active) {
    color: #FFFFFF;
    background: rgba(255, 138, 61, 0.1);
}

.support-sla-section .sla-metric-container {
    background: rgba(255, 138, 61, 0.05);
    border: 1px dashed rgba(255, 138, 61, 0.3);
    border-radius: 12px;
}

.support-sla-section .sla-metric-value {
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #FF8A3D;
    line-height: 1;
}

.support-sla-section .sla-metric-label {
    font-size: 13px;
    color: #A09690;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.support-sla-section .sla-feature-icon {
    color: #FF8A3D;
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.support-sla-section .sla-footnote {
    font-size: 13px;
    color: #857C77;
}

.support-sla-section .channel-link-card {
    background: #0B0806;
    border: 1px solid rgba(255, 138, 61, 0.15);
    border-radius: 12px;
    text-decoration: none;
}

.support-sla-section .channel-link-card:hover {
    border-color: #FF8A3D;
    background: rgba(255, 138, 61, 0.05);
}

.support-sla-section .channel-icon-wrapper {
    width: 48px;
    height: 48px;
    background: rgba(255, 138, 61, 0.1);
    color: #FF8A3D;
    border-radius: 8px;
    font-size: 20px;
}

.support-sla-section .channel-label {
    font-size: 12px;
    color: #857C77;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.support-sla-section .channel-value {
    font-size: 16px;
    color: #FFFFFF;
    font-weight: 500;
}

.support-sla-section .channel-arrow {
    color: #857C77;
    font-size: 14px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.support-sla-section .channel-link-card:hover .channel-arrow {
    transform: translateX(4px);
    color: #FF8A3D;
}

.support-sla-section .bg-accent-glow {
    background: rgba(255, 138, 61, 0.15);
    border: 1px solid rgba(255, 138, 61, 0.3);
}

/* ===== footer ===== */
.field-decision-footer {
    background-color: #0B0806;
    border-top: 1px solid rgba(255, 138, 61, 0.15);
    color: #A09690;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.field-decision-footer .footer-disclaimer-box {
    background-color: #16110E;
    border: 1px solid rgba(255, 138, 61, 0.15);
    border-left: 4px solid #FF8A3D;
    border-radius: 8px;
}

.field-decision-footer .disclaimer-title {
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1.1rem;
}

.field-decision-footer .disclaimer-title i {
    color: #FF8A3D;
}

.field-decision-footer .disclaimer-text {
    color: #A09690;
    font-size: 0.9rem;
    line-height: 1.6;
}

.field-decision-footer .footer-brand {
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
    color: #FFFFFF;
    font-weight: 700;
}

.field-decision-footer .footer-desc {
    color: #A09690;
    font-size: 0.95rem;
    line-height: 1.6;
}

.field-decision-footer .footer-heading {
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1.1rem;
}

.field-decision-footer .footer-links a {
    color: #A09690;
    text-decoration: none;
    font-size: 0.95rem;
}

.field-decision-footer .footer-links a:hover {
    color: #FF8A3D;
}

.field-decision-footer .contact-item {
    font-size: 0.95rem;
    color: #A09690;
}

.field-decision-footer .contact-label {
    color: #FFFFFF;
    font-weight: 500;
}

.field-decision-footer .contact-item a {
    color: #FF8A3D;
    text-decoration: none;
}

.field-decision-footer .contact-item a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.field-decision-footer .btn-whatsapp-link {
    background-color: #FF8A3D;
    color: #0B0806;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
}

.field-decision-footer .btn-whatsapp-link:hover {
    background-color: #FFFFFF;
    color: #0B0806;
}

.field-decision-footer .footer-bottom {
    border-top: 1px solid rgba(255, 138, 61, 0.1);
}

.field-decision-footer .copyright-text {
    color: #6E6560;
    font-size: 0.85rem;
}

.field-decision-footer .footer-legal-links a {
    color: #6E6560;
    text-decoration: none;
    font-size: 0.85rem;
}

.field-decision-footer .footer-legal-links a:hover {
    color: #FF8A3D;
}

/* ===== PAGE: methodology ===== */
.meth-section .meth-card {
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.meth-section .meth-card:hover {
  border-color: rgba(255, 138, 61, 0.45) !important;
  box-shadow: 0 0 20px rgba(255, 138, 61, 0.08);
}
.meth-section .meth-title-link {
  transition: color 0.15s ease-in-out;
}
.meth-section .meth-title-link:hover {
  color: #FF8A3D !important;
}
.meth-section .text-primary-accent {
  color: #FF8A3D;
}
.meth-section .filter-bar select option {
  background-color: #16110E;
  color: #FFFFFF;
}
.meth-section .form-control::placeholder,
.meth-section .form-select::placeholder {
  color: #6E6560;
  opacity: 1;
}
.meth-section .form-control:focus,
.meth-section .form-select:focus {
  background-color: #0B0806;
  border-color: #FF8A3D;
  box-shadow: 0 0 0 0.25rem rgba(255, 138, 61, 0.25);
  color: #FFFFFF;
}
.meth-modal .form-control::placeholder {
  color: #6E6560;
  opacity: 1;
}
.meth-modal .form-control:focus {
  background-color: #0B0806;
  border-color: #FF8A3D;
  box-shadow: 0 0 0 0.25rem rgba(255, 138, 61, 0.25);
  color: #FFFFFF;
}
.meth-section .js-open-request-btn:hover {
  background-color: #e57c36 !important;
}
.meth-modal .btn[type="submit"]:hover {
  background-color: #e57c36 !important;
}

/* ===== PAGE: documents ===== */
.field-docs-section {
  background-color: #0B0806;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.field-docs-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 138, 61, 0.08) 0%, rgba(255, 138, 61, 0) 70%);
  top: -200px;
  left: -200px;
  pointer-events: none;
}

.field-docs-section .field-docs-badge {
  background-color: rgba(255, 138, 61, 0.15);
  color: #FF8A3D;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  padding: 0.5rem 0.8rem;
  letter-spacing: 0.05rem;
  border-radius: 4px;
}

.field-docs-section .search-group .form-control {
  border-radius: 0 10px 10px 0;
  box-shadow: none;
}

.field-docs-section .search-group .input-group-text {
  border-radius: 10px 0 0 10px;
}

.field-docs-section .bg-card {
  background-color: #16110E;
}

.field-docs-section .border-accent-subtle {
  border: 1px solid rgba(255, 138, 61, 0.15);
}

.field-docs-section .btn-filter {
  background-color: #16110E;
  border: 1px solid rgba(255, 138, 61, 0.15);
  color: #A09690;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  padding: 0.5rem 1.2rem;
  transition: none;
}

.field-docs-section .btn-filter.active,
.field-docs-section .btn-filter:hover {
  background-color: #FF8A3D;
  color: #0B0806;
  border-color: #FF8A3D;
}


.field-docs-section .doc-card {
  background-color: #16110E;
  border: 1px solid rgba(255, 138, 61, 0.15);
  border-radius: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field-docs-section .doc-card:hover {
  border-color: rgba(255, 138, 61, 0.5);
  box-shadow: 0 4px 20px rgba(255, 138, 61, 0.1);
}

.field-docs-section .doc-img-wrapper {
  position: relative;
  height: 200px;
  background-color: #0B0806;
}

.field-docs-section .doc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: none;
}

.field-docs-section .bg-accent-glow {
  background-color: rgba(255, 138, 61, 0.1);
  font-size: 0.75rem;
  font-family: 'Space Grotesk', sans-serif;
}

.field-docs-section .text-accent {
  color: #FF8A3D;
}

.field-docs-section .doc-title-link {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  transition: color 0.1s ease;
}

.field-docs-section .doc-title-link:hover {
  color: #FF8A3D !important;
}

.field-docs-section .text-sm {
  font-size: 0.875rem;
}

.field-docs-section .text-xs {
  font-size: 0.75rem;
}

.field-docs-section .btn-action {
  background-color: transparent;
  border: 1px solid #FF8A3D;
  color: #FFFFFF;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 6px;
}

.field-docs-section .btn-action:hover {
  background-color: #FF8A3D;
  color: #0B0806;
}


.field-docs-section .form-sidebar-wrapper {
  background-color: #16110E;
  border: 1px solid rgba(255, 138, 61, 0.15);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.field-docs-section .form-sidebar-wrapper.highlight-flash {
  border-color: #FF8A3D;
  box-shadow: 0 0 25px rgba(255, 138, 61, 0.3);
}

.field-docs-section .selected-document-preview {
  background-color: rgba(255, 138, 61, 0.05);
  border-left: 3px solid #FF8A3D;
}

.field-docs-section .form-input-dark {
  background-color: #0B0806;
  border: 1px solid rgba(255, 138, 61, 0.15);
  color: #FFFFFF;
  border-radius: 8px;
  padding: 0.75rem;
}

.field-docs-section .form-input-dark:focus {
  background-color: #0B0806;
  border-color: #FF8A3D;
  box-shadow: 0 0 0 0.2rem rgba(255, 138, 61, 0.25);
  color: #FFFFFF;
}

.field-docs-section .form-input-dark::placeholder {
  color: #6E6560;
}

.field-docs-section .btn-primary {
  background-color: #FF8A3D;
  border: none;
  color: #0B0806;
  border-radius: 8px;
  transition: background-color 0.15s ease;
}

.field-docs-section .btn-primary:hover {
  background-color: #e5762c;
  color: #0B0806;
}


@media (max-width: 768px) {
  .field-docs-section h1 {
    font-size: 1.75rem !important;
  }
  .field-docs-section .lead {
    font-size: 1rem !important;
  }
}

/* ===== PAGE: core-materials ===== */
.fd-core-materials-wrapper {
  background-color: #0B0806;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: #A09690;
}

.fd-core-materials-wrapper h1,
.fd-core-materials-wrapper h2,
.fd-core-materials-wrapper h3,
.fd-core-materials-wrapper h4,
.fd-core-materials-wrapper h5,
.fd-core-materials-wrapper h6 {
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  color: #FFFFFF;
}

.fd-core-materials-wrapper .fd-accent-text {
  color: #FF8A3D !important;
}

.fd-core-materials-wrapper .fd-badge {
  background-color: rgba(255, 138, 61, 0.15);
  color: #FF8A3D;
  border: 1px solid rgba(255, 138, 61, 0.3);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  display: inline-block;
}

.fd-core-materials-wrapper .fd-intro-card {
  background-color: #16110E;
  border: 1px solid rgba(255, 138, 61, 0.15);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.fd-core-materials-wrapper .fd-intro-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 138, 61, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.fd-core-materials-wrapper .fd-heading-main {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.fd-core-materials-wrapper .fd-lead-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #A09690;
}

.fd-core-materials-wrapper .fd-pillars-card {
  background-color: #16110E;
  border: 1px solid rgba(255, 138, 61, 0.15);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.fd-core-materials-wrapper .fd-pillar-item {
  align-items: flex-start;
  padding: 10px 0;
}

.fd-core-materials-wrapper .fd-pillar-icon-wrap {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background-color: rgba(255, 138, 61, 0.1);
  border: 1px solid rgba(255, 138, 61, 0.3);
  color: #FF8A3D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}


.fd-core-materials-wrapper .fd-controls-panel {
  background-color: #16110E;
  border: 1px solid rgba(255, 138, 61, 0.15);
  border-radius: 16px;
}

.fd-core-materials-wrapper .fd-controls-panel .form-control {
  background-color: #0B0806;
  border: 1px solid rgba(255, 138, 61, 0.2);
  color: #FFFFFF;
}

.fd-core-materials-wrapper .fd-controls-panel .form-control::placeholder {
  color: #6E6560;
}

.fd-core-materials-wrapper .fd-controls-panel .form-control:focus {
  border-color: #FF8A3D;
  box-shadow: 0 0 0 3px rgba(255, 138, 61, 0.25);
  outline: none;
}


.fd-core-materials-wrapper .btn-accent {
  background-color: #FF8A3D;
  border: 1px solid #FF8A3D;
  color: #16110E;
  font-weight: 600;
  border-radius: 8px;
}

.fd-core-materials-wrapper .btn-accent:hover {
  background-color: #e0732b;
  border-color: #e0732b;
  color: #16110E;
}

.fd-core-materials-wrapper .btn-outline-accent {
  background-color: transparent;
  border: 1px solid rgba(255, 138, 61, 0.4);
  color: #FFFFFF;
  font-weight: 500;
  border-radius: 8px;
}

.fd-core-materials-wrapper .btn-outline-accent:hover {
  background-color: #FF8A3D;
  border-color: #FF8A3D;
  color: #16110E;
}


.fd-core-materials-wrapper .fd-grid-card {
  background-color: #16110E;
  border: 1px solid rgba(255, 138, 61, 0.15);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.fd-core-materials-wrapper .fd-grid-card:hover {
  border-color: rgba(255, 138, 61, 0.5);
  box-shadow: 0 0 20px rgba(255, 138, 61, 0.15);
}

.fd-core-materials-wrapper .fd-card-img-link {
  display: block;
  overflow: hidden;
  height: 200px;
  background-color: #0B0806;
}

.fd-core-materials-wrapper .fd-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fd-core-materials-wrapper .fd-card-meta {
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.fd-core-materials-wrapper .fd-card-body {
  flex-grow: 1;
}

@media (max-width: 768px) {
  .fd-core-materials-wrapper .fd-heading-main {
    font-size: 1.8rem;
  }
}

/* ===== PAGE: procore-guide ===== */
.procore-content-section {
  background-color: #0B0806;
  font-family: 'Inter', sans-serif;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.procore-content-section h1,
.procore-content-section h2,
.procore-content-section h3,
.procore-content-section h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: #FFFFFF;
}
.procore-content-section .text-accent {
  color: #FF8A3D;
}
.procore-content-section .bg-accent-glow {
  background-color: rgba(255, 138, 61, 0.15);
  border: 1px solid rgba(255, 138, 61, 0.3);
  font-weight: 600;
  font-size: 0.85rem;
}
.procore-content-section .bg-card {
  background-color: #16110E;
  border: 1px solid rgba(255, 138, 61, 0.15);
  border-radius: 16px;
}
.procore-content-section .glow-backdrop {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 138, 61, 0.07) 0%, rgba(255, 138, 61, 0) 70%);
  top: 10%;
  left: -5%;
  pointer-events: none;
  z-index: 1;
}
.procore-content-section .glow-backdrop-2 {
  position: absolute;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(255, 138, 61, 0.05) 0%, rgba(255, 138, 61, 0) 70%);
  bottom: 5%;
  right: -5%;
  pointer-events: none;
  z-index: 1;
}
.procore-content-section .btn-custom-primary {
  background-color: #FF8A3D;
  color: #0B0806;
  font-weight: 600;
  border: 1px solid #FF8A3D;
  border-radius: 8px;
  padding: 12px 24px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: none;
}
.procore-content-section .btn-custom-primary:hover {
  background-color: #e6752b;
  border-color: #e6752b;
  color: #0B0806;
}
.procore-content-section .btn-custom-secondary {
  background-color: transparent;
  color: #FFFFFF;
  font-weight: 600;
  border: 1px solid rgba(255, 138, 61, 0.3);
  border-radius: 8px;
  padding: 12px 24px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: none;
}
.procore-content-section .btn-custom-secondary:hover {
  background-color: rgba(255, 138, 61, 0.1);
  border-color: #FF8A3D;
  color: #FFFFFF;
}
.procore-content-section .btn-tab {
  background-color: transparent;
  color: #A09690;
  border: 1px solid rgba(255, 138, 61, 0.15);
  border-radius: 8px;
  padding: 10px 22px;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  transition: none;
}
.procore-content-section .btn-tab:hover {
  border-color: rgba(255, 138, 61, 0.4);
  color: #FFFFFF;
}
.procore-content-section .btn-tab.active {
  background-color: #FF8A3D;
  color: #0B0806;
  border-color: #FF8A3D;
}
.procore-content-section .form-control-custom {
  background-color: #0B0806;
  border: 1px solid rgba(255, 138, 61, 0.25);
  color: #FFFFFF;
  border-radius: 8px;
  padding: 12px 14px;
}
.procore-content-section .form-control-custom:focus {
  background-color: #0B0806;
  border-color: #FF8A3D;
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 138, 61, 0.25);
  color: #FFFFFF;
}
.procore-content-section .form-control-custom::placeholder {
  color: #6E6560 !important;
  opacity: 1;
}
.procore-content-section .form-control-custom:-ms-input-placeholder {
  color: #6E6560 !important;
}
.procore-content-section .form-control-custom::-ms-input-placeholder {
  color: #6E6560 !important;
}
.procore-content-section .output-box {
  background-color: #0B0806;
  border: 1px solid rgba(255, 138, 61, 0.3);
  border-radius: 8px;
  font-family: monospace;
  color: #FF8A3D;
  white-space: pre-wrap;
  word-break: break-all;
  max-height: 480px;
  overflow-y: auto;
  font-size: 0.85rem;
  line-height: 1.4;
}
.procore-content-section .card-hover-effect {
  border: 1px solid rgba(255, 138, 61, 0.15);
  transition: none;
}
.procore-content-section .card-hover-effect:hover {
  border-color: rgba(255, 138, 61, 0.6);
  box-shadow: 0 0 15px rgba(255, 138, 61, 0.1);
}
.procore-content-section .bg-secondary-outline {
  border: 1px solid rgba(160, 150, 144, 0.25);
  background-color: transparent;
}
.procore-content-section .border-dark-glow {
  border-color: rgba(255, 138, 61, 0.1) !important;
}
.procore-content-section .bg-dark-glow-box {
  background-color: rgba(22, 17, 14, 0.6);
  border: 1px solid rgba(255, 138, 61, 0.1);
  border-radius: 12px;
}
.procore-content-section .image-container-glowing {
  position: relative;
  border: 1px solid rgba(255, 138, 61, 0.2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 138, 61, 0.05);
}
@media (max-width: 767.98px) {
  .procore-content-section h1 { font-size: 18px; }
  .procore-content-section h2 { font-size: 16px; }
  .procore-content-section h3 { font-size: 14px; }
  .procore-content-section .btn-custom-secondary,
  .procore-content-section .btn-custom-primary {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}

/* ===== PAGE: contact ===== */
.fd-contact-block {
  background-color: #0B0806;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: #FFFFFF;
}

.fd-contact-block .fd-contact-info-card,
.fd-contact-block .fd-contact-form-card {
  background-color: #16110E;
  border: 1px solid rgba(255, 138, 61, 0.15);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.fd-contact-block .fd-contact-info-card::before,
.fd-contact-block .fd-contact-form-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 138, 61, 0.15) 0%, rgba(255, 138, 61, 0) 70%);
  pointer-events: none;
}

.fd-contact-block .fd-badge {
  background-color: rgba(255, 138, 61, 0.1);
  color: #FF8A3D;
  border: 1px solid rgba(255, 138, 61, 0.3);
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fd-contact-block .fd-info-title,
.fd-contact-block .fd-form-title {
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-weight: 700;
  color: #FFFFFF;
}

.fd-contact-block .fd-info-title {
  font-size: 2rem;
  line-height: 1.2;
}

.fd-contact-block .fd-form-title {
  font-size: 1.75rem;
  line-height: 1.25;
}

.fd-contact-block .fd-info-text,
.fd-contact-block .fd-form-subtitle {
  color: #A09690;
  font-size: 1rem;
  line-height: 1.6;
}

.fd-contact-block .fd-contact-icon-wrapper {
  width: 44px;
  height: 44px;
  background-color: rgba(255, 138, 61, 0.1);
  border: 1px solid rgba(255, 138, 61, 0.2);
  border-radius: 50%;
  color: #FF8A3D;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.fd-contact-block .fd-detail-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6E6560;
  font-weight: 600;
}

.fd-contact-block .fd-detail-value,
.fd-contact-block .fd-detail-link {
  font-size: 1rem;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 500;
  font-style: normal;
}

.fd-contact-block .fd-detail-link:hover {
  color: #FF8A3D;
}

.fd-contact-block .fd-form-label {
  color: #A09690;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.fd-contact-block .fd-form-input {
  background-color: #0B0806;
  border: 1px solid rgba(255, 138, 61, 0.15);
  color: #FFFFFF;
  border-radius: 8px;
  padding: 12px 16px;
  transition: none;
}

.fd-contact-block .fd-form-input::placeholder {
  color: #6E6560;
}

.fd-contact-block .fd-form-input:focus {
  background-color: #0B0806;
  border-color: #FF8A3D;
  color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(255, 138, 61, 0.25);
  outline: none;
}

.fd-contact-block .fd-btn-primary {
  background-color: #FF8A3D;
  color: #0B0806;
  border: 1px solid #FF8A3D;
  padding: 14px 28px;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 138, 61, 0.2);
  transition: none;
}

.fd-contact-block .fd-btn-primary:hover {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FF8A3D;
  box-shadow: 0 4px 16px rgba(255, 138, 61, 0.4);
}

@media (max-width: 767.98px) {
  .fd-contact-block .fd-info-title {
    font-size: 1.5rem;
  }
  .fd-contact-block .fd-form-title {
    font-size: 1.35rem;
  }
}

/* ===== PAGE: privacy ===== */
.fd-privacy-section {
  background-color: #0B0806;
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

.fd-privacy-section .fd-privacy-card {
  background-color: #16110E;
  border: 1px solid rgba(255, 138, 61, 0.15);
  border-radius: 16px;
}

.fd-privacy-section .fd-sidebar-card {
  position: sticky;
  top: 2rem;
}

.fd-privacy-section .fd-heading-sm {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  border-bottom: 2px solid rgba(255, 138, 61, 0.2);
  padding-bottom: 0.5rem;
}

.fd-privacy-section .fd-heading-md {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF !important;
}

.fd-privacy-section .fd-search-input {
  background-color: #0B0806;
  border: 1px solid rgba(255, 138, 61, 0.2);
  color: #FFFFFF;
}

.fd-privacy-section .fd-search-input:focus {
  background-color: #0B0806;
  border-color: #FF8A3D;
  box-shadow: 0 0 8px rgba(255, 138, 61, 0.25);
  color: #FFFFFF;
}

.fd-privacy-section .fd-search-input::placeholder {
  color: #6E6560 !important;
  opacity: 1;
}

.fd-privacy-section .fd-toc-nav .fd-toc-link {
  color: #A09690;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 138, 61, 0.05);
  font-size: 0.95rem;
  transition: color 0.15s ease-in-out;
}

.fd-privacy-section .fd-toc-nav .fd-toc-link:hover {
  color: #FF8A3D;
}

.fd-privacy-section .fd-toc-nav .fd-toc-link.active {
  color: #FF8A3D;
  font-weight: 600;
}

.fd-privacy-section .fd-btn-primary {
  background-color: #FF8A3D;
  color: #16110E;
  font-weight: 600;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  transition: background-color 0.15s ease-in-out;
}

.fd-privacy-section .fd-btn-primary:hover {
  background-color: #e5772b;
  color: #16110E;
}

.fd-privacy-section .fd-btn-secondary {
  background-color: transparent;
  border: 1.5px solid #FF8A3D;
  color: #FFFFFF;
  font-weight: 500;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
}

.fd-privacy-section .fd-btn-secondary:hover {
  background-color: #FF8A3D;
  color: #16110E;
}

.fd-privacy-section .fd-text-body {
  line-height: 1.7;
  font-size: 1rem;
}

.fd-privacy-section .fd-list {
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}

.fd-privacy-section .fd-list li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.fd-privacy-section .fd-feature-box {
  background-color: rgba(255, 138, 61, 0.03);
  border: 1px solid rgba(255, 138, 61, 0.1);
}

/* ===== PAGE: terms ===== */
.fd-terms-section {
  background-color: #0B0806;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: #A09690;
}

.fd-terms-badge {
  background-color: rgba(255, 138, 61, 0.15);
  color: #FF8A3D;
  border: 1px solid rgba(255, 138, 61, 0.3);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  border-radius: 4px;
}

.fd-terms-heading {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.02em;
}

.fd-terms-lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #A09690;
}


.fd-terms-input-icon {
  background-color: #16110E;
  border: 1px solid rgba(255, 138, 61, 0.15);
  border-right: none;
  color: #FF8A3D;
}

.fd-terms-search-input {
  background-color: #16110E;
  border: 1px solid rgba(255, 138, 61, 0.15);
  color: #FFFFFF;
  padding: 0.6rem 1rem;
  transition: border-color 0.2s ease;
}

.fd-terms-search-input:focus {
  background-color: #16110E;
  border-color: #FF8A3D;
  box-shadow: 0 0 0 2px rgba(255, 138, 61, 0.25);
  color: #FFFFFF;
}

.fd-terms-search-input::placeholder {
  color: #6E6560;
  opacity: 1;
}


.fd-terms-filter-group {
  border: 1px solid rgba(255, 138, 61, 0.15);
  border-radius: 8px;
  overflow: hidden;
}

.fd-terms-btn {
  background-color: #16110E;
  color: #A09690;
  border: none;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: none;
}

.fd-terms-btn:hover {
  background-color: rgba(255, 138, 61, 0.1);
  color: #FFFFFF;
}

.fd-terms-btn.active {
  background-color: #FF8A3D;
  color: #16110E;
  font-weight: 600;
}


.fd-terms-sidebar {
  background-color: #16110E;
  border: 1px solid rgba(255, 138, 61, 0.15);
  border-radius: 16px;
}

.fd-terms-nav-link {
  color: #A09690;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  transition: none;
  border-left: 2px solid transparent;
  padding-left: 10px;
}

.fd-terms-nav-link:hover {
  color: #FFFFFF;
  border-left-color: rgba(255, 138, 61, 0.5);
}

.fd-terms-nav-link.active {
  color: #FF8A3D;
  font-weight: 600;
  border-left-color: #FF8A3D;
}

.fd-terms-divider {
  border-top: 1px solid rgba(255, 138, 61, 0.15);
  opacity: 1;
}

.fd-terms-help-card {
  background-color: rgba(255, 138, 61, 0.05);
  border: 1px solid rgba(255, 138, 61, 0.1);
  border-radius: 8px;
}

.fd-terms-help-card p {
  color: #6E6560;
  line-height: 1.4;
}

.fd-terms-btn-sm {
  background-color: transparent;
  color: #FF8A3D;
  border: 1px solid #FF8A3D;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
}

.fd-terms-btn-sm:hover {
  background-color: #FF8A3D;
  color: #16110E;
}


.fd-terms-content-panel {
  background-color: #16110E;
  border: 1px solid rgba(255, 138, 61, 0.15);
  border-radius: 16px;
}

.fd-terms-section-num {
  font-family: 'Space Grotesk', sans-serif;
  color: #FF8A3D;
  font-size: 1.25rem;
  font-weight: 700;
  background-color: rgba(255, 138, 61, 0.1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(255, 138, 61, 0.2);
}

.fd-terms-content-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.01em;
}

.fd-terms-content-section p {
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.fd-terms-list {
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}

.fd-terms-list li {
  margin-bottom: 0.5rem;
  position: relative;
  list-style-type: square;
  color: #A09690;
}

.fd-terms-list li::marker {
  color: #FF8A3D;
}

.fd-terms-inline-link {
  color: #FF8A3D;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: none;
}

.fd-terms-inline-link:hover {
  color: #FFFFFF;
  text-decoration-color: #FF8A3D;
}

@media (max-width: 991.98px) {
  .fd-terms-content-panel {
    padding: 2rem !important;
  }
}

/* ===== PAGE: disclaimer ===== */
.fd-disclaimer-section {
  background-color: #0b0806;
  color: #a09690;
  padding: 60px 0;
  font-family: 'Inter', sans-serif;
}

.fd-disclaimer-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 138, 61, 0.15);
  padding-bottom: 0.5rem;
}

.fd-disclaimer-section h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
}

.fd-disclaimer-section p,
.fd-disclaimer-section li {
  font-size: 1rem;
  line-height: 1.7;
  color: #a09690;
}

.fd-disclaimer-section .card-custom {
  background-color: #16110e;
  border: 1px solid rgba(255, 138, 61, 0.15);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.fd-disclaimer-section .alert-custom {
  background-color: rgba(255, 138, 61, 0.05);
  border-left: 4px solid #ff8a3d;
  color: #ffffff;
  padding: 1.25rem;
  border-radius: 4px;
  margin-bottom: 2rem;
}

.fd-disclaimer-section .alert-custom i {
  color: #ff8a3d;
  margin-right: 0.75rem;
}

.fd-disclaimer-section .list-custom {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.fd-disclaimer-section .list-custom li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.fd-disclaimer-section .list-custom li::before {
  content: "\f0a9";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #ff8a3d;
}

.fd-disclaimer-section .btn-primary-custom {
  background-color: #ff8a3d;
  color: #16110e;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  border: 1px solid #ff8a3d;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 138, 61, 0.3);
  text-decoration: none;
  display: inline-block;
  transition: none;
}

.fd-disclaimer-section .btn-primary-custom:hover {
  background-color: transparent;
  color: #ffffff;
  border-color: #ff8a3d;
  box-shadow: 0 0 15px rgba(255, 138, 61, 0.5);
}

@media (max-width: 768px) {
  .fd-disclaimer-section {
    padding: 40px 0;
  }
  .fd-disclaimer-section .card-custom {
    padding: 1.5rem;
  }
  .fd-disclaimer-section h1 {
    font-size: 1.75rem;
  }
  .fd-disclaimer-section h2 {
    font-size: 1.25rem;
  }
}

.comment-card {
    background-color: #16110E;
    border: 1px solid rgba(255, 138, 61, 0.15);
    border-radius: 16px;
    color: #FFFFFF;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    position: relative;
    transition: none;
}

.comment-card:hover {
    border-color: rgba(255, 138, 61, 0.4);
    box-shadow: 0 0 15px rgba(255, 138, 61, 0.1);
}

.avatar-initials {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
    font-weight: 700;
    color: #16110E;
    background: linear-gradient(135deg, #FF8A3D 0%, #FFB076 100%);
    flex-shrink: 0;
    user-select: none;
    object-fit: cover;
}

.main-avatar {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
}

.commenter-name {
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.2;
}

.commenter-role {
    font-size: 0.8rem;
    color: #FF8A3D;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-top: 2px;
}

.comment-time {
    font-size: 0.85rem;
    color: #6E6560;
}

.comment-text {
    color: #A09690;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.btn-comment-action {
    background: transparent;
    border: none;
    color: #A09690;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.btn-comment-action:hover {
    color: #FF8A3D;
}

.badge-status-verified {
    font-size: 0.75rem;
    background-color: rgba(255, 138, 61, 0.1);
    color: #FF8A3D;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid rgba(255, 138, 61, 0.2);
    font-weight: 600;
    margin-left: auto;
}

.reply-comment {
    background-color: #110D0B;
    border: 1px solid rgba(255, 138, 61, 0.08);
    border-left: 3px solid #FF8A3D;
    border-radius: 12px;
    margin-left: 2.5rem;
    position: relative;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: #FFFFFF;
    transition: none;
}

.reply-comment:hover {
    border-color: rgba(255, 138, 61, 0.3);
    border-left-color: #FF8A3D;
}

.reply-avatar {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
    background: linear-gradient(135deg, #A09690 0%, #6E6560 100%);
    color: #0B0806;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
    font-weight: 700;
    flex-shrink: 0;
    user-select: none;
    object-fit: cover;
}

.commenter-name {
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.2;
}

.commenter-role {
    font-size: 0.75rem;
    color: #A09690;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-top: 2px;
}

.comment-time {
    font-size: 0.8rem;
    color: #6E6560;
}

.comment-text {
    color: #A09690;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.btn-comment-action {
    background: transparent;
    border: none;
    color: #A09690;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.btn-comment-action:hover {
    color: #FF8A3D;
}


/* ===== PAGE TEMPLATE: methodology ===== */
.fielddecision-header {
    background-color: #16110E;
    border-bottom: 1px solid rgba(255, 138, 61, 0.15);
    position: sticky;
    top: 0;
    z-index: 1050;
}

.fielddecision-header .navbar {
    background-color: #16110E !important;
    padding: 15px 0;
}

.fielddecision-header .header-logo {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.fielddecision-header .brand-text {
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.fielddecision-header .nav-link {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-weight: 500;
    color: #A09690 !important;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    transition: color 0.2s ease-in-out;
}

.fielddecision-header .nav-link:hover,
.fielddecision-header .nav-link:focus,
.fielddecision-header .nav-link.active {
    color: #FF8A3D !important;
}

.fielddecision-header .header-cta-btn {
    background-color: #FF8A3D;
    color: #16110E !important;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
}

.fielddecision-header .header-cta-btn:hover {
    background-color: #FFFFFF;
    color: #16110E !important;
}

@media (max-width: 991.98px) {
    .fielddecision-header .navbar-collapse {
        background-color: #16110E;
        padding: 15px;
        border-top: 1px solid rgba(255, 138, 61, 0.15);
        margin-top: 10px;
    }

    .fielddecision-header .header-cta-btn {
        margin-top: 10px;
        display: block;
    }
}

.field-decision-footer {
    background-color: #0B0806;
    border-top: 1px solid rgba(255, 138, 61, 0.15);
    color: #A09690;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.field-decision-footer .footer-disclaimer-box {
    background-color: #16110E;
    border: 1px solid rgba(255, 138, 61, 0.15);
    border-left: 4px solid #FF8A3D;
    border-radius: 8px;
}

.field-decision-footer .disclaimer-title {
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1.1rem;
}

.field-decision-footer .disclaimer-title i {
    color: #FF8A3D;
}

.field-decision-footer .disclaimer-text {
    color: #A09690;
    font-size: 0.9rem;
    line-height: 1.6;
}

.field-decision-footer .footer-brand {
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
    color: #FFFFFF;
    font-weight: 700;
}

.field-decision-footer .footer-desc {
    color: #A09690;
    font-size: 0.95rem;
    line-height: 1.6;
}

.field-decision-footer .footer-heading {
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1.1rem;
}

.field-decision-footer .footer-links a {
    color: #A09690;
    text-decoration: none;
    font-size: 0.95rem;
}

.field-decision-footer .footer-links a:hover {
    color: #FF8A3D;
}

.field-decision-footer .contact-item {
    font-size: 0.95rem;
    color: #A09690;
}

.field-decision-footer .contact-label {
    color: #FFFFFF;
    font-weight: 500;
}

.field-decision-footer .contact-item a {
    color: #FF8A3D;
    text-decoration: none;
}

.field-decision-footer .contact-item a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.field-decision-footer .btn-whatsapp-link {
    background-color: #FF8A3D;
    color: #0B0806;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
}

.field-decision-footer .btn-whatsapp-link:hover {
    background-color: #FFFFFF;
    color: #0B0806;
}

.field-decision-footer .footer-bottom {
    border-top: 1px solid rgba(255, 138, 61, 0.1);
}

.field-decision-footer .copyright-text {
    color: #6E6560;
    font-size: 0.85rem;
}

.field-decision-footer .footer-legal-links a {
    color: #6E6560;
    text-decoration: none;
    font-size: 0.85rem;
}

.field-decision-footer .footer-legal-links a:hover {
    color: #FF8A3D;
}

.methodology-detail-page {
    background-color: #0B0806;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
}

.methodology-detail-page .field-hero {
    background-color: #0B0806;
    min-height: 40vh;
    display: flex;
    align-items: center;
    position: relative;
}

.methodology-detail-page .field-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(22, 17, 14, 0.9) 0%, rgba(11, 8, 6, 1) 100%);
    z-index: 2;
}

.methodology-detail-page .field-hero-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 138, 61, 0.12) 0%, rgba(255, 138, 61, 0) 70%);
    top: 0;
    right: 10%;
    pointer-events: none;
    z-index: 2;
}

.methodology-detail-page .field-hero .container {
    position: relative;
    z-index: 3;
}

.methodology-detail-page .text-accent {
    color: #FF8A3D !important;
}

.methodology-detail-page .field-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.2;
    color: #FFFFFF !important;
}

.methodology-detail-page .field-hero-description {
    font-size: 1.15rem;
    color: #A09690;
    max-width: 800px;
}

.methodology-detail-page .detail-main-img {
    height: 450px;
    object-fit: cover;
    border: 1px solid rgba(255, 138, 61, 0.15);
}

@media (max-width: 768px) {
    .methodology-detail-page .field-hero-title {
        font-size: 18px !important;
    }

    .methodology-detail-page .field-hero-description {
        font-size: 0.95rem;
    }

    .methodology-detail-page .detail-main-img {
        height: 250px;
    }
}

.methodology-detail-page .detail-rich-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #FFFFFF !important;
    margin-top: 30px;
    margin-bottom: 15px;
}

.methodology-detail-page .detail-rich-text h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #FFFFFF !important;
    margin-top: 25px;
    margin-bottom: 12px;
}

.methodology-detail-page .detail-rich-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #A09690;
    margin-bottom: 20px;
}

.methodology-detail-page .accordion-button {
    background-color: #16110E !important;
    color: #FFFFFF !important;
    border: 1px solid rgba(255, 138, 61, 0.15);
    border-radius: 8px !important;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: none !important;
    padding: 18px;
}

.methodology-detail-page .accordion-button:not(.collapsed) {
    border-color: #FF8A3D;
    background-color: rgba(255, 138, 61, 0.05) !important;
}

.methodology-detail-page .accordion-button::after {
    filter: invert(1) sepia(1) saturate(5) hue-rotate(330deg);
}

.methodology-detail-page .step-badge {
    background-color: rgba(255, 138, 61, 0.1);
    color: #FF8A3D;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
}

.methodology-detail-page .accordion-body {
    background-color: #16110E;
    border: 1px solid rgba(255, 138, 61, 0.1);
    border-top: 0;
    border-radius: 0 0 8px 8px;
    padding: 20px;
    color: #A09690 !important;
    line-height: 1.6;
}

.methodology-detail-page .counseling-form-block {
    background-color: #16110E;
    border: 1px solid rgba(255, 138, 61, 0.15);
}

.methodology-detail-page .form-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: #FFFFFF !important;
}

.methodology-detail-page .bg-dark-input {
    background-color: #0B0806;
    border: 1px solid rgba(255, 138, 61, 0.15);
}

.methodology-detail-page .bg-dark-input:focus {
    background-color: #0B0806;
    border-color: #FF8A3D;
    box-shadow: 0 0 0 0.2rem rgba(255, 138, 61, 0.25);
    color: #FFFFFF;
}

.methodology-detail-page .bg-dark-input::placeholder {
    color: #6E6560 !important;
    opacity: 1;
}

.methodology-detail-page .btn-primary-custom {
    background-color: #FF8A3D;
    color: #16110E;
    border: 2px solid #FF8A3D;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 138, 61, 0.25);
    transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.methodology-detail-page .btn-primary-custom:hover {
    background-color: transparent;
    color: #FF8A3D;
    border-color: #FF8A3D;
}

.methodology-detail-page .sidebar-card {
    background-color: #16110E;
    border: 1px solid rgba(255, 138, 61, 0.15);
}

.methodology-detail-page .sidebar-card .card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    border-bottom: 1px solid rgba(255, 138, 61, 0.15);
    padding-bottom: 12px;
}

.methodology-detail-page .font-weight-semibold {
    font-weight: 600;
}

.methodology-detail-page .bg-accent-dim {
    background-color: rgba(255, 138, 61, 0.1);
}

.methodology-detail-page .border-bottom-card {
    border-bottom: 1px solid rgba(255, 138, 61, 0.1);
}

.methodology-detail-page .related-title {
    font-size: 0.95rem;
    transition: color 0.2s;
}

.methodology-detail-page .text-accent-hover:hover {
    color: #FF8A3D !important;
}

.methodology-detail-page .btn-share-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 138, 61, 0.15);
    font-size: 0.95rem;
    transition: background-color 0.2s, color 0.2s;
}

.methodology-detail-page .btn-share-icon:hover {
    background-color: #FF8A3D;
    color: #16110E !important;
}

.methodology-detail-page .comment-card {
    background-color: #16110E;
    border: 1px solid rgba(255, 138, 61, 0.15);
    border-radius: 12px;
}

.methodology-detail-page .reply-comment {
    margin-left: 48px;
    border-left: 3px solid #FF8A3D;
}

.methodology-detail-page .avatar-initials {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: #16110E;
    font-size: 1rem;
    flex-shrink: 0;
}

.methodology-detail-page .main-avatar {
    background-color: #FF8A3D;
}

.methodology-detail-page .reply-avatar {
    background-color: #FFFFFF;
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
}

.methodology-detail-page .commenter-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: #FFFFFF !important;
    font-size: 1.05rem;
}

.methodology-detail-page .commenter-role {
    font-size: 0.8rem;
    color: #A09690;
    display: block;
}

.methodology-detail-page .comment-time {
    font-size: 0.8rem;
    color: #6E6560;
}

.methodology-detail-page .comment-text {
    font-size: 0.95rem;
    color: #A09690;
    line-height: 1.6;
    margin: 10px 0 0 0;
}

.methodology-detail-page .btn-comment-action {
    background: none;
    border: none;
    color: #6E6560;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}

.methodology-detail-page .btn-comment-action:hover,
.methodology-detail-page .btn-comment-action.active {
    color: #FF8A3D;
}

.methodology-detail-page .badge-status-verified {
    font-size: 0.75rem;
    color: #FF8A3D;
    background-color: rgba(255, 138, 61, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.methodology-detail-page .stars-rating {
    display: flex;
    gap: 4px;
}

.methodology-detail-page .stars-rating i {
    cursor: pointer;
    font-size: 1rem;
    color: #6E6560;
    transition: color 0.1s;
}

.methodology-detail-page .stars-rating i.active {
    color: #FF8A3D;
}

@media (max-width: 767.98px) {
    .methodology-detail-page .detail-rich-text h2 {
        font-size: 16px !important;
    }

    .methodology-detail-page .detail-rich-text h3 {
        font-size: 14px !important;
    }

    .methodology-detail-page .counseling-form-block .form-title {
        font-size: 16px !important;
    }
}

@media (max-width: 576px) {
    .methodology-detail-page .reply-comment {
        margin-left: 20px;
    }
}

/* ===== PAGE TEMPLATE: documents ===== */
.fielddecision-header {
    background-color: #16110E;
    border-bottom: 1px solid rgba(255, 138, 61, 0.15);
    position: sticky;
    top: 0;
    z-index: 1050;
}

.fielddecision-header .navbar {
    background-color: #16110E !important;
    padding: 15px 0;
}

.fielddecision-header .header-logo {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.fielddecision-header .brand-text {
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.fielddecision-header .nav-link {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-weight: 500;
    color: #A09690 !important;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    transition: color 0.2s ease-in-out;
}

.fielddecision-header .nav-link:hover,
.fielddecision-header .nav-link:focus,
.fielddecision-header .nav-link.active {
    color: #FF8A3D !important;
}

.fielddecision-header .header-cta-btn {
    background-color: #FF8A3D;
    color: #16110E !important;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
}

.fielddecision-header .header-cta-btn:hover {
    background-color: #FFFFFF;
    color: #16110E !important;
}

@media (max-width: 991.98px) {
    .fielddecision-header .navbar-collapse {
        background-color: #16110E;
        padding: 15px;
        border-top: 1px solid rgba(255, 138, 61, 0.15);
        margin-top: 10px;
    }

    .fielddecision-header .header-cta-btn {
        margin-top: 10px;
        display: block;
    }
}

.field-decision-footer {
    background-color: #0B0806;
    border-top: 1px solid rgba(255, 138, 61, 0.15);
    color: #A09690;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.field-decision-footer .footer-disclaimer-box {
    background-color: #16110E;
    border: 1px solid rgba(255, 138, 61, 0.15);
    border-left: 4px solid #FF8A3D;
    border-radius: 8px;
}

.field-decision-footer .disclaimer-title {
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1.1rem;
}

.field-decision-footer .disclaimer-title i {
    color: #FF8A3D;
}

.field-decision-footer .disclaimer-text {
    color: #A09690;
    font-size: 0.9rem;
    line-height: 1.6;
}

.field-decision-footer .footer-brand {
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
    color: #FFFFFF;
    font-weight: 700;
}

.field-decision-footer .footer-desc {
    color: #A09690;
    font-size: 0.95rem;
    line-height: 1.6;
}

.field-decision-footer .footer-heading {
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1.1rem;
}

.field-decision-footer .footer-links a {
    color: #A09690;
    text-decoration: none;
    font-size: 0.95rem;
}

.field-decision-footer .footer-links a:hover {
    color: #FF8A3D;
}

.field-decision-footer .contact-item {
    font-size: 0.95rem;
    color: #A09690;
}

.field-decision-footer .contact-label {
    color: #FFFFFF;
    font-weight: 500;
}

.field-decision-footer .contact-item a {
    color: #FF8A3D;
    text-decoration: none;
}

.field-decision-footer .contact-item a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.field-decision-footer .btn-whatsapp-link {
    background-color: #FF8A3D;
    color: #0B0806;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
}

.field-decision-footer .btn-whatsapp-link:hover {
    background-color: #FFFFFF;
    color: #0B0806;
}

.field-decision-footer .footer-bottom {
    border-top: 1px solid rgba(255, 138, 61, 0.1);
}

.field-decision-footer .copyright-text {
    color: #6E6560;
    font-size: 0.85rem;
}

.field-decision-footer .footer-legal-links a {
    color: #6E6560;
    text-decoration: none;
    font-size: 0.85rem;
}

.field-decision-footer .footer-legal-links a:hover {
    color: #FF8A3D;
}

.doc-detail-section {
    background-color: #0B0806;
    color: #A09690;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    padding-bottom: 60px;
}

.doc-detail-section .breadcrumb-item a {
    color: #FF8A3D;
    text-decoration: none;
}

.doc-detail-section .breadcrumb-item a:hover {
    color: #FFFFFF;
}

.doc-detail-section .breadcrumb-item::before {
    color: #6E6560;
}

.doc-detail-section .doc-detail-hero {
    background: radial-gradient(circle at 80% 20%, rgba(255, 138, 61, 0.08) 0%, rgba(11, 8, 6, 0) 60%), #16110E;
    border-bottom: 1px solid rgba(255, 138, 61, 0.15);
    padding: 40px 0;
}

.doc-detail-section .doc-badge {
    background-color: rgba(255, 138, 61, 0.1);
    color: #FF8A3D;
    border: 1px solid rgba(255, 138, 61, 0.2);
    padding: 6px 12px;
    border-radius: 30px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
}

.doc-detail-section .doc-title {
    font-family: 'Space Grotesk', sans-serif;
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 2.25rem;
}

.doc-detail-section .doc-subtitle {
    font-size: 1.1rem;
    color: #A09690;
}

.doc-detail-section .doc-meta {
    font-size: 0.9rem;
}

.doc-detail-section .meta-item {
    color: #6E6560;
}

.doc-detail-section .meta-item i {
    color: #FF8A3D;
}

.doc-detail-section .doc-hero-img {
    border: 1px solid rgba(255, 138, 61, 0.2);
    border-radius: 12px;
    max-height: 240px;
    width: 100%;
    object-fit: cover;
}

.doc-detail-section .doc-sidebar-card,
.doc-detail-section .share-card {
    background-color: #16110E;
    border: 1px solid rgba(255, 138, 61, 0.15);
    border-radius: 16px;
}

.doc-detail-section .sidebar-card-title,
.doc-detail-section .share-title {
    font-family: 'Space Grotesk', sans-serif;
    color: #FFFFFF !important;
    font-weight: 600;
}

.doc-detail-section .form-label {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.9rem;
}

.doc-detail-section .form-control,
.doc-detail-section .form-select {
    background-color: #0B0806;
    border: 1px solid rgba(255, 138, 61, 0.2);
    color: #FFFFFF;
    border-radius: 8px;
    padding: 10px 14px;
}

.doc-detail-section .form-control:focus,
.doc-detail-section .form-select:focus {
    border-color: #FF8A3D;
    box-shadow: 0 0 0 2px rgba(255, 138, 61, 0.2);
    outline: none;
    background-color: #0B0806;
    color: #FFFFFF;
}

.doc-detail-section .form-control::placeholder {
    color: #6E6560;
    opacity: 1;
}

.doc-detail-section .btn-download-submit {
    background-color: #FF8A3D;
    color: #16110E;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    border-radius: 8px;
    padding: 12px;
    border: none;
}

.doc-detail-section .btn-download-submit:hover {
    background-color: #FFFFFF;
    color: #16110E;
}

.doc-detail-section .btn-share {
    border: 1px solid rgba(255, 138, 61, 0.2);
    background-color: #0B0806;
    color: #FFFFFF;
    border-radius: 8px;
    padding: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: 'Space Grotesk', sans-serif;
    text-decoration: none;
}

.doc-detail-section .btn-share:hover {
    background-color: #FF8A3D;
    color: #16110E;
    border-color: #FF8A3D;
}

.doc-detail-section .nav-tabs {
    border-bottom: 2px solid rgba(255, 138, 61, 0.15);
}

.doc-detail-section .nav-tabs .nav-link {
    color: #A09690;
    background: none;
    border: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    padding: 12px 20px;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}

.doc-detail-section .nav-tabs .nav-link:hover {
    color: #FFFFFF;
}

.doc-detail-section .nav-tabs .nav-link.active {
    color: #FF8A3D;
    border-bottom: 2px solid #FF8A3D;
}

.doc-detail-section .doc-tab-content {
    background-color: #16110E;
    border: 1px solid rgba(255, 138, 61, 0.15);
    border-top: none;
    border-radius: 0 0 16px 16px;
}

.doc-detail-section .content-heading {
    font-family: 'Space Grotesk', sans-serif;
    color: #FFFFFF !important;
    font-weight: 600;
    font-size: 1.5rem;
}

.doc-detail-section .content-subheading {
    font-family: 'Space Grotesk', sans-serif;
    color: #FFFFFF !important;
    font-weight: 600;
    font-size: 1.2rem;
}

.doc-detail-section .content-list {
    list-style: none;
    padding-left: 0;
}

.doc-detail-section .content-list li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.doc-detail-section .text-accent {
    color: #FF8A3D;
}

.doc-detail-section .accordion-card {
    background-color: #0B0806;
    border: 1px solid rgba(255, 138, 61, 0.15);
    border-radius: 8px;
}

.doc-detail-section .accordion-header {
    cursor: pointer;
}

.doc-detail-section .accordion-title {
    font-family: 'Space Grotesk', sans-serif;
    color: #FFFFFF !important;
    font-weight: 500;
    font-size: 1.05rem;
}

.doc-detail-section .accordion-icon {
    color: #FF8A3D;
}

.doc-detail-section .content-ordered-list {
    padding-left: 20px;
}

.doc-detail-section .content-ordered-list li strong {
    color: #FFFFFF;
}

.doc-related-section {
    background-color: #0B0806;
}

.doc-related-section .section-title {
    font-family: 'Space Grotesk', sans-serif;
    color: #FFFFFF !important;
    font-weight: 700;
}

.doc-related-section .related-card {
    background-color: #16110E;
    border: 1px solid rgba(255, 138, 61, 0.15);
    border-radius: 16px;
}

.doc-related-section .related-badge {
    background-color: rgba(255, 138, 61, 0.1);
    color: #FF8A3D;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.doc-related-section .related-title {
    font-family: 'Space Grotesk', sans-serif;
    color: #FFFFFF !important;
    font-weight: 600;
    font-size: 1.15rem;
}

.doc-related-section .related-desc {
    font-size: 0.9rem;
    color: #A09690;
}

.doc-related-section .btn-outline-related {
    border: 1px solid #FF8A3D;
    color: #FF8A3D;
    background: transparent;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    border-radius: 8px;
    padding: 10px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.doc-related-section .btn-outline-related:hover {
    background-color: #FF8A3D;
    color: #16110E;
}

.doc-detail-section .comments-section-container {
    border-top: 1px solid rgba(255, 138, 61, 0.15);
    padding-top: 40px;
}

.doc-detail-section .comment-card {
    background-color: #16110E;
    border: 1px solid rgba(255, 138, 61, 0.15);
    border-radius: 12px;
}

.doc-detail-section .reply-comment {
    margin-left: 40px;
    border-left: 3px solid #FF8A3D;
}

.doc-detail-section .avatar-initials {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #FF8A3D;
    color: #16110E;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.doc-detail-section .reply-avatar {
    width: 40px;
    height: 40px;
    background-color: #A09690;
}

.doc-detail-section .commenter-name {
    font-family: 'Space Grotesk', sans-serif;
    color: #FFFFFF !important;
    font-weight: 600;
}

.doc-detail-section .commenter-role {
    font-size: 0.8rem;
    color: #FF8A3D;
}

.doc-detail-section .comment-time {
    font-size: 0.8rem;
    color: #6E6560;
}

.doc-detail-section .comment-text {
    color: #FFFFFF;
    font-size: 0.95rem;
    line-height: 1.5;
}

.doc-detail-section .btn-comment-action {
    background: none;
    border: none;
    color: #A09690;
    font-size: 0.85rem;
    padding: 0;
}

.doc-detail-section .btn-comment-action:hover {
    color: #FF8A3D;
}

.doc-detail-section .btn-comment-action.active-vote {
    color: #FF8A3D;
    font-weight: bold;
}

.doc-detail-section .badge-status-verified {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.doc-detail-section .comment-form-box {
    background-color: #16110E;
    border: 1px solid rgba(255, 138, 61, 0.15);
    border-radius: 12px;
}

.doc-detail-section .form-title {
    font-family: 'Space Grotesk', sans-serif;
    color: #FFFFFF !important;
    font-weight: 600;
}

.doc-detail-section .btn-comment-submit {
    background-color: #FF8A3D;
    color: #16110E;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    border-radius: 6px;
    border: none;
}

.doc-detail-section .btn-comment-submit:hover {
    background-color: #FFFFFF;
    color: #16110E;
}

.doc-detail-section .no-comments-placeholder {
    background-color: #16110E;
    border: 1px dashed rgba(255, 138, 61, 0.3);
    border-radius: 12px;
}

@media (max-width: 767.98px) {
    .doc-detail-section .doc-title {
        font-size: 18px !important;
    }

    .doc-detail-section .content-heading {
        font-size: 16px !important;
    }

    .doc-detail-section .content-subheading,
    .doc-detail-section .sidebar-card-title,
    .doc-detail-section .share-title {
        font-size: 14px !important;
    }

    .doc-detail-section .reply-comment {
        margin-left: 20px;
    }
}

/* ===== PAGE TEMPLATE: core-materials ===== */
.core-materials-detail {
    background-color: #0B0806;
    color: #FFFFFF;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.core-materials-detail .detail-hero {
    background-color: #16110E;
    border-bottom: 1px solid rgba(255, 138, 61, 0.15);
    position: relative;
    overflow: hidden;
}

.core-materials-detail .detail-hero-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 138, 61, 0.1) 0%, rgba(255, 138, 61, 0) 70%);
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
}

.core-materials-detail .detail-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF !important;
    line-height: 1.2;
}

.core-materials-detail .detail-hero-subtitle {
    font-size: 1.1rem;
    color: #A09690;
    max-width: 700px;
}

.core-materials-detail .meta-badge {
    background-color: rgba(255, 138, 61, 0.1);
    color: #FF8A3D;
    border: 1px solid rgba(255, 138, 61, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.core-materials-detail .detail-main-img {
    border: 1px solid rgba(255, 138, 61, 0.15);
    border-radius: 16px;
    width: 100%;
    max-height: 450px;
    object-fit: cover;
}

.core-materials-detail .detail-rich-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 1.75rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.core-materials-detail .detail-rich-text h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: #FFFFFF !important;
    font-weight: 600;
    font-size: 1.4rem;
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
}

.core-materials-detail .detail-rich-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #A09690;
    margin-bottom: 1.25rem;
}

.core-materials-detail .detail-rich-text ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.25rem;
}

.core-materials-detail .detail-rich-text ul li {
    position: relative;
    padding-left: 1.5rem;
    color: #A09690;
    margin-bottom: 0.5rem;
}

.core-materials-detail .detail-rich-text ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #FF8A3D;
    font-weight: bold;
}

.core-materials-detail .sidebar-card {
    background-color: #16110E;
    border: 1px solid rgba(255, 138, 61, 0.15);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.core-materials-detail .sidebar-card-title {
    font-family: 'Space Grotesk', sans-serif;
    color: #FFFFFF !important;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 138, 61, 0.1);
    padding-bottom: 8px;
}

.core-materials-detail .recent-posts-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.core-materials-detail .recent-post-item {
    margin-bottom: 12px;
}

.core-materials-detail .recent-post-link {
    color: #A09690;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.core-materials-detail .recent-post-link:hover {
    color: #FF8A3D;
}

.core-materials-detail .tab-nav {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 138, 61, 0.15);
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.core-materials-detail .tab-btn {
    background: none;
    border: none;
    color: #A09690;
    padding: 10px 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.core-materials-detail .tab-btn.is-active {
    color: #FF8A3D;
    border-bottom-color: #FF8A3D;
}

.core-materials-detail .tab-content-panel {
    display: none;
}

.core-materials-detail .tab-content-panel.is-active {
    display: block;
}

.core-materials-detail .comments-section {
    border-top: 1px solid rgba(255, 138, 61, 0.15);
    padding-top: 40px;
    margin-top: 40px;
}

.core-materials-detail .comment-card {
    background-color: #16110E;
    border: 1px solid rgba(255, 138, 61, 0.15);
    border-radius: 12px;
    color: #FFFFFF;
}

.core-materials-detail .comment-card.reply-comment {
    margin-left: 40px;
    border-left: 3px solid #FF8A3D;
}

.core-materials-detail .avatar-initials {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #FF8A3D;
    color: #16110E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
}

.core-materials-detail .reply-avatar {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
}

.core-materials-detail .commenter-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #FFFFFF;
}

.core-materials-detail .commenter-role {
    font-size: 0.8rem;
    color: #A09690;
    display: block;
}

.core-materials-detail .comment-time {
    font-size: 0.8rem;
    color: #6E6560;
}

.core-materials-detail .comment-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #A09690;
}

.core-materials-detail .btn-comment-action {
    background: none;
    border: none;
    color: #A09690;
    font-size: 0.85rem;
    padding: 0;
    cursor: pointer;
    transition: color 0.2s ease;
}

.core-materials-detail .btn-comment-action:hover {
    color: #FF8A3D;
}

.core-materials-detail .btn-comment-action.active {
    color: #FF8A3D;
}

.core-materials-detail .badge-status-verified {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.core-materials-detail .comment-form-container {
    background-color: #16110E;
    border: 1px solid rgba(255, 138, 61, 0.15);
    border-radius: 12px;
    padding: 24px;
}

.core-materials-detail .comment-form-container .form-control {
    background-color: #0B0806;
    border: 1px solid rgba(255, 138, 61, 0.15);
    color: #FFFFFF;
}

.core-materials-detail .comment-form-container .form-control:focus {
    border-color: #FF8A3D;
    box-shadow: 0 0 0 0.25rem rgba(255, 138, 61, 0.25);
}

.core-materials-detail .comment-form-container .form-control::placeholder {
    color: #6E6560;
}

.core-materials-detail .btn-submit-comment {
    background-color: #FF8A3D;
    color: #16110E;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.core-materials-detail .btn-submit-comment:hover {
    background-color: #FFFFFF;
}

.core-materials-detail .share-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 138, 61, 0.1);
    color: #FF8A3D;
    margin-right: 8px;
    transition: all 0.2s ease;
}

.core-materials-detail .share-link:hover {
    background-color: #FF8A3D;
    color: #16110E;
}


.fielddecision-header {
    background-color: #16110E;
    border-bottom: 1px solid rgba(255, 138, 61, 0.15);
    position: sticky;
    top: 0;
    z-index: 1050;
}

.fielddecision-header .navbar {
    background-color: #16110E !important;
    padding: 15px 0;
}

.fielddecision-header .header-logo {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.fielddecision-header .brand-text {
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.fielddecision-header .nav-link {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-weight: 500;
    color: #A09690 !important;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    transition: color 0.2s ease-in-out;
}

.fielddecision-header .nav-link:hover,
.fielddecision-header .nav-link:focus,
.fielddecision-header .nav-link.active {
    color: #FF8A3D !important;
}

.fielddecision-header .header-cta-btn {
    background-color: #FF8A3D;
    color: #16110E !important;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
}

.fielddecision-header .header-cta-btn:hover {
    background-color: #FFFFFF;
    color: #16110E !important;
}

.field-decision-footer {
    background-color: #0B0806;
    border-top: 1px solid rgba(255, 138, 61, 0.15);
    color: #A09690;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.field-decision-footer .footer-disclaimer-box {
    background-color: #16110E;
    border: 1px solid rgba(255, 138, 61, 0.15);
    border-left: 4px solid #FF8A3D;
    border-radius: 8px;
}

.field-decision-footer .disclaimer-title {
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1.1rem;
}

.field-decision-footer .disclaimer-title i {
    color: #FF8A3D;
}

.field-decision-footer .disclaimer-text {
    color: #A09690;
    font-size: 0.9rem;
    line-height: 1.6;
}

.field-decision-footer .footer-brand {
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
    color: #FFFFFF;
    font-weight: 700;
}

.field-decision-footer .footer-desc {
    color: #A09690;
    font-size: 0.95rem;
    line-height: 1.6;
}

.field-decision-footer .footer-heading {
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1.1rem;
}

.field-decision-footer .footer-links a {
    color: #A09690;
    text-decoration: none;
    font-size: 0.95rem;
}

.field-decision-footer .footer-links a:hover {
    color: #FF8A3D;
}

.field-decision-footer .contact-item {
    font-size: 0.95rem;
    color: #A09690;
}

.field-decision-footer .contact-label {
    color: #FFFFFF;
    font-weight: 500;
}

.field-decision-footer .contact-item a {
    color: #FF8A3D;
    text-decoration: none;
}

.field-decision-footer .contact-item a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.field-decision-footer .btn-whatsapp-link {
    background-color: #FF8A3D;
    color: #0B0806;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
}

.field-decision-footer .btn-whatsapp-link:hover {
    background-color: #FFFFFF;
    color: #0B0806;
}

.field-decision-footer .footer-bottom {
    border-top: 1px solid rgba(255, 138, 61, 0.1);
}

.field-decision-footer .copyright-text {
    color: #6E6560;
    font-size: 0.85rem;
}

.field-decision-footer .footer-legal-links a {
    color: #6E6560;
    text-decoration: none;
    font-size: 0.85rem;
}

.field-decision-footer .footer-legal-links a:hover {
    color: #FF8A3D;
}

@media (max-width: 991.98px) {
    .fielddecision-header .navbar-collapse {
        background-color: #16110E;
        padding: 15px;
        border-top: 1px solid rgba(255, 138, 61, 0.15);
        margin-top: 10px;
    }

    .fielddecision-header .header-cta-btn {
        margin-top: 10px;
        display: block;
    }
}

@media (max-width: 767.98px) {
    .core-materials-detail .detail-hero-title {
        font-size: 18px !important;
    }

    .core-materials-detail .detail-rich-text h2 {
        font-size: 16px !important;
    }

    .core-materials-detail .detail-rich-text h3 {
        font-size: 14px !important;
    }

    .core-materials-detail .comment-card.reply-comment {
        margin-left: 15px;
    }
}