/* ============================================
   SYNEVRA LIFT & LOCK SYSTEM - MAIN STYLESHEET
   Theme: Navy Blue + Golden Yellow (TrySynevra Inspired)
   Target: USA Market, 50-60 Age Group
   ============================================ */

/* CSS Variables */
:root {
    --primary-navy: #1a1f71;
    --primary-navy-dark: #0f1347;
    --primary-navy-light: #2d3494;
    --accent-yellow: #f5a623;
    --accent-yellow-hover: #e69500;
    --accent-green: #28a745;
    --text-black: #000000;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-cream: #fefdf8;
    --border-light: #e0e0e0;
    --shadow-soft: 0 4px 20px rgba(26, 31, 113, 0.1);
    --shadow-medium: 0 8px 30px rgba(26, 31, 113, 0.15);
    --shadow-strong: 0 12px 40px rgba(26, 31, 113, 0.2);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --font-primary: 'Playfair Display', Georgia, serif;
    --font-secondary: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --max-width: 1200px;
    --section-padding: 80px 20px;
    --section-padding-mobile: 50px 15px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    font-family: var(--font-secondary);
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-black);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Typography - Per Requirements */
h1 {
    font-family: var(--font-primary);
    font-size: 46px;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

h2 {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 600;
    color: var(--primary-navy);
    line-height: 1.3;
    margin-bottom: 18px;
}

h3 {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-navy);
    line-height: 1.4;
    margin-bottom: 15px;
}

h4 {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-navy);
    line-height: 1.4;
    margin-bottom: 12px;
}

p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-black);
    margin-bottom: 15px;
}

a {
    color: var(--primary-navy);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--accent-yellow);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-white { color: var(--bg-white); }
.text-navy { color: var(--primary-navy); }
.text-yellow { color: var(--accent-yellow); }
.text-green { color: var(--accent-green); }
.bg-navy { background-color: var(--primary-navy); }
.bg-white { background-color: var(--bg-white); }
.bg-light { background-color: var(--bg-light); }

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    background-color: var(--bg-white);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-normal);
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-navy);
    letter-spacing: 2px;
}

.logo-sub {
    font-family: var(--font-secondary);
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-navy-light);
    letter-spacing: 3px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-yellow);
    transition: var(--transition-normal);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background-color: var(--accent-yellow);
    color: var(--primary-navy) !important;
    padding: 12px 25px !important;
    border-radius: 50px;
    font-weight: 700 !important;
    transition: var(--transition-normal);
}

.nav-cta:hover {
    background-color: var(--accent-yellow-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.nav-cta::after {
    display: none !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-navy);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-cream) 100%);
    padding: 140px 20px 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(26, 31, 113, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
}

.hero-features {
    margin: 30px 0;
}

.hero-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 17px;
}

.hero-feature .icon {
    color: var(--accent-yellow);
    font-weight: 700;
    font-size: 18px;
    min-width: 20px;
}

.hero-feature strong {
    color: var(--primary-navy);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 35px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--accent-yellow);
    color: var(--primary-navy);
}

.btn-primary:hover {
    background-color: var(--accent-yellow-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    color: var(--primary-navy);
}

.btn-secondary {
    background-color: var(--primary-navy);
    color: var(--bg-white);
}

.btn-secondary:hover {
    background-color: var(--primary-navy-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    color: var(--bg-white);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    animation: float 4s ease-in-out infinite;
}

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

/* ============================================
   DIFFERENCE SECTION
   ============================================ */
.difference-section {
    background-color: var(--primary-navy);
    padding: var(--section-padding);
    position: relative;
}

.difference-section h2 {
    color: var(--bg-white);
    text-align: center;
    margin-bottom: 15px;
}

.difference-section h2 span {
    color: var(--accent-yellow);
}

.difference-subtitle {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 50px;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.difference-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition-normal);
}

.difference-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.difference-card-image {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.difference-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.difference-card h3 {
    color: var(--bg-white);
    font-size: 22px;
    margin-bottom: 12px;
}

.difference-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.quality-box {
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.15) 0%, rgba(245, 166, 35, 0.05) 100%);
    border: 2px solid var(--accent-yellow);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.quality-box h3 {
    color: var(--accent-yellow);
    font-size: 24px;
    margin-bottom: 25px;
}

.quality-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
    max-width: 800px;
    margin: 0 auto;
}

.quality-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--bg-white);
    font-size: 16px;
}

.quality-feature .icon {
    color: var(--accent-yellow);
    font-weight: 700;
    font-size: 18px;
}

/* ============================================
   INGREDIENTS SECTION
   ============================================ */
.ingredients-section {
    background-color: var(--primary-navy);
    padding: var(--section-padding);
}

.ingredients-section h2 {
    color: var(--bg-white);
    text-align: center;
    margin-bottom: 50px;
}

.ingredients-product {
    text-align: center;
    margin-bottom: 50px;
}

.ingredients-product img {
    max-width: 300px;
    margin: 0 auto 20px;
}

.ingredients-product h3 {
    color: var(--bg-white);
    font-size: 28px;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.ingredient-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: var(--transition-normal);
}

.ingredient-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.ingredient-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8ecf8 100%);
}

.ingredient-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ingredient-card h4 {
    color: var(--primary-navy-light);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.ingredient-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    background-color: var(--bg-white);
    padding: var(--section-padding);
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid var(--border-light);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid var(--accent-yellow);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    font-size: 17px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-navy);
    font-size: 18px;
}

.testimonial-location {
    color: var(--text-gray);
    font-size: 14px;
}

.testimonial-disclaimer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
    font-size: 13px;
    color: var(--text-gray);
}

/* ============================================
   BONUS SECTION
   ============================================ */
.bonus-section {
    background-color: var(--primary-navy);
    padding: var(--section-padding);
}

.bonus-section h2 {
    color: var(--bg-white);
    text-align: center;
    margin-bottom: 10px;
}

.bonus-section h2 .price {
    color: var(--accent-green);
}

.bonus-section h2 .free {
    color: var(--accent-green);
}

.bonus-subtitle {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.bonus-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px 35px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    transition: var(--transition-normal);
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.bonus-image {
    flex-shrink: 0;
    width: 180px;
}

.bonus-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.bonus-content {
    flex-grow: 1;
}

.bonus-price {
    display: inline-block;
    background-color: var(--accent-green);
    color: var(--bg-white);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 15px;
}

.bonus-price span {
    text-decoration: line-through;
    opacity: 0.8;
    margin-right: 8px;
}

.bonus-content h3 {
    color: var(--primary-navy);
    font-size: 22px;
    margin-bottom: 12px;
}

.bonus-content p {
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 10px;
}

.bonus-note {
    font-size: 13px !important;
    font-style: italic;
    color: var(--text-gray) !important;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    background-color: var(--bg-white);
    padding: var(--section-padding);
}

.pricing-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--accent-yellow);
    transform: scale(1.05);
    box-shadow: var(--shadow-strong);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-yellow);
    color: var(--primary-navy);
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.pricing-card:hover {
    border-color: var(--primary-navy);
    box-shadow: var(--shadow-medium);
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.pricing-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pricing-image img {
    max-height: 100%;
    width: auto;
}

.pricing-details {
    margin-bottom: 20px;
}

.pricing-item {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.pricing-item strong {
    color: var(--primary-navy);
}

.pricing-bonus {
    color: var(--accent-green);
    font-weight: 600;
}

.pricing-savings {
    background: rgba(40, 167, 69, 0.1);
    color: var(--accent-green);
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 15px;
}

.pricing-total {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.pricing-shipping {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 15px;
}

.pricing-shipping.free {
    color: var(--accent-green);
    font-weight: 600;
}

/* ============================================
   GUARANTEE SECTION
   ============================================ */
.guarantee-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 60px 20px;
}

.guarantee-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-white);
    border: 2px solid var(--accent-yellow);
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: var(--shadow-medium);
}

.guarantee-badge {
    font-size: 60px;
    margin-bottom: 20px;
}

.guarantee-box h2 {
    margin-bottom: 15px;
}

.guarantee-box p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-gray);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background-color: var(--bg-white);
    padding: var(--section-padding);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-soft);
}

.faq-question {
    padding: 25px 30px;
    background: var(--bg-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-navy);
    font-size: 18px;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    transition: var(--transition-normal);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-gray);
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
    padding: var(--section-padding);
    text-align: center;
}

.final-cta-section h2 {
    color: var(--bg-white);
    margin-bottom: 20px;
}

.final-cta-section p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 30px;
}

.final-cta-image {
    max-width: 500px;
    margin: 0 auto 30px;
}

.final-cta-image img {
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--primary-navy-dark);
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 40px;
    margin-bottom: 40px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-yellow);
}

.footer-disclaimer {
    max-width: 900px;
    margin: 0 auto 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

/* ============================================
   FLOATING CTA BUTTON (Mobile)
   ============================================ */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

.floating-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-yellow);
    color: var(--primary-navy);
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    box-shadow: 0 5px 25px rgba(245, 166, 35, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 5px 25px rgba(245, 166, 35, 0.4); }
    50% { box-shadow: 0 5px 35px rgba(245, 166, 35, 0.6); }
}

/* ============================================
   EXIT INTENT POPUP
   ============================================ */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.popup-overlay.active {
    display: flex;
}

.popup-content {
    background: var(--bg-white);
    border-radius: 25px;
    max-width: 500px;
    width: 100%;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    animation: popIn 0.4s ease;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: var(--text-gray);
    line-height: 1;
}

.popup-close:hover {
    color: var(--primary-navy);
}

.popup-content h3 {
    margin-bottom: 15px;
}

.popup-content p {
    color: var(--text-gray);
    margin-bottom: 25px;
}

/* ============================================
   PURCHASE NOTIFICATION
   ============================================ */
.purchase-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--bg-white);
    border-radius: 15px;
    padding: 15px 20px;
    box-shadow: var(--shadow-strong);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 998;
    transform: translateX(-150%);
    transition: transform 0.5s ease;
    max-width: 320px;
}

.purchase-notification.show {
    transform: translateX(0);
}

.purchase-notification-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.purchase-notification-text {
    font-size: 14px;
    color: var(--text-dark);
}

.purchase-notification-text strong {
    color: var(--primary-navy);
    display: block;
}

.purchase-notification-text span {
    color: var(--text-gray);
    font-size: 12px;
}

/* ============================================
   BLOG STYLES
   ============================================ */
.blog-hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
    padding: 140px 20px 80px;
    text-align: center;
}

.blog-hero h1 {
    color: var(--bg-white);
}

.blog-hero p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.blog-card-image {
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 25px;
}

.blog-card-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.blog-card-content h3 a {
    color: var(--primary-navy);
}

.blog-card-content h3 a:hover {
    color: var(--accent-yellow);
}

.blog-card-content p {
    color: var(--text-gray);
    font-size: 15px;
    margin-bottom: 15px;
}

.blog-card-meta {
    font-size: 13px;
    color: var(--text-gray);
}

/* Blog Post Single */
.blog-post-hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
    padding: 140px 20px 60px;
}

.blog-post-hero h1 {
    color: var(--bg-white);
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
}

.blog-post-meta {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.blog-post-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.blog-post-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.blog-post-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-post-content p {
    margin-bottom: 20px;
}

.blog-post-content ul,
.blog-post-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-post-content li {
    margin-bottom: 10px;
}

.blog-author-box {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 30px;
    margin-top: 50px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.blog-author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    font-weight: 700;
    flex-shrink: 0;
}

.blog-author-info h4 {
    margin-bottom: 5px;
}

.blog-author-info p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 0;
}

.blog-cta-box {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-light) 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-top: 50px;
}

.blog-cta-box h3 {
    color: var(--bg-white);
    margin-bottom: 15px;
}

.blog-cta-box p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
    padding: 140px 20px 60px;
    text-align: center;
}

.legal-hero h1 {
    color: var(--bg-white);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 24px;
}

.legal-content p {
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-content li {
    margin-bottom: 8px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    h1 { font-size: 38px; }
    h2 { font-size: 30px; }
    h3 { font-size: 24px; }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .difference-grid,
    .ingredients-grid,
    .testimonials-grid,
    .pricing-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 30px; }
    h2 { font-size: 24px; }
    h3 { font-size: 20px; }
    p { font-size: 16.5px; }
    
    .header {
        display: none;
    }
    
    .hero {
        padding: 80px 15px 60px;
        min-height: auto;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        padding: 16px 30px;
    }
    
    .difference-grid,
    .ingredients-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-card {
        flex-direction: column;
        text-align: center;
    }
    
    .bonus-image {
        width: 150px;
        margin: 0 auto;
    }
    
    .quality-features {
        grid-template-columns: 1fr;
    }
    
    .floating-cta {
        display: block;
    }
    
    .purchase-notification {
        left: 10px;
        right: 10px;
        max-width: none;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    section {
        padding: var(--section-padding-mobile);
    }
}

@media (max-width: 480px) {
    h1 { font-size: 28px; }
    h2 { font-size: 22px; }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .popup-content {
        padding: 35px 25px;
    }
    
    .guarantee-box {
        padding: 35px 25px;
    }
}

/* Print Styles */
@media print {
    .header,
    .floating-cta,
    .popup-overlay,
    .purchase-notification {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
    }
}
