/* ========================================
   CheckPay - Premium SaaS Landing Page
   Design System & Global Styles
======================================== */

:root {
    /* Colors - Deep Blue + Cyan + White */
    --primary-900: #1e3a8a;
    --primary-800: #1e40af;
    --primary-700: #1d4ed8;
    --primary-600: #2563eb;
    --primary-500: #3b82f6;
    
    --accent-600: #0891b2;
    --accent-500: #06b6d4;
    --accent-400: #22d3ee;
    --accent-300: #67e8f9;
    
    --gray-900: #0f172a;
    --gray-800: #1e293b;
    --gray-700: #334155;
    --gray-600: #475569;
    --gray-500: #64748b;
    --gray-400: #94a3b8;
    --gray-300: #cbd5e1;
    --gray-200: #e2e8f0;
    --gray-100: #f1f5f9;
    --gray-50: #f8fafc;
    
    --white: #ffffff;
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.25rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========================================
   Header
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 0.75rem 0;
}

.header.scrolled .logo span,
.header.scrolled .nav-links a {
    color: var(--gray-800);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo i {
    color: var(--accent-500);
    font-size: 1.75rem;
}

.logo span {
    color: var(--white);
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
}

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

.btn-nav {
    background: var(--accent-500) !important;
    color: var(--white) !important;
    padding: 0.625rem 1.25rem !important;
    border-radius: var(--radius-lg) !important;
}

.btn-nav:hover {
    background: var(--accent-600) !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.header.scrolled .mobile-menu-btn {
    color: var(--gray-800);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--gray-800);
    font-weight: 500;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

/* Mobile CTA Button */
.nav-cta-mobile {
    margin-top: 0.5rem;
    text-align: center;
    border-bottom: none !important;
}

/* Header CTA Button */
.nav-cta {
    padding: 0.5rem 1.25rem !important;
    font-size: 0.9rem !important;
    margin-left: 0.5rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Header hide on scroll */
.header-hidden {
    transform: translateY(-100%);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu {
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* ========================================
   Buttons
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-500), var(--accent-600));
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(6, 182, 212, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-600), var(--accent-500));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(6, 182, 212, 0.5);
}

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

.btn-outline:hover {
    background: var(--gray-100);
    border-color: var(--gray-400);
}

.btn-success {
    background: var(--success);
    color: var(--white);
}

.btn-success:hover {
    background: #059669;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ========================================
   Hero Section
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 6rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-800) 50%, var(--primary-700) 100%);
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(34, 211, 238, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 140%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
    z-index: -1;
}

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

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

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

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-400);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 640px) {
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
}

/* ========================================
   Sections
======================================== */
.section {
    padding: 6rem 0;
}

.section-white {
    background: var(--white);
}

.section-gray {
    background: var(--gray-50);
}

.section-cta {
    background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-800) 100%);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(6, 182, 212, 0.05));
    color: var(--accent-600);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ========================================
   Como Funciona - Steps
======================================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step-card {
    position: relative;
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

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

.step-number {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--accent-500), var(--accent-600));
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(6, 182, 212, 0.4);
}

.step-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(6, 182, 212, 0.05));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto 1.5rem;
}

.step-icon i {
    font-size: 1.75rem;
    color: var(--accent-500);
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ========================================
   Para Quem Serve - Audience
======================================== */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.audience-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

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

.audience-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--accent-500), var(--accent-600));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.audience-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.audience-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.audience-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .audience-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Benefícios
======================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

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

.benefit-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(6, 182, 212, 0.05));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.benefit-icon i {
    font-size: 1.25rem;
    color: var(--accent-500);
}

.benefit-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Form Section
======================================== */
.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.form-header p {
    color: var(--gray-600);
    font-size: 1rem;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group .required {
    color: var(--error);
}

.form-group .optional {
    color: var(--gray-400);
    font-weight: 400;
}

.form-group input,
.form-group select {
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    background: var(--white);
    color: var(--gray-800);
    transition: var(--transition);
    font-family: var(--font-family);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-500);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15);
}

.form-group input::placeholder {
    color: var(--gray-400);
}

.btn-submit {
    margin-top: 0.5rem;
    padding: 1.125rem 2rem;
    font-size: 1.125rem;
}

.form-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-disclaimer i {
    color: var(--success);
}

.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

@media (max-width: 640px) {
    .form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
}

/* ========================================
   Footer
======================================== */
.footer {
    background: var(--gray-900);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-800);
}

.footer-brand .logo span {
    color: var(--white);
}

.footer-brand p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

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

.footer-links a {
    color: var(--gray-400);
    font-size: 0.9rem;
}

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

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
}

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

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

/* ========================================
   Thank You Page
======================================== */
.thank-you-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.thank-you-container {
    text-align: center;
    max-width: 600px;
    padding: 3rem;
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.thank-you-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--success), #059669);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.thank-you-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.thank-you-container h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.thank-you-message {
    color: var(--gray-600);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.thank-you-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.info-item i {
    color: var(--accent-500);
}

@media (max-width: 640px) {
    .thank-you-info {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ========================================
   Error Pages
======================================== */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.error-container {
    text-align: center;
    max-width: 500px;
}

.error-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--gray-300), var(--gray-400));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.error-icon i {
    font-size: 2rem;
    color: var(--white);
}

.error-container h1 {
    font-size: 5rem;
    font-weight: 700;
    color: var(--gray-300);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.error-container h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.error-container p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

/* ========================================
   Admin Page
======================================== */
.admin-page {
    min-height: 100vh;
    background: var(--gray-50);
}

.admin-header {
    background: var(--white);
    padding: 1rem 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.admin-header .logo span {
    color: var(--gray-900);
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.user-avatar-placeholder {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-full);
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
}

.user-name {
    font-weight: 500;
    color: var(--gray-700);
}

.admin-main {
    padding: 2rem 0;
}

.admin-title {
    margin-bottom: 2rem;
}

.admin-title h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.admin-title p {
    color: var(--gray-600);
}

.admin-filters {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.filters-form {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.filter-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-600);
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
}

.input-icon input {
    padding-left: 2.5rem;
}

.filter-group input,
.filter-group select {
    padding: 0.625rem 1rem;
    font-size: 0.9rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--white);
    min-width: 180px;
}

.filter-group input:focus,
.filter-group select:focus {
    outline: none;
    border-color: var(--accent-500);
}

.admin-stats {
    margin-bottom: 1.5rem;
}

.stat-card {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.stat-card i {
    font-size: 1.5rem;
    color: var(--accent-500);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-info .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

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

.admin-table-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table thead {
    background: var(--gray-50);
}

.admin-table th {
    padding: 1rem;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--gray-200);
}

.admin-table td {
    padding: 1rem;
    font-size: 0.9rem;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

.admin-table tbody tr:hover {
    background: var(--gray-50);
}

.admin-table a {
    color: var(--accent-600);
}

.admin-table a:hover {
    text-decoration: underline;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-600);
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: var(--radius-full);
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--gray-500);
}

.empty-state i {
    font-size: 3rem;
    color: var(--gray-300);
    margin-bottom: 1rem;
}

.empty-state h3 {
    font-size: 1.25rem;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

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

.pagination-info {
    font-size: 0.9rem;
    color: var(--gray-600);
}

@media (max-width: 992px) {
    .admin-table {
        display: block;
    }
    
    .admin-table thead {
        display: none;
    }
    
    .admin-table tbody {
        display: block;
    }
    
    .admin-table tr {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .admin-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0;
        border: none;
    }
    
    .admin-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--gray-600);
        font-size: 0.8rem;
    }
}

@media (max-width: 640px) {
    .admin-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filters-form {
        flex-direction: column;
    }
    
    .filter-group input,
    .filter-group select {
        width: 100%;
        min-width: auto;
    }
    
    .export-section {
        width: 100%;
    }
    
    .export-section .btn {
        width: 100%;
    }
    
    .admin-user .user-name {
        display: none;
    }
}

/* ========================================
   Enhanced Admin Styles
======================================== */

/* Alert Styles */
.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.alert-close {
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    padding: 0.25rem;
    color: inherit;
    opacity: 0.7;
}

.alert-close:hover {
    opacity: 1;
}

/* Enhanced Filters */
.filters-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
    margin-bottom: 1rem;
}

.filters-row:last-child {
    margin-bottom: 0;
}

.filter-actions {
    display: flex;
    gap: 0.5rem;
}

.admin-filters {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.filter-group input[type="date"] {
    padding: 0.625rem 1rem;
    font-size: 0.9rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--white);
    min-width: 150px;
}

/* Status Badges */
.badge-blue {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.badge-yellow {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.badge-green {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.badge-red {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

/* Status Dropdown */
.status-dropdown {
    position: relative;
    display: inline-block;
}

.status-dropdown .badge {
    cursor: pointer;
    transition: var(--transition);
}

.status-dropdown:hover .badge {
    opacity: 0.8;
}

.status-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 50;
    min-width: 120px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    margin-top: 0.25rem;
}

.status-dropdown:hover .status-menu {
    display: block;
}

.status-form {
    margin: 0;
}

.status-option {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: left;
    background: none;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.status-option:hover {
    background: var(--gray-100);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn-danger {
    background: var(--error);
    color: var(--white);
}

.btn-danger:hover {
    background: #dc2626;
}

.delete-form {
    margin: 0;
}

/* Edit Form */
.edit-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.edit-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.edit-form-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.edit-form-header p {
    color: var(--gray-600);
}

.edit-form .form-grid {
    margin-bottom: 1.5rem;
}

.form-info {
    padding: 1rem 1.25rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.form-info p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

.form-info p:last-child {
    margin-bottom: 0;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

@media (max-width: 640px) {
    .filters-row {
        flex-direction: column;
    }
    
    .filter-actions {
        width: 100%;
    }
    
    .filter-actions .btn {
        flex: 1;
    }
    
    .action-buttons {
        flex-wrap: wrap;
    }
    
    .edit-form-wrapper {
        padding: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column-reverse;
    }
    
    .form-actions .btn {
        width: 100%;
    }
}

/* ========================================
   Scroll Animations
======================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.step-card.animate-on-scroll,
.audience-card.animate-on-scroll,
.benefit-card.animate-on-scroll,
.testimonial-card.animate-on-scroll {
    transition-delay: calc(var(--card-index, 0) * 0.1s);
}

.step-card:nth-child(1) { --card-index: 0; }
.step-card:nth-child(2) { --card-index: 1; }
.step-card:nth-child(3) { --card-index: 2; }

.audience-card:nth-child(1) { --card-index: 0; }
.audience-card:nth-child(2) { --card-index: 1; }
.audience-card:nth-child(3) { --card-index: 2; }
.audience-card:nth-child(4) { --card-index: 3; }
.audience-card:nth-child(5) { --card-index: 4; }
.audience-card:nth-child(6) { --card-index: 5; }

.benefit-card:nth-child(1) { --card-index: 0; }
.benefit-card:nth-child(2) { --card-index: 1; }
.benefit-card:nth-child(3) { --card-index: 2; }
.benefit-card:nth-child(4) { --card-index: 3; }
.benefit-card:nth-child(5) { --card-index: 4; }
.benefit-card:nth-child(6) { --card-index: 5; }

.testimonial-card:nth-child(1) { --card-index: 0; }
.testimonial-card:nth-child(2) { --card-index: 1; }
.testimonial-card:nth-child(3) { --card-index: 2; }

/* ========================================
   Testimonials Section
======================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

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

.testimonial-rating {
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1rem;
    margin-right: 0.125rem;
}

.testimonial-text {
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: var(--white);
    font-size: 1.25rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--gray-900);
    font-size: 0.95rem;
}

.author-info span {
    color: var(--gray-500);
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}

/* ========================================
   Dashboard Styles
======================================== */
.admin-nav {
    display: flex;
    gap: 0.5rem;
}

.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: var(--radius);
    transition: var(--transition);
}

.admin-nav-link:hover {
    color: var(--primary-600);
    background: var(--gray-100);
}

.admin-nav-link.active {
    color: var(--primary-600);
    background: rgba(30, 64, 175, 0.1);
}

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

.dashboard-stat-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.dashboard-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.dashboard-stat-card .stat-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.dashboard-stat-card.stat-primary .stat-icon {
    background: rgba(30, 64, 175, 0.1);
    color: var(--primary-600);
}

.dashboard-stat-card.stat-success .stat-icon {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.dashboard-stat-card.stat-accent .stat-icon {
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-600);
}

.dashboard-stat-card.stat-info .stat-icon {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

.dashboard-stat-card .stat-content {
    display: flex;
    flex-direction: column;
}

.dashboard-stat-card .stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
}

.dashboard-stat-card .stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.dashboard-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.dashboard-row:last-child {
    grid-template-columns: 1fr 1fr;
}

.dashboard-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.dashboard-card-lg {
    grid-column: span 1;
}

.dashboard-card-full {
    grid-column: 1 / -1;
}

.card-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-header h3 i {
    color: var(--primary-500);
}

.card-body {
    padding: 1.5rem;
}

/* Funnel Chart */
.funnel-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.funnel-stage {
    position: relative;
    background: var(--gray-100);
    border-radius: var(--radius);
    overflow: hidden;
    height: 48px;
}

.funnel-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    min-width: 4px;
    border-radius: var(--radius);
    transition: width 0.5s ease-out;
}

.funnel-blue .funnel-bar {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.funnel-yellow .funnel-bar {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.funnel-green .funnel-bar {
    background: linear-gradient(90deg, #10b981, #34d399);
}

.funnel-red .funnel-bar {
    background: linear-gradient(90deg, #ef4444, #f87171);
}

.funnel-info {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    height: 100%;
}

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

.funnel-count {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-800);
}

/* Period Stats */
.period-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.period-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.period-label {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.period-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
}

/* Chart List */
.chart-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chart-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.chart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chart-item-label {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.chart-item-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-800);
}

.chart-bar-container {
    height: 8px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.chart-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-500), var(--primary-400));
    border-radius: var(--radius-full);
    transition: width 0.5s ease-out;
}

.chart-bar-accent {
    background: linear-gradient(90deg, var(--accent-500), var(--accent-400));
}

@media (max-width: 992px) {
    .dashboard-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dashboard-row {
        grid-template-columns: 1fr;
    }
    
    .dashboard-row:last-child {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .dashboard-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-stat-card .stat-number {
        font-size: 1.5rem;
    }
    
    .admin-nav {
        display: none;
    }
}

/* ========================================
   Visual Landing Page Styles
======================================== */

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--accent-400), var(--primary-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Visual */
.hero-visual {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary-900) 50%, var(--gray-900) 100%);
}

.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

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

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-500);
    bottom: -100px;
    left: -100px;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-400);
    top: 50%;
    left: 30%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 6rem 0 4rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.3);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    color: var(--accent-400);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-visual .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-visual .hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-400);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-glow {
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.4);
}

.btn-glow:hover {
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.6);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-400);
    font-size: 0.9rem;
}

.trust-avatars {
    display: flex;
}

.trust-avatars .avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gray-900);
    margin-left: -8px;
    font-size: 0.75rem;
    color: var(--white);
}

.trust-avatars .avatar:first-child {
    margin-left: 0;
}

/* Hero Mockup */
.hero-visual-element {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-mockup {
    position: relative;
}

.mockup-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    width: 320px;
    box-shadow: var(--shadow-2xl);
    position: relative;
    z-index: 1;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-500);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.mockup-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.mockup-service {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.mockup-contract {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-lg);
    color: var(--success);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.mockup-button {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
    color: var(--white);
    text-align: center;
    padding: 1rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    margin-bottom: 1rem;
}

.mockup-secure {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.mockup-badge {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.mockup-badge.success {
    background: linear-gradient(135deg, var(--success), #059669);
    top: -20px;
    right: -20px;
    animation: pulse 2s infinite;
}

.mockup-badge.contract {
    background: linear-gradient(135deg, var(--accent-500), var(--primary-500));
    bottom: 40px;
    left: -30px;
    animation: pulse 2s infinite 0.5s;
}

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

/* Trust Bar */
.trust-bar {
    background: var(--white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.trust-content {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-600);
    font-weight: 500;
}

.trust-item i {
    color: var(--accent-500);
    font-size: 1.25rem;
}

/* Problems Section */
.section-problems {
    background: var(--gray-50);
    padding: 5rem 0;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 1rem auto 0;
    line-height: 1.7;
}

.section-subtitle.light {
    color: rgba(255, 255, 255, 0.8);
}

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

.problem-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.problem-card:hover {
    border-color: var(--danger);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(239, 68, 68, 0.15);
}

.problem-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.problem-icon i {
    font-size: 1.5rem;
    color: var(--danger);
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.problem-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Scroll Offset for Fixed Header */
section[id] {
    scroll-margin-top: 80px;
}

/* Section Headers Minimal */
.section-header-minimal {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-minimal h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.section-header-minimal.light h2 {
    color: var(--white);
}

/* Section Dark */
.section-dark {
    background: var(--gray-900);
    padding: 4rem 0;
    display: flex;
    align-items: center;
    min-height: auto;
}

.section-dark .container {
    width: 100%;
}

.section-dark .section-header-minimal {
    margin-bottom: 2.5rem;
}

.section-dark .section-header-minimal h2 {
    color: var(--white);
}

/* Visual Steps */
.visual-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
}

.visual-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    text-align: center;
    min-width: 180px;
}

.visual-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-visual {
    display: flex;
    align-items: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background: var(--accent-500);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border: 3px solid var(--gray-900);
}

.step-circle {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-600), var(--accent-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.3);
    position: relative;
}

.step-circle.final {
    background: linear-gradient(135deg, var(--success), #059669);
}

.step-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-500), var(--primary-500));
    opacity: 0.5;
}

.step-label {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.step-desc {
    color: var(--gray-400);
    font-size: 0.85rem;
    max-width: 150px;
    line-height: 1.4;
}

/* Icon Grid */
.icon-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.icon-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(59, 130, 246, 0.1));
    border: 2px solid rgba(6, 182, 212, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-500);
    transition: var(--transition);
}

.icon-item:hover .icon-circle {
    background: linear-gradient(135deg, var(--accent-500), var(--primary-500));
    color: var(--white);
    transform: scale(1.1);
}

.icon-item span {
    font-weight: 600;
    color: var(--gray-700);
}

/* Section Gradient */
.section-gradient {
    background: linear-gradient(135deg, var(--primary-800) 0%, var(--gray-900) 100%);
    padding: 5rem 0;
}

/* Feature Cards */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.feature-card.highlight {
    background: linear-gradient(135deg, var(--accent-500), var(--primary-500));
    border: none;
    position: relative;
}

.feature-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--primary-600);
    padding: 0.25rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--accent-400);
}

.feature-card.highlight .feature-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.feature-icon.large {
    width: 80px;
    height: 80px;
    font-size: 2rem;
}

.feature-card h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.feature-visual {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.visual-bar {
    width: 8px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
}

.visual-bar:nth-child(1) { height: 20px; }
.visual-bar:nth-child(2) { height: 30px; }
.visual-bar:nth-child(3) { height: 25px; }

/* Stats Row */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.stat-box {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.stat-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-desc {
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* Testimonials Section */
.section-testimonials {
    background: linear-gradient(180deg, var(--gray-900) 0%, var(--gray-800) 100%);
    padding: 4rem 0;
}

.section-testimonials .section-header-minimal h2 {
    color: var(--white);
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card .testimonial-stars {
    color: #fbbf24;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.testimonial-card p {
    font-size: 1rem;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-author .author-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
}

.testimonial-author strong {
    display: block;
    color: var(--gray-800);
    font-size: 0.9rem;
}

.testimonial-author span {
    color: var(--gray-500);
    font-size: 0.8rem;
}

/* CTA Visual */
.section-cta-visual {
    position: relative;
    background: var(--gray-50);
    padding: 5rem 0;
    overflow: hidden;
}

.cta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.cta-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-400);
    top: -100px;
    left: -100px;
}

.cta-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--primary-400);
    bottom: -50px;
    right: -50px;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.cta-checklist {
    list-style: none;
}

.cta-checklist li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.cta-checklist i {
    color: var(--success);
}

.cta-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
}

/* Compact Form */
.compact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row input,
.form-row select,
.form-row-half select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-family: var(--font-family);
    transition: var(--transition);
}

.form-row input:focus,
.form-row select:focus,
.form-row-half select:focus {
    outline: none;
    border-color: var(--accent-500);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15);
}

.form-row-half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-full {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.form-note {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Footer Minimal */
.footer-minimal {
    background: var(--gray-900);
    padding: 2rem 0;
}

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

.footer-flex .logo span {
    color: var(--white);
}

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

/* Responsive Visual Landing */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-visual-element {
        display: none;
    }
    
    .trust-content {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .icon-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .feature-cards {
        grid-template-columns: 1fr;
    }
    
    .stats-row {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-checklist {
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 640px) {
    .hero-visual .hero-content h1 {
        font-size: 2rem;
    }
    
    .trust-content {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .visual-steps {
        flex-direction: column;
        gap: 2rem;
    }
    
    .step-line {
        display: none;
    }
    
    .icon-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-header-minimal h2 {
        font-size: 1.75rem;
    }
    
    .form-row-half {
        grid-template-columns: 1fr;
    }
    
    .footer-flex {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ========================================
   Hero Multi-Step Form Styles
======================================== */

.header-light .logo span,
.header-light .nav-links a {
    color: var(--gray-800);
}

.header-light .mobile-menu-btn {
    color: var(--gray-800);
}

.hero-multistep {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
    position: relative;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 50%, rgba(6, 182, 212, 0.05) 100%);
    overflow: hidden;
}

.hero-multistep-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hm-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.hm-shape-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-400);
    top: -200px;
    right: -150px;
}

.hm-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-400);
    bottom: -100px;
    left: -100px;
}

.hm-shape-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-300);
    top: 60%;
    left: 40%;
}

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

/* Left Side - Hero Info */
.hero-multistep-info {
    padding-right: 2rem;
}

.hero-multistep-info .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    color: var(--accent-600);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-multistep-info h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-multistep-subtitle {
    font-size: 1.15rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.hm-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
    font-size: 1rem;
}

.hm-benefit i {
    color: var(--success);
    font-size: 1.1rem;
}

.hero-trust-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.hero-trust-bar p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.hero-trust-bar strong {
    color: var(--primary-600);
}

/* Mobile Form Header - hidden on desktop */
.mobile-form-header {
    display: none;
}

/* Multi-Step Form Styles */
.section-multistep {
    position: relative;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    padding: 5rem 0;
    overflow: hidden;
}

.multistep-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ms-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.ms-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-400);
    top: -200px;
    right: -100px;
}

.ms-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-400);
    bottom: -150px;
    left: -100px;
}

.ms-shape-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-300);
    top: 40%;
    left: 50%;
}

.multistep-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Side - Info */
.multistep-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.multistep-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
}

.multistep-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.ms-benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.ms-benefit-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--success);
    font-size: 1.25rem;
}

.ms-benefit-text {
    display: flex;
    flex-direction: column;
}

.ms-benefit-text strong {
    color: var(--gray-800);
    font-weight: 600;
}

.ms-benefit-text span {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.multistep-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.trust-avatars-lg {
    display: flex;
}

.avatar-lg {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white);
    margin-left: -12px;
    color: var(--white);
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

.avatar-lg:first-child {
    margin-left: 0;
}

.multistep-trust p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.multistep-trust strong {
    color: var(--primary-600);
}

/* Right Side - Form */
.multistep-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--gray-100);
}

/* Progress Bar */
.ms-progress {
    margin-bottom: 2rem;
}

.ms-progress-bar {
    height: 8px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.ms-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-500), var(--primary-500));
    border-radius: var(--radius-full);
    width: 25%;
    transition: width 0.4s ease;
}

.ms-progress-text {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.ms-progress-text span:last-child {
    color: var(--accent-600);
    font-weight: 600;
}

/* Form Steps */
.multistep-form {
    position: relative;
}

.form-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.form-step.active {
    display: block;
}

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

.step-header {
    text-align: center;
    margin-bottom: 2rem;
}

.step-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

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

/* Option Grid (Step 1) */
.option-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.option-card {
    position: relative;
    cursor: pointer;
}

.option-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.option-card:hover .option-content {
    border-color: var(--accent-400);
    background: rgba(6, 182, 212, 0.05);
}

.option-card input:checked + .option-content {
    border-color: var(--accent-500);
    background: rgba(6, 182, 212, 0.1);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.15);
}

.option-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent-500), var(--primary-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.option-content span {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.95rem;
}

/* Option List (Step 2) */
.option-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.option-card-horizontal {
    position: relative;
    cursor: pointer;
}

.option-card-horizontal input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.option-content-h {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.option-card-horizontal:hover .option-content-h {
    border-color: var(--accent-400);
    background: rgba(6, 182, 212, 0.05);
}

.option-card-horizontal input:checked + .option-content-h {
    border-color: var(--accent-500);
    background: rgba(6, 182, 212, 0.1);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.15);
}

.option-icon-sm {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent-500), var(--primary-500));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--white);
    flex-shrink: 0;
}

.option-text {
    display: flex;
    flex-direction: column;
}

.option-text strong {
    color: var(--gray-800);
    font-weight: 600;
}

.option-text span {
    color: var(--gray-500);
    font-size: 0.85rem;
}

/* Input Group (Step 3 & 4) */
.input-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-size: 1.1rem;
}

.input-wrapper input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-family: var(--font-family);
    transition: all 0.3s ease;
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--accent-500);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.15);
}

.input-wrapper input:focus + .input-icon,
.input-wrapper input:not(:placeholder-shown) + .input-icon {
    color: var(--accent-500);
}

/* Step Navigation */
.step-nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.step-nav .btn {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 1rem;
}

.step-nav .btn-next:only-child,
.step-nav .btn-submit:only-child {
    margin-left: auto;
}

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

.btn-outline:hover {
    background: var(--gray-100);
    border-color: var(--gray-400);
}

.btn-next:disabled,
.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

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

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

/* Responsive Hero Multi-Step */
@media (max-width: 992px) {
    .hero-multistep-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .hero-multistep-info {
        text-align: center;
        padding-right: 0;
    }
    
    .hero-multistep-info h1 {
        font-size: 2.25rem;
    }
    
    .hero-benefits {
        align-items: center;
    }
    
    .hero-trust-bar {
        justify-content: center;
    }
    
    .multistep-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .multistep-info {
        text-align: center;
    }
    
    .multistep-info h2 {
        font-size: 2rem;
    }
    
    .multistep-benefits {
        align-items: center;
    }
    
    .ms-benefit {
        max-width: 300px;
    }
    
    .multistep-trust {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    /* Hero Multi-Step Mobile */
    .hero-multistep {
        min-height: auto;
        padding: 5rem 0 2rem;
    }
    
    .hero-multistep-info {
        display: none;
    }
    
    .hero-multistep-grid {
        grid-template-columns: 1fr;
    }
    
    .multistep-form-wrapper {
        padding: 1.5rem;
        border-radius: var(--radius-xl);
    }
    
    /* Mobile Form Header */
    .mobile-form-header {
        display: block;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .mobile-form-header h2 {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--gray-900);
        margin-bottom: 0.25rem;
    }
    
    .mobile-form-header p {
        font-size: 0.9rem;
        color: var(--gray-500);
    }
    
    .ms-progress {
        margin-bottom: 1.5rem;
    }
    
    .ms-progress-bar {
        height: 6px;
    }
    
    .ms-progress-text {
        font-size: 0.8rem;
    }
    
    /* Option Grid Mobile - 2 columns with centered last item */
    .option-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* Center the last odd item (Outros) */
    .option-grid .option-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 50%;
        justify-self: center;
    }
    
    .step-header {
        margin-bottom: 1.5rem;
    }
    
    .step-header h3 {
        font-size: 1.1rem;
    }
    
    .step-header p {
        font-size: 0.85rem;
    }
    
    .option-content {
        padding: 0.875rem 0.5rem;
    }
    
    .option-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    
    .option-content span {
        font-size: 0.85rem;
    }
    
    /* Option List Mobile */
    .option-list {
        gap: 0.5rem;
    }
    
    .option-content-h {
        padding: 0.875rem 1rem;
    }
    
    .option-icon-sm {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .option-text strong {
        font-size: 0.95rem;
    }
    
    .option-text span {
        font-size: 0.8rem;
    }
    
    /* Input Group Mobile */
    .input-group {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .input-wrapper input {
        padding: 0.875rem 0.875rem 0.875rem 2.75rem;
        font-size: 1rem;
    }
    
    .input-icon {
        left: 0.875rem;
        font-size: 1rem;
    }
    
    /* Step Navigation Mobile */
    .step-nav {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .step-nav .btn {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    .step-nav .btn-prev {
        order: 2;
        background: transparent;
        border: none;
        color: var(--gray-500);
    }
    
    .step-nav .btn-next,
    .step-nav .btn-submit {
        order: 1;
    }
    
    .form-security {
        margin-top: 1rem;
        font-size: 0.8rem;
    }
    
    /* Trust Bar Mobile */
    .trust-bar {
        padding: 1.5rem 0;
    }
    
    .trust-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 1.5rem;
    }
    
    .trust-item {
        font-size: 0.85rem;
    }
    
    .trust-item i {
        font-size: 1rem;
    }
    
    /* Como Funciona Mobile */
    .section-dark {
        padding: 2rem 0;
    }
    
    .section-dark .section-header-minimal {
        margin-bottom: 1.5rem;
    }
    
    .section-header-minimal h2 {
        font-size: 1.4rem;
    }
    
    .visual-steps {
        flex-direction: row;
        justify-content: center;
        gap: 0;
        flex-wrap: nowrap;
    }
    
    .visual-step {
        flex: 1;
        min-width: auto;
        max-width: 110px;
        gap: 0.5rem;
    }
    
    .step-line {
        display: none;
    }
    
    .step-number {
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
        top: -5px;
        right: -5px;
        border-width: 2px;
    }
    
    .step-circle {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
        margin: 0 auto;
    }
    
    .step-label {
        font-size: 0.75rem;
        text-align: center;
        line-height: 1.2;
        margin-top: 0.25rem;
    }
    
    .step-desc {
        font-size: 0.7rem;
        max-width: 100px;
        line-height: 1.3;
    }
    
    /* Feature Cards Mobile */
    .section-gradient {
        padding: 3rem 0;
    }
    
    .feature-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .feature-icon.large {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .stats-row {
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
    }
    
    .stat-value {
        font-size: 1.75rem;
    }
    
    .stat-desc {
        font-size: 0.8rem;
    }
    
    /* Testimonials Mobile */
    .section-testimonials {
        padding: 2.5rem 0;
    }
    
    .section-testimonials .section-header-minimal {
        margin-bottom: 1.5rem;
    }
    
    .section-testimonials .section-header-minimal h2 {
        font-size: 1.4rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .testimonial-card p {
        font-size: 0.95rem;
    }
    
    /* Footer Mobile */
    .footer-minimal {
        padding: 1.5rem 0;
    }
    
    .footer-flex {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .footer-flex p {
        font-size: 0.8rem;
    }
}
