﻿/* ============================================
   E-MAZADE - HOW TO BUY MODERN STYLES
   ============================================ */

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --primary-subtle: #eff6ff;
    --surface: #ffffff;
    --background: #f8fafc;
    --text: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --border: #e2e8f0;
    --accent-orange: #f97316;
    --accent-orange-light: #fff7ed;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--background);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
    }

    .btn-primary i {
        transition: transform var(--transition);
    }

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

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

/* ============================================
   HERO SECTION
   ============================================ */

.buy-hero {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 6rem 0 4rem;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

    .hero-title span {
        background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero-lead {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 480px;
}

.feature-list {
    list-style: none;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

.feature-check {
    width: 28px;
    height: 28px;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

    .floating-card i {
        font-size: 1.125rem;
        color: var(--accent-orange);
    }

.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    left: -10%;
    animation-delay: -3s;
}

/* Hero Shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -200px;
    right: -200px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: #8b5cf6;
    bottom: -100px;
    left: -100px;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ============================================
   STEPS SECTION
   ============================================ */

.steps-section {
    padding: 5rem 0;
    background: var(--surface);
}

    .steps-section .container {
        position: relative;
        max-width: 100%;
    }

        .section-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }

        .section-eyebrow {
            display: inline-block;
            font-size: 0.875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--primary);
            margin-bottom: 0.75rem;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.75rem;
            letter-spacing: -0.02em;
        }

        .section-lead {
            font-size: 1.0625rem;
            color: var(--text-secondary);
            max-width: 560px;
            margin: 0 auto;
        }
        /* Steps Grid */
        .steps-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            position: relative;
        }

        .step-card {
            text-align: center;
            padding: 2rem;
            background: var(--background);
            border-radius: var(--radius-xl);
            border: 1px solid var(--border);
            transition: all var(--transition);
            position: relative;
        }

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

        .step-number {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(90deg, #1CB5E0 0%, #000851 100%);
            color: white;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.375rem 1rem;
            border-radius: 100px;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
        }

        .step-icon-wrap {
            position: relative;
            display: flex;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .step-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(90deg, #4b6cb7 0%, #182848 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.75rem;
            box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
            position: relative;
            z-index: 2;
        }

        .step-connector {
            display: none;
            position: absolute;
            top: 50%;
            left: 100%;
            width: calc(100% + 2rem);
            height: 2px;
            background: linear-gradient(90deg, var(--border) 0%, var(--primary-light) 100%);
            z-index: 1;
        }

        .step-title {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 0.75rem;
        }

        .step-desc {
            font-size: 0.9375rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }
        /* ============================================
   FAQ SECTION
   ============================================ */

        .faq-section {
            padding: 5rem 0;
            background: var(--background);
        }
        .faq-section .container {
            max-width: 95%;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.25rem;
        }

        .faq-card {
            display: flex;
            gap: 1.25rem;
            padding: 1.75rem;
            background: var(--surface);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            transition: all var(--transition);
        }

            .faq-card:hover {
                box-shadow: var(--shadow-md);
                transform: translateY(-2px);
                border-color: transparent;
            }

        .faq-icon {
            width: 48px;
            height: 48px;
            background: var(--primary-subtle);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .faq-content h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 0.5rem;
        }

        .faq-content p {
            font-size: 0.9375rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin: 0;
        }
        /* ============================================
   CTA SECTION
   ============================================ */
        /* Container & Section */
        .cta-section {
            padding: 30px 0;
            background: #f8f9fa; /* Light background to make the dark box pop */
        }

        .cta-section .container {
            max-width: 95%;
        }

        .cta-box {
            position: relative;
            background: #0f172a; /* Deep Navy/Slate */
            border-radius: 24px;
            padding: 60px;
            color: #ffffff;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(15, 23, 42, 0.3);
        }
        /* Badge Styling */
        .cta-badge {
            display: inline-block;
            background: rgba(59, 130, 246, 0.1);
            color: #3b82f6;
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 1px solid rgba(59, 130, 246, 0.2);
            margin-bottom: 24px;
        }
        /* Typography */
        .cta-content h2 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            background: linear-gradient(to right, #fff, #94a3b8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .cta-content p {
            font-size: 1.1rem;
            color: #94a3b8;
            max-width: 600px;
            margin-bottom: 40px;
        }
        /* Action Buttons */
        .cta-actions {
            display: flex;
            gap: 15px;
            align-items: center;
            margin-bottom: 40px;
        }

        .btn-primary.btn-large {
            background: #3b82f6;
            color: white;
            padding: 16px 32px;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
        }

            .btn-primary.btn-large:hover {
                background: #2563eb;
                transform: translateY(-3px);
                box-shadow: 0 15px 25px rgba(59, 130, 246, 0.4);
            }

        .btn-secondary-ghost {
            color: #fff;
            text-decoration: none;
            padding: 16px 32px;
            border-radius: 12px;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: 0.3s;
        }

            .btn-secondary-ghost:hover {
                background: rgba(255, 255, 255, 0.05);
                border-color: rgba(255, 255, 255, 0.3);
            }
        /* Meta Labels */
        .cta-meta {
            display: flex;
            gap: 25px;
            font-size: 0.9rem;
            color: #64748b;
        }

            .cta-meta span {
                display: flex;
                align-items: center;
                gap: 6px;
            }
        /* Abstract Background Shapes (The "Hook") */
        .cta-shapes .cta-shape {
            position: absolute;
            z-index: 0;
            filter: blur(80px);
            border-radius: 50%;
            opacity: 0.4;
        }

        .shape-a {
            width: 300px;
            height: 300px;
            background: #3b82f6;
            top: -100px;
            right: -50px;
        }

        .shape-b {
            width: 200px;
            height: 200px;
            background: #7c3aed;
            bottom: -50px;
            left: -20px;
        }
        /* Ensure content stays above shapes */
        .cta-content {
            position: relative;
            z-index: 1;
        }
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .cta-box {
                padding: 40px 25px;
            }

            .cta-content h2 {
                font-size: 2rem;
            }

            .cta-actions {
                flex-direction: column;
                align-items: flex-start;
            }

            .cta-meta {
                flex-direction: column;
                gap: 10px;
            }
        }
        /* ============================================
   RESPONSIVE DESIGN
   ============================================ */

        @media (min-width: 768px) {
            .hero-grid {
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
            }

            .hero-title {
                font-size: 3.5rem;
            }

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

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

            .cta-box {
                padding: 5rem;
            }

            .cta-content h2 {
                font-size: 2.5rem;
            }
        }

        @media (min-width: 1024px) {
            .buy-hero {
                padding: 8rem 0 6rem;
            }

            .steps-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 1.5rem;
            }

            .step-connector {
                display: block;
            }

            .step-card:last-child .step-connector {
                display: none;
            }

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

            .floating-card {
                padding: 1rem 1.5rem;
            }

            .card-1 {
                right: 0;
            }

            .card-2 {
                left: 0;
            }
        }

        @media (max-width: 767px) {
            .hero-title {
                font-size: 2rem;
            }

            .floating-card {
                display: none;
            }

            .step-card {
                padding: 1.5rem;
            }
        }
        /* Reduced motion */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
        }
