/* Reset & base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Inter', sans-serif;
    background: #020617;
    color: #e2e8f0;
    line-height: 1.5;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 242, 254, 0.2);
}
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00f2fe;
    text-decoration: none;
}
.main-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.main-nav a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}
.main-nav a:hover, .main-nav .current-menu-item a {
    color: #00f2fe;
}

/* Hero section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at 30% 10%, #0a0e27, #020617);
    padding: 4rem 2rem;
}
.hero__title {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero__title span {
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    -webkit-background-clip: text;
    background-clip: text;
}
.hero__subtitle {
    font-size: 1.5rem;
    color: #cbd5e1;
    margin: 1rem 0;
}
.hero__description {
    max-width: 700px;
    margin: 1.5rem auto;
    font-size: 1.1rem;
    color: #94a3b8;
}
.scroll-prompt {
    margin-top: 3rem;
    color: #64748b;
    font-size: 0.8rem;
    letter-spacing: 2px;
}
.scroll-arrow {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

/* Process section (two columns) */
.process {
    padding: 5rem 2rem;
    background: #020617;
}
.process__container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}
.process__steps {
    flex: 1.2;
    position: relative;
}
.step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(15,23,42,0.3);
    backdrop-filter: blur(12px);
    border-radius: 32px;
    border: 1px solid rgba(0,242,254,0.08);
    opacity: 0.6;
    transition: all 0.4s;
}
.step.active {
    opacity: 1;
    background: rgba(30,41,59,0.7);
    border-color: rgba(0,242,254,0.3);
    transform: translateX(12px);
    box-shadow: 0 20px 35px -15px black;
}
.step-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #64748b, #475569);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    min-width: 80px;
}
.step.active .step-number {
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    -webkit-background-clip: text;
    text-shadow: 0 0 15px rgba(0,242,254,0.3);
}
.step-text h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: white;
}
.step-text p {
    color: #cbd5e1;
    line-height: 1.5;
}
.connector-line {
    position: absolute;
    left: 58px;
    top: 80px;
    bottom: 50px;
    width: 3px;
    background: rgba(0,242,254,0.2);
}
.connector-line-fill {
    width: 0;
    height: 100%;
    background: linear-gradient(to bottom, #00f2fe, #4facfe);
    transition: width 0.5s ease;
}
.process__globe {
    flex: 0.9;
    display: flex;
    justify-content: center;
    align-items: center;
}
#globeContainer {
    width: 100%;
    max-width: 450px;
    height: 450px;
    background: radial-gradient(circle at center, #0a0e27, #020617);
    border-radius: 48px;
    overflow: hidden;
    box-shadow: 0 25px 45px -12px black, 0 0 0 1px rgba(0,242,254,0.15);
}

/* CTA section */
.home-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0a0e27, #020617);
    border-top: 1px solid rgba(0,242,254,0.1);
}
.home-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    color: #0f172a;
    padding: 0.8rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(0,242,254,0.4);
}

/* Services page (block content) */
.services-page {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
}

/* Responsive */
@media (max-width: 900px) {
    .hero__title { font-size: 2.5rem; }
    .process__container { flex-direction: column; }
    .connector-line { left: 45px; }
    .step { gap: 1rem; }
    .step-number { font-size: 2.8rem; min-width: 65px; }
    .step-text h3 { font-size: 1.5rem; }
    #globeContainer { height: 350px; }
}