<style>
    .feature-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }
    
    /* Cloud Hero Section Styles */
    .cloud-hero-section {
        background: linear-gradient(135deg, #1a237e 0%, #2979ff 100%);
        color: white;
        padding: 80px 0 80px;
        overflow: hidden;
    }
    
    .hero-bg-pattern {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(rgba(255, 255, 255, 0.1) 2px, transparent 2px);
        background-size: 30px 30px;
        z-index: 0;
    }
    
    .z-index-1 {
        z-index: 1;
    }
    
    .hero-title {
        font-size: 3.2rem;
        font-weight: 700;
        line-height: 1.2;
    }
    
    .text-gradient {
        background: linear-gradient(90deg, #00e676, #00bcd4);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        opacity: 0.9;
        max-width: 520px;
    }
    
    .hero-stat {
        display: flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50px;
        padding: 8px 16px;
        font-size: 0.9rem;
        backdrop-filter: blur(10px);
    }
    
    .stat-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 50%;
    }
    
    .bg-primary-light {
        background-color: rgba(255, 255, 255, 0.2);
    }
    
    .hero-image-container {
        position: relative;
    }
    
    .hero-image {
        filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
        transition: transform 0.5s ease;
        position: relative;
        z-index: 2;
    }
    
    .hero-image:hover {
        transform: translateY(-10px);
    }
    
    .floating-card {
        position: absolute;
        background: white;
        border-radius: 12px;
        padding: 10px 15px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        font-size: 0.9rem;
        font-weight: 500;
        animation: float 3s ease-in-out infinite;
        z-index: 3;
    }
    
    .floating-card-1 {
        top: 15%;
        left: 0;
        animation-delay: 0.5s;
    }
    
    .floating-card-2 {
        bottom: 20%;
        right: 0;
        animation-delay: 1s;
    }
    
    .floating-card-3 {
        top: 50%;
        right: 15%;
        animation-delay: 1.5s;
    }
    
    @keyframes float {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-15px);
        }
    }
    
    /* Pricing Card Styles */
    .pricing-card {
        position: relative;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        overflow: hidden;
    }
    
    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    
    .pricing-card.featured {
        border-color: var(--bs-primary);
        box-shadow: 0 10px 15px -3px rgba(var(--bs-primary-rgb), 0.2), 0 4px 6px -2px rgba(var(--bs-primary-rgb), 0.1);
    }
    
    .plan-icon {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .plan-icon i {
        font-size: 2.5rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(var(--bs-primary-rgb), 0.1);
        width: 70px;
        height: 70px;
        padding: 1rem;
        border-radius: 50%;
        aspect-ratio: 1 / 1;
    }
    
    .pricing-toggle-group {
        border: 1px solid var(--bs-primary);
        border-radius: 30px;
        overflow: hidden;
    }
    
    .pricing-toggle-group .btn {
        border: none;
        border-radius: 0;
        padding: 0.5rem 1rem;
    }
    
    .pricing-toggle-group .btn.active {
        background-color: var(--bs-primary);
        color: white;
    }
    
    .ribbon {
        position: absolute;
        top: 15px;
        right: -30px;
        transform: rotate(45deg);
        width: 150px;
        background-color: var(--bs-primary);
        color: white;
        text-align: center;
        font-size: 14px;
        font-weight: bold;
        z-index: 1;
    }
    
    .ribbon span {
        display: block;
        padding: 5px 0;
    }
    
    .price-wrapper {
        text-align: center;
    }
    
    .features-list ul li {
        font-size: 0.95rem;
    }
    
    .btn-custom-primary {
        background-color: #ed057b;
        border-color: #ed057b;
        color: white;
    }
    
    .btn-custom-primary:hover {
        background-color: #d00068;
        border-color: #d00068;
        color: white;
    }
    
    .domain-search-form {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .bg-gradient {
        background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    }
    
    .domain-badge {
        display: inline-block;
        margin: 0.25rem;
        padding: 0.35rem 0.75rem;
        border-radius: 30px;
        background-color: #f8f9fa;
        font-weight: 500;
    }

    /* High Performance Banner Styles */
    .aws-banner .bg-gradient-primary {
        background: linear-gradient(135deg, #232f3e 0%, #0073bb 100%);
        border-radius: 12px;
        overflow: hidden;
        position: relative;
    }

    .aws-banner .bg-gradient-primary::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    }

    .aws-banner .card-body {
        position: relative;
        z-index: 1;
    }

    .aws-banner .btn-light {
        font-weight: 600;
        transition: all 0.3s ease;
        border: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .aws-banner .btn-light:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    }

    /* Mobile-First Hero Section */
    .hero-section {
        padding: 0;
        margin: 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        opacity: 0.9;
    }
    
    .text-gradient {
        background: linear-gradient(90deg, #00e676, #00bcd4);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .hero-stat {
        display: flex;
        align-items: center;
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.9);
    }
    
    /* Mobile-First Responsive Design */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .mb-5 {
        margin-bottom: 2rem !important;
    }
    
    /* Pricing cards mobile-first - 2 cards per row */
    .pricing-card {
        margin-bottom: 1.5rem;
        max-width: 100%;
    }
    
    .pricing-card .card-body {
        padding: 1rem !important;
    }
    
    .pricing-card .display-6 {
        font-size: 1.5rem !important;
    }
    
    .pricing-card .plan-icon i {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    /* Mobile: 2 cards per row - smaller text */
    @media (max-width: 767px) {
        .pricing-card .card-body {
            padding: 0.75rem !important;
        }
        
        .pricing-card h3.h4 {
            font-size: 0.85rem !important;
        }
        
        .pricing-card .text-muted {
            font-size: 0.7rem !important;
        }
        
        .pricing-card .display-6 {
            font-size: 1.25rem !important;
        }
        
        .pricing-card .features-list ul li {
            font-size: 0.7rem !important;
            margin-bottom: 0.25rem !important;
        }
        
        .pricing-card .plan-icon i {
            width: 45px;
            height: 45px;
            font-size: 1.2rem;
        }
        
        .pricing-card .btn {
            font-size: 0.75rem;
            padding: 0.4rem 0.5rem;
        }
    }
    
    /* Tablet styles */
    @media (min-width: 768px) {
        .hero-section {
            padding: 0;
        }
        
        .hero-title {
            font-size: 2.25rem;
        }
        
        .hero-subtitle {
            font-size: 1.1rem;
        }
        
        .hero-stat {
            font-size: 0.9rem;
        }
        
        .container {
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }
        
        .display-5 {
            font-size: 2.25rem;
        }
        
        .py-5 {
            padding-top: 3rem !important;
            padding-bottom: 3rem !important;
        }
        
        .mb-5 {
            margin-bottom: 3rem !important;
        }
        
        .aws-banner .d-flex {
            flex-direction: column;
            align-items: flex-start !important;
            text-align: center;
        }
        
        .aws-banner img {
            margin-bottom: 1rem;
            margin-right: 0 !important;
        }
    }
    
    /* Desktop styles */
    @media (min-width: 992px) {
        .hero-section {
            padding: 0;
        }
        
        .hero-title {
            font-size: 2.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
        }
        
        .display-5 {
            font-size: 2.5rem;
        }
        
        .py-5 {
            padding-top: 4rem !important;
            padding-bottom: 4rem !important;
        }
        
        .mb-5 {
            margin-bottom: 4rem !important;
        }
    }
</style>
@endpush

