/* Consulting Page Styles */

/* --- Hero Section --- */
.page-hero {
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(11, 15, 20, 0) 20%, var(--bg-dark) 100%),
        radial-gradient(ellipse at top, rgba(20, 26, 34, 0.8), transparent 70%);
    z-index: -2;
}

.hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

/* --- Cards (Audit Areas) --- */
.feature-card {
    background: linear-gradient(135deg, rgba(26, 34, 46, 0.95) 0%, rgba(15, 20, 28, 0.95) 100%);
    border: 1px solid rgba(242, 183, 44, 0.15);
    padding: 50px 35px;
    border-radius: 20px;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(242, 183, 44, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 70px rgba(242, 183, 44, 0.25), 0 10px 30px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, rgba(26, 34, 46, 1) 0%, rgba(20, 26, 34, 1) 100%);
}

.feature-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(242, 183, 44, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--primary-gold);
    font-size: 1.8rem;
    transition: all 0.4s ease;
}

.feature-card i {
    transition: all 0.5s ease;
}

.feature-card:hover i {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 20px var(--primary-gold));
}

/* --- Check Lists --- */
.check-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    height: 20px;
    background: rgba(242, 183, 44, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 0.6rem;
}

/* --- OS Grid --- */
.os-grid-item {
    background: var(--bg-mid);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 16px;
    height: 100%;
    transition: all 0.3s ease;
}

.os-grid-item:hover {
    border-color: rgba(242, 183, 44, 0.4);
    background: linear-gradient(145deg, var(--bg-mid), rgba(242, 183, 44, 0.05));
}

/* --- Deliverables Enhanced --- */
.deliverable-card {
    background: linear-gradient(135deg, rgba(26, 34, 46, 0.95) 0%, rgba(15, 20, 28, 0.95) 100%);
    border: 1px solid rgba(242, 183, 44, 0.15);
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.deliverable-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(242, 183, 44, 0.1), transparent);
    transition: left 0.6s ease;
}

.deliverable-card:hover::before {
    left: 100%;
}

.deliverable-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: var(--primary-gold);
    box-shadow: 0 25px 70px rgba(242, 183, 44, 0.25), 0 10px 30px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, rgba(26, 34, 46, 1) 0%, rgba(20, 26, 34, 1) 100%);
}

.deliverable-number {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1;
    user-select: none;
}

/* --- Scroll Progress --- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--primary-gold);
    width: 0%;
    z-index: 9999;
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: var(--bg-mid);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-gold);
    color: #000;
    transform: translateY(-5px);
}