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

:root {
    --primary-black: #000000;
    --primary-cyan: #00FFFF;
    --gold-accent: #D4AF37;
    --dark-gray: #1a1a1a;
    --medium-gray: #333333;
    --light-gray: #666666;
    --white: #ffffff;
    --font-family: 'Inter', sans-serif;
    --border-radius: 16px;
    --shadow: 0 8px 32px rgba(0, 255, 255, 0.1);
    --glow: 0 0 20px rgba(0, 255, 255, 0.3);
}

body {
    font-family: var(--font-family);
    background-color: var(--primary-black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-orbital {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-cyan);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.orbit-center {
    width: 8px;
    height: 8px;
    background: var(--gold-accent);
    border-radius: 50%;
    box-shadow: var(--glow);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-cyan);
    text-shadow: 0 0 10px var(--primary-cyan);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-cyan);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.orbital-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-1 {
    width: 200px;
    height: 200px;
    animation: rotate 20s linear infinite;
}

.orbit-2 {
    width: 400px;
    height: 400px;
    animation: rotate 30s linear infinite reverse;
}

.orbit-3 {
    width: 600px;
    height: 600px;
    animation: rotate 40s linear infinite;
}

.orbit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-cyan);
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
}

.hexagon-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    background-size: 200px 200px;
    animation: float 6s ease-in-out infinite;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

.hero-title {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
}

.title-line {
    display: block;
}

.title-line.highlight {
    background: linear-gradient(45deg, var(--primary-cyan), var(--gold-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--light-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-cyan);
    color: var(--primary-black);
    border-color: var(--primary-cyan);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-cyan);
    box-shadow: var(--glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--gold-accent);
    border-color: var(--gold-accent);
}

.btn-secondary:hover {
    background: var(--gold-accent);
    color: var(--primary-black);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--medium-gray);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-black);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(45deg, var(--white), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: var(--light-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-black) 100%);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover::before {
    transform: translateX(100%);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--primary-cyan);
}

.service-icon {
    margin-bottom: 24px;
}

.hexagon-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(45deg, var(--primary-cyan), var(--gold-accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hexagon-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary-black);
}

.service-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--white);
}

.service-description {
    color: var(--light-gray);
    line-height: 1.6;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--primary-cyan);
    box-shadow: var(--glow);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-cyan);
    color: var(--primary-black);
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

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

.pricing-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--white);
}

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

.price-currency {
    font-size: 24px;
    color: var(--primary-cyan);
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
}

.price-period {
    font-size: 16px;
    color: var(--light-gray);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-gray);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-note {
    text-align: center;
    color: var(--light-gray);
}

.link-highlight {
    color: var(--primary-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

.link-highlight:hover {
    text-shadow: 0 0 10px var(--primary-cyan);
}

/* About Section */
.about {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mission-statement p {
    margin-bottom: 24px;
    color: var(--light-gray);
    font-size: 18px;
    line-height: 1.7;
}

.founder-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
}

.founder-image {
    margin-bottom: 24px;
}

.image-placeholder {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: linear-gradient(45deg, var(--primary-cyan), var(--gold-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder svg {
    width: 60px;
    height: 60px;
    color: var(--primary-black);
}

.founder-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}

.founder-title {
    color: var(--primary-cyan);
    font-weight: 500;
    margin-bottom: 16px;
}

.founder-description {
    color: var(--light-gray);
    line-height: 1.6;
}

/* Support Section */
.support {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.support::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.support-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: start;
}

.support-form-container {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.support-form .form-group {
    margin-bottom: 24px;
}

.support-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-cyan);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.support-form input,
.support-form select,
.support-form textarea {
    width: 100%;
    padding: 16px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(102, 102, 102, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 16px;
    transition: all 0.3s ease;
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.8);
}

.support-form select {
    cursor: pointer;
}

.support-form textarea {
    resize: vertical;
    min-height: 120px;
}

.support-form textarea::placeholder {
    color: var(--text-light);
}

.support-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.support-card {
    background: rgba(26, 26, 26, 0.6);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(102, 102, 102, 0.2);
    transition: all 0.3s ease;
}

.support-card:hover {
    border-color: var(--primary-cyan);
    box-shadow: 0 8px 32px rgba(0, 255, 255, 0.1);
    transform: translateY(-2px);
}

.support-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--gold-accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.support-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-black);
}

.support-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.support-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.support-link {
    color: var(--primary-cyan);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.support-link:hover {
    color: var(--gold-accent);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-black) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
}

.contact-form {
    display: grid;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--white);
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 16px;
    color: var(--white);
    font-family: var(--font-family);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(45deg, var(--primary-cyan), var(--gold-accent));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-black);
}

.contact-details h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-details p {
    color: var(--light-gray);
}

/* Footer */
.footer {
    background: var(--primary-black);
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    padding: 60px 0 20px;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-tagline {
    color: var(--light-gray);
    font-style: italic;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-section h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 16px;
}

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

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

.footer-section ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-cyan);
}

.footer-social h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-gray);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-cyan);
    color: var(--primary-black);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

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

/* Animations */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .support-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .support-form-container {
        padding: 32px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .orbital-animation {
        width: 400px;
        height: 400px;
    }
    
    .orbit-1 { width: 100px; height: 100px; }
    .orbit-2 { width: 200px; height: 200px; }
    .orbit-3 { width: 300px; height: 300px; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .service-card,
    .pricing-card,
    .founder-card,
    .support-card {
        padding: 24px;
    }
    
    .support-form-container {
        padding: 24px;
    }
    
    .orbital-animation {
        width: 300px;
        height: 300px;
    }
    
    .orbit-1 { width: 80px; height: 80px; }
    .orbit-2 { width: 150px; height: 150px; }
    .orbit-3 { width: 220px; height: 220px; }
}

