/* ===================== Reset & Base Styles ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0e27;
    --bg-secondary: #151932;
    --bg-card: #1a1f3a;
    --bg-card-hover: #21274a;
    --accent-blue: #00d4ff;
    --accent-purple: #a855f7;
    --accent-green: #10b981;
    --accent-red: #ef4444;
    --accent-orange: #f59e0b;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-color: rgba(0, 212, 255, 0.1);
    --border-light: rgba(255, 255, 255, 0.05);
    --gradient: linear-gradient(135deg, #00d4ff 0%, #a855f7 100%);
    --gradient-hover: linear-gradient(135deg, #00c4ff 0%, #9b46f0 100%);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===================== Header & Navigation ===================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 1rem 2rem;
    background: rgba(10, 14, 39, 0.98);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo:hover {
    transform: translateY(-1px);
}

.navbar {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.navbar a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.navbar a:hover,
.navbar a.active {
    color: var(--text-primary);
}

.navbar a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.navbar a:hover::after,
.navbar a.active::after {
    width: 100%;
}

.gradient-btn {
    padding: 0.75rem 1.5rem;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.gradient-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--gradient-hover);
}

.gradient-btn.primary-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.gradient-btn.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.gradient-btn.full-width {
    width: 100%;
    justify-content: center;
}

.outline-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.outline-btn:hover {
    border-color: var(--accent-blue);
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

.outline-btn.large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

#menu-icon {
    font-size: 1.8rem;
    color: var(--text-primary);
    cursor: pointer;
    display: none;
    transition: all 0.3s ease;
    z-index: 1001;
}

#menu-icon:hover {
    color: var(--accent-blue);
}

/* Menu Icon Animation */
body.menu-open #menu-icon {
    transform: rotate(90deg);
    color: var(--accent-blue);
}

/* ===================== Hero Section ===================== */
.hero {
    min-height: 100vh;
    padding: 8rem 0 4rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-badge {
    margin-bottom: 1.5rem;
}

.hero-badge span {
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent-blue);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

/* Live Ticker */
.live-ticker {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ticker-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-blue);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.ticker-content {
    display: flex;
    gap: 2rem;
    overflow: hidden;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.ticker-symbol {
    font-weight: 600;
    color: var(--text-secondary);
}

.ticker-price {
    font-weight: 700;
}

.ticker-change {
    font-size: 0.85rem;
    font-weight: 600;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 2;
}

.floating-cards {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.floating-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 212, 255, 0.3);
}

.floating-card.crypto-card {
    top: 0;
    right: 0;
    width: 220px;
    animation: float 6s ease-in-out infinite;
}

.floating-card.stock-card {
    bottom: 80px;
    left: 0;
    width: 220px;
    animation: float 6s ease-in-out infinite 2s;
}

.floating-card.forex-card {
    bottom: 0;
    right: 80px;
    width: 220px;
    animation: float 6s ease-in-out infinite 4s;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.card-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.card-info span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.card-price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-change {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.1;
    filter: blur(40px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation: float 6s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation: float 10s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* ===================== Quick Stats Section ===================== */
.quick-stats {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 212, 255, 0.3);
}

.stat-card.large {
    padding: 2.5rem;
}

.stat-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.stat-content {
    margin-bottom: 2rem;
}

.main-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.main-stat .value {
    font-size: 2.5rem;
    font-weight: 800;
}

.main-stat .change {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.stat-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-item .label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.stat-item .value {
    font-weight: 600;
    font-size: 0.95rem;
}

.stat-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    padding: 1rem 0 0;
    border-top: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.stat-link:hover {
    color: var(--text-primary);
}

.stat-link i {
    transition: transform 0.3s ease;
}

.stat-link:hover i {
    transform: translateX(5px);
}

/* ===================== Features Section ===================== */
.features {
    padding: 6rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 212, 255, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    text-align: left;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.feature-list li i {
    color: var(--accent-green);
    font-size: 1.1rem;
}

/* ===================== CTA Section ===================== */
.cta-section {
    padding: 6rem 0;
    background: var(--gradient);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-stats .stat {
    text-align: center;
}

.cta-stats .number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.cta-stats .label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===================== About Section ===================== */
.about {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    padding-right: 2rem;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-features {
    margin-bottom: 2.5rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.about-feature i {
    color: var(--accent-green);
    font-size: 1.1rem;
}

.about-actions {
    margin-top: 2rem;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.visual-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.visual-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: rgba(0, 212, 255, 0.3);
}

.visual-card .card-header {
    margin-bottom: 1rem;
}

.visual-card .card-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.visual-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===================== Contact Section ===================== */
.contact {
    padding: 6rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: rgba(0, 212, 255, 0.3);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-card p {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-card span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===================== Footer ===================== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: var(--accent-blue);
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-blue);
}

/* ===================== Utility Classes ===================== */
.positive { color: var(--accent-green); }
.negative { color: var(--accent-red); }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ===================== Mobile Responsive Design ===================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem 1.5rem;
    }
    
    /* Mobile Menu Fix */
    .navbar {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        height: calc(100vh - 100%);
        flex-direction: column;
        gap: 0;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    .navbar.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .navbar a {
        padding: 1.25rem 0;
        border-bottom: 1px solid var(--border-light);
        width: 100%;
        font-size: 1.1rem;
        text-align: center;
        justify-content: center;
    }
    
    .navbar a:last-child {
        border-bottom: none;
    }
    
    .navbar a::after {
        display: none;
    }
    
    #menu-icon {
        display: block;
    }
    
    /* Hide Get Started button on mobile */
    .header .gradient-btn {
        display: none;
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 7rem 0 2rem;
        min-height: auto;
    }
    
    .hero-container {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-actions .gradient-btn,
    .hero-actions .outline-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    /* Live Ticker Mobile Fix */
    .live-ticker {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
        width: 100%;
        overflow: hidden;
    }
    
    .ticker-label {
        justify-content: center;
        width: 100%;
        font-size: 0.8rem;
    }
    
    .ticker-content {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        width: 100%;
        overflow: visible;
    }
    
    .ticker-item {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
        padding: 0.5rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        min-width: 0;
    }
    
    .ticker-symbol {
        font-size: 0.75rem;
        font-weight: 600;
    }
    
    .ticker-price {
        font-size: 0.9rem;
        font-weight: 700;
    }
    
    .ticker-change {
        font-size: 0.7rem;
        font-weight: 600;
    }
    
    /* Floating Cards Mobile Fix */
    .floating-cards {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
        position: relative;
    }
    
    .floating-card {
        position: relative !important;
        width: 100% !important;
        margin-bottom: 0;
        animation: none !important;
        transform: none !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
    }
    
    .floating-card:hover {
        transform: translateY(-3px) !important;
    }
    
    /* Specific card adjustments for mobile */
    .floating-card.crypto-card,
    .floating-card.stock-card,
    .floating-card.forex-card {
        width: 100% !important;
        position: relative !important;
        margin: 0 !important;
    }
    
    /* Stats Grid Mobile */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-card.large {
        padding: 1.5rem;
    }
    
    .stat-header {
        margin-bottom: 1.5rem;
    }
    
    .main-stat .value {
        font-size: 2rem;
    }
    
    .stat-items {
        grid-template-columns: 1fr;
    }
    
    /* Features Grid Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    /* Contact Form Mobile */
    .contact-form {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* CTA Section Mobile */
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .gradient-btn,
    .cta-actions .outline-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .cta-stats {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* Live Ticker Small Mobile */
    .live-ticker {
        padding: 1rem;
    }
    
    .ticker-content {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .ticker-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem;
        text-align: left;
    }
    
    .ticker-symbol {
        font-size: 0.8rem;
        min-width: 60px;
    }
    
    .ticker-price {
        font-size: 0.85rem;
        flex: 1;
        text-align: center;
    }
    
    .ticker-change {
        font-size: 0.75rem;
        min-width: 70px;
        text-align: right;
    }
    
    /* Floating Cards Small Mobile */
    .floating-card {
        padding: 1.25rem;
    }
    
    .card-header {
        gap: 0.75rem;
    }
    
    .card-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .card-info h4 {
        font-size: 0.9rem;
    }
    
    .card-info span {
        font-size: 0.8rem;
    }
    
    .card-price {
        font-size: 1.3rem;
    }
    
    .card-change {
        font-size: 0.8rem;
    }
    
    .stat-card.large {
        padding: 1.25rem;
    }
    
    .main-stat .value {
        font-size: 1.75rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-form {
        padding: 1.25rem;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 360px) {
    /* Live Ticker Extra Small Mobile */
    .ticker-item {
        padding: 0.6rem;
    }
    
    .ticker-symbol {
        font-size: 0.75rem;
        min-width: 50px;
    }
    
    .ticker-price {
        font-size: 0.8rem;
    }
    
    .ticker-change {
        font-size: 0.7rem;
        min-width: 60px;
    }
    
    /* Floating Cards Extra Small Mobile */
    .floating-card {
        padding: 1rem;
    }
    
    .card-price {
        font-size: 1.2rem;
    }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
    .gradient-btn:hover,
    .outline-btn:hover,
    .floating-card:hover,
    .stat-card:hover,
    .feature-card:hover,
    .contact-card:hover,
    .visual-card:hover {
        transform: none;
    }
    
    .gradient-btn:active,
    .outline-btn:active {
        transform: scale(0.98);
    }
    
    .floating-card:active {
        transform: scale(0.98) !important;
    }
    
    .ticker-item {
        transition: all 0.2s ease;
    }
    
    .ticker-item:active {
        background: rgba(255, 255, 255, 0.1);
        transform: scale(0.98);
    }
}

/* High-resolution displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-background {
        filter: blur(20px);
    }
}

/* Landscape orientation improvements */
@media (max-width: 768px) and (orientation: landscape) {
    .live-ticker {
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .ticker-label {
        width: auto;
        min-width: 100px;
    }
    
    .ticker-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .floating-cards {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .floating-card {
        flex: 1;
        min-width: calc(50% - 0.5rem);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-card {
        animation: none !important;
    }
    
    .floating-card:hover {
        transition: none;
    }
    
    .ticker-item:active {
        transition: none;
    }
    
    .feature-card::before {
        transition: none;
    }
}