/* iLoveView — Pricing page refinements (loaded after inline styles) */
:root {
    --ilv-red: #ef1919;
    --ilv-red-hover: #bc0009;
    --ilv-text: #1a1c1d;
    --ilv-muted: #5e6a72;
    --ilv-ghost: #f8f8ff;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--ilv-text);
    background: radial-gradient(circle at center, #f5f5fa 0%, #e4ebf5 40%, #f4e2f5 60%, #e2f0f9 100%);
    overflow-x: hidden;
    max-width: 100%;
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

/* ── Hero ── */
.hero-section.ilv-pricing-hero,
.ilv-pricing-hero {
    background-color: #f0ece6 !important;
    background-image: url('../images/bg.png');
    background-size: 60px 60px;
    position: relative;
    min-height: auto !important;
    overflow: hidden;
    padding: 0;
}

.ilv-pricing-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 55% at 10% 35%, rgba(239, 25, 25, 0.1), transparent 58%),
        radial-gradient(ellipse 45% 50% at 90% 65%, rgba(239, 25, 25, 0.06), transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.ilv-pricing-hero > .container {
    position: relative;
    z-index: 1;
}

.ilv-pricing-hero .row {
    align-items: center !important;
    min-height: calc(100vh - 88px);
}

.ilv-pricing-hero .hero-text-col,
.ilv-pricing-hero .hero-phone-col {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    padding-top: 108px !important;
    padding-bottom: 56px !important;
}

.ilv-pricing-hero .hero-copy {
    width: 100%;
    max-width: 540px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin: 0;
    padding: 0;
}

.ilv-pricing-hero .hero-copy > * {
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
}

.ilv-pricing-hero .ilv-pricing-eyebrow {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase;
    color: var(--ilv-red) !important;
    margin: 0 0 16px !important;
    width: auto;
    align-self: flex-start;
}

.ilv-pricing-hero .ilv-pricing-eyebrow::before {
    content: "";
    width: 22px;
    height: 2px;
    background: var(--ilv-red);
    border-radius: 2px;
    flex-shrink: 0;
}

.ilv-pricing-hero .hero-title {
    width: 100%;
    font-size: clamp(36px, 5.2vw, 54px) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.035em !important;
    font-weight: 700 !important;
    margin: 0 0 16px !important;
    padding: 0 !important;
    color: var(--ilv-text) !important;
}

.ilv-pricing-hero .hero-title span {
    color: var(--ilv-red);
    display: inline;
}

.ilv-pricing-hero .hero-subtitle {
    width: 100%;
    font-size: 17px !important;
    line-height: 1.65 !important;
    max-width: none !important;
    margin: 0 0 28px !important;
    padding: 0 !important;
    color: var(--ilv-muted) !important;
}

.hero-cta-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    margin: 0 0 24px !important;
    padding: 0;
}

.hero-cta-row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.ilv-pricing-hero .btn-hero-primary,
.ilv-pricing-hero .btn-hero-outline {
    margin: 0 !important;
}

.ilv-pricing-hero .btn-hero-primary {
    background: linear-gradient(180deg, #ff2a2a 0%, #ef1919 100%) !important;
    box-shadow: 0 12px 32px rgba(239, 25, 25, 0.3);
    font-weight: 600 !important;
    line-height: 1.2 !important;
    padding: 16px 26px !important;
}

.ilv-pricing-hero .btn-hero-primary:hover {
    background: linear-gradient(180deg, #ef1919 0%, #bc0009 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(239, 25, 25, 0.36);
}

.ilv-pricing-hero .btn-hero-outline {
    background: rgba(255, 255, 255, 0.78) !important;
    border: 1.5px solid rgba(17, 24, 39, 0.12) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    line-height: 1.2 !important;
    padding: 15px 22px !important;
    color: #111 !important;
}

.ilv-pricing-hero .btn-hero-outline:hover {
    border-color: rgba(239, 25, 25, 0.35) !important;
    background: #fff !important;
    transform: translateY(-2px);
}

.hero-cta-note {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 13px;
    line-height: 1.5;
    color: var(--ilv-muted);
    text-align: left !important;
}

.hero-cta-note strong {
    color: var(--ilv-red);
    font-weight: 700;
}

.hero-stat-row {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: none;
    margin: 0;
    padding: 0;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 14px;
    padding: 12px 12px 11px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    text-align: left;
}

.hero-stat strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--ilv-text);
    margin-bottom: 2px;
}

.hero-stat span {
    display: block;
    font-size: 11px;
    line-height: 1.35;
    color: var(--ilv-muted);
}

.ilv-pricing-hero .hero-phone-col {
    position: relative;
    align-items: center;
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
    overflow: hidden;
}

.hero-visual-glow {
    position: absolute;
    width: 70%;
    height: 70%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239, 25, 25, 0.16) 0%, transparent 68%);
    filter: blur(8px);
    z-index: 0;
}

.ilv-pricing-hero .hero-phone-img {
    position: relative;
    z-index: 1;
    height: auto;
    width: 100%;
    max-width: 420px;
    max-height: 520px;
    margin: 0 auto;
    display: block;
    object-fit: contain;
    object-position: center center;
    filter: drop-shadow(0 28px 50px rgba(15, 23, 42, 0.16));
    animation: ilv-pricing-float 6.5s ease-in-out infinite;
}

@keyframes ilv-pricing-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-float-card {
    position: absolute;
    z-index: 2;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 18px;
    max-width: calc(100% - 24px);
    box-sizing: border-box;
}

.hero-float-card--premium {
    left: 2%;
    bottom: 12%;
    width: 200px;
    animation: ilv-card-in 0.8s ease both;
}

.hero-float-card--vault {
    right: 2%;
    top: 16%;
    width: 168px;
    animation: ilv-card-in 0.9s ease 0.12s both;
}

@keyframes ilv-card-in {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-float-label {
    margin: 0 0 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ilv-red);
}

.hero-float-title {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 700;
    color: var(--ilv-text);
}

.hero-float-price {
    margin: 0 0 10px;
    font-size: 13px;
    color: var(--ilv-muted);
}

.hero-float-price strong {
    font-size: 22px;
    font-weight: 700;
    color: var(--ilv-text);
    letter-spacing: -0.02em;
}

.hero-float-price span {
    margin-left: 2px;
}

.hero-float-card ul {
    margin: 0 0 12px;
    padding: 0;
    list-style: none;
}

.hero-float-card ul li {
    position: relative;
    padding-left: 14px;
    font-size: 12px;
    line-height: 1.55;
    color: #4b5563;
}

.hero-float-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ilv-red);
}

.hero-float-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--ilv-red);
    text-decoration: none;
}

.hero-float-link:hover {
    text-decoration: underline;
}

.hero-float-desc {
    margin: 0;
    font-size: 12px;
    line-height: 1.45;
    color: var(--ilv-muted);
}

.hero-assurance-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #4b5563;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 999px;
    padding: 7px 12px;
}

.hero-assurance-chip svg {
    color: var(--ilv-red);
}

@media (max-width: 991px) {
    .ilv-pricing-hero .row {
        min-height: 0 !important;
    }

    .ilv-pricing-hero .hero-text-col,
    .ilv-pricing-hero .hero-phone-col {
        padding-top: 92px !important;
        padding-bottom: 16px !important;
        align-items: center !important;
    }

    .ilv-pricing-hero .hero-phone-col {
        padding-top: 4px !important;
        padding-bottom: 36px !important;
    }

    .ilv-pricing-hero .hero-copy {
        max-width: 100%;
        width: 100%;
        align-items: center;
        text-align: center;
        margin: 0 auto;
        padding: 0 4px;
    }

    .ilv-pricing-hero .hero-copy > * {
        text-align: center !important;
    }

    .ilv-pricing-hero .ilv-pricing-eyebrow {
        align-self: center !important;
    }

    .ilv-pricing-hero .hero-title {
        font-size: clamp(30px, 8vw, 40px) !important;
        line-height: 1.15 !important;
    }

    .ilv-pricing-hero .hero-subtitle {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }

    .hero-cta-block,
    .hero-cta-row {
        align-items: center !important;
        justify-content: center !important;
        width: 100%;
    }

    .hero-cta-note {
        text-align: center !important;
        max-width: 320px;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-stat-row {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }

    .hero-visual {
        min-height: 340px;
        max-width: 100%;
        overflow: hidden;
    }

    .ilv-pricing-hero .hero-phone-img {
        max-width: 300px !important;
        max-height: 360px !important;
        animation: none !important;
    }

    .hero-float-card--premium {
        left: 50% !important;
        right: auto;
        bottom: 8px !important;
        top: auto;
        width: min(200px, 78%);
        transform: translateX(-50%);
        animation: none !important;
    }

    .hero-float-card--vault {
        display: none !important;
    }

    .features-section {
        padding: 36px 12px !important;
    }

    .features-section .container {
        padding: 24px 16px !important;
        border-radius: 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .features-title {
        font-size: 26px !important;
        line-height: 1.25 !important;
    }

    .features-card,
    .features-card-mini {
        padding: 22px 18px !important;
        border-radius: 16px !important;
    }

    .features-content h3,
    .mini-card-content h3 {
        font-size: 18px !important;
        line-height: 1.3 !important;
    }

    .features-content p,
    .mini-card-content p {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }

    .family-legacy-section {
        padding: 40px 0 !important;
    }

    .family-title {
        font-size: 28px !important;
        line-height: 1.2 !important;
        text-align: center;
    }

    .family-mini-label,
    .family-legacy-section .ilv-section-lead {
        text-align: center;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .family-feature-list {
        margin-top: 20px;
    }

    .btn-family-upgrade {
        display: flex !important;
        width: 100%;
        max-width: 280px;
        margin: 20px auto 0 !important;
        justify-content: center;
    }

    .family-photo-wrap {
        margin-top: 28px;
    }

    .family-photo-img {
        min-height: 240px !important;
    }

    .vault-section {
        max-width: calc(100% - 24px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        border-radius: 20px !important;
        padding: 40px 16px !important;
    }

    .vault-title {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }

    .vault-subtitle {
        font-size: 15px !important;
    }

    .pricing-section {
        padding: 40px 0 28px !important;
    }

    .pricing-heading h2 {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }

    .pricing-card {
        margin-bottom: 12px;
    }

    .cta-section {
        max-width: calc(100% - 24px) !important;
        margin: 16px auto 0 !important;
        border-radius: 20px !important;
        padding: 48px 18px !important;
    }

    .cta-section h2 {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }

    .cta-section p {
        font-size: 15px !important;
    }

    .btn-cta {
        display: inline-flex;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .site-footer {
        padding-top: 40px !important;
    }
}

@media (max-width: 575px) {
    .ilv-pricing-hero .hero-text-col {
        padding-top: 84px !important;
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .ilv-pricing-hero .hero-title {
        font-size: 28px !important;
        line-height: 1.18 !important;
    }

    .ilv-pricing-hero .hero-subtitle {
        font-size: 15px !important;
        margin-bottom: 22px !important;
    }

    .hero-cta-row {
        flex-direction: column;
        align-items: stretch !important;
        gap: 10px;
    }

    .ilv-pricing-hero .btn-hero-primary,
    .ilv-pricing-hero .btn-hero-outline {
        width: 100% !important;
        justify-content: center;
        font-size: 14px !important;
        padding: 14px 18px !important;
    }

    .hero-stat-row {
        grid-template-columns: 1fr;
        gap: 8px;
        max-width: 100%;
    }

    .hero-visual {
        min-height: 280px;
        padding-bottom: 96px;
    }

    .ilv-pricing-hero .hero-phone-img {
        max-width: 240px !important;
        max-height: 300px !important;
    }

    .hero-float-card--premium {
        width: min(180px, 85%);
        padding: 12px 14px;
        bottom: 0 !important;
    }

    .hero-float-title {
        font-size: 14px;
    }

    .hero-float-price strong {
        font-size: 18px;
    }

    .features-section {
        padding: 28px 8px !important;
    }

    .features-section .container {
        margin: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 20px 12px !important;
    }

    .features-heading {
        text-align: center !important;
    }

    .ilv-section-lead {
        font-size: 14px;
    }

    .vault-section,
    .cta-section {
        max-width: calc(100% - 16px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .pricing-disclaimer {
        font-size: 13px !important;
        padding: 14px 14px !important;
    }

    .plan-features {
        font-size: 13px;
    }
}

/* ── Shared section accents ── */
.ilv-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ilv-red);
    margin-bottom: 12px;
}

.ilv-section-eyebrow::before {
    content: "";
    width: 18px;
    height: 2px;
    background: var(--ilv-red);
    border-radius: 2px;
}

.ilv-section-eyebrow.is-center {
    justify-content: center;
    width: 100%;
}

.ilv-section-eyebrow.is-center::before {
    display: none;
}

.ilv-section-lead {
    max-width: 560px;
    margin: 0 auto 8px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--ilv-muted);
}

/* ── Features ── */
.features-section {
    background: transparent !important;
    padding: 64px 0 !important;
}

.features-section .container {
    background: var(--ilv-ghost);
    border-radius: 30px;
    padding: 40px 32px !important;
    border: 1px solid rgba(16, 24, 40, 0.04);
}

.features-title-mini {
    color: var(--ilv-red) !important;
    font-size: 12px !important;
    letter-spacing: 0.08em !important;
    font-weight: 600 !important;
}

.features-title {
    font-size: clamp(26px, 3.5vw, 36px) !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em;
    color: var(--ilv-text) !important;
}

.features-title span {
    color: var(--ilv-red);
}

.features-card,
.features-card-mini {
    background: #fff !important;
    border: 1px solid #80808026 !important;
    border-radius: 18px !important;
    box-shadow: 0 4px 16px rgba(16, 24, 40, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}

.features-card:hover,
.features-card-mini:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(229, 23, 17, 0.1);
}

.features-content h3,
.features-card-mini h3 {
    font-size: 17px !important;
    font-weight: 600 !important;
}

.features-content p,
.features-card-mini p {
    color: var(--ilv-muted) !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
}

/* ── AI ── */
.ai-features-section {
    padding-top: 24px !important;
}

.ai-features-heading-main h2 {
    font-size: clamp(26px, 3.5vw, 36px) !important;
    letter-spacing: -0.02em;
}

.ai-features-heading-main p {
    color: var(--ilv-muted);
}

/* ── Family ── */
.family-legacy-section {
    padding: 72px 0 !important;
}

.family-mini-label {
    color: var(--ilv-red) !important;
    font-size: 12px !important;
    letter-spacing: 0.08em !important;
    font-weight: 600 !important;
}

.family-title {
    font-size: clamp(28px, 4vw, 40px) !important;
    letter-spacing: -0.02em !important;
    line-height: 1.2 !important;
}

.family-title span {
    color: var(--ilv-red);
}

.family-photo-wrap {
    border-radius: 24px !important;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
    border: 1px solid #80808026;
    background: #fff;
}

.family-photo-img {
    width: 100%;
    display: block;
    object-fit: cover;
    min-height: 360px;
}

.family-members-badge {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.92) !important;
    border: 1px solid rgba(16, 24, 40, 0.06);
}

.ilv-family-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: var(--ilv-red);
    border: 2px solid #fff;
    margin-left: -8px;
}

.ilv-family-avatar:first-child {
    margin-left: 0;
    background: #1a1c1d;
}

.ilv-family-avatar:nth-child(2) {
    background: #5e6a72;
}

.plan-billing-note {
    margin: -8px 0 16px;
    font-size: 12px;
    font-weight: 500;
    color: var(--ilv-muted);
}

.btn-family-upgrade {
    background: linear-gradient(180deg, #ff2a2a 0%, #ef1919 100%) !important;
    box-shadow: 0 10px 28px rgba(239, 25, 25, 0.25);
    border: none !important;
}

.btn-family-upgrade:hover {
    background: linear-gradient(180deg, #ef1919 0%, #bc0009 100%) !important;
}

/* ── Vault ── */
.vault-section {
    border-radius: 30px;
    width: auto;
    max-width: min(1280px, calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    overflow: hidden;
}

.vault-mini-label {
    color: #fca5a5 !important;
    letter-spacing: 0.08em !important;
    font-size: 12px !important;
}

.vault-title {
    letter-spacing: -0.02em !important;
}

.vault-card {
    transition: transform 0.25s ease, border-color 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.vault-card:hover {
    transform: translateY(-4px);
    border-color: rgba(239, 25, 25, 0.35) !important;
}

.btn-vault {
    background: linear-gradient(180deg, #ff2a2a 0%, #ef1919 100%) !important;
    box-shadow: 0 10px 28px rgba(239, 25, 25, 0.3);
}

/* ── Pricing grid ── */
.pricing-section {
    padding: 72px 0 48px !important;
}

.pricing-heading h2 {
    font-size: clamp(28px, 4vw, 40px) !important;
    letter-spacing: -0.02em !important;
}

.pricing-heading h2 span {
    color: var(--ilv-red);
}

.pricing-heading p {
    color: var(--ilv-muted) !important;
    font-size: 16px !important;
}

.pricing-card {
    background: #fff !important;
    border: 1px solid #80808026 !important;
    border-radius: 22px !important;
    box-shadow: 0 4px 18px rgba(16, 24, 40, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    height: 100%;
}

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

.pricing-card.featured {
    border-color: rgba(239, 25, 25, 0.35) !important;
    box-shadow: 0 16px 40px rgba(239, 25, 25, 0.14) !important;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(239, 25, 25, 0.06), transparent 55%),
        #fff !important;
}

.plan-type {
    color: var(--ilv-red) !important;
    letter-spacing: 0.04em;
}

.plan-price {
    letter-spacing: -0.02em;
}

.plan-features li {
    color: #374151;
}

.btn-plan.btn-plan-primary,
a.btn-plan.btn-plan-primary {
    background: linear-gradient(180deg, #ff2a2a 0%, #ef1919 100%) !important;
    box-shadow: 0 8px 20px rgba(239, 25, 25, 0.25);
    border: none !important;
    color: #fff !important;
}

.pricing-disclaimer {
    background: #fff;
    border: 1px solid #80808026;
    border-radius: 16px;
    padding: 18px 22px;
    font-size: 14px !important;
    line-height: 1.55 !important;
    color: var(--ilv-muted) !important;
}

/* ── CTA ── */
.cta-section {
    width: auto;
    max-width: min(1280px, calc(100% - 40px));
    margin: 24px auto 0;
    border-radius: 30px;
    box-sizing: border-box;
    background:
        radial-gradient(ellipse 60% 70% at 50% 40%, rgba(239, 25, 25, 0.12), transparent 60%),
        linear-gradient(180deg, #fff 0%, #fff7f7 100%) !important;
    border: 1px solid rgba(229, 23, 17, 0.1);
    padding: 80px 24px !important;
}

.cta-section h2 {
    font-size: clamp(28px, 4vw, 44px) !important;
    letter-spacing: -0.02em !important;
}

.cta-section h2 span {
    color: var(--ilv-red);
}

.btn-cta {
    background: linear-gradient(180deg, #ff2a2a 0%, #ef1919 100%) !important;
    box-shadow: 0 10px 28px rgba(239, 25, 25, 0.28);
}

.btn-cta:hover {
    background: linear-gradient(180deg, #ef1919 0%, #bc0009 100%) !important;
}

.cta-assurance {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

/* ── Footer ── */
.site-footer {
    background: rgba(255, 255, 255, 0.7) !important;
    margin-top: 40px;
    border-top: 1px solid rgba(16, 24, 40, 0.06);
}

.footer-col-title {
    color: var(--ilv-text) !important;
}

.footer-logo-wrap .footer-brand-name,
.footer-brand-name {
    color: var(--ilv-text) !important;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(16, 24, 40, 0.06) !important;
    background: transparent !important;
}

.footer-bottom-bar p {
    color: var(--ilv-muted) !important;
}

.footer-links-list a:hover {
    color: var(--ilv-red) !important;
}

@media (max-width: 991px) {
    .features-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .features-section .container {
        padding: 24px 16px !important;
        border-radius: 20px;
        margin: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .vault-section,
    .cta-section {
        max-width: calc(100% - 24px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        border-radius: 20px;
    }
}
