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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, system-ui, sans-serif;
    line-height: 1.5;
    color: #1a202c;
    background-color: #f7fafc;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 40px 0 80px;
    min-height: 100vh;
    position: relative;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 80vh;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 48px;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    width: 200px;
    height: 98px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.8);
    padding: 8px;
    transition: all 0.3s ease;
}

.logo-icon img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(66, 153, 225, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.logo-text h1 {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
    letter-spacing: -0.5px;
}

.logo-text span {
    font-size: 12px;
    color: #718096;
    font-weight: 400;
}

/* Hero Content */
.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    color: #1a202c;
    margin-bottom: 32px;
    letter-spacing: -2px;
}

.hero-content h1 .highlight {
    color: #4299e1;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-primary {
    background: #4299e1;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: #3182ce;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: #4299e1;
    border: 2px solid #4299e1;
    padding: 12px 26px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: #4299e1;
    color: white;
}

/* Aviation Weather Banner */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.aviation-weather-banner {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #06b6d4 100%);
    border-radius: 20px;
    padding: 24px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    color: white;
}

.aviation-weather-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: floatGrid 20s linear infinite;
    pointer-events: none;
}

@keyframes floatGrid {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-30px, -30px); }
}

/* Banner Header */
.banner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.banner-header h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: white;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: #10b981;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

/* City Weather Display */
.city-weather-display {
    position: relative;
    margin-bottom: 20px;
}

.weather-zones {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 2;
}

.weather-zone {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 6px 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: floatZone 6s ease-in-out infinite;
}

.zone-1 { left: 20px; top: 10px; animation-delay: 0s; }
.zone-2 { left: 150px; top: 5px; animation-delay: 2s; }
.zone-3 { right: 30px; top: 15px; animation-delay: 4s; }

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

.zone-data {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.altitude {
    font-size: 10px;
    font-weight: 600;
    color: #fbbf24;
}

.wind {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.8);
}

/* Urban Skyline */
.urban-skyline {
    margin-bottom: 20px;
}

.sensor {
    animation: sensorPulse 3s ease-in-out infinite;
}

@keyframes sensorPulse {
    0%, 100% { r: 3; opacity: 1; }
    50% { r: 5; opacity: 0.7; }
}

.flight-path {
    animation: dashMove 4s linear infinite;
}

@keyframes dashMove {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 20; }
}

.drone {
    animation: droneMove 8s ease-in-out infinite;
}

.drone-1 { animation-delay: 0s; }
.drone-2 { animation-delay: 4s; }

@keyframes droneMove {
    0%, 100% { transform: translate(80px, 35px) scale(1); }
    25% { transform: translate(120px, 30px) scale(1.1); }
    50% { transform: translate(200px, 32px) scale(1); }
    75% { transform: translate(160px, 38px) scale(1.1); }
}

.weather-indicator {
    animation: weatherFloat 5s ease-in-out infinite;
}

@keyframes weatherFloat {
    0%, 100% { transform: translate(50px, 25px); }
    50% { transform: translate(55px, 20px); }
}

/* Data Grid */
.data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.data-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 12px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.data-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.data-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.data-value {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

/* Intelligence Badge */
.intelligence-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    padding: 12px 16px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: badgeGlow 4s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.3); }
    50% { box-shadow: 0 0 30px rgba(16, 185, 129, 0.5); }
}

.badge-text {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.dimensions {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Gap Section */
.gap-section {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.gap-section h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
    letter-spacing: -1px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gap-subtitle {
    font-size: 20px;
    color: #4a5568;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 80px;
}

.gap-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.gap-feature {
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 20px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.gap-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(66, 153, 225, 0.05), rgba(66, 153, 225, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
    z-index: 1;
}

.gap-feature:hover::before {
    opacity: 1;
}

.gap-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(66, 153, 225, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(66, 153, 225, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.gap-feature:hover .feature-icon {
    background: rgba(66, 153, 225, 0.2);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(66, 153, 225, 0.2);
}

.feature-icon svg {
    transition: all 0.3s ease;
}

.gap-feature:hover .feature-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(66, 153, 225, 0.3));
}

.gap-feature h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.gap-feature:hover h3 {
    color: #4299e1;
    transform: translateY(-2px);
}

.gap-feature p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.gap-feature:hover p {
    color: #2d3748;
    transform: translateY(-1px);
}

/* Quote Section */
.quote-section {
    padding: 80px 0;
    background: #f7fafc;
    text-align: center;
}

.quote-section h2 {
    font-size: 40px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 24px;
    font-style: italic;
}

.quote-section p {
    font-size: 18px;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Section Badges */
.section-badge {
    display: inline-block;
    background: #4299e1;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-badge.dark {
    background: #2d3748;
}

/* Solution Section */
.solution-section {
    padding: 100px 0;
    background: white;
}

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

.solution-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.solution-header p {
    font-size: 20px;
    color: #4a5568;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.solution-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(66, 153, 225, 0.05), rgba(66, 153, 225, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
    z-index: 1;
}

.solution-card:hover::before {
    opacity: 1;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(66, 153, 225, 0.15);
    border-color: rgba(66, 153, 225, 0.2);
}

.solution-icon {
    width: 56px;
    height: 56px;
    background: #4299e1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.solution-card:hover .solution-icon {
    background: #3182ce;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(66, 153, 225, 0.3);
}

.solution-icon svg {
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon svg {
    transform: scale(1.1);
}

.solution-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.solution-card:hover h3 {
    color: #4299e1;
    transform: translateY(-2px);
}

.solution-card p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.solution-card:hover p {
    color: #2d3748;
    transform: translateY(-1px);
}

/* Applications Section */
.applications-section {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.applications-section h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 80px;
    letter-spacing: -1px;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.application-card {
    background: white;
    padding: 48px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.application-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(34, 197, 94, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
    z-index: 1;
}

.application-card:hover::before {
    opacity: 1;
}

.application-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.2);
}

.app-icon {
    font-size: 48px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    display: inline-block;
}

.application-card:hover .app-icon {
    transform: scale(1.2);
    filter: drop-shadow(0 4px 12px rgba(34, 197, 94, 0.3));
}

.application-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 16px;
    line-height: 1.3;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.application-card:hover h3 {
    color: #22c55e;
    transform: translateY(-2px);
}

.application-card p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.application-card:hover p {
    color: #2d3748;
    transform: translateY(-1px);
}

/* Technology Section */
.technology-section {
    padding: 100px 0;
    background: white;
}

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

.tech-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.tech-header p {
    font-size: 20px;
    color: #4a5568;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.tech-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(66, 153, 225, 0.02), rgba(66, 153, 225, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
    z-index: 1;
}

.tech-card:hover::before {
    opacity: 1;
}

.tech-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(66, 153, 225, 0.08);
    border-color: rgba(66, 153, 225, 0.15);
}

.tech-icon {
    width: 48px;
    height: 48px;
    background: rgba(66, 153, 225, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.tech-card:hover .tech-icon {
    background: rgba(66, 153, 225, 0.15);
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(66, 153, 225, 0.1);
}

.tech-icon svg {
    transition: all 0.3s ease;
}

.tech-card:hover .tech-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 2px 6px rgba(66, 153, 225, 0.2));
}

.tech-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.tech-card:hover h3 {
    color: #3182ce;
    transform: translateY(-1px);
}

.tech-card p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.tech-card:hover p {
    color: #2d3748;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.tech-tags span {
    background: #edf2f7;
    color: #4a5568;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.tech-card:hover .tech-tags span {
    background: linear-gradient(135deg, #4299e1, #3182ce);
    color: white;
    border-color: rgba(66, 153, 225, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(66, 153, 225, 0.2);
}

.tech-card:hover .tech-tags span:nth-child(1) {
    animation-delay: 0.1s;
}

.tech-card:hover .tech-tags span:nth-child(2) {
    animation-delay: 0.2s;
}

.tech-card:hover .tech-tags span:nth-child(3) {
    animation-delay: 0.3s;
}

/* Interoperable Section */
.interoperable-section {
    padding: 100px 0;
    background: #f7fafc;
    display: flex;
    justify-content: center;
    align-items: center;
}

.interoperable-banner {
    background: linear-gradient(135deg, #7dd3fc 0%, #1e40af 100%);
    border-radius: 24px;
    padding: 60px 80px;
    max-width: 1000px;
    width: 100%;
    text-align: center;
    color: white;
    box-shadow: 0 25px 50px rgba(30, 64, 175, 0.2);
    position: relative;
    overflow: hidden;
}

.interoperable-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(30, 64, 175, 0.1) 100%);
    pointer-events: none;
}

.interoperable-banner h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
}

.interoperable-banner p {
    font-size: 20px;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.stat {
    text-align: center;
    flex: 1;
    padding: 0 20px;
}

.stat:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 500;
    color: white;
}

/* Awards Section */
.awards-section {
    padding: 100px 0;
    background: white;
}

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

.awards-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.awards-header p {
    font-size: 20px;
    color: #4a5568;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.award-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05), rgba(168, 85, 247, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
    z-index: 1;
}

.award-card:hover::before {
    opacity: 1;
}

.award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.15);
    border-color: rgba(168, 85, 247, 0.2);
}

.award-icon {
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.award-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.2);
}

.award-card:hover .award-circle {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
}

.award-year {
    background: #2d3748;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.award-card:hover .award-year {
    background: #a855f7;
    transform: translateY(-2px);
}

.award-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 16px;
    line-height: 1.4;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.award-card:hover h3 {
    color: #a855f7;
    transform: translateY(-2px);
}

.award-card p {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.6;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.award-card:hover p {
    color: #2d3748;
    transform: translateY(-1px);
}

.vision-card {
    background: #f7fafc;
    padding: 48px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.vision-card h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
}

.vision-card p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -1px;
    color: white;
}

.cta-section > p {
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
    color: white;
}

.cta-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto 80px;
}

.cta-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.cta-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

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

.cta-icon svg {
    width: 48px;
    height: 48px;
    fill: white;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.cta-card:hover .cta-icon svg {
    transform: scale(1.1);
    opacity: 1;
}

.cta-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.cta-card p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.6;
    color: white;
}

.demo-btn {
    background: white;
    color: #1e40af;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.demo-btn:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.access-placeholder {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: not-allowed;
    width: 100%;
    color: rgba(255, 255, 255, 0.7);
    opacity: 0.7;
}

.final-cta {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 60px;
}

.future-text {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 32px;
    opacity: 0.9;
    color: white;
    font-style: italic;
}

.final-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.btn-white {
    background: white;
    color: #1e40af;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-placeholder {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: not-allowed;
    color: rgba(255, 255, 255, 0.7);
    opacity: 0.7;
    min-width: 150px;
}

/* Footer */
footer {
    background: #1a202c;
    color: white;
    padding: 80px 0 40px;
}

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

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon img {
    width: 100px;
    height: 49px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.footer-logo-icon img:hover {
    transform: scale(1.02);
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 16px rgba(66, 153, 225, 0.3);
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-logo-text span {
    font-size: 12px;
    color: #a0aec0;
    font-weight: 400;
}

.footer-brand p {
    color: #a0aec0;
    line-height: 1.6;
    font-size: 14px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom span {
    color: #a0aec0;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 48px;
    }
    
    .solution-grid,
    .tech-grid,
    .cta-cards {
        grid-template-columns: 1fr;
    }
    
    .gap-features,
    .applications-grid,
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats {
        flex-direction: column;
        gap: 40px;
    }
    
    .stat:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    
    .interoperable-banner {
        padding: 40px 30px;
        margin: 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 20px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .gap-section h2,
    .solution-header h2,
    .tech-header h2,
    .applications-section h2,
    .interoperable-section h2,
    .awards-header h2,
    .cta-section h2 {
        font-size: 36px;
    }
    
    .quote-section h2 {
        font-size: 28px;
    }
    
    .final-buttons {
        flex-direction: column;
    }
    
    .btn-white,
    .btn-outline {
        width: 100%;
        max-width: 280px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Lovable Badge */
.lovable-badge {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #000;
    color: #fff;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-family: sans-serif;
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.lovable-badge .close-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    padding: 0;
    margin-left: 5px;
}