.gcm-section{
    background:#0b0b0b;
    color:#fff;
    padding:80px 20px;
    font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
}
.gcm-container{max-width:1280px;margin:0 auto;}
.gcm-header{text-align:center;max-width:760px;margin:0 auto 56px;}
.gcm-eyebrow{
    color:#c9a96a;
    font-size:13px;
    letter-spacing:.25em;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:16px;
}
.gcm-heading{
    font-size:clamp(28px,4vw,44px);
    font-weight:800;
    color:#fff;
    margin:0 0 16px;
    letter-spacing:-.01em;
    text-transform:uppercase;
}
.gcm-subheading{color:#a8a8a8;font-size:17px;line-height:1.6;margin:0;}

.gcm-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:28px;
}
@media (max-width:1024px){.gcm-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media (max-width:640px){.gcm-grid{grid-template-columns:1fr;}}

.gcm-card{
    position:relative;
    background:#161616;
    padding:44px 36px 40px;
    /* notched corner like the reference */
    clip-path:polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
    transition:transform .35s ease, background .35s ease;
}
.gcm-card:hover{
    transform:translateY(-4px);
    background:#1c1c1c;
}
.gcm-number{
    font-size:64px;
    font-weight:900;
    line-height:1;
    color:#3a1f24;
    margin-bottom:28px;
    font-family:'Oswald','Inter',sans-serif;
    letter-spacing:.02em;
}
.gcm-icon{
    font-size:32px;
    line-height:1;
    margin-bottom:20px;
}
.gcm-title{
    font-size:20px;
    font-weight:800;
    color:#fff;
    text-transform:uppercase;
    letter-spacing:.04em;
    margin:0 0 16px;
    line-height:1.25;
}
.gcm-desc{
    color:#a8a8a8;
    font-size:15px;
    line-height:1.7;
    margin:0;
}
