/**
 * İlkserver - Kurumsal Hosting Sayfası
 * Kurumsal hosting sayfasına özel CSS
 */

/* Pakete özgü değişkenler */
:root {
    --apex-color: #4285f4;
    --apex-bg: rgba(66, 133, 244, 0.08);
    --apex-dark: #3367d6;
    --apex-gradient: linear-gradient(135deg, #4285f4, #82b1ff);
    
    --prime-color: #34a853;
    --prime-bg: rgba(52, 168, 83, 0.08);
    --prime-dark: #2e7d32;
    --prime-gradient: linear-gradient(135deg, #34a853, #68c77d);
    
    --summit-color: #673ab7;
    --summit-bg: rgba(103, 58, 183, 0.08);
    --summit-dark: #4527a0;
    --summit-gradient: linear-gradient(135deg, #673ab7, #9575cd);
    
    --elite-color: #ea4335;
    --elite-bg: rgba(234, 67, 53, 0.08);
    --elite-dark: #c62828;
    --elite-gradient: linear-gradient(135deg, #ea4335, #ff8a80);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f9ff 0%, #e8f0fe 100%);
    color: var(--text-dark);
    overflow: hidden;
    width: 100%;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(66, 133, 244, 0.1);
    border-radius: var(--radius-full);
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--apex-color);
}

.hero-badge i {
    color: var(--apex-color);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #202124;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    color: #5f6368;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(66, 133, 244, 0.1);
    border-radius: var(--radius-full);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--apex-color);
}

.hero-feature i {
    color: var(--apex-color);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-buttons .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hero-buttons .button:hover {
    color: white !important;
}

.hero-buttons .button:hover span,
.hero-buttons .button:hover i {
    color: white !important;
    opacity: 1 !important;
}

.hero-buttons .button-secondary {
    background-color: white;
    color: var(--text-dark);
    border: 1px solid var(--border);
}

.hero-buttons .button-secondary:hover {
    background-color: var(--gray-50);
    color: var(--primary) !important;
    border-color: var(--primary-light);
}

.hero-buttons .button-secondary:hover span,
.hero-buttons .button-secondary:hover i {
    color: var(--primary) !important;
    opacity: 1 !important;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    background-color: white;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation: float 15s infinite alternate ease-in-out;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    right: 5%;
    animation: float 12s infinite alternate-reverse ease-in-out;
}

.hero-shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation: float 10s infinite alternate ease-in-out;
}

@keyframes float {
    0% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

/* ===== CORPORATE FEATURES SECTION ===== */
.corporate-features-section {
    padding: 5rem 0;
    background-color: var(--background);
}

.corporate-features-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.corporate-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.corporate-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.corporate-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.corporate-feature-card {
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
}

.corporate-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.corporate-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.corporate-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.corporate-feature-description {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.6;
    flex: 1;
}

/* ===== ENTERPRISE CARD ===== */
.enterprise-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    max-width: 1200px;
    margin: 0 auto;
}

.enterprise-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.enterprise-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
    transform: translateY(-4px);
}

.enterprise-card.featured {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    z-index: 10;
    position: relative;
    border: 1px solid rgba(103, 58, 183, 0.2);
}

.enterprise-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.enterprise-card.featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--summit-gradient);
    border-radius: 18px;
    z-index: -1;
    opacity: 0.3;
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
    }
}

.enterprise-card-header {
    padding: 1.25rem 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.enterprise-card.apex .enterprise-card-header {
    border-top: 4px solid var(--apex-color);
}

.enterprise-card.prime .enterprise-card-header {
    border-top: 4px solid var(--prime-color);
}

.enterprise-card.summit .enterprise-card-header {
    border-top: 4px solid var(--summit-color);
}

.enterprise-card.elite .enterprise-card-header {
    border-top: 4px solid var(--elite-color);
}

.enterprise-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.enterprise-card:hover .enterprise-card-icon {
    transform: scale(1.1);
}

.enterprise-card.apex .enterprise-card-icon {
    background-color: var(--apex-bg);
    color: var(--apex-color);
}

.enterprise-card.prime .enterprise-card-icon {
    background-color: var(--prime-bg);
    color: var(--prime-color);
}

.enterprise-card.summit .enterprise-card-icon {
    background-color: var(--summit-bg);
    color: var(--summit-color);
}

.enterprise-card.elite .enterprise-card-icon {
    background-color: var(--elite-bg);
    color: var(--elite-color);
}

.enterprise-card-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.enterprise-card-description {
    font-size: 0.85rem;
    color: #5f6368;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.enterprise-card-original {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: line-through;
}

.enterprise-card-price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
}

.enterprise-card-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #202124;
    line-height: 1.2;
    display: flex;
    align-items: baseline;
}

.enterprise-card-currency {
    font-size: 1.25rem;
    font-weight: 500;
    margin-right: 0.25rem;
    color: #5f6368;
}

.enterprise-card-period {
    font-size: 0.875rem;
    color: #5f6368;
    font-weight: normal;
}

.price-discount {
    margin-top: 0.5rem;
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(66, 133, 244, 0.1);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--apex-color);
    text-decoration: none !important;
}

.enterprise-card.apex .price-discount {
    background-color: var(--apex-bg);
    color: var(--apex-color);
}

.enterprise-card.prime .price-discount {
    background-color: var(--prime-bg);
    color: var(--prime-color);
}

.enterprise-card.summit .price-discount {
    background-color: var(--summit-bg);
    color: var(--summit-color);
}

.enterprise-card.elite .price-discount {
    background-color: var(--elite-bg);
    color: var(--elite-color);
}

.enterprise-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    background-color: white;
}

.enterprise-card-button {
    width: 100%;
    margin-top: 1.5rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    background-color: white;
    color: var(--apex-color);
    border: 1px solid var(--apex-color);
}

.enterprise-card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.enterprise-card.apex .enterprise-card-button {
    color: var(--apex-color);
    border-color: var(--apex-color);
}

.enterprise-card.prime .enterprise-card-button {
    color: var(--prime-color);
    border-color: var(--prime-color);
}

.enterprise-card.summit .enterprise-card-button {
    color: var(--summit-color);
    border-color: var(--summit-color);
}

.enterprise-card.elite .enterprise-card-button {
    color: var(--elite-color);
    border-color: var(--elite-color);
}

.enterprise-card.apex .enterprise-card-button:hover {
    background-color: var(--apex-color);
    color: white;
}

.enterprise-card.prime .enterprise-card-button:hover {
    background-color: var(--prime-color);
    color: white;
}

.enterprise-card.summit .enterprise-card-button:hover {
    background-color: var(--summit-color);
    color: white;
}

.enterprise-card.elite .enterprise-card-button:hover {
    background-color: var(--elite-color);
    color: white;
}

.enterprise-features-title {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.enterprise-features-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    border-radius: 3px;
}

.enterprise-card.apex .enterprise-features-title::after {
    background-color: var(--apex-color);
}

.enterprise-card.prime .enterprise-features-title::after {
    background-color: var(--prime-color);
}

.enterprise-card.summit .enterprise-features-title::after {
    background-color: var(--summit-color);
}

.enterprise-card.elite .enterprise-features-title::after {
    background-color: var(--elite-color);
}

.enterprise-features-divider {
    height: 1px;
    background-color: var(--border);
    margin: 1.5rem 0;
}

.enterprise-feature-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 0 1rem 1rem;
}

.enterprise-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background-color: #f9fafb;
    border-radius: 6px;
    transition: all 0.25s ease;
    font-size: 0.8rem;
}

.enterprise-feature-item:hover {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.enterprise-feature-icon {
    min-width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--apex-color);
}

.enterprise-card.apex .enterprise-feature-icon {
    color: var(--apex-color);
}

.enterprise-card.prime .enterprise-feature-icon {
    color: var(--prime-color);
}

.enterprise-card.summit .enterprise-feature-icon {
    color: var(--summit-color);
}

.enterprise-card.elite .enterprise-feature-icon {
    color: var(--elite-color);
}

.enterprise-feature-highlight {
    font-weight: 600;
    color: var(--text-dark);
}

/* Öne çıkan özellikler listesi */
.top-feature-list {
    margin-bottom: 1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.top-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.25rem;
    padding: 0.5rem 0.25rem;
    background-color: #f8fafc;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 0.8rem;
}

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

.top-feature-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: white;
    transition: all 0.3s ease;
}

.enterprise-card.apex .top-feature-icon {
    background-color: var(--apex-color);
    color: white;
}

.enterprise-card.prime .top-feature-icon {
    background-color: var(--prime-color);
    color: white;
}

.enterprise-card.summit .top-feature-icon {
    background-color: var(--summit-color);
    color: white;
}

.enterprise-card.elite .top-feature-icon {
    background-color: var(--elite-color);
    color: white;
}

.top-feature-item span {
    font-weight: 500;
    color: #333;
    font-size: 0.75rem;
    line-height: 1.2;
}

/* ===== SLA SECTION ===== */
.sla-section {
    padding: 5rem 0;
    background-color: white;
}

.sla-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.sla-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.sla-card {
    background-color: var(--gray-50);
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
}

.sla-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.sla-icon {
    margin-bottom: 1.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
}

.sla-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.sla-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.sla-description {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.6;
    flex: 1;
}


/* ===== CTA SECTION ===== */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cta-content {
    max-width: 600px;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-button {
    background-color: white;
    color: var(--primary-dark);
}

.cta-button:hover {
    background-color: var(--gray-50);
    color: var(--primary) !important;
}

.cta-button:hover span,
.cta-button:hover i {
    color: var(--primary) !important;
    opacity: 1 !important;
}

.cta-button-secondary {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.cta-button-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white !important;
    border-color: white;
}

.cta-button-secondary:hover span,
.cta-button-secondary:hover i {
    color: white !important;
    opacity: 1 !important;
}

.cta-image {
    position: relative;
}

.cta-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

.cta-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
}

/* ===== COMPARISON TABLE ===== */
.comparison-section {
    padding: 5rem 0;
    background-color: white;
}

.comparison-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.comparison-table-container {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.comparison-table th {
    background-color: var(--gray-50);
    color: var(--text-dark);
    font-weight: 600;
    white-space: nowrap;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text-dark);
    white-space: nowrap;
}

.comparison-check {
    color: var(--success);
    font-size: 1.25rem;
}

.comparison-x {
    color: var(--error);
    font-size: 1.25rem;
}

.comparison-category {
    background-color: var(--gray-100) !important;
    font-weight: 600;
    color: var(--text-dark) !important;
    text-align: left !important;
}

/* ===== PRICING TABS ===== */
.pricing-section {
    padding: 5rem 0;
    background-color: var(--background-alt);
    position: relative;
}

.pricing-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.pricing-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: #f8f9fa;
    border-radius: 9999px;
    padding: 0.5rem;
    margin: 2rem auto;
    max-width: 480px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pricing-tab {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #5f6368;
}

.pricing-tab:hover {
    background-color: rgba(66, 133, 244, 0.05);
    color: var(--apex-color);
}

.pricing-tab.active {
    background-color: var(--apex-color);
    color: white;
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.3);
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    background-color: rgba(66, 133, 244, 0.1);
    color: var(--apex-color);
    border-radius: 9999px;
    font-weight: 500;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .enterprise-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
        padding: 0 1rem;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 0.5rem;
    }

    .nav-link {
        padding: 0.5rem 0.5rem;
        font-size: 0.9rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    .cta-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .cta-buttons {
        justify-content: center;
    }

    .cta-image {
        display: none;
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .enterprise-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 0 1rem;
    }

    .enterprise-card.featured {
        transform: scale(1);
    }

    .enterprise-card.featured:hover {
        transform: translateY(-5px);
    }

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

@media (max-width: 768px) {
    .enterprise-cards {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

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

    .pricing-tabs {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title,
    .corporate-title,
    .features-title,
    .comparison-title,
    .technical-title,
    .faq-title,
    .cta-title {
        font-size: 2rem;
    }

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

    .hero-buttons .button,
    .cta-buttons .button {
        width: 100%;
    }

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

    .pricing-tab {
        padding: 0.5rem 0.75rem;
    }

    .enterprise-card-header,
    .enterprise-card-body {
        padding: 1rem 0.75rem;
    }
    
    .enterprise-card-price {
        font-size: 2rem;
    }
    
    .enterprise-card-currency {
        font-size: 1rem;
    }

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

/* Bireysel Yönlendirme Bölümü */
.individual-redirect-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.individual-redirect-box {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa, #e8f0fe);
    border-radius: 16px;
    padding: 2.5rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
}

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

.individual-redirect-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.individual-redirect-title {
    color: #202124;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.individual-redirect-description {
    color: #5f6368;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.individual-redirect-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--apex-color);
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.individual-redirect-button:hover {
    background-color: var(--apex-dark);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.individual-redirect-button span {
    color: inherit;
}

.individual-redirect-button:hover span {
    color: #1e40af !important; /* Span içindeki metnin rengini de aynı şekilde ayarla */
    opacity: 1 !important;
}

.individual-redirect-button svg {
    color: inherit;
}

.individual-redirect-button:hover svg {
    color: #1e40af !important; /* SVG ikonun rengini de vurgulu yap */
    opacity: 1 !important;
}

@media (max-width: 768px) {
    .individual-redirect-box {
        padding: 2rem 1.5rem;
    }
    
    .individual-redirect-title {
        font-size: 1.75rem;
    }
    
    .individual-redirect-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .individual-redirect-title {
        font-size: 1.5rem;
    }
    
    .individual-redirect-button {
        width: 100%;
    }
}

/* Summit paketinin yazı renkleri için daha iyi kontrast */
.enterprise-card.summit .enterprise-card-name,
.enterprise-card.summit .enterprise-features-title {
    color: #4a148c; /* Koyu mor - daha iyi kontrast */
}

.enterprise-card.summit .enterprise-card-description {
    color: #4a148c; /* Koyu mor - daha iyi kontrast */
}

/* En Çok Tercih Edilen rozeti için daha iyi görünüm */
.enterprise-popular-badge {
    position: absolute;
    top: 10px;
    bottom: auto;
    right: 10px;
    background-color: white;
    color: var(--summit-color);
    font-size: 0.65rem;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(103, 58, 183, 0.3);
    max-width: 150px;
}

.enterprise-popular-badge i {
    color: var(--summit-color);
    width: 14px;
    height: 14px;
}

.enterprise-popular-badge span {
    font-weight: 600;
    color: var(--summit-color);
    white-space: nowrap;
}

/* Pricing tab aktif durumdayken feature-badge için daha iyi görünüm */
.pricing-tab.active .feature-badge {
    color: white;
    background-color: rgba(255, 255, 255, 0.2);
}

/* Yıllık ödeme buton aktif olduğunda "İndirim Uygulandı" yazısı */
.pricing-tab[data-tab="annually"].active .feature-badge {
    content: "%17 İndirim Uygulandı";
}