* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #f8fbff;
    color: #333;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
.small-title,
.feature-list li,
.buttons,
.price-box,
.faq-question {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Match key UI fonts with dedicated server page */
.hero-badge,
.hero-title,
.section-header h2,
.pricing-table thead th,
.row-label,
.currency,
.amount,
.decimal,
.section-header-specs h3,
.expand-btn{
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}


.container {
    /* max-width: 1400px; */
    margin: 0 auto;
    padding: 0 80px;
}

/* Match dedicated page title styles */
.vps-title {
    font-size: 42px;
    font-weight: 800;
    color: #0a0a0a;
    margin-bottom: 18px;
    line-height: 1.3;
    letter-spacing: -0.02em;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.gradient-blue {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Hero Section */
.hero {
    /* background: linear-gradient(135deg, #1a4d4d 0%, #2d7a7a 50%, #1a4d4d 100%); */
    background: linear-gradient(8deg,#3b82f6, #1d4ed8);
    /* min-height: min(60vh, 520px); */
    padding: 60px 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    /* right: 0; */
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    /* opacity: 0.6; */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    /* margin: 0 auto; */
    padding: 0 80px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    color: white;
    font-size: clamp(1.6rem, 3.5vw + 0.8rem, 3rem);
    font-weight: 700;
    line-height: 1.15;
    /* margin-bottom: 30px; */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: white;
    color: #1a4d4d;
}

/* Main Content */
.main-content {
    /* background: #f5f5f5; */
    padding: 20px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    margin-top: 30px;
}

.section-header h2 {
    font-size: clamp(1.25rem, 2.2vw + 0.6rem, 2.2rem);
    color: #333;
    margin-bottom: clamp(16px, 2.5vw, 30px);
    letter-spacing: 0.5px;
}

#gblue
 {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}



.section-description {
    display: flex;
    justify-content: center;
    gap: 40px;
    /* max-width: 800px; */
    margin: 0 auto;
    justify-self: center;
}

.description-left,
.description-right {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.description-left,
.description-right p{
    max-width: 550px;
}
.description-left strong,
.description-right strong {
    color: #333;
}

/* Pricing Grid */
/* Pricing Table */
.pricing-table {
    margin-bottom: 60px;
}

.pricing-table .table-responsive {
    /* Remove horizontal scroll */
    overflow-x: hidden;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pricing-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    /* Let the table shrink on small screens */
    min-width: 0;
    table-layout: fixed;
}

.pricing-table thead th {
    background: #1d73ff;
    /* background: linear-gradient(8deg,#3b82f6, #1d4ed8); */
    color: white;
    text-align: left;
    padding: 16px 20px;
    font-weight: 600;
}

.pricing-table thead th:first-child {
    border-top-left-radius: 8px;
}

.pricing-table thead th:last-child {
    border-top-right-radius: 8px;
}

.pricing-table tbody td {
    background: white;
    border-top: 1px solid #f0f0f0;
    padding: 16px 20px;
    vertical-align: middle;
}

/* Allow cells to wrap so table can shrink without scrolling */
.pricing-table th,
.pricing-table td {
    white-space: normal;
    word-break: break-word;
}

.pricing-table tbody tr:nth-child(even) td {
    background: #fafafa;
}

.pricing-table .row-label {
    font-weight: 600;
    color: #333;
    width: 200px;
}

.pricing-table .featured {
    background: #000000;
        /* background: linear-gradient(135deg, #1d4ed8, #2563eb); */
}

/* Remove old card styles (no longer used) */

/* Pricing values reused in table */

.card-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 10px;
}

.currency {
    font-size: 1.2rem;
    font-weight: 500;
    color: #666;
}

.amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0 2px;
}

.decimal {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.period {
    font-size: 0.9rem;
    color: #666;
}

.setup-fee {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 20px;
}

.configure-btn {
        /* background: linear-gradient(135deg, #000000, #1e1e1e); */
        background: #3b82f6;
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-bottom: 10px;
}


.configure-btn:hover {
    background: #555;
}

.configure-btn.featured:hover {
    background: #1a4d4d;
}

.vat-note {
    font-size: 0.8rem;
    color: #999;
}

.card-specs {
    padding: 20px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.spec-value {
    font-size: 0.85rem;
    color: #333;
}

.speed-dots {
    display: flex;
    gap: 3px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.dot.filled {
    background: #2d7a7a;
}

.product-details {
    margin-top: 8px;
}

.product-details a {
    color: #2d7a7a;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
}

.product-details a:hover {
    text-decoration: underline;
}

/* Specifications Table */
.pricing-cards-mobile {
    display: none;
    gap: 16px;
}

.pricing-cards-mobile .mobile-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 16px;
}

.pricing-cards-mobile .mobile-card h4 {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.pricing-cards-mobile .mobile-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid #f0f0f0;
}

.pricing-cards-mobile .mobile-row:first-of-type {
    border-top: none;
}

.pricing-cards-mobile .mobile-label {
    color: #666;
    font-size: 0.9rem;
}

.pricing-cards-mobile .mobile-value {
    text-align: right;
}
.specs-table {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 40px;
}

.specs-section {
    border-bottom: 1px solid #eee;
}

.specs-section:last-child {
    border-bottom: none;
}

.section-header-specs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: #1d73ff;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.section-header-specs:hover {
    background: #444;
}

.section-header-specs h3 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.expand-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1rem;
}

.expand-icon {
    transition: transform 0.3s ease;
}

.specs-content {
    display: none;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.specs-content.expanded {
    display: block;
}

.spec-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    border-bottom: 1px solid #f0f0f0;
    min-height: 60px;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row:nth-child(even) {
    background: #fafafa;
}

.spec-row .spec-label {
    padding: 20px 30px;
    font-weight: 600;
    color: #000000;
    border-right: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.spec-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.spec-values .spec-value {
    padding: 20px 15px;
    border-right: 1px solid #f0f0f0;
    font-size: 0.85rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
}

.spec-values .spec-value:last-child {
    border-right: none;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero { min-height: 42vh; padding: 24px 0; }
    .hero-content { padding: 0 24px; }
    .hero-title { font-size: clamp(1.3rem, 4.5vw + 0.6rem, 2rem); }
    
    .section-description {
        flex-direction: column;
        gap: 16px;
        text-align: left;
    }
    
    .pricing-table table {
        min-width: 0; /* prevent horizontal scrolling on small screens */
        display: none; /* hide wide table on small screens */
    }

    .pricing-cards-mobile {
        display: grid;
        grid-template-columns: 1fr;
    }

    .pricing-table thead th,
    .pricing-table tbody td {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
    
    .spec-row {
        grid-template-columns: 1fr;
    }
    
    .spec-values {
        grid-template-columns: 1fr;
    }
    
    .spec-values .spec-value {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .spec-values .spec-value:last-child {
        border-bottom: none;
    }
    
    .section-header-specs {
        padding: 15px 20px;
    }
    
    .spec-row .spec-label {
        padding: 15px 15px;
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .section-header h2 { font-size: clamp(1.1rem, 5.2vw, 1.4rem); text-align: left; }
    .section-description { gap: 12px; }
    .hero { min-height: 38vh; padding: 20px 0; }
    .hero-content { padding: 0 16px; }
    .hero-title { font-size: clamp(1.15rem, 5.5vw + 0.5rem, 1.6rem); }
    .description-left, .description-right{
        font-size: 10px;
    }
    .section-header{
        margin-top: 0px;
    }
    .container {
        padding: 0 15px;
    }
    
    .main-content {
        padding: 40px 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-card {
    animation: fadeInUp 0.6s ease forwards;
}

.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; }
.pricing-card:nth-child(4) { animation-delay: 0.4s; }

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for accessibility */
.configure-btn:focus,
.hero-cta:focus,
.expand-btn:focus {
    outline: 2px solid #2d7a7a;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .hero {
        background: #1a4d4d !important;
        -webkit-print-color-adjust: exact;
        color-adjust: exact;
    }
    
    .pricing-table .table-responsive {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .specs-content {
        display: block !important;
    }
}

/* Data Center Section */
.datacenter-section {
    padding: 40px 5%;
    background: #f8fbff;
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 30px 30px;
    position: relative;
    overflow: hidden;
}

.datacenter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.datacenter-globe {
    flex: 1;
    text-align: center;
    position: relative;
}

.datacenter-globe::before,
.datacenter-globe::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #3b82f6;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.3);
    animation: pulse 2s infinite;
}

.datacenter-globe::before {
    top: 30%;
    right: 35%;
}

.datacenter-globe::after {
    bottom: 40%;
    left: 40%;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

.datacenter-globe img {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.datacenter-content {
    flex: 1;
}

.datacenter-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0a0a0a;
    margin-bottom: 20px;
    text-align: left;
}

.datacenter-content p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: left;
    max-width: 100%;
}

.datacenter-btn {
    padding: 16px 32px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.datacenter-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

/* Media queries for datacenter section */
@media (max-width: 900px) {
    .datacenter-container {
        flex-direction: column;
        gap: 30px;
    }

    .datacenter-globe {
        order: 1;
    }

    .datacenter-content {
        order: 2;
        text-align: center;
    }

    .datacenter-content h2 {
        text-align: center;
    }

    .datacenter-content p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .datacenter-btn {
        margin: 10px auto;
        display: block;
    }
}


/* Customer Reviews */
.customer-reviews {
    padding: 40px 5%;
    /* background: #fff; */
}

.reviews-wrap {
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 28px 0;
}

.reviews-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 28px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-title {
    margin-top: 20px;
    font-weight: 700;
    letter-spacing: .08em;
    color: #111;
    text-transform: uppercase;
    line-height: 1.2;
    font-size: x-large;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

/* Responsive behavior for customer reviews */
@media (max-width: 1024px) {
    .reviews-layout {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: left;
    }

    .reviews-title {
        display: flex;
        gap: 8px;
        align-items: baseline;
        font-size: 1.25rem;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .customer-reviews {
        padding: 30px 5%;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .review p {
        font-size: 14px;
        line-height: 1.7;
    }
}

.review p {
    color: #374151;
    line-height: 1.9;
    font-size: 15.5px;
    word-break: break-word;
}

/* Drop-cap effect like the reference */
.review p::first-letter {
    color: #2563eb;
    font-weight: 600;
    font-size: 1.4rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
}

.review-line {
    display: inline-block;
    width: 34px;
    height: 2px;
    background: #111;
    flex: 0 0 auto;
}

.author-name {
    font-weight: 800;
    color: #0a0a0a;
}

.author-role {
    color: #6b7280;
    font-size: 13px;
    margin-top: 2px;
}


/* Guarantee Section */

.guarantee-section {
    padding: 30px 80px;
    background: transparent;
}

.guarantee-container {
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.guarantee-content {
    flex: 1;
    padding: 50px;
}

.guarantee-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.guarantee-content p {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 30px;
}

.guarantee-image {
    flex: 1;
    text-align: center;
    position: relative;
}

.guarantee-image img {
    max-width: 60%;
    height: auto;
    border-radius: 16px;
}

@media (max-width: 992px) {
    .guarantee-container {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }

    .guarantee-content {
        padding: 20px 0;
        text-align: center;
    }

    .guarantee-content h2 {
        font-size: 30px;
    }

    .guarantee-content p {
        font-size: 16px;
    }

}

@media (max-width: 768px) {
    .guarantee-section {
        padding: 30px 5%;
    }

    .empower-image img {
        max-width: 100%;
    }

    .guarantee-container {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .guarantee-section {
        padding: 20px 5%;
    }

    .guarantee-container {
        padding: 20px;
        gap: 20px;
        border-radius: 16px;
    }

    .guarantee-content {
        padding: 10px 0;
    }

    .guarantee-content h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .guarantee-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }

}