/**
 * EZ Storage - Production-ready styles
 * Clean, professional design system
 */

/* ========== CTA Button ========== */
.ez-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: 'Figtree', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.ez-cta-btn__icon {
    font-size: 0.7em;
    opacity: 0.9;
}

.ez-cta-btn--primary {
    background: #16BB28;
    color: #fff;
    border: none;
}

.ez-cta-btn--primary:hover {
    background: #14a824;
    color: #fff;
    transform: translateY(-1px);
}

/* ========== Storage Section ========== */
.ez-storage-section {
    background: #f5f6f7;
    padding: 4rem 0 5rem;
}

.ez-storage-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.ez-storage-section__title {
    font-family: 'Figtree', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 0.5rem;
    line-height: 1.2;
}

.ez-storage-section__accent {
    display: inline-block;
    background: #FED03D;
    color: #1a1a1a;
    padding: 4px 14px;
    border-radius: 6px;
    margin-left: 2px;
}

.ez-storage-section__subtitle {
    font-family: 'Figtree', sans-serif;
    font-size: 1rem;
    color: #555;
    text-align: center;
    margin: 0 0 2.5rem;
}

.ez-storage-section__note {
    max-width: 940px;
    margin: 3rem auto 0;
    text-align: center;
}

.ez-storage-section__note p {
    font-family: 'Figtree', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #555;
    margin: 0 0 0.75rem;
}

.ez-storage-section__note strong {
    color: #333;
}

/* ========== Storage Grid ========== */
.ez-storage-grid {
    display: block;
}

.ez-storage-grid__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .ez-storage-grid__inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .ez-storage-grid__inner {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* ========== Storage Card ========== */
.ez-storage-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.ez-storage-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.ez-storage-card__image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e8eaed;
}

.ez-storage-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ez-storage-card__body {
    padding: 1.5rem 1.5rem 1.75rem;
}

.ez-storage-card__title {
    font-family: 'Figtree', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.ez-storage-card__text {
    font-family: 'Figtree', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: #4a4a4a;
    margin: 0 0 1.25rem;
}

.ez-storage-card__text strong {
    color: #1a1a1a;
}

.ez-storage-card .ez-cta-btn {
    width: 100%;
}
