/* ==========================================================================
   ILLUDERMA - ADVANCED STYLESHEET
   Theme: Natural Skin-Care Green (#28a745) & Professional E-E-A-T Compliance
   ========================================================================== */

/* ===== GLOBAL RESETS & FOUNDATION ===== */
*, *::before, *::after { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

:root {
    /* === BRAND COLORS (Illuderma Natural Theme) === */
    --bg-light:        #F4F9F5; /* Soft, refreshing green-tinted white for skin-care vibe */
    --brand-primary:   #111827; /* Crisp Dark for Headings */
    --brand-secondary: #4B5563; /* Soft Gray for Accents */
    
    /* Product Specific Colors */
    --brand-accent:    #28a745; /* Requested Natural Green */
    --brand-accent-hover:#1e7e34; /* Darker Green for Hover States */
    --brand-yellow:    #FDE047; /* Kept for star ratings and highlight badges */
    
    --brand-green:     #28a745; /* Trust Green */
    --white:           #ffffff;
    --bg-dark:         #1a202c; /* Deep Dark for Footer */
    --text-main:       #374151; /* Strong Dark Grey for high readability */
    --text-muted:      #4B5563; /* Softer text for descriptions */
    --border-color:    #c3e6cb; /* Light green for clean section borders */
  
    /* Shadows for Depth (Tuned to Natural Green: 40, 167, 69) */
    --shadow-sm:       0 2px 8px rgba(40, 167, 69, 0.08);
    --shadow-md:       0 4px 20px rgba(40, 167, 69, 0.12);
    --shadow-lg:       0 12px 35px rgba(17, 24, 39, 0.15);

    /* === OPTIMIZED TYPOGRAPHY SCALES === */
    --f-xs:    1.0rem;
    --f-sm:    1.15rem;
    --f-body:  1.20rem; 
    --f-md:    1.45rem;
    --f-lg:    1.65rem;
    --f-xl:    2.1rem;
    --f-2xl:   2.6rem;
    --f-3xl:   3.2rem;
    --f-price: 3.6rem;
    --lh-body: 1.8;
}

html { 
    scroll-behavior: smooth; 
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: var(--f-body);
    line-height: var(--lh-body);
    color: var(--text-main);
    background: var(--white);
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY BASICS ===== */
h1 { 
    font-family: 'Playfair Display', serif; 
    font-size: var(--f-3xl); 
    font-weight: 800; 
    line-height: 1.2; 
    color: var(--brand-primary);
}
h2 { font-size: var(--f-2xl); font-weight: 800; line-height: 1.25; color: var(--brand-primary); }
h3 { font-size: var(--f-xl);  font-weight: 700; line-height: 1.3; color: var(--brand-primary); }
h4 { font-size: var(--f-lg);  font-weight: 700; line-height: 1.35; color: var(--brand-primary); }
p, li { 
    font-size: var(--f-body); 
    line-height: var(--lh-body); 
    margin-bottom: 18px; 
    text-align: justify; 
    text-align-last: left; 
}
a { text-decoration: none; color: var(--brand-accent); }

/* ===== GLOBAL UTILITIES ===== */
.section    { padding: 80px 24px; }
.bg-light   { background: var(--bg-light); } 
.brand-text { color: var(--brand-accent); }
.center     { text-align: center; }
.green-txt  { color: var(--brand-green) !important; font-weight: 700; }
.wrap       { padding: 0 15px; } 
.wrap-narrow { max-width: 900px; margin: 0 auto; padding: 0 15px; }
.mt-20      { margin-top: 20px; }
.mt-30      { margin-top: 30px; }

.sec-title  { 
    font-size: var(--f-2xl); 
    font-weight: 900; 
    margin-bottom: 15px; 
}
.sec-sub    { 
    font-size: var(--f-md); 
    color: var(--text-muted); 
    margin-bottom: 50px; 
    max-width: 900px; 
    margin-left: auto; 
    margin-right: auto; 
}

/* ===== CALL TO ACTION (CTA) BUTTONS ===== */
/* Natural Green Gradient */
.btn-cta {
    display: inline-block; 
    background: linear-gradient(to bottom, #34ce57 0%, var(--brand-accent) 100%); 
    color: #ffffff !important;
    padding: 18px 45px; 
    border-radius: 8px;
    font-weight: 800; 
    font-size: var(--f-lg);
    margin-top: 25px;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    transition: all 0.3s ease;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--brand-accent-hover);
}
.btn-cta:hover { 
    background: linear-gradient(to bottom, #2ebd4f 0%, var(--brand-accent-hover) 100%); 
    color: #ffffff !important;
    transform: translateY(-3px); 
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.6); 
}
.btn-cta-xl { 
    font-size: 1.4rem;  
    padding: 20px 50px;
    width: 100%;
    max-width: 600px;
}

/* ===== NAVIGATION BAR ===== */
nav {
    position: fixed; 
    top: 0; 
    left: 0; 
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-color);
}
.nav-inner {
    max-width: 1200px; 
    margin: 0 auto;
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    height: 80px; 
    padding: 0 24px;
    position: relative;
    gap: 15px; 
}

.nav-logo-text {
    font-family: 'Playfair Display', serif; 
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--brand-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}
.nav-logo-text:hover {
    color: var(--brand-accent);
}

.nav-links { 
    display: flex; 
    gap: 25px; 
    list-style: none;
    align-items: center;
}
.nav-links a { 
    color: var(--brand-primary); 
    font-weight: 600; 
    font-size: var(--f-sm); 
    transition: color 0.2s ease; 
    white-space: nowrap; 
}
.nav-links a:hover { 
    color: var(--brand-accent); 
}

/* Secondary Nav Button */
.btn-nav {
    background: var(--brand-primary); 
    color: var(--white) !important;
    padding: 12px 25px; 
    border-radius: 6px;
    font-weight: 700; 
    font-size: var(--f-sm);
    transition: all 0.2s ease;
    white-space: nowrap; 
    flex-shrink: 0; 
    border: 1px solid var(--brand-primary);
}
.btn-nav:hover { 
    background: var(--brand-accent);
    border-color: var(--brand-accent);
    color: var(--white) !important; 
}

/* Mobile Menu Elements */
.hamburger { 
    display: none; 
    flex-direction: column; 
    gap: 6px; 
    background: none; 
    border: none; 
    cursor: pointer; 
    padding: 5px; 
}
.hamburger span { 
    display: block; 
    width: 30px; 
    height: 3px; 
    background: var(--brand-primary); 
    border-radius: 2px; 
    transition: all 0.3s ease;
}

/* Fixed Mobile Menu Layout */
.mob-menu { 
    display: none; 
    flex-direction: column; 
    gap: 18px; 
    padding: 20px 24px; 
    background: var(--bg-light);
    border-top: 1px solid var(--border-color); 
    box-shadow: var(--shadow-md);
    position: absolute; 
    top: 80px; 
    left: 0;
    width: 100%;
    z-index: 999;
}
.mob-menu.open { 
    display: flex; 
}
.mob-menu a { 
    color: var(--brand-primary); 
    font-weight: 700; 
    font-size: var(--f-md); 
    transition: color 0.2s ease;
}
.mob-menu a:hover {
    color: var(--brand-accent);
}

/* ===== HERO SECTION ===== */
.hero { 
    padding: 80px 24px; 
    background: radial-gradient(circle at top left, #ffffff, var(--bg-light));
    border-bottom: 1px solid var(--border-color);
}
.hero-grid {
    max-width: 1200px; 
    margin: 0 auto;
    display: grid; 
    grid-template-columns: 1fr 1.2fr;
    gap: 50px; 
    align-items: center;
}
/* Alert Bar */
.alert-bar {
    display: inline-block;
    background-color: var(--brand-accent);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-content h1 span { 
    color: var(--brand-accent); 
    position: relative;
}
.hero-content p { 
    color: var(--text-muted); 
    margin-bottom: 25px; 
    font-size: var(--f-md); 
    text-align: left; 
}
.hero-subtext {
    color: #e63946 !important;
    font-weight: bold;
}
.hero-list {
    list-style: none;
    margin-bottom: 25px;
}
.hero-list li {
    font-size: var(--f-md);
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 12px;
}
.hero-img img { 
    width: 100%; 
    max-width: 550px; 
    margin: 0 auto; 
    display: block; 
    filter: drop-shadow(0px 15px 25px rgba(40, 167, 69, 0.15)); 
}
.trust-stars { 
    font-size: 1.5rem; 
    font-weight: 700; 
    color: #EAB308; 
    margin-bottom: 15px; 
}
.trust-stars span { 
    font-size: 1rem; 
    color: var(--text-muted); 
    margin-left: 8px; 
    font-weight: 600; 
}

/* ===== TWO COLUMNS LAYOUT ===== */
.two-col { 
    max-width: 1150px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: 1fr 1.3fr; 
    gap: 50px; 
    align-items: center; 
}
.two-col.reverse {
    grid-template-columns: 1.3fr 1fr; 
    direction: rtl; 
}
.two-col.reverse > * {
    direction: ltr; 
}
.img-wrapper img { 
    width: 100%; 
    border-radius: 15px; 
    box-shadow: var(--shadow-md); 
    border: 4px solid var(--brand-accent);
}

/* ===== BENEFITS BADGES ===== */
.badges-grid {
    max-width: 1200px; 
    margin: 0 auto;
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
}
.badge-card { 
    text-align: center; 
    padding: 40px 25px; 
    border: 1px solid var(--border-color); 
    border-radius: 12px; 
    background: var(--white);
    transition: all .3s; 
}
.badge-card:hover { 
    border-color: var(--brand-accent); 
    box-shadow: var(--shadow-md); 
    transform: translateY(-5px); 
    background: var(--bg-light);
}
.badge-card img { 
    width: 90px; 
    height: 90px; 
    object-fit: contain; 
    margin: 0 auto 20px; 
    display: block; 
}
.badge-card p { text-align: center; text-align-last: center; }

/* ===== INGREDIENTS GRID ===== */
.ing-grid { 
    max-width: 1200px; 
    margin: 0 auto 50px; 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px; 
}
.ing-item { 
    background: var(--white); 
    border-radius: 15px; 
    box-shadow: var(--shadow-sm); 
    border: 1px solid var(--border-color); 
    padding: 30px;
    display: flex; 
    gap: 25px; 
    align-items: center; 
    transition: all 0.3s ease; 
}
.ing-item:hover { 
    box-shadow: var(--shadow-md); 
    border-color: var(--brand-accent); 
}
.ing-img { 
    width: 140px; 
    height: 140px; 
    object-fit: cover; 
    border-radius: 50%; 
    border: 4px solid var(--bg-light); 
    flex-shrink: 0;
}

/* ===== CUSTOMER REVIEWS ===== */
.testi-grid { 
    max-width: 1100px; 
    margin: 40px auto 0; 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 40px; 
}
.testi-card { 
    background: var(--white); 
    padding: 35px 30px; 
    border-radius: 12px; 
    border: 1px solid var(--border-color); 
    text-align: center; 
    box-shadow: var(--shadow-sm); 
}
.testi-card .stars { color: #EAB308; font-size: 1.5rem; margin-bottom: 10px; }
.testi-text { font-style: italic; color: var(--text-muted); margin-bottom: 20px; text-align: center; text-align-last: center; }
.testi-name { font-weight: 800; color: var(--brand-primary); font-size: 1.1rem; }

/* ===== PRICING PACKAGES ===== */
.pricing-grid { 
    max-width: 1100px; 
    margin: 40px auto 0; 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    align-items: end; 
}

/* Card Container */
.p-card { 
    background: var(--white); 
    border-radius: 12px; 
    border: 1px solid var(--border-color); 
    position: relative; 
    transition: all .3s; 
    display: flex; 
    flex-direction: column; 
    overflow: hidden; 
    box-shadow: var(--shadow-sm);
}
.p-card:hover { 
    transform: translateY(-8px); 
    box-shadow: var(--shadow-lg); 
}

/* Best Value Highlight Card */
.p-card.pop { 
    border-color: var(--brand-accent); 
    border-width: 3px; 
    box-shadow: var(--shadow-md); 
    z-index: 2;
}
.p-card.pop:hover { transform: scale(1.05) translateY(-8px); }

/* Card Body */
.p-card-body {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    flex-grow: 1;
}

/* Product Images inside Pricing */
.pkg-img { 
    width: 100%; 
    max-width: 220px; 
    margin: 0 auto 20px; 
    display: block; 
    transition: transform .3s; 
}
.p-card.pop .pkg-img { max-width: 250px; }
.pkg-img:hover { transform: scale(1.05); }

/* Price Layout */
.p-price-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

/* Yellow CTA inside pricing modified to Green for Illuderma */
.btn-yellow {
    display: block;
    width: 100%;
    background: linear-gradient(to bottom, #34ce57 0%, var(--brand-accent) 100%);
    color: #ffffff !important;
    font-size: 1.4rem;
    font-weight: 900;
    padding: 15px 10px;
    border-radius: 8px;
    border: 1px solid var(--brand-accent-hover);
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.5);
    margin-bottom: 15px;
    transition: all 0.2s ease;
    text-align: center;
    position: relative;
}
.btn-yellow:hover {
    background: linear-gradient(to bottom, #2ebd4f 0%, var(--brand-accent-hover) 100%);
    transform: translateY(-2px);
}

/* Cursor Icon Animation */
.cursor-btn::after {
    content: "👆"; 
    font-size: 2rem;
    position: absolute;
    bottom: -15px;
    right: 15px;
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.3));
    animation: bounceRight 1.5s infinite;
}
@keyframes bounceRight {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(5px, 5px); }
}

/* ===== SECURITY & GUARANTEE ===== */
.security-box { 
    background: var(--bg-light); 
    padding: 40px; 
    border-radius: 12px; 
    border: 1px solid var(--border-color); 
    box-shadow: var(--shadow-sm); 
    text-align: center;
}
.security-box img {
    margin: 0 auto 20px;
    display: block;
}
.security-box p { text-align: left; }

/* ===== FAQ ACCORDION STYLES ===== */
.faq-list { 
    max-width: 900px; 
    margin: 40px auto 0; 
}
.faq-item { 
    background: var(--white); 
    border-radius: 10px; 
    margin-bottom: 15px; 
    border: 1px solid var(--border-color); 
    overflow: hidden; 
    box-shadow: var(--shadow-sm); 
    transition: all 0.3s ease;
}
.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--brand-accent);
}
.faq-q { 
    width: 100%; 
    background: none; 
    border: none; 
    padding: 25px 30px; 
    text-align: left; 
    cursor: pointer; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    font-size: var(--f-lg); 
    font-weight: 700; 
    color: var(--brand-primary); 
    font-family: inherit; 
    transition: color 0.3s ease;
}
.faq-q:hover {
    color: var(--brand-accent); 
}
.faq-arrow { 
    color: var(--brand-accent); 
    transition: transform 0.4s ease; 
    font-size: 1.2rem; 
}
.faq-item.open { border-color: var(--brand-accent); }
.faq-item.open .faq-q { color: var(--brand-accent); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-ans { 
    max-height: 0; 
    overflow: hidden; 
    transition: all 0.4s ease-in-out; 
    padding: 0 30px; 
}
.faq-item.open .faq-ans { 
    max-height: 600px; 
    padding: 0 30px 25px; 
}
.faq-ans p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
}

/* ===== FOOTER ===== */
footer { 
    background: var(--bg-dark); 
    color: #999999; 
    padding: 70px 24px 40px; 
    text-align: center; 
}
.foot-disc { 
    max-width: 1100px; 
    margin: 0 auto; 
    font-size: 0.90rem; 
    line-height: 1.7; 
    text-align: justify; 
    text-align-last: center; 
}
.foot-disc p {
    margin-bottom: 15px;
    text-align: center;
    text-align-last: center;
}
.foot-links { 
    display: flex; 
    justify-content: center; 
    gap: 25px; 
    margin: 40px 0 25px; 
    flex-wrap: wrap; 
}
.foot-links a { 
    color: var(--border-color); 
    font-weight: 600; 
    text-transform: uppercase; 
    font-size: 0.85rem; 
    letter-spacing: 0.5px; 
}
.foot-links a:hover { color: var(--brand-accent); }
.foot-copy { font-size: 0.9rem; opacity: 0.6; margin-top: 15px; }

/* ===== RESPONSIVE MEDIA QUERIES ===== */
@media (max-width: 1024px) {
    :root {
        --f-body: 1.15rem; --f-md: 1.3rem; --f-lg: 1.45rem;
        --f-xl: 1.8rem; --f-2xl: 2.2rem; --f-3xl: 2.6rem; --f-price: 3rem;
    }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content p, .hero-list li { text-align: center; }
    .hero-img { order: -1; margin-bottom: 20px; }
    
    .two-col, .two-col.reverse, .ing-grid { grid-template-columns: 1fr; text-align: center; direction: ltr; }
    .pricing-grid, .badges-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .badges-grid { grid-template-columns: repeat(2, 1fr); }
    
    .ing-item { flex-direction: column; text-align: center; }
    
    .nav-links, .btn-nav { display: none; }
    .hamburger { display: flex; }
    p, li { text-align: left; }
    
    .p-card.pop { transform: scale(1); }
    .p-card.pop:hover { transform: translateY(-8px); }
}

@media (max-width: 600px) {
    :root {
        --f-body: 1.05rem; --f-md: 1.15rem; --f-lg: 1.3rem;
        --f-xl: 1.6rem; --f-2xl: 1.9rem; --f-3xl: 2.1rem; --f-price: 2.5rem;
    }
    .section { padding: 50px 20px; }
    .badges-grid { grid-template-columns: 1fr; }
    .btn-cta, .btn-cta-xl { padding: 16px 20px; font-size: var(--f-md); width: 100%; }
    .foot-disc { text-align: left; text-align-last: left; }
    .foot-disc p { text-align: left; text-align-last: left;}
    .hero-list li { text-align: left; }
    .security-box p { text-align: left; }
}

/* ==========================================================================
   PREMIUM BONUSES CSS (Fully Responsive Fix)
   ========================================================================== */

.bonus-section {
    background-color: #f4fce8; 
    border-top: 2px dashed #28a745; 
    border-bottom: 2px dashed #28a745; 
    padding: 70px 20px;
}

.bonus-container {
    max-width: 1000px; 
    margin: 0 auto;
}

.bonus-header {
    margin-bottom: 40px;
}

.bonus-alert {
    display: inline-block;
    background: #e63946; 
    color: #fff; 
    padding: 6px 20px; 
    border-radius: 25px; 
    font-weight: 800; 
    font-size: 0.9rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    box-shadow: 0 4px 10px rgba(230, 57, 70, 0.3);
}

.bonus-main-title {
    margin-top: 20px; 
    color: #1b6b50; 
    font-size: 2.4rem; 
    font-weight: 900;
    line-height: 1.3;
}

.bonuses-preview { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 30px; 
    justify-content: center; 
}

/* FIX: Changed min-width to flex-basis for fluid responsiveness */
.premium-box { 
    flex: 1 1 300px; 
    max-width: 100%; /* Prevents overflow on mobile */
    background: #ffffff; 
    border: 2px solid #c3e6cb; 
    border-radius: 16px; 
    padding: 35px 25px; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    text-align: center; 
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.08); 
    transition: all 0.4s ease; 
    position: relative; 
    overflow: hidden; 
}

.premium-box:hover { 
    transform: translateY(-8px); 
    border-color: #28a745; 
    box-shadow: 0 15px 40px rgba(40, 167, 69, 0.15); 
}

.bonus-img-wrapper { 
    position: relative; 
    margin-bottom: 25px; 
    width: 100%; 
    max-width: 180px; 
}

.bonus-img-wrapper img { 
    width: 100%; 
    height: auto; 
    filter: drop-shadow(0px 10px 15px rgba(0,0,0,0.15)); 
    transition: transform 0.4s ease; 
}

.premium-box:hover .bonus-img-wrapper img { 
    transform: scale(1.05) rotate(2deg); 
}

.free-badge { 
    position: absolute; 
    top: -10px; 
    right: -10px; 
    background: #e63946; 
    color: #fff; 
    width: 60px; 
    height: 60px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: 900; 
    font-size: 1.1rem; 
    box-shadow: 0 4px 10px rgba(230, 57, 70, 0.4); 
    z-index: 2; 
    transform: rotate(15deg); 
    border: 2px dashed #fff; 
}

.bonus-num { color: #f59e0b; font-weight: 800; font-size: 1.1rem; letter-spacing: 1px; margin-bottom: 10px; }
.bonus-title { color: #1b6b50; font-size: 1.5rem; line-height: 1.3; margin-bottom: 15px; font-weight: 800; }
.bonus-desc { color: #555; font-size: 1.05rem; line-height: 1.6; margin-bottom: 25px; }

.bonus-value { 
    background: #f4fce8; 
    border: 1px dashed #28a745; 
    padding: 12px 20px; 
    border-radius: 50px; 
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
    font-size: 1.1rem; 
}

.bonus-value .retail { color: #666; font-weight: 500; }
.bonus-value .retail s { color: #e63946; font-weight: 700; }
.bonus-value .today-free { color: #28a745; font-weight: 900; font-size: 1.2rem; background: #e8f5e9; padding: 2px 10px; border-radius: 5px; }

/* ==========================================================================
   MOBILE RESPONSIVENESS FIXES (Important for small screens)
   ========================================================================== */
@media (max-width: 600px) {
    .bonus-section {
        padding: 50px 15px;
    }
    .bonus-main-title {
        font-size: 1.8rem; /* Scale down heading */
    }
    .premium-box { 
        padding: 25px 15px; /* Reduce padding to prevent overflow */
    }
    .bonus-value { 
        flex-direction: column; /* Stack the price on mobile */
        border-radius: 12px; 
        gap: 5px; 
        width: 100%;
    }
}

/* ==========================================================================
   PRICING GRID (RESPONSIVE FLEXBOX)
   ========================================================================== */
.pricing-flex-container { 
    display: flex; 
    flex-direction: row; 
    justify-content: center; 
    align-items: center; 
    gap: 25px; 
    max-width: 1150px; 
    margin: 0 auto; 
    padding: 0 15px; 
}
.p-card { 
    flex: 1; 
    width: 100%; 
    transition: transform 0.3s ease; 
}

/* DESKTOP ONLY: Middle card pops out */
@media (min-width: 993px) { 
    .premium-card { 
        transform: scale(1.08); 
        z-index: 10; 
    } 
}

/* MOBILE & TABLET: Stack cards vertically with proper gap */
@media (max-width: 992px) {
    .pricing-flex-container { 
        flex-direction: column; 
        gap: 50px; 
    }
    .p-card { 
        max-width: 450px; 
    }
    .premium-card { 
        transform: none; 
    }
}