/* FEAR CSS VERSION 1 */

/* SECTION */

.fear_section {
    position: relative;
    z-index: 6;
}

/* GOLD BACKGROUND + SHADOW */

.fear_container_wrap {
    position: relative;
	margin-top: -128px;
    background: linear-gradient(180deg, #f0d77a 0%, #d4af37 100%);
    padding-top: 4rem;
    padding-bottom: 4rem;
	border-bottom: 1px solid #454545;

    /* SAME LAYER STYLE */
    box-shadow:
        0 8px 18px rgba(0, 0, 0, 0.12),
        0 2px 4px rgba(0, 0, 0, 0.08);
}

.fear_container_wrap::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.08), transparent);
    pointer-events: none;
}

/* HEADER */

.fear_header {
    max-width: 50rem;
}

/* GRID */

.fear_grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

/* ITEMS */

.fear_item {
    background: rgba(0, 0, 0, 0.85);
    color: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem 1.2rem;
    text-align: center;
	border: 2px solid #FFF;

    box-shadow:
        0 6px 12px rgba(0, 0, 0, 0.25),
        0 2px 4px rgba(0, 0, 0, 0.18);
}

/* ICON */

.fear_icon {
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 auto 0.75rem;
    border-radius: 50%;
    background: #d4af37;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* TEXT */

.fear_item h3 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
	color: #FFF;
}

.fear_item p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
}

/* FOOTER */

.fear_footer {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

/* BUTTON VARIANTS */

.button_dark {
    background: #111;
    color: #fff;
}

.button_light {
    background: transparent;
    border: 1px solid #111;
    color: #111;
}

/* RESPONSIVE */

@media (max-width: 1023px) {
    .fear_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {

    .fear_container_wrap {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .fear_grid {
        grid-template-columns: 1fr;
    }

    .fear_footer {
        flex-direction: column;
    }

    .fear_footer .button {
        width: 100%;
    }
}

/* HEADER IMPROVEMENT */

.fear_header .eyebrow {
    color: #111;
    font-weight: var(--weight-bold);
}

/* MICRO TRUST STRIP */

.fear_micro {
    margin-top: 0;
    text-align: center;
}

.fear_micro p {
    font-size: 0.9rem;
    font-weight: var(--weight-medium);
    color: #111;
    opacity: 0.85;
}

/* MICRO TRUST STRIP (SEMANTIC LIST) */

.fear_micro {
    margin-top: 1.5rem;
    text-align: center;
}

.fear_micro_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem 1rem;

    margin: 0;
    padding: 0;
    list-style: none;
}

/* EACH ITEM */

.fear_micro_list li {
    position: relative;
    font-size: 0.9rem;
    font-weight: var(--weight-medium);
    color: #111;
    opacity: 0.9;

    padding-left: 1.4rem;
}

/* CHECK ICON */

.fear_micro_list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #111;
    font-weight: bold;
}

/* OPTIONAL DOT SEPARATOR (DESKTOP ONLY) */

.fear_micro_list li:not(:last-child)::after {
    content: "•";
    margin-left: 0.75rem;
    color: rgba(0,0,0,0.5);
}

@media (max-width: 767px) {
    .fear_micro_list {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .fear_micro_list li:not(:last-child)::after {
        display: none;
    }
}

/* HOVER POLISH */

.fear_item {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fear_item:hover {
    transform: translateY(-4px);
    box-shadow:
        0 10px 18px rgba(0,0,0,0.35),
        0 4px 8px rgba(0,0,0,0.25);
}

/* CTA IMPROVEMENT */

.fear_footer {
    margin-top: 2.2rem;
}