
/* ============================================
   MAGNETLEAP SALES PAGE STYLES
   ============================================ */

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

:root {
    /* Brand Colors */
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    
    /* Neutrals */
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --gray-light: #cbd5e1;
    --white: #ffffff;
    --off-white: #f8fafc;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #10b981 0%, #059669 100%);
    
    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-padding: 0 24px;
    
    /* Effects */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }

p {
    margin-bottom: 1rem;
}

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

/* ============================================
   LAYOUT
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

section {
    padding: var(--section-padding);
    position: relative;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--gray-light);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-arrow {
    font-size: 1.4rem;
    transition: var(--transition);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 4px 20px rgba(99, 102, 241, 0.6);
    }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 16px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--dark);
    text-decoration: none;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

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

.btn-login {
    padding: 10px 24px !important;
    background: transparent;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    transition: var(--transition);
}

.btn-login:hover {
    background: var(--primary-color);
    color: var(--white) !important;
}

.btn-nav {
    padding: 10px 24px !important;
    background: var(--gradient-primary);
    color: var(--white) !important;
    border-radius: 8px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    padding: 180px 0 120px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--gray-light);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--dark);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-bonus {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 16px 24px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 12px;
    margin-bottom: 60px;
    box-shadow: var(--shadow-md);
}

.bonus-badge {
    font-size: 1.1rem;
    font-weight: 900;
    color: #b45309;
}

.bonus-text {
    font-size: 1rem;
    font-weight: 600;
    color: #78350f;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}

.stats-subtitle {
    color: var(--gray-light);
    font-size: 0.95rem;
    margin: 0 0 20px 0;
    text-align: center;
    opacity: 0.9;
}

.hero-stats > div {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem {
    background: var(--white);
}

.problem-content {
    text-align: center;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 16px;
    color: var(--dark);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.problem-card {
    background: var(--off-white);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--gray-light);
    transition: var(--transition);
}

.problem-card:hover {
    border-color: #ef4444;
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

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

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.problem-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* ============================================
   SOLUTION SECTION
   ============================================ */
.solution {
    background: var(--dark);
    color: var(--white);
}

.solution-content {
    text-align: center;
}

.solution-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-secondary);
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: 30px;
    margin-bottom: 24px;
}

.solution .section-title {
    color: var(--white);
}

.solution .section-subtitle {
    color: var(--gray-light);
}

.solution-visual {
    margin-top: 80px;
}

.solution-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.solution-step {
    background: var(--dark-light);
    padding: 32px 24px;
    border-radius: 16px;
    max-width: 280px;
    text-align: center;
    border: 2px solid rgba(99, 102, 241, 0.3);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 16px;
}

.solution-step h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.solution-step p {
    color: var(--gray-light);
    font-size: 0.95rem;
}

.arrow {
    font-size: 2rem;
    color: var(--primary-color);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    background: var(--off-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.feature-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}

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

.feature-card.featured-bonus {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    box-shadow: var(--shadow-md);
}

.bonus-ribbon {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 1px;
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
}

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

.steps-container {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.step-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 32px;
    padding: 40px;
    background: var(--off-white);
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.step-number-large {
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.step-content h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.step-content p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.step-image-placeholder {
    background: var(--white);
    padding: 60px 32px;
    border-radius: 12px;
    text-align: center;
    color: var(--gray);
    border: 2px dashed var(--gray-light);
    font-weight: 600;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    background: var(--off-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.stars {
    font-size: 1.2rem;
    margin-bottom: 16px;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-name {
    font-weight: 700;
    color: var(--dark);
}

.author-title {
    font-size: 0.9rem;
    color: var(--gray);
}

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

.pricing-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.comparison-card {
    background: var(--off-white);
    padding: 32px;
    border-radius: 16px;
    border: 2px solid var(--gray-light);
    min-width: 300px;
}

.comparison-card.comparison-deal {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.comparison-header {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    color: var(--dark);
}

.comparison-card.comparison-deal .comparison-header {
    color: var(--white);
}

.comparison-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--white);
    border-radius: 8px;
}

.comparison-name {
    font-weight: 600;
    color: var(--dark);
}

.comparison-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.comparison-divider {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray);
    padding: 8px 0;
}

.comparison-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--white);
    border-radius: 8px;
    border: 2px solid var(--primary-color);
}

.comparison-total-label {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark);
}

.comparison-total-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ef4444;
}

.comparison-arrow {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.comparison-deal-content {
    text-align: center;
}

.deal-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 16px;
}

.deal-currency {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 8px;
}

.deal-amount {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
}

.deal-period {
    font-size: 1.2rem;
    margin-top: 24px;
    margin-left: 4px;
}

.deal-badge {
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

.deal-includes {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white);
    font-weight: 500;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.pricing-single {
    max-width: 800px;
    margin: 60px auto 0;
}

.pricing-card.single-plan {
    padding: 48px 40px;
}

.pricing-card {
    background: var(--off-white);
    padding: 40px 32px;
    border-radius: 16px;
    border: 2px solid var(--gray-light);
    transition: var(--transition);
    position: relative;
}

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

.pricing-card.featured {
    background: var(--dark);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.pricing-card.featured h3 {
    color: var(--white);
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 12px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 8px;
}

.amount {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
}

.period {
    font-size: 1.2rem;
    color: var(--gray);
    margin-top: 24px;
    margin-left: 4px;
}

.pricing-card.featured .period {
    color: var(--gray-light);
}

.pricing-description {
    color: var(--gray);
    font-size: 0.95rem;
}

.pricing-card.featured .pricing-description {
    color: var(--gray-light);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-light);
    font-size: 0.95rem;
}

.pricing-card.featured .pricing-features li {
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.pricing-sections {
    margin: 32px 0;
}

.pricing-section {
    background: rgba(255, 255, 255, 0.5);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.pricing-section h4 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--dark);
}

.pricing-section.bonus-section {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
}

.pricing-section.bonus-section h4 {
    color: #78350f;
}

.pricing-section.bonus-section .pricing-features li {
    color: #78350f;
    border-color: rgba(120, 53, 15, 0.2);
}

.pricing-section.bonus-section .pricing-features li strong {
    color: #b45309;
}

.pricing-value {
    text-align: center;
    margin: 24px 0;
    padding: 20px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
}

.value-text {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 8px;
}

.value-text .strike {
    text-decoration: line-through;
    color: #fca5a5;
}

.your-price {
    font-size: 1.5rem;
    color: var(--white);
    margin: 0;
}

.your-price strong {
    color: #fde68a;
    font-size: 1.8rem;
    font-weight: 900;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 700px;
    margin: 60px auto 0;
    padding: 32px;
    background: var(--off-white);
    border-radius: 16px;
    border: 2px solid var(--secondary-color);
}

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

.guarantee-content h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--dark);
}

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

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    background: var(--off-white);
}

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

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--off-white);
}

.faq-question h3 {
    font-size: 1.2rem;
    margin: 0;
    color: var(--dark);
}

.faq-icon {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: var(--transition);
}

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

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

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

.faq-answer p {
    padding: 0 28px 24px;
    color: var(--gray);
    line-height: 1.7;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.final-cta-content h2 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.final-cta-content p {
    font-size: 1.3rem;
    margin-bottom: 24px;
    opacity: 0.9;
}

.cta-bonus {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 40px !important;
    color: #fde68a !important;
    opacity: 1 !important;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.final-cta .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.final-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.cta-disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: var(--gray-light);
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand p {
    margin: 16px 0;
    color: var(--gray-light);
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-light);
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.footer-column a {
    display: block;
    color: var(--gray-light);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--primary-color);
    padding-left: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--dark-light);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--gray);
}

.footer-bottom a {
    color: var(--primary-light);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 968px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .step-card {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .step-number-large {
        font-size: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        transition: var(--transition);
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .step-card {
        grid-template-columns: 80px 1fr;
        padding: 30px;
    }
    
    .step-number-large {
        font-size: 2.5rem;
    }
    
    .solution-box {
        flex-direction: column;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
    
    .pricing-comparison {
        flex-direction: column;
    }
    
    .comparison-arrow {
        transform: rotate(90deg);
    }
    
    .comparison-card {
        width: 100%;
        min-width: auto;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-guarantee {
        flex-direction: column;
        text-align: center;
    }
    
    .final-cta-content h2 {
        font-size: 2rem;
    }
    
    .final-cta-content p {
        font-size: 1.1rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }
}
