/* =========================================================
   Luminey UI Polish
   Keeps client brand colors, improves clarity + responsiveness
   ========================================================= */

:root {
    --primary-orange: #f58227;
    --primary-blue: #1b76bb;
    --brand-orange: #f58227;
    --brand-blue: #1b76bb;
    --brand-orange-soft: rgba(245, 130, 39, 0.12);
    --brand-blue-soft: rgba(27, 118, 187, 0.12);
    --glass-white: rgba(255, 255, 255, 0.72);
    --glass-white-strong: rgba(255, 255, 255, 0.88);
}

/* ----- Brand text helpers ----- */
.text-orange {
    color: var(--brand-orange) !important;
    -webkit-text-fill-color: var(--brand-orange);
    background: none;
}

.text-blue {
    color: var(--brand-blue) !important;
    -webkit-text-fill-color: var(--brand-blue);
    background: none;
}

/* ----- CTA: Full Transparency color fix ----- */
.feature-text h4 {
    color: inherit !important;
    font-size: clamp(16px, 1.6vw, 18px);
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.3;
}

.feature-text p {
    color: var(--text-secondary) !important;
    -webkit-text-fill-color: var(--text-secondary);
    opacity: 0.9;
    line-height: 1.55;
    font-size: 14px;
}

.feature-text.text-orange h4 {
    color: var(--brand-orange) !important;
}

.feature-text.text-blue h4 {
    color: var(--brand-blue) !important;
}

.feature-icon {
    background: linear-gradient(135deg, var(--brand-orange), #ff9a4a) !important;
    color: #fff;
    box-shadow: 0 6px 18px rgba(245, 130, 39, 0.28);
}

.feature-icon i {
    color: #fff;
}

.cta-feature-item {
    padding: 14px 16px;
    border-radius: 16px;
    background: var(--glass-white);
    border: 1px solid rgba(27, 118, 187, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(27, 118, 187, 0.1);
}

.cta-card.glass-card,
.cta-card {
    background: var(--glass-white-strong) !important;
    border: 1px solid rgba(27, 118, 187, 0.16);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 12px 40px rgba(27, 118, 187, 0.1);
}

.cta-submit-btn {
    background: linear-gradient(135deg, var(--brand-orange), #ff9a4a) !important;
    border: none;
}

/* ----- Offer cards: glass + brand match ----- */
.offers-section .section-title {
    line-height: 1.2;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 48px;
    align-items: stretch;
}

.offer-card {
    display: flex;
    flex-direction: column;
    min-height: 420px;
    padding: 18px 18px 24px !important;
    background: var(--glass-white) !important;
    border: 1.5px solid rgba(27, 118, 187, 0.18) !important;
    border-radius: 22px !important;
    box-shadow: 0 10px 30px rgba(27, 118, 187, 0.1) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 130, 39, 0.45) !important;
    box-shadow: 0 16px 40px rgba(245, 130, 39, 0.16) !important;
}

.offer-card.featured-card {
    background: linear-gradient(160deg, rgba(245, 130, 39, 0.12), rgba(27, 118, 187, 0.1)) !important;
    border-color: rgba(245, 130, 39, 0.4) !important;
}

.offer-card .card-icon {
    position: relative;
    width: 100%;
    height: 180px;
    margin: 8px auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 14px;
}

.offer-card .card-icon img {
    width: auto;
    max-width: 72%;
    height: 100%;
    object-fit: contain;
}

.featured-card > .card-icon {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    height: 180px;
}

.featured-card > .card-icon > .card-icon {
    width: 100%;
    height: 100%;
    margin: 0;
}

.featured-card > .card-icon > .card-icon img {
    width: 100% !important;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}

.offer-card .card-bottom {
    position: static !important;
    width: 100% !important;
    margin-top: auto;
    padding: 0 4px;
}

.offer-card .card-title {
    font-size: clamp(18px, 1.8vw, 22px) !important;
    margin-bottom: 4px !important;
    color: var(--text-primary);
    line-height: 1.25;
}

.offer-card .card-description {
    font-size: 13px !important;
    margin-bottom: 10px !important;
    color: var(--text-muted);
    min-height: 1.4em;
}

.offer-card .card-price {
    margin-bottom: 14px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}

.offer-card .currency,
.offer-card .amount {
    color: var(--brand-orange) !important;
}

.offer-card .amount {
    font-size: clamp(28px, 3vw, 34px) !important;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.offer-card .period {
    color: var(--text-secondary);
    font-size: 13px;
}

.offer-card .card-button {
    width: 100% !important;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--brand-orange), #ff9a4a) !important;
    border: none !important;
    color: #fff !important;
    border-radius: 12px;
    padding: 14px 18px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(245, 130, 39, 0.28);
}

.offer-card .card-button:hover {
    box-shadow: 0 12px 28px rgba(245, 130, 39, 0.4);
}

.featured-badge {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-blue)) !important;
    z-index: 2;
    top: 14px !important;
    right: 14px !important;
    font-size: 10px !important;
    padding: 6px 12px !important;
}

/* ----- Video highlights polish ----- */
.video-highlights .highlight-item {
    background: var(--glass-white);
    border: 1px solid rgba(27, 118, 187, 0.12);
    border-radius: 18px;
    backdrop-filter: blur(12px);
}

.highlight-number {
    color: var(--brand-orange);
}

/* ----- Final CTA layout ----- */
.final-cta {
    min-height: auto !important;
    padding: 80px 0 !important;
}

.cta-grid {
    gap: 48px;
    align-items: start;
}

/* ----- Responsive ----- */
@media (max-width: 1200px) {
    .offers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .offer-card.featured-card {
        /*grid-column: 1 / -1;*/
        max-width: 520px;
        justify-self: center;
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .cta-grid {
        grid-template-columns: 1fr !important;
        gap: 36px;
    }

    .cta-left {
        text-align: center;
        align-items: center;
    }

    .cta-features {
        width: 100%;
        max-width: 720px;
    }

    .cta-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .offers-section,
    .video-section,
    .final-cta {
        padding: 48px 0 !important;
    }

    .offers-grid {
        grid-template-columns: 1fr !important;
        gap: 18px;
        margin-top: 28px;
    }

    .offer-card,
    .offer-card.featured-card {
        min-height: 0;
        max-width: 420px;
        width: 100%;
        justify-self: center;
        grid-column: auto;
        padding: 16px 16px 20px !important;
    }

    .offer-card .card-icon,
    .featured-card > .card-icon {
        height: 150px;
    }

    .cta-features {
        flex-direction: column !important;
        width: 100%;
        gap: 12px !important;
    }

    .cta-feature-item {
        text-align: left;
        width: 100%;
    }

    .cta-form {
        grid-template-columns: 1fr !important;
    }

    .cta-card {
        padding: 24px 18px !important;
    }

    .section-title {
        font-size: clamp(28px, 7vw, 40px) !important;
        line-height: 1.2;
    }

    .hero-actions {
        width: 100% !important;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .cta-btn {
        width: 100%;
    }

    .stats-grid {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .floating-contacts {
        right: 10px;
        transform: scale(0.9);
        transform-origin: right center;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        width: 94% !important;
        padding: 0 10px !important;
    }

    .offer-card .amount {
        font-size: 30px !important;
    }

    .featured-badge {
        top: 10px !important;
        right: 10px !important;
        font-size: 9px !important;
        padding: 5px 10px !important;
    }

    .hero-title {
        text-align: center;
    }

    .cta-submit-btn {
        width: 100%;
    }
}
