.content-wrapper {
    padding: 2vh 5vw 1vh;
    /* Balanced padding */
    flex: 1;
    display: flex;
    flex-direction: column;
}





.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    flex: 1;
    align-items: stretch;
}

.card {
    background: var(--bg-muted);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2vh 1.8vw;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(20px);
}

.card:hover {
    background: var(--bg-slide);
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.card-icon {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 10px;
    display: grid;
    place-items: center;
    margin-bottom: 1.5vh;
    color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.card-icon svg {
    width: 22px;
    height: 22px;
}

.card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: flex-start;
    /* Remove space-between */
    gap: 1vh;
    /* Consistent spacing */
}

.card-body h3 {
    font-size: clamp(18px, 2.2vh, 22px);
    font-weight: 700;
    margin-bottom: 0.5vh;
    /* Reduced margin due to gap */
    color: var(--text-primary);
}

.info-group {
    margin-bottom: 0.5vh;
    /* Reduced margin due to gap */
}

.info-group .label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.info-group .value {
    font-size: clamp(12px, 1.6vh, 14px);
    color: var(--text-secondary);
    line-height: 1.5;
}

.info-group .value.desc {
    font-weight: 500;
}

.price-box {
    margin: 1vh 0;
    padding: 1.2vh 1.2vw;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    display: flex;
    justify-content: center;
    /* Center since label is gone */
    align-items: center;
}

.price-label {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
}

.price-value {
    font-size: clamp(16px, 2vh, 19px);
    font-weight: 800;
    color: var(--accent);
}

.footer-note {
    font-size: 11px;
    line-height: 1.4;
    color: var(--text-muted);
    opacity: 0.8;
    font-style: italic;
    margin-top: auto;
    /* Push to bottom */
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1vh;
    margin: 1vh 0;
    padding: 1.2vh 1.2vw;
    /* Match price-box padding */
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0;
    border-bottom: none;
}

/* Label styling matching .price-label */
.service-item span:first-child {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* Value styling matching .price-value but smaller scale */
.item-value {
    font-weight: 800;
    color: var(--accent);
    font-size: 13px;
    /* Slightly increased */
    text-align: right;
    max-width: 50%;
    /* Ensure it doesn't take over too much space */
}

.punchline-banner {
    margin-top: 1.5vh;
    padding: 1.5vh 2vw;
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius-lg);
    text-align: center;
    font-size: clamp(14px, 1.8vh, 17px);
    box-shadow: 0 4px 20px rgba(94, 106, 210, 0.2);
}

.punchline-banner strong {
    color: #fff;
    font-weight: 800;
}

.card.animate {
    opacity: 1;
    transform: translateY(0);
}

.highlight-box {
    border: 1px solid var(--accent);
    background: rgba(94, 106, 210, 0.1);
    padding: 0 4px;
    border-radius: 4px;
    font-weight: 700;
    color: var(--text-primary);
    display: inline-block;
}