/* ==========================================================================
   STATYBU PRICING - ELEMENTOR WIDGETS BASE STYLES
   All visual styles are controlled via Elementor selectors;
   this file provides only structural/layout/responsive defaults.
   ========================================================================== */

.statybu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* ==========================================================================
   1. HERO BANNER
   ========================================================================== */
.statybu-hero {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.statybu-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(31, 77, 58, 0.4);
    z-index: 1;
}

.statybu-hero__content {
    position: relative;
    z-index: 2;
}

.statybu-hero__title {
    margin: 0 0 16px 0;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.statybu-hero__subtitle {
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ==========================================================================
   2. INTRO SECTION
   ========================================================================== */
.statybu-intro__title {
    margin: 0 0 18px 0;
    letter-spacing: -0.8px;
    line-height: 1.2;
}

.statybu-intro__subtitle {
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ==========================================================================
   3. PRICING CARDS
   ========================================================================== */
.statybu-pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.statybu-pricing-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.statybu-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.statybu-pricing-card__header {
    text-align: center;
}

.statybu-pricing-card__title {
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.statybu-pricing-card__subtitle {
    margin: 6px 0 0 0;
    font-weight: 400;
    line-height: 1.4;
}

.statybu-pricing-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.statybu-pricing-card__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
    transition: background 0.2s ease;
    gap: 16px;
}

.statybu-pricing-card__item:last-child {
    border-bottom: none;
}

.statybu-pricing-card__info {
    flex: 1;
    min-width: 0;
}

.statybu-pricing-card__code {
    display: block;
    margin-bottom: 2px;
    line-height: 1;
}

.statybu-pricing-card__name {
    display: block;
    line-height: 1.4;
}

.statybu-pricing-card__price {
    white-space: nowrap;
    line-height: 1;
}

/* ==========================================================================
   4. INFO CARDS
   ========================================================================== */
.statybu-info-section__heading {
    text-align: center;
    margin-bottom: 50px;
}

.statybu-info-section__title {
    margin: 0 0 18px 0;
    letter-spacing: -0.8px;
    line-height: 1.2;
}

.statybu-info-section__subtitle {
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
}

.statybu-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.statybu-info-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.statybu-info-card:hover {
    transform: translateY(-4px);
}

.statybu-info-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    width: 60px;
    height: 60px;
}

.statybu-info-card__icon i,
.statybu-info-card__icon svg {
    line-height: 1;
}

.statybu-info-card__title {
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.statybu-info-card__desc {
    margin: 0;
    line-height: 1.6;
}

/* ==========================================================================
   5. NOTES BOX
   ========================================================================== */
.statybu-notes-section__heading {
    text-align: center;
    margin-bottom: 40px;
}

.statybu-notes-section__title {
    margin: 0 0 18px 0;
    letter-spacing: -0.8px;
    line-height: 1.2;
}

.statybu-notes-section__subtitle {
    margin: 0 auto;
    max-width: 720px;
    line-height: 1.6;
}

.statybu-notes-box {
    border-radius: 4px;
}

.statybu-notes-box__title {
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.statybu-notes-box__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.statybu-notes-box__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.statybu-notes-box__list li:last-child {
    margin-bottom: 0;
}

.statybu-notes-box__icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
    line-height: 1;
}

.statybu-notes-box__text {
    flex: 1;
}

/* ==========================================================================
   6. CTA SECTION
   ========================================================================== */
.statybu-cta {
    text-align: center;
}

.statybu-cta__title {
    margin: 0 0 16px 0;
    letter-spacing: -0.8px;
    line-height: 1.2;
}

.statybu-cta__subtitle {
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.statybu-cta__btn-wrap {
    margin-top: 32px;
}

.statybu-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.2s ease, color 0.25s ease;
}

.statybu-cta__btn:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.statybu-cta__btn-icon {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

/* ==========================================================================
   RESPONSIVE — TABLET (≤1024px)
   ========================================================================== */
@media (max-width: 1024px) {
    .statybu-pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .statybu-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   RESPONSIVE — MOBILE (≤768px)
   ========================================================================== */
@media (max-width: 768px) {
    .statybu-container {
        padding: 0 18px;
    }

    .statybu-info-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .statybu-pricing-card__item {
        flex-wrap: wrap;
        gap: 8px;
    }

    .statybu-pricing-card__info {
        flex: 1 1 60%;
    }

    .statybu-info-section__heading,
    .statybu-notes-section__heading {
        margin-bottom: 30px;
    }
}

/* ==========================================================================
   RESPONSIVE — SMALL MOBILE (≤420px)
   ========================================================================== */
@media (max-width: 420px) {
    .statybu-container {
        padding: 0 14px;
    }
}
