/* ============================================
   Licenses & SSL Pages V2 - Premium Design
   Lisanslar ve SSL Sertifikaları Sayfaları
============================================ */

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ============================================
   Hero Color Schemes
============================================ */

/* Purple scheme for licenses */
.licenses-hero-v2 .hosting-hero-v2 {
    background: linear-gradient(135deg, #581c87 0%, #7c3aed 50%, #a78bfa 100%) !important;
}

.licenses-hero-v2 .hero-badge-v2 {
    background: rgba(167, 139, 250, 0.2) !important;
    border-color: rgba(167, 139, 250, 0.3) !important;
}

.licenses-hero-v2 .discount-circle {
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%) !important;
}

.licenses-hero-v2 .info-card-v2.purple {
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%) !important;
}

/* Green scheme for SSL */
.ssl-hero-v2 .hosting-hero-v2 {
    background: linear-gradient(135deg, #065f46 0%, #059669 50%, #10b981 100%) !important;
}

.ssl-hero-v2 .hero-badge-v2 {
    background: rgba(16, 185, 129, 0.2) !important;
    border-color: rgba(16, 185, 129, 0.3) !important;
}

.ssl-hero-v2 .discount-circle {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%) !important;
}

/* ============================================
   License Category Section
============================================ */
.license-category-section {
    padding: 100px 0;
    background: #fff;
}

.license-category-section.alt-bg {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.category-header-v2 {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
}

.category-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, #f59e0b 0%, #d97706 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
    flex-shrink: 0;
}

.category-icon-wrapper img {
    width: 48px;
    height: 48px;
}

.category-icon-wrapper svg {
    width: 40px;
    height: 40px;
    color: #fff;
}

.category-icon-wrapper.plesk {
    background: linear-gradient(145deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.category-icon-wrapper.whmcs {
    background: linear-gradient(145deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.category-info-v2 {
    flex: 1;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.category-badge.plesk-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.category-badge.whmcs-badge {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.category-info-v2 h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px;
    letter-spacing: -0.5px;
}

.category-info-v2 p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   License Cards Grid
============================================ */
.license-cards-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.license-cards-grid-v2.three-cols {
    grid-template-columns: repeat(3, 1fr);
}

.license-cards-grid-v2.five-cols {
    grid-template-columns: repeat(5, 1fr);
}

.license-card-v2 {
    background: #fff;
    border-radius: 24px;
    padding: 32px 28px;
    border: 2px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.license-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0891b2, #06b6d4);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.license-card-v2:hover {
    border-color: #0891b2;
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(8, 145, 178, 0.15);
}

.license-card-v2:hover::before {
    transform: scaleX(1);
}

.license-card-v2.featured {
    border-color: #f59e0b;
    background: linear-gradient(180deg, #fffbeb 0%, #ffffff 100%);
}

.license-card-v2.featured::before {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    transform: scaleX(1);
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: -32px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    padding: 6px 40px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.license-header h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
    letter-spacing: -0.3px;
}

.license-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: #64748b;
    margin: 0 0 20px;
}

.license-pricing {
    margin-bottom: 24px;
}

.license-pricing .price-amount {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.license-pricing .price-period {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #64748b;
}

.license-features-v2 {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.license-features-v2 li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

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

.license-features-v2 li svg {
    width: 18px;
    height: 18px;
    color: #10b981;
    flex-shrink: 0;
}

.license-features-v2 li span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: #334155;
}

.license-features-v2 li span strong {
    color: #0f172a;
    font-weight: 700;
}

.btn-license {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    background: #fff;
    border: 2px solid #0891b2;
    color: #0891b2;
    border-radius: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-license svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-license:hover {
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
    border-color: transparent;
    color: #fff;
}

.btn-license:hover svg {
    transform: translateX(4px);
}

.btn-license.btn-featured {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-color: transparent;
    color: #fff;
}

.btn-license.btn-featured:hover {
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

/* Compact License Cards */
.license-card-v2.compact {
    padding: 24px 20px;
}

.license-card-v2.compact .license-header h3 {
    font-size: 18px;
    margin-bottom: 16px;
}

.license-card-v2.compact .license-pricing {
    margin-bottom: 16px;
}

.license-card-v2.compact .license-pricing .price-amount {
    font-size: 32px;
}

.license-features-v2.compact li {
    padding: 8px 0;
}

.license-features-v2.compact li svg {
    display: none;
}

.btn-license.compact {
    padding: 12px 20px;
    font-size: 14px;
}

/* ============================================
   SSL Packages Section
============================================ */
.ssl-packages-section-v2 {
    padding: 100px 0;
    background: #fff;
}

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

.section-badge-v2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    color: #0891b2;
    padding: 10px 24px;
    border-radius: 50px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(8, 145, 178, 0.2);
}

.section-badge-v2.green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(52, 211, 153, 0.1) 100%);
    color: #10b981;
    border-color: rgba(16, 185, 129, 0.2);
}

.section-badge-v2 svg {
    width: 16px;
    height: 16px;
}

.section-header-v2 h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 16px;
    letter-spacing: -0.5px;
}

.section-header-v2 p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.ssl-packages-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.ssl-package-card-v2 {
    background: #fff;
    border-radius: 24px;
    padding: 36px 28px;
    text-align: center;
    border: 2px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.ssl-package-card-v2::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #34d399);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.ssl-package-card-v2:hover {
    border-color: #10b981;
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(16, 185, 129, 0.15);
}

.ssl-package-card-v2:hover::before {
    transform: scaleX(1);
}

.ssl-package-card-v2.featured {
    border-color: #10b981;
    background: linear-gradient(180deg, #ecfdf5 0%, #ffffff 100%);
}

.ssl-package-card-v2.featured::before {
    transform: scaleX(1);
}

.ssl-package-card-v2 .featured-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.ssl-type-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.ssl-icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(145deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.ssl-icon-wrapper svg {
    width: 44px;
    height: 44px;
    color: #fff;
}

.ssl-icon-wrapper.premium {
    background: linear-gradient(145deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.ssl-icon-wrapper.wildcard {
    background: linear-gradient(145deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.ssl-package-card-v2 h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px;
    letter-spacing: -0.3px;
}

.ssl-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: #64748b;
    margin: 0 0 20px;
    line-height: 1.6;
}

.ssl-pricing {
    margin-bottom: 24px;
}

.ssl-pricing .price-amount {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ssl-pricing .price-period {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #64748b;
}

.ssl-features-v2 {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
}

.ssl-features-v2 li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

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

.ssl-features-v2 li svg {
    width: 18px;
    height: 18px;
    color: #10b981;
    flex-shrink: 0;
}

.ssl-features-v2 li span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: #334155;
}

.btn-ssl {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    background: #fff;
    border: 2px solid #10b981;
    color: #10b981;
    border-radius: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-ssl svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-ssl:hover {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-color: transparent;
    color: #fff;
}

.btn-ssl:hover svg {
    transform: translateX(4px);
}

.btn-ssl.btn-featured {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-color: transparent;
    color: #fff;
}

.btn-ssl.btn-featured:hover {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

/* ============================================
   Why SSL Section V2
============================================ */
.why-ssl-section-v2 {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.why-ssl-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.why-ssl-card {
    background: #fff;
    border-radius: 24px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.why-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: linear-gradient(145deg, #f0fdfa 0%, #ccfbf1 100%);
    border: 2px solid rgba(8, 145, 178, 0.1);
}

.why-icon-wrapper svg {
    width: 36px;
    height: 36px;
    color: #0891b2;
}

.why-icon-wrapper.cyan {
    background: linear-gradient(145deg, #ecfeff 0%, #cffafe 100%);
    border-color: rgba(8, 145, 178, 0.2);
}
.why-icon-wrapper.cyan svg { color: #0891b2; }

.why-icon-wrapper.green {
    background: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 100%);
    border-color: rgba(16, 185, 129, 0.2);
}
.why-icon-wrapper.green svg { color: #10b981; }

.why-icon-wrapper.purple {
    background: linear-gradient(145deg, #f5f3ff 0%, #ede9fe 100%);
    border-color: rgba(139, 92, 246, 0.2);
}
.why-icon-wrapper.purple svg { color: #8b5cf6; }

.why-icon-wrapper.orange {
    background: linear-gradient(145deg, #fffbeb 0%, #fef3c7 100%);
    border-color: rgba(245, 158, 11, 0.2);
}
.why-icon-wrapper.orange svg { color: #f59e0b; }

.why-ssl-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px;
    letter-spacing: -0.3px;
}

.why-ssl-card p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.7;
}

/* ============================================
   Responsive Design
============================================ */
@media (max-width: 1200px) {
    .license-cards-grid-v2,
    .ssl-packages-grid-v2,
    .why-ssl-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .license-cards-grid-v2.five-cols {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .category-header-v2 {
        flex-direction: column;
        text-align: center;
    }
    
    .license-cards-grid-v2.three-cols,
    .license-cards-grid-v2.five-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .license-category-section,
    .ssl-packages-section-v2,
    .why-ssl-section-v2 {
        padding: 60px 0;
    }
    
    .license-cards-grid-v2,
    .license-cards-grid-v2.three-cols,
    .license-cards-grid-v2.five-cols,
    .ssl-packages-grid-v2,
    .why-ssl-grid-v2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-info-v2 h2 {
        font-size: 26px;
    }
    
    .section-header-v2 h2 {
        font-size: 28px;
    }
    
    .license-pricing .price-amount,
    .ssl-pricing .price-amount {
        font-size: 36px;
    }
    
    .category-icon-wrapper {
        width: 64px;
        height: 64px;
    }
    
    .category-icon-wrapper svg,
    .category-icon-wrapper img {
        width: 32px;
        height: 32px;
    }
}

/* ============================================
   Animations
============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.license-card-v2,
.ssl-package-card-v2,
.why-ssl-card {
    animation: fadeInUp 0.6s ease forwards;
}

.license-card-v2:nth-child(1),
.ssl-package-card-v2:nth-child(1),
.why-ssl-card:nth-child(1) { animation-delay: 0.1s; }

.license-card-v2:nth-child(2),
.ssl-package-card-v2:nth-child(2),
.why-ssl-card:nth-child(2) { animation-delay: 0.15s; }

.license-card-v2:nth-child(3),
.ssl-package-card-v2:nth-child(3),
.why-ssl-card:nth-child(3) { animation-delay: 0.2s; }

.license-card-v2:nth-child(4),
.ssl-package-card-v2:nth-child(4),
.why-ssl-card:nth-child(4) { animation-delay: 0.25s; }

.license-card-v2:nth-child(5) { animation-delay: 0.3s; }

