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

body {
    font-family: 'Inter', sans-serif;
    background-color: #0A1224;
    color: #E8D9C4;
    line-height: 1.6;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

code {
    font-family: 'JetBrains Mono', monospace;
    background-color: #343A40;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #2EE6D6, #FF7A1A);
    color: #0A1224;
    border: 2px solid transparent;
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(46, 230, 214, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #2EE6D6;
    border: 2px solid #2EE6D6;
}

.btn-secondary:hover {
    background-color: #2EE6D6;
    color: #0A1224;
    box-shadow: 0 8px 25px rgba(46, 230, 214, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: #E8D9C4;
    border: 2px solid #343A40;
}

.btn-outline:hover {
    border-color: #2EE6D6;
    color: #2EE6D6;
}

/* Header */
.header {
    background-color: rgba(10, 18, 36, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(46, 230, 214, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
}

.logo {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #E8D9C4;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0A1224 0%, #1a2642 100%);
    overflow-x: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    background: linear-gradient(135deg, #2EE6D6, #FF7A1A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #E8D9C4;
    opacity: 0.9;
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.network-diagram {
    position: relative;
    width: 300px;
    height: 300px;
}

.node {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2EE6D6, #FF7A1A);
    box-shadow: 0 8px 25px rgba(46, 230, 214, 0.3);
}

.node.primary {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
}

.node.secondary {
    width: 50px;
    height: 50px;
}

.node-2 {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.node-3 {
    bottom: 20px;
    left: 20px;
}

.node:last-child {
    bottom: 20px;
    right: 20px;
}

.connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, #2EE6D6, #FF7A1A);
    opacity: 0.6;
}

.connection {
    top: 50%;
    left: 25%;
    width: 50%;
    transform: translateY(-50%);
}

.connection-2 {
    top: 30%;
    left: 40%;
    width: 30%;
    transform: rotate(45deg);
}

.connection-3 {
    top: 65%;
    left: 40%;
    width: 30%;
    transform: rotate(-45deg);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    background: linear-gradient(135deg, #2EE6D6, #FF7A1A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* About Section */
.about {
    background-color: #0f1a2e;
}

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

.about-card {
    background-color: #343A40;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(46, 230, 214, 0.1);
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(46, 230, 214, 0.1), rgba(255, 122, 26, 0.1));
    border-radius: 12px;
    margin-bottom: 24px;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    background-color: #343A40;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(46, 230, 214, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(46, 230, 214, 0.15);
}

.feature-icon {
    margin-bottom: 20px;
}

/* How It Works Section */
.how-it-works {
    background-color: #0f1a2e;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    padding: 32px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2EE6D6, #FF7A1A);
    color: #0A1224;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 24px;
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    background-color: #343A40;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(46, 230, 214, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
}

.product-card.featured {
    border: 2px solid #2EE6D6;
    box-shadow: 0 12px 35px rgba(46, 230, 214, 0.2);
}

.product-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2EE6D6, #FF7A1A);
    color: #0A1224;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.product-header {
    margin-bottom: 32px;
}

.product-header h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 1.5rem;
    color: #2EE6D6;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #E8D9C4;
}

.period {
    font-size: 1rem;
    color: rgba(232, 217, 196, 0.7);
}

.product-features {
    margin-bottom: 32px;
}

.product-features ul {
    list-style: none;
    text-align: left;
}

.product-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 24px;
}

.product-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2EE6D6;
    font-weight: bold;
}

/* Benefits Section */
.benefits {
    background-color: #0f1a2e;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.benefit-item {
    text-align: center;
    padding: 32px;
}

.benefit-stat {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2EE6D6, #FF7A1A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.benefit-desc {
    font-size: 1.2rem;
    color: #E8D9C4;
}

/* Use Cases Section */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.use-case-card {
    background-color: #343A40;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(46, 230, 214, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(46, 230, 214, 0.15);
}

.use-case-image {
    margin-bottom: 20px;
}

.use-case-image img {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.use-case-icon {
    margin-bottom: 24px;
}

/* Trust Section */
.trust {
    background-color: #0f1a2e;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.trust-item {
    padding: 24px;
}

.trust-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2EE6D6, #FF7A1A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.trust-label {
    font-size: 1.1rem;
    color: #E8D9C4;
}

/* Contact Section */
.contact {
    background-color: #0f1a2e;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
}

.contact-image {
    width: 100%;
    margin-bottom: 16px;
}

.contact-image img {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.contact-item-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(46, 230, 214, 0.1), rgba(255, 122, 26, 0.1));
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-details h4 {
    color: #2EE6D6;
    margin-bottom: 8px;
}

.contact-details p {
    color: #E8D9C4;
    margin: 0;
}

.contact-form {
    background-color: #343A40;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(46, 230, 214, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.form-placeholder {
    text-align: center;
}

.form-placeholder h3 {
    color: #2EE6D6;
    margin-bottom: 16px;
}

.form-placeholder p {
    margin-bottom: 32px;
    opacity: 0.8;
}

/* Footer */
.footer {
    background-color: #0A1224;
    border-top: 1px solid rgba(46, 230, 214, 0.1);
    padding: 60px 0 20px;
    overflow-x: hidden;
}

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

.footer-brand {
    max-width: 280px;
}

.footer-brand .logo-container {
    margin-bottom: 16px;
    padding: 0;
}

.footer-brand p {
    opacity: 0.7;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.footer-column h4 {
    color: #2EE6D6;
    margin-bottom: 16px;
}

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

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #E8D9C4;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
    color: #2EE6D6;
}

.footer-bottom {
    border-top: 1px solid rgba(46, 230, 214, 0.1);
    padding-top: 20px;
    margin-top: 40px;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal p {
    opacity: 0.5;
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.legal-links a {
    color: #E8D9C4;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    font-size: 0.9rem;
}

.legal-links a:hover {
    opacity: 1;
    color: #2EE6D6;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 24px;
    }
}

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-visual {
        order: -1;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 24px;
    }
    
    .footer-legal {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .legal-links {
        justify-content: center;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero {
        padding: 100px 0 60px;
    }
    
    .container {
        padding: 0 20px;
    }

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

    .network-diagram {
        width: 250px;
        height: 250px;
    }

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

    .steps-container {
        grid-template-columns: 1fr;
    }

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

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    section {
        padding: 60px 0;
    }
    
    .footer-legal {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .legal-links {
        justify-content: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    body {
        overflow-x: hidden;
    }

    h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}