/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue-500: #2563EB;
    --blue-600: #1D4ED8;
    --cyan-400: #22D3EE;
    --cyan-500: #06B6D4;
    --purple-500: #7C3AED;
    --purple-600: #6D28D9;
    --green-500: #10B981;
    --green-600: #059669;
    --orange-500: #F59E0B;
    --pink-500: #EC4899;
    --teal-500: #14B8A6;

    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    --white: #ffffff;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.03);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.03);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.15);

    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.25rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    --gradient-primary: linear-gradient(135deg, var(--blue-500), var(--cyan-500));
    --gradient-purple: linear-gradient(135deg, var(--purple-500), var(--pink-500));
    --gradient-green: linear-gradient(135deg, var(--green-500), var(--teal-500));
    --gradient-orange: linear-gradient(135deg, var(--orange-500), #EF4444);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

img {
    max-width: 100%;
    display: block;
}

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

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
    transform: translateY(-1px);
}

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

.btn-outline:hover {
    border-color: var(--blue-500);
    color: var(--blue-500);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-600);
}

.btn-ghost:hover {
    color: var(--blue-500);
}

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

.purple-btn {
    background: var(--gradient-purple);
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3);
}

.purple-btn:hover {
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.45);
    transform: translateY(-1px);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-icon {
    display: flex;
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-500);
    transition: color 0.2s;
    position: relative;
}

.nav-link:hover {
    color: var(--blue-500);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
    transition: width 0.25s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.mobile-header-group {
    display: none;
}

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

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 1px;
    transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 10rem 0 5rem;
    overflow: hidden;
    background: var(--white);
}

.hero-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    pointer-events: none;
}

.hero-bg-glow-1 {
    top: -80px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: var(--blue-500);
}

.hero-bg-glow-2 {
    bottom: -100px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: var(--cyan-500);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(6,182,212,0.08));
    border: 1px solid rgba(37,99,235,0.15);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--blue-500);
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-500);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--gray-900);
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 520px;
}

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

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

.hero-stat {
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-400);
}

.hero-stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

/* Hero Visual Cards */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 420px;
}

.hero-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-xl);
}

.hero-card-main {
    padding: 1.5rem;
    width: 340px;
    animation: float 6s ease-in-out infinite;
}

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

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-100);
}

.hero-card-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.hero-card-dot.green {
    background: var(--green-500);
    box-shadow: 0 0 8px rgba(16,185,129,0.4);
}

.hero-card-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    transition: background 0.2s;
}

.hero-card-item:hover {
    background: var(--gray-50);
}

.hero-card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-card-icon.blue {
    background: rgba(37,99,235,0.1);
    color: var(--blue-500);
}

.hero-card-icon.purple {
    background: rgba(124,58,237,0.1);
    color: var(--purple-500);
}

.hero-card-icon.teal {
    background: rgba(20,184,166,0.1);
    color: var(--teal-500);
}

.hero-card-icon.green {
    background: rgba(16,185,129,0.1);
    color: var(--green-500);
}

.hero-card-icon.small {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
}

.hero-card-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-800);
}

.hero-card-name.small {
    font-size: 0.8rem;
}

.hero-card-desc {
    font-size: 0.78rem;
    color: var(--gray-400);
}

.hero-card-desc.small {
    font-size: 0.72rem;
}

.hero-card-badge {
    margin-left: auto;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    flex-shrink: 0;
}

.hero-card-badge.green {
    background: rgba(16,185,129,0.1);
    color: var(--green-600);
}

.hero-card-badge.orange {
    background: rgba(245,158,11,0.1);
    color: var(--orange-500);
}

.hero-card-badge.blue {
    background: rgba(37,99,235,0.1);
    color: var(--blue-500);
}

.hero-card-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    animation: floatSlow 5s ease-in-out infinite;
}

.hero-card-match {
    top: 20px;
    right: -10px;
    animation-delay: -1.5s;
}

.hero-card-funded {
    bottom: 40px;
    left: -20px;
    animation-delay: -3s;
}

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

/* ===== TRUST BAR ===== */
.trust-bar {
    padding: 3rem 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    background: var(--gray-50);
}

.trust-label {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-300);
    letter-spacing: -0.01em;
    transition: color 0.3s;
}

.trust-logo:hover {
    color: var(--gray-500);
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
}

.section-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(6,182,212,0.08));
    border: 1px solid rgba(37,99,235,0.12);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--blue-500);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-badge.blue {
    background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(6,182,212,0.08));
    color: var(--blue-500);
    border-color: rgba(37,99,235,0.12);
}

.section-badge.purple {
    background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(236,72,153,0.08));
    color: var(--purple-500);
    border-color: rgba(124,58,237,0.12);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

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

/* ===== FEATURES ===== */
.features {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

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

.feature-card {
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-100);
    background: var(--white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s;
}

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

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.feature-icon.blue {
    background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(6,182,212,0.1));
    color: var(--blue-500);
}

.feature-icon.purple {
    background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(236,72,153,0.1));
    color: var(--purple-500);
}

.feature-icon.green {
    background: linear-gradient(135deg, rgba(16,185,129,0.1), rgba(20,184,166,0.1));
    color: var(--green-500);
}

.feature-icon.orange {
    background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(239,68,68,0.1));
    color: var(--orange-500);
}

.feature-icon.teal {
    background: linear-gradient(135deg, rgba(20,184,166,0.1), rgba(6,182,212,0.1));
    color: var(--teal-500);
}

.feature-icon.pink {
    background: linear-gradient(135deg, rgba(236,72,153,0.1), rgba(124,58,237,0.1));
    color: var(--pink-500);
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ===== FOR BUSINESS / INVESTORS ===== */
.for-section {
    padding: 6rem 0;
}

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

.for-investors {
    background: var(--white);
}

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

.for-inner.reverse {
    direction: rtl;
}

.for-inner.reverse > * {
    direction: ltr;
}

.for-content .section-title {
    text-align: left;
}

.for-desc {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin: 1rem 0 1.75rem;
}

.checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

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

.check-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(16,185,129,0.1);
    color: var(--green-500);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-icon.purple {
    background: rgba(124,58,237,0.1);
    color: var(--purple-500);
}

/* For Visual */
.for-visual {
    position: relative;
}

.for-image-wrapper {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.for-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
}

.for-float-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-100);
    animation: floatSlow 5s ease-in-out infinite;
}

.for-float-card.right {
    left: auto;
    right: -20px;
}

.for-float-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.for-float-icon.green {
    background: rgba(16,185,129,0.1);
    color: var(--green-500);
}

.for-float-icon.purple {
    background: rgba(124,58,237,0.1);
    color: var(--purple-500);
}

.for-float-title {
    font-size: 0.78rem;
    color: var(--gray-400);
    font-weight: 500;
}

.for-float-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-800);
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 6rem 0;
    background: var(--gray-50);
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.step-card {
    flex: 1;
    max-width: 320px;
    padding: 2.5rem 2rem;
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-100);
    position: relative;
    transition: all 0.3s ease;
}

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

.step-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
}

.step-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.step-icon.blue {
    background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(6,182,212,0.1));
    color: var(--blue-500);
}

.step-icon.purple {
    background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(236,72,153,0.1));
    color: var(--purple-500);
}

.step-icon.green {
    background: linear-gradient(135deg, rgba(16,185,129,0.1), rgba(20,184,166,0.1));
    color: var(--green-500);
}

.step-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.step-connector {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--white) 0%, rgba(37,99,235,0.03) 100%);
    position: relative;
    overflow: hidden;
}

.cta-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
}

.cta-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.cta-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.cta-form {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.cta-input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--white);
    outline: none;
    transition: border-color 0.2s;
}

.cta-input:focus {
    border-color: var(--blue-500);
}

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

.cta-note {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    padding-top: 4rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.footer-tagline {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-top: 0.75rem;
    max-width: 260px;
}

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

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-link {
    font-size: 0.88rem;
    color: var(--gray-400);
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem;
    font-size: 0.82rem;
    color: var(--gray-500);
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    background: rgba(255,255,255,0.05);
    transition: all 0.2s;
}

.social-link:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

/* ===== IMAGE PLACEHOLDERS ===== */
.for-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 380px;
    border-radius: var(--radius-2xl);
}

.business-placeholder {
    background: linear-gradient(135deg, #1e40af, #0891b2);
}

.investor-placeholder {
    background: linear-gradient(135deg, #6d28d9, #db2777);
}

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

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        flex-direction: column;
    }

    .step-connector {
        transform: rotate(90deg);
    }

    .step-card {
        max-width: 400px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav, .header-actions {
        display: none;
    }

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

    .hero {
        padding: 8rem 0 3rem;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-visual {
        min-height: 320px;
    }

    .hero-stats {
        gap: 1.25rem;
    }

    .hero-stat-number {
        font-size: 1.35rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .for-inner, .for-inner.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-form {
        flex-direction: column;
    }

    .footer-inner {
        flex-direction: column;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .trust-logos {
        gap: 1.5rem;
    }

    .for-content .section-title {
        text-align: center;
    }

    .for-desc {
        text-align: center;
    }

    .checklist {
        align-items: flex-start;
    }

    .hero-actions {
        justify-content: center;
    }

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

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.85rem;
    }

    .hero-card-main {
        width: 280px;
    }

    .hero-card-float {
        display: none;
    }

    .trust-logos {
        gap: 1rem;
    }

    .trust-logo {
        font-size: 1rem;
    }
}

/* ===== LANDING PAGE PRICING ===== */
.pricing-section {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.lp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.lp-pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1.5px solid var(--gray-100);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.lp-pricing-card:hover {
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
    transform: translateY(-6px);
}

.lp-pricing-featured {
    border-color: var(--blue-500);
    box-shadow: 0 8px 30px rgba(37,99,235,0.12);
    background: linear-gradient(180deg, rgba(37,99,235,0.02) 0%, var(--white) 100%);
    transform: scale(1.04);
}

.lp-pricing-featured:hover {
    box-shadow: 0 16px 45px rgba(37,99,235,0.18);
    transform: scale(1.04) translateY(-6px);
}

.lp-popular-tag {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.3rem 1.15rem;
    background: linear-gradient(135deg, var(--blue-500), var(--purple-500));
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.lp-plan-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.75rem;
}

.lp-plan-price {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--gray-900);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.lp-plan-price span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-400);
}

.lp-plan-tagline {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

.lp-plan-list {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 2rem;
    padding: 0;
}

.lp-plan-list li {
    font-size: 0.88rem;
    color: var(--gray-600);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lp-plan-list li strong {
    color: var(--gray-900);
}

.lp-plan-btn {
    width: 100%;
    text-align: center;
    text-decoration: none;
    display: block;
}

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

.btn-outline:hover {
    border-color: var(--blue-500);
    color: var(--blue-500);
}

/* Pitch Deck Banner */
.lp-pitchdeck-banner {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 2.5rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1.5px solid var(--gray-100);
    position: relative;
    overflow: hidden;
    max-width: 960px;
    margin: 0 auto;
}

.lp-pitchdeck-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--purple-500), var(--pink-500), var(--orange-500));
}

.lp-pitchdeck-info {
    flex: 1;
}

.lp-pitchdeck-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(236,72,153,0.08));
    border: 1px solid rgba(124,58,237,0.12);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--purple-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.lp-pitchdeck-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.02em;
    margin-bottom: 0.35rem;
}

.lp-pitchdeck-desc {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.65;
}

.lp-pitchdeck-cta {
    text-align: center;
    flex-shrink: 0;
}

.lp-pitchdeck-price {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--gray-900);
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.lp-pitchdeck-price span {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-400);
    margin-top: 0.25rem;
}

/* Pricing Responsive */
@media (max-width: 768px) {
    .lp-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
    }

    .lp-pricing-featured {
        transform: scale(1);
    }

    .lp-pricing-featured:hover {
        transform: translateY(-6px);
    }

    .lp-pitchdeck-banner {
        flex-direction: column;
        text-align: center;
    }
}

/* =========================================================
   COMPREHENSIVE LANDING PAGE RESPONSIVE OPTIMIZATION
   ========================================================= */

/* --- Mobile Menu & Header (Max 768px) --- */
@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        z-index: 999;
    }
    .nav.open {
        display: flex;
    }
    .nav-link {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        width: 100%;
        text-align: center;
    }
    .header-actions {
        display: none;
    }
    .header-actions.open {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        padding: 0.75rem 0 0;
        margin-top: 0;
    }
    /* When nav is open, put header-actions inside it */
    .nav.open {
        display: flex;
    }
    .nav.open ~ .header-actions.open {
        position: static;
        background: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0.5rem 1.5rem 0.5rem;
    }
    /* Standalone mobile actions (no nav open) */
    .header-actions.open:not(.nav.open ~ .header-actions.open) {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 1.25rem;
        justify-content: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }
    .header-actions.open .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 0.85rem;
    }
    .header-actions.open .btn-ghost {
        background: var(--gray-50);
        border: 1px solid var(--gray-200);
        color: var(--gray-800);
    }
    .header-actions.open #login-btn {
        display: none;
    }
    .mobile-header-group {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    .mobile-login-btn {
        padding: 0.4rem 0.85rem;
        font-size: 0.85rem;
    }
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Hero section */
    .hero-inner {
        flex-direction: column;
        text-align: center;
        padding-top: 6rem;
        gap: 3rem;
    }
    .hero-content {
        align-items: center;
        max-width: 100%;
        padding-right: 0;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .hero-stat-divider {
        display: none;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Features & How it works */
    .features-grid, .steps-grid {
        grid-template-columns: 1fr;
    }
    
    /* Role tabs */
    .role-tabs {
        flex-direction: column;
        width: 100%;
        background: transparent;
        border-radius: 0;
        padding: 0;
        box-shadow: none;
    }
    .role-tab {
        width: 100%;
        background: var(--white);
        border-radius: var(--radius-xl);
        margin-bottom: 0.5rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    
    /* Pricing */
    .lp-pricing-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .footer-col {
        align-items: center;
    }
    .social-links {
        justify-content: center;
    }
}

/* --- Small Phones (Max 480px) --- */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .hero-stat-number {
        font-size: 1.5rem;
    }
    .logo-text {
        font-size: 1.25rem;
    }
}
