/* =============================================================================
   PAGEPRO V2 - BOLD DARK THEME
   Inspired by high-energy, conversion-focused design
   ============================================================================= */

/* =============================================================================
   CSS VARIABLES
   ============================================================================= */
:root {
    /* Dark Theme Colors */
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a2e;
    --tertiary-dark: #16213e;
    --accent-red: #ef4444;
    --accent-orange: #f97316;
    --accent-gradient: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
    --hero-gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    --dark-gradient: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);

    /* Text Colors */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --light-text: #e2e8f0;
    --muted-text: #94a3b8;
    --dark-text: #1e293b;

    /* Accent Colors */
    --success-green: #10b981;
    --warning-yellow: #fbbf24;
    --info-blue: #3b82f6;

    /* Spacing */
    --container-max: 1200px;
    --section-padding: 5rem 0;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.3);
    --glow-red: 0 0 20px rgba(239, 68, 68, 0.4);
    --glow-orange: 0 0 20px rgba(249, 115, 22, 0.4);
}

/* =============================================================================
   ANIMATIONS
   ============================================================================= */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px rgba(239, 68, 68, 0.5); }
    50% { box-shadow: 0 0 20px rgba(239, 68, 68, 0.8); }
}

/* =============================================================================
   RESET & BASE STYLES
   ============================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--light-text);
    background: var(--primary-dark);
    overflow-x: hidden;
}

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

/* =============================================================================
   TYPOGRAPHY
   ============================================================================= */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

/* =============================================================================
   BUTTONS
   ============================================================================= */
.btn-primary {
    background: var(--accent-gradient);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-align: center;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
    display: block;
}

.btn-nav {
    background: var(--accent-gradient);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.4);
}

/* =============================================================================
   NAVIGATION
   ============================================================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
}

.logo-icon {
    font-size: 1.75rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

/* =============================================================================
   HERO SECTION
   ============================================================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(239, 68, 68, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: slideInUp 0.8s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--light-text);
    max-width: 700px;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-subtitle strong {
    color: var(--white);
    font-weight: 700;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--muted-text);
}

.hero-cta {
    margin-bottom: 2rem;
}

.cta-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--muted-text);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.trust-item {
    font-size: 0.95rem;
    color: var(--success-green);
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: float 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-left: 3px solid var(--accent-orange);
    border-bottom: 3px solid var(--accent-orange);
    transform: rotate(-45deg);
}

/* =============================================================================
   SECTION STYLES
   ============================================================================= */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-text);
    max-width: 700px;
    margin: 0 auto;
}

/* =============================================================================
   PROBLEM SECTION
   ============================================================================= */
.problem-section {
    padding: var(--section-padding);
    background: var(--dark-gradient);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.problem-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.problem-card:hover::before {
    opacity: 1;
}

.problem-card.critical {
    border-color: rgba(239, 68, 68, 0.3);
}

.problem-card.urgent {
    border-color: rgba(249, 115, 22, 0.3);
}

.problem-card.high {
    border-color: rgba(251, 191, 36, 0.3);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.problem-description {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.problem-impact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.impact-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-orange);
}

.problem-cta {
    margin-top: 4rem;
}

.cta-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 16px;
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--light-text);
}

/* =============================================================================
   SOLUTION SECTION
   ============================================================================= */
.solution-section {
    padding: 3rem 0;
    background: var(--primary-dark);
}

.solution-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 1.5rem;
}

.solution-visual {
    position: relative;
}

.phone-mockup {
    max-width: 240px;
    margin: 0 auto;
    animation: float 3s ease-in-out infinite;
}

.phone-screen {
    background: var(--white);
    border-radius: 25px;
    padding: 0.6rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.mockup-content {
    background: var(--secondary-dark);
    border-radius: 18px;
    padding: 1.25rem;
    min-height: 280px;
}

.mockup-header {
    margin-bottom: 0.75rem;
}

.mockup-bar {
    height: 3px;
    width: 40px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.mockup-hero {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.mockup-feature {
    padding: 0.5rem 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 6px;
    margin-bottom: 0.5rem;
    color: var(--success-green);
    font-weight: 500;
    font-size: 0.85rem;
}

.solution-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    animation: slideInRight 0.8s ease;
}

.benefit-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.benefit-item h3 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.benefit-item p {
    color: var(--light-text);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* =============================================================================
   PROOF SECTION
   ============================================================================= */
.proof-section {
    padding: var(--section-padding);
    background: var(--dark-gradient);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.result-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

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

.result-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.result-chart {
    font-size: 4rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.result-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric {
    background: rgba(16, 185, 129, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.metric-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--success-green);
    margin-bottom: 0.25rem;
}

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

.result-quote {
    font-style: italic;
    color: var(--light-text);
}

.market-stats {
    margin-top: 5rem;
}

.stats-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05);
    background: rgba(239, 68, 68, 0.15);
}

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-detail {
    font-size: 0.9rem;
    color: var(--muted-text);
}

/* =============================================================================
   HOW IT WORKS SECTION
   ============================================================================= */
.how-it-works-section {
    padding: var(--section-padding);
    background: var(--secondary-dark);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--accent-gradient);
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    box-shadow: var(--glow-red);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.step-highlight {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    color: var(--success-green);
    font-weight: 600;
    font-size: 0.9rem;
}

.step-arrow {
    position: absolute;
    top: 50%;
    right: -2rem;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--accent-orange);
    font-weight: 700;
}

.process-step:last-child .step-arrow {
    display: none;
}

.process-cta {
    text-align: center;
}

.process-cta .cta-note {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: var(--muted-text);
}

/* =============================================================================
   TESTIMONIALS SECTION
   ============================================================================= */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--primary-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 6rem;
    color: var(--accent-orange);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-xl);
}

.testimonial-rating {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    color: var(--white);
    font-size: 1.1rem;
}

.author-title {
    color: var(--muted-text);
    font-size: 0.9rem;
    margin: 0.25rem 0;
}

.author-result {
    color: var(--success-green);
    font-weight: 600;
    font-size: 0.95rem;
}

.trust-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem 0;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.trust-label {
    color: var(--muted-text);
    font-size: 0.95rem;
}

/* =============================================================================
   FAQ SECTION
   ============================================================================= */
.faq-section {
    padding: var(--section-padding);
    background: var(--dark-gradient);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.faq-question {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 600;
}

.faq-answer {
    color: var(--light-text);
    line-height: 1.7;
    margin: 0;
}

.faq-cta {
    margin-top: 4rem;
}

/* =============================================================================
   PRICING SECTION
   ============================================================================= */
.pricing-section {
    padding: var(--section-padding);
    background: var(--primary-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.price-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.price-card.featured {
    border-color: var(--accent-orange);
    background: rgba(249, 115, 22, 0.05);
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    padding: 0.5rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: var(--glow-red);
}

.price-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.price-tagline {
    color: var(--muted-text);
    margin-bottom: 2rem;
}

.price-amount {
    margin: 2rem 0;
}

.currency {
    font-size: 2rem;
    vertical-align: top;
}

.amount {
    font-size: 4rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    display: block;
    font-size: 0.9rem;
    color: var(--muted-text);
    margin-top: -0.5rem;
}

.price-features {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.price-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-text);
}

.price-features li:first-child {
    font-weight: 700;
    color: var(--white);
}

.check {
    color: var(--success-green);
    margin-right: 0.5rem;
}

.price-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--muted-text);
}

.comparison-section {
    margin: 5rem 0;
}

.comparison-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: left;
}

.comparison-table th {
    background: rgba(239, 68, 68, 0.2);
    font-weight: 700;
    color: var(--white);
}

.comparison-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.our-row {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--success-green);
}

.urgency-box {
    text-align: center;
    padding: 2rem;
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 16px;
    margin: 3rem 0;
}

.urgency-box h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.urgency-box p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 16px;
    margin-top: 3rem;
}

.guarantee-icon {
    font-size: 4rem;
}

.guarantee-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.guarantee-content p {
    color: var(--light-text);
}

/* =============================================================================
   CTA SECTION
   ============================================================================= */
.cta-section {
    padding: var(--section-padding);
    background: var(--dark-gradient);
    text-align: center;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--light-text);
    margin-bottom: 4rem;
}

/* =============================================================================
   FORM STYLES
   ============================================================================= */
.form-container {
    margin: 4rem 0;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2.5rem;
}

.form-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-subtitle {
    color: var(--muted-text);
    margin-bottom: 2rem;
}

.contact-form {
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--white);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: var(--muted-text);
    font-size: 0.9rem;
}

.form-security svg {
    color: var(--success-green);
}

.urgency-banner {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(251, 191, 36, 0.1);
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 12px;
}

.urgency-banner .highlight {
    color: var(--accent-orange);
    font-weight: 700;
}

/* =============================================================================
   FOOTER
   ============================================================================= */
.footer {
    background: var(--primary-dark);
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.footer-brand p {
    color: var(--muted-text);
    margin-top: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--muted-text);
}

/* =============================================================================
   RESPONSIVE DESIGN
   ============================================================================= */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 2rem auto 3rem;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }

    .solution-hero {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .step-arrow {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }

    .countdown-section {
        padding: 1.5rem 0;
    }

    .countdown-timer {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .time-unit {
        min-width: 70px;
    }

    .time-value {
        font-size: 2rem;
    }

    .activity-stats {
        flex-direction: column;
        gap: 0.5rem;
    }

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

    .comparison-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .comparison-divider {
        display: none;
    }

    .comparison-column {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .column-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .column-header h3 {
        font-size: 1.25rem;
    }

    .column-icon {
        font-size: 2.5rem;
    }

    .comparison-item {
        padding: 1rem;
        gap: 0.75rem;
        flex-direction: row;
    }

    .item-icon {
        font-size: 1.25rem;
    }

    .item-content h4 {
        font-size: 0.95rem;
    }

    .item-content p {
        font-size: 0.85rem;
    }

    .calculator-wrapper {
        padding: 1.5rem;
    }

    .calculator-results {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .result-box {
        padding: 1.5rem;
    }

    .result-value {
        font-size: 2rem;
    }

    .value-header {
        display: none;
    }

    .value-items {
        padding: 1rem;
    }

    .value-item {
        display: block;
        padding: 1.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .value-item-detail {
        margin-bottom: 1rem;
    }

    .value-icon {
        font-size: 1.75rem;
    }

    .value-info h4 {
        font-size: 1rem;
    }

    .value-info p {
        font-size: 0.875rem;
    }

    .value-price {
        text-align: left;
        margin-top: 0.5rem;
        font-size: 1rem;
    }

    .value-price::before {
        content: 'Market Value: ';
        color: var(--muted-text);
        font-weight: 400;
        font-size: 0.85rem;
        display: block;
        margin-bottom: 0.25rem;
    }

    .value-included {
        text-align: left;
        margin-top: 0.5rem;
        font-size: 1.125rem;
    }

    .value-included::before {
        content: 'You Pay: ';
        color: var(--muted-text);
        font-weight: 400;
        font-size: 0.85rem;
        display: block;
        margin-bottom: 0.25rem;
    }

    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .bonus-card {
        padding: 2rem 1.5rem;
    }

    .bonus-icon {
        font-size: 3rem;
        margin: 1.5rem 0 0.75rem;
    }

    .bonus-card h3 {
        font-size: 1.25rem;
    }

    .bonus-value {
        font-size: 1rem;
    }

    .bonus-description {
        font-size: 0.9rem;
    }

    .bonus-total-box {
        padding: 2rem 1.5rem;
    }

    .bonus-total-content h3 {
        font-size: 1.5rem;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .timeline-marker {
        display: flex;
        align-items: center;
        gap: 1rem;
        justify-content: flex-start;
    }

    .timeline-connector {
        display: none;
    }

    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .guarantee-card {
        padding: 2rem 1.5rem;
    }

    .guarantee-icon-large {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .guarantee-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        word-wrap: break-word;
        hyphens: auto;
    }

    .guarantee-description {
        font-size: 0.9rem;
        line-height: 1.65;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
    }

    .guarantee-highlight {
        font-size: 0.85rem;
        word-wrap: break-word;
    }

    .guarantee-statement-box {
        padding: 2rem 1.5rem;
    }

    .guarantee-statement-box h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        word-wrap: break-word;
    }

    .guarantee-statement-box p {
        font-size: 0.925rem;
        line-height: 1.65;
        word-wrap: break-word;
    }
}

/* =============================================================================
   FACEBOOK CONTENT SERVICE SECTION
   ============================================================================= */
.fb-content-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.fb-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(239, 68, 68, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(247, 147, 26, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.fb-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.fb-headline {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fb-subheadline {
    font-size: 1.35rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 3rem;
    font-weight: 400;
}

.fb-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-fb-primary {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-fb-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
}

.btn-fb-secondary {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    color: white;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-fb-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .fb-content-section {
        padding: 3rem 0;
    }

    .fb-headline {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .fb-subheadline {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .fb-cta-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .btn-fb-primary,
    .btn-fb-secondary {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* =============================================================================
   COUNTDOWN TIMER SECTION
   ============================================================================= */
.countdown-section {
    padding: 2rem 0;
    background: rgba(239, 68, 68, 0.05);
    border-top: 2px solid rgba(239, 68, 68, 0.2);
    border-bottom: 2px solid rgba(239, 68, 68, 0.2);
}

.countdown-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.countdown-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.countdown-icon {
    font-size: 3rem;
    animation: pulse 2s infinite;
}

.countdown-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.countdown-text p {
    color: var(--muted-text);
    font-size: 1rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.time-unit {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    min-width: 100px;
}

.time-value {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.time-label {
    font-size: 0.9rem;
    color: var(--muted-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =============================================================================
   LIVE ACTIVITY FEED SECTION
   ============================================================================= */
.live-activity-section {
    padding: 1.5rem 0;
    background: var(--primary-dark);
}

.live-activity-feed {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 1.5rem 2rem;
}

.activity-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: var(--success-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px var(--success-green);
}

.live-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--success-green);
    letter-spacing: 2px;
}

.activity-message {
    text-align: center;
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 500;
}

.activity-icon {
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

.activity-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.activity-stat {
    font-size: 0.9rem;
    color: var(--muted-text);
}

.activity-stat span {
    font-weight: 700;
    color: var(--accent-orange);
    margin-right: 0.25rem;
}

/* =============================================================================
   FEATURED / AS SEEN IN SECTION
   ============================================================================= */
.featured-section {
    padding: 3rem 0;
    background: var(--secondary-dark);
}

.featured-title {
    text-align: center;
    font-size: 0.9rem;
    color: var(--muted-text);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.featured-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}

.featured-logo {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.featured-logo:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.featured-logo .logo-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.featured-logo .logo-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--light-text);
}

/* =============================================================================
   BEFORE/AFTER TRANSFORMATION SECTION
   ============================================================================= */
.before-after-section {
    padding: var(--section-padding);
    background: var(--primary-dark);
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    margin-top: 4rem;
    align-items: start;
}

.comparison-column {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2.5rem;
}

.before-column {
    border: 2px solid rgba(239, 68, 68, 0.3);
}

.after-column {
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.column-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.column-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.column-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.column-subtitle {
    color: var(--muted-text);
    font-size: 0.95rem;
}

.comparison-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comparison-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.comparison-item.negative {
    background: rgba(239, 68, 68, 0.05);
    border-left: 3px solid var(--accent-red);
}

.comparison-item.positive {
    background: rgba(16, 185, 129, 0.05);
    border-left: 3px solid var(--success-green);
}

.comparison-item:hover {
    transform: translateX(5px);
}

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

.item-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.item-content p {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 4rem;
}

.arrow-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: var(--glow-red);
    animation: pulse 2s infinite;
}

.transformation-cta {
    margin-top: 4rem;
}

/* =============================================================================
   ROI CALCULATOR SECTION
   ============================================================================= */
.roi-calculator-section {
    padding: var(--section-padding);
    background: var(--secondary-dark);
}

.calculator-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.calculator-input-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.calculator-input-group label {
    font-weight: 600;
    color: var(--white);
    font-size: 1.05rem;
}

.calculator-input-group input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    -webkit-appearance: none;
}

.calculator-input-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-gradient);
    cursor: pointer;
    box-shadow: var(--glow-red);
}

.calculator-input-group input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-gradient);
    cursor: pointer;
    border: none;
}

.input-value {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.calculator-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.result-box {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.result-box:hover {
    transform: translateY(-5px);
    border-color: rgba(239, 68, 68, 0.5);
}

.result-box.highlight {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.5);
}

.result-label {
    font-size: 0.95rem;
    color: var(--muted-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.result-value {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.result-detail {
    font-size: 0.9rem;
    color: var(--light-text);
}

.calculator-cta {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.calculator-note {
    color: var(--muted-text);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* =============================================================================
   VALUE BREAKDOWN SECTION
   ============================================================================= */
.value-breakdown-section {
    padding: var(--section-padding);
    background: var(--primary-dark);
}

.value-table {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
}

.value-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    background: rgba(239, 68, 68, 0.2);
    padding: 1.5rem 2rem;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.value-items {
    padding: 2rem;
}

.value-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.value-item:last-child {
    border-bottom: none;
}

.value-item-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.value-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.value-info h4 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
    color: var(--white);
}

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

.value-price {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--light-text);
    text-decoration: line-through;
    opacity: 0.7;
}

.value-included {
    text-align: center;
    font-weight: 700;
    color: var(--success-green);
    font-size: 1.05rem;
}

.value-totals {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
}

.value-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.value-total-row:last-child {
    border-bottom: none;
}

.value-total-row.savings {
    background: rgba(16, 185, 129, 0.1);
    margin: 0 -2rem;
    padding: 1rem 2rem;
}

.value-total-row.final {
    padding-top: 1.5rem;
    border-top: 2px solid rgba(239, 68, 68, 0.3);
}

.value-total-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
}

.value-total-amount {
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-total-amount.original {
    text-decoration: line-through;
    opacity: 0.7;
}

.value-total-amount.discount {
    color: var(--success-green);
    background: none;
    -webkit-text-fill-color: var(--success-green);
}

.value-total-row.final .value-total-amount {
    font-size: 2.5rem;
}

.value-cta {
    text-align: center;
    padding: 2rem;
}

.value-note {
    margin-top: 1rem;
    color: var(--muted-text);
}

/* =============================================================================
   BONUS SECTION
   ============================================================================= */
.bonus-section {
    padding: var(--section-padding);
    background: var(--dark-gradient);
}

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

.bonus-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.bonus-card:hover {
    transform: translateY(-10px);
    border-color: rgba(239, 68, 68, 0.5);
}

.bonus-card.featured {
    border-color: rgba(249, 115, 22, 0.5);
    background: rgba(249, 115, 22, 0.05);
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.2);
}

.bonus-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-badge.hot {
    background: var(--accent-gradient);
    border: none;
    box-shadow: var(--glow-red);
    animation: pulse 2s infinite;
}

.bonus-icon {
    font-size: 4rem;
    margin: 2rem 0 1rem;
}

.bonus-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.bonus-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.bonus-description {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.bonus-features {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
}

.bonus-features li {
    padding: 0.5rem 0;
    color: var(--light-text);
    font-size: 0.95rem;
}

.bonus-total {
    margin-top: 4rem;
}

.bonus-total-box {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.bonus-total-content {
    margin-bottom: 2rem;
}

.bonus-total-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.bonus-amount {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus-total-content p {
    color: var(--light-text);
    font-size: 1.125rem;
}

/* =============================================================================
   TIMELINE SECTION
   ============================================================================= */
.timeline-section {
    padding: var(--section-padding);
    background: var(--secondary-dark);
}

.timeline-container {
    max-width: 100%;
    margin: 3rem auto 0;
    position: relative;
}

.timeline-item {
    display: block;
    margin-bottom: 2rem;
}

.timeline-item.highlight .timeline-content {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.5);
}

.timeline-marker {
    text-align: left;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.timeline-time {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.timeline-status {
    font-size: 0.9rem;
    color: var(--muted-text);
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid rgba(255, 255, 255, 0.2);
}

.timeline-status.success {
    background: rgba(16, 185, 129, 0.1);
    border-left-color: var(--success-green);
    color: var(--success-green);
    font-weight: 600;
}

.timeline-connector {
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 auto;
    margin-left: calc(150px / 2 - 1px);
}

.timeline-cta {
    margin-top: 4rem;
}

/* =============================================================================
   ENHANCED GUARANTEE SECTION
   ============================================================================= */
.enhanced-guarantee-section {
    padding: var(--section-padding);
    background: var(--primary-dark);
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.guarantee-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.guarantee-card:hover {
    transform: translateY(-10px);
    border-color: rgba(16, 185, 129, 0.6);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.2);
}

.guarantee-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.guarantee-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.guarantee-description {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.guarantee-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.guarantee-highlight {
    color: var(--success-green);
    font-weight: 600;
    font-size: 0.95rem;
}

.guarantee-statement {
    margin-top: 4rem;
}

.guarantee-statement-box {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.guarantee-statement-box h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.guarantee-statement-box p {
    color: var(--light-text);
    line-height: 1.8;
    font-size: 1.05rem;
}

.guarantee-signature {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.guarantee-cta {
    text-align: center;
    margin-top: 3rem;
}

.guarantee-note {
    margin-top: 1rem;
    color: var(--muted-text);
}

/* =============================================================================
   FLOATING MESSENGER BUTTON
   ============================================================================= */

/* Beating/pulsing animation */
@keyframes messengerBeat {
    0%, 100% {
        transform: scale(1);
    }
    10%, 30% {
        transform: scale(1.1);
    }
    20%, 40% {
        transform: scale(1.05);
    }
}

@keyframes messengerPulse {
    0% {
        box-shadow: 0 4px 12px rgba(0, 132, 255, 0.4), 0 0 0 0 rgba(0, 132, 255, 0.7);
    }
    50% {
        box-shadow: 0 4px 12px rgba(0, 132, 255, 0.4), 0 0 0 15px rgba(0, 132, 255, 0);
    }
    100% {
        box-shadow: 0 4px 12px rgba(0, 132, 255, 0.4), 0 0 0 0 rgba(0, 132, 255, 0);
    }
}

.messenger-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0084ff 0%, #0066cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 132, 255, 0.4);
    z-index: 9999;
    text-decoration: none;
    animation: messengerBeat 2s ease-in-out infinite, messengerPulse 2s ease-in-out infinite;
}

.messenger-button:hover {
    animation: none;
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 132, 255, 0.6);
    transition: all 0.3s ease;
}

.messenger-button svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Mobile optimization */
@media (max-width: 768px) {
    .messenger-button {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    .messenger-button svg {
        width: 24px;
        height: 24px;
    }
}
