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

:root {
    /* Primary Colors */
    --deep-trust-blue: #0E4A78;
    --core-blue: #1A75CF;
    --bright-tech-blue: #27A5FF;
    
    /* Secondary Colors */
    --sky-gradient-light: #E9F6FB;
    --cloud-blue: #C5E6FF;
    --deep-navy: #052A45;
    
    /* Neutral Colors */
    --graphite: #2F2F2F;
    --soft-black: #1A1A1A;
    --white: #FFFFFF;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
}

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

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

/* Header */
.header {
    background: rgba(5, 13, 24, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(39, 165, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--bright-tech-blue), var(--core-blue));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--bright-tech-blue);
}

.cta-nav {
    background: linear-gradient(135deg, var(--bright-tech-blue), var(--core-blue));
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(39, 165, 255, 0.3);
}

.cta-nav:hover {
    box-shadow: 0 0 30px rgba(39, 165, 255, 0.5);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #050d18 0%, #0a1628 50%, #0E4A78 100%);
    overflow: hidden;
    padding: 6rem 0 4rem;
}

.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(39, 165, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(26, 117, 207, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(39, 165, 255, 0.08) 0%, transparent 50%);
}

#heroCanvas {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.6;
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border: 1px solid rgba(39, 165, 255, 0.3);
    animation: shapeFloat 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 5%;
    left: 5%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    left: 10%;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation-delay: 3s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    top: 10%;
    right: 8%;
    border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%;
    animation-delay: 6s;
}

.shape-4 {
    width: 180px;
    height: 180px;
    bottom: 15%;
    right: 15%;
    border-radius: 70% 30% 50% 50% / 30% 70% 30% 70%;
    animation-delay: 9s;
}

.shape-5 {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 3%;
    border-radius: 50% 50% 30% 70% / 50% 70% 30% 50%;
    animation-delay: 2s;
}

.shape-6 {
    width: 220px;
    height: 220px;
    bottom: 20%;
    left: 20%;
    border-radius: 30% 70% 50% 50% / 70% 30% 70% 30%;
    animation-delay: 5s;
}

@keyframes shapeFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(20px, -30px) rotate(90deg) scale(1.1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-10px, 20px) rotate(180deg) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translate(30px, 10px) rotate(270deg) scale(1.05);
        opacity: 0.35;
    }
}

/* Glow Orbs */
.glow-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbPulse 8s infinite ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(39, 165, 255, 0.4);
    top: -10%;
    left: 20%;
    animation-delay: 0s;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: rgba(26, 117, 207, 0.35);
    bottom: -5%;
    right: 10%;
    animation-delay: 3s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(14, 74, 120, 0.4);
    top: 50%;
    left: -5%;
    animation-delay: 6s;
}

@keyframes orbPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.8;
    }
}

/* Side Cards */
.hero-side-left,
.hero-side-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-side-left {
    left: 3%;
}

.hero-side-right {
    right: 3%;
}

.side-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(39, 165, 255, 0.2);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    animation: cardSlide 0.8s ease-out both;
}

.hero-side-left .card-1 { animation-delay: 0.3s; }
.hero-side-left .card-2 { animation-delay: 0.5s; }
.hero-side-left .card-3 { animation-delay: 0.7s; }
.hero-side-right .card-4 { animation-delay: 0.4s; }
.hero-side-right .card-5 { animation-delay: 0.6s; }
.hero-side-right .card-6 { animation-delay: 0.8s; }

.hero-side-left .side-card {
    transform: translateX(-100px);
}

.hero-side-right .side-card {
    transform: translateX(100px);
}

@keyframes cardSlide {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.side-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(39, 165, 255, 0.5);
    transform: translateX(10px) scale(1.02);
}

.hero-side-right .side-card:hover {
    transform: translateX(-10px) scale(1.02);
}

.card-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(39, 165, 255, 0.2), transparent);
    animation: cardGlowMove 3s infinite;
}

@keyframes cardGlowMove {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--bright-tech-blue), var(--core-blue));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(39, 165, 255, 0.1);
    border: 1px solid rgba(39, 165, 255, 0.3);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--bright-tech-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--bright-tech-blue);
    border-radius: 50%;
    animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(39, 165, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(39, 165, 255, 0);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    align-items: center;
}

.title-line {
    font-size: 4.5rem;
    display: block;
    color: var(--white);
}

.title-line-1 {
    animation: titleReveal 1s ease-out both;
}

.title-line-2 {
    background: linear-gradient(135deg, var(--bright-tech-blue), #5dd5ff, var(--core-blue));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleReveal 1s ease-out 0.2s both, shimmer 3s linear infinite;
}

.title-line-3 {
    animation: titleReveal 1s ease-out 0.4s both;
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1s ease-out 0.6s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 0.8s both;
}

.btn-glow {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(39, 165, 255, 0.4);
}

.btn-glow:hover {
    box-shadow: 0 0 50px rgba(39, 165, 255, 0.6);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: btnShine 3s infinite;
}

@keyframes btnShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-ghost svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.btn-ghost:hover svg {
    transform: translateX(5px);
}

.hero-stats {
    display: flex;
    gap: 0;
    padding: 2rem 3rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeIn 1s ease-out 1s both;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 0 1.5rem;
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.3rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
}

.stat-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--bright-tech-blue), var(--core-blue));
    border-radius: 3px;
    animation: fillBar 2s ease-out 1.2s both;
}

@keyframes fillBar {
    from { width: 0 !important; }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--bright-tech-blue), var(--core-blue));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(26, 117, 207, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26, 117, 207, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--core-blue);
    border: 2px solid var(--core-blue);
}

.btn-secondary:hover {
    background: var(--core-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--deep-trust-blue);
    margin-bottom: 1rem;
}

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

.section-description {
    font-size: 1.1rem;
    color: var(--graphite);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.section-description.centered {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Section Common Styles */
.section-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.bg-glow-1 {
    width: 500px;
    height: 500px;
    background: rgba(39, 165, 255, 0.15);
    top: -200px;
    left: -100px;
}

.bg-glow-2 {
    width: 400px;
    height: 400px;
    background: rgba(26, 117, 207, 0.1);
    bottom: -150px;
    right: -100px;
}

.bg-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(39, 165, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(39, 165, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* About Section */
.about {
    position: relative;
    background: linear-gradient(180deg, #0a1628 0%, #0d1f35 100%);
    padding: 6rem 0;
}

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

.about-text {
    padding-right: 2rem;
}

.about .section-title {
    color: var(--white);
}

.about .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.about-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-card {
    position: relative;
    width: 350px;
    height: 350px;
}

.visual-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid rgba(39, 165, 255, 0.3);
}

.ring-1 {
    width: 100%;
    height: 100%;
    animation: ringRotate 20s linear infinite;
}

.ring-2 {
    width: 75%;
    height: 75%;
    animation: ringRotate 15s linear infinite reverse;
}

.ring-3 {
    width: 50%;
    height: 50%;
    animation: ringRotate 10s linear infinite;
}

@keyframes ringRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.visual-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--bright-tech-blue), var(--core-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(39, 165, 255, 0.5);
    animation: centerPulse 3s ease-in-out infinite;
}

.visual-center span {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

@keyframes centerPulse {
    0%, 100% { box-shadow: 0 0 60px rgba(39, 165, 255, 0.5); }
    50% { box-shadow: 0 0 100px rgba(39, 165, 255, 0.8); }
}

.visual-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.v-node {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--bright-tech-blue);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(39, 165, 255, 0.8);
}

.v-node-1 { top: 0; left: 50%; transform: translateX(-50%); }
.v-node-2 { top: 50%; right: 0; transform: translateY(-50%); }
.v-node-3 { bottom: 0; left: 50%; transform: translateX(-50%); }
.v-node-4 { top: 50%; left: 0; transform: translateY(-50%); }

/* How It Works Section */
.how-it-works {
    position: relative;
    background: linear-gradient(180deg, #0d1f35 0%, #0a1628 100%);
    padding: 6rem 0;
}

.how-it-works .section-title {
    color: var(--white);
}

.how-it-works .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.bg-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.h-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(39, 165, 255, 0.2), transparent);
    width: 100%;
}

.h-line-1 { top: 20%; }
.h-line-2 { top: 50%; }
.h-line-3 { top: 80%; }

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.step {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(39, 165, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.step-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(39, 165, 255, 0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step:hover .step-glow {
    opacity: 1;
}

.step:hover {
    transform: translateY(-10px);
    border-color: rgba(39, 165, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(39, 165, 255, 0.2);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--bright-tech-blue), var(--core-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.step-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.step-line {
    position: absolute;
    top: 50%;
    right: -2.5rem;
    width: 2.5rem;
    height: 2px;
    background: linear-gradient(90deg, var(--bright-tech-blue), transparent);
}

.step:last-child .step-line {
    display: none;
}

/* Features Section */
.features {
    position: relative;
    background: linear-gradient(180deg, #0a1628 0%, #0d1f35 100%);
    padding: 6rem 0;
}

.features .section-title {
    color: var(--white);
}

.features .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(39, 165, 255, 0.15);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.feature-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top center, rgba(39, 165, 255, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover .feature-glow {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(39, 165, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(39, 165, 255, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(39, 165, 255, 0.2), rgba(26, 117, 207, 0.2));
    border: 1px solid rgba(39, 165, 255, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.feature-icon svg {
    width: 36px;
    height: 36px;
    color: var(--bright-tech-blue);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--bright-tech-blue), var(--core-blue));
    box-shadow: 0 0 30px rgba(39, 165, 255, 0.5);
}

.feature-card:hover .feature-icon svg {
    color: var(--white);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.feature-description {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 0.95rem;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.feature-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(39, 165, 255, 0.4);
    border-radius: 10px;
    color: var(--bright-tech-blue);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.feature-btn:hover {
    background: linear-gradient(135deg, var(--bright-tech-blue), var(--core-blue));
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 0 20px rgba(39, 165, 255, 0.4);
}

/* Technology Section */
.technology {
    position: relative;
    background: linear-gradient(180deg, #0d1f35 0%, #061525 100%);
    color: var(--white);
    padding: 6rem 0;
    overflow: hidden;
}

#techCanvas {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.3;
}

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

.tech-left .section-title {
    color: var(--white);
}

.tech-left .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.tech-list {
    margin-top: 2rem;
}

.tech-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(39, 165, 255, 0.1);
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(39, 165, 255, 0.3);
    transform: translateX(10px);
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(39, 165, 255, 0.2), rgba(26, 117, 207, 0.2));
    border: 1px solid rgba(39, 165, 255, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.tech-icon svg {
    width: 28px;
    height: 28px;
    color: var(--bright-tech-blue);
}

.tech-item:hover .tech-icon {
    background: linear-gradient(135deg, var(--bright-tech-blue), var(--core-blue));
    box-shadow: 0 0 25px rgba(39, 165, 255, 0.5);
}

.tech-item:hover .tech-icon svg {
    color: var(--white);
}

.tech-info h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.tech-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.tech-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tech-core {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--bright-tech-blue), var(--core-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(39, 165, 255, 0.6);
    animation: corePulse 3s ease-in-out infinite;
}

.tech-core span {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

@keyframes corePulse {
    0%, 100% { box-shadow: 0 0 60px rgba(39, 165, 255, 0.6); transform: scale(1); }
    50% { box-shadow: 0 0 100px rgba(39, 165, 255, 0.9); transform: scale(1.05); }
}

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

.orbit-1 {
    width: 200px;
    height: 200px;
    margin-left: -100px;
    margin-top: -100px;
    animation: orbitRotate 20s linear infinite;
}

.orbit-2 {
    width: 300px;
    height: 300px;
    margin-left: -150px;
    margin-top: -150px;
    animation: orbitRotate 30s linear infinite reverse;
}

.orbit-3 {
    width: 380px;
    height: 380px;
    margin-left: -190px;
    margin-top: -190px;
    animation: orbitRotate 25s linear infinite;
}

@keyframes orbitRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.orbit-node {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(39, 165, 255, 0.2);
    border: 1px solid rgba(39, 165, 255, 0.4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.orbit-node span {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
}

.node-1 { top: -25px; left: 50%; margin-left: -25px; }
.node-2 { top: 50%; right: -25px; margin-top: -25px; }
.node-3 { bottom: -25px; left: 50%; margin-left: -25px; }
.node-4 { top: 50%; left: -25px; margin-top: -25px; }

/* Results Section */
.results {
    position: relative;
    background: linear-gradient(180deg, #061525 0%, #0a1628 100%);
    padding: 6rem 0;
}

.results .section-title {
    color: var(--white);
}

.results .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.result-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(39, 165, 255, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.result-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top center, rgba(39, 165, 255, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.result-card:hover .result-glow {
    opacity: 1;
}

.result-card:hover {
    transform: translateY(-10px);
    border-color: rgba(39, 165, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(39, 165, 255, 0.15);
}

.result-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(39, 165, 255, 0.2), rgba(26, 117, 207, 0.2));
    border: 1px solid rgba(39, 165, 255, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.result-icon svg {
    width: 28px;
    height: 28px;
    color: var(--bright-tech-blue);
}

.result-card:hover .result-icon {
    background: linear-gradient(135deg, var(--bright-tech-blue), var(--core-blue));
    box-shadow: 0 0 25px rgba(39, 165, 255, 0.5);
}

.result-card:hover .result-icon svg {
    color: var(--white);
}

.result-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--bright-tech-blue), #5dd5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.result-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.result-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--bright-tech-blue), var(--core-blue));
    border-radius: 4px;
    animation: resultFill 2s ease-out;
}

@keyframes resultFill {
    from { width: 0 !important; }
}

.results-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Contact Section */
.contact {
    position: relative;
    background: linear-gradient(180deg, #0a1628 0%, #0d1f35 100%);
    padding: 6rem 0;
}

.contact .section-title {
    color: var(--white);
}

.contact .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.contact-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.c-shape {
    position: absolute;
    border: 1px solid rgba(39, 165, 255, 0.2);
    border-radius: 50%;
}

.c-shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation: cShapeFloat 15s ease-in-out infinite;
}

.c-shape-2 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    right: 5%;
    animation: cShapeFloat 18s ease-in-out infinite reverse;
}

@keyframes cShapeFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -20px) rotate(180deg); }
}

.contact-info-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

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

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(39, 165, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(39, 165, 255, 0.3);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(39, 165, 255, 0.2), rgba(26, 117, 207, 0.2));
    border: 1px solid rgba(39, 165, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--bright-tech-blue);
}

.contact-info-item:hover .contact-icon {
    background: linear-gradient(135deg, var(--bright-tech-blue), var(--core-blue));
    box-shadow: 0 0 20px rgba(39, 165, 255, 0.4);
}

.contact-info-item:hover .contact-icon svg {
    color: var(--white);
}

.contact-info-content h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-info-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.contact-info-content a {
    color: var(--bright-tech-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: var(--white);
    text-decoration: underline;
}

.contact-content {
    max-width: 100%;
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(39, 165, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(39, 165, 255, 0.2);
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bright-tech-blue);
    box-shadow: 0 0 20px rgba(39, 165, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: #030810;
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(39, 165, 255, 0.3), transparent);
}

.footer-top {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    display: block;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
}

.footer-logo:hover .footer-logo-img {
    opacity: 1;
}

.footer-logo:hover .footer-logo-text {
    color: var(--bright-tech-blue);
}

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

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--bright-tech-blue);
    padding-left: 5px;
}

.footer-address {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 0.5rem;
}

.footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: block;
}

.social-link:hover {
    background: rgba(39, 165, 255, 0.2);
    border-color: rgba(39, 165, 255, 0.4);
    color: var(--bright-tech-blue);
    transform: translateY(-2px);
}

.footer-tagline {
    margin-top: 1.5rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .hero-side-left,
    .hero-side-right {
        display: none;
    }
    
    .title-line {
        font-size: 3.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 0;
        padding: 1.5rem 2rem;
    }
    
    .stat-divider {
        width: 100%;
        height: 1px;
        margin: 1rem 0;
    }
    
    .stat-item {
        padding: 1rem 0;
    }
    
    .about-content,
    .technology-content {
        grid-template-columns: 1fr;
    }
    
    .about-visual {
        order: -1;
        height: 300px;
    }
    
    .tech-visual {
        height: 350px;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .step-line {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .nav {
        gap: 0.8rem;
        font-size: 0.75rem;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 0.7rem;
    }
    
    .hero {
        min-height: auto;
        padding: 5rem 0 3rem;
    }
    
    .title-line {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .floating-shapes .shape {
        display: none;
    }
    
    .glow-orbs .orb {
        width: 200px !important;
        height: 200px !important;
    }
    
    .visual-card {
        width: 250px;
        height: 250px;
    }
    
    .visual-center {
        width: 80px;
        height: 80px;
    }
    
    .visual-center span {
        font-size: 1.8rem;
    }
    
    .tech-visual {
        height: 300px;
    }
    
    .tech-core {
        width: 70px;
        height: 70px;
    }
    
    .tech-core span {
        font-size: 1.2rem;
    }
    
    .orbit-1 {
        width: 150px;
        height: 150px;
        margin-left: -75px;
        margin-top: -75px;
    }
    
    .orbit-2 {
        width: 220px;
        height: 220px;
        margin-left: -110px;
        margin-top: -110px;
    }
    
    .orbit-3 {
        width: 280px;
        height: 280px;
        margin-left: -140px;
        margin-top: -140px;
    }
    
    .orbit-node {
        width: 40px;
        height: 40px;
        font-size: 0.65rem;
    }
    
    .node-1, .node-3 { margin-left: -20px; }
    .node-2, .node-4 { margin-top: -20px; }
    .node-1 { top: -20px; }
    .node-2 { right: -20px; }
    .node-3 { bottom: -20px; }
    .node-4 { left: -20px; }
}

