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

:root {
    --primary: #6366F1;
    --primary-dark: #4F46E5;
    --primary-light: #818CF8;
    --secondary: #F59E0B;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --bg-white: #FFFFFF;
    --bg-light: #F9FAFB;
    --border: #E5E7EB;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation - Mobile First */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.logo svg {
    width: 32px;
    height: 32px;
}

.nav-links {
    display: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Client Link Button - Mobile First */
.btn-client-link {
    display: none; /* Hidden on mobile, shown on tablet+ */
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-client-link:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.client-link-icon {
    font-size: 18px;
    line-height: 1;
}

.client-link-text {
    display: none; /* Hidden on tablet, shown on desktop */
}

/* Mobile Menu Toggle (Hamburger) */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: white;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    padding: 80px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-content a {
    display: block;
    padding: 16px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.2s;
    text-align: left;
}

.mobile-menu-content a:hover {
    background: #f8f9ff;
    color: var(--primary);
}

.mobile-menu-actions {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-login-mobile {
    display: block !important;
    text-align: center;
    padding: 12px 20px;
    background: transparent;
    color: var(--text-gray);
    border: 2px solid var(--border);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-login-mobile:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #f8f9ff;
}

.btn-client-link-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    margin-bottom: 12px;
    text-align: center;
}

.btn-client-link-mobile:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-client-link-mobile .client-link-icon {
    font-size: 20px;
    line-height: 1;
}

/* Buttons - Mobile First */
.btn-primary, .btn-secondary, .btn-login {
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

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

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

.btn-login {
    background: transparent;
    color: var(--text-gray);
    display: none;
}

.btn-large {
    padding: 14px 28px;
    font-size: 16px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Client Banner Section - Mobile First */
.client-banner {
    padding: 24px 0;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.client-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    padding: 20px;
}

.client-banner-icon {
    font-size: 48px;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.client-banner-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.client-banner-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0;
}

.btn-client-banner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: white;
    color: #059669;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-client-banner:hover {
    background: #f8f9ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Hero Section - Mobile First */
.hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-text {
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-description {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-gray);
    font-size: 14px;
}

/* Hero Image/Mockup - Mobile */
.hero-image {
    display: none;
}

/* Section Header - Mobile First */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 20px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section - Mobile First */
.features {
    padding: 60px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.feature-card {
    padding: 32px 24px;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(99, 102, 241, 0.1);
}

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

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

/* Gamification Section - Mobile First */
.gamification {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
}

.gamification-content {
    margin-top: 40px;
}

.levels-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 40px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.08);
}

.level-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 8px;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.level-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(99, 102, 241, 0.15);
}

.level-item.highlight {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
}

.level-item.highlight .level-name {
    color: white;
}

.level-icon {
    font-size: 32px;
    line-height: 1;
}

.level-name {
    font-weight: 600;
    font-size: 12px;
    color: #1e293b;
    text-align: center;
}

.gamification-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.gamification-feature {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: 12px;
}

.gamification-feature .feature-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.gamification-feature h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.gamification-feature p {
    color: #64748b;
    line-height: 1.6;
    font-size: 14px;
}

/* How It Works - Mobile First */
.how-it-works {
    padding: 60px 0;
    background: white;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step {
    display: flex;
    gap: 20px;
}

.step-special {
    flex-direction: column;
    gap: 0;
}

.step-header-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.step-header-content {
    flex: 1;
}

.step-header-content h3 {
    margin-bottom: 8px;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, #8B5CF6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
}

.step-content h3,
.step-header-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.step-content p,
.step-header-content p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 14px;
}

.step-intro {
    margin-bottom: 0;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Origins Container - Mobile First */
.origins-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.origin-card {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px 20px;
    transition: all 0.3s;
}

.origin-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.origin-card.highlight {
    background: linear-gradient(135deg, #fef3c7 0%, #fef9e7 100%);
    border-color: #f59e0b;
}

.origin-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.origin-icon {
    font-size: 36px;
    line-height: 1;
}

.origin-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.badge-auto {
    padding: 4px 12px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.origin-flows {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.flow-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.flow-item.single {
    flex-direction: column;
    gap: 0;
}

.flow-number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: white;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 16px;
}

.flow-content {
    flex: 1;
    background: white;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.flow-title {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.flow-content p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 12px;
}

.flow-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

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

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

.flow-divider {
    text-align: center;
    color: var(--text-gray);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    padding: 8px 0;
    position: relative;
}

.flow-divider::before,
.flow-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 30px);
    height: 1px;
    background: var(--border);
}

.flow-divider::before {
    left: 0;
}

.flow-divider::after {
    right: 0;
}

.important-note {
    margin-top: 16px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(251, 191, 36, 0.05) 100%);
    border-left: 3px solid #f59e0b;
    border-radius: 8px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.note-icon {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
}

.important-note span {
    font-size: 13px;
    color: #92400e;
    line-height: 1.5;
}

.important-note strong {
    color: #78350f;
}

/* Partners Link Button */
.partners-link {
    margin-top: 16px;
    padding: 12px 20px;
    background: white;
    border: 2px solid var(--primary);
    border-radius: 10px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.partners-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

/* Modal Styles - Mobile First */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    margin: 20px;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 20px;
    border-bottom: 2px solid #f1f5f9;
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 32px;
    color: #64748b;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s;
    line-height: 1;
    padding: 0;
}

.modal-close:hover {
    background: #f1f5f9;
    color: #1e293b;
}

.modal-body {
    padding: 24px 20px;
}

.modal-description {
    font-size: 15px;
    color: #64748b;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.6;
}

.modal-partners-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-partner-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-partner-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
    transform: translateY(-2px);
}

.partner-info {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.partner-icon {
    font-size: 40px;
    line-height: 1;
    flex-shrink: 0;
}

.partner-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.partner-name {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
}

.partner-description {
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
}

.partner-badge {
    padding: 6px 12px;
    background: linear-gradient(135deg, var(--primary) 0%, #8B5CF6 100%);
    color: white;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Benefits - Mobile First */
.benefits {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.check-icon {
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.benefit-item p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.benefit-image {
    display: none;
}

/* Pricing Section - Mobile First */
.pricing {
    padding: 60px 0;
    background: white;
}

.pricing-card {
    margin: 40px auto 0;
    padding: 32px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.15);
    border: 2px solid #6366F1;
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 2px solid #f1f5f9;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.pricing-value {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 20px 0;
}

.currency {
    font-size: 20px;
    font-weight: 600;
    color: #6366F1;
    margin-top: 6px;
}

.amount {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin: 0 6px;
}

.period {
    font-size: 16px;
    color: #64748b;
    font-weight: 500;
    margin-top: 32px;
}

.pricing-description {
    color: #64748b;
    font-size: 14px;
}

.pricing-features {
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #475569;
}

.pricing-feature svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-feature strong {
    color: #10B981;
}

.btn-full {
    width: 100%;
    justify-content: center;
    margin-top: 12px;
}

.pricing-note {
    text-align: center;
    color: #64748b;
    font-size: 12px;
    margin-top: 12px;
    line-height: 1.5;
}

/* FAQ Section - Mobile First */
.faq {
    padding: 60px 0;
    background: white;
}

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

.faq-item {
    margin-bottom: 16px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px;
    background: white;
    border: none;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question:hover {
    background: #f8f9ff;
}

.faq-item.active .faq-question {
    background: #f8f9ff;
    color: var(--primary);
}

.faq-question span {
    flex: 1;
    line-height: 1.5;
}

.faq-icon {
    flex-shrink: 0;
    color: #64748b;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 20px;
}

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

.faq-answer p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* CTA Section - Mobile First */
.cta {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #8B5CF6 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    line-height: 1.3;
}

.cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.6;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary);
    font-weight: 700;
}

.btn-cta:hover {
    background: #f8f9ff;
    transform: translateY(-2px);
}

.cta-note {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

/* Footer - Mobile First */
.footer {
    padding: 48px 0 24px;
    background: #1e293b;
    color: white;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.footer-column h4 {
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 16px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.social-links a {
    font-size: 24px;
    transition: transform 0.2s;
}

.social-links a:hover {
    transform: scale(1.2);
}

/* Hero Mockup Card - Mobile Hidden */
.mockup-card,
.floating-card {
    display: none;
}

/* Tablet & Up (768px+) */
@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
    
    .nav-content {
        padding: 16px 0;
    }
    
    .logo {
        font-size: 24px;
        gap: 12px;
    }
    
    .logo svg {
        width: 40px;
        height: 40px;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .mobile-menu {
        display: none;
    }
    
    .nav-links {
        display: flex;
        gap: 24px;
    }
    
    .nav-links a {
        color: var(--text-gray);
        text-decoration: none;
        font-weight: 500;
        font-size: 15px;
        transition: color 0.2s;
    }
    
    .nav-links a:hover {
        color: var(--primary);
    }
    
    .btn-login {
        display: inline-flex;
    }
    
    .nav-actions {
        gap: 12px;
    }
    
    .btn-client-link {
        display: inline-flex;
    }
    
    .btn-primary, .btn-secondary, .btn-login {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .client-banner {
        padding: 32px 0;
    }
    
    .client-banner-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding: 24px 32px;
    }
    
    .client-banner-icon {
        font-size: 56px;
        flex-shrink: 0;
    }
    
    .client-banner-text {
        flex: 1;
        margin: 0 24px;
    }
    
    .client-banner-text h3 {
        font-size: 24px;
    }
    
    .client-banner-text p {
        font-size: 16px;
    }
    
    .btn-client-banner {
        flex-shrink: 0;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-content {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }
    
    .hero-text {
        flex: 1;
        text-align: left;
    }
    
    .hero h1 {
        font-size: 42px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-actions {
        flex-direction: row;
        gap: 16px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    
    .hero-image {
        display: block;
        flex: 1;
    }
    
    .mockup-card {
        display: block;
        background: white;
        border-radius: 16px;
        padding: 24px;
        box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
    }
    
    .mockup-header {
        display: flex;
        align-items: center;
        margin-bottom: 24px;
    }
    
    .mockup-dots {
        display: flex;
        gap: 6px;
    }
    
    .mockup-dots span {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #e5e7eb;
    }
    
    .chart-container {
        display: flex;
        align-items: flex-end;
        justify-content: space-around;
        height: 150px;
        margin-bottom: 24px;
        gap: 12px;
    }
    
    .chart-bar {
        flex: 1;
        background: linear-gradient(135deg, var(--primary) 0%, #8B5CF6 100%);
        border-radius: 8px 8px 0 0;
        transition: all 0.3s;
    }
    
    .chart-bar:hover {
        opacity: 0.8;
    }
    
    .stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .stat-card {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 16px;
        background: #f9fafb;
        border-radius: 12px;
    }
    
    .stat-icon {
        font-size: 32px;
    }
    
    .stat-value {
        font-size: 20px;
        font-weight: 700;
        color: var(--text-dark);
    }
    
    .stat-name {
        font-size: 12px;
        color: var(--text-gray);
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .section-header p {
        font-size: 18px;
    }
    
    .features {
        padding: 80px 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .gamification {
        padding: 80px 0;
    }
    
    .levels-showcase {
        grid-template-columns: repeat(5, 1fr);
        gap: 16px;
        padding: 32px;
    }
    
    .level-icon {
        font-size: 40px;
    }
    
    .level-name {
        font-size: 13px;
    }
    
    .gamification-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    
    .gamification-feature {
        padding: 0;
        background: transparent;
    }
    
    .gamification-feature .feature-icon {
        font-size: 48px;
    }
    
    .gamification-feature h3 {
        font-size: 20px;
    }
    
    .gamification-feature p {
        font-size: 15px;
    }
    
    .how-it-works {
        padding: 80px 0;
    }
    
    .step-content h3,
    .step-header-content h3 {
        font-size: 20px;
    }
    
    .step-content p,
    .step-header-content p {
        font-size: 15px;
    }
    
    .step-header-wrapper {
        gap: 24px;
    }
    
    .step-intro {
        font-size: 17px;
    }
    
    .origins-container {
        gap: 32px;
        margin-top: 40px;
    }
    
    .origin-card {
        padding: 32px 28px;
    }
    
    .origin-icon {
        font-size: 44px;
    }
    
    .origin-header h4 {
        font-size: 20px;
    }
    
    .flow-content {
        padding: 20px;
    }
    
    .flow-title {
        font-size: 16px;
    }
    
    .flow-content p {
        font-size: 14px;
    }
    
    .flow-badge {
        font-size: 13px;
        padding: 7px 14px;
    }
    
    .important-note {
        padding: 16px;
    }
    
    .important-note span {
        font-size: 14px;
    }
    
    .partners-link {
        font-size: 15px;
        padding: 14px 24px;
    }
    
    .modal-header {
        padding: 28px 32px;
    }
    
    .modal-header h3 {
        font-size: 24px;
    }
    
    .modal-body {
        padding: 28px 32px;
    }
    
    .modal-description {
        font-size: 16px;
    }
    
    .modal-partner-card {
        padding: 24px;
    }
    
    .partner-icon {
        font-size: 48px;
    }
    
    .partner-name {
        font-size: 18px;
    }
    
    .partner-description {
        font-size: 14px;
    }
    
    .partner-badge {
        font-size: 12px;
        padding: 7px 14px;
    }
    
    .benefits {
        padding: 80px 0;
    }
    
    .benefits-grid {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }
    
    .benefit-content {
        flex: 1;
    }
    
    .benefit-image {
        display: block;
        flex: 1;
        position: relative;
    }
    
    .floating-card {
        display: block;
        position: absolute;
        background: white;
        border-radius: 16px;
        padding: 24px;
        box-shadow: 0 12px 32px rgba(99, 102, 241, 0.15);
    }
    
    .floating-card.card-1 {
        top: 20%;
        left: 0;
        width: 280px;
    }
    
    .floating-card.card-2 {
        top: 60%;
        right: 0;
        width: 260px;
        background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
        color: white;
    }
    
    .card-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
    }
    
    .avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary) 0%, #8B5CF6 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 700;
    }
    
    .card-title {
        font-weight: 600;
        color: var(--text-dark);
    }
    
    .card-subtitle {
        font-size: 12px;
        color: var(--text-gray);
    }
    
    .card-points {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .points-label {
        font-size: 14px;
        color: var(--text-gray);
    }
    
    .points-value {
        font-size: 24px;
        font-weight: 800;
        background: linear-gradient(135deg, var(--primary) 0%, #8B5CF6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .notification-badge {
        font-weight: 700;
        margin-bottom: 8px;
    }
    
    .floating-card.card-2 p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 14px;
    }
    
    .pricing {
        padding: 80px 0;
    }
    
    .pricing-card {
        max-width: 600px;
        padding: 48px 40px;
    }
    
    .pricing-header h3 {
        font-size: 28px;
    }
    
    .amount {
        font-size: 72px;
    }
    
    .pricing-feature {
        font-size: 16px;
    }
    
    .pricing-description {
        font-size: 16px;
    }
    
    .faq {
        padding: 80px 0;
    }
    
    .faq-question {
        padding: 24px;
        font-size: 16px;
    }
    
    .faq-answer {
        padding: 0 24px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 24px 24px 24px;
    }
    
    .faq-answer p {
        font-size: 15px;
    }
    
    .cta {
        padding: 80px 0;
    }
    
    .cta-content h2 {
        font-size: 40px;
    }
    
    .cta-content p {
        font-size: 18px;
    }
    
    .footer {
        padding: 60px 0 32px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .hero h1 {
        font-size: 52px;
    }
    
    .section-header h2 {
        font-size: 42px;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .client-link-text {
        display: inline;
    }
    
    .client-banner-text h3 {
        font-size: 26px;
    }
    
    .client-banner-text p {
        font-size: 17px;
    }
    
    .cta-content h2 {
        font-size: 48px;
    }
    
    .origins-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .origin-card.highlight {
        max-width: 100%;
    }
    
    .origin-card.highlight:nth-child(3) {
        grid-column: 1 / 2;
    }
    
    .origin-card.highlight:nth-child(4) {
        grid-column: 2 / 3;
    }
    
    .origin-card {
        padding: 36px 32px;
    }
    
    .flow-item {
        gap: 20px;
    }
    
    .flow-number {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .modal-content {
        width: 85%;
        max-width: 700px;
    }
}
