/* GPU Page Styles */
.gpu-page {
    --primary-color: #ff6b4a;
    --secondary-color: #0a192f;
    --text-color: #333;
    --text-light: #666;
    --border-radius: 20px;
    --transition: all 0.3s ease;
    --bg-dark: #0a192f;
}

/* Hero Section Styles */
.gpu-page .gpu-hero {
    position: relative;
    min-height: 100vh;
    color: white;
    overflow: hidden;
}

.gpu-page .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.3) saturate(1.2);
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.gpu-page .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #0d1b2a 100%);
}

.gpu-page .gpu-hero-content {
    position: relative;
    z-index: 2;
    padding: 180px 0 100px;
    text-align: center;
}

/* Hero Badge */
.gpu-page .hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 107, 74, 0.1);
    border: 1px solid rgba(255, 107, 74, 0.3);
    border-radius: 25px;
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 30px;
    backdrop-filter: blur(5px);
}

/* Main Title */
.gpu-page .gpu-hero-content h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
    font-family: Cardo, serif;
}

.gpu-page .highlight {
    background: linear-gradient(120deg, #ff6b4a, #ff8f6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.gpu-page .hero-description {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Button Styles */
.gpu-page .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.gpu-page .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gpu-page .btn-icon {
    transition: transform 0.3s ease;
}

.gpu-page .btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Stats Section */
.gpu-page .hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 60px;
}

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

.gpu-page .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.gpu-page .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gpu-page .stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Scroll Indicator */
.gpu-page .scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.gpu-page .mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.gpu-page .wheel {
    width: 2px;
    height: 8px;
    background: white;
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

/* Service Section */
.gpu-page .gpu-service {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.gpu-page .service-grid {
    display: grid;
    gap: 60px;
}

.gpu-page .service-content h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-family: Cardo, serif;
}

.gpu-page .highlight-text {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 40px;
}

.gpu-page .feature-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gpu-page .feature-item {
    padding: 30px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.gpu-page .feature-item:hover {
    transform: translateY(-10px);
}

.gpu-page .feature-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 2rem;
}

.gpu-page .feature-text h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Pricing Section */
.gpu-page .gpu-pricing {
    padding: 120px 0;
    background-color: white;
}

/* Section Header */
.gpu-page .section-header {
    text-align: left;
    margin-bottom: 80px;
}

.gpu-page .section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-family: Cardo, serif;
}

.gpu-page .section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 1200px;
}

/* Pricing Grid */
.gpu-page .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

/* Pricing Card */
.gpu-page .pricing-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: visible;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease; /* 添加过渡效果 */
}

/* Featured Card */
.gpu-page .pricing-card.featured {
    transform: translateY(-20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-color);
    z-index: 1;
}

/* 确保featured卡片的header和footer也有正确的圆角 */
.gpu-page .pricing-card.featured .card-header {
    border-radius: calc(var(--border-radius) - 2px) calc(var(--border-radius) - 2px) 0 0; /* 减去边框宽度 */
}

.gpu-page .pricing-card.featured .card-footer {
    border-radius: 0 0 calc(var(--border-radius) - 2px) calc(var(--border-radius) - 2px); /* 减去边框宽度 */
}

.gpu-page .featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(255, 107, 74, 0.3);
    z-index: 3; /* 增加 z-index 值 */
}

/* Card Header */
.gpu-page .card-header {
    padding: 40px 30px;
    background: var(--secondary-color);
    color: white;
    text-align: center;
    position: relative;
    z-index: 1;
    border-radius: var(--border-radius) var(--border-radius) 0 0; /* 添加上方圆角 */
}

.gpu-page .card-header-content {
    position: relative;
    z-index: 1;
}

.gpu-page .card-header h3 {
    margin-bottom: 20px;
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.gpu-page .price-wrapper {
    margin-bottom: 15px;
}

.gpu-page .price {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    font-family: 'Inter', sans-serif;
}

.gpu-page .price-period {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.gpu-page .price-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 10px;
}

/* Card Body */
.gpu-page .card-body {
    padding: 40px 30px;
    flex: 1;
    z-index: 1;
    background: white; /* 确保背景色 */
}

.gpu-page .specs-group {
    margin-bottom: 30px;
}

.gpu-page .specs-group h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.gpu-page .specs-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gpu-page .specs-list li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

.gpu-page .specs-list li i {
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.gpu-page .specs-list li strong {
    color: var(--secondary-color);
    margin-right: 5px;
}

.gpu-page .specs-list ul {
    list-style: none;
    margin: 8px 0 0 20px;
    padding: 0;
}

.gpu-page .specs-list ul li {
    margin-bottom: 6px;
    padding-left: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.gpu-page .specs-list ul li:before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Card Footer */
.gpu-page .card-footer {
    padding: 30px;
    text-align: center;
    background: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1;
    border-radius: 0 0 var(--border-radius) var(--border-radius); /* 添加下方圆角 */
}

.gpu-page .card-footer .btn {
    width: 100%;
    justify-content: center;
}

/* Hover Effects */
.gpu-page .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(10, 25, 47, 0.1), /* 深色阴影 */
                0 0 0 2px rgba(10, 25, 47, 0.05); /* 轮廓效果 */
}

.gpu-page .pricing-card.featured:hover {
    transform: translateY(-30px);
    box-shadow: 0 30px 60px rgba(255, 107, 74, 0.15), /* 主色调阴影 */
                0 0 0 2px var(--primary-color); /* 保持主色调边框 */
}

/* Responsive Design */
@media (max-width: 992px) {
    .gpu-page .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .gpu-page .pricing-card.featured {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .gpu-page .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .gpu-page .pricing-card.featured {
        transform: translateY(0);
        order: -1; /* 确保featured卡片在移动端显示在最上方 */
    }

    .gpu-page .card-header {
        padding: 30px 20px;
    }

    .gpu-page .card-body {
        padding: 30px 20px;
    }
}


/* Additional GPUs Section */
.gpu-page .additional-gpus {
    margin-top: 80px;
}

/* Section Divider */
.gpu-page .section-divider {
    text-align: center;
    position: relative;
    margin-bottom: 50px;
}

.gpu-page .section-divider:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.gpu-page .divider-text {
    background: white;
    padding: 0 20px;
    color: var(--text-light);
    font-size: 1.1rem;
    position: relative;
}

/* GPU Categories */
.gpu-page .gpu-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.gpu-page .gpu-category {
    background: #f8f9fa;
    border-radius: var(--border-radius);
    padding: 30px;
}

.gpu-page .gpu-category h3 {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-bottom: 20px;
    font-weight: 600;
}

/* GPU List */
.gpu-page .gpu-list {
    display: grid;
    gap: 15px;
}

.gpu-page .gpu-item {
    display: flex;
    align-items: center;
    justify-content: space-between; /* 两端对齐 */
    padding: 15px 20px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* 左侧信息组合 */
.gpu-page .gpu-info {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0; /* 防止 flex 项目过度扩展 */
}

/* GPU Name and Badge Container */
.gpu-page .gpu-name-wrapper {
    display: flex;
    align-items: center;
    min-width: 0;
}


.gpu-page .btn-text {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 5px 10px;
    transition: all 0.3s ease;
}



.gpu-page .btn-text:hover {
    color: var(--primary-color);
}

.gpu-page .btn-deploy {
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gpu-page .btn-deploy:hover {
    background: #ff8f6b;
    transform: translateY(-2px);
}

.gpu-page .gpu-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    white-space: nowrap;
}

.gpu-page .gpu-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* 右侧价格和操作按钮部分 */
.gpu-page .gpu-right {
    display: flex;
    align-items: center;
    gap: 30px; /* 价格和按钮之间的间距 */
    flex-shrink: 0; /* 防止压缩 */
}

.gpu-page .gpu-name {
    font-weight: 500;
    color: var(--secondary-color);
    margin-right: 8px;
    white-space: nowrap;
}

.gpu-page .gpu-badge {
    background: var(--primary-color);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    white-space: nowrap;
}

.gpu-page .gpu-price {
    color: var(--text-light);
    font-size: 0.9rem;
    white-space: nowrap;
}


/* Custom Solution */
.gpu-page .custom-solution {
    background: linear-gradient(45deg, var(--secondary-color), #1a365d);
    border-radius: var(--border-radius);
    padding: 40px;
    color: white;
    margin-top: 40px;
}

.gpu-page .custom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.gpu-page .custom-text h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.gpu-page .custom-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.gpu-page .btn-outline {
    border: 2px solid white;
    color: white;
    background: transparent;
    padding: 12px 30px;
    border-radius: 25px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.gpu-page .btn-outline:hover {
    background: white;
    color: var(--secondary-color);
}

/* GPU Catalog Link */
.gpu-page .gpu-catalog-link {
    margin: 40px 0;
    text-align: center;
}

.gpu-page .catalog-button {
    display: inline-block;
    padding: 20px 40px;
    background: #f8f9fa;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--secondary-color);
}

.gpu-page .catalog-button:hover {
    background: #f0f2f5;
    transform: translateY(-2px);
}

.gpu-page .catalog-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gpu-page .catalog-text h3 {
    font-family: Cardo, serif;
    font-size: 1.25rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.gpu-page .catalog-text p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.gpu-page .catalog-icon {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.gpu-page .catalog-button:hover .catalog-icon {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .gpu-page .gpu-categories {
        grid-template-columns: 1fr;
    }

    .gpu-page .custom-content {
        flex-direction: column;
        text-align: center;
    }
    .gpu-page .gpu-item {
        padding: 12px 15px; /* 稍微减少内边距 */
        gap: 10px; /* 减少间距 */
    }

    .gpu-page .btn-text,
    .gpu-page .btn-deploy {
        padding: 4px 12px; /* 稍微减少按钮内边距 */
        font-size: 0.85rem; /* 稍微减小字体 */
    }
}

@media (max-width: 768px) {
    .gpu-page .gpu-item {
        flex-wrap: wrap; /* 在更小的屏幕上允许换行 */
        justify-content: center;
        text-align: center;
    }

    .gpu-page .gpu-actions {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    .gpu-page .catalog-content {
        flex-direction: column;
        text-align: center;
    }

    .gpu-page .catalog-icon {
        display: none;
    }
}


/* Process Section */
.gpu-page .gpu-process {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.gpu-page .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.gpu-page .section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-family: Cardo, serif;
}

.gpu-page .section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.gpu-page .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.gpu-page .step {
    text-align: center;
    position: relative;
    padding: 30px 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
}

.gpu-page .step-number {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: #e9ecef;
    color: #666;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 1.25rem;
    font-weight: bold;
    transition: all 0.5s ease;
}

.gpu-page .step-content h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
}

.gpu-page .step-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.gpu-page .step-progress {
    position: absolute;
    top: 50%;
    right: -45px;
    width: 60px;
    height: 2px;
    background: #e9ecef;
    z-index: 1;
    transform: translateY(-50%);
}

/* Active State */
.gpu-page .step.active .step-number {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 107, 74, 0.3);
}

.gpu-page .step.active {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 74, 0.1);
}

.gpu-page .step.active .step-progress {
    background: var(--primary-color);
}

/* Animation Classes */
@keyframes activateStep {
    0% {
        background: #e9ecef;
        color: #666;
    }
    100% {
        background: var(--primary-color);
        color: white;
    }
}

@keyframes activateProgress {
    0% {
        transform: translateY(-50%) scaleX(0);
        background: var(--primary-color);
    }
    100% {
        transform: translateY(-50%) scaleX(1);
        background: var(--primary-color);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .gpu-page .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gpu-page .step-progress {
        display: none;
    }
}

@media (max-width: 576px) {
    .gpu-page .process-steps {
        grid-template-columns: 1fr;
    }
}
/* FAQ Section */
.gpu-page .faq-section {
    padding: 100px 0;
    background-color: white;
}

.gpu-page .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.gpu-page .section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 107, 74, 0.1);
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.gpu-page .section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-family: Cardo, serif;
}

.gpu-page .section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.gpu-page .faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.gpu-page .faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.gpu-page .faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.gpu-page .faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.gpu-page .question-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--secondary-color);
    flex: 1;
    padding-right: 20px;
}

.gpu-page .question-icon {
    position: relative;
    width: 24px;
    height: 24px;
}

.gpu-page .icon-plus,
.gpu-page .icon-minus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.gpu-page .icon-plus::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 16px;
    background: var(--primary-color);
    left: 7px;
    top: -7px;
    transition: all 0.3s ease;
}

.gpu-page .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gpu-page .answer-content {
    padding: 0 30px 25px;
    color: var(--text-light);
    line-height: 1.6;
}

.gpu-page .answer-content p {
    margin-bottom: 15px;
}

.gpu-page .answer-content ul {
    list-style: none;
    padding-left: 20px;
}

.gpu-page .answer-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.gpu-page .answer-content ul li:before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Active State */
.gpu-page .faq-item.active {
    background: white;
}

.gpu-page .faq-item.active .faq-question {
    color: var(--primary-color);
}

.gpu-page .faq-item.active .icon-plus::after {
    transform: rotate(90deg);
    opacity: 0;
}

.gpu-page .faq-item.active .faq-answer {
    max-height: 1000px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gpu-page .faq-question {
        padding: 20px;
    }
    
    .gpu-page .answer-content {
        padding: 0 20px 20px;
    }
    
    .gpu-page .question-text {
        font-size: 1rem;
    }
}

/* Animation Classes */
.gpu-page .fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s ease forwards;
}

.gpu-page .delay-1 {
    animation-delay: 0.2s;
}

.gpu-page .delay-2 {
    animation-delay: 0.4s;
}

.gpu-page .delay-3 {
    animation-delay: 0.6s;
}

/* Animations */
@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .gpu-page .feature-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .gpu-page .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gpu-page .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .gpu-page .step:nth-child(2):after {
        display: none;
    }

    .gpu-page .gpu-hero-content h1 {
        font-size: 3rem;
    }

    .gpu-page .hero-stats {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .gpu-page .gpu-hero-content {
        padding: 140px 0 80px;
    }

    .gpu-page .gpu-hero-content h1 {
        font-size: 2.5rem;
    }

    .gpu-page .hero-description {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .gpu-page .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .gpu-page .stat-divider {
        display: none;
    }

    .gpu-page .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .gpu-page .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .gpu-page .feature-list {
        grid-template-columns: 1fr;
    }

    .gpu-page .pricing-grid {
        grid-template-columns: 1fr;
    }

    .gpu-page .pricing-card.featured {
        transform: none;
    }

    .gpu-page .process-steps {
        grid-template-columns: 1fr;
    }

    .gpu-page .step:after {
        display: none;
    }
}