/* IF Plan Custom Styles */

:root {
    /* Reuse main theme vars but add specifics for this page */
    --if-primary: var(--brand-primary, #6F7F63);
    --if-dark: var(--brand-dark, #5F6F56);
    --if-light: var(--brand-light, #EBF0E6);
    --if-bg: var(--bg-section-unified, #F5EFE6);
    --if-text: var(--text-body, #4A4F41);
    --if-heading: var(--text-heading, #6F7F63);

    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

/* Page Container Reset */
body.body-plan-if {
    background-image: none !important;
    /* Remove global bokeh */
    background-color: var(--if-bg) !important;
}

body.body-plan-if .single-product-plan-if {
    width: 100%;
    max-width: 100%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes softPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(111, 127, 99, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(111, 127, 99, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(111, 127, 99, 0);
    }
}

/* 1. HERO SECTION */
.if-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--if-bg) 0%, #fff 100%);
    overflow: hidden;
    padding: 100px 0;
}

.if-hero-bg-blob {
    position: absolute;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(111, 127, 99, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    top: -10%;
    right: -10%;
    z-index: 0;
    animation: float 10s ease-in-out infinite;
}

.if-hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    /* Ensure consistency with site width */
    margin: 0 auto;
    padding: 0 20px;
}

.if-hero-content {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* Typography */
.if-eyebrow {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--if-dark);
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.if-hero-title {
    font-family: var(--font-heading, "Playfair Display", serif);
    font-size: 3.8rem;
    line-height: 1.1;
    color: var(--if-heading);
    margin-bottom: 25px;
    background: linear-gradient(to right, var(--if-dark), var(--if-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Subtitle section styling */
.if-subtitle-section {
    margin-bottom: 25px;
    margin-top: 10px;
}

.if-subtitle-text {
    font-family: var(--font-heading, 'DM Serif Display', serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(111, 127, 99, 0.75);
    display: block;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

/* Microcopy styling */
.if-microcopy {
    margin-top: 20px;
    text-align: center;
}

.if-microcopy p {
    font-size: 0.9rem;
    color: rgba(111, 127, 99, 0.7);
    margin: 0;
    font-weight: 400;
    line-height: 1.4;
}

/* Hero Image Wrapper Constraints */
.if-hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    /* Constraint width */
    margin: 0 auto;
}

.if-hero-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.if-hero-image-wrapper:hover img {
    transform: rotate(0deg) scale(1.02);
}

.if-hero-desc {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--if-text);
    margin-bottom: 35px;
    max-width: 600px;
}

/* Subtitle Box */
.if-hero-subtitle-box {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 35px;
    border-left: 4px solid var(--if-primary);
    box-shadow: var(--glass-shadow);
}

.if-hero-subtitle-box p.if-hero-question {
    margin: 0 0 12px 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--if-heading);
    line-height: 1.4;
}

.if-hero-subtitle-box p.if-hero-description {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--if-text);
    line-height: 1.6;
}

/* Badges */
.if-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.if-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 125, 50, 0.08);
    /* sage tint */
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    color: var(--if-heading);
    border: 1px solid rgba(46, 125, 50, 0.15);
}

.if-badge svg {
    width: 20px !important;
    /* Force constraint */
    height: 20px !important;
    min-width: 20px;
    flex-shrink: 0;
    color: var(--if-primary);
}

/* Author */
.if-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 45px;
}

.if-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.if-author-info span {
    display: block;
    font-size: 0.9rem;
    color: var(--if-text);
}

.if-author-info strong {
    display: block;
    font-size: 0.95rem;
    /* Slightly reduced for better fit */
    color: var(--if-heading);
}

/* CTA Buttons */
.if-actions {
    display: flex;
    gap: 20px;
}

.btn-if-primary {
    background: var(--if-primary);
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(111, 127, 99, 0.4);
    transition: all 0.3s ease;
    animation: softPulse 2s infinite;
}

.btn-if-primary:hover {
    transform: translateY(-3px);
    background: var(--if-dark);
    color: #fff;
    box-shadow: 0 15px 30px rgba(111, 127, 99, 0.5);
}

.btn-if-secondary {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--if-primary);
    font-weight: 600;
    text-decoration: none;
    padding: 16px 20px;
    transition: all 0.3s ease;
}

.btn-if-secondary:hover {
    color: var(--if-dark);
    transform: translateX(5px);
}

/* Hero Image Area */
.if-hero-image-wrapper {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

.if-hero-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg);
    border: 8px solid rgba(255, 255, 255, 0.8);
    background: #fff;
    /* Fallback bg */
}


/* 2. INFO SECTION - "Sensational" Layout */
.if-section {
    padding: 80px 0;
    position: relative;
}

.if-intro {
    background: #fff;
}

.if-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.if-info-card {
    background: var(--if-bg);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.if-info-card::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(111, 127, 99, 0.1);
    border-radius: 50%;
    top: -30px;
    left: -30px;
}

.if-section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--if-heading);
    margin-bottom: 20px;
    text-align: center;
}

.if-text-content {
    font-size: 1.1rem;
    color: var(--if-text);
    line-height: 1.7;
}

.if-highlight-box {
    margin-top: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    border-left: 4px solid var(--if-primary);
}

/* 3. DIFFERENCES & BENEFITS - Reimagined */
/* Pricing header centered */
.if-pricing-header {
    text-align: center;
    margin-bottom: 20px;
}

/* 7. BENEFITS - "Ce obții în viața reală" - distinct section */
.if-benefits {
    background: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(111, 127, 99, 0.1);
}

/* Decorative background elements */
.if-benefits::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(111, 127, 99, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: 0;
}

.if-benefits .container {
    position: relative;
    z-index: 1;
}

.if-benefits .if-section-title {
    font-family: 'DM Serif Display', serif;
    font-size: 2.6rem;
    background: linear-gradient(135deg, #3a4b35 0%, #5d7052 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

.if-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
    padding: 0;
}

/* Benefit Cards - Glassmorphism with organic feel */
.if-benefit-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 36px 28px;
    border-radius: 24px;
    box-shadow:
        0 8px 32px rgba(111, 127, 99, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.9);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle gradient overlay */
.if-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #5d7052, #6F7F63, #7a8a68);
    border-radius: 24px 24px 0 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.if-benefit-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 24px 48px rgba(111, 127, 99, 0.18),
        0 8px 24px rgba(0, 0, 0, 0.08);
}

.if-benefit-card:hover::before {
    opacity: 1;
}

/* Icon container - clean, no wrapper */
.if-benefit-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    margin-left: auto;
    margin-right: auto;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.4s ease;
}

.if-benefit-icon img {
    width: 140px;
    height: 140px;
    object-fit: contain;
}

.if-benefit-card:hover .if-benefit-icon {
    transform: scale(1.08);
}

/* Image Icon Style */
.if-benefit-img-icon {
    height: 140px;
    width: 140px;
    object-fit: contain;
    margin-bottom: 24px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    background: transparent;
    border-radius: 50%;
    box-shadow:
        inset 0 2px 8px rgba(0, 0, 0, 0.04),
        0 6px 16px rgba(111, 127, 99, 0.12);
    transition: all 0.4s ease;
}

.if-benefit-card:hover .if-benefit-img-icon {
    transform: scale(1.1);
    background: linear-gradient(145deg, #e8f0e5 0%, #dde5da 100%);
}

.if-benefit-card h3 {
    font-family: 'DM Serif Display', serif;
    color: #3a4b35;
    font-size: 1.25rem;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.if-benefit-card p {
    color: #5a6a5a;
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 1100px) {
    .if-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .if-benefits {
        padding: 70px 0;
    }

    .if-benefits-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }

    .if-benefit-card {
        padding: 32px 24px;
    }
}

/* 4. PRICING - Reimagined Botanical Luxury */
.if-pricing {
    background: linear-gradient(180deg, #fdfbf7 0%, #f5efe6 50%, #fdfbf7 100%);
    padding: 120px 0 140px;
    position: relative;
    overflow: hidden;
}

/* Organic blob decorations */
.if-pricing::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(111, 127, 99, 0.08) 0%, transparent 70%);
    border-radius: 60% 40% 50% 50%;
    top: -150px;
    left: -100px;
    animation: floatBlob 15s ease-in-out infinite;
    z-index: 0;
}

.if-pricing::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    border-radius: 40% 60% 45% 55%;
    bottom: -100px;
    right: -80px;
    animation: floatBlob 12s ease-in-out infinite reverse;
    z-index: 0;
}

@keyframes floatBlob {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(20px, -15px) rotate(5deg);
    }

    66% {
        transform: translate(-10px, 10px) rotate(-3deg);
    }
}

.if-pricing-wrapper {
    display: flex;
    gap: 32px;
    margin-top: 60px;
    padding: 0 20px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    align-items: stretch;
    justify-content: center;
}

/* Base card styling */
.if-price-card {
    flex: 1;
    min-width: 320px;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 28px;
    padding: 44px 36px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow:
        0 4px 24px rgba(111, 127, 99, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.04);
    overflow: visible;
}

.if-price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.5) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.if-price-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 50px rgba(111, 127, 99, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Premium card - elevated treatment */
.if-price-card.premium {
    background: linear-gradient(165deg, #fefefe 0%, #faf8f5 100%);
    border: 2px solid rgba(111, 127, 99, 0.25);
    box-shadow:
        0 8px 40px rgba(111, 127, 99, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    z-index: 2;
}

.if-price-card.premium::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(111, 127, 99, 0.3) 0%, rgba(212, 175, 55, 0.15) 50%, rgba(111, 127, 99, 0.2) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.if-price-card.premium:hover::after {
    opacity: 1;
}

/* Badge - Floating botanical style */
.if-badge-corner {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #5d7052 0%, #6F7F63 50%, #7a8a68 100%);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow:
        0 6px 20px rgba(93, 112, 82, 0.35),
        0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.if-badge-corner::before {
    content: '★';
    font-size: 0.85em;
}

/* Header section */
.if-price-header {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.if-price-title {
    font-family: 'DM Serif Display', var(--font-heading, serif);
    font-size: 1.65rem;
    color: #3a4b35;
    display: block;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.if-price-card.premium .if-price-title {
    background: linear-gradient(135deg, #3a4b35 0%, #5d7052 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.if-price-amount {
    font-size: 3.2rem;
    font-weight: 800;
    color: #2c3e2e;
    font-family: 'DM Serif Display', var(--font-heading, serif);
    line-height: 1;
    margin-bottom: 4px;
    position: relative;
    display: inline-block;
}

.if-price-card.premium .if-price-amount {
    color: #5d7052;
}

.if-price-amount::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    border-radius: 2px;
}

.if-price-desc {
    font-size: 0.9rem;
    color: #666;
    margin-top: 16px;
    margin-bottom: 0;
}

/* Features list - Botanical treatment */
.if-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    position: relative;
    z-index: 1;
}

/* Price footer - pushed to bottom of flex card */
.if-price-footer {
    margin-top: auto;
    padding-top: 20px;
    position: relative;
    z-index: 1;
}

.if-features-list li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(111, 127, 99, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: #4a5c40;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
    transition: all 0.3s ease;
}

.if-features-list li:last-child {
    border-bottom: none;
}

.if-features-list li:hover {
    padding-left: 6px;
    color: #3a4b35;
}

.if-features-list li svg {
    color: #6F7F63;
    flex-shrink: 0;
    margin-top: 2px;
    transition: transform 0.3s ease;
}

.if-features-list li:hover svg {
    transform: scale(1.15);
    color: #5d7052;
}

.if-price-card.premium .if-features-list li svg {
    color: #5d7052;
}

/* CTA Buttons - Distinctive styling */
.btn-price {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 24px;
    text-align: center;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-price::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-price:hover::before {
    left: 100%;
}

.btn-price.basic {
    background: linear-gradient(135deg, #f7f5f2 0%, #ece8e1 100%);
    color: #4a5c40;
    border-color: rgba(111, 127, 99, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.btn-price.basic:hover {
    background: linear-gradient(135deg, #fff 0%, #f7f5f2 100%);
    border-color: #6F7F63;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(111, 127, 99, 0.15);
    color: #3a4b35;
}

.btn-price.premium {
    background: linear-gradient(135deg, #5d7052 0%, #6F7F63 50%, #7a8a68 100%);
    color: #fff;
    box-shadow:
        0 8px 28px rgba(93, 112, 82, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-price.premium:hover {
    background: linear-gradient(135deg, #4a5c40 0%, #5d7052 50%, #6F7F63 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 12px 36px rgba(93, 112, 82, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Microcopy under button */
.if-microcopy {
    font-size: 0.8rem;
    color: #777;
    text-align: center;
    margin-top: 12px;
    line-height: 1.5;
}

/* Premium animation override */
.if-premium-anim {
    animation: none !important;
    box-shadow:
        0 8px 40px rgba(111, 127, 99, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.06) !important;
}

/* Section title enhancement */
.if-pricing .if-section-title {
    font-family: 'DM Serif Display', var(--font-heading, serif);
    font-size: 2.8rem;
    background: linear-gradient(135deg, #3a4b35 0%, #5d7052 50%, #4a5c40 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.if-pricing .if-text-content {
    color: #5a6a5a;
    font-size: 1.1rem;
}

/* 5. DISCLAIMER */
.if-disclaimer {
    background: var(--if-bg);
    padding: 40px 0;
    font-size: 0.9rem;
    color: var(--if-text);
    text-align: center;
    opacity: 0.8;
}

.if-disclaimer strong {
    color: var(--if-heading);
}

/* Responsive */
@media (max-width: 992px) {
    .if-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .if-hero-content {
        order: 2;
    }

    .if-hero-image-wrapper {
        order: 1;
        margin-bottom: 40px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .if-badges,
    .if-author,
    .if-actions {
        justify-content: center;
    }

    .if-hero-title {
        font-size: 2.8rem;
    }

    .if-grid-2 {
        grid-template-columns: 1fr;
    }

    .if-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on tablets */
        gap: 20px;
    }

    .if-price-card.premium {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .if-hero-title {
        font-size: 2.2rem;
    }

    /* Pricing mobile - stack cards */
    .if-pricing {
        padding: 80px 0 100px;
    }

    .if-pricing-wrapper {
        flex-direction: column;
        gap: 40px;
        max-width: 420px;
    }

    .if-price-card {
        padding: 36px 28px;
    }

    .if-price-card.premium {
        order: -1;
        /* Premium first on mobile */
    }

    .if-badge-corner {
        font-size: 0.7rem;
        padding: 8px 20px;
    }

    .if-price-amount {
        font-size: 2.6rem;
    }

    .if-price-title {
        font-size: 1.4rem;
    }

    .if-pricing .if-section-title {
        font-size: 2.2rem;
    }

    .if-actions {
        flex-direction: column;
    }

    .btn-if-secondary {
        justify-content: center;
    }

    .if-benefits-grid {
        grid-template-columns: 1fr;
        /* 1 column on mobile */
    }
}

/* 6. COMPARISON SECTION */
.if-comp-table {
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.if-comp-header {
    background: var(--if-dark) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.if-comp-row {
    transition: background-color 0.2s ease;
}

.if-comp-row:hover {
    background-color: rgba(111, 127, 99, 0.05) !important;
}

.if-comp-row:last-child {
    border-bottom: none !important;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.if-comp-col.feature {
    font-weight: 600;
    padding-left: 25px !important;
}


/* 7. WHY IT MATTERS - Premium Layout */
.if-why-matters {
    background: linear-gradient(180deg, #fdfbf7 0%, #fff 100%);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

/* Background Decoration */
.if-why-matters::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(111, 127, 99, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.if-why-matters .container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
}

.if-why-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.if-why-matters .if-section-title {
    font-size: 2.4rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--if-dark), var(--if-heading));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.if-why-intro {
    font-size: 1.1rem;
    color: #5a6a5a;
    line-height: 1.7;
    margin: 0;
}

/* Card effect for the text content */
.if-why-matters .if-text-content {
    background: #fff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(111, 127, 99, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin-bottom: 50px;
    position: relative;
    text-align: left;
    /* Better readability */
}

.if-why-matters .if-text-content p {
    margin-bottom: 20px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    position: relative;
    z-index: 2;
}

/* Decorate the card */
.if-why-matters .if-text-content::after {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 120px;
    line-height: 1;
    font-family: serif;
    color: rgba(111, 127, 99, 0.05);
    z-index: 0;
    pointer-events: none;
}

.if-why-matters .btn-if-primary {
    padding: 22px 55px;
    font-size: 1.1rem;
    box-shadow: 0 15px 35px rgba(111, 127, 99, 0.25);
    background: var(--if-dark);
    border: 2px solid transparent;
}

.if-why-matters .btn-if-primary:hover {
    background: #fff;
    color: var(--if-dark);
    border-color: var(--if-dark);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(111, 127, 99, 0.15);
}

/* Why Infographic Grid - Glassmorphism Cards */
.if-why-infographic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 60px;
}

.if-why-item {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(111, 127, 99, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.if-why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #5d7052, #6F7F63, #7a8a68);
    border-radius: 24px 24px 0 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.if-why-item:hover {
    transform: translateY(-12px);
    box-shadow:
        0 24px 48px rgba(111, 127, 99, 0.18),
        0 8px 24px rgba(0, 0, 0, 0.08);
}

.if-why-item:hover::before {
    opacity: 1;
}

.if-why-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(145deg, #f8f5f0 0%, #f0ebe3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px auto;
    font-size: 2.5rem;
    box-shadow:
        inset 0 2px 8px rgba(0, 0, 0, 0.04),
        0 6px 16px rgba(111, 127, 99, 0.1);
    transition: all 0.4s ease;
}

.if-why-item:hover .if-why-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(145deg, #e8f0e5 0%, #dde5da 100%);
}

.if-why-item h3 {
    font-family: 'DM Serif Display', var(--font-heading, serif);
    font-size: 1.35rem;
    color: #3a4b35;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.if-why-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #5a6a5a;
    margin: 0;
}

/* Responsive for Why Grid */
@media (max-width: 992px) {
    .if-why-infographic {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
        gap: 24px;
    }
}

/* 8. FAQ STYLING */
.if-faq {
    background: #fcfcfc;
}

.if-faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.if-faq-item {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-left: 4px solid transparent !important;
    padding: 35px !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: default;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02) !important;
}

.if-faq-item:hover {
    border-left-color: var(--if-primary) !important;
    transform: translateX(10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05) !important;
}

.if-faq-item h3 {
    color: var(--if-heading) !important;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 15px;
}

.if-faq-item h3::before {
    content: '?';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(111, 127, 99, 0.1);
    color: var(--if-primary);
    border-radius: 50%;
    font-size: 14px;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .if-why-matters .if-section-title {
        font-size: 2.5rem;
    }

    .if-why-matters .if-text-content {
        padding: 30px;
        text-align: center;
        /* Center on mobile */
    }

    .if-why-matters .if-text-content::after {
        display: none;
    }

    .if-comp-table {
        overflow-x: auto;
    }

    .if-comp-header,
    .if-comp-row {
        min-width: 600px;
        /* Enable horizontal scroll for table */
    }
}

/* ========================================
   IF-SPECIFIC SECTIONS
   ======================================== */

/* AUDIENCE SECTION - Refined Grid Design */
.if-audience {
    background: linear-gradient(180deg, #fff 0%, #fdfbf7 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative background blob */
.if-audience::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(111, 127, 99, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    top: -150px;
    left: -150px;
    z-index: 0;
}

.if-audience .container {
    position: relative;
    z-index: 1;
}

.if-audience-header {
    text-align: center;
    margin-bottom: 50px;
}

.if-audience-subtitle {
    font-size: 1.15rem;
    color: #5a6a5a;
    max-width: 600px;
    margin: 16px auto 0;
    line-height: 1.7;
}

/* Audience Grid */
.if-audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

/* Individual Audience Item Card */
.if-audience-item {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow:
        0 8px 32px rgba(111, 127, 99, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

/* Subtle accent line on left */
.if-audience-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #5d7052, #6F7F63, #7a8a68);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.if-audience-item:hover {
    transform: translateY(-8px) translateX(4px);
    box-shadow:
        0 20px 48px rgba(111, 127, 99, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.06);
}

.if-audience-item:hover::before {
    opacity: 1;
}

/* Icon Container */
.if-audience-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(145deg, #f8f5f0 0%, #f0ebe3 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        inset 0 2px 6px rgba(0, 0, 0, 0.03),
        0 4px 12px rgba(111, 127, 99, 0.08);
    transition: all 0.4s ease;
}

.if-audience-item:hover .if-audience-icon {
    background: linear-gradient(145deg, #e8f0e5 0%, #dde5da 100%);
    transform: scale(1.08) rotate(-3deg);
}

.if-audience-icon svg {
    width: 28px;
    height: 28px;
    color: #5d7052;
    transition: all 0.3s ease;
}

.if-audience-item:hover .if-audience-icon svg {
    color: #4a5c40;
}

/* Content */
.if-audience-content {
    flex: 1;
}

.if-audience-content h4 {
    font-family: 'DM Serif Display', var(--font-heading, serif);
    font-size: 1.15rem;
    color: #3a4b35;
    margin: 0 0 8px 0;
    letter-spacing: -0.01em;
}

.if-audience-content p {
    font-size: 0.95rem;
    color: #5a6a5a;
    line-height: 1.6;
    margin: 0;
}

/* Responsive for audience grid */
@media (max-width: 768px) {
    .if-audience-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .if-audience-item {
        padding: 28px 24px;
    }

    .if-audience-icon {
        width: 50px;
        height: 50px;
    }

    .if-audience-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* HOW IT WORKS - STEPS */
.if-how-works {
    background: linear-gradient(180deg, #fdfbf7 0%, #f5efe6 100%);
}

.if-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.if-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
}

.if-step-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 40px 28px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(111, 127, 99, 0.1);
    transition: all 0.4s ease;
}

.if-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(111, 127, 99, 0.15);
}

.if-step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.if-step-icon img {
    width: 140px;
    height: 140px;
    object-fit: contain;
}

.if-step-card h3 {
    font-family: 'DM Serif Display', var(--font-heading, serif);
    font-size: 1.15rem;
    color: #3a4b35;
    margin-bottom: 12px;
}

.if-step-card p {
    color: #5a6a5a;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* SCHEDULE SECTION */
.if-schedule {
    background: #fff;
}

.if-schedule-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 40px auto 0;
}

.if-schedule-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(250, 248, 245, 0.9));
    border: 2px solid rgba(111, 127, 99, 0.15);
    border-radius: 20px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.if-schedule-card:hover {
    border-color: var(--if-primary);
    box-shadow: 0 8px 24px rgba(111, 127, 99, 0.12);
}

.if-schedule-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--if-primary), var(--if-dark));
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.if-schedule-badge img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.if-schedule-card p {
    margin: 0;
    color: #3a4b35;
    font-size: 1.1rem;
}

.if-schedule-card p strong {
    font-size: 1.3rem;
}

.if-schedule-detail {
    color: #6a7a6a !important;
    font-size: 0.95rem !important;
    margin-top: 8px !important;
}

/* FASTING WINDOW SECTION */
.if-fasting-window {
    background: linear-gradient(180deg, #fdfbf7 0%, #fff 100%);
}

.if-fasting-items {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.if-fasting-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.9);
    padding: 16px 28px;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(111, 127, 99, 0.1);
    font-size: 1.05rem;
    color: #3a4b35;
    transition: all 0.3s ease;
}

.if-fasting-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(111, 127, 99, 0.15);
}

.if-fasting-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.if-fasting-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.if-info-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(145deg, rgba(111, 127, 99, 0.08), rgba(111, 127, 99, 0.04));
    border-left: 4px solid var(--if-primary);
    padding: 24px 28px;
    border-radius: 0 16px 16px 0;
    max-width: 700px;
    margin: 0 auto;
}

.if-info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.if-info-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.if-info-box p {
    margin: 0;
    color: #4a5c40;
    font-size: 1rem;
    line-height: 1.6;
}

/* PREMIUM HIGHLIGHT */
.if-premium-highlight {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08));
    padding: 14px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: #5a4a00;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.if-premium-highlight img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* 8. ALLERGENS SECTION */
.if-allergens {
    background: #f9f8f5;
    padding: 60px 0;
}

/* 9. SAFETY SECTION */
.if-safety {
    background: #fff;
    padding: 80px 0;
}

/* WARNING BOX */
.if-warning-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(145deg, rgba(255, 193, 7, 0.12), rgba(255, 193, 7, 0.06));
    border: 1px solid rgba(255, 193, 7, 0.3);
    padding: 24px 28px;
    border-radius: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.if-warning-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.if-warning-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.if-warning-box strong {
    display: block;
    color: #856404;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.if-warning-box p {
    margin: 0;
    color: #6a5a04;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* SAFETY BOX */
.if-safety-box {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(220, 53, 69, 0.2);
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.if-safety-box h3 {
    font-family: 'DM Serif Display', var(--font-heading, serif);
    color: #c0392b;
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.if-icon-inline {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

.if-safety-box ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.if-safety-box li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: #555;
    font-size: 1rem;
}

.if-safety-box li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #c0392b;
    font-weight: bold;
}

.if-safety-note {
    background: rgba(220, 53, 69, 0.08);
    padding: 16px 20px;
    border-radius: 12px;
    color: #c0392b;
    font-size: 0.95rem;
    font-style: italic;
    margin: 0;
}

/* FINAL CTA - BIO STYLE */
.if-final-cta-bio {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 120px 20px;
}

.if-final-cta-bio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(243, 234, 221, 0.82) 0%, rgba(230, 220, 209, 0.78) 100%);
    z-index: 1;
}

.if-final-cta-bio>* {
    position: relative;
    z-index: 2;
}

.if-cta-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.if-cta-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--if-primary);
    background: rgba(111, 127, 99, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.if-cta-title {
    font-family: 'DM Serif Display', var(--font-heading, serif);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 500;
    color: #5F6F56;
    margin: 24px 0 20px;
    line-height: 1.25;
}

.if-cta-subtitle {
    font-size: 1.15rem;
    color: #4a4f41;
    margin: 0 0 40px;
    line-height: 1.7;
}

.if-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.if-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 40px;
    font-size: 0.85rem;
    min-width: 280px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: #FFFFFF;
    background: #6F7F63;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 18px rgba(111, 127, 99, 0.22);
}

.if-cta-button:hover {
    background-color: #5F6F56;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(111, 127, 99, 0.30);
}

.if-cta-button.premium {
    background: linear-gradient(135deg, #d4af37 0%, #c4a030 100%);
    box-shadow: 0 8px 18px rgba(212, 175, 55, 0.25);
}

.if-cta-button.premium:hover {
    background: linear-gradient(135deg, #c4a030 0%, #b49020 100%);
    box-shadow: 0 12px 22px rgba(212, 175, 55, 0.35);
}

.if-cta-button svg {
    transition: transform 0.3s ease;
}

.if-cta-button:hover svg {
    transform: translateX(4px);
}

/* Trust Items */
.if-cta-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.if-cta-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #4a4f41;
}

.if-cta-trust-item svg {
    width: 18px;
    height: 18px;
    color: #d4af37;
}

/* LEGAL */
.if-legal {
    background: #f8f8f8;
    padding: 40px 20px;
}

.if-legal-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.if-legal-content p {
    color: #888;
    font-size: 0.85rem;
    line-height: 1.7;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .if-steps-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .if-schedule-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .if-fasting-items {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .if-audience-card {
        padding: 30px 24px;
    }

    .if-step-card {
        padding: 32px 24px;
    }

    .if-cta-title {
        font-size: 1.5rem;
    }

    .if-cta-subtitle {
        font-size: 1rem;
    }

    .if-cta-button {
        padding: 16px 28px;
        font-size: 0.75rem;
        width: 100%;
        justify-content: center;
    }

    .if-cta-trust {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .if-cta-trust-item {
        justify-content: center;
    }

    .if-final-cta-bio {
        padding: 80px 20px;
    }
}}
}