/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #111827;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: #6b7280;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.5);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e5e7eb;
    height: 64px;
}

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

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

.logo-icon {
    width: 32px;
    height: 32px;
    color: #2563eb;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #2563eb;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger {
    width: 24px;
    height: 3px;
    background-color: #374151;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    background-color: white;
    border-top: 1px solid #e5e7eb;
    padding: 16px 20px;
}

.mobile-nav-link {
    display: block;
    padding: 12px 0;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
}

.btn-mobile {
    background-color: #2563eb;
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 8px;
}

/* Hero Section */
.hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    margin-bottom: 60px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 32px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero-title-accent {
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-description {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.2);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.feature-icon {
    transition: all 0.3s ease;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

.feature-icon-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.feature-icon-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.feature-icon-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

.feature-icon-purple {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.4);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.feature-card p {
    color: #cbd5e1;
    font-size: 1.0625rem;
    line-height: 1.6;
}

/* Section Styles */
section {
    padding: 120px 0;
}

.about {
    padding-top: 480px;
    padding-bottom: 80px;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
    padding-top: 60px;
}

.section-header h2 {
    color: #111827;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.75;
}

/* About Section */
.about {
    background-color: white;
    padding-top: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-text h3 {
    color: #111827;
    margin-bottom: 24px;
}

.about-text p {
    margin-bottom: 24px;
}

.stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 32px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

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

.about-feature {
    background-color: #f9fafb;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.about-feature:hover {
    background-color: white;
    border-color: #e5e7eb;
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.about-feature-icon svg {
    width: 24px;
    height: 24px;
}

.about-feature-icon-blue {
    background-color: #dbeafe;
    color: #2563eb;
}

.about-feature-icon-green {
    background-color: #dcfce7;
    color: #16a34a;
}

.about-feature-icon-purple {
    background-color: #f3e8ff;
    color: #9333ea;
}

.about-feature-icon-orange {
    background-color: #fed7aa;
    color: #ea580c;
}

.about-feature h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.about-feature p {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Services Section */
.services {
    background-color: #f9fafb;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.service-card {
    background: white;
    padding: 36px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    border-color: #e5e7eb;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-icon-blue svg { color: #2563eb; }
.service-icon-green svg { color: #16a34a; }
.service-icon-purple svg { color: #9333ea; }
.service-icon-red svg { color: #dc2626; }
.service-icon-indigo svg { color: #6366f1; }
.service-icon-teal svg { color: #0d9488; }

.service-card h3 {
    color: #111827;
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 1.25rem;
}

.service-card p {
    color: #6b7280;
}

.portal-features {
    background: white;
    border-radius: 16px;
    padding: 56px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #f3f4f6;
}

.portal-features-header {
    text-align: center;
    margin-bottom: 32px;
}

.portal-features-header h3 {
    color: #111827;
    margin-bottom: 16px;
}

.portal-features-header p {
    color: #6b7280;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-check {
    width: 20px;
    height: 20px;
    color: #16a34a;
    flex-shrink: 0;
    margin-top: 4px;
}

.feature-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Features Section */
.features {
    background-color: white;
}

.features-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.feature-card-main {
    background-color: #f9fafb;
    padding: 36px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
}

.feature-card-main:hover {
    background-color: white;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    border-color: #e5e7eb;
}

.feature-icon-main {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-card-main:hover .feature-icon-main {
    transform: scale(1.1);
}

.feature-icon-main svg {
    width: 48px;
    height: 48px;
}

.feature-icon-blue svg { color: #2563eb; }
.feature-icon-green svg { color: #16a34a; }
.feature-icon-purple svg { color: #9333ea; }
.feature-icon-orange svg { color: #ea580c; }
.feature-icon-indigo svg { color: #6366f1; }
.feature-icon-teal svg { color: #0d9488; }

.feature-card-main h3 {
    color: #111827;
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 1.5rem;
}

.feature-card-main p {
    color: #6b7280;
    margin-bottom: 16px;
}

.feature-highlight {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #1e40af;
    border-radius: 24px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid #bfdbfe;
}

.cta-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 24px;
    padding: 64px 48px;
    text-align: center;
    color: white;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-section h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.cta-section p {
    color: #cbd5e1;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.125rem;
    position: relative;
    z-index: 1;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
    max-width: 600px;
    margin: 0 auto;
}

.cta-stat {
    text-align: center;
}

.cta-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.cta-stat-label {
    color: #cbd5e1;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}

/* Platform Sections */
.wealth-platform,
.payment-platform {
    padding: 80px 0;
    position: relative;
}

.wealth-platform {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.payment-platform {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.platform-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.platform-content.reverse {
    direction: rtl;
}

.platform-content.reverse > * {
    direction: ltr;
}

.platform-badge {
    display: inline-flex;
    padding: 8px 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    color: white;
    border-radius: 24px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.payment-platform .platform-badge {
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
}

.platform-text h2 {
    font-size: 2.75rem;
    font-weight: 900;
    color: #111827;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.payment-platform .platform-text h2 {
    color: #ffffff;
}

.platform-lead {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 48px;
}

.payment-platform .platform-lead {
    color: #cbd5e1;
}

.platform-features-list {
    display: grid;
    gap: 32px;
    margin-bottom: 48px;
}

.platform-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.platform-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.payment-platform .platform-feature-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.platform-feature-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.platform-feature-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.payment-platform .platform-feature-item h4 {
    color: #ffffff;
}

.platform-feature-item p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
}

.payment-platform .platform-feature-item p {
    color: #cbd5e1;
}

.platform-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding-top: 32px;
    border-top: 2px solid #e5e7eb;
}

.payment-platform .platform-stats {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.platform-stat {
    text-align: center;
}

.platform-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.platform-stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.payment-platform .platform-stat-label {
    color: #94a3b8;
}

/* Platform Visual Mockups */
.platform-visual {
    position: relative;
}

.platform-screen {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.payment-platform .platform-screen {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-color: rgba(255, 255, 255, 0.1);
}

.screen-header {
    background: #f9fafb;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-platform .screen-header {
    background: rgba(15, 23, 42, 0.5);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.screen-dots {
    display: flex;
    gap: 6px;
}

.screen-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}

.screen-dots span:nth-child(1) { background: #ef4444; }
.screen-dots span:nth-child(2) { background: #f59e0b; }
.screen-dots span:nth-child(3) { background: #10b981; }

.screen-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
}

.payment-platform .screen-title {
    color: #94a3b8;
}

.screen-content {
    padding: 32px;
}

/* Portfolio Dashboard Styles */
.portfolio-value {
    margin-bottom: 32px;
}

.portfolio-label {
    font-size: 0.875rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.portfolio-amount {
    font-size: 3rem;
    font-weight: 900;
    color: #e2e8f0;
    margin-bottom: 8px;
}

.portfolio-change {
    font-size: 1.125rem;
    font-weight: 600;
}

.portfolio-change.positive {
    color: #10b981;
}

.portfolio-chart {
    margin-bottom: 32px;
    padding: 24px;
    background: #f9fafb;
    border-radius: 12px;
}

.portfolio-assets {
    display: grid;
    gap: 16px;
}

.asset-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f9fafb;
    border-radius: 8px;
}

.asset-name {
    font-weight: 600;
    color: #475569;
}

.asset-allocation {
    font-weight: 700;
    color: #111827;
    font-size: 1.125rem;
}

/* Payment Screen Styles */
.payment-status {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.status-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.status-icon.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.status-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.status-text {
    font-size: 1rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.status-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
}

.payment-details {
    display: grid;
    gap: 16px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-label {
    font-size: 0.875rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-value {
    font-weight: 700;
    color: #ffffff;
    font-size: 1rem;
}

.detail-value.risk-low {
    color: #10b981;
}

/* Onboarding Preview Mockup */
.onboarding-preview {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.onboarding-step h3 {
    color: #111827;
    font-size: 1.5rem;
    margin-bottom: 24px;
    font-weight: 700;
}

.step-indicator {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    justify-content: center;
}

.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e5e7eb;
    transition: all 0.3s ease;
}

.step-dot.active {
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.upload-zone {
    border: 2px dashed #cbd5e1;
    border-radius: 16px;
    padding: 48px 24px;
    text-align: center;
    background: #f9fafb;
    transition: all 0.3s ease;
    cursor: pointer;
}

.upload-zone:hover {
    border-color: #3b82f6;
    background: #eff6ff;
}

.upload-zone svg {
    width: 48px;
    height: 48px;
    color: #6b7280;
    margin: 0 auto 16px;
}

.upload-zone p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
}

.verification-status {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.verification-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
    background: #f9fafb;
    transition: all 0.3s ease;
}

.verification-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.verification-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #6b7280;
}

.verification-item.verified {
    background: #ecfdf5;
    border: 1px solid #10b981;
}

.verification-item.verified svg {
    color: #10b981;
}

.verification-item.verified span {
    color: #065f46;
}

.verification-item.processing {
    background: #eff6ff;
    border: 1px solid #3b82f6;
}

.verification-item.processing svg {
    color: #3b82f6;
    animation: spin 2s linear infinite;
}

.verification-item.processing span {
    color: #1e40af;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.profile-preview {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    border-radius: 12px;
    color: white;
}

.profile-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.profile-detail {
    font-size: 0.9rem;
    opacity: 0.9;
}

.mockup-browser {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.browser-header {
    background: #f3f4f6;
    padding: 12px 16px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 12px;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) { background: #ef4444; }
.browser-dots span:nth-child(2) { background: #f59e0b; }
.browser-dots span:nth-child(3) { background: #10b981; }

.browser-url {
    flex: 1;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 0.8rem;
    color: #6b7280;
    text-align: center;
}

/* Contact Section */
.contact {
    background-color: #f9fafb;
}

.contact-content {
    display: flex;
    justify-content: center;
}

.contact-info {
    max-width: 600px;
}

.contact-info h3 {
    color: #111827;
    margin-bottom: 24px;
}

.contact-info p {
    margin-bottom: 32px;
}

.contact-methods {
    margin-bottom: 32px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-icon-blue {
    background-color: #dbeafe;
    color: #2563eb;
}

.contact-icon-green {
    background-color: #dcfce7;
    color: #16a34a;
}

.contact-icon-purple {
    background-color: #f3e8ff;
    color: #9333ea;
}

.contact-method h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.contact-method p {
    color: #6b7280;
    margin: 0;
}

.expectations {
    background-color: #eff6ff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #dbeafe;
}

.expectations h4 {
    color: #1e40af;
    margin-bottom: 16px;
    font-weight: 600;
}

.expectations ul {
    list-style: none;
    color: #1e40af;
}

.expectations li {
    font-size: 0.9375rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-form-container {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #f3f4f6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #9ca3af;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.input-wrapper input {
    padding-left: 44px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

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

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.contact-detail-content {
    flex: 1;
}

.contact-detail-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.contact-detail-content p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.contact-detail-content a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-detail-content a:hover {
    color: #2563eb;
}

/* Footer */
.footer {
    background-color: #111827;
    color: white;
    padding: 48px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
    color: #2563eb;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-brand p {
    color: #9ca3af;
    margin-bottom: 24px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: all 0.2s ease;
}

.social-link:hover {
    background-color: #2563eb;
    color: white;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-links h3 {
    color: white;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-contact h3 {
    color: white;
    margin-bottom: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #9ca3af;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
    }

    .nav-desktop {
        display: none;
    }

    .platform-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .platform-content.reverse {
        direction: ltr;
    }

    .platform-text h2 {
        font-size: 2rem;
    }

    .platform-lead {
        font-size: 1.125rem;
    }

    .platform-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .wealth-platform,
    .payment-platform {
        padding: 80px 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid-main {
        grid-template-columns: 1fr;
    }
    
    .cta-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .contact-info {
        max-width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .feature-card,
    .service-card,
    .feature-card-main {
        padding: 24px;
    }
    
    .portal-features {
        padding: 32px 24px;
    }
    
    .cta-section {
        padding: 48px 24px;
    }

    .cta-section h3 {
        font-size: 1.875rem;
    }
    
    .contact-form-container {
        padding: 24px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading states */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn:disabled:hover {
    transform: none;
    box-shadow: none;
}