/* GLP-1 Plan Custom Styles */

:root {
    /* Reuse main theme vars but add specifics for this page */
    --glp-primary: var(--brand-primary, #6F7F63);
    --glp-dark: var(--brand-dark, #5F6F56);
    --glp-light: var(--brand-light, #EBF0E6);
    --glp-bg: var(--bg-section-unified, #F5EFE6);
    --glp-text: var(--text-body, #4A4F41);
    --glp-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-glp-1 {
    background-image: none !important;
    /* Remove global bokeh */
    background-color: var(--glp-bg) !important;
}

body.body-plan-glp-1 .single-product-plan-glp-1 {
    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 */
.glp-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--glp-bg) 0%, #fff 100%);
    overflow: hidden;
    padding: 100px 0;
}

.glp-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;
}

.glp-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;
}

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

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

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

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

.glp-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;
}

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

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

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

.glp-hero-subtitle-box p {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 500;
}

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

.glp-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(--glp-heading);
    border: 1px solid rgba(46, 125, 50, 0.15);
}

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

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

.glp-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);
}

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

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

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

.btn-glp-primary {
    background: var(--glp-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-glp-primary:hover {
    transform: translateY(-3px);
    background: var(--glp-dark);
    color: #fff;
    box-shadow: 0 15px 30px rgba(111, 127, 99, 0.5);
}

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

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

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

.glp-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 */
.glp-section {
    padding: 80px 0;
    position: relative;
}

.glp-intro {
    background: #fff;
}

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

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

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

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

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

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

/* 3. DIFFERENCES & BENEFITS - Reimagined */
.glp-benefits {
    background: linear-gradient(180deg, #fdfbf7 0%, #f8f4ed 50%, #f5efe6 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.glp-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;
}

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

.glp-benefits .glp-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;
}

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

/* Benefit Cards - Glassmorphism with organic feel */
.glp-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 */
.glp-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;
}

.glp-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);
}

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

/* Icon container with soft background */
.glp-benefit-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(145deg, #f8f5f0 0%, #f0ebe3 100%);
    border-radius: 50%;
    box-shadow:
        inset 0 2px 8px rgba(0,0,0,0.04),
        0 4px 12px rgba(111, 127, 99, 0.08);
    transition: all 0.4s ease;
}

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

/* Image Icon Style */
.glp-benefit-img-icon {
    height: 100px;
    width: 100px;
    object-fit: contain;
    margin-bottom: 24px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 14px;
    background: linear-gradient(145deg, #f8f5f0 0%, #f0ebe3 100%);
    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;
}

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

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

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

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

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

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

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

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

/* Organic blob decorations */
.glp-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;
}

.glp-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); }
}

.glp-pricing-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 32px;
    margin-top: 60px;
    padding: 0 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    align-items: stretch;
}

/* Base card styling */
.glp-price-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: 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;
}

.glp-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;
}

.glp-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 */
.glp-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;
}

.glp-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;
}

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

/* Badge - Floating botanical style */
.glp-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;
}

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

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

.glp-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;
}

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

.glp-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;
}

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

.glp-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;
}

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

.glp-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;
}

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

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

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

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

.glp-price-card.premium .glp-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;
}

/* Premium animation override */
.glp-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 */
.glp-pricing .glp-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

    .glp-pricing-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 420px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

/* Background Decoration */
.glp-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;
}

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

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

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

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

/* Card effect for the text content */
.glp-why-matters .glp-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 */
}

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

/* Decorate the card */
.glp-why-matters .glp-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;
}

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

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

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

.glp-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);
}

.glp-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;
}

.glp-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);
}

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

.glp-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;
}

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

.glp-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;
}

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

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

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

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

.glp-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;
}

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

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

.glp-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(--glp-primary);
    border-radius: 50%;
    font-size: 14px;
    flex-shrink: 0;
}

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

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

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

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

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