:root {
    --bg: #070707;
    --card: rgba(255,255,255,0.04);
    --border: rgba(255,255,255,0.08);
    --gold: #d4af37;
    --text: #eaeaea;
    --muted: #9a9a9a;
}

/* SECTION */
.section {
    display: flex;
    flex-direction: column;
    padding: 20px 20px;
    text-align: center;
}

.title {
    font-size: 36px;
    font-weight: 600;
    background: linear-gradient(90deg, #fff, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.subtitle {
    color: var(--muted);
    margin-bottom: 50px;
}

/* GRID */
.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 25px;
}

/* CARD */
.card {
    position: relative;
    padding: 28px;
    border-radius: 16px;
    background: var(--card);
    border: 1px solid var(--border);
    text-align: left;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
    will-change: transform;
    min-width: 310px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
}

/* HOVER */
.card:hover {
    transform: translateY(-6px);
    border-color: rgba(212,175,55,0.4);
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.6),
        0 0 0 1px rgba(212,175,55,0.15),
        0 0 25px rgba(212,175,55,0.15);
}

/* ICON */
.icon {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon img {
    width: 30px;
}

/* TEXT */
.card small {
    color: var(--muted);
    font-size: 13px;
    display: block;
    margin-bottom: 8px;
}

/* TITLE */
.card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
}

/* DESCRIPTION */
.desc {
    font-size: 14px;
    color: #cfcfcf;
    line-height: 1.5;
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* HIGHLIGHT */
.highlight {
    color: var(--gold);
    font-weight: 600;
}

/* ANIMATION */
.card:nth-child(2) { animation-delay: 0.1s; }
.card:nth-child(3) { animation-delay: 0.2s; }
.card:nth-child(4) { animation-delay: 0.3s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .title {
        font-size: 26px;
    }

	.grid {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-evenly;
	}
	
	.card {
		width: 100%;
	}
}