/* Layout */
.advantage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2vh 2vw;
    /* Reduced gap */
    width: 96%;
    /* Increased from 90% for better fill */
    margin: 2vh auto 1vh auto;
    /* Compact margins */
    flex: 1;
}

/* Card Styling */
.advantage-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2vh 1.5vw;
    /* Reduced padding */
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: var(--shadow-sm);
    justify-content: flex-start;
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

/* Card Header (Icon + Pill) */
.card-header {
    display: flex;
    align-items: center;
}

.icon-box {
    width: 52px;
    /* Slightly larger */
    height: 52px;
    border-radius: 12px;
    background: var(--bg-muted);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.3s ease;
}

.advantage-card:hover .icon-box {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pill {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid var(--border);
}

/* Typography */
.advantage-card h3 {
    font-size: 22px;
    /* Increased from 20px */
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1vh;
    letter-spacing: -0.02em;
}

.advantage-card p {
    font-size: 14px;
    /* Kept concise but readable */
    line-height: 1.55;
    color: var(--text-secondary);
}

.advantage-card p strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Punchline Banner */
.punchline-banner {
    width: 96%;
    /* Match grid */
    margin: 0 auto;
    padding: 1.5vh 2vw;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 15px;
    margin-bottom: 2vh;
    /* Reduced from 80px */
    margin-top: auto;
    position: relative;
    z-index: 10;
}

.punchline-banner.violet {
    background: #f5f3ff;
    border: 1px solid #ddd6fe;
    color: #5b21b6;
    box-shadow: var(--shadow-sm);
}

.banner-content p {
    font-weight: 500;
    margin: 0;
}