/* IASER Website Styles */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e4e6ea;
    background: #0a0e1a;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(100, 150, 255, 0.1);
    z-index: 1000;
    padding: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #6496ff, #9c6aff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: #e4e6ea;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #6496ff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #6496ff, #9c6aff);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #e4e6ea;
    margin: 3px 0;
    transition: 0.3s;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(100, 150, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(156, 106, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0a0e1a 0%, #0f1419 50%, #0a0e1a 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(100,150,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #6496ff, #9c6aff, #ff6b9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    color: #a8b3c8;
    display: block;
    margin-top: 10px;
}

.hero-description {
    font-size: 1.2rem;
    color: #a8b3c8;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6496ff, #9c6aff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: #a8b3c8;
    margin-top: 5px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #6496ff, #9c6aff);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(100, 150, 255, 0.3);
}

.btn-secondary {
    background: rgba(100, 150, 255, 0.1);
    border: 1px solid rgba(100, 150, 255, 0.3);
    color: #6496ff;
}

.btn-secondary:hover {
    background: rgba(100, 150, 255, 0.2);
    border-color: #6496ff;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(100, 150, 255, 0.3);
    color: #6496ff;
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background: rgba(100, 150, 255, 0.1);
    border-color: #6496ff;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.strategic-display {
    position: relative;
    width: 400px;
    height: 400px;
}

.system-indicator {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(100, 150, 255, 0.1);
    border: 1px solid rgba(100, 150, 255, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
    color: #6496ff;
    backdrop-filter: blur(10px);
}

.system-indicator:nth-child(1) {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.system-indicator:nth-child(2) {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.system-indicator:nth-child(3) {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.system-indicator:nth-child(4) {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.central-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6496ff, #9c6aff);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    box-shadow: 0 20px 40px rgba(100, 150, 255, 0.3);
}

.central-hub i {
    font-size: 2rem;
    margin-bottom: 8px;
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #e4e6ea, #a8b3c8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.2rem;
    color: #a8b3c8;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Section */
.features {
    background: rgba(15, 20, 25, 0.5);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(30, 35, 45, 0.8);
    border: 1px solid rgba(100, 150, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 150, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #6496ff, #9c6aff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #e4e6ea;
}

.feature-description {
    color: #a8b3c8;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.feature-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #a8b3c8;
    font-size: 0.9rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6496ff;
    font-weight: bold;
}

/* Systems Section */
.systems-diagram {
    max-width: 900px;
    margin: 0 auto;
}

.system-layer {
    margin-bottom: 50px;
    text-align: center;
}

.layer-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #e4e6ea;
}

.system-modules {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.module {
    background: rgba(30, 35, 45, 0.8);
    border: 1px solid rgba(100, 150, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 140px;
    transition: all 0.3s ease;
}

.module:hover {
    transform: translateY(-3px);
    border-color: #6496ff;
}

.module.strategic {
    border-color: rgba(156, 106, 255, 0.3);
}

.module.strategic:hover {
    border-color: #9c6aff;
}

.module.battlefield {
    border-color: rgba(255, 107, 157, 0.3);
}

.module.battlefield:hover {
    border-color: #ff6b9d;
}

.module i {
    font-size: 1.5rem;
    color: #6496ff;
}

.module.strategic i {
    color: #9c6aff;
}

.module.battlefield i {
    color: #ff6b9d;
}

.module span {
    font-size: 0.9rem;
    color: #e4e6ea;
    font-weight: 500;
}

/* Executables Section */
.executables {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a1f35 50%, #0f1419 100%);
    position: relative;
}

.executables::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(100, 150, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(100, 150, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.executables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.executable-card {
    background: rgba(30, 35, 45, 0.8);
    border: 1px solid rgba(100, 150, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.executable-card:hover {
    transform: translateY(-8px);
    border-color: rgba(100, 150, 255, 0.3);
    box-shadow: 0 20px 40px rgba(100, 150, 255, 0.1);
}

.executable-card.recommended {
    border-color: rgba(100, 150, 255, 0.4);
    background: rgba(100, 150, 255, 0.05);
}

.card-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #6496ff, #4a7fff);
    color: white;
    padding: 6px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.executable-header {
    margin-bottom: 20px;
}

.executable-name {
    font-size: 24px;
    font-weight: 700;
    color: #e4e6ea;
    margin-bottom: 8px;
}

.executable-size {
    display: inline-block;
    background: rgba(100, 150, 255, 0.2);
    color: #6496ff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
}

.executable-description {
    color: #a8b3c8;
    line-height: 1.6;
    margin-bottom: 25px;
}

.executable-features {
    margin-bottom: 30px;
}

.feature-check {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #e4e6ea;
}

.feature-check i {
    color: #28a745;
    font-size: 14px;
    width: 16px;
}

.executable-actions .btn {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
}

/* Roadmap Section */
.roadmap {
    background: rgba(15, 20, 25, 0.5);
}

.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #6496ff, rgba(100, 150, 255, 0.3));
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 80px;
}

.timeline-marker {
    position: absolute;
    left: 18px;
    top: 10px;
    width: 24px;
    height: 24px;
    background: rgba(30, 35, 45, 1);
    border: 2px solid #6496ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    z-index: 2;
}

.timeline-item.completed .timeline-marker {
    background: #6496ff;
    color: white;
}

.timeline-item.current .timeline-marker {
    background: linear-gradient(135deg, #6496ff, #9c6aff);
    color: white;
    animation: pulse 2s infinite;
}

.timeline-item.planned .timeline-marker {
    background: rgba(30, 35, 45, 1);
    border-color: rgba(100, 150, 255, 0.5);
    color: rgba(100, 150, 255, 0.7);
}

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

.timeline-content {
    background: rgba(30, 35, 45, 0.8);
    border: 1px solid rgba(100, 150, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.timeline-item.current .timeline-content {
    border-color: #6496ff;
    background: rgba(100, 150, 255, 0.05);
}

.timeline-item.completed .timeline-content {
    border-color: rgba(100, 255, 150, 0.3);
    background: rgba(30, 45, 35, 0.3);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #e4e6ea;
}

.timeline-status {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.timeline-status.completed {
    background: rgba(100, 255, 150, 0.2);
    color: #64ff96;
}

.timeline-status.current {
    background: linear-gradient(135deg, #6496ff, #9c6aff);
    color: white;
}

.timeline-status.planned {
    background: rgba(100, 150, 255, 0.2);
    color: #6496ff;
}

.timeline-date {
    color: #a8b3c8;
    font-size: 0.9rem;
    font-weight: 500;
}

.timeline-description {
    color: #a8b3c8;
    margin-bottom: 25px;
    line-height: 1.6;
}

.timeline-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.feature-item i {
    font-size: 0.9rem;
    width: 16px;
}

.timeline-item.completed .feature-item i {
    color: #64ff96;
}

.timeline-item.current .feature-item i {
    color: #6496ff;
}

.timeline-item.planned .feature-item i {
    color: rgba(100, 150, 255, 0.5);
}

.feature-item span {
    color: #a8b3c8;
    font-size: 0.9rem;
}

.roadmap-update {
    margin-top: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.update-card {
    background: rgba(30, 35, 45, 0.8);
    border: 1px solid rgba(100, 150, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
}

.update-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 10px;
}

.update-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e4e6ea;
    display: flex;
    align-items: center;
    gap: 10px;
}

.update-title i {
    color: #6496ff;
}

.update-date {
    color: #a8b3c8;
    font-size: 0.9rem;
}

.update-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(20, 25, 35, 0.5);
    border-radius: 8px;
}

.update-status {
    padding: 3px 8px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    flex-shrink: 0;
}

.update-status.new {
    background: rgba(100, 255, 150, 0.2);
    color: #64ff96;
}

.update-status.progress {
    background: rgba(100, 150, 255, 0.2);
    color: #6496ff;
}

.update-status.upcoming {
    background: rgba(255, 196, 100, 0.2);
    color: #ffc464;
}

.update-item p {
    color: #a8b3c8;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Documentation Section */
.documentation {
    background: rgba(15, 20, 25, 0.5);
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.doc-category {
    background: rgba(30, 35, 45, 0.8);
    border: 1px solid rgba(100, 150, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.doc-category:hover {
    border-color: rgba(100, 150, 255, 0.3);
}

.category-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #e4e6ea;
}

.category-title i {
    color: #6496ff;
}

.doc-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.doc-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(100, 150, 255, 0.05);
    border: 1px solid rgba(100, 150, 255, 0.1);
    border-radius: 8px;
    color: #a8b3c8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.doc-link:hover {
    background: rgba(100, 150, 255, 0.1);
    border-color: rgba(100, 150, 255, 0.3);
    color: #e4e6ea;
}

.doc-link i {
    color: #6496ff;
    width: 16px;
}

/* Footer */
.footer {
    background: rgba(5, 8, 15, 0.9);
    border-top: 1px solid rgba(100, 150, 255, 0.1);
    padding: 60px 0 20px;
}

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

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

.footer-logo-img {
    width: 32px;
    height: 32px;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6496ff, #9c6aff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: #a8b3c8;
    line-height: 1.6;
    max-width: 300px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #e4e6ea;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #a8b3c8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #6496ff;
}

.footer-bottom {
    border-top: 1px solid rgba(100, 150, 255, 0.1);
    padding-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #a8b3c8;
    font-size: 0.9rem;
}

.footer-meta {
    display: flex;
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 14, 26, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(20px);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }

    .executables-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .executable-card {
        padding: 20px;
    }

    .roadmap-timeline::before {
        left: 15px;
    }

    .timeline-item {
        padding-left: 50px;
    }

    .timeline-marker {
        left: 3px;
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }

    .timeline-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .timeline-features {
        grid-template-columns: 1fr;
    }

    .update-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .system-modules {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease forwards;
}

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

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease forwards;
}

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

/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top-color: #6496ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Hosting Services Section */
.hosting {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f35 50%, #0a0e1a 100%);
    position: relative;
}

.hosting::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(100, 150, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(100, 150, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.pricing-card {
    background: rgba(30, 35, 45, 0.8);
    border: 1px solid rgba(100, 150, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(100, 150, 255, 0.3);
    box-shadow: 0 20px 40px rgba(100, 150, 255, 0.1);
}

.pricing-card.featured {
    border-color: rgba(100, 150, 255, 0.4);
    background: rgba(100, 150, 255, 0.05);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-header {
    margin-bottom: 20px;
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    color: #e4e6ea;
    margin-bottom: 8px;
}

.pricing-badge {
    display: inline-block;
    background: rgba(100, 150, 255, 0.2);
    color: #6496ff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-badge.popular {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #000;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 20px;
}

.price-currency {
    font-size: 24px;
    color: #a8b3c8;
    margin-right: 4px;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: #6496ff;
    line-height: 1;
}

.price-period {
    font-size: 16px;
    color: #a8b3c8;
    margin-left: 4px;
}

.pricing-description {
    color: #a8b3c8;
    line-height: 1.6;
    margin-bottom: 30px;
}

.pricing-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #e4e6ea;
}

.feature-item i {
    color: #28a745;
    font-size: 14px;
    width: 16px;
}

.pricing-action .btn {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
}

.hosting-features {
    margin: 80px 0;
}

.hosting-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.benefit-card {
    background: rgba(30, 35, 45, 0.6);
    border: 1px solid rgba(100, 150, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(100, 150, 255, 0.3);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(100, 150, 255, 0.2), rgba(100, 150, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 32px;
    color: #6496ff;
}

.benefit-title {
    font-size: 20px;
    font-weight: 600;
    color: #e4e6ea;
    margin-bottom: 15px;
}

.benefit-description {
    color: #a8b3c8;
    line-height: 1.6;
}

.hosting-guarantee {
    background: rgba(30, 35, 45, 0.8);
    border: 1px solid rgba(100, 150, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    margin: 60px 0;
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-icon i {
    font-size: 32px;
    color: white;
}

.guarantee-text {
    flex: 1;
    min-width: 300px;
}

.guarantee-text h4 {
    font-size: 24px;
    font-weight: 600;
    color: #e4e6ea;
    margin-bottom: 10px;
}

.guarantee-text p {
    color: #a8b3c8;
    line-height: 1.6;
}

.guarantee-action {
    flex-shrink: 0;
}

/* Responsive Design for Hosting */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .hosting-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .price-amount {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .executables {
        padding: 60px 0;
    }
    
    .executable-card {
        padding: 15px;
    }
    
    .executable-name {
        font-size: 20px;
    }
    
    .hosting {
        padding: 60px 0;
    }
    
    .pricing-card {
        padding: 20px;
    }
    
    .benefit-card {
        padding: 20px;
    }
    
    .hosting-guarantee {
        padding: 20px;
    }
}
