/* ===== Modern CSS Variables ===== */
:root {
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #38bdf8;
    --secondary: #0f172a;
    --accent: #10b981;
    --accent-light: #34d399;
    --purple: #8b5cf6;
    --pink: #ec4899;
    --orange: #f97316;

    --background: #ffffff;
    --background-alt: #f8fafc;
    --background-dark: #0f172a;

    --text: #1e293b;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
    --text-inverse: #f1f5f9;

    --border: #e2e8f0;
    --border-light: #f1f5f9;

    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(14, 165, 233, 0.15);

    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

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

ul {
    list-style: none;
}

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

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

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.5);
}

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

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(14, 165, 233, 0.05);
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

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

.logo-img {
    height: 80px;
    width: auto;
    transition: var(--transition);
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-light);
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(180deg, #f0f9ff 0%, var(--background) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--secondary);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

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

.stat-number {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Phone Mockup */
.hero-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-mockup {
    width: 300px;
    height: 620px;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 50px;
    padding: 12px;
    box-shadow:
        0 50px 100px -20px rgba(0, 0, 0, 0.25),
        0 30px 60px -30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 26px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #0f172a;
    border-radius: 40px;
    overflow: hidden;
}

.app-preview {
    height: 100%;
    background: #0f172a;
    display: flex;
    flex-direction: column;
    font-family: 'Inter', sans-serif;
}

/* App Status Bar */
.app-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px 4px;
    color: #94a3b8;
    font-size: 9px;
    font-weight: 500;
}

.status-icons {
    display: flex;
    gap: 4px;
    align-items: center;
}

.status-icons svg {
    width: 12px;
    height: 12px;
}

/* App Header */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 12px 10px;
}

.app-title {
    display: flex;
    align-items: center;
    gap: 6px;
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.app-logo {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
}

.app-header-icons {
    display: flex;
    gap: 8px;
}

.header-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    position: relative;
}

.header-icon svg {
    width: 16px;
    height: 16px;
}

.notification-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 14px;
    height: 14px;
    background: #ef4444;
    color: white;
    font-size: 8px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Scrollable Content */
.app-scroll-content {
    flex: 1;
    overflow-y: auto;
    padding: 0 10px 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.app-scroll-content::-webkit-scrollbar {
    display: none;
}

.app-section {
    margin-bottom: 12px;
}

.section-title {
    color: white;
    font-size: 11px;
    font-weight: 600;
}

/* Market Overview Card - Blue Gradient */
.market-overview-card {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 10px;
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.25);
}

.market-overview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    color: white;
    font-size: 9px;
    font-weight: 600;
}

.market-tune-icon {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.market-tune-icon svg {
    width: 10px;
    height: 10px;
}

.indices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.index-tile {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 8px;
}

.index-tile .index-name {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 6px;
    font-weight: 500;
    margin-bottom: 1px;
}

.index-tile .index-value {
    display: block;
    color: white;
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 1px;
}

.index-change-row {
    display: flex;
    align-items: center;
    gap: 1px;
    font-size: 6px;
    font-weight: 600;
}

.index-change-row.positive {
    color: #bef264;
}

.index-change-row.negative {
    color: #fca5a5;
}

.index-change-row svg {
    width: 8px;
    height: 8px;
}

/* FII/DII Section */
.fii-dii-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.fii-dii-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: white;
    font-size: 10px;
    font-weight: 600;
}

.fii-dii-icon {
    width: 26px;
    height: 26px;
    background: rgba(14, 165, 233, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0ea5e9;
}

.fii-dii-icon svg {
    width: 14px;
    height: 14px;
}

.fii-dii-header .chevron {
    margin-left: auto;
    color: #64748b;
    width: 14px;
    height: 14px;
}

.fii-dii-cards {
    display: flex;
    gap: 8px;
}

.fii-card {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
}

.fii-card.positive {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.fii-card.negative {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.fii-card .fii-label {
    display: block;
    color: #94a3b8;
    font-size: 9px;
    font-weight: 600;
    margin-bottom: 4px;
}

.fii-value-row {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    font-weight: 700;
}

.fii-value-row svg {
    width: 12px;
    height: 12px;
}

.fii-card.positive .fii-value-row {
    color: #10b981;
}

.fii-card.negative .fii-value-row {
    color: #ef4444;
}

/* Quick Stats */
.quick-stats-row {
    display: flex;
    gap: 6px;
}

.quick-stat {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 10px 6px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.quick-stat-icon {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px;
    color: white;
}

.quick-stat-icon svg {
    width: 14px;
    height: 14px;
}

.quick-stat-icon.green {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.quick-stat-icon.cyan {
    background: linear-gradient(135deg, #06b6d4, #22d3ee);
}

.quick-stat-icon.purple {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.quick-stat-number {
    display: block;
    color: white;
    font-size: 14px;
    font-weight: 800;
}

.quick-stat-label {
    display: block;
    color: #64748b;
    font-size: 7px;
    font-weight: 500;
    margin-top: 2px;
}

/* Section Header Row */
.section-header-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.section-icon {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.section-icon svg {
    width: 12px;
    height: 12px;
}

.section-icon.green {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.view-all-link {
    margin-left: auto;
    color: #0ea5e9;
    font-size: 9px;
    font-weight: 600;
}

/* IPO Cards - Updated */
.ipo-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 6px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ipo-avatar {
    width: 34px;
    height: 34px;
    background: rgba(14, 165, 233, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0ea5e9;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.ipo-avatar.large {
    width: 40px;
    height: 40px;
    font-size: 15px;
}

.ipo-details {
    flex: 1;
    min-width: 0;
}

.ipo-name {
    display: block;
    color: white;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 2px;
}

.ipo-meta-text {
    display: block;
    color: #64748b;
    font-size: 8px;
}

.ipo-status {
    text-align: right;
}

.ipo-badge {
    display: inline-block;
    font-size: 7px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 3px;
}

.ipo-badge.active {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.ipo-badge.upcoming {
    background: rgba(139, 92, 246, 0.2);
    color: #a78bfa;
}

.ipo-subscription-text {
    display: block;
    color: #10b981;
    font-size: 10px;
    font-weight: 700;
}

/* Tab Content Screens */
.app-tab-content {
    display: none;
}

.app-tab-content[data-tab="home"] {
    display: block;
}

/* IPO Tab Bar */
.ipo-tab-bar {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
    padding: 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.ipo-tab {
    flex: 1;
    padding: 6px 8px;
    font-size: 8px;
    font-weight: 600;
    border-radius: 16px;
    color: #64748b;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.ipo-tab.active {
    background: #0ea5e9;
    color: white;
}

/* IPO List Card */
.ipo-list-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.ipo-card-header {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
}

.ipo-avatar-circle {
    width: 32px;
    height: 32px;
    background: rgba(14, 165, 233, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0ea5e9;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.ipo-avatar-circle.sme {
    background: rgba(139, 92, 246, 0.2);
    color: #a78bfa;
}

.ipo-card-title {
    flex: 1;
    min-width: 0;
}

.ipo-card-name {
    display: block;
    color: white;
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ipo-card-badges {
    display: flex;
    gap: 4px;
}

.ipo-status-badge {
    font-size: 6px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.ipo-status-badge.upcoming {
    background: rgba(139, 92, 246, 0.2);
    color: #a78bfa;
}

.ipo-status-badge.open {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.ipo-status-badge.closed {
    background: rgba(249, 115, 22, 0.2);
    color: #f97316;
}

.ipo-status-badge.listed {
    background: rgba(14, 165, 233, 0.2);
    color: #0ea5e9;
}

.ipo-market-badge {
    font-size: 6px;
    font-weight: 600;
    padding: 2px 5px;
    border-radius: 3px;
    background: rgba(100, 116, 139, 0.2);
    color: #94a3b8;
}

.ipo-market-badge.sme {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
}

.ipo-gmp-box {
    background: rgba(16, 185, 129, 0.15);
    border-radius: 6px;
    padding: 4px 6px;
    text-align: center;
    flex-shrink: 0;
}

.ipo-gmp-box.positive {
    background: rgba(16, 185, 129, 0.15);
}

.ipo-gmp-box.negative {
    background: rgba(239, 68, 68, 0.15);
}

.gmp-value {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: #10b981;
}

.ipo-gmp-box.negative .gmp-value {
    color: #ef4444;
}

.gmp-label {
    display: block;
    font-size: 6px;
    color: #64748b;
    font-weight: 600;
}

.ipo-card-info {
    display: flex;
    gap: 12px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ipo-info-row {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #94a3b8;
    font-size: 8px;
}

.ipo-info-row svg {
    color: #64748b;
}

/* IPO Full Card */
.ipo-full-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.ipo-full-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.ipo-full-info {
    flex: 1;
}

.ipo-full-info .ipo-name {
    font-size: 12px;
    margin-bottom: 4px;
}

.ipo-tags {
    display: flex;
    gap: 4px;
}

.tag {
    font-size: 7px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 3px;
    text-transform: uppercase;
}

.tag.mainboard {
    background: rgba(139, 92, 246, 0.2);
    color: #a78bfa;
}

.tag.active {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.ipo-full-details {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 8px;
    margin-bottom: 10px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 9px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row span:first-child {
    color: #64748b;
}

.detail-row span:last-child {
    color: white;
    font-weight: 600;
}

.ipo-subscription-bar {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sub-progress {
    flex: 1;
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.sub-fill-large {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #34d399);
    border-radius: 3px;
}

.sub-label {
    color: #10b981;
    font-size: 9px;
    font-weight: 700;
}

/* Market Tab - Feature Cards */
.market-section-header {
    color: #64748b;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    margin-top: 4px;
}

.feature-card-list {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 12px;
    overflow: hidden;
}

.feature-card-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.feature-card-item:last-child {
    border-bottom: none;
}

.feature-icon-box {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-box.green {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.feature-icon-box.blue {
    background: rgba(14, 165, 233, 0.2);
    color: #0ea5e9;
}

.feature-icon-box.cyan {
    background: rgba(6, 182, 212, 0.2);
    color: #06b6d4;
}

.feature-icon-box.purple {
    background: rgba(139, 92, 246, 0.2);
    color: #a78bfa;
}

.feature-icon-box.orange {
    background: rgba(249, 115, 22, 0.2);
    color: #f97316;
}

.feature-icon-box.pink {
    background: rgba(236, 72, 153, 0.2);
    color: #ec4899;
}

.feature-icon-box.red {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.feature-card-text {
    flex: 1;
    min-width: 0;
}

.feature-card-title {
    display: block;
    color: white;
    font-size: 10px;
    font-weight: 600;
}

.feature-card-subtitle {
    display: block;
    color: #64748b;
    font-size: 8px;
    margin-top: 1px;
}

.pro-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    font-size: 6px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 3px;
    text-transform: uppercase;
}

.feature-chevron {
    color: #64748b;
    flex-shrink: 0;
}

/* Watchlist Tab */
.create-watchlist-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px dashed rgba(14, 165, 233, 0.3);
    border-radius: 10px;
    margin-bottom: 12px;
    cursor: pointer;
}

.create-watchlist-icon {
    width: 28px;
    height: 28px;
    background: rgba(14, 165, 233, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0ea5e9;
}

.create-watchlist-bar span {
    flex: 1;
    color: #0ea5e9;
    font-size: 10px;
    font-weight: 600;
}

.create-chevron {
    color: #0ea5e9;
}

.watchlist-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

.watchlist-bar.system {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(14, 165, 233, 0.15) 100%);
    border-color: rgba(16, 185, 129, 0.2);
}

.watchlist-bar-icon {
    width: 28px;
    height: 28px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
}

.watchlist-bar-icon.user {
    background: rgba(14, 165, 233, 0.2);
    color: #0ea5e9;
}

.watchlist-bar-info {
    flex: 1;
}

.watchlist-bar-name {
    display: block;
    color: white;
    font-size: 10px;
    font-weight: 600;
}

.watchlist-bar-count {
    display: block;
    color: #64748b;
    font-size: 8px;
    margin-top: 1px;
}

.watchlist-chevron {
    color: #64748b;
}

/* Account Tab */
.profile-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.profile-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #0ea5e9, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 700;
}

.profile-info {
    flex: 1;
}

.profile-name {
    display: block;
    color: white;
    font-size: 11px;
    font-weight: 700;
}

.profile-phone {
    display: block;
    color: #64748b;
    font-size: 8px;
    margin-top: 1px;
}

.profile-edit {
    color: #64748b;
}

/* Premium Card */
.premium-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.15) 100%);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    margin-bottom: 10px;
}

.premium-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.premium-text {
    flex: 1;
}

.premium-title {
    display: block;
    color: #f59e0b;
    font-size: 10px;
    font-weight: 700;
}

.premium-subtitle {
    display: block;
    color: #fbbf24;
    font-size: 8px;
    opacity: 0.8;
}

.premium-arrow {
    color: #f59e0b;
}

/* Theme Toggle */
.theme-toggle-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.theme-label {
    color: white;
    font-size: 10px;
    font-weight: 600;
}

.theme-toggle {
    display: flex;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 2px;
}

.theme-option {
    padding: 4px 10px;
    font-size: 8px;
    font-weight: 600;
    color: #64748b;
    border-radius: 14px;
    cursor: pointer;
}

.theme-option.active {
    background: #0ea5e9;
    color: white;
}

/* Account Section Labels */
.account-section-label {
    color: #64748b;
    font-size: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    margin-top: 4px;
}

/* Account Menu Card */
.account-menu-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 10px;
    overflow: hidden;
}

.account-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    cursor: pointer;
}

.account-menu-item:last-child {
    border-bottom: none;
}

.account-menu-item svg:first-child {
    color: #64748b;
}

.account-menu-item span {
    flex: 1;
    color: white;
    font-size: 10px;
    font-weight: 500;
}

.account-menu-item svg:last-child {
    color: #64748b;
}

/* App Version */
.app-version {
    text-align: center;
    color: #475569;
    font-size: 8px;
    padding: 8px 0;
}

/* Bottom Navigation */
.app-bottom-nav {
    display: flex;
    background: rgba(15, 23, 42, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 6px 6px 16px;
}

.nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 6px 3px;
    border-radius: 10px;
    color: #64748b;
    transition: all 0.2s;
    cursor: pointer;
}

.nav-item.active {
    background: rgba(14, 165, 233, 0.1);
    color: #0ea5e9;
}

.nav-item span {
    font-size: 8px;
    font-weight: 600;
}

.nav-item svg {
    width: 18px;
    height: 18px;
}

/* Floating elements around phone */
.hero-image::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -40px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(16, 185, 129, 0.15));
    border-radius: 20px;
    animation: float 4s ease-in-out infinite;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(14, 165, 233, 0.1);
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: -50px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.15));
    border-radius: 16px;
    animation: float 4s ease-in-out infinite 1.5s;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(139, 92, 246, 0.1);
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* ===== Features Overview ===== */
.features-overview {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

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

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

.feature-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: var(--transition);
}

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

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

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0.15;
}

.feature-icon.ipo {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #2563eb;
}
.feature-icon.bulk {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #059669;
}
.feature-icon.announce {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #d97706;
}
.feature-icon.alerts {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
    color: #db2777;
}
.feature-icon.results {
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    color: #4f46e5;
}
.feature-icon.watchlist {
    background: linear-gradient(135deg, #ffedd5, #fed7aa);
    color: #ea580c;
}

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

.feature-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

.features-cta {
    text-align: center;
    margin-top: 60px;
}

/* ===== Why Prospera ===== */
.why-prospera {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--background-alt) 0%, var(--background) 100%);
    position: relative;
}

.why-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: -0.02em;
}

.why-points {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.why-point {
    display: flex;
    gap: 20px;
    background: var(--background);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

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

.why-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.why-text p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* ===== Download Section ===== */
.download {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #1e293b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.download::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.download-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.download-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.download-content p {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 28px;
    border-radius: var(--radius);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.store-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-label {
    font-size: 11px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.store-name {
    font-size: 18px;
    font-weight: 600;
}

/* ===== Footer ===== */
.footer {
    background: var(--secondary);
    color: white;
    padding: 80px 0 40px;
}

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

.footer-brand p {
    color: var(--text-lighter);
    margin: 20px 0;
    line-height: 1.7;
}

.footer-brand .company-info {
    font-size: 13px;
    line-height: 1.9;
    color: var(--text-lighter);
}

.footer-brand .logo-img {
    height: 90px;
    background: white;
    border-radius: var(--radius-sm);
    padding: 10px;
}

.footer-links h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    color: var(--text-lighter);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: #cbd5e1;
    font-size: 15px;
}

.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-lighter);
    font-size: 14px;
}

.footer-bottom .disclaimer {
    margin-top: 16px;
    font-size: 12px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ===== Page Hero ===== */
.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(180deg, #f0f9ff 0%, var(--background) 100%);
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    position: relative;
}

.page-hero p {
    font-size: 19px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* ===== About Page ===== */
.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.9;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mission-card {
    background: linear-gradient(135deg, var(--background) 0%, var(--background-alt) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

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

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

.mission-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Founder Card */
.founder-container {
    max-width: 700px;
    margin: 0 auto;
}

.founder-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.founder-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary), var(--purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 800;
    color: white;
    margin: 0 auto 28px;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.founder-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 28px;
    display: block;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
    border: 4px solid var(--primary);
}

.founder-card h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 8px;
}

.founder-title {
    color: var(--primary);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 28px;
}

.founder-bio {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: left;
}

.founder-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 32px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 32px 0;
}

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

.founder-stat span:first-child {
    display: block;
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.founder-stat span:last-child {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--background-alt);
    border-radius: var(--radius-full);
    color: var(--text);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: white;
}

/* Company Info Cards */
.company-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.company-info-card {
    background: var(--background-alt);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.company-info-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 24px;
}

.company-info-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

.company-details-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.company-details-list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.company-details-list strong {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-lighter);
}

.company-details-list span {
    color: var(--text);
    font-weight: 500;
}

/* ===== Features Page ===== */
.features-page {
    padding: 80px 0;
}

.feature-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
}

.feature-section:last-child {
    border-bottom: none;
}

.feature-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-section:nth-child(even) .container {
    direction: rtl;
}

.feature-section:nth-child(even) .feature-details {
    direction: ltr;
}

.feature-section:nth-child(even) .feature-visual {
    direction: ltr;
}

.feature-details h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.feature-details p {
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.9;
    font-size: 16px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text);
    font-weight: 500;
}

.feature-list svg {
    color: var(--accent);
    flex-shrink: 0;
}

.feature-visual {
    background: linear-gradient(135deg, var(--background-alt) 0%, #e0f2fe 100%);
    border-radius: var(--radius-lg);
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    border: 1px solid var(--border);
}

/* ===== Contact Page ===== */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

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

.contact-method-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.25);
}

.contact-method h4 {
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 6px;
    font-size: 17px;
}

.contact-method p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

.contact-method a {
    color: var(--primary);
    font-weight: 500;
}

.contact-method a:hover {
    text-decoration: underline;
}

.contact-form-container {
    background: var(--background-alt);
    border-radius: var(--radius-lg);
    padding: 48px;
    border: 1px solid var(--border);
}

.contact-form-container h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
    background: var(--background);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

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

/* ===== Privacy & Terms Pages ===== */
.legal-content {
    padding: 100px 0;
}

.legal-content .container {
    max-width: 800px;
}

.legal-content h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary);
    margin: 48px 0 20px;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.9;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 28px;
}

.legal-content li {
    color: var(--text-light);
    margin-bottom: 10px;
    list-style: disc;
    line-height: 1.8;
}

.last-updated {
    color: var(--text-lighter);
    font-size: 14px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 44px;
    }

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

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

    .hero-image {
        display: none;
    }

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

    .why-points {
        grid-template-columns: 1fr;
    }

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

    .about-grid,
    .contact-grid,
    .company-info-grid,
    .feature-section .container {
        grid-template-columns: 1fr;
    }

    .feature-section:nth-child(even) .container {
        direction: ltr;
    }
}

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

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

    .hero {
        padding: 140px 0 80px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-header h2,
    .why-content h2,
    .download-content h2 {
        font-size: 32px;
    }

    .founder-stats {
        flex-direction: column;
        gap: 24px;
    }

    .page-hero h1 {
        font-size: 36px;
    }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}
