/* Hosting Company Landing Page Styles */

:root {
    /* Color Palette */
    --navy-dark: #1a1b3a;
    --purple-dark: #2d1b69;
    --primary-text: #ffffff;
    --secondary-text: #d1d5db;
    --accent-purple: #a855f7;
    --success-green: #10b981;
    --card-bg: rgba(0, 0, 0, 0.3);
    --card-border: rgba(255, 255, 255, 0.1);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--primary-text);
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--purple-dark) 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Navigation Styles */
.hosting-navbar {
    background: rgba(26, 27, 58, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-text) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
}

.navbar-nav .nav-link {
    color: var(--primary-text) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-purple) !important;
}

.navbar-nav .dropdown-toggle::after {
    margin-left: 0.5rem;
    font-size: 0.8rem;
}

.language-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--primary-text);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.signup-btn {
    background: var(--accent-purple);
    border: none;
    color: white;
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.signup-btn:hover {
    background: #9333ea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.4);
}

/* Hero Section */
.hosting-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    margin-bottom: 8rem;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    animation: gradientShift 10s ease-in-out infinite;
}

.hosting-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--purple-dark) 100%);
    z-index: -1;
}

/* Animated Background Elements */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Animated Grid Background */
.animated-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    opacity: 0.3;
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.6);
    animation: particleFloat 15s ease-in-out infinite;
}

.particle-1 {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle-2 {
    width: 12px;
    height: 12px;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle-3 {
    width: 6px;
    height: 6px;
    top: 30%;
    left: 70%;
    animation-delay: 4s;
    animation-duration: 14s;
}

.particle-4 {
    width: 10px;
    height: 10px;
    top: 80%;
    left: 20%;
    animation-delay: 6s;
    animation-duration: 16s;
}

.particle-5 {
    width: 14px;
    height: 14px;
    top: 10%;
    left: 60%;
    animation-delay: 8s;
    animation-duration: 20s;
}

.particle-6 {
    width: 7px;
    height: 7px;
    top: 70%;
    left: 90%;
    animation-delay: 10s;
    animation-duration: 13s;
}

.particle-7 {
    width: 9px;
    height: 9px;
    top: 40%;
    left: 5%;
    animation-delay: 12s;
    animation-duration: 17s;
}

.particle-8 {
    width: 11px;
    height: 11px;
    top: 90%;
    left: 50%;
    animation-delay: 14s;
    animation-duration: 19s;
}

/* Tech Symbols */
.tech-symbols {
    position: absolute;
    width: 100%;
    height: 100%;
}

.tech-symbol {
    position: absolute;
    color: rgba(139, 92, 246, 0.2);
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    font-weight: bold;
    animation: techFloat 8s ease-in-out infinite;
    user-select: none;
}

.symbol-1 {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.symbol-2 {
    top: 25%;
    right: 20%;
    animation-delay: 1s;
}

.symbol-3 {
    top: 45%;
    left: 5%;
    animation-delay: 2s;
}

.symbol-4 {
    top: 65%;
    right: 15%;
    animation-delay: 3s;
}

.symbol-5 {
    top: 35%;
    left: 85%;
    animation-delay: 4s;
}

.symbol-6 {
    top: 75%;
    left: 25%;
    animation-delay: 5s;
}

.symbol-7 {
    top: 55%;
    right: 5%;
    animation-delay: 6s;
}

.symbol-8 {
    top: 85%;
    left: 75%;
    animation-delay: 7s;
}

/* Connection Dots */
.connection-dots {
    position: absolute;
    width: 100%;
    height: 100%;
}

.dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(139, 92, 246, 0.8);
    border-radius: 50%;
    animation: dotPulse 3s ease-in-out infinite;
}

.dot-1 {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.dot-2 {
    top: 40%;
    left: 60%;
    animation-delay: 0.5s;
}

.dot-3 {
    top: 60%;
    left: 40%;
    animation-delay: 1s;
}

.dot-4 {
    top: 80%;
    left: 70%;
    animation-delay: 1.5s;
}

.dot-5 {
    top: 50%;
    left: 20%;
    animation-delay: 2s;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-text);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.hero-headline:hover {
    transform: scale(1.02);
}

.typing-text {
    animation: typeIn 2s ease-out forwards;
}

.purple-accent {
    color: var(--accent-purple);
    position: relative;
    transition: all 0.3s ease;
}

.purple-accent:hover {
    transform: scale(1.05);
}

.glow-effect {
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
    animation: glow 2s ease-in-out infinite alternate;
}

.highlight-text::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6, #ec4899);
    animation: drawLine 2s ease-out 1s forwards;
    border-radius: 2px;
}

.purple-cross-icon {
    position: absolute;
    top: -20px;
    right: -50px;
    width: 80px;
    height: 80px;
    z-index: 1;
}

.animated-icon {
    animation: iconRotate 4s ease-in-out infinite;
}

.cross-horizontal,
.cross-vertical {
    position: absolute;
    background: var(--accent-purple);
    border-radius: 2px;
}

.cross-horizontal {
    width: 60px;
    height: 8px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cross-vertical {
    width: 8px;
    height: 60px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-description {
    padding-left: 2rem;
}

.description-text {
    font-size: 1.2rem;
    color: var(--secondary-text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.feature-list {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--primary-text);
}

.check-icon {
    color: var(--success-green);
    font-size: 1.2rem;
    margin-right: 1rem;
}

.cta-button {
    background: var(--accent-purple);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.breathing-button {
    animation: breathe 3s ease-in-out infinite;
}

.cta-button:hover {
    background: #9333ea;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
}

.cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button i {
    font-size: 1rem;
}

/* Trust Indicators Section */
.trust-indicators {
    padding: 3rem 0;
    background: rgba(0, 0, 0, 0.2);
    margin-bottom: 8rem;
}

.trust-content {
    text-align: center;
}

.trust-text {
    color: var(--secondary-text);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.company-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.logo-item {
    color: var(--secondary-text);
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
    color: var(--primary-text);
}

/* Statistics Section */
.statistics-section {
    padding: 4rem 0;
    margin-bottom: 8rem;
}

.stats-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(45, 27, 105, 0.1) 100%);
    z-index: 1;
}

.stats-card .row {
    position: relative;
    z-index: 2;
}

.stats-content {
    position: relative;
}

.server-visualization {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    opacity: 0.3;
}

.grid-dots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
    height: 100%;
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--accent-purple);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.dot:nth-child(2n) {
    animation-delay: 0.5s;
}

.dot:nth-child(3n) {
    animation-delay: 1s;
}

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

.stats-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-text);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stats-subtitle {
    color: var(--secondary-text);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.stats-image {
    text-align: center;
}

.image-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.image-placeholder i {
    font-size: 3rem;
    color: var(--accent-purple);
    margin-bottom: 1rem;
}

.image-placeholder p {
    color: var(--secondary-text);
    font-size: 0.9rem;
    margin: 0;
}

.stats-text {
    text-align: right;
}

.infrastructure-text {
    font-size: 1.3rem;
    color: var(--primary-text);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.story-link {
    color: var(--accent-purple);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.story-link:hover {
    color: #9333ea;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-headline {
        font-size: 3rem;
    }
    
    .purple-cross-icon {
        right: -30px;
        width: 60px;
        height: 60px;
    }
    
    .cross-horizontal {
        width: 45px;
        height: 6px;
    }
    
    .cross-vertical {
        width: 6px;
        height: 45px;
    }
}

@media (max-width: 992px) {
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-description {
        padding-left: 0;
        margin-top: 3rem;
    }
    
    .purple-cross-icon {
        display: none;
    }
    
    .stats-text {
        text-align: center;
        margin-top: 2rem;
    }
    
    .company-logos {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .description-text {
        font-size: 1rem;
    }
    
    .stats-number {
        font-size: 3rem;
    }
    
    .stats-card {
        padding: 2rem;
    }
    
    .company-logos {
        gap: 1.5rem;
    }
    
    .logo-item {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .hero-headline {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .stats-card {
        padding: 1.5rem;
    }
    
    .stats-number {
        font-size: 2.5rem;
    }
    
    .infrastructure-text {
        font-size: 1.1rem;
    }
    
    .company-logos {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

/* Utility Classes */
.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Focus States */
.btn:focus,
.nav-link:focus {
    box-shadow: 0 0 0 0.25rem rgba(168, 85, 247, 0.25);
}

/* Selection */
::selection {
    background-color: var(--accent-purple);
    color: white;
}

::-moz-selection {
    background-color: var(--accent-purple);
    color: white;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--navy-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-purple);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9333ea;
}

/* Pricing Section Styles */
.pricing-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    padding: 5rem 0;
    position: relative;
    overflow: visible;
    z-index: 1;
    margin-bottom: 8rem;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%238b5cf6" stop-opacity="0.05"/><stop offset="100%" stop-color="%238b5cf6" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23a)"/><circle cx="800" cy="800" r="400" fill="url(%23a)"/></svg>');
    pointer-events: none;
    z-index: 0;
}

.pricing-header {
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.pricing-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.purple-highlight {
    color: #8b5cf6;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: #9ca3af;
    margin: 0;
    font-weight: 400;
}

/* Pricing Cards */
.pricing-card {
    background: #2a2a3e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(139, 92, 246, 0.3);
}

.featured-card {
    border: 2px solid #8b5cf6;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.featured-card:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.3);
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #10b981;
    color: #1f2937;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 3;
}

/* Card Header */
.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.plan-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.premium-icon {
    background: #8b5cf6;
}

.business-icon {
    background: #8b5cf6;
}

.gold-icon {
    background: #f59e0b;
}

.plan-info {
    flex: 1;
}

.plan-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
}

.plan-subtitle {
    font-size: 0.9rem;
    color: #9ca3af;
    margin: 0;
    line-height: 1.4;
}

/* Pricing Info */
.pricing-info {
    margin-bottom: 2rem;
    text-align: center;
}

.price-main {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    font-weight: 400;
    color: #9ca3af;
}

.price-original {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.original-price {
    font-size: 1rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.save-badge {
    background: #10b981;
    color: #1f2937;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Pricing Buttons */
.pricing-btn {
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.primary-btn {
    background: #8b5cf6;
    color: white;
}

.primary-btn:hover {
    background: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.secondary-btn {
    background: #374151;
    color: white;
}

.secondary-btn:hover {
    background: #4b5563;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features-section {
    margin-top: 1rem;
}

.features-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #ffffff;
}

.features-list li i {
    color: #10b981;
    font-size: 1rem;
    margin-right: 0.75rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .pricing-title {
        font-size: 2.5rem;
    }
    
    .featured-card {
        transform: none;
    }
    
    .featured-card:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 992px) {
    .pricing-title {
        font-size: 2rem;
    }
    
    .pricing-subtitle {
        font-size: 1rem;
    }
    
    .price-main {
        font-size: 2rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .featured-card {
        transform: none;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .featured-card:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 3rem 0;
    }
    
    .pricing-header {
        margin-bottom: 3rem;
    }
    
    .pricing-title {
        font-size: 1.8rem;
    }
    
    .pricing-subtitle {
        font-size: 0.9rem;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .plan-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .price-main {
        font-size: 1.8rem;
    }
    
    .pricing-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .pricing-title {
        font-size: 1.5rem;
    }
    
    .pricing-card {
        padding: 1.25rem;
    }
    
    .price-main {
        font-size: 1.5rem;
    }
    
    .features-list li {
        font-size: 0.85rem;
    }
    
    .popular-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
}

/* Animation for pricing cards */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-card {
    animation: slideInUp 0.6s ease-out;
}

.pricing-card:nth-child(1) {
    animation-delay: 0.1s;
}

.pricing-card:nth-child(2) {
    animation-delay: 0.2s;
}

.pricing-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Button ripple effect */
.pricing-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.pricing-btn:hover::before {
    left: 100%;
}

/* Features Showcase Section */
.features-showcase {
    background: linear-gradient(135deg, #1a1b3a 0%, #0f0f23 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    min-height: auto;
    z-index: 1;
    margin-bottom: 8rem;
}

.features-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%238b5cf6" stop-opacity="0.03"/><stop offset="100%" stop-color="%238b5cf6" stop-opacity="0"/></radialGradient></defs><circle cx="300" cy="300" r="200" fill="url(%23a)"/><circle cx="700" cy="700" r="300" fill="url(%23a)"/></svg>');
    pointer-events: none;
    z-index: 0;
}

/* Feature Cards */
.feature-card {
    background: #2a2a3e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(139, 92, 246, 0.3);
}

/* Ensure feature cards don't break out of their container */
.features-showcase .row {
    overflow: hidden;
}

.features-showcase .col-lg-6 {
    overflow: hidden;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-description {
    font-size: 0.95rem;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Performance Comparison */
.performance-comparison {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.performance-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.performance-label {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 500;
    min-width: 60px;
}

.performance-bar {
    flex: 1;
    height: 12px;
    background: #374151;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.bar-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 1.5s ease-out;
}

.lightbox-bar .bar-fill {
    background: linear-gradient(90deg, #8b5cf6 0%, #ec4899 100%);
    width: 100%;
}

.other-bar .bar-fill {
    background: #6b7280;
}

/* Support Icons */
.support-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.support-icon {
    width: 60px;
    height: 60px;
    background: #8b5cf6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.support-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

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

/* Growth Chart */
.growth-chart {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 1rem;
}

.growth-stats {
    text-align: center;
}

.growth-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.growth-label {
    font-size: 0.9rem;
    color: #9ca3af;
    font-weight: 500;
}

.chart-container {
    flex: 1;
    height: 80px;
}

.growth-chart-svg {
    width: 100%;
    height: 100%;
}

.chart-line {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawLine 2s ease-out forwards;
}

.chart-area {
    opacity: 0;
    animation: fadeInArea 2s ease-out 1s forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeInArea {
    to {
        opacity: 1;
    }
}

/* Security URL Bar */
.security-url-bar {
    margin-top: 1rem;
}

.url-bar {
    background: #374151;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 400px;
}

.url-controls {
    display: flex;
    gap: 0.5rem;
}

.url-controls i {
    color: #9ca3af;
    font-size: 0.9rem;
}

.url-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.security-icon {
    color: #8b5cf6;
    font-size: 1rem;
}

.secure-badge {
    background: #8b5cf6;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.url-text {
    color: #ffffff;
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
}

/* Mini Plans */
.mini-plans {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.mini-plan-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    flex: 1;
    text-align: center;
    transition: all 0.3s ease;
}

.mini-plan-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.mini-plan-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    color: white;
    margin: 0 auto 1rem auto;
}

.mini-plan-icon.business-icon {
    background: #8b5cf6;
}

.mini-plan-icon.gold-icon {
    background: #3b82f6;
}

.mini-plan-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.mini-plan-subtitle {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.4;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .features-showcase {
        padding: 3rem 0;
    }
    
    .feature-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    .growth-chart {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .chart-container {
        width: 100%;
        max-width: 300px;
    }
    
    .support-icons {
        gap: 1.5rem;
    }
    
    .support-icon {
        width: 50px;
        height: 50px;
    }
    
    .support-icon i {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .feature-title {
        font-size: 1.2rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
    
    .performance-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .performance-label {
        min-width: auto;
    }
    
    .performance-bar {
        width: 100%;
    }
    
    .growth-number {
        font-size: 2rem;
    }
    
    .support-icons {
        gap: 1rem;
    }
    
    .support-icon {
        width: 45px;
        height: 45px;
    }
    
    .support-icon i {
        font-size: 1rem;
    }
    
    .mini-plans {
        flex-direction: column;
        gap: 1rem;
    }
    
    .url-bar {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .features-showcase {
        padding: 2rem 0;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .feature-description {
        font-size: 0.85rem;
    }
    
    .growth-number {
        font-size: 1.8rem;
    }
    
    .support-icons {
        gap: 0.75rem;
    }
    
    .support-icon {
        width: 40px;
        height: 40px;
    }
    
    .support-icon i {
        font-size: 0.9rem;
    }
    
    .url-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .url-text {
        font-size: 0.8rem;
    }
}

/* Animation for feature cards */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    animation: slideInUp 0.6s ease-out;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(5) {
    animation-delay: 0.5s;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #1a1b3a 0%, #0f0f23 100%);
    padding: 3rem 0;
    position: relative;
    overflow: visible;
    z-index: 1;
    margin-top: 4rem;
    margin-bottom: 8rem;
    clear: both;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%238b5cf6" stop-opacity="0.05"/><stop offset="100%" stop-color="%238b5cf6" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23a)"/><circle cx="800" cy="800" r="400" fill="url(%23a)"/></svg>');
    pointer-events: none;
    z-index: 1;
}

.testimonials-header {
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.testimonials-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

/* Testimonial Cards */
.testimonial-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-quote {
    font-size: 0.9rem;
    color: #1f2937;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    font-style: italic;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 2rem;
    color: #8b5cf6;
    font-weight: bold;
    position: absolute;
    top: -10px;
    left: -5px;
    opacity: 0.3;
}

.testimonial-quote::after {
    content: '"';
    font-size: 2rem;
    color: #8b5cf6;
    font-weight: bold;
    position: absolute;
    bottom: -20px;
    right: -5px;
    opacity: 0.3;
}

/* Profile Section */
.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.profile-avatar {
    flex-shrink: 0;
}

.avatar-placeholder {
    width: 40px;
    height: 40px;
    background: #d1d5db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.avatar-placeholder::after {
    content: '👤';
    font-size: 1.2rem;
    opacity: 0.6;
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.25rem 0;
    line-height: 1.2;
}

.profile-role {
    font-size: 0.8rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.2;
}

/* Bottom Section */
.testimonials-footer {
    text-align: center;
    position: relative;
    z-index: 2;
}

.avatar-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.small-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.small-avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.testimonials-cta {
    color: #8b5cf6;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.testimonials-cta:hover {
    color: #7c3aed;
    text-decoration: underline;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .testimonials-title {
        font-size: 2.5rem;
    }
    
    .testimonials-grid {
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .cta-title {
        font-size: 3.5rem;
    }
    
    .cta-cross-icon.large-cross {
        width: 100px;
        height: 100px;
        left: -80px;
    }
    
    .cta-cross-icon.large-cross i {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .testimonials-section {
        padding: 2.5rem 0;
    }
    
    .testimonials-title {
        font-size: 1.8rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .testimonials-header {
        margin-bottom: 2rem;
    }
    
    .testimonials-footer {
        margin-bottom: 1.5rem;
    }
    
    .final-cta-section {
        padding: 6rem 0;
    }
    
    .cta-title {
        font-size: 3rem;
    }
    
    .cta-cross-icon.large-cross {
        display: none;
    }
    
    .cta-cross-icon.small-cross {
        display: none;
    }
    
    .footer-main .row {
        text-align: center;
    }
    
    .footer-bottom .row {
        text-align: center;
    }
    
    .footer-bottom .col-md-4 {
        margin-bottom: 1rem;
    }
    
    /* Enhanced Hero Responsive */
    .tech-symbols {
        display: none;
    }
    
    .floating-particles .particle {
        opacity: 0.3;
    }
    
    .animated-grid {
        opacity: 0.1;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .purple-cross-icon {
        display: none;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 2rem 0;
    }
    
    .testimonials-title {
        font-size: 1.6rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .testimonial-quote {
        font-size: 0.85rem;
    }
    
    .profile-name {
        font-size: 0.85rem;
    }
    
    .profile-role {
        font-size: 0.75rem;
    }
    
    .avatar-row {
        gap: 0.5rem;
    }
    
    .small-avatar {
        width: 30px;
        height: 30px;
    }
    
    .testimonials-cta {
        font-size: 0.85rem;
    }
    
    .final-cta-section {
        padding: 4rem 0;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .final-cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .footer-main .col-lg-2 {
        margin-bottom: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Enhanced Hero Mobile */
    .hero-headline {
        font-size: 2rem;
    }
    
    .floating-particles {
        display: none;
    }
    
    .connection-dots {
        display: none;
    }
    
    .animated-grid {
        background-size: 30px 30px;
        opacity: 0.05;
    }
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 1.5rem 0;
    }
    
    .testimonials-title {
        font-size: 1.4rem;
    }
    
    .testimonials-header {
        margin-bottom: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1rem;
    }
    
    .testimonial-quote {
        font-size: 0.8rem;
    }
    
    .testimonial-quote::before,
    .testimonial-quote::after {
        font-size: 1.2rem;
    }
    
    .avatar-placeholder {
        width: 35px;
        height: 35px;
    }
    
    .avatar-placeholder::after {
        font-size: 1rem;
    }
    
    .profile-name {
        font-size: 0.8rem;
    }
    
    .profile-role {
        font-size: 0.7rem;
    }
    
    .avatar-row {
        gap: 0.4rem;
        margin-bottom: 1rem;
    }
    
    .small-avatar {
        width: 25px;
        height: 25px;
        border-width: 1px;
    }
    
    .testimonials-cta {
        font-size: 0.8rem;
    }
    
    .final-cta-section {
        padding: 3rem 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .final-cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .footer-main .col-lg-2 {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom .col-md-4 {
        margin-bottom: 1rem;
    }
}

/* Animation for testimonial cards */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card {
    animation: slideInUp 0.6s ease-out;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card:nth-child(4) { animation-delay: 0.4s; }
.testimonial-card:nth-child(5) { animation-delay: 0.5s; }
.testimonial-card:nth-child(6) { animation-delay: 0.6s; }
.testimonial-card:nth-child(7) { animation-delay: 0.7s; }
.testimonial-card:nth-child(8) { animation-delay: 0.8s; }
.testimonial-card:nth-child(9) { animation-delay: 0.9s; }

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    padding: 8rem 0;
    position: relative;
    overflow: visible;
    z-index: 1;
    text-align: center;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

/* Large Tech Icon */
.cta-cross-icon.large-cross {
    position: absolute;
    top: -50px;
    left: -100px;
    width: 120px;
    height: 120px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-cross-icon.large-cross i {
    font-size: 4rem;
    color: #8b5cf6;
}

.cta-cross-icon.small-cross {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-cross-icon.small-cross i {
    font-size: 1.5rem;
    color: #8b5cf6;
}

/* CTA Heading */
.cta-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}

.cta-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
    position: relative;
}

.purple-text {
    color: #8b5cf6;
    position: relative;
    display: inline-block;
}

/* CTA Button */
.cta-button-container {
    position: relative;
    z-index: 2;
}

.final-cta-button {
    background: #8b5cf6;
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.final-cta-button:hover {
    background: #7c3aed;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.final-cta-button i {
    font-size: 1.1rem;
}

/* Footer Styles */
.hosting-footer {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    padding: 4rem 0 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: visible;
    z-index: 1;
    margin-top: 0;
    clear: both;
}

.footer-main {
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-brand .logo-icon {
    width: 40px;
    height: 40px;
    background: #8b5cf6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #8b5cf6;
    padding-left: 5px;
}

.footer-divider {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 2rem 0 1.5rem 0;
}

/* Footer Bottom Section */
.footer-bottom {
    margin-top: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.twitter {
    background: #1da1f2;
}

.social-icon.linkedin {
    background: #0077b5;
}

.social-icon.vk {
    background: #4c75a3;
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.footer-location {
    color: #9ca3af;
    font-size: 0.85rem;
    margin: 0;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.85rem;
    margin: 0;
}

/* Ensure proper scrolling */
html, body {
    height: auto;
    min-height: 100vh;
}

/* Enhanced Hero Animations */
@keyframes gradientShift {
    0%, 100% {
        background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    }
    50% {
        background: linear-gradient(135deg, #1a1a2e 0%, #2d1b69 100%);
    }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) translateX(-15px);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-30px) translateX(5px);
        opacity: 0.7;
    }
}

@keyframes techFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
        opacity: 0.4;
    }
}

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

@keyframes typeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0% {
        text-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
    }
    100% {
        text-shadow: 0 0 30px rgba(139, 92, 246, 0.8), 0 0 40px rgba(139, 92, 246, 0.4);
    }
}

@keyframes drawLine {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes iconRotate {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(90deg) scale(1.1);
    }
    50% {
        transform: rotate(180deg) scale(1);
    }
    75% {
        transform: rotate(270deg) scale(1.1);
    }
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
    }
}

/* ============================================
   INDIVIDUAL PAGES STYLES
   ============================================ */

/* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, #1a1b3a 0%, #0f0f23 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    margin-bottom: 4rem;
}

.services-hero-content {
    position: relative;
    z-index: 2;
}

.services-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.services-hero-subtitle {
    font-size: 1.2rem;
    color: #9ca3af;
    margin-bottom: 2rem;
}

.services-hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-size: 1rem;
}

.feature-highlight i {
    color: #8b5cf6;
    font-size: 1.2rem;
}

.services-overview {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1b3a 100%);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #9ca3af;
    margin-bottom: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.service-card.featured {
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #8b5cf6;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-description {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #d1d5db;
    font-size: 0.9rem;
}

.service-features i {
    color: #8b5cf6;
    font-size: 0.8rem;
}

.service-cta {
    background: transparent;
    color: #8b5cf6;
    border: 2px solid #8b5cf6;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.service-cta:hover {
    background: #8b5cf6;
    color: white;
}

.service-cta.primary {
    background: #8b5cf6;
    color: white;
}

.service-cta.primary:hover {
    background: #7c3aed;
}

.process-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1b3a 0%, #0f0f23 100%);
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 1.5rem;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.step-description {
    color: #9ca3af;
    line-height: 1.6;
}

.services-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1b3a 100%);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    color: #9ca3af;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Technologies Page Styles */
.technologies-hero {
    background: linear-gradient(135deg, #1a1b3a 0%, #0f0f23 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    margin-bottom: 4rem;
}

.technologies-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.technologies-hero-subtitle {
    font-size: 1.2rem;
    color: #9ca3af;
    margin-bottom: 2rem;
}

.tech-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #9ca3af;
    font-size: 0.9rem;
}

.tech-categories {
    padding: 5rem 0;
}

.tech-category {
    margin-bottom: 5rem;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.category-icon i {
    font-size: 2rem;
    color: white;
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.category-description {
    color: #9ca3af;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.tech-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.tech-name {
    color: #ffffff;
    font-weight: 500;
    min-width: 150px;
}

.expertise-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-left: 1rem;
}

.expertise-fill {
    height: 100%;
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
    border-radius: 4px;
    transition: width 1s ease-in-out;
    width: 0;
}

.tech-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.tech-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 400px;
}

.logo-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.logo-item:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: #8b5cf6;
    transform: translateY(-2px);
}

.tech-benefits {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1b3a 100%);
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 1.8rem;
    color: white;
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

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

.technologies-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1b3a 0%, #0f0f23 100%);
    text-align: center;
}

/* Industries Page Styles */
.industries-hero {
    background: linear-gradient(135deg, #1a1b3a 0%, #0f0f23 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    margin-bottom: 4rem;
}

.industries-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.industries-hero-subtitle {
    font-size: 1.2rem;
    color: #9ca3af;
    margin-bottom: 2rem;
}

.industry-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.industries-showcase {
    padding: 5rem 0;
}

.industry-section {
    margin-bottom: 5rem;
    padding: 3rem 0;
}

.industry-content {
    padding: 2rem 0;
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.industry-icon i {
    font-size: 2rem;
    color: white;
}

.industry-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.industry-description {
    color: #9ca3af;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.industry-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #d1d5db;
}

.feature-item i {
    color: #8b5cf6;
    font-size: 0.9rem;
}

.case-study-highlight {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.case-metric {
    color: #ffffff;
}

.metric-number {
    font-size: 2rem;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    color: #9ca3af;
}

.industry-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.visual-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    color: #9ca3af;
    width: 100%;
    max-width: 400px;
}

.visual-placeholder i {
    font-size: 3rem;
    color: #8b5cf6;
    margin-bottom: 1rem;
}

.industry-testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1b3a 100%);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.testimonial-quote {
    color: #ffffff;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.author-name {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-role {
    color: #8b5cf6;
    font-size: 0.9rem;
    margin: 0;
}

.industries-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1b3a 0%, #0f0f23 100%);
    text-align: center;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #1a1b3a 0%, #0f0f23 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    margin-bottom: 4rem;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-hero-subtitle {
    font-size: 1.2rem;
    color: #9ca3af;
    margin-bottom: 2rem;
}

.our-story {
    padding: 5rem 0;
}

.story-content {
    padding: 2rem 0;
}

.story-text {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.milestone {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.milestone-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 0.5rem;
}

.milestone-desc {
    color: #ffffff;
    font-size: 0.9rem;
}

.story-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.mission-values {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1b3a 100%);
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 1.8rem;
    color: white;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.value-description {
    color: #9ca3af;
    line-height: 1.6;
}

.our-team {
    padding: 5rem 0;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.member-photo {
    margin-bottom: 1.5rem;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.photo-placeholder i {
    font-size: 3rem;
    color: white;
}

.member-name {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #8b5cf6;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.member-bio {
    color: #9ca3af;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: #8b5cf6;
    color: white;
    transform: translateY(-2px);
}

.why-choose-us {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1b3a 0%, #0f0f23 100%);
}

.advantage-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.advantage-number {
    font-size: 3rem;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 1rem;
}

.advantage-title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.advantage-description {
    color: #9ca3af;
    line-height: 1.6;
}

.careers-section {
    padding: 5rem 0;
}

.careers-content {
    padding: 2rem 0;
}

.careers-description {
    color: #9ca3af;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.careers-benefits {
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #d1d5db;
}

.benefit-item i {
    color: #8b5cf6;
    font-size: 0.9rem;
}

.careers-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.contact-location {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1b3a 100%);
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 1.8rem;
    color: white;
}

.contact-title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-info {
    color: #9ca3af;
    line-height: 1.6;
    margin: 0;
}

/* Navigation Active States */
.nav-link.active {
    color: #8b5cf6 !important;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .services-hero-title,
    .technologies-hero-title,
    .industries-hero-title,
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .tech-stats,
    .industry-stats {
        gap: 2rem;
    }
    
    .milestones {
        grid-template-columns: 1fr;
    }
    
    .tech-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Service Modal Styles */
.service-modal-content {
    background: linear-gradient(135deg, #1a1b3a 0%, #0f0f23 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #ffffff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.service-modal-header {
    background: rgba(139, 92, 246, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px 20px 0 0;
    padding: 2rem;
}

.modal-title-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.service-modal-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-modal-icon i {
    font-size: 1.8rem;
    color: white;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
}

.modal-subtitle {
    color: #9ca3af;
    margin: 0;
    font-size: 1rem;
}

.service-modal-body {
    padding: 2rem;
    max-height: 60vh;
    overflow-y: auto;
}

.service-details-content h6 {
    color: #8b5cf6;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.service-overview p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-features-detailed ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-features-detailed li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #d1d5db;
    font-size: 0.95rem;
}

.service-features-detailed li i {
    color: #8b5cf6;
    font-size: 0.8rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.benefit-item i {
    color: #8b5cf6;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.benefit-item h6 {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #9ca3af;
    font-size: 0.8rem;
    margin: 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.process-step-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.process-step-number {
    width: 30px;
    height: 30px;
    background: #8b5cf6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    margin: 0 auto 0.75rem;
    font-size: 0.9rem;
}

.process-step-item h6 {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.process-step-item p {
    color: #9ca3af;
    font-size: 0.8rem;
    margin: 0;
}

.pricing-info {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.pricing-info h6 {
    color: #8b5cf6;
    margin-bottom: 1rem;
}

.pricing-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.pricing-item {
    text-align: center;
}

.pricing-item .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.pricing-item .label {
    color: #9ca3af;
    font-size: 0.8rem;
}

.service-modal-footer {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 0 20px 20px;
    padding: 1.5rem 2rem;
}

.service-modal-footer .btn {
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
}

.service-modal-footer .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.service-modal-footer .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.service-modal-footer .btn-primary {
    background: #8b5cf6;
    border: none;
    color: white;
}

.service-modal-footer .btn-primary:hover {
    background: #7c3aed;
}

/* Custom scrollbar for modal */
.service-modal-body::-webkit-scrollbar {
    width: 6px;
}

.service-modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.service-modal-body::-webkit-scrollbar-thumb {
    background: #8b5cf6;
    border-radius: 3px;
}

.service-modal-body::-webkit-scrollbar-thumb:hover {
    background: #7c3aed;
}

/* Responsive modal */
@media (max-width: 768px) {
    .service-modal-header {
        padding: 1.5rem;
    }
    
    .modal-title-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .service-modal-body {
        padding: 1.5rem;
        max-height: 50vh;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .pricing-details {
        grid-template-columns: 1fr;
    }
    
    .service-modal-footer {
        padding: 1rem 1.5rem;
    }
    
    .service-modal-footer .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Fix any potential overflow issues - container styles moved above */

/* Ensure all sections are properly spaced */
section {
    position: relative;
    overflow: visible;
    clear: both;
}

/* Ensure proper container structure for all sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

/* Add extra padding to the last section to ensure proper scrolling */
.features-showcase {
    padding-bottom: 4rem;
}

/* Z-Index Management */
.hosting-navbar {
    z-index: 1000;
}

.hosting-hero {
    z-index: 1;
}

.trust-indicators {
    z-index: 1;
}

.statistics-section {
    z-index: 1;
}

.pricing-section {
    z-index: 1;
}

.features-showcase {
    z-index: 1;
}

.testimonials-section {
    z-index: 1;
}

.hosting-footer {
    z-index: 1;
}

/* Fix any potential overlay issues */
.row {
    position: relative;
    z-index: 2;
}

.col-lg-6,
.col-lg-4,
.col-md-6 {
    position: relative;
    z-index: 2;
}