* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Trust & Tech (Blue/Cyan) */
    --primary: #00d4ff;
    --secondary: #7c3aed;
    --primary-dark: #0099cc;
    --trust-blue: #003366;
    --tech-blue: #00509e;

    /* Conversion (Orange/Gold) */
    --conversion: #ff6b35;
    --gold: #ffa500;
    --gold-dark: #ff8c00;

    /* Success & Growth (Green) */
    --success: #10b981;
    --success-dark: #059669;

    /* Premium (Purple) */
    --premium: #7c3aed;
    --premium-dark: #6d28d9;

    /* Backgrounds */
    --dark: #0a0e27;
    --darker: #050814;
    --gray: #64748b;
    --light: #f8fafc;

    /* Gradients */
    --gradient-trust: linear-gradient(135deg, #003366 0%, #00509e 100%);
    --gradient-conversion: linear-gradient(135deg, #ff6b35 0%, #ffa500 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-premium: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--light);
    background-color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--light);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.logo .accent {
    color: var(--gold);
}

.logo-image {
    height: 90px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--light);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-trust);
    opacity: 0.15;
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,.03) 2px, rgba(255,255,255,.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,.03) 2px, rgba(255,255,255,.03) 4px);
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translateY(0); }
    100% { transform: translateY(40px); }
}

.hero-candlestick {
    position: absolute;
    top: 50%;
    right: 0;
    width: 60%;
    height: 80%;
    background-image: url('candlestick-hero.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    opacity: 0.15;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
}

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

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-success);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Buttons - CONVERSION OPTIMIZED */
.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--gradient-conversion);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

/* Benefits Section */
.benefits {
    padding: 8rem 0;
    background: var(--darker);
    position: relative;
}

.datacenter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('datacenter-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
}

.benefits .container {
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.benefit-card {
    background: rgba(10, 14, 39, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: transform 0.3s, border-color 0.3s, background 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: rgba(10, 14, 39, 0.95);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* Live Demo Section */
.demo-section {
    padding: 8rem 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.demo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.demo-text .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.demo-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.demo-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.demo-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.demo-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.demo-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--success);
}

.demo-feature p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.demo-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--gradient-conversion);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.demo-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.demo-note {
    margin-top: 1rem;
    color: var(--gray);
    font-size: 0.9rem;
}

/* Browser Mockup */
.demo-preview {
    position: relative;
}

.browser-mockup {
    background: var(--darker);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.browser-bar {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.browser-dots {
    display: flex;
    gap: 0.5rem;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray);
    opacity: 0.5;
}

.browser-dots span:nth-child(1) {
    background: #ff5f57;
}

.browser-dots span:nth-child(2) {
    background: #ffbd2e;
}

.browser-dots span:nth-child(3) {
    background: var(--success);
}

.browser-url {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray);
}

.lock-icon {
    font-size: 0.8rem;
    color: var(--success);
}

.browser-content {
    padding: 1.5rem;
    background: var(--darker);
}

/* Terminal Mockup */
.terminal-mockup {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    overflow: hidden;
    font-family: 'Courier New', monospace;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.terminal-header {
    background: rgba(16, 185, 129, 0.1);
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--success);
    font-size: 0.9rem;
    font-weight: 600;
}

.terminal-body {
    padding: 1.5rem;
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--success);
}

.terminal-body p {
    margin: 0.25rem 0;
}

.terminal-prompt {
    color: var(--success);
    margin-right: 0.5rem;
}

.terminal-output {
    color: rgba(255, 255, 255, 0.7);
    padding-left: 1rem;
}

.terminal-cursor {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Servers Section */
.servers {
    padding: 8rem 0;
    background: var(--dark);
    position: relative;
}

.servers .datacenter-overlay {
    opacity: 0.3;
}

.servers .container {
    position: relative;
    z-index: 1;
}

.servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.server-card {
    background: rgba(10, 14, 39, 0.85);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    position: relative;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.server-card.featured {
    border-color: var(--gold);
    background: rgba(10, 14, 39, 0.9);
    box-shadow: 0 0 40px rgba(255, 165, 0, 0.3);
    transform: scale(1.05);
}

.server-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.server-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.plan-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.plan-badge.popular {
    background: var(--gradient-conversion);
    color: white;
}

.plan-name {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.plan-price {
    margin-bottom: 2rem;
    text-align: center;
}

.from {
    color: var(--gray);
    font-size: 1rem;
    font-weight: 500;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-success);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-success);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    color: var(--gray);
    font-size: 1rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.plan-features li {
    padding: 0.75rem 0;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.check {
    color: var(--success);
    font-weight: bold;
    font-size: 1.2rem;
}

.no-check {
    color: var(--gray);
    font-weight: bold;
    font-size: 1.2rem;
    opacity: 0.5;
}

.plan-button {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.plan-button:hover {
    background: var(--gradient-conversion);
    border-color: var(--conversion);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.plan-button.primary {
    background: var(--gradient-conversion);
    border: none;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.plan-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: var(--darker);
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-section p {
    color: var(--gray);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

/* Footer */
.footer {
    background: var(--darker);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .logo-image {
    height: 120px;
}

.footer-brand p {
    color: var(--gray);
    margin-top: 1rem;
    max-width: 300px;
}

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

.footer-column h4 {
    margin-bottom: 1.5rem;
    color: var(--gold);
}

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

.footer-column a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
    line-height: 2;
}

.footer-column a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-image {
        height: 50px;
    }

    .footer-brand .logo-image {
        height: 80px;
    }

    .demo-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .demo-text .section-title {
        text-align: center;
    }

    .demo-subtitle {
        text-align: center;
    }

    .demo-features {
        margin-bottom: 2rem;
    }

    .demo-button {
        display: block;
        text-align: center;
    }

    .demo-note {
        text-align: center;
    }

    .terminal-body {
        font-size: 0.7rem;
    }

    .browser-url {
        font-size: 0.75rem;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 14, 39, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s;
        gap: 3rem;
    }

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

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

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-stats {
        gap: 2rem;
    }

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

    .benefits-grid,
    .servers-grid {
        grid-template-columns: 1fr;
    }

    .server-card.featured {
        transform: scale(1);
    }

    .server-card.featured:hover {
        transform: translateY(-10px);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

/* Selection */
::selection {
    background: var(--gold);
    color: var(--dark);
}

/* Enterprise Notice */
.enterprise-notice {
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(109, 40, 217, 0.1) 100%);
    border-radius: 1rem;
    border: 1px solid rgba(124, 58, 237, 0.2);
    text-align: center;
}

.enterprise-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.enterprise-content p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.enterprise-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: var(--gradient-premium);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.enterprise-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

/* Contact Section */
.contact-section {
    padding: 6rem 2rem;
    background: var(--darker);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background: rgba(10, 14, 39, 0.6);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--light);
}

.contact-card p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.contact-link {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--gold);
    transform: translateX(5px);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    background: var(--dark);
    position: relative;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: rgba(10, 14, 39, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 212, 255, 0.3);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: var(--light);
    font-weight: 600;
}

.faq-answer ul {
    list-style: none;
    margin: 1rem 0;
    padding-left: 0;
}

.faq-answer ul li {
    color: var(--light);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.faq-answer ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
}
