:root {
    --wcus-red: #c9151e;
    --wcus-red-dark: #8f0c13;
    --wcus-red-soft: #fff1f2;
    --wcus-ink: #171717;
    --wcus-muted: #666b73;
    --wcus-border: #eee1e2;
}

.wcus-section {
    position: relative;
    overflow: hidden;
    padding: 88px 20px;
    background:
        radial-gradient(circle at 8% 10%, rgba(201,21,30,.10), transparent 28%),
        linear-gradient(180deg, #fff 0%, #fff8f8 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--wcus-ink);
}

.wcus-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -140px;
    top: -130px;
    border: 50px solid rgba(201,21,30,.05);
    border-radius: 50%;
}

.wcus-container {
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.wcus-heading-wrap {
    max-width: 760px;
    margin: 0 auto 44px;
    text-align: center;
}

.wcus-eyebrow {
    display: inline-block;
    color: var(--wcus-red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.wcus-heading-wrap h2 {
    margin: 0;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.08;
    font-weight: 850;
    letter-spacing: -1.5px;
}

.wcus-heading-line {
    display: block;
    width: 72px;
    height: 4px;
    margin: 18px auto 16px;
    border-radius: 99px;
    background: var(--wcus-red);
}

.wcus-subtitle {
    margin: 0 auto;
    color: var(--wcus-muted);
    font-size: 17px;
    line-height: 1.75;
}

.wcus-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.wcus-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    background: rgba(255,255,255,.94);
    border: 1px solid var(--wcus-border);
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(60, 10, 12, .06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.wcus-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201,21,30,.28);
    box-shadow: 0 16px 40px rgba(60, 10, 12, .11);
}

.wcus-icon {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(145deg, var(--wcus-red), var(--wcus-red-dark));
    box-shadow: 0 8px 18px rgba(201,21,30,.22);
}

.wcus-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.wcus-card-body h3 {
    margin: 1px 0 7px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 800;
}

.wcus-card-body p {
    margin: 0;
    color: var(--wcus-muted);
    font-size: 15px;
    line-height: 1.65;
}

.wcus-bottom-content {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 30px;
    padding: 25px 28px;
    color: #fff;
    background: linear-gradient(110deg, var(--wcus-red-dark), var(--wcus-red));
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(201,21,30,.20);
}

.wcus-bottom-mark {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.3);
    font-size: 24px;
    font-weight: 900;
}

.wcus-bottom-content h3 {
    margin: 0 0 5px;
    font-size: 20px;
    font-weight: 800;
}

.wcus-bottom-content p {
    margin: 0;
    color: rgba(255,255,255,.9);
    font-size: 15px;
    line-height: 1.65;
}

@media (max-width: 760px) {
    .wcus-section { padding: 62px 16px; }
    .wcus-grid { grid-template-columns: 1fr; }
    .wcus-card { padding: 20px; }
    .wcus-bottom-content { align-items: flex-start; padding: 22px; }
}

@media (prefers-reduced-motion: reduce) {
    .wcus-card { transition: none; }
}
