/* Variables */
:root {
    --primary-color: #2196F3;
    --secondary-color: #1976D2;
    --accent-color: #64B5F6;
    --text-color: #ffffff;
    --text-light: #b3b3b3;
    --dark-bg: #0a192f;
    --dark-bg-secondary: #112240;
    --white: #ffffff;
    --success-color: #4CAF50;
    --error-color: #F44336;
    --shadow-sm: 0 4px 6px rgba(33, 150, 243, 0.1);
    --shadow-md: 0 8px 24px rgba(33, 150, 243, 0.15);
    --gradient-primary: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-secondary) 100%);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--dark-bg);
    position: relative;
    overflow-x: hidden;
}

/* Common background styles for all sections */
.hero,
.features,
.how-it-works,
.benefits,
.contact,
.footer {
    position: relative;
    overflow: hidden;
    background: var(--dark-bg);
}

.hero::before,
.features::before,
.how-it-works::before,
.benefits::before,
.contact::before,
.footer::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle at center, rgba(56, 189, 248, 0.1) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

.hero::after,
.features::after,
.how-it-works::after,
.benefits::after,
.contact::after,
.footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2338bdf8' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

/* Update section content positioning */
.hero-content,
.features-grid,
.steps,
.benefits-grid,
.contact-form {
    position: relative;
    z-index: 1;
}

/* Update card styles for better visibility */
.feature-card,
.benefit-card,
.step,
.contact-form {
    background: rgba(17, 34, 64, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(56, 189, 248, 0.1);
}

.feature-card:hover,
.benefit-card:hover,
.step:hover {
    background: rgba(17, 34, 64, 0.9);
    border-color: rgba(56, 189, 248, 0.3);
}

/* Update market overview and crypto chart styles */
.market-overview,
.crypto-chart,
.crypto-prices {
    background: rgba(17, 34, 64, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(56, 189, 248, 0.1);
}

.market-stat,
.crypto-price {
    background: rgba(17, 34, 64, 0.5);
    border: 1px solid rgba(56, 189, 248, 0.1);
}

.market-stat:hover,
.crypto-price:hover {
    background: rgba(17, 34, 64, 0.8);
    border-color: rgba(56, 189, 248, 0.3);
}

/* Common Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    margin: 0 auto;
}

.btn i {
    font-size: 18px;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, #38bdf8 0%, #2196F3 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 189, 248, 0.4);
    background: linear-gradient(135deg, #2196F3 0%, #38bdf8 100%);
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-secondary {
    background: rgba(56, 189, 248, 0.1);
    color: #38bdf8;
    border: 2px solid #38bdf8;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: #38bdf8;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.2);
}

.btn-secondary:hover i {
    transform: translateX(4px);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(56, 189, 248, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scroll-down {
    transform: translateY(-100%);
}

.header.scroll-up {
    transform: translateY(0);
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.logo i {
    font-size: 24px;
    color: #38bdf8;
    transition: all 0.3s ease;
}

.logo:hover {
    color: #38bdf8;
}

.logo:hover i {
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #94a3b8;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #38bdf8;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active {
    width: 100%;
    color: #fff;
}

.nav-links a.active::after {
    width: 100%;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .nav {
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }

    .logo i {
        font-size: 20px;
    }

    .nav-links {
        gap: 0.5rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }
}

/* Hero Section Styles */
.hero {
    position: relative;
    padding: 120px 0;
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(33, 150, 243, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(33, 150, 243, 0.15) 0%, transparent 50%);
    animation: backgroundAnimation 15s ease-in-out infinite alternate;
    z-index: 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    max-width: 500px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #64B5F6, #2196F3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-light);
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* Hero Right Side */
.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Hero Features */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: rgba(17, 34, 64, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-feature:hover {
    transform: translateX(-10px);
    background: rgba(17, 34, 64, 0.9);
    border-color: rgba(33, 150, 243, 0.3);
}

.hero-feature i {
    font-size: 1.5rem;
    color: #64B5F6;
}

.hero-feature span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: rgba(17, 34, 64, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-stat:hover {
    transform: translateX(-10px);
    background: rgba(17, 34, 64, 0.9);
    border-color: rgba(33, 150, 243, 0.3);
}

.hero-stat i {
    font-size: 1.5rem;
    color: #64B5F6;
}

.hero-stat .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #64B5F6;
    margin-right: 10px;
}

.hero-stat span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
}

/* Hero Contact */
.hero-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: rgba(17, 34, 64, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-contact-item:hover {
    transform: translateX(-10px);
    background: rgba(17, 34, 64, 0.9);
    border-color: rgba(33, 150, 243, 0.3);
}

.hero-contact-item i {
    font-size: 1.5rem;
    color: #64B5F6;
}

.hero-contact-item span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-right {
        width: 100%;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-feature:hover,
    .hero-stat:hover,
    .hero-contact-item:hover {
        transform: translateY(-5px);
    }
}

/* Market Overview */
.market-overview {
    background: rgba(17, 34, 64, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 1.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(56, 189, 248, 0.1);
}

.market-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.market-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
}

.market-refresh {
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.3s;
}

.market-refresh:hover {
    color: #38bdf8;
}

.market-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.market-stat {
    background: rgba(17, 34, 64, 0.5);
    padding: 1.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(56, 189, 248, 0.1);
    transition: all 0.3s;
}

.market-stat:hover {
    background: rgba(17, 34, 64, 0.8);
    transform: translateY(-2px);
    border-color: rgba(56, 189, 248, 0.3);
}

.stat-label {
    color: #94a3b8;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.stat-value {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Roboto Mono', monospace;
    letter-spacing: 0.5px;
}

.stat-change {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: 'Roboto Mono', monospace;
}

.stat-change.positive {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.stat-change.negative {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* Crypto Chart */
.crypto-chart {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(12px);
    border-radius: 1.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(56, 189, 248, 0.1);
    height: 250px;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.chart-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chart-title img {
    width: 24px;
    height: 24px;
}

.chart-period {
    display: flex;
    gap: 0.5rem;
}

.period-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    color: #94a3b8;
    background: transparent;
    border: 1px solid rgba(56, 189, 248, 0.1);
    cursor: pointer;
    transition: all 0.3s;
}

.period-btn:hover,
.period-btn.active {
    background: rgba(56, 189, 248, 0.1);
    color: #38bdf8;
    border-color: rgba(56, 189, 248, 0.2);
}

.chart-line {
    position: absolute;
    bottom: 3rem;
    left: 1.5rem;
    right: 1.5rem;
    height: 2px;
    background: linear-gradient(90deg, #38bdf8, transparent);
    animation: drawLine 2s ease-out forwards;
}

.chart-dots {
    position: absolute;
    bottom: 3rem;
    left: 1.5rem;
    right: 1.5rem;
    display: flex;
    justify-content: space-between;
}

.dot {
    width: 8px;
    height: 8px;
    background: #38bdf8;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}

/* Crypto Prices */
.crypto-prices {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.crypto-price {
    background: rgba(17, 34, 64, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    padding: 1.25rem;
    border: 1px solid rgba(56, 189, 248, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s;
}

.crypto-price:hover {
    background: rgba(17, 34, 64, 0.9);
    transform: translateY(-2px);
    border-color: rgba(56, 189, 248, 0.3);
}

.crypto-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.75rem;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.crypto-name {
    color: #94a3b8;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.crypto-value {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Roboto Mono', monospace;
    letter-spacing: 0.5px;
}

.crypto-change {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: 'Roboto Mono', monospace;
}

.crypto-change.positive {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.crypto-change.negative {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* Animations */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes drawLine {
    from {
        width: 0;
    }
    to {
        width: calc(100% - 3rem);
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(33, 150, 243, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(33, 150, 243, 0.15) 0%, transparent 50%);
    animation: backgroundAnimation 15s ease-in-out infinite alternate;
    z-index: 0;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: rgba(17, 34, 64, 0.7);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(17, 34, 64, 0.9);
    border-color: rgba(33, 150, 243, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(33, 150, 243, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid rgba(33, 150, 243, 0.2);
}

.feature-icon i {
    font-size: 1.8rem;
    color: #64B5F6;
}

.feature-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-light);
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(33, 150, 243, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(33, 150, 243, 0.15) 0%, transparent 50%);
    animation: backgroundAnimation 15s ease-in-out infinite alternate;
    z-index: 0;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

.steps {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.step {
    background: rgba(17, 34, 64, 0.7);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.step:hover {
    transform: translateY(-10px);
    background: rgba(17, 34, 64, 0.9);
    border-color: rgba(33, 150, 243, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    background: rgba(33, 150, 243, 0.1);
    color: #64B5F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    border: 1px solid rgba(33, 150, 243, 0.2);
}

.step h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.step p {
    color: var(--text-light);
}

/* Hero Steps */
.hero-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(17, 34, 64, 0.7);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero-step:hover {
    background: rgba(17, 34, 64, 0.9);
    transform: translateX(5px);
}

.hero-step i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.hero-step span {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Responsive styles for hero steps */
@media (max-width: 768px) {
    .hero-steps {
        gap: 1rem;
    }

    .hero-step {
        padding: 0.8rem;
    }

    .hero-step i {
        font-size: 1.2rem;
    }

    .hero-step span {
        font-size: 1rem;
    }
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(33, 150, 243, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(33, 150, 243, 0.15) 0%, transparent 50%);
    animation: backgroundAnimation 15s ease-in-out infinite alternate;
    z-index: 0;
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background: rgba(17, 34, 64, 0.7);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(17, 34, 64, 0.9);
    border-color: rgba(33, 150, 243, 0.3);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(33, 150, 243, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid rgba(33, 150, 243, 0.2);
}

.benefit-icon i {
    font-size: 1.8rem;
    color: #64B5F6;
}

.benefit-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.benefit-card p {
    color: var(--text-light);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(33, 150, 243, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(33, 150, 243, 0.15) 0%, transparent 50%);
    animation: backgroundAnimation 15s ease-in-out infinite alternate;
    z-index: 0;
}

.contact h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(17, 34, 64, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 500;
    font-size: 1.1rem;
}

.form-group label i {
    margin-right: 0.5rem;
    color: #64B5F6;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #64B5F6;
    background: rgba(255, 255, 255, 0.1);
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: #64B5F6;
    color: var(--white);
    border: none;
    border-radius: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #2196F3;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    position: relative;
    overflow: hidden;
    background: var(--dark-bg);
    color: var(--text-color);
    padding: 4rem 2rem 2rem;
}

.footer::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle at center, rgba(56, 189, 248, 0.1) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

.footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2338bdf8' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
}

.footer-section h4 i {
    color: #38bdf8;
}

.footer-section p {
    color: var(--text-light);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-link:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(56, 189, 248, 0.1);
    color: #94a3b8;
    position: relative;
    z-index: 1;
}

/* Animations */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .features h2,
    .how-it-works h2,
    .benefits h2,
    .contact h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* SVG Icons */
.logo-icon,
.button-icon,
.stat-icon,
.feature-icon,
.footer-icon {
    fill: currentColor;
    transition: transform 0.3s ease;
}

.logo-icon {
    margin-right: 8px;
    color: var(--primary-color);
}

.button-icon {
    margin-right: 8px;
    vertical-align: middle;
}

.stat-icon {
    color: var(--primary-color);
    margin-bottom: 8px;
}

.feature-icon {
    color: var(--primary-color);
    margin-bottom: 16px;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.footer-icon {
    color: var(--primary-color);
    margin-right: 8px;
    vertical-align: middle;
}

/* Hero Pattern */
.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 1;
}

/* Images */
.feature-preview,
.dashboard-preview {
    display: none;
}

.feature-card:hover .feature-preview {
    transform: scale(1.05);
    filter: brightness(1);
}

/* Page Hero */
.page-hero {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/pattern.png');
    opacity: 0.1;
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
    0% { background-position: 0 0; }
    100% { background-position: 100% 100%; }
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* Steps Detailed */
.steps-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.step-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.step-content ul {
    list-style: none;
    display: inline-block;
    text-align: left;
}

/* Benefits Detailed */
.benefits-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.benefit-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.benefit-content ul {
    list-style: none;
    display: inline-block;
    text-align: left;
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.faq-icon {
    width: 50px;
    height: 50px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/* Support Hours */
.support-hours {
    padding: 80px 20px;
    text-align: center;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.hours-item {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.hours-icon {
    width: 50px;
    height: 50px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/* Social Section */
.social-section {
    padding: 80px 20px;
    text-align: center;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.social-item {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

/* Responsive Design */
@media (max-width: 768px) {
    .comparison-grid,
    .testimonials-grid,
    .stats-grid,
    .contact-grid,
    .faq-grid,
    .hours-grid {
        grid-template-columns: 1fr;
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .social-grid {
        grid-template-columns: 1fr;
    }
}

/* Animated Icons */
.crypto-icons {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.crypto-icons .icon {
    width: 50px;
    height: 50px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.crypto-icons .icon:nth-child(2) { animation-delay: 0.5s; }
.crypto-icons .icon:nth-child(3) { animation-delay: 1s; }

.crypto-icons .icon:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Features Detailed */
.features-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.feature-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.feature-content ul {
    list-style: none;
    display: inline-block;
    text-align: left;
}

/* Comparison Section */
.comparison-section {
    padding: 80px 20px;
    text-align: center;
    background: var(--light-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--text-color);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.comparison-item {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.comparison-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.comparison-item h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.comparison-item ul {
    list-style: none;
    display: inline-block;
    text-align: left;
    margin: 0 auto;
}

.comparison-item ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comparison-item ul li i {
    color: var(--success-color);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 20px;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

/* Stats Section */
.stats-section {
    padding: 80px 20px;
    background: var(--light-bg);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-block {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-aos] {
    animation: fadeIn 0.6s ease forwards;
}

/* Setup Guide Section */
.setup-guide {
    padding: 80px 20px;
    text-align: center;
    background: var(--light-bg);
}

.setup-guide h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--text-color);
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.guide-item {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.guide-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.guide-icon {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.guide-icon i {
    font-size: 24px;
    color: var(--accent-color);
}

.guide-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.guide-item p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Support Section */
.support-section {
    padding: 80px 20px;
    text-align: center;
    background: var(--white);
}

.support-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--text-color);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.support-item {
    background: var(--light-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.support-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.support-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.support-icon i {
    font-size: 24px;
    color: var(--accent-color);
}

.support-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.support-item p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .guide-grid,
    .support-grid {
        grid-template-columns: 1fr;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

/* Feature Comparison */
.feature-comparison {
    padding: 80px 20px;
    text-align: center;
    background: var(--light-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-comparison h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--text-color);
}

.feature-comparison .comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.feature-comparison .comparison-item {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.feature-comparison .comparison-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-comparison .comparison-item h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.feature-comparison .comparison-item ul {
    list-style: none;
    display: inline-block;
    text-align: left;
    margin: 0 auto;
}

.feature-comparison .comparison-item ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-comparison .comparison-item ul li i {
    color: var(--success-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .feature-comparison .comparison-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-align: center;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Update other section headers */
.features h2,
.how-it-works h2,
.benefits h2,
.contact h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.features p,
.how-it-works p,
.benefits p,
.contact p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem;
} 