:root {
    --bg-dark: #050a14;
    --bg-card: rgba(255, 255, 255, 0.03);
    --primary-gold: #d4af37;
    --primary-cyan: #00f2ff;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Effects */
.background-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background:
        radial-gradient(circle at 10% 20%, rgba(0, 242, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
    z-index: -1;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-gold));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 10, 20, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.logo .highlight {
    color: var(--primary-cyan);
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button.small {
    padding: 0.5rem 1.2rem;
    border: 1px solid var(--primary-cyan);
    color: var(--primary-cyan);
}

.cta-button.small:hover {
    background: var(--primary-cyan);
    color: var(--bg-dark);
}

.cta-button.primary {
    background: linear-gradient(45deg, var(--primary-cyan), #00c3ff);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.5);
}

.cta-button.secondary {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    margin-left: 1rem;
}

.cta-button.secondary:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

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

/* Hero Image */
.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(0, 242, 255, 0.2);
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(0, 242, 255, 0.3);
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.15) 0%, transparent 70%);
    z-index: 1;
    filter: blur(40px);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Service Images */
.service-visual {
    flex: 1;
    width: 100%;
    /* Removed fixed aspect-ratio to allow natural scaling */
    max-width: 500px;
    /* Prevent it from getting too huge */
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    margin: 0 auto;
    /* Center it if it's smaller than the column */
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-img {
    width: 100%;
    height: auto;
    /* Maintain natural aspect ratio */
    object-fit: contain;
    /* Ensure no cropping happens */
    transition: transform 0.5s ease;
}

.service-visual:hover .service-img {
    transform: scale(1.05);
}

/* Removed old gradient boxes and abstract globe styles */

/* Value Prop */
.value-prop {
    padding: 5rem 10%;
    text-align: center;
}

.value-prop h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: var(--text-muted);
    margin-bottom: 4rem;
}

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

.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 16px;
    transition: transform 0.3s;
}

.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
}

.icon-glow {
    font-size: 2.5rem;
    color: var(--primary-cyan);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 242, 255, 0.4));
}

.glass-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.glass-card p {
    color: var(--text-muted);
}

/* Services */
.services-section {
    padding: 5rem 10%;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.line {
    width: 100px;
    height: 4px;
    background: var(--primary-gold);
}

.service-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
}

.service-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
}

.service-text p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-list i {
    color: var(--primary-cyan);
}

.service-visual {
    flex: 1;
    height: 300px;
    border-radius: 20px;
    position: relative;
}

/* Process */
.process-section {
    padding: 5rem 10%;
    background: rgba(255, 255, 255, 0.02);
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    margin-bottom: -1.5rem;
    z-index: 0;
}

.step h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-cyan);
    z-index: 1;
    position: relative;
}

.step p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Contact */
.contact-section {
    padding: 8rem 10%;
    display: flex;
    justify-content: center;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 4rem;
    border-radius: 24px;
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.glass-panel h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.glass-panel p {
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
}

.contact-item i {
    color: var(--primary-gold);
}

.cta-button.large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    margin: 0.5rem;
}

/* Footer */
footer {
    padding: 3rem 10%;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
}

.disclaimer {
    font-size: 0.8rem;
    margin-top: 1rem;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        padding-top: 8rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-visual {
        height: 400px;
        margin-top: 2rem;
    }

    .service-row,
    .service-row.reverse {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .feature-list li {
        justify-content: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
}