:root {
    --primary-purple: #6366f1;
    --primary-purple-dark: #4f46e5;
    --primary-purple-light: #a5b4fc;
    --secondary-pink: #ec4899;
    --secondary-green: #10b981;
    --secondary-orange: #f59e0b;
    
    --neutral-50: #f8fafc;
    --neutral-100: #f1f5f9;
    --neutral-200: #e2e8f0;
    --neutral-300: #cbd5e0;
    --neutral-400: #94a3b8;
    --neutral-500: #64748b;
    --neutral-600: #475569;
    --neutral-700: #334155;
    --neutral-800: #1e293b;
    --neutral-900: #0f172a;
    
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    --border-radius-sm: 0.375rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 0.75rem;
    --border-radius-xl: 1rem;
    --border-radius-2xl: 1.5rem;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--neutral-600);
    max-width: 600px;
    margin: 0 auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-purple-light);
    color: var(--primary-purple-dark);
    border-radius: var(--border-radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--neutral-200);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-icon svg {
    width: 20px;
    height: 20px;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neutral-900);
    font-family: 'Poppins', sans-serif;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--neutral-600);
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary-purple);
}

.nav-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.btn-secondary {
    padding: 0.625rem 1.25rem;
    background: transparent;
    border: 1px solid var(--neutral-300);
    color: var(--neutral-700);
    border-radius: var(--border-radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.btn-secondary:hover {
    border-color: var(--primary-purple);
    color: var(--primary-purple);
}

.btn-primary {
    padding: 0.625rem 1.25rem;
    background: var(--primary-purple);
    border: none;
    color: white;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.btn-primary:hover {
    background: var(--primary-purple-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero-section {
    padding: 8rem 0 6rem;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.08"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-lg);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.highlight {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: white;
    border: none;
    color: var(--primary-purple);
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-lg);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-cta svg {
    width: 20px;
    height: 20px;
}

.btn-outline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline svg {
    width: 20px;
    height: 20px;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

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

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: var(--border-radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-2xl);
    animation: float 6s ease-in-out infinite;
}

.seller-card {
    top: 50px;
    right: 50px;
    width: 280px;
    animation-delay: 0s;
}

.match-card {
    bottom: 50px;
    left: 20px;
    width: 300px;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.card-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

.seller-avatar {
    background: var(--gradient-secondary);
}

.card-info h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 0.25rem;
}

.card-info p {
    font-size: 0.75rem;
    color: var(--neutral-500);
}

.card-status {
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-lg);
    font-size: 0.75rem;
    font-weight: 500;
    margin-left: auto;
}

.browsing {
    background: var(--secondary-green);
    color: white;
}

.buyer-mini-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--neutral-50);
    border-radius: var(--border-radius-md);
    margin-top: 0.5rem;
}

.mini-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.75rem;
}

.mini-info {
    flex: 1;
}

.mini-info span:first-child {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--neutral-900);
}

.mini-info span:last-child {
    font-size: 0.6875rem;
    color: var(--neutral-500);
}

.mini-action {
    padding: 0.25rem 0.5rem;
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    border-radius: var(--border-radius-sm);
    transition: background-color 0.2s ease;
}

.mini-action:hover {
    background: var(--neutral-100);
}

.match-header {
    text-align: center;
    margin-bottom: 1rem;
}

.match-avatars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.avatar-pair {
    display: flex;
    gap: 0.25rem;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.75rem;
}

.avatar.seller {
    background: var(--gradient-secondary);
}

.avatar.buyer {
    background: var(--gradient-accent);
}

.match-icon {
    font-size: 1.5rem;
    margin-left: 0.5rem;
}

.match-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 0.25rem;
}

.match-header p {
    font-size: 0.875rem;
    color: var(--neutral-600);
}

.ai-assistant {
    background: var(--neutral-50);
    border-radius: var(--border-radius-md);
    padding: 1rem;
}

.ai-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.ai-icon {
    font-size: 1rem;
}

.ai-badge span:last-child {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-purple);
}

.ai-assistant p {
    font-size: 0.875rem;
    color: var(--neutral-600);
    line-height: 1.5;
}

/* How It Works */
.how-it-works {
    padding: 6rem 0;
    background: white;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    flex: 1;
    position: relative;
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: var(--primary-purple);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    position: relative;
}

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

.process-step p {
    font-size: 0.875rem;
    color: var(--neutral-600);
    line-height: 1.6;
}

.process-arrow {
    font-size: 1.5rem;
    color: var(--primary-purple);
    font-weight: bold;
    margin: 0 1rem;
}

/* Platform Features */
.platform-features {
    padding: 6rem 0;
    background: var(--neutral-50);
}

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

.feature-card {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--neutral-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-demo {
    background: var(--neutral-50);
    border-radius: var(--border-radius-lg);
    padding: 1rem;
    border: 1px solid var(--neutral-200);
}

.demo-document {
    background: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.doc-header {
    background: var(--neutral-100);
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neutral-700);
    border-bottom: 1px solid var(--neutral-200);
}

.ai-summary {
    padding: 1rem;
}

.ai-badge-small {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: var(--primary-purple-light);
    color: var(--primary-purple-dark);
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.ai-summary p {
    font-size: 0.875rem;
    color: var(--neutral-600);
    line-height: 1.5;
    margin: 0;
}

.match-score {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.score-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(var(--secondary-green) 0deg 338deg, var(--neutral-200) 338deg 360deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.score-circle::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    z-index: 1;
}

.score {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondary-green);
    z-index: 2;
}

.score-label {
    font-size: 0.75rem;
    color: var(--neutral-500);
    z-index: 2;
}

.match-factors {
    flex: 1;
}

.factor {
    font-size: 0.875rem;
    color: var(--neutral-600);
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.deal-room {
    background: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.room-header {
    background: var(--neutral-800);
    color: white;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.milestone-tracker {
    padding: 1rem;
}

.milestone {
    padding: 0.5rem 0.75rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.milestone.completed {
    background: var(--secondary-green);
    color: white;
}

.milestone.active {
    background: var(--secondary-orange);
    color: white;
}

.milestone.pending {
    background: var(--neutral-200);
    color: var(--neutral-600);
}

/* For Sellers/Buyers Sections */
.for-sellers, .for-buyers {
    padding: 6rem 0;
}

.for-sellers {
    background: white;
}

.for-buyers {
    background: var(--neutral-50);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-layout.reverse {
    grid-template-columns: 1fr 1fr;
}

.split-layout.reverse .visual-side {
    order: -1;
}

.content-side h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}

.content-side > p {
    font-size: 1.125rem;
    color: var(--neutral-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.benefit-list {
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 0.5rem;
}

.benefit-text p {
    font-size: 0.875rem;
    color: var(--neutral-600);
    line-height: 1.6;
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--primary-purple);
    border: none;
    color: white;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-lg);
}

.btn-cta-large:hover {
    background: var(--primary-purple-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-cta-large svg {
    width: 20px;
    height: 20px;
}

.btn-outline-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-outline-large:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-large svg {
    width: 20px;
    height: 20px;
}

/* Buyer Browser */
.buyer-browser {
    background: white;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.browser-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--neutral-200);
}

.browser-header h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 1rem;
}

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

.pill {
    padding: 0.375rem 0.75rem;
    background: var(--neutral-100);
    color: var(--neutral-600);
    border-radius: var(--border-radius-lg);
    font-size: 0.75rem;
    font-weight: 500;
}

.pill.active {
    background: var(--primary-purple);
    color: white;
}

.buyer-cards {
    padding: 1.5rem;
}

.buyer-card {
    border: 1px solid var(--neutral-200);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.buyer-card.featured {
    border-color: var(--primary-purple);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(99, 102, 241, 0.02) 100%);
}

.buyer-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.buyer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.buyer-info h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 0.25rem;
}

.buyer-info p {
    font-size: 0.875rem;
    color: var(--neutral-500);
}

.buyer-badge {
    margin-left: auto;
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-lg);
    font-size: 0.75rem;
    font-weight: 600;
}

.buyer-badge.premium {
    background: var(--secondary-orange);
    color: white;
}

.buyer-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--neutral-500);
}

.buyer-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-connect {
    flex: 1;
    padding: 0.625rem 1rem;
    background: var(--primary-purple);
    border: none;
    color: white;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.btn-connect:hover {
    background: var(--primary-purple-dark);
}

.btn-view {
    flex: 1;
    padding: 0.625rem 1rem;
    background: transparent;
    border: 1px solid var(--neutral-300);
    color: var(--neutral-700);
    border-radius: var(--border-radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.btn-view:hover {
    border-color: var(--primary-purple);
    color: var(--primary-purple);
}

/* Buyer Dashboard */
.buyer-dashboard {
    background: white;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.dashboard-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--neutral-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-header h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--neutral-900);
}

.notification-badge {
    padding: 0.25rem 0.75rem;
    background: var(--secondary-pink);
    color: white;
    border-radius: var(--border-radius-lg);
    font-size: 0.75rem;
    font-weight: 600;
}

.dashboard-content {
    padding: 1.5rem;
}

.match-notification {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--neutral-50);
    border-radius: var(--border-radius-lg);
    margin-bottom: 1rem;
}

.match-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

.match-info {
    flex: 1;
}

.match-info h5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 0.25rem;
}

.match-info p {
    font-size: 0.75rem;
    color: var(--neutral-500);
}

.btn-respond {
    padding: 0.5rem 1rem;
    background: var(--primary-purple);
    border: none;
    color: white;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.btn-respond:hover {
    background: var(--primary-purple-dark);
}

.ai-insights {
    padding: 1rem;
    background: var(--neutral-50);
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--primary-purple);
}

.ai-insights .ai-badge {
    margin-bottom: 0.5rem;
}

.ai-insights p {
    font-size: 0.875rem;
    color: var(--neutral-600);
    line-height: 1.5;
    margin: 0;
}

/* Final CTA */
.final-cta {
    padding: 6rem 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-buttons .btn-cta-large {
    background: white;
    color: var(--primary-purple);
}

.cta-buttons .btn-outline-large {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.cta-buttons .btn-outline-large:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

/* Footer */
.footer {
    background: var(--neutral-900);
    color: var(--neutral-300);
    padding: 3rem 0 1.5rem;
}

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

.footer-brand p {
    margin-top: 1rem;
    font-size: 0.875rem;
    line-height: 1.6;
}

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

.link-group h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.link-group a {
    display: block;
    color: var(--neutral-400);
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
}

.link-group a:hover {
    color: white;
}

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

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: var(--neutral-400);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .split-layout.reverse .visual-side {
        order: 0;
    }
    
    .process-flow {
        flex-direction: column;
        gap: 3rem;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .content-side h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .nav-buttons {
        gap: 0.5rem;
    }
    
    .btn-secondary,
    .btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .nav-buttons {
        gap: 0.25rem;
    }
    
    .btn-secondary,
    .btn-primary {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .floating-card {
        position: static;
        margin: 1rem 0;
        width: 100% !important;
    }
    
    .hero-visual {
        height: auto;
        margin-top: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}
