:root {
    /* Primary Colors - Blue & Green Palette */
    --primary-blue: #0F5DFF;
    --primary-blue-dark: #0042CC;
    --primary-blue-light: #3B7FFF;
    --accent-green: #00C853;
    --accent-green-light: #4EFF9A;
    --accent-teal: #00BCD4;
    --accent-purple: #8b5cf6;
    --accent-violet: #a855f7;
    
    /* Neutral Colors */
    --dark-bg: #0A0E27;
    --dark-surface: #0F1533;
    --dark-card: #151D3F;
    --dark-border: #1E2A52;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B8D4;
    --text-muted: #7A8499;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0F5DFF 0%, #00C853 100%);
    --gradient-blue: linear-gradient(135deg, #0F5DFF 0%, #3B7FFF 100%);
    --gradient-green: linear-gradient(135deg, #00C853 0%, #4EFF9A 100%);
    --gradient-dark: linear-gradient(180deg, #0A0E27 0%, #0F1533 100%);
    --gradient-purple: linear-gradient(135deg, #8b5cf6, #a855f7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ====== CANVAS ====== */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
}

/* ====== NAVIGATION ====== */
.futuristic-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 2rem;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(15, 93, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 0 20px rgba(15, 93, 255, 0.3);
    transition: all 0.3s ease;
}

.brand-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 200, 83, 0.5);
}

.brand-text {
    font-weight: 700;
    font-size: 1.25rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(15, 93, 255, 0.3);
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 200, 83, 0.4);
}

/* ====== HERO SECTION ====== */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center top, rgba(15, 93, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(15, 93, 255, 0.15);
    border: 1px solid rgba(15, 93, 255, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: slideInUp 0.8s ease-out 0.2s both;
    font-size: 0.9rem;
    font-weight: 600;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.word {
    display: inline-block;
    opacity: 0;
    animation: slideInUp 0.8s ease-out forwards;
}

.word:nth-child(1) { animation-delay: 0.4s; }
.word:nth-child(2) { animation-delay: 0.5s; }
.word:nth-child(3) { animation-delay: 0.6s; }
.word:nth-child(4) { animation-delay: 0.7s; }

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    animation: slideInUp 0.8s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    animation: slideInUp 0.8s ease-out 0.8s both;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 10px 30px rgba(15, 93, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 200, 83, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(15, 93, 255, 0.15);
    color: var(--text-primary);
    transform: translateY(-3px);
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    animation: slideInUp 0.8s ease-out 1s both;
}

.stat-card {
    background: rgba(15, 93, 255, 0.1);
    border: 1px solid rgba(15, 93, 255, 0.2);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    background: rgba(0, 200, 83, 0.1);
    border-color: var(--accent-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 200, 83, 0.2);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-green);
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ====== SECTIONS ====== */
.section {
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at bottom, rgba(0, 200, 83, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.section-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ====== OVERVIEW SECTION ====== */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.overview-card {
    background: rgba(15, 93, 255, 0.08);
    border: 1px solid rgba(15, 93, 255, 0.2);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(50px);
}

.overview-card:hover {
    background: rgba(0, 200, 83, 0.12);
    border-color: var(--accent-green);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-green);
}

.overview-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.overview-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.company-info-section {
    background: linear-gradient(135deg, rgba(15, 93, 255, 0.1), rgba(0, 200, 83, 0.1));
    border: 1px solid rgba(15, 93, 255, 0.2);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-value {
    font-size: 1.2rem;
    font-weight: 700;
}

/* ====== TECH SECTION ====== */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tech-card {
    background: rgba(0, 200, 83, 0.08);
    border: 1px solid rgba(0, 200, 83, 0.2);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(50px);
}

.tech-card:hover {
    background: rgba(0, 200, 83, 0.15);
    border-color: var(--accent-green);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 200, 83, 0.2);
}

.tech-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-green);
}

.tech-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.tech-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ====== BUSINESS SECTION ====== */
.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.business-card {
    background: linear-gradient(135deg, rgba(15, 93, 255, 0.08), rgba(0, 200, 83, 0.08));
    border: 1px solid rgba(15, 93, 255, 0.2);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
}

.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.business-card:hover::before {
    transform: scaleX(1);
}

.business-card:hover {
    background: linear-gradient(135deg, rgba(15, 93, 255, 0.15), rgba(0, 200, 83, 0.15));
    border-color: var(--accent-green);
    transform: translateY(-5px);
}

.business-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-green);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.business-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.business-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.business-highlight {
    display: inline-block;
    background: rgba(0, 200, 83, 0.2);
    color: var(--accent-green);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ====== FUNDING SECTION ====== */
.funding-timeline {
    margin-bottom: 4rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(15, 93, 255, 0.08);
    border: 1px solid rgba(15, 93, 255, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    background: rgba(0, 200, 83, 0.08);
    border-color: var(--accent-green);
}

.timeline-marker {
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin-top: 5px;
    box-shadow: 0 0 20px rgba(15, 93, 255, 0.5);
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.timeline-amount {
    color: var(--accent-green);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.capital-usage-section {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.1), rgba(15, 93, 255, 0.1));
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 200, 83, 0.2);
}

.capital-usage-section h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.capital-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.capital-item {
    text-align: center;
}

.capital-icon {
    font-size: 2.5rem;
    color: var(--accent-green);
    margin-bottom: 1rem;
}

.capital-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.capital-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ====== INVESTORS SECTION ====== */
.investors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.investor-card {
    background: rgba(15, 93, 255, 0.1);
    border: 1px solid rgba(15, 93, 255, 0.2);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
}

.investor-card:hover {
    background: rgba(0, 200, 83, 0.15);
    border-color: var(--accent-green);
    transform: translateY(-5px);
}

.investor-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-green);
    margin-bottom: 1rem;
    background: rgba(0, 200, 83, 0.15);
    padding: 1rem;
    border-radius: 10px;
}

.investor-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.investor-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ====== ROADMAP SECTION ====== */
.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.roadmap-phase {
    background: linear-gradient(135deg, rgba(15, 93, 255, 0.1), rgba(0, 200, 83, 0.1));
    border: 1px solid rgba(0, 200, 83, 0.2);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
}

.roadmap-phase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.roadmap-phase:hover {
    border-color: var(--accent-green);
    transform: translateY(-5px);
}

.roadmap-phase:hover::before {
    opacity: 1;
}

.phase-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-green);
    opacity: 0.3;
    margin-bottom: 0.5rem;
}

.roadmap-phase h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.roadmap-phase h4 {
    color: var(--accent-green);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.phase-items {
    list-style: none;
}

.phase-items li {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.phase-items li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
}

/* ====== LEADERSHIP SECTION ====== */
.leadership-card {
    background: linear-gradient(135deg, rgba(15, 93, 255, 0.15), rgba(0, 200, 83, 0.08));
    border: 2px solid rgba(0, 200, 83, 0.3);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.leadership-card:hover {
    border-color: var(--accent-green);
    box-shadow: 0 15px 40px rgba(0, 200, 83, 0.2);
}

.leadership-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.leadership-avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 10px 30px rgba(15, 93, 255, 0.3);
}

.leadership-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.leadership-header p {
    color: var(--accent-green);
    font-weight: 600;
}

.leadership-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.team-highlights {
    background: rgba(15, 93, 255, 0.08);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(15, 93, 255, 0.2);
}

.team-highlights h3 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 200, 83, 0.08);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.team-item:hover {
    background: rgba(0, 200, 83, 0.12);
}

.team-icon {
    font-size: 2rem;
    color: var(--accent-green);
    margin-bottom: 1rem;
}

.team-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.team-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ====== RISK SECTION ====== */
.risk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.risk-card {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.risk-card:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: #ef4444;
    transform: translateY(-5px);
}

.risk-icon {
    font-size: 2.5rem;
    color: #ef4444;
    margin-bottom: 1rem;
}

.risk-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.risk-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ====== CTA SECTION ====== */
.cta-section {
    background: linear-gradient(135deg, rgba(15, 93, 255, 0.15), rgba(0, 200, 83, 0.08));
    border-top: 2px solid rgba(0, 200, 83, 0.2);
    border-bottom: 2px solid rgba(0, 200, 83, 0.2);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.investment-form {
    background: rgba(15, 93, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(15, 93, 255, 0.2);
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(15, 93, 255, 0.3);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    background: rgba(15, 93, 255, 0.15);
    border-color: var(--accent-green);
    box-shadow: 0 0 15px rgba(0, 200, 83, 0.2);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 200, 83, 0.3);
}

.cta-details {
    padding: 2rem;
}

.cta-details h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.details-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail {
    display: flex;
    gap: 1.5rem;
}

.detail-num {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.detail h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.detail p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ====== FOOTER ====== */
.footer {
    background: linear-gradient(180deg, rgba(15, 93, 255, 0.08) 0%, rgba(10, 14, 39, 0.95) 100%);
    border-top: 1px solid rgba(15, 93, 255, 0.2);
    padding: 4rem 2rem 2rem;
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4,
.footer-column h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-column p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent-green);
}

.footer-bottom {
    border-top: 1px solid rgba(15, 93, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ====== ANIMATIONS ====== */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-8px); }
}

@keyframes rotateBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ====== MOBILE RESPONSIVE ====== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu.mobile-active {
        display: flex !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(25px);
        flex-direction: column;
        padding: 2rem;
        border-top: 1px solid rgba(15, 93, 255, 0.3);
        gap: 1.5rem;
        z-index: 999;
    }

    .mobile-menu-toggle {
        background: var(--gradient-primary);
        border: none;
        color: white;
        font-size: 1.2rem;
        cursor: pointer;
        padding: 0.75rem;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle:hover {
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .form-group {
        grid-template-columns: 1fr;
    }

    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .business-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 3rem 1rem;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 1rem;
    }

    .nav-container {
        gap: 1rem;
    }

    .nav-cta {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .hero-section {
        padding: 80px 1rem 2rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .roadmap-phase {
        padding: 1.5rem;
    }

    .phase-number {
        font-size: 2rem;
    }
    .hero-badge{
        margin-top: 1.6rem;
    }
}

@media (max-width: 409px) {
        .nav-cta {
        padding: 0.6rem .7rem;
        font-size: 0.8rem;
    }
}