/* ==============================================
   Consulting Page Styles
   YourIT - Clean, modern design
============================================== */

/* Smooth scroll and anchor offset for fixed header */
html {
    scroll-behavior: smooth;
}

.type-detail-card[id] {
    scroll-margin-top: 100px;
}

#consulting-types {
    scroll-margin-top: 80px;
}

/* Hero Section */
.consulting-hero {
    position: relative;
    padding: 160px 0 140px;
    background: linear-gradient(180deg, #f8fafb 0%, #ffffff 100%);
    overflow: hidden;
}

.consulting-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(0, 212, 170, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.consulting-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.consulting-hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, rgba(0, 180, 216, 0.1) 100%);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.3;
    color: #191f28;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 20px;
    line-height: 1.6;
    color: #6b7684;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.btn-primary-lg {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    background: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
    color: #fff;
    border-radius: 16px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 212, 170, 0.35);
}

.btn-primary-lg i {
    font-size: 14px;
    transition: transform 0.3s;
}

.btn-primary-lg:hover i {
    transform: translateX(4px);
}

.btn-secondary-lg {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    background: #f2f4f6;
    color: #4e5968;
    border-radius: 16px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary-lg:hover {
    background: #e5e8eb;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

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

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: #191f28;
    line-height: 1.2;
    font-variant-numeric: tabular-nums;
}

.stat-number .unit {
    font-size: 28px;
    color: var(--primary);
    font-weight: 700;
}

/* Stat animation */
@keyframes countUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.stat-item {
    animation: countUp 0.6s ease-out forwards;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(3) { animation-delay: 0.2s; }
.stat-item:nth-child(5) { animation-delay: 0.3s; }

.stat-label {
    font-size: 14px;
    color: #8b95a1;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: #e5e8eb;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(0, 212, 170, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Hero Vendors */
.hero-vendors {
    margin-top: 60px;
}

.vendors-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding: 32px 48px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.vendor-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vendor-item img {
    height: 24px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}

.vendor-item.yourit-vendor img {
    height: 20px;
}

.vendor-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* YourIT Logo in Cloud Section */
.cloud-partner .yourit-logo {
    height: 48px;
    width: 48px;
    object-fit: contain;
}

/* Hero Illustration - Both Sides */
.hero-illustration {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 400px;
    pointer-events: none;
}

.hero-illustration.right {
    right: 10%;
}

.hero-illustration.left {
    left: 10%;
}

.illustration-item {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    animation: float 6s ease-in-out infinite;
}

.illustration-item i {
    font-size: 24px;
    background: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Right side items */
.hero-illustration.right .illustration-item.item-1 { width: 58px; height: 58px; top: 0; left: 15%; animation-delay: 0s; }
.hero-illustration.right .illustration-item.item-2 { width: 50px; height: 50px; top: 12%; right: 5%; animation-delay: 1s; }
.hero-illustration.right .illustration-item.item-3 { width: 64px; height: 64px; top: 28%; left: 0; animation-delay: 2s; }
.hero-illustration.right .illustration-item.item-4 { width: 46px; height: 46px; top: 42%; right: 15%; animation-delay: 0.5s; }
.hero-illustration.right .illustration-item.item-5 { width: 54px; height: 54px; top: 58%; left: 20%; animation-delay: 1.5s; }
.hero-illustration.right .illustration-item.item-6 { width: 48px; height: 48px; top: 72%; right: 0; animation-delay: 2.5s; }
.hero-illustration.right .illustration-item.item-7 { width: 52px; height: 52px; bottom: 8%; left: 5%; animation-delay: 0.8s; }
.hero-illustration.right .illustration-item.item-8 { width: 44px; height: 44px; bottom: 0; right: 25%; animation-delay: 1.8s; }

/* Left side items */
.hero-illustration.left .illustration-item.item-1 { width: 54px; height: 54px; top: 2%; right: 15%; animation-delay: 0.3s; }
.hero-illustration.left .illustration-item.item-2 { width: 48px; height: 48px; top: 15%; left: 5%; animation-delay: 1.3s; }
.hero-illustration.left .illustration-item.item-3 { width: 60px; height: 60px; top: 30%; right: 0; animation-delay: 2.3s; }
.hero-illustration.left .illustration-item.item-4 { width: 50px; height: 50px; top: 45%; left: 15%; animation-delay: 0.8s; }
.hero-illustration.left .illustration-item.item-5 { width: 44px; height: 44px; top: 60%; right: 10%; animation-delay: 1.8s; }
.hero-illustration.left .illustration-item.item-6 { width: 56px; height: 56px; top: 73%; left: 0; animation-delay: 2.8s; }
.hero-illustration.left .illustration-item.item-7 { width: 46px; height: 46px; bottom: 10%; right: 5%; animation-delay: 1.1s; }
.hero-illustration.left .illustration-item.item-8 { width: 42px; height: 42px; bottom: 0; left: 25%; animation-delay: 2.1s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Value Banner */
.value-banner {
    padding: 48px 0;
    background: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
}

.value-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.value-banner-text p {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
}

.value-banner-text strong {
    font-weight: 700;
}

.value-banner-icons {
    display: flex;
    align-items: center;
    gap: 32px;
}

.banner-icon-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.banner-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-icon i {
    font-size: 28px;
    color: #fff;
}

.banner-icon-item span {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
}

.banner-plus {
    font-size: 28px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
}

/* One-Stop Section */
.onestop-section {
    padding: 100px 0;
    background: #fff;
}

.onestop-section .section-title strong {
    background: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.onestop-services {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin: 60px 0;
}

.onestop-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    min-width: 120px;
}

.onestop-icon {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, rgba(0, 180, 216, 0.1) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.onestop-icon i {
    font-size: 36px;
    background: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.onestop-item:hover .onestop-icon {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 212, 170, 0.2);
    background: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
}

.onestop-item:hover .onestop-icon i {
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff;
    background-clip: text;
}

.onestop-item span {
    font-size: 15px;
    font-weight: 600;
    color: #4e5968;
}

.onestop-cta {
    text-align: center;
}

.btn-gradient-lg {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 48px;
    background: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
    color: #fff;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-gradient-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 212, 170, 0.4);
}

/* Types Detail Section */
.consulting-types-detail {
    padding: 120px 0;
    background: #f8fafb;
}

.types-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.type-detail-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid #e5e8eb;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.type-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.type-detail-card.highlighted {
    animation: cardHighlight 2s ease-out;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 212, 170, 0.2), 0 24px 48px rgba(0, 212, 170, 0.15);
}

@keyframes cardHighlight {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 212, 170, 0.4);
    }
    20% {
        transform: scale(1.02);
        box-shadow: 0 0 0 8px rgba(0, 212, 170, 0.2), 0 24px 48px rgba(0, 212, 170, 0.2);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 4px rgba(0, 212, 170, 0.1), 0 24px 48px rgba(0, 212, 170, 0.1);
    }
}

.type-detail-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px 32px 24px;
    border-bottom: 1px solid #f2f4f6;
}

.type-detail-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.type-detail-icon.infra {
    background: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
}

.type-detail-icon.security {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.type-detail-icon.marketing {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
}

.type-detail-icon i {
    font-size: 28px;
    color: #fff;
}

.type-detail-title h3 {
    font-size: 22px;
    font-weight: 800;
    color: #191f28;
    margin-bottom: 4px;
}

.type-detail-title p {
    font-size: 13px;
    color: #8b95a1;
}

.type-detail-content {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.type-detail-content .type-detail-result {
    margin-top: auto;
}

.type-detail-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #6b7684;
    margin-bottom: 28px;
}

.type-detail-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 28px;
    width: 100%;
    box-sizing: border-box;
}

.feature-group h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 12px;
}

.feature-group h4 i {
    color: var(--primary);
    font-size: 12px;
}

.feature-group ul {
    list-style: none;
}

.feature-group ul li {
    position: relative;
    padding-left: 16px;
    font-size: 13px;
    color: #6b7684;
    line-height: 2;
}

.feature-group ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
}

.type-detail-result {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.08) 0%, rgba(0, 180, 216, 0.08) 100%);
    border-radius: 12px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.type-detail-result .result-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.type-detail-result .result-number {
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 60px;
}

.type-detail-result .result-label {
    font-size: 13px;
    color: #6b7684;
}

.type-detail-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    background: #191f28;
    color: #fff;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    box-sizing: border-box;
}

.type-detail-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.type-detail-btn i {
    font-size: 12px;
    transition: transform 0.3s;
}

.type-detail-btn:hover i {
    transform: translateX(4px);
}

/* Additional Services Section */
.additional-services {
    padding: 100px 0;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.service-item {
    background: #f8fafb;
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.service-item:hover {
    background: #fff;
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.15);
}

.service-item .service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, rgba(0, 180, 216, 0.1) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.service-item:hover .service-icon {
    background: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
}

.service-item .service-icon i {
    font-size: 26px;
    background: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s;
}

.service-item:hover .service-icon i {
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff;
    background-clip: text;
}

.service-item h4 {
    font-size: 17px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 13px;
    line-height: 1.6;
    color: #6b7684;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: #f8fafb;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.choose-item {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px;
    display: flex;
    gap: 24px;
    transition: all 0.3s;
    border: 1px solid #e5e8eb;
}

.choose-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(0, 212, 170, 0.12);
}

.choose-number {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.choose-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 8px;
}

.choose-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7684;
}

/* Process Visual Section */
.consulting-process-visual {
    padding: 120px 0;
    background: linear-gradient(135deg, #191f28 0%, #263040 100%);
}

.section-header.light .section-badge {
    background: rgba(0, 212, 170, 0.2);
    color: #00D4AA;
}

.section-header.light .section-title {
    color: #fff;
}

.section-header.light .section-title strong {
    color: #00D4AA;
}

.process-visual-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.process-visual-step {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px 24px;
    transition: all 0.3s;
}

.process-visual-step:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
}

.process-visual-number {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.process-visual-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.process-visual-content p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.process-visual-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-visual-icon i {
    font-size: 20px;
    color: #fff;
}

/* FAQ Section */
.consulting-faq {
    padding: 120px 0;
    background: #fff;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e5e8eb;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(0, 212, 170, 0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    cursor: pointer;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #f8fafb;
}

.faq-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, rgba(0, 180, 216, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-icon i {
    font-size: 18px;
    color: var(--primary);
}

.faq-question span {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #191f28;
}

.faq-arrow {
    color: #8b95a1;
    transition: transform 0.3s;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--primary);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 24px 84px;
    font-size: 15px;
    line-height: 1.7;
    color: #6b7684;
}

.faq-answer strong {
    color: var(--primary);
    font-weight: 600;
}

/* Cloud Options Section */
.cloud-options {
    padding: 100px 0;
    background: #f8fafb;
}

.cloud-tabs {
    margin-top: 48px;
}

.cloud-tab-header {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.cloud-tab-btn {
    padding: 14px 32px;
    background: #fff;
    border: 2px solid #e5e8eb;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    color: #6b7684;
    cursor: pointer;
    transition: all 0.3s;
}

.cloud-tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.cloud-tab-btn.active {
    background: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
    border-color: transparent;
    color: #fff;
}

.cloud-tab-content {
    display: none;
}

.cloud-tab-content.active {
    display: block;
}

.cloud-partners {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 48px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.cloud-partner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px 32px;
    transition: transform 0.3s;
}

.cloud-partner:hover {
    transform: translateY(-8px);
}

.cloud-partner img {
    height: 48px;
    max-width: 140px;
    object-fit: contain;
}

.cloud-partner span {
    font-size: 13px;
    font-weight: 600;
    color: #6b7684;
    text-align: center;
}

.cloud-partner-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, rgba(0, 180, 216, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cloud-partner-icon i {
    font-size: 32px;
    background: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* YourIT Cloud Highlight */
.cloud-partner.yourit-cloud {
    position: relative;
}

.cloud-partner.yourit-cloud::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.5px;
}

.cloud-partner-icon.yourit {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 212, 170, 0.3);
}

.cloud-partner-icon.yourit i {
    font-size: 32px;
    color: #fff;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.cloud-partner.yourit-cloud span {
    font-weight: 700;
    color: #191f28;
}

/* CTA Full Section */
.consulting-cta-full {
    padding: 80px 0;
    background: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
}

.cta-full-content {
    text-align: center;
}

.cta-full-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.cta-full-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-full-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    margin-bottom: 40px;
}

.cta-contact-item {
    text-align: center;
}

.cta-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.cta-phone {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.cta-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.cta-contact-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
}

.btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: #fff;
    color: #191f28;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-cta-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

/* Responsive - New Sections */
@media (max-width: 1200px) {
    .hero-illustration {
        display: none;
    }
}

@media (max-width: 1024px) {
    .types-detail-grid {
        grid-template-columns: 1fr;
    }

    .process-visual-flow {
        grid-template-columns: repeat(2, 1fr);
    }

    .cloud-partners {
        flex-wrap: wrap;
        gap: 32px;
    }

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

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

@media (max-width: 768px) {
    .vendors-wrapper {
        flex-wrap: wrap;
        gap: 20px;
        padding: 24px;
    }

    .vendor-item img {
        height: 20px;
    }

    .vendor-item.yourit-vendor img {
        height: 16px;
    }

    .value-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .value-banner-text p {
        font-size: 17px;
    }

    .onestop-services {
        gap: 24px;
    }

    .onestop-icon {
        width: 72px;
        height: 72px;
    }

    .onestop-icon i {
        font-size: 28px;
    }

    .type-detail-features {
        grid-template-columns: 1fr;
    }

    .process-visual-flow {
        grid-template-columns: 1fr;
    }

    .cloud-tab-header {
        flex-direction: column;
    }

    .cloud-partners {
        flex-direction: column;
        padding: 32px;
    }

    .cta-full-contact {
        flex-direction: column;
        gap: 24px;
    }

    .cta-contact-divider {
        width: 60px;
        height: 1px;
    }

    .cta-phone {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .choose-grid {
        grid-template-columns: 1fr;
    }

    .choose-item {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}

/* Value Section */
.consulting-value {
    padding: 120px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    color: #191f28;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 18px;
    color: #6b7684;
    margin-top: 16px;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    padding: 40px 32px;
    background: #f8fafb;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.value-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i {
    font-size: 28px;
    color: #fff;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7684;
}

/* Consulting Types Section */
.consulting-types {
    padding: 120px 0;
    background: #f8fafb;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.type-card-large {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    transition: all 0.3s;
    border: 1px solid #e5e8eb;
}

.type-card-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.type-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
}

.type-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.type-icon-wrapper.type-security {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.type-icon-wrapper.type-marketing {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
}

.type-icon-wrapper i {
    font-size: 26px;
    color: #fff;
}

.type-badge {
    padding: 6px 12px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
}

.type-card-large h3 {
    font-size: 24px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 12px;
}

.type-card-large > p {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7684;
    margin-bottom: 24px;
}

.type-features {
    list-style: none;
    margin-bottom: 28px;
}

.type-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 15px;
    color: #4e5968;
    border-bottom: 1px solid #f2f4f6;
}

.type-features li:last-child {
    border-bottom: none;
}

.type-features li i {
    color: var(--primary);
    font-size: 12px;
}

.type-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    transition: gap 0.3s;
}

.type-link:hover {
    gap: 12px;
}

/* Process Section */
.consulting-process {
    padding: 140px 0;
    background: linear-gradient(180deg, #fff 0%, #f8fafb 100%);
}

.process-timeline {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    margin-top: 72px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0, 212, 170, 0.2) 10%,
        rgba(0, 212, 170, 0.4) 50%,
        rgba(0, 180, 216, 0.2) 90%,
        transparent 100%);
    border-radius: 2px;
}

.process-step {
    flex: 1;
    max-width: 260px;
    text-align: center;
    position: relative;
    padding: 0 16px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 212, 170, 0.3);
}

.step-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 28px;
    background: #fff;
    border: 2px solid #e5e8eb;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.step-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2) 0%, rgba(0, 180, 216, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.process-step:hover .step-icon {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 212, 170, 0.2);
}

.process-step:hover .step-icon::after {
    opacity: 1;
}

.step-icon i {
    font-size: 32px;
    background: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s;
}

.step-content h4 {
    font-size: 19px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #8b95a1;
}

.process-connector {
    display: none;
}

/* CTA Section */
.consulting-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #191f28 0%, #263040 100%);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
    color: #fff;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 212, 170, 0.4);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }

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

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

    .types-grid .type-card-large:last-child {
        grid-column: span 2;
        max-width: 480px;
        margin: 0 auto;
    }

    .process-timeline {
        flex-wrap: wrap;
        gap: 48px;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step {
        flex: 0 0 45%;
    }
}

@media (max-width: 768px) {
    .consulting-hero {
        padding: 100px 0 80px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-desc {
        font-size: 17px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary-lg,
    .btn-secondary-lg {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .section-title {
        font-size: 28px;
    }

    .value-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        padding: 32px 24px;
    }

    .types-grid {
        grid-template-columns: 1fr;
    }

    .types-grid .type-card-large:last-child {
        grid-column: span 1;
        max-width: none;
    }

    .type-card-large {
        padding: 32px 24px;
    }

    .process-step {
        flex: 0 0 100%;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

/* ==============================================
   Page Header Section
============================================== */
.page-header-section {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, #f8fafb 0%, #fff 100%);
    text-align: center;
}

.page-header-content {
    max-width: 600px;
    margin: 0 auto;
}

.page-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.page-header-content h1 {
    font-size: 40px;
    font-weight: 800;
    color: #191f28;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.page-header-content p {
    font-size: 18px;
    color: #6b7684;
    line-height: 1.6;
}

/* ==============================================
   Apply Form Section
============================================== */
.apply-section {
    padding: 80px 0 120px;
    background: #fff;
}

.apply-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
}

.apply-form-wrapper {
    background: #fff;
    border: 1px solid #e5e8eb;
    border-radius: 24px;
    padding: 48px;
}

.apply-form .form-section {
    margin-bottom: 40px;
}

.apply-form .form-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f2f4f6;
}

.apply-form .form-section h3 i {
    color: var(--primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.apply-form .form-group {
    margin-bottom: 20px;
}

.apply-form .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #4e5968;
    margin-bottom: 8px;
}

.apply-form .form-group label .required {
    color: #ff4444;
}

.apply-form .form-group input,
.apply-form .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e5e8eb;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.2s;
    background: #fafafa;
}

.apply-form .form-group input:focus,
.apply-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.apply-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Consulting Type Options */
.consulting-type-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.type-option {
    cursor: pointer;
}

.type-option input {
    display: none;
}

.option-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 16px;
    background: #f8fafb;
    border: 2px solid #e5e8eb;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
}

.type-option input:checked + .option-card {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, rgba(0, 180, 216, 0.1) 100%);
    border-color: var(--primary);
}

/* URL 파라미터로 미리 선택된 항목 강조 */
.type-option.pre-selected .option-card {
    animation: optionPulse 2s ease-out;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15) 0%, rgba(0, 180, 216, 0.15) 100%);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 212, 170, 0.2);
}

@keyframes optionPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 212, 170, 0.4);
    }
    30% {
        transform: scale(1.03);
        box-shadow: 0 0 0 10px rgba(0, 212, 170, 0.1);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 4px rgba(0, 212, 170, 0.2);
    }
}

.option-card i {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 12px;
}

.option-title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 4px;
}

.option-desc {
    font-size: 12px;
    color: #8b95a1;
}

/* Agreement */
.agreement-wrapper {
    padding: 20px;
    background: #f8fafb;
    border-radius: 12px;
}

.agreement-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.agreement-checkbox input {
    display: none;
}

.agreement-checkbox .checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.agreement-checkbox input:checked + .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.agreement-checkbox input:checked + .checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    color: #fff;
}

.agreement-text {
    font-size: 14px;
    color: #4e5968;
}

.agreement-text .link {
    color: var(--primary);
    text-decoration: underline;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px;
    background: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 212, 170, 0.35);
}

/* Sidebar */
.apply-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
}

.sidebar-card {
    padding: 28px;
    background: #f8fafb;
    border-radius: 20px;
    text-align: center;
}

.sidebar-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-icon i {
    font-size: 22px;
    color: #fff;
}

.sidebar-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 8px;
}

.sidebar-card p {
    font-size: 14px;
    color: #6b7684;
    line-height: 1.5;
}

.sidebar-phone {
    display: inline-block;
    margin-top: 12px;
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
}

/* ==============================================
   Cases Section
============================================== */
.cases-section {
    padding: 80px 0 120px;
}

.cases-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.filter-btn {
    padding: 10px 24px;
    background: #f2f4f6;
    border: none;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: #6b7684;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover {
    background: #e5e8eb;
}

.filter-btn.active {
    background: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
    color: #fff;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.case-card {
    background: #fff;
    border: 1px solid #e5e8eb;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.case-image {
    position: relative;
    height: 180px;
    background: linear-gradient(135deg, #f8fafb 0%, #e5e8eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-image-placeholder i {
    font-size: 48px;
    color: #d1d5db;
}

.case-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.case-content {
    padding: 28px;
}

.case-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 12px;
}

.case-summary {
    font-size: 14px;
    color: #6b7684;
    line-height: 1.6;
    margin-bottom: 20px;
}

.case-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
    padding: 16px;
    background: #f8fafb;
    border-radius: 12px;
}

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

.case-stat .stat-value {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}

.case-stat .stat-label {
    font-size: 12px;
    color: #8b95a1;
}

.case-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    transition: gap 0.2s;
}

.case-link:hover {
    gap: 10px;
}

/* ==============================================
   Interviews Section
============================================== */
.interviews-section {
    padding: 80px 0 120px;
}

.interviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.interview-card {
    position: relative;
    background: #fff;
    border: 1px solid #e5e8eb;
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
}

.interview-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.interview-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.05) 0%, rgba(0, 180, 216, 0.05) 100%);
    border-color: rgba(0, 212, 170, 0.2);
}

.interview-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 10px;
    background: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
}

.interview-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.interviewee-avatar {
    width: 56px;
    height: 56px;
    background: #f2f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.interviewee-avatar i {
    font-size: 24px;
    color: #8b95a1;
}

.interviewee-info h3 {
    font-size: 17px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 4px;
}

.company-name {
    font-size: 14px;
    color: #6b7684;
    margin-right: 8px;
}

.industry-tag {
    padding: 3px 8px;
    background: #f2f4f6;
    border-radius: 4px;
    font-size: 11px;
    color: #6b7684;
}

.interview-quote {
    font-size: 15px;
    line-height: 1.7;
    color: #4e5968;
    margin-bottom: 20px;
    padding-left: 16px;
    border-left: 3px solid var(--primary);
}

.interview-result {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #4e5968;
}

.result-item i {
    color: var(--primary);
}

.interview-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    transition: gap 0.2s;
}

.interview-link:hover {
    gap: 10px;
}

/* ==============================================
   Reviews Section
============================================== */
.reviews-stats-section {
    padding: 0 0 60px;
    margin-top: -40px;
}

.reviews-stats-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    padding: 48px;
    background: #fff;
    border: 1px solid #e5e8eb;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.overall-rating {
    text-align: center;
}

.rating-score {
    font-size: 64px;
    font-weight: 800;
    color: #191f28;
    line-height: 1;
}

.rating-stars {
    margin: 12px 0;
}

.rating-stars i {
    font-size: 20px;
    color: #fbbf24;
}

.rating-count {
    font-size: 14px;
    color: #6b7684;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 300px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bar-label {
    width: 32px;
    font-size: 13px;
    font-weight: 600;
    color: #6b7684;
}

.bar-track {
    flex: 1;
    height: 8px;
    background: #f2f4f6;
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #00D4AA 0%, #00B4D8 100%);
    border-radius: 4px;
}

.bar-count {
    width: 48px;
    font-size: 13px;
    color: #8b95a1;
    text-align: right;
}

.reviews-list-section {
    padding: 0 0 120px;
}

.reviews-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.review-card {
    padding: 32px;
    background: #fff;
    border: 1px solid #e5e8eb;
    border-radius: 20px;
    transition: all 0.2s;
}

.review-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 700;
    color: #191f28;
    margin-right: 8px;
}

.reviewer-company {
    font-size: 14px;
    color: #6b7684;
}

.review-meta {
    text-align: right;
}

.review-rating i {
    font-size: 14px;
    color: #fbbf24;
}

.review-date {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    color: #8b95a1;
}

.review-service {
    margin-bottom: 16px;
}

.service-tag {
    padding: 4px 10px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
}

.review-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #4e5968;
}

.review-helpful {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #f2f4f6;
}

.helpful-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #f8fafb;
    border: 1px solid #e5e8eb;
    border-radius: 100px;
    font-size: 13px;
    color: #6b7684;
    cursor: pointer;
    transition: all 0.2s;
}

.helpful-btn:hover {
    background: #f2f4f6;
    border-color: #d1d5db;
}

.load-more-wrapper {
    text-align: center;
    margin-top: 48px;
}

.btn-load-more {
    padding: 16px 48px;
    background: #f8fafb;
    border: 1px solid #e5e8eb;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #4e5968;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-load-more:hover {
    background: #f2f4f6;
}

/* ==============================================
   Responsive - Additional Pages
============================================== */
@media (max-width: 1024px) {
    .apply-layout {
        grid-template-columns: 1fr;
    }

    .apply-sidebar {
        flex-direction: row;
        position: static;
    }

    .sidebar-card {
        flex: 1;
    }

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

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

    .interview-card.featured {
        grid-column: span 2;
    }

    .reviews-stats-card {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .page-header-section {
        padding: 120px 0 60px;
    }

    .page-header-content h1 {
        font-size: 32px;
    }

    .apply-form-wrapper {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .consulting-type-options {
        grid-template-columns: 1fr;
    }

    .apply-sidebar {
        flex-direction: column;
    }

    .cases-grid {
        grid-template-columns: 1fr;
    }

    .interviews-grid {
        grid-template-columns: 1fr;
    }

    .interview-card.featured {
        grid-column: span 1;
    }

    .reviews-stats-card {
        flex-direction: column;
        gap: 32px;
        padding: 32px;
    }

    .rating-breakdown {
        width: 100%;
    }
}

/* =====================================================
   Customer Cases Page Styles
===================================================== */

/* Cases Filter Section */
.cases-filter-section {
    padding: 40px 0 20px;
    background: #fff;
    border-bottom: 1px solid #f2f4f6;
}

.filter-tabs-wrapper {
    margin-bottom: 24px;
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #f8fafb;
    border: 1px solid #e5e8eb;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: #6b7684;
    white-space: nowrap;
    transition: all 0.2s;
}

.filter-tab:hover {
    background: #f2f4f6;
    color: #191f28;
}

.filter-tab.active {
    background: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
    border-color: transparent;
    color: #fff;
}

.filter-tab i {
    font-size: 14px;
}

.service-filter {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filter-label {
    font-size: 14px;
    font-weight: 600;
    color: #191f28;
}

.service-filter-btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.service-filter-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #e5e8eb;
    border-radius: 8px;
    font-size: 13px;
    color: #6b7684;
    transition: all 0.2s;
}

.service-filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.service-filter-btn.active {
    background: rgba(0, 212, 170, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    font-weight: 600;
}

.results-info {
    font-size: 14px;
    color: #8b95a1;
}

.results-count {
    font-weight: 700;
    color: var(--primary);
}

.current-filter {
    color: #6b7684;
}

/* Cases Grid Section */
.cases-grid-section {
    padding: 48px 0 80px;
    background: #f8fafb;
    min-height: 400px;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Case Card */
.case-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e5e8eb;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.case-card.featured {
    border: 2px solid var(--primary);
}

.featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 6px 12px;
    background: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
}

.case-card-thumb {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafb 0%, #e5e8eb 100%);
}

.case-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.case-card:hover .case-card-thumb img {
    transform: scale(1.05);
}

.case-card-overlay {
    position: absolute;
    bottom: 12px;
    left: 12px;
}

.case-industry-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.case-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.case-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 12px;
}

.case-company {
    font-size: 13px;
    font-weight: 600;
    color: #6b7684;
}

.case-company small {
    font-weight: 400;
    color: #8b95a1;
}

.case-service-type {
    flex-shrink: 0;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.case-service-type.infra {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.case-service-type.security {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.case-service-type.marketing {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

.case-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #191f28;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-card-subtitle {
    font-size: 14px;
    color: #6b7684;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.case-card-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    padding: 16px;
    background: #f8fafb;
    border-radius: 12px;
}

.case-card-stats .case-stat {
    flex: 1;
    text-align: center;
}

.case-card-stats .stat-value {
    display: block;
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.case-card-stats .stat-label {
    font-size: 11px;
    color: #8b95a1;
}

.case-card-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: #191f28;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s;
}

.case-card-link:hover {
    background: var(--primary);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 80px 20px;
}

.no-results i {
    font-size: 48px;
    color: #d1d5db;
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 20px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 8px;
}

.no-results p {
    font-size: 15px;
    color: #6b7684;
    margin-bottom: 24px;
}

.btn-reset-filter {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

/* Case Detail Modal */
.case-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    overflow-y: auto;
    padding: 40px 20px;
}

.case-modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.case-modal-content {
    position: relative;
    width: 100%;
    max-width: 800px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.case-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #f8fafb;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    color: #6b7684;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 1;
}

.case-modal-close:hover {
    background: #f2f4f6;
    color: #191f28;
}

.case-modal-body {
    padding: 40px;
}

/* Case Detail Content */
.case-detail {
    max-width: 100%;
}

.case-detail-header {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.case-detail-industry {
    padding: 6px 14px;
    background: #f2f4f6;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #6b7684;
}

.case-detail-service {
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.case-detail-service.infra {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.case-detail-service.security {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.case-detail-service.marketing {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

.case-detail-title {
    font-size: 26px;
    font-weight: 800;
    color: #191f28;
    line-height: 1.4;
    margin-bottom: 8px;
}

.case-detail-company {
    font-size: 15px;
    color: #6b7684;
    margin-bottom: 12px;
}

.case-detail-subtitle {
    font-size: 16px;
    color: #4e5968;
    line-height: 1.6;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f2f4f6;
}

.case-detail-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.08) 0%, rgba(0, 180, 216, 0.08) 100%);
    border-radius: 16px;
}

.detail-stat {
    flex: 1;
    text-align: center;
}

.detail-stat .value {
    display: block;
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.detail-stat .label {
    font-size: 13px;
    color: #6b7684;
}

.case-detail-section {
    margin-bottom: 28px;
}

.case-detail-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 12px;
}

.case-detail-section h3 i {
    color: var(--primary);
}

.case-detail-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #4e5968;
}

.case-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.case-detail-tags .tag {
    padding: 6px 12px;
    background: #f8fafb;
    border-radius: 6px;
    font-size: 13px;
    color: #6b7684;
}

.case-detail-cta {
    text-align: center;
    padding: 32px;
    background: #f8fafb;
    border-radius: 16px;
}

.case-detail-cta p {
    font-size: 15px;
    color: #6b7684;
    margin-bottom: 16px;
}

.btn-consult {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-consult:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 170, 0.3);
}

/* Cases CTA Section */
.cases-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #191f28 0%, #2d3748 100%);
}

.cases-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-text h2 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.cta-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 212, 170, 0.4);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    transition: all 0.2s;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Cases Page Responsive */
@media (max-width: 1024px) {
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cases-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .cases-grid {
        grid-template-columns: 1fr;
    }

    .case-detail-stats {
        flex-direction: column;
        gap: 16px;
    }

    .case-modal-body {
        padding: 24px;
    }

    .case-detail-title {
        font-size: 22px;
    }

    .detail-stat .value {
        font-size: 24px;
    }

    .cta-text h2 {
        font-size: 24px;
    }
}

/* ==============================================
   AJAX Loading & Transitions
============================================== */

/* Loading Spinner */
.cases-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    gap: 16px;
}

.cases-loading p {
    font-size: 15px;
    color: var(--text-gray);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Cases Container Transition */
#casesContainer {
    transition: opacity 0.2s ease;
}

/* Filter Tab Button Styles (AJAX mode) */
.filter-tab,
.service-filter-btn {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
}

.filter-tab:focus-visible,
.service-filter-btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Card Animation on Load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cases-grid .case-card {
    opacity: 0;
    animation: fadeInUp 0.4s ease forwards;
}

/* ==============================================
   Pagination Styles
============================================== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
    padding: 20px 0;
}

.pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 8px;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.2s;
}

.pagination-btn:hover:not(:disabled) {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 212, 170, 0.05);
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-pages {
    display: flex;
    align-items: center;
    gap: 4px;
}

.pagination-page {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid transparent;
    background: transparent;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.2s;
}

.pagination-page:hover:not(.active) {
    background: var(--bg-light);
    color: var(--text-dark);
}

.pagination-page.active {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
}

.pagination-ellipsis {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 40px;
    color: var(--text-light);
    font-size: 14px;
}

@media (max-width: 768px) {
    .pagination {
        gap: 4px;
        margin-top: 32px;
    }

    .pagination-btn,
    .pagination-page {
        min-width: 36px;
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .pagination-pages {
        gap: 2px;
    }

    .pagination-ellipsis {
        width: 24px;
    }
}
