/* ==========================================================================
   CELLCRAFT - HIGH-CONVERTING DIGITAL PRODUCT STYLESHEET
   ========================================================================== */

:root {
    /* Color Palette */
    --primary: #059669;          /* Emerald 600 */
    --primary-hover: #047857;    /* Emerald 700 */
    --primary-dark: #065f46;     /* Emerald 800 */
    --primary-light: #d1fae5;    /* Emerald 100 */
    --primary-super-light: #ecfdf5; /* Emerald 50 */
    
    --secondary: #0f172a;        /* Slate 900 */
    --secondary-light: #1e293b;  /* Slate 800 */
    
    --accent: #f59e0b;           /* Amber 500 */
    --accent-hover: #d97706;     /* Amber 600 */
    --accent-light: #fef3c7;     /* Amber 100 */
    
    --text-dark: #0f172a;        /* Slate 900 */
    --text-body: #334155;        /* Slate 700 */
    --text-muted: #64748b;       /* Slate 500 */
    --text-light: #94a3b8;       /* Slate 400 */
    
    --bg-white: #ffffff;
    --bg-light: #f8fafc;        /* Slate 50 */
    --bg-alt: #f1f5f9;          /* Slate 100 */
    
    --border-color: #e2e8f0;     /* Slate 200 */
    --border-dark: #334155;
    
    /* Typography */
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px -2px rgba(0, 0, 0, 0.08), 0 2px 6px -1px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 12px 24px -4px rgba(0, 0, 0, 0.12), 0 4px 8px -2px rgba(0, 0, 0, 0.06);
    --shadow-xl: 0 20px 32px -6px rgba(0, 0, 0, 0.16), 0 8px 16px -4px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 25px rgba(5, 150, 105, 0.3);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1.25rem;
    --radius-full: 9999px;
    
    /* Transition */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s ease;
    --transition-slow: 0.4s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

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

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.section-padding {
    padding: 5rem 0;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--secondary); color: white; }

/* Section Header */
.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3.5rem auto;
}

.section-header .tag {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: var(--primary-super-light);
    color: var(--primary);
    border: 1px solid var(--primary-light);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.85rem;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.45);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--text-dark);
    border: 1.5px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--text-muted);
    transform: translateY(-2px);
}

.btn-pulse {
    animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(5, 150, 105, 0); }
    100% { box-shadow: 0 0 0 0 rgba(5, 150, 105, 0); }
}

.btn-lg {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    width: 100%;
    max-width: 440px;
}

/* Announcement Bar */
.announcement {
    background: linear-gradient(90deg, #0f172a 0%, #1e293b 100%);
    color: white;
    text-align: center;
    padding: 0.65rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.announcement-tag {
    background: var(--accent);
    color: var(--secondary);
    padding: 0.15rem 0.6rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.timer-box {
    background: rgba(255,255,255,0.12);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    color: #fef08a;
    font-family: monospace;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.15);
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary);
    white-space: nowrap;
}

.logo-img {
    height: 38px;
    width: auto;
}

.logo-badge {
    background: var(--primary-super-light);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--primary-light);
    white-space: nowrap;
}

.header-btn {
    padding: 0.65rem 1.35rem;
    font-size: 0.95rem;
    white-space: nowrap;
}

.btn-text-desktop {
    display: inline;
}

.btn-text-mobile {
    display: none;
}

/* Hero Section */
.hero {
    padding: 4.5rem 0 5.5rem 0;
    background: radial-gradient(circle at 70% 20%, rgba(16, 185, 129, 0.08) 0%, rgba(255, 255, 255, 0) 60%),
                linear-gradient(180deg, var(--primary-super-light) 0%, #ffffff 100%);
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
}

.trust-badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: white;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-xs);
    margin-bottom: 1.5rem;
}

.stars {
    color: var(--accent);
    display: flex;
    gap: 0.15rem;
    font-size: 1rem;
}

.trust-badge-hero p {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.hero-content h1 {
    font-size: 3.1rem;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: var(--secondary);
}

.hero-content h1 span.highlight {
    background: linear-gradient(120deg, #059669 0%, #0d9488 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.18rem;
    color: var(--text-body);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.format-pills {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.format-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: white;
    border: 1px solid var(--border-color);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-md);
    font-size: 0.825rem;
    font-weight: 600;
    color: var(--text-body);
    box-shadow: var(--shadow-xs);
}

.format-pill i {
    color: var(--primary);
    font-size: 1.1rem;
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.guarantee-text {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-muted);
}

.hero-image-box {
    position: relative;
}

.hero-card-preview {
    background: white;
    border-radius: var(--radius-xl);
    padding: 0.85rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    transition: transform 0.4s ease;
}

.hero-card-preview:hover {
    transform: translateY(-4px);
}

.hero-card-preview img {
    border-radius: var(--radius-lg);
    width: 100%;
}

.hero-floating-badge {
    position: absolute;
    bottom: -1.25rem;
    left: 1.5rem;
    background: var(--secondary);
    color: white;
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.85rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-floating-badge .badge-icon {
    background: var(--primary);
    width: 2.4rem;
    height: 2.4rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.hero-floating-badge .badge-text {
    display: flex;
    flex-direction: column;
}

.hero-floating-badge .badge-text span:first-child {
    font-weight: 700;
    font-size: 0.95rem;
}

.hero-floating-badge .badge-text span:last-child {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Social Proof Strip */
.trust-strip {
    padding: 2.25rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: white;
}

.trust-strip-title {
    text-align: center;
    font-size: 0.825rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.trust-metrics {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.metric-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.metric-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Interactive Template Showcase (Tabs & Lightbox) */
.showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.tab-btn {
    padding: 0.65rem 1.35rem;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--border-color);
    background: white;
    color: var(--text-body);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-super-light);
}

.tab-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.template-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.template-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.template-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
    border-color: var(--primary-light);
}

.template-img-box {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--bg-alt);
    cursor: pointer;
}

.template-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.template-card:hover .template-img-box img {
    transform: scale(1.04);
}

.template-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.template-card:hover .template-overlay {
    opacity: 1;
}

.zoom-btn {
    background: white;
    color: var(--secondary);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: var(--shadow-lg);
}

.template-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.template-category-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
}

.template-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.template-info p {
    font-size: 0.925rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.template-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.template-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.775rem;
    font-weight: 600;
    color: var(--text-body);
    background: var(--bg-light);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-sm);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    background: white;
    border-radius: var(--radius-xl);
    max-width: 960px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    padding: 2rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
}

.lightbox-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--bg-alt);
    border: none;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--text-dark);
    transition: background var(--transition-fast);
}

.lightbox-close:hover {
    background: var(--border-color);
}

.lightbox-image-wrapper img {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    width: 100%;
}

.lightbox-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.lightbox-details p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.lightbox-features-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.lightbox-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 0.6rem;
    color: var(--text-body);
}

.lightbox-features-list i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 0.1rem;
}

/* Pain vs Solution Section */
.comparison-section {
    background: var(--bg-light);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.comparison-card {
    border-radius: var(--radius-xl);
    padding: 2.5rem;
}

.comparison-card.old-way {
    background: white;
    border: 1.5px solid #fecdd3; /* Red/Rose light */
}

.comparison-card.new-way {
    background: white;
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.comparison-badge {
    position: absolute;
    top: -1rem;
    right: 1.5rem;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.25rem 0.85rem;
    border-radius: var(--radius-full);
}

.comparison-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.comparison-card.old-way h3 { color: #e11d48; }
.comparison-card.new-way h3 { color: var(--primary-dark); }

.comparison-list {
    list-style: none;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.comparison-list li i {
    font-size: 1.25rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.old-way .comparison-list i { color: #f43f5e; }
.new-way .comparison-list i { color: var(--primary); }

/* Features Breakdown Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-normal);
    position: relative;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.icon-wrapper {
    width: 3.25rem;
    height: 3.25rem;
    background: var(--primary-super-light);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.feature-card p {
    font-size: 0.925rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* Bonus Module Stack */
.bonuses-wrapper {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    color: white;
    margin-top: 4rem;
}

.bonuses-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.bonuses-header h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.bonuses-header p {
    color: var(--text-light);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    position: relative;
}

.bonus-val {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--accent);
    color: var(--secondary);
    font-weight: 800;
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-sm);
}

.bonus-card h4 {
    color: white;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.bonus-card p {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.testimonial-card p.quote {
    font-size: 0.975rem;
    color: var(--text-body);
    font-style: italic;
    margin: 1.25rem 0;
    flex-grow: 1;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.author-avatar {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #059669 0%, #0d9488 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.verified-icon {
    color: var(--primary);
    font-size: 0.9rem;
}

.author-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(180deg, var(--secondary) 0%, #020617 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
}

.pricing-card {
    background: white;
    color: var(--text-dark);
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--primary-light);
}

.pricing-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.pricing-features h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-body);
}

.pricing-features i {
    color: var(--primary);
    font-size: 1.25rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.pricing-action-box {
    background: var(--bg-light);
    padding: 2.25rem 1.75rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border-color);
}

.price-strike {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 1.25rem;
    font-weight: 600;
}

.price-huge {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin: 0.5rem 0 1.25rem 0;
    color: var(--primary);
    font-family: var(--font-heading);
}

.checkout-reassurance {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.payment-icons {
    display: flex;
    gap: 0.75rem;
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.35rem 1.75rem;
    background: transparent;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question i {
    font-size: 1.25rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

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

.faq-answer-inner {
    padding: 0 1.75rem 1.35rem 1.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* Footer */
footer {
    background: var(--bg-light);
    padding: 4rem 0 2rem 0;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-legal p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.85rem;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Mobile Sticky Checkout Bar */
.sticky-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 0.75rem 1.25rem;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -10px 25px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.35s ease;
}

.sticky-mobile-bar.visible {
    transform: translateY(0);
}

.sticky-price-info {
    display: flex;
    flex-direction: column;
}

.sticky-price-info span:first-child {
    color: white;
    font-weight: 800;
    font-size: 1.25rem;
    font-family: var(--font-heading);
    line-height: 1;
}

.sticky-price-info span:last-child {
    color: var(--text-light);
    font-size: 0.7rem;
    text-decoration: line-through;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .trust-badge-hero {
        justify-content: center;
    }
    .format-pills {
        justify-content: center;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .cta-group {
        align-items: center;
    }
    .hero-image-box {
        max-width: 650px;
        margin: 0 auto;
    }
    .comparison-grid, .pricing-layout, .template-grid {
        grid-template-columns: 1fr;
    }
    .lightbox-content {
        grid-template-columns: 1fr;
    }
    .features-grid, .testimonials-grid, .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 3.5rem 0;
    }
    .hero {
        padding: 3rem 0 4rem 0;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .section-header h2 {
        font-size: 1.75rem;
    }
    .features-grid, .testimonials-grid, .bonus-grid {
        grid-template-columns: 1fr;
    }
    .bonuses-wrapper {
        padding: 2rem 1.25rem;
    }
    .pricing-card {
        padding: 2rem 1.25rem;
    }
    .price-huge {
        font-size: 3.25rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .header-container {
        height: 62px;
        padding: 0 0.85rem;
    }
    .logo {
        font-size: 1.15rem;
        gap: 0.4rem;
    }
    .logo-img {
        height: 30px;
    }
    .logo-badge {
        font-size: 0.65rem;
        padding: 0.1rem 0.35rem;
    }
    .header-btn {
        padding: 0.5rem 0.85rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .logo-badge {
        display: none; /* Hide badge on small mobile to avoid text crowding */
    }
    .btn-text-desktop {
        display: none;
    }
    .btn-text-mobile {
        display: inline;
    }
    .header-btn {
        padding: 0.45rem 0.75rem;
        font-size: 0.825rem;
        border-radius: var(--radius-md);
    }
}

/* ==========================================================================
   NEW MULTI-PRODUCT STORE NAVIGATION & CARD STYLES
   ========================================================================== */

.nav-menu-desktop {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-body);
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.6rem;
    color: var(--secondary);
    cursor: pointer;
    padding: 0.4rem;
}

/* Mobile Slide-out Drawer Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-drawer {
    position: absolute;
    top: 0;
    right: -100%;
    width: 82%;
    max-width: 320px;
    height: 100%;
    background: white;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right 0.3s ease;
    box-shadow: -5px 0 25px rgba(0,0,0,0.2);
}

.mobile-menu.active .mobile-menu-drawer {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.mobile-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.mobile-menu-links a {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 0.6rem 0;
    border-bottom: 1px dashed var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

/* Product Card Custom Badges & Pricing */
.product-card-badge {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    z-index: 10;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.badge-bestseller {
    background: #ef4444;
    color: white;
}

.badge-popular {
    background: #ec4899;
    color: white;
}

.badge-featured {
    background: #8b5cf6;
    color: white;
}

.badge-business {
    background: #2563eb;
    color: white;
}

.badge-productivity {
    background: #10b981;
    color: white;
}

.product-card-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin: 0.75rem 0 1rem 0;
}

.price-current {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
}

.price-original {
    font-size: 0.875rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.product-card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: auto;
    padding-top: 1rem;
}

@media (max-width: 900px) {
    .nav-menu-desktop {
        display: none;
    }
    .nav-toggle {
        display: block;
    }
}

/* ==========================================================================
   BUTTON REVIEW RATINGS & INFOGRAPHIC STYLES
   ========================================================================== */

.btn-with-rating {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.btn-cta-main {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 800;
}

.btn-cta-rating {
    font-size: 0.775rem;
    font-weight: 600;
    opacity: 0.9;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

/* Responsive Text Toggle Helpers */
.desktop-text { display: inline-flex; align-items: center; gap: 0.3rem; }
.mobile-text { display: none; }

@media (max-width: 640px) {
    .desktop-text { display: none !important; }
    .mobile-text { display: inline-flex !important; align-items: center; gap: 0.2rem; }
    
    .logo-badge {
        display: none !important;
    }

    .header-container {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
        gap: 0.4rem;
    }

    .header-btn {
        padding: 0.45rem 0.7rem !important;
        font-size: 0.8rem !important;
    }
}

/* Infographic Section Styles */
.infographic-section-root {
    /* Compact Slim Highlight Bar (Zero Space Wasted) */
.compact-highlight-bar-root {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 0.75rem 1.25rem;
    background: var(--primary-super-light);
    border: 1px dashed var(--primary-light);
    border-radius: var(--radius-lg);
    margin-top: 1.5rem;
}

.compact-highlight-item-root {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-dark);
}

@media (max-width: 640px) {
    .compact-highlight-bar-root {
        gap: 0.75rem;
        padding: 0.65rem 0.85rem;
    }
    .compact-highlight-item-root {
        font-size: 0.775rem;
    }
}



