/* Modern Premium Design Variables & Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* HSL Color Tokens */
    --brand-indigo: 250;
    --brand-pink: 325;
    
    --primary: hsl(var(--brand-indigo), 85%, 60%);
    --primary-dark: hsl(var(--brand-indigo), 85%, 48%);
    --primary-light: hsl(var(--brand-indigo), 95%, 72%);
    --primary-glow: hsla(var(--brand-indigo), 85%, 60%, 0.15);
    
    --secondary: hsl(var(--brand-pink), 90%, 58%);
    --secondary-dark: hsl(var(--brand-pink), 90%, 48%);
    --secondary-glow: hsla(var(--brand-pink), 90%, 58%, 0.15);
    
    --accent: hsl(142, 72%, 45%);
    --accent-glow: hsla(142, 72%, 45%, 0.15);
    
    --warning: hsl(38, 92%, 50%);
    --danger: hsl(350, 89%, 60%);
    
    --bg-base: hsl(220, 20%, 97%);
    --bg-surface: hsl(0, 0%, 100%);
    --text-main: hsl(224, 47%, 11%);
    --text-muted: hsl(220, 14%, 48%);
    --border-light: hsl(220, 20%, 88%);
    
    /* Glassmorphism tokens */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-base);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility Classes */
.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary), hsl(280, 85%, 60%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease-in-out infinite;
    background-size: 200% 200%;
}

.text-center {
    text-align: center;
}

.spinning {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% { transform: translateY(0); }
    40%, 43% { transform: translateY(-10px); }
    70% { transform: translateY(-5px); }
    90% { transform: translateY(-2px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Header Styles */
.header {
    background: var(--glass-bg);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    box-shadow: var(--glass-shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-container:hover {
    transform: scale(1.04);
}

.logo-icon {
    position: relative;
    color: var(--primary);
    font-size: 2rem;
    margin-right: 0.5rem;
    display: flex;
    align-items: center;
}

.sparkle-icon {
    position: absolute;
    top: -4px;
    right: -4px;
    font-size: 0.75rem;
    color: var(--warning);
    animation: pulse 2s infinite;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-desktop {
    display: flex;
    gap: 2.25rem;
    align-items: center;
}

.nav-link {
    position: relative;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.members-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.75rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px var(--primary-glow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.members-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px hsla(var(--brand-indigo), 85%, 60%, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: var(--primary);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border-light);
    animation: fadeIn 0.3s ease;
}

.mobile-nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.mobile-nav-link:hover {
    color: var(--primary);
}

.mobile-members-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--glass-shadow);
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 1.15rem 2.25rem;
    border-radius: 0.875rem;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px var(--primary-glow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px hsla(var(--brand-indigo), 85%, 60%, 0.35);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    padding: 1.15rem 2.25rem;
    border-radius: 0.875rem;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--secondary-glow);
}

/* Section Styles */
.section {
    display: none;
    min-height: 100vh;
    padding-top: 100px;
}

.section.active {
    display: block;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeIn 0.8s ease;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary-glow);
    color: var(--primary);
    padding: 0.65rem 1.75rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
    border: 1px solid hsla(var(--brand-indigo), 85%, 60%, 0.15);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--text-main), var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 10% 20%, hsl(220, 20%, 95%) 0%, hsl(220, 20%, 97%) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 15% 15%, hsla(var(--brand-indigo), 85%, 60%, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 85% 85%, hsla(var(--brand-pink), 90%, 58%, 0.08) 0%, transparent 45%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary-glow);
    color: var(--primary);
    padding: 0.65rem 1.75rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    border: 1px solid hsla(var(--brand-indigo), 85%, 60%, 0.15);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-features {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-icon {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon.green {
    background: linear-gradient(135deg, hsl(142, 72%, 45%), hsl(142, 72%, 35%));
}

.feature-icon.blue {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.feature-icon.purple {
    background: linear-gradient(135deg, hsl(270, 85%, 60%), hsl(270, 85%, 48%));
}

.feature-icon.pink {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
}

.feature-icon::before {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.floating-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 2.5rem 2rem;
    border-radius: 2rem;
    box-shadow: 0 25px 50px -12px rgba(31, 38, 135, 0.12);
    max-width: 320px;
    text-align: center;
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

.floating-card h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.floating-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.avatars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 2px solid white;
    margin-right: -0.5rem;
    animation: bounce 2s infinite;
}

.avatar.blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    animation-delay: 0s;
}

.avatar.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    animation-delay: 0.1s;
}

.avatar.pink {
    background: linear-gradient(135deg, #ec4899, #db2777);
    animation-delay: 0.2s;
}

.avatar.green {
    background: linear-gradient(135deg, #10b981, #059669);
    animation-delay: 0.3s;
}

.avatars span {
    margin-left: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 600;
}

/* Services Section */
.services-preview, .services-full {
    padding: 5rem 0;
    position: relative;
    background: linear-gradient(135deg, #f9fafb, #ffffff, #f3f4f6);
}

.services-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 10;
}

.service-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.8s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    animation: bounce 0.6s ease;
}

.service-card.blue .service-icon {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.service-card.purple .service-icon {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.service-card.green .service-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.service-card.orange .service-icon {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    display: flex;
    align-items: center;
    margin-bottom: 0.4rem;
    color: #6b7280;
    font-size: 0.8rem;
}

.service-card li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 0.5rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-card:hover li::before {
    animation: pulse 1s infinite;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    position: relative;
    background: linear-gradient(135deg, #f9fafb, #f3f4f6, #e5e7eb);
}

.testimonials-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.8s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.testimonial-card:hover .quote-icon {
    animation: bounce 0.6s ease;
}

.quote-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.quote-icon.purple {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.quote-icon.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.quote-icon.orange {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.testimonial-card p {
    font-style: italic;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.rating i {
    color: #fbbf24;
    animation: pulse 2s infinite;
}

.author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author .avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.125rem;
}

.author h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author span {
    font-size: 0.875rem;
    color: #6b7280;
}

.satisfaction-card {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
    color: white;
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 20px 25px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.satisfaction-card:hover {
    transform: scale(1.05);
}

.satisfaction-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    animation: pulse 3s infinite;
}

.satisfaction-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    border-color: #3b82f6;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #3b82f6;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.pricing-card > p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.price {
    margin-bottom: 2rem;
}

.amount {
    font-size: 3rem;
    font-weight: bold;
    color: #1f2937;
}

.unit {
    color: #6b7280;
    margin-left: 0.5rem;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-card li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #4b5563;
}

.pricing-card li i {
    color: #10b981;
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

.contact-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #8b5cf6;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #f9fafb;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: scale(1.05);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 1.25rem;
}

.contact-icon:nth-child(1) {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.contact-item:nth-child(2) .contact-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.contact-item:nth-child(3) .contact-icon {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.contact-item:nth-child(4) .contact-icon {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.contact-item h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #4b5563;
    margin-bottom: 0.25rem;
}

.contact-item span {
    font-size: 0.875rem;
    color: #6b7280;
}

.response-time {
    background: rgba(59, 130, 246, 0.1);
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-top: 2rem;
}

.response-time h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.response-time p {
    font-size: 0.875rem;
    color: #6b7280;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #374151;
}

.form-group input:not([type="checkbox"]),
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-height: 48px;
    font-size: 16px;
    background: #fdfdfd;
}

.checkbox-container {
    user-select: none;
    transition: all 0.2s ease;
}

.checkbox-container:hover {
    color: #1e293b !important;
}

#consentLGPD {
    width: 18px !important;
    height: 18px !important;
    min-height: auto !important;
    cursor: pointer;
    accent-color: #3b82f6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1f2937, #3b82f6, #8b5cf6);
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
    max-width: 400px;
}

.footer-services h3,
.footer-contact h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #93c5fd, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-services ul {
    list-style: none;
}

.footer-services li {
    margin-bottom: 0.5rem;
}

.footer-services a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-services a:hover {
    color: white;
    padding-left: 0.5rem;
}

.footer-services a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    transition: width 0.3s ease;
}

.footer-services a:hover::before {
    width: 100%;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    transform: scale(1.05);
}

.footer-contact-item .contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.footer-contact-item .contact-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.footer-contact-item .contact-icon.green {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.footer-contact-item span {
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom i {
    color: #ef4444;
    animation: pulse 2s infinite;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: white;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

/* WhatsApp Chat */
.whatsapp-chat {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: bounce 2s infinite;
}

.whatsapp-chat:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-chat .sparkle-icon {
    position: absolute;
    top: -4px;
    right: -4px;
    font-size: 0.75rem;
    color: #fbbf24;
}

.whatsapp-tooltip {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #1f2937, #374151);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-right: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #4b5563;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #374151;
}

.whatsapp-chat:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

.whatsapp-tooltip span {
    background: linear-gradient(135deg, #25d366, #128c7e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* NOVAS ADIÃ‡Ã•ES - Estilos para WhatsApp quick button */
.whatsapp-quick-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.whatsapp-quick-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .nav-desktop, .header-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-nav.active {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-chat {
        bottom: 1rem;
        right: 1rem;
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.25rem;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 1.25rem;
    }
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Loading animation for better UX */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
}
/* Adicionar no final do arquivo styles.css */

/* Members Area Styles */
.members-area {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9fafb, #ffffff);
    position: relative;
}

.members-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
}

.members-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 10;
}

.upload-section {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.upload-card {
    padding: 2rem;
}

.upload-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.upload-card:hover .upload-icon {
    transform: scale(1.1);
    animation: bounce 0.6s ease;
}

.upload-card h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.upload-card > p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 2rem;
}

.abnt-form {
    max-width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
   display: block;
   font-weight: 600;
   margin-bottom: 0.5rem;
   color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
   padding: 0.75rem 1rem;
   border: 2px solid #e5e7eb;
   border-radius: 0.75rem;
   font-size: 1rem;
   transition: all 0.3s ease;
   font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
   border-color: #3b82f6;
   box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
   transform: translateY(-2px);
}

.form-group textarea {
   resize: vertical;
   min-height: 200px;
   font-family: 'Courier New', monospace;
   line-height: 1.5;
}

.char-counter {
   text-align: right;
   font-size: 0.875rem;
   color: #6b7280;
   margin-top: 0.5rem;
   font-weight: 500;
}

.form-actions {
   display: flex;
   gap: 1rem;
   justify-content: center;
   margin-top: 2rem;
}

.form-actions .btn-primary,
.form-actions .btn-secondary {
   flex: 1;
   max-width: 200px;
   justify-content: center;
}

.features-section {
   background: rgba(255, 255, 255, 0.8);
   backdrop-filter: blur(10px);
   padding: 2rem;
   border-radius: 1.5rem;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
   border: 1px solid rgba(255, 255, 255, 0.5);
   height: fit-content;
   position: sticky;
   top: 100px;
}

.features-section h3 {
   font-size: 1.25rem;
   font-weight: bold;
   margin-bottom: 1.5rem;
   text-align: center;
   background: linear-gradient(135deg, #1f2937, #3b82f6);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}

.features-grid {
   display: flex;
   flex-direction: column;
   gap: 1rem;
}

.features-grid .feature-item {
   display: flex;
   align-items: flex-start;
   gap: 0.75rem;
   padding: 1rem;
   border-radius: 0.75rem;
   transition: all 0.3s ease;
   cursor: pointer;
}

.features-grid .feature-item:hover {
   background: rgba(59, 130, 246, 0.05);
   transform: translateX(5px);
}

.features-grid .feature-icon {
   width: 2.5rem;
   height: 2.5rem;
   border-radius: 0.5rem;
   display: flex;
   align-items: center;
   justify-content: center;
   color: white;
   font-size: 1rem;
   flex-shrink: 0;
}

.features-grid .feature-icon.blue {
   background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.features-grid .feature-icon.green {
   background: linear-gradient(135deg, #10b981, #059669);
}

.features-grid .feature-icon.purple {
   background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.features-grid .feature-icon.orange {
   background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.features-grid .feature-icon.pink {
   background: linear-gradient(135deg, #ec4899, #db2777);
}

.features-grid .feature-item h4 {
   font-weight: 600;
   margin-bottom: 0.25rem;
   color: #1f2937;
}

.features-grid .feature-item p {
   font-size: 0.875rem;
   color: #6b7280;
   margin: 0;
}

/* Loading States */
.form-group input:disabled,
.form-group select:disabled,
.form-group textarea:disabled {
   background-color: #f3f4f6;
   cursor: not-allowed;
   opacity: 0.6;
}

.btn-primary:disabled,
.btn-secondary:disabled {
   opacity: 0.6;
   cursor: not-allowed;
   transform: none !important;
}

/* Success Animation */
@keyframes success-pulse {
   0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
   70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
   100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.form-success {
   animation: success-pulse 2s infinite;
}

/* Error States */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
   border-color: #ef4444;
   box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.error-message {
   color: #ef4444;
   font-size: 0.875rem;
   margin-top: 0.25rem;
   display: flex;
   align-items: center;
   gap: 0.25rem;
}

/* Progress Indicator */
.progress-indicator {
   display: flex;
   justify-content: space-between;
   margin-bottom: 2rem;
   position: relative;
}

.progress-indicator::before {
   content: '';
   position: absolute;
   top: 50%;
   left: 0;
   right: 0;
   height: 2px;
   background: #e5e7eb;
   z-index: 1;
}

.progress-step {
   background: white;
   border: 2px solid #e5e7eb;
   border-radius: 50%;
   width: 2rem;
   height: 2rem;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 0.875rem;
   font-weight: 600;
   color: #6b7280;
   position: relative;
   z-index: 2;
   transition: all 0.3s ease;
}

.progress-step.active {
   background: #3b82f6;
   border-color: #3b82f6;
   color: white;
}

.progress-step.completed {
   background: #10b981;
   border-color: #10b981;
   color: white;
}

/* Responsive Design for Members Area */
@media (max-width: 1024px) {
   .members-content {
       grid-template-columns: 1fr;
       gap: 2rem;
   }
   
   .features-section {
       position: static;
   }
}

@media (max-width: 768px) {
   .form-row {
       grid-template-columns: 1fr;
       gap: 0;
   }
   
   .form-actions {
       flex-direction: column;
       align-items: stretch;
   }
   
   .form-actions .btn-primary,
   .form-actions .btn-secondary {
       max-width: none;
   }
   
   .upload-card {
       padding: 1.5rem;
   }
   
   .features-section {
       padding: 1.5rem;
   }
}

@media (max-width: 480px) {
   .members-area {
       padding: 3rem 0;
   }
   
   .upload-card {
       padding: 1rem;
   }
   
   .features-section {
       padding: 1rem;
   }
   
   .form-group textarea {
       min-height: 150px;
       font-size: 14px;
   }
}

/* Animation for file upload success */
@keyframes upload-success {
   0% { transform: scale(1); }
   50% { transform: scale(1.1); }
   100% { transform: scale(1); }
}

.upload-success {
   animation: upload-success 0.6s ease;
}

/* Custom scrollbar for textarea */
.form-group textarea::-webkit-scrollbar {
   width: 8px;
}

.form-group textarea::-webkit-scrollbar-track {
   background: #f1f1f1;
   border-radius: 4px;
}

.form-group textarea::-webkit-scrollbar-thumb {
   background: linear-gradient(135deg, #3b82f6, #8b5cf6);
   border-radius: 4px;
}

.form-group textarea::-webkit-scrollbar-thumb:hover {
   background: linear-gradient(135deg, #2563eb, #7c3aed);
}

/* Tooltip for form fields */
.form-tooltip {
   position: relative;
   display: inline-block;
   margin-left: 0.25rem;
   color: #6b7280;
   cursor: help;
}

.form-tooltip:hover::after {
   content: attr(data-tooltip);
   position: absolute;
   bottom: 100%;
   left: 50%;
   transform: translateX(-50%);
   background: #1f2937;
   color: white;
   padding: 0.5rem;
   border-radius: 0.25rem;
   font-size: 0.75rem;
   white-space: nowrap;
   z-index: 1000;
   opacity: 1;
}

/* Print styles for generated documents */
@media print {
   .members-area {
       display: none;
   }
}
/* Adicionar ao final do styles.css */

.abnt-specs {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 0.75rem;
    border-left: 4px solid #3b82f6;
}

.abnt-specs h4 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.abnt-specs ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.abnt-specs li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.4;
}

.abnt-specs li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.abnt-specs li strong {
    color: #1f2937;
    font-weight: 600;
}

/* Responsivo para specs ABNT */
@media (max-width: 768px) {
    .abnt-specs {
        padding: 1rem;
    }
    
    .abnt-specs li {
        font-size: 0.8rem;
        padding-left: 1.25rem;
    }
}

/* === PAYMENT MODAL STYLES === */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-card {
    background: white;
    width: 90%;
    max-width: 480px;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-header {
    margin-bottom: 2rem;
}

.modal-icon {
    width: 64px;
    height: 64px;
    background: #ecfdf5;
    color: #10b981; /* Brand Green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
    animation: bounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: #64748b;
    font-size: 0.95rem;
}

.pix-container {
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.pix-qr {
    max-width: 200px;
    height: auto;
    margin: 0 auto 1rem;
    display: block;
    mix-blend-mode: multiply;
}

.pix-code-box {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.pix-input {
    flex: 1;
    background: white;
    border: 1px solid #e2e8f0;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-family: monospace;
    font-size: 0.875rem;
    color: #475569;
}

.btn-copy {
    background: #3b82f6; /* Brand Blue */
    color: white;
    border: none;
    width: 44px;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-copy:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.btn-copy:active {
    transform: translateY(0);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: 1rem;
    transition: all 0.3s;
}

.status-pending {
    background: #fef3c7;
    color: #d97706;
}

.status-success {
    background: #d1fae5;
    color: #059669;
}

.spinner-sm {
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes bounceIn {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

/* Close button */
.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 1.25rem;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.2s;
}

.modal-close:hover {
    background: #f1f5f9;
    color: #ef4444;
}

/* === DRAG & DROP & WIZARD STYLES === */
.step-container {
    display: none;
    animation: fadeIn 0.4s ease-out forwards;
}

.step-container.active {
    display: block;
}

/* Progress Bar */
.wizard-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 500px;
    margin: 0 auto 3rem;
}

.wizard-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--border-light);
    transform: translateY(-50%);
    z-index: 1;
}

.wizard-progress-bar {
    position: absolute;
    top: 50%;
    left: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: translateY(-50%);
    z-index: 2;
    width: 0%;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.wizard-step {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 3px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-muted);
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.wizard-step.active {
    border-color: var(--primary);
    color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 8px 20px var(--primary-glow);
}

.wizard-step.completed {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    color: white;
}

.wizard-step-label {
    position: absolute;
    top: 100%;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.wizard-step.active .wizard-step-label {
    color: var(--primary);
}

.wizard-step.completed .wizard-step-label {
    color: var(--text-main);
}

/* Drag & Drop Zone */
.drag-drop-zone {
    border: 2px dashed var(--border-light);
    background: hsla(220, 20%, 97%, 0.5);
    border-radius: 1rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.drag-drop-zone:hover, .drag-drop-zone.dragover {
    border-color: var(--primary);
    background: var(--primary-glow);
    transform: translateY(-2px);
}

.drag-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.drag-drop-zone:hover .drag-icon {
    transform: translateY(-4px);
}

.drag-text {
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.95rem;
}

.drag-or {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.btn-drag-select {
    background: white;
    color: var(--primary);
    border: 1px solid var(--border-light);
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.btn-drag-select:hover {
    border-color: var(--primary);
    color: var(--primary-dark);
    box-shadow: 0 4px 10px var(--primary-glow);
}

/* File Selected State */
.file-badge {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: bounceIn 0.4s ease;
}

.file-badge button {
    background: none;
    border: none;
    color: #065f46;
    cursor: pointer;
    font-size: 1rem;
    padding: 0.15rem;
    display: flex;
    align-items: center;
}

.file-badge button:hover {
    color: #ef4444;
}

