﻿/* ============================================
   E-MAZADE - HOW TO SELL 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-green: #10b981;
    --accent-green-light: #ecfdf5;
    --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;
    scroll-behavior: smooth;
}

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 1.5rem;
}

/* ============================================
   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: translateY(3px);
    }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: var(--surface);
    color: var(--text);
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
}

    .btn-secondary:hover {
        border-color: var(--primary);
        color: var(--primary);
        box-shadow: var(--shadow-md);
    }

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.sell-hero {
    position: relative;
    background: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #047857 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-visual {
    order: -1;
    display: flex;
    justify-content: center;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.hero-image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.floating-stat {
    position: absolute;
    bottom: 10%;
    right: -5%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite;
}

    .floating-stat i {
        font-size: 1.5rem;
        color: #34d399;
    }

.stat-number {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #34d399;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

    .hero-title .accent {
        display: block;
        background: linear-gradient(135deg, #6ee7b7 0%, #34d399 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.75);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 480px;
}

/* Hero Shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: #34d399;
    top: -200px;
    right: -200px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: #10b981;
    bottom: -100px;
    left: -100px;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}



/* ============================================
   Button with Icon - Local Overrides for the Teal Vibe within the Hero Section
   ============================================ */
.button-steps {
position: relative;
background: #ffffff;
color: #000;
padding: 15px;
margin: 10px;
border-radius: 10px;
width: 300px;
height: 50px;
font-size: 17px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
cursor: pointer;
transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.tooltip {
    position: absolute;
    top: 0;
    font-size: 14px;
    background: #233D4D;
    color: #233D4D;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

    .tooltip::before {
        position: absolute;
        content: "";
        height: 8px;
        width: 8px;
        background: #ffffff;
        bottom: -3px;
        left: 50%;
        transform: translate(-50%) rotate(45deg);
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

.button-steps:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

svg:hover span,
svg:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.button-steps:hover,
.button-steps:hover .tooltip,
.button-steps:hover .tooltip::before {
    background: linear-gradient(90deg,rgba(33, 94, 97, 1) 0%, rgba(36, 158, 148, 1) 50%, rgba(255, 254, 250, 0.08) 100%);
    color: #ffffff;
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.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(--accent-green);
    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;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: 5rem 0;
    background: var(--surface);
}

.faq-section .container {
    max-width: 90%;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

/* Sidebar */
.faq-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    padding: 2rem;
    background: linear-gradient(135deg, var(--accent-green) 0%, #059669 100%);
    border-radius: var(--radius-xl);
    color: white;
}

.sidebar-eyebrow {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
    margin-bottom: 0.75rem;
}

.sidebar-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.sidebar-card p {
    font-size: 0.9375rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.sidebar-card .btn-secondary {
    width: 100%;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

    .sidebar-card .btn-secondary:hover {
        background: white;
        color: var(--accent-green);
    }

/* Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.accordion-item {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

    .accordion-item:hover {
        border-color: #cbd5e1;
    }

    .accordion-item.open {
        box-shadow: var(--shadow-md);
        border-color: transparent;
    }

.accordion-trigger {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    text-align: left;
    transition: all var(--transition);
}

.accordion-icon {
    width: 36px;
    height: 36px;
    background: var(--accent-green-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green);
    font-size: 0.875rem;
    flex-shrink: 0;
    transition: all var(--transition);
}

.accordion-item.open .accordion-icon {
    background: var(--accent-green);
    color: white;
}

.accordion-title {
    flex: 1;
}

.accordion-chevron {
    color: var(--text-muted);
    font-size: 0.875rem;
    transition: all var(--transition);
}

.accordion-item.open .accordion-chevron {
    transform: rotate(180deg);
    color: var(--accent-green);
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.open .accordion-panel {
    max-height: 500px;
}

.accordion-body {
    padding: 0 1.5rem 1.5rem 3.25rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   WHY SELL SECTION
   ============================================ */

.why-sell-section {
    padding: 5rem 0;
    background: var(--background);
}

.why-sell-section .container {
    max-width: 90%;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
}

.feature-card {
    padding: 2.5rem;
    background: var(--surface);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    text-align: center;
    transition: all var(--transition);
}

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
        border-color: transparent;
    }

.feature-icon-wrap {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--accent-green) 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.25);
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-visual {
    display: none;
    justify-content: center;
    align-items: center;
}

    .feature-visual img {
        width: 100%;
        max-width: 400px;
        height: auto;
    }

/* ============================================
   CTA SECTION
   ============================================ */

/* Local Overrides for the Teal Vibe within the CTA */
.cta-section {
    --cta-bg: #042f2e; /* Deep Teal */
    --cta-accent: #2dd4bf; /* Bright Teal */
    --cta-glow: rgba(45, 212, 191, 0.2);
    padding: 80px 0;
    background: var(--background);
}

.cta-section .container {
    position: relative;
    z-index: 1;
    max-width:95%;
}

.cta-box {
    position: relative;
    background: var(--cta-bg);
    border-radius: var(--radius-xl);
    padding: 60px;
    color: var(--surface);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

/* Badge Styling */
.cta-badge {
    display: inline-block;
    background: rgba(45, 212, 191, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--cta-glow);
    margin-bottom: 24px;
}

/* Typography */
.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    /* Uses your surface color with a teal fade */
    background: linear-gradient(to right, var(--surface), var(--cta-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    filter: brightness(1.5); /* Makes muted text readable on dark bg */
    max-width: 600px;
    margin-bottom: 40px;
}

/* Action Buttons */
.cta-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 40px;
}

.btn-primary.btn-large {
    background: var(--cta-accent);
    color: var(--cta-bg); /* Dark text on bright button */
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(45, 212, 191, 0.2);
}

    .btn-primary.btn-large:hover {
        transform: translateY(-3px);
        filter: brightness(1.1);
        box-shadow: 0 15px 25px rgba(45, 212, 191, 0.3);
    }

.btn-secondary-ghost {
    color: var(--surface);
    text-decoration: none;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

    .btn-secondary-ghost:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: var(--cta-accent);
    }

/* Meta Labels */
.cta-meta {
    display: flex;
    gap: 25px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Background "Hook" Shapes */
.cta-shape {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.3;
}

.shape-a {
    width: 300px;
    height: 300px;
    background: var(--cta-accent);
    top: -100px;
    right: -50px;
}

.shape-b {
    width: 250px;
    height: 250px;
    background: var(--primary); /* Mixing in your root primary blue for depth */
    bottom: -50px;
    left: -20px;
}
/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .hero-visual {
        order: 0;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .faq-layout {
        grid-template-columns: 300px 1fr;
        gap: 3rem;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr 1.2fr;
    }

    .feature-visual {
        display: flex;
    }

    .cta-box {
        padding: 5rem;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .floating-stat {
        right: -10%;
    }
}

@media (min-width: 1024px) {
    .sell-hero {
        padding: 8rem 0 6rem;
    }

    .faq-layout {
        grid-template-columns: 320px 1fr;
        gap: 4rem;
    }

    .floating-stat {
        right: -5%;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .floating-stat {
        display: none;
    }

    .sidebar-card {
        position: static;
    }

    .accordion-body {
        padding-left: 1.5rem;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
