/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

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

.nav-logo img {
    height: 24px;
    width: 173px;
}

.experience-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-line {
    width: 1px;
    height: 20px;
    background: #ccc;
}

.badge-text {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #1e40af;
}

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

.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: white;
    font-weight: 500;
}

.language-selector i {
    font-size: 0.8rem;
}

.btn-login, .btn-register {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-login {
    background: transparent;
    color: #333;
    border: 1px solid #ddd;
}

.btn-login:hover {
    background: #f8f9fa;
    border-color: #ccc;
}

.btn-register {
    background: #1e40af;
    color: white;
}

.btn-panel {
    background: #1e40af;
    color: white;
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-panel:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero-content {
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: white !important;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8);
}

.title-line {
    display: block;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.5;
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.btn-primary {
    background: white;
    color: #1e40af;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 0;
    display: flex;
    justify-content: center;
    gap: 4rem;
    z-index: 3;
}

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

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: lowercase;
    color: white !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.floating-icons {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    z-index: 4;
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.floating-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.telegram-icon {
    left: 2rem;
    bottom: 0;
}

.chat-icon {
    right: 2rem;
    bottom: 0;
}

.floating-icon i {
    font-size: 1.2rem;
    color: white;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.chart-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.price-up {
    color: #10b981;
    font-weight: 600;
    font-size: 1.2rem;
}

.chart-placeholder {
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.chart-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(45deg, #10b981, #34d399);
    clip-path: polygon(0 100%, 10% 80%, 20% 70%, 30% 60%, 40% 50%, 50% 40%, 60% 30%, 70% 35%, 80% 25%, 90% 20%, 100% 15%);
}

/* Trading Instruments */
.trading-instruments {
    padding: 80px 0;
    background: #f8fafc;
    position: relative;
    z-index: 10;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.instrument-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instrument-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.instrument-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.instrument-icon i {
    font-size: 1.5rem;
    color: white;
}

.instrument-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.instrument-card p {
    color: #64748b;
    margin-bottom: 1rem;
}

.instrument-card ul {
    list-style: none;
}

.instrument-card li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.instrument-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Trading Platforms */
.trading-platforms {
    padding: 80px 0;
    background: white;
}

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

.platform-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
}

.platform-image {
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
}

.platform-image img {
    border-radius: 10px;
}

.platform-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.platform-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.platform-features {
    list-style: none;
    margin-bottom: 2rem;
}

.platform-features li {
    padding: 0.5rem 0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.platform-features i {
    color: #10b981;
}

.btn-platform {
    background: #1e40af;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-platform:hover {
    background: #1d4ed8;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8fafc;
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.feature-item p {
    color: #64748b;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: white;
}

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

.testimonial-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.stars {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-content p {
    color: #64748b;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-info h4 {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #64748b;
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #f8fafc;
}

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

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card h3 {
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.spread-info {
    margin-bottom: 1.5rem;
}

.spread-value {
    font-size: 3rem;
    font-weight: 700;
    color: #1e40af;
}

.spread-unit {
    font-size: 1.2rem;
    color: #64748b;
    margin-left: 0.5rem;
}

.spread-list {
    list-style: none;
    text-align: left;
}

.spread-list li {
    padding: 0.5rem 0;
    color: #64748b;
    border-bottom: 1px solid #e2e8f0;
}

.spread-list li:last-child {
    border-bottom: none;
}

/* Error Page Styles */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    text-align: center;
}

.error-content h1 {
    font-size: 6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.error-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.error-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.error-btn {
    background: #fbbf24;
    color: #1e40af;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.error-btn:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #94a3b8;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fbbf24;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #1e40af;
}

.social-links img {
    filter: brightness(0) invert(1);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    border: 1px solid #374151;
    border-radius: 5px;
    background: #374151;
    color: white;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9ca3af;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #fbbf24;
}

.btn-contact {
    background: #fbbf24;
    color: #1e40af;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fbbf24;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-buttons {
        gap: 1rem;
    }

    .language-selector {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem 20px;
    }

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

    .hero-visual {
        height: 300px;
    }

    .hero-video-container {
        border-radius: 10px;
    }

    .hero-video-container video {
        border-radius: 10px;
    }

    .hero-stats {
        position: relative;
        background: transparent;
        flex-wrap: wrap;
        gap: 2rem;
        padding: 2rem 0;
    }

    .floating-icons {
        display: none;
    }

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

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

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

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

    .footer-links {
        justify-content: center;
    }
}

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

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

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

    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

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

.instrument-card, .platform-card, .feature-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for charts */
.chart-line {
    animation: chartGrow 2s ease-out;
}

@keyframes chartGrow {
    from {
        height: 0;
    }
    to {
        height: 60%;
    }
}

/* Trading Assets */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.trading-assets {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.asset-block {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid #e2e8f0;
}

.asset-block:hover {
    transform: translateY(-5px);
}

.currency-symbols {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.currency-symbols .euro,
.currency-symbols .dollar {
    font-size: 3rem;
    font-weight: bold;
    color: #1e40af;
}

.gold-icon,
.silver-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.asset-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    text-align: center;
}

/* What Can You Trade Section */
.what-can-trade {
    background: white;
    padding: 80px 0;
    position: relative;
    z-index: 10;
}

.trade-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.trade-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    height: 300px;
}

.trade-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.trade-image {
    height: 60%;
    overflow: hidden;
}

.trade-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trade-content {
    padding: 1.5rem;
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.forex-card .trade-content {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
}

.shares-card .trade-content {
    background: white;
    color: #333;
}

.metals-card .trade-content {
    background: white;
    color: #333;
}

.commodities-card .trade-content {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
}

.trade-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.trade-content p {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.9;
}

/* Tighter Spreads Section */
.tighter-spreads {
    background: white;
    padding: 80px 0;
    position: relative;
    z-index: 10;
}

.spreads-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.spreads-text {
    padding: 2rem;
}

.spreads-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: #333;
}

.spreads-title .title-line {
    display: block;
}

.spreads-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
}

.spreads-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}

.spreads-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #555;
}

.spreads-features .arrow {
    color: #3b82f6;
    font-size: 1.2rem;
    margin-right: 1rem;
    font-weight: bold;
}

.spreads-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.server-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.server-image img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

/* DNA Technology Section */
.dna-technology {
    background: #f8fafc;
    padding: 80px 0;
    position: relative;
    z-index: 10;
}

.dna-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.dna-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.dna-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dna-image img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.dna-text {
    padding: 2rem;
}

.dna-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    line-height: 1.2;
    color: #333;
}

.dna-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dna-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #555;
}

.dna-features .arrow {
    color: #3b82f6;
    font-size: 1.3rem;
    margin-right: 1rem;
    font-weight: bold;
}

/* Advanced Platforms Section */
.advanced-platforms {
    background: #1e293b;
    padding: 80px 0;
    position: relative;
    z-index: 10;
}

.platforms-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.platforms-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: white;
}

.platforms-title .title-line {
    display: block;
}

.platforms-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 0;
}

.platforms-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.charts-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.charts-image img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.charts-image img:hover {
    transform: scale(1.02);
}
