* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    line-height: 1.6;
}

/* Top Banner */
.top-banner {
    background: #e53e3e;
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
    position: relative;
    z-index: 1000;
}

.top-banner i {
    margin-right: 8px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Navigation */
.navbar {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid #333;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #e53e3e;
}

.nav-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #e53e3e;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.btn-login, .btn-signup {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-login {
    background: transparent;
    color: #ffffff;
    border: 2px solid #e53e3e;
}

.btn-login:hover {
    background: #e53e3e;
    color: #ffffff;
}

.btn-signup {
    background: #e53e3e;
    color: #ffffff;
}

.btn-signup:hover {
    background: #d53030;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    background: radial-gradient(circle at center, rgba(229, 62, 62, 0.1) 0%, transparent 70%);
}

.hero-content {
    max-width: 800px;
}

.hero-badge {
    background: rgba(229, 62, 62, 0.2);
    color: #e53e3e;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 600;
    border: 1px solid #e53e3e;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    color: #e53e3e;
    text-shadow: 0 0 20px rgba(229, 62, 62, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #cccccc;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: #e53e3e;
    color: #ffffff;
}

.btn-primary:hover {
    background: #d53030;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(229, 62, 62, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #666;
}

.btn-secondary:hover {
    border-color: #e53e3e;
    color: #e53e3e;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(229, 62, 62, 0.3);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e53e3e;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Pricing Section */
.pricing {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

/* Server-specific grid layouts */
#ryzen-plans.pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

#epyc-plans.pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.pricing-card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 15px;
    padding: 2rem;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border: 2px solid #e53e3e;
    transform: scale(1.05);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e53e3e, #ff6b6b);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(229, 62, 62, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #e53e3e;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.plan-badge.best-value {
    background: linear-gradient(45deg, #e53e3e, #ff6b6b);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.plan-name {
    color: #e53e3e;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.plan-description {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price {
    margin-bottom: 1.5rem;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
}

.currency {
    font-size: 1rem;
    color: #cccccc;
    margin-left: 0.5rem;
}

.features {
    margin-bottom: 1.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.25rem 0;
}

.feature i {
    color: #e53e3e;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    width: 20px;
}

.feature div {
    flex: 1;
}

.feature strong {
    display: block;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.feature span {
    color: #cccccc;
    font-size: 0.9rem;
}

.btn-order {
    width: 100%;
    padding: 1rem;
    background: #e53e3e;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-order:hover {
    background: #d53030;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 62, 62, 0.3);
}

/* Guarantee Section */
.guarantee {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(229, 62, 62, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(229, 62, 62, 0.3);
}

.guarantee i {
    color: #e53e3e;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.guarantee span {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Locations Section */
.locations {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.location-card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-card .flag {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.location-card h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.location-card p {
    color: #cccccc;
    margin-bottom: 1rem;
}

.location-card .ping {
    background: #e53e3e;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* Features Section */
.features {
    padding: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 3rem;
    color: #e53e3e;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Reviews Section */
.reviews {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.stars {
    margin-bottom: 1rem;
}

.stars i {
    color: #ffd700;
    margin-right: 0.2rem;
}

.review-card p {
    color: #cccccc;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.reviewer strong {
    color: #ffffff;
    display: block;
}

.reviewer span {
    color: #e53e3e;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.contact-info p {
    color: #cccccc;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-method i {
    color: #e53e3e;
    font-size: 1.5rem;
    width: 30px;
}

.contact-method strong {
    color: #ffffff;
    display: block;
    margin-bottom: 0.3rem;
}

.contact-method span {
    color: #cccccc;
    font-size: 0.9rem;
}

.contact-form {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid #333;
}

.contact-form h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 5px;
    color: #ffffff;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #e53e3e;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-contact {
    background: #e53e3e;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}

.btn-contact:hover {
    background: #d53030;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1a1a1a;
    padding: 4rem 0 2rem;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e53e3e;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #e53e3e;
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 10px;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #cccccc;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #e53e3e;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #cccccc;
    margin: 0.5rem 0;
}

.footer-bottom a {
    color: #e53e3e;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Live Viewer Counter */
.viewer-counter {
    background: rgba(229, 62, 62, 0.1);
    border: 1px solid rgba(229, 62, 62, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    animation: pulse-glow 2s infinite;
}

.viewer-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 rgba(229, 62, 62, 0.4); }
    50% { box-shadow: 0 0 20px rgba(229, 62, 62, 0.6); }
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(229, 62, 62, 0.2);
    border-bottom: 1px solid rgba(229, 62, 62, 0.2);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(229, 62, 62, 0.1);
    border-color: rgba(229, 62, 62, 0.3);
    transform: translateY(-2px);
}

.trust-badge i {
    color: #22c55e;
    font-size: 1.1rem;
}

.trust-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}

/* Social Proof Notifications */
.social-proof {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    max-width: 400px;
}

.recent-activity {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    animation: slideInLeft 0.5s ease;
}

@keyframes slideInLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.activity-item i {
    color: #e53e3e;
    font-size: 1.2rem;
}

.activity-item span {
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.4;
}

.activity-item small {
    color: #888;
    font-size: 0.8rem;
    margin-left: auto;
}

/* Enhanced Reviews Section */
.review-stats {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(229, 62, 62, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(229, 62, 62, 0.2);
}

.overall-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.rating-number {
    font-size: 3rem;
    font-weight: 800;
    color: #e53e3e;
}

.rating-text {
    color: #cccccc;
    font-size: 1.1rem;
    margin-left: 1rem;
}

.reviews-carousel {
    position: relative;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 2px solid #e53e3e;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: #e53e3e;
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #d53030;
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #e53e3e;
    transform: scale(1.2);
}

/* Exit Intent Popup */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.exit-popup.hidden {
    display: none;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.popup-content {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border: 2px solid #e53e3e;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideUp 0.4s ease;
    overflow: hidden;
}

@keyframes slideUp {
    from { transform: translateY(50px) scale(0.9); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #888;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1;
}

.popup-close:hover {
    color: #e53e3e;
}

.popup-header {
    background: linear-gradient(135deg, #e53e3e, #ff6b6b);
    padding: 2rem;
    text-align: center;
    color: white;
}

.popup-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.popup-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.popup-body {
    padding: 2rem;
}

.instant-badge {
    background: linear-gradient(45deg, #e53e3e, #ff6b6b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 1.5rem;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 1rem;
    animation: pulse-badge 2s infinite;
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.3);
}

.popup-features {
    margin: 1.5rem 0;
}

.popup-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.popup-feature i {
    color: #22c55e;
    font-size: 1.1rem;
}

.popup-feature span {
    color: #ffffff;
}

.btn-popup-order {
    width: 100%;
    background: linear-gradient(135deg, #e53e3e, #ff6b6b);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.btn-popup-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(229, 62, 62, 0.4);
}

.popup-disclaimer {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

.popup-disclaimer strong {
    color: #e53e3e;
}

/* Mobile Optimization Enhancements */
@media (max-width: 768px) {
    .viewer-counter {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .trust-badge {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    .social-proof {
        bottom: 10px;
        left: 10px;
        right: 10px;
        max-width: none;
    }
    
    .popup-content {
        width: 95%;
        margin: 1rem;
    }
    
    .popup-header {
        padding: 1.5rem;
    }
    
    .popup-body {
        padding: 1.5rem;
    }
    
    .reviewer-avatar {
        width: 50px;
        height: 50px;
    }
    
    .carousel-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .carousel-dots {
        order: -1;
    }
}

/* Server Type Tabs */
.server-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    border-bottom: 2px solid #333;
    padding-bottom: 1rem;
}

.tab-btn {
    background: transparent;
    border: 2px solid #333;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    min-width: 150px;
    justify-content: center;
}

.tab-btn:hover {
    border-color: #e53e3e;
    background: rgba(229, 62, 62, 0.1);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: #e53e3e;
    border-color: #e53e3e;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.3);
}

.tab-btn i {
    font-size: 1.2rem;
}

/* Server Plans */
.server-plans {
    display: none;
}

.server-plans.active {
    display: grid;
}

/* Enhanced Pricing Cards for Different Server Types */
#intel-plans .pricing-card {
    border-left: 4px solid #0071c5;
}

#ryzen-plans .pricing-card {
    border-left: 4px solid #ed1c24;
}

#epyc-plans .pricing-card {
    border-left: 4px solid #ff6900;
}

#intel-plans .plan-badge {
    background: linear-gradient(45deg, #0071c5, #0099e0);
}

#ryzen-plans .plan-badge {
    background: linear-gradient(45deg, #ed1c24, #ff4757);
}

#epyc-plans .plan-badge {
    background: linear-gradient(45deg, #ff6900, #ffa726);
}

/* Mobile Server Tabs */
@media (max-width: 768px) {
    .server-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .tab-btn {
        min-width: auto;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-buttons {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .plan-badge {
        top: 0.5rem;
        right: 0.5rem;
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .nav-menu {
        font-size: 0.9rem;
    }
    
    .btn-login, .btn-signup {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* Legal Pages Styles */
.legal-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(229, 62, 62, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(229, 62, 62, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.legal-hero .container {
    position: relative;
    z-index: 2;
}

.legal-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #e53e3e, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-hero h1 i {
    margin-right: 1rem;
    color: #e53e3e;
    -webkit-text-fill-color: #e53e3e;
}

.legal-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.legal-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.legal-meta span {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-meta i {
    margin-right: 0.5rem;
    color: #e53e3e;
}

.legal-content {
    padding: 4rem 0;
    background: #f8f9fa;
}

.legal-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.toc-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.toc-section h3 {
    color: #2d3748;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e53e3e;
}

.toc-section h3 i {
    margin-right: 0.5rem;
    color: #e53e3e;
}

.toc-list {
    list-style: none;
    padding: 0;
}

.toc-list li {
    margin-bottom: 0.8rem;
}

.toc-list a {
    color: #4a5568;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    display: block;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.toc-list a:hover {
    background: #f7fafc;
    color: #e53e3e;
    border-left-color: #e53e3e;
    transform: translateX(5px);
}

.terms-sections {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.terms-section {
    padding: 3rem;
    border-bottom: 1px solid #e2e8f0;
}

.terms-section:last-child {
    border-bottom: none;
}

.terms-section h2 {
    color: #2d3748;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e53e3e;
}

.terms-section h3 {
    color: #4a5568;
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
}

.terms-section h4 {
    color: #2d3748;
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.terms-section p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.terms-section ul {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.terms-section li {
    margin-bottom: 0.5rem;
}

.terms-section a {
    color: #e53e3e;
    text-decoration: none;
    font-weight: 500;
}

.terms-section a:hover {
    text-decoration: underline;
}

/* About Page Specific Styles */
.about-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.about-section {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-section h2 {
    color: #2d3748;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e53e3e;
}

.about-section h2 i {
    margin-right: 0.8rem;
    color: #e53e3e;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    text-align: center;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: #e53e3e;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.1);
}

.service-item i {
    font-size: 3rem;
    color: #e53e3e;
    margin-bottom: 1rem;
}

.service-item h3 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.features-list {
    margin-top: 2rem;
}

.feature-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f7fafc;
    border-radius: 8px;
    border-left: 4px solid #e53e3e;
}

.feature-point i {
    color: #e53e3e;
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.feature-point h4 {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-point p {
    color: #4a5568;
    margin: 0;
    line-height: 1.6;
}

.infrastructure-grid,
.team-roles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.infra-item,
.role-item {
    text-align: center;
    padding: 2rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.infra-item:hover,
.role-item:hover {
    border-color: #e53e3e;
    background: #f7fafc;
}

.infra-item i,
.role-item i {
    font-size: 2.5rem;
    color: #e53e3e;
    margin-bottom: 1rem;
}

.infra-item h4,
.role-item h4 {
    color: #2d3748;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    padding: 2rem;
    background: #f7fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: #e53e3e;
    background: white;
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.1);
}

.contact-method i {
    font-size: 2rem;
    color: #e53e3e;
    margin-right: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-method h4 {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-method p {
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.contact-method small {
    color: #718096;
    font-size: 0.9rem;
    display: block;
}

.certifications {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.cert-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.cert-item i {
    color: #e53e3e;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.cert-item span {
    color: #2d3748;
    font-weight: 500;
}

.about-cta {
    background: linear-gradient(135deg, #e53e3e, #c53030);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-buttons .btn-primary {
    background: white;
    color: #e53e3e;
}

.cta-buttons .btn-primary:hover {
    background: #f7fafc;
    transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #e53e3e;
    transform: translateY(-2px);
}

/* Special sections for terms pages */
.prohibited-activities,
.data-categories,
.usage-purposes,
.sharing-scenarios,
.security-measures,
.retention-periods,
.privacy-rights,
.credit-scenarios,
.downtime-compensation,
.dispute-process {
    margin: 2rem 0;
}

.prohibited-activities h4,
.data-categories h4,
.usage-purposes h4,
.sharing-scenarios h4,
.security-measures h4,
.retention-periods h4,
.privacy-rights h4,
.credit-scenarios h4,
.downtime-compensation h4,
.dispute-process h4 {
    color: #2d3748;
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 8px;
    border-left: 4px solid #e53e3e;
}

.prohibited-activities h4 i,
.data-categories h4 i,
.usage-purposes h4 i,
.sharing-scenarios h4 i,
.security-measures h4 i,
.retention-periods h4 i,
.privacy-rights h4 i,
.credit-scenarios h4 i,
.downtime-compensation h4 i,
.dispute-process h4 i {
    margin-right: 0.8rem;
    color: #e53e3e;
}

.legal-basis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.basis-item {
    padding: 2rem;
    background: #f7fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
}

.basis-item:hover {
    border-color: #e53e3e;
    background: white;
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.1);
}

.basis-item i {
    font-size: 2.5rem;
    color: #e53e3e;
    margin-bottom: 1rem;
}

.basis-item h4 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.basis-item p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
}

.guarantee-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.guarantee-item {
    text-align: center;
    padding: 2rem;
    background: #f7fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.guarantee-item:hover {
    border-color: #e53e3e;
    background: white;
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.1);
}

.guarantee-item i {
    font-size: 3rem;
    color: #e53e3e;
    margin-bottom: 1rem;
}

.guarantee-item h4 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.eligibility-criteria {
    margin: 2rem 0;
}

.non-refundable {
    margin: 2rem 0;
}

.refund-steps {
    margin: 2rem 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 2rem;
    background: #f7fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.step-number {
    background: #e53e3e;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #4a5568;
    margin: 0;
    line-height: 1.6;
}

.refund-details {
    margin: 2rem 0;
    padding: 2rem;
    background: #f7fafc;
    border-radius: 8px;
    border-left: 4px solid #e53e3e;
}

.sla-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.sla-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.sla-table th,
.sla-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.sla-table th {
    background: #e53e3e;
    color: white;
    font-weight: 600;
}

.sla-table tr:hover {
    background: #f7fafc;
}

.contact-requirements {
    margin: 2rem 0;
    padding: 2rem;
    background: #f7fafc;
    border-radius: 8px;
    border-left: 4px solid #e53e3e;
}

.contact-requirements h4 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.contact-requirements h4 i {
    margin-right: 0.8rem;
    color: #e53e3e;
}

.legal-contact {
    background: #2d3748;
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.legal-contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.legal-contact p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-btn {
    padding: 1rem 2rem;
    background: #e53e3e;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-btn:hover {
    background: #c53030;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.3);
}

.guarantee-section {
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    padding: 3rem 0;
}

.guarantee-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 2rem 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 6px solid #e53e3e;
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.guarantee-content i {
    font-size: 3rem;
    color: #e53e3e;
}

.guarantee-content h3 {
    color: #2d3748;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.guarantee-content p {
    color: #4a5568;
    margin: 0;
    line-height: 1.6;
}

.guarantee-actions .btn-primary {
    padding: 1rem 2rem;
    background: #e53e3e;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.guarantee-actions .btn-primary:hover {
    background: #c53030;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.3);
}

/* Responsive Design */
@media (max-width: 968px) {
    .legal-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .toc-section {
        position: static;
        order: 2;
    }
    
    .terms-sections {
        order: 1;
    }
    
    .legal-hero h1 {
        font-size: 2.5rem;
    }
    
    .terms-section,
    .about-section {
        padding: 2rem;
    }
    
    .guarantee-banner {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .legal-hero {
        padding: 6rem 0 3rem;
    }
    
    .legal-hero h1 {
        font-size: 2rem;
    }
    
    .legal-meta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .services-grid,
    .infrastructure-grid,
    .team-roles {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .legal-basis,
    .guarantee-details {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .cta-buttons,
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .guarantee-banner {
        padding: 1.5rem;
    }
}

/* AI Chatbot Widget Styles */
.chatbot-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.chatbot-toggle {
    background: linear-gradient(135deg, #e53e3e, #c53030);
    color: white;
    border-radius: 50px;
    padding: 1rem 1.5rem;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(229, 62, 62, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.chatbot-toggle::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.6s ease;
}

.chatbot-toggle:hover::before {
    left: 100%;
}

.chatbot-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(229, 62, 62, 0.4);
}

.chatbot-toggle i {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

.chat-badge {
    font-size: 0.9rem;
    white-space: nowrap;
}

.chatbot-window {
    position: absolute;
    bottom: 5rem;
    right: 0;
    width: 380px;
    height: 500px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
}

.chatbot-window:not(.hidden) {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.chatbot-header {
    background: linear-gradient(135deg, #e53e3e, #c53030);
    color: white;
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    font-size: 1rem;
}

.chatbot-title i {
    font-size: 1.2rem;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.chatbot-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #ffffff;
}

.chatbot-messages::-webkit-scrollbar {
    width: 4px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: #e53e3e;
    border-radius: 4px;
}

.message {
    display: flex;
    gap: 0.8rem;
    max-width: 80%;
    animation: messageSlideIn 0.3s ease;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bot-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e53e3e, #c53030);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.user-message .message-avatar {
    background: linear-gradient(135deg, #4a5568, #2d3748);
}

.message-content {
    background: white;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    color: #2d3748;
}

.user-message .message-content {
    background: #e53e3e;
    color: white;
    border-color: #c53030;
}

.message-content p {
    margin: 0;
    line-height: 1.5;
    font-size: 0.9rem;
    color: inherit;
}

.bot-message .message-content {
    background: white;
    color: #2d3748;
}

.user-message .message-content {
    background: #e53e3e;
    color: white;
    border-color: #c53030;
}

.recommendation-card {
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    border: 2px solid #e53e3e;
    border-radius: 12px;
    padding: 1rem;
    margin: 0.5rem 0;
    transition: all 0.3s ease;
    color: #2d3748;
}

.recommendation-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.15);
}

.rec-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.rec-title {
    font-weight: 600;
    color: #e53e3e;
    font-size: 1rem;
}

.rec-price {
    font-weight: 700;
    color: #2d3748;
    font-size: 1.1rem;
}

.rec-specs {
    font-size: 0.8rem;
    color: #4a5568;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.rec-button {
    background: #e53e3e;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    width: 100%;
}

.rec-button:hover {
    background: #c53030;
    transform: translateY(-1px);
}

.chatbot-quick-options {
    padding: 1rem;
    background: white;
    border-top: 1px solid #e2e8f0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.quick-option {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #4a5568;
}

.quick-option:hover {
    background: #e53e3e;
    color: white;
    border-color: #c53030;
    transform: translateY(-1px);
}

.quick-option i {
    font-size: 1rem;
    color: #e53e3e;
}

.quick-option:hover i {
    color: white;
}

.chatbot-input {
    padding: 1rem;
    background: white;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.chatbot-input input {
    flex: 1;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.chatbot-input input:focus {
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.chatbot-input button {
    background: #e53e3e;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chatbot-input button:hover {
    background: #c53030;
    transform: scale(1.05);
}

.typing-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.typing-dots {
    display: flex;
    gap: 3px;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: #e53e3e;
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .chatbot-widget {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }
    
    .chatbot-window {
        width: 100%;
        height: 70vh;
        max-height: 500px;
        bottom: 5rem;
        right: 0;
        left: 0;
    }
    
    .chatbot-toggle {
        position: fixed;
        bottom: 1rem;
        right: 1rem;
        left: auto;
        width: auto;
    }
    
    .chat-badge {
        display: none;
    }
    
    .chatbot-quick-options {
        grid-template-columns: 1fr;
    }
    
    .quick-option {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .chatbot-window {
        height: 80vh;
        border-radius: 12px;
    }
    
    .chatbot-header {
        padding: 1rem;
    }
    
    .chatbot-title {
        font-size: 0.9rem;
    }
    
    .message {
        max-width: 90%;
    }
    
    .recommendation-card {
        padding: 0.8rem;
    }
    
    .rec-title {
        font-size: 0.9rem;
    }
    
    .rec-price {
        font-size: 1rem;
    }
}

/* Order Page Styles */
.order-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.order-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(229, 62, 62, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(229, 62, 62, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.order-hero-content {
    position: relative;
    z-index: 2;
}

.order-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #e53e3e, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.order-hero h1 i {
    margin-right: 1rem;
    color: #e53e3e;
    -webkit-text-fill-color: #e53e3e;
}

.order-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.order-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.order-badges .badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.order-badges .badge i {
    color: #e53e3e;
}

.order-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.order-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.plan-selection h2 {
    color: #2d3748;
    font-size: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #e53e3e;
}

.plan-selection h2 i {
    margin-right: 1rem;
    color: #e53e3e;
}

.plan-category {
    margin-bottom: 3rem;
}

.plan-category h3 {
    color: #4a5568;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.plan-category h3 i {
    color: #e53e3e;
    font-size: 1.8rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.plan-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(229, 62, 62, 0.15);
    border-color: #e53e3e;
}

.plan-card.selected {
    border-color: #e53e3e;
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(229, 62, 62, 0.2);
}

.plan-card.popular {
    border-color: #e53e3e;
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #e53e3e, #c53030);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.plan-header h4 {
    color: #2d3748;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 2rem;
    font-weight: 700;
    color: #e53e3e;
}

.plan-price span {
    font-size: 1rem;
    color: #4a5568;
    font-weight: 400;
}

.plan-specs {
    margin-bottom: 2rem;
}

.plan-specs .spec {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #4a5568;
    font-size: 0.9rem;
}

.plan-specs .spec i {
    color: #e53e3e;
    width: 20px;
    text-align: center;
}

.select-plan-btn {
    width: 100%;
    background: linear-gradient(45deg, #e53e3e, #c53030);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.select-plan-btn:hover {
    background: linear-gradient(45deg, #c53030, #9b2c2c);
    transform: translateY(-2px);
}

.plan-card.selected .select-plan-btn {
    background: linear-gradient(45deg, #38a169, #2f855a);
}

.plan-card.selected .select-plan-btn:hover {
    background: linear-gradient(45deg, #2f855a, #276749);
}

.order-summary {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.summary-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.summary-card h3 {
    color: #2d3748;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e53e3e;
}

.summary-card h3 i {
    margin-right: 0.8rem;
    color: #e53e3e;
}

.no-selection {
    text-align: center;
    color: #718096;
    font-style: italic;
    padding: 2rem;
}

.plan-summary h4 {
    color: #2d3748;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.plan-summary .plan-price {
    color: #e53e3e;
    font-size: 1.5rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #2d3748;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group label i {
    margin-right: 0.5rem;
    color: #e53e3e;
    width: 15px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.billing-cycle {
    margin-bottom: 2rem;
}

.billing-cycle label {
    display: block;
    color: #2d3748;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.cycle-options {
    display: grid;
    gap: 0.8rem;
}

.cycle-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cycle-option:hover {
    border-color: #e53e3e;
    background: #f7fafc;
}

.cycle-option input[type="radio"] {
    margin-right: 0.8rem;
    width: auto;
}

.cycle-option input[type="radio"]:checked + span {
    color: #e53e3e;
    font-weight: 600;
}

.cycle-option small {
    color: #38a169;
    font-weight: 500;
    margin-left: 0.5rem;
}

.order-total {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.total-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #4a5568;
    font-size: 0.9rem;
}

.total-line.total {
    border-top: 1px solid #e2e8f0;
    padding-top: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
}

.payment-methods {
    margin-bottom: 2rem;
}

.payment-methods h4 {
    color: #2d3748;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.payment-methods h4 i {
    margin-right: 0.5rem;
    color: #e53e3e;
}

.payment-options {
    display: grid;
    gap: 0.8rem;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: #e53e3e;
    background: #f7fafc;
}

.payment-option input[type="radio"] {
    margin-right: 0.8rem;
    width: auto;
}

.payment-option input[type="radio"]:checked + span {
    color: #e53e3e;
    font-weight: 600;
}

.payment-option span i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.terms-acceptance {
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.2rem;
    width: auto;
}

.checkbox-label a {
    color: #e53e3e;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.checkout-btn {
    width: 100%;
    background: linear-gradient(45deg, #e53e3e, #c53030);
    color: white;
    border: none;
    padding: 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.checkout-btn:hover {
    background: linear-gradient(45deg, #c53030, #9b2c2c);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.3);
}

.checkout-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.order-benefits {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.order-benefits h4 {
    color: #2d3748;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e53e3e;
}

.order-benefits h4 i {
    margin-right: 0.8rem;
    color: #e53e3e;
}

.order-benefits ul {
    list-style: none;
    padding: 0;
}

.order-benefits li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #4a5568;
    font-size: 0.9rem;
}

.order-benefits li i {
    color: #38a169;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .order-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .order-summary {
        position: static;
        order: 1;
    }
    
    .plan-selection {
        order: 2;
    }
}

@media (max-width: 768px) {
    .order-hero {
        padding: 6rem 0 3rem;
    }
    
    .order-hero h1 {
        font-size: 2.5rem;
    }
    
    .order-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card {
        padding: 1.5rem;
    }
    
    .summary-card {
        padding: 1.5rem;
    }
    
    .cycle-options,
    .payment-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .order-hero h1 {
        font-size: 2rem;
    }
    
    .order-section {
        padding: 2rem 0;
    }
    
    .plan-card {
        padding: 1rem;
    }
    
    .summary-card {
        padding: 1rem;
    }
    
    .order-benefits {
        padding: 1rem;
    }
} 