/* WordPress Hero Section */
.wp-hero-section {
    background: linear-gradient(120deg, #0a2540, #003c8f);
    color: white;
    position: relative;
    padding: 6rem 0 5rem;
    overflow: hidden;
}

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

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

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

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

.wp-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, white, #ccd6f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.wp-hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

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

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

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

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

.wp-hero-image img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.3));
}

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

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.wp-hero-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(122, 115, 255, 0.2) 0%, rgba(122, 115, 255, 0) 70%);
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    z-index: 0;
}

.wp-hero-shape:nth-child(2) {
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, rgba(0, 212, 255, 0) 70%);
    width: 400px;
    height: 400px;
    top: 50%;
    left: -200px;
}

/* WordPress Hosting Plans */
.wp-plans-section {
    padding: 5rem 0;
    background-color: var(--background);
    position: relative;
}

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

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

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

.wp-plans-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.wp-plans-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background-color: white;
    border: 1px solid var(--border);
    color: var(--text-dark);
    font-weight: 500;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-all);
}

.wp-plans-tab:hover {
    border-color: var(--primary-light);
    color: var(--primary);
}

.wp-plans-tab.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.wp-plans-tab i {
    font-size: 1.25rem;
}

.wp-plans-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
}

.wp-plans-toggle-text {
    font-size: 16px;
    font-weight: 500;
    margin: 0 10px;
}

.wp-plans-toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.wp-plans-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.wp-plans-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ddd;
    transition: .4s;
    border-radius: 30px;
}

.wp-plans-toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.wp-plans-toggle input:checked + .wp-plans-toggle-slider {
    background-color: var(--primary-color);
}

.wp-plans-toggle input:checked + .wp-plans-toggle-slider:before {
    transform: translateX(30px);
}

.wp-plans-toggle-discount {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 4px 10px;
    border-radius: 20px;
    margin-left: 15px;
    font-size: 14px;
    font-weight: 500;
}

.monthly-discount, .yearly-discount {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 4px 10px;
    border-radius: 20px;
    margin-left: 15px;
    font-size: 14px;
    font-weight: 500;
}

.wp-plans-toggle-discount i,
.monthly-discount i,
.yearly-discount i {
    margin-right: 5px;
    width: 16px;
    height: 16px;
}

.wp-plans-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.wp-plan-card {
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition-all);
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
    width: 100%;
    min-width: 0; /* Prevent content from causing overflow */
}

.wp-plan-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.wp-plan-popular {
    position: absolute;
    top: 0;
    right: 2rem;
    background-color: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    z-index: 10;
}

.wp-plan-header {
    padding: 1.5rem 1.25rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
    background-color: rgba(var(--primary-rgb), 0.02);
    min-height: 220px;
    display: flex;
    flex-direction: column;
}

.wp-plan-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    min-height: 40px;
}

.wp-plan-title i {
    font-size: 1.25rem;
    color: var(--primary);
}

.wp-plan-subtitle {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp-plan-price-container {
    margin-top: auto;
    margin-bottom: 1.5rem;
}

.wp-plan-price-original {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 0.875rem;
    display: inline-block;
    margin-bottom: 0.25rem;
}

.wp-plan-price {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark);
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    justify-content: center;
}

.wp-plan-currency {
    font-size: 1.5rem;
}

.wp-plan-period {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 400;
}

.wp-plan-discount {
    display: inline-block;
    background-color: var(--primary-soft);
    color: var(--primary);
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

.wp-plan-cta {
    margin-top: auto;
    display: flex;
    justify-content: center;
    padding-bottom: 0.5rem;
}

.wp-plan-button {
    width: 100%;
    max-width: 200px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp-plan-features {
    padding: 1.25rem 1.25rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.wp-plan-feature-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-top: 0.75rem;
    margin-bottom: 1.25rem;
    display: block;
    position: relative;
    padding-bottom: 0.5rem;
}

.wp-plan-feature-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-light);
    border-radius: 2px;
}

.wp-plan-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.wp-plan-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.65rem 0;
    line-height: 1.4;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    font-size: 0.9rem;
}

.wp-plan-feature-item:last-child {
    border-bottom: none;
}

.wp-plan-feature-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    stroke-width: 2;
    color: var(--primary);
    margin-top: 2px;
}

.wp-plan-feature-icon.negative {
    color: var(--gray-400);
}

.wp-plan-feature-text {
    flex-grow: 1;
}

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

/* WordPress Benefits Section */
.wp-benefits-section {
    padding: 5rem 0;
    background-color: var(--background-alt);
    position: relative;
}

.wp-benefits-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.wp-benefit-card {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition-all);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.wp-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

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

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

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

/* WordPress Features Section */
.wp-features-section {
    padding: 5rem 0;
    background-color: white;
    position: relative;
}

.wp-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.wp-features-image {
    position: relative;
}

.wp-features-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.wp-features-content {
    max-width: 500px;
}

.wp-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.wp-feature-item {
    display: flex;
    gap: 1rem;
}

.wp-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background-color: var(--primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.wp-feature-content {
    flex: 1;
}

.wp-feature-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

/* Comparison Table */
.comparison-section {
    padding: 5rem 0;
    background-color: white;
}

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

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 3rem;
}

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

.comparison-table th {
    background-color: var(--gray-50);
    font-weight: 600;
    color: var(--text-dark);
    position: sticky;
    top: 0;
    z-index: 10;
}

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

.comparison-table th:first-child,
.comparison-table td:first-child {
    border-left: 1px solid var(--border-light);
    position: sticky;
    left: 0;
    background-color: white;
    z-index: 9;
    font-weight: 500;
    color: var(--text-dark);
}

.comparison-table th:last-child,
.comparison-table td:last-child {
    border-right: 1px solid var(--border-light);
}

.comparison-table tr:first-child th {
    border-top: 1px solid var(--border-light);
}

.comparison-table tr:first-child th:first-child {
    border-top-left-radius: var(--radius-lg);
}

.comparison-table tr:first-child th:last-child {
    border-top-right-radius: var(--radius-lg);
}

.comparison-table tr:last-child td:first-child {
    border-bottom-left-radius: var(--radius-lg);
}

.comparison-table tr:last-child td:last-child {
    border-bottom-right-radius: var(--radius-lg);
}

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

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

.comparison-header {
    padding: 1.5rem;
    text-align: center;
    background-color: var(--gray-50);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.comparison-plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.comparison-plan-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.comparison-plan-period {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 400;
}

.comparison-plan-button {
    margin-top: 1rem;
}

.comparison-category {
    position: relative !important;
    overflow: hidden !important;
    border: none !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
    border-radius: 8px !important;
}

.comparison-category:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12) !important;
}

.comparison-category td {
    padding: 1.5rem 2rem !important;
    border: none !important;
    position: relative !important;
    z-index: 3 !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    text-align: left !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    color: #2d3748 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
}

.comparison-category td:before {
    content: '' !important;
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    flex-shrink: 0 !important;
}

/* Temel Özellikler - Soft Mint */
.comparison-category.category-basic {
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%) !important;
    border-left: 4px solid #10b981 !important;
}

.comparison-category.category-basic td:before {
    background: #10b981 !important;
}

.comparison-category.category-basic:hover {
    background: linear-gradient(135deg, #ecfdf5 0%, #a7f3d0 100%) !important;
}

/* Performans - Soft Blue */
.comparison-category.category-performance {
    background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%) !important;
    border-left: 4px solid #3b82f6 !important;
}

.comparison-category.category-performance td:before {
    background: #3b82f6 !important;
}

.comparison-category.category-performance:hover {
    background: linear-gradient(135deg, #eff6ff 0%, #bfdbfe 100%) !important;
}

/* Güvenlik - Soft Orange */
.comparison-category.category-security {
    background: linear-gradient(135deg, #fffbeb 0%, #fed7aa 100%) !important;
    border-left: 4px solid #f59e0b !important;
}

.comparison-category.category-security td:before {
    background: #f59e0b !important;
}

.comparison-category.category-security:hover {
    background: linear-gradient(135deg, #fefce8 0%, #fde68a 100%) !important;
}

/* Destek - Soft Purple */
.comparison-category.category-support {
    background: linear-gradient(135deg, #faf5ff 0%, #e9d5ff 100%) !important;
    border-left: 4px solid #8b5cf6 !important;
}

.comparison-category.category-support td:before {
    background: #8b5cf6 !important;
}

.comparison-category.category-support:hover {
    background: linear-gradient(135deg, #f3e8ff 0%, #ddd6fe 100%) !important;
}

/* Shimmer efektini kaldırıyoruz, daha temiz görünüm için */
.comparison-category::after {
    display: none !important;
}

@media (max-width: 768px) {
    .comparison-category td {
        font-size: 1rem !important;
        padding: 1.2rem 1.5rem !important;
    }
}

/* Call to Action Section */
.cta-section {
    padding: 5rem 0;
    background: var(--primary-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

.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;
    line-height: 1.6;
}

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

.cta-button {
    background-color: white;
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    background-color: var(--gray-100);
    color: var(--primary-dark);
}

.cta-button-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

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

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

.cta-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.cta-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
}

.cta-shape:nth-child(1) {
    top: -150px;
    right: -150px;
}

.cta-shape:nth-child(2) {
    bottom: -150px;
    left: -150px;
}

/* Popular badge */
.popular-choice {
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 1.5rem;
    background-color: var(--primary);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-sm);
    z-index: 10;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
    margin-top: 1rem;
    font-weight: 500;
    font-size: 0.75rem;
    color: #6c757d;
    transition: all 0.2s ease;
}

.guarantee-badge:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.guarantee-badge i {
    color: #28a745;
    width: 12px;
    height: 12px;
}

/* Feature badge */
.feature-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-full);
    font-size: 0.675rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 0.5rem;
}

.feature-badge-new {
    background-color: rgba(122, 115, 255, 0.1);
    color: var(--primary);
}

.feature-badge-free {
    background-color: rgba(50, 213, 131, 0.1);
    color: var(--success);
}

/* Media queries for WordPress hosting page */
@media (max-width: 1024px) {
    .wp-benefits-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .wp-hero-container,
    .wp-features-grid,
    .cta-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .wp-hero-content,
    .wp-features-content,
    .cta-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .wp-hero-features,
    .wp-hero-buttons,
    .cta-buttons {
        justify-content: center;
    }

    .wp-feature-item {
        text-align: left;
    }

    .wp-plans-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .wp-hero-title {
        font-size: 2.5rem;
    }

    .wp-hero-description {
        font-size: 1.125rem;
    }

    .section-title,
    .wp-plans-title,
    .cta-title {
        font-size: 2rem;
    }

    .wp-benefits-container {
        grid-template-columns: 1fr;
    }

    .wp-plans-container {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .wp-plans-tabs {
        flex-wrap: wrap;
    }

    .wp-hero-image,
    .cta-image {
        display: none;
    }
}

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

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

    .section-title,
    .wp-plans-title,
    .cta-title {
        font-size: 1.75rem;
    }

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

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

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

    .wp-plans-toggle {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Aylık/Yıllık fiyatlandırma stilleri */
.billing-monthly,
.billing-yearly {
    display: none;
}

.billing-monthly:first-of-type,
.billing-yearly:first-of-type {
    display: block;
}

/* Domain free note stilleri */
.wp-plans-note {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.domain-free-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--accent-rgb), 0.1));
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    max-width: fit-content;
}

.domain-free-note i {
    color: var(--accent);
    width: 1.25rem;
    height: 1.25rem;
}

.domain-free-note p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-800);
}

.domain-free-note strong {
    color: var(--primary);
}

/* Karşılaştırma tablosu fiyat stilleri */
.comparison-plan-price[data-period] {
    display: none;
}

.comparison-plan-price[data-period="monthly"] {
    display: block;
}

/* Tooltip Styles */
.tooltip-container {
    position: relative;
    display: inline-block;
}

.tooltip {
    visibility: hidden;
    width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 12px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -125px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 14px;
    line-height: 1.4;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.tooltip-container:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

/* Info Icon Style */
.info-icon {
    color: #6c757d;
    cursor: help;
    transition: color 0.2s ease;
}

.tooltip-container:hover .info-icon {
    color: #495057;
}

@media (max-width: 768px) {
    .tooltip {
        width: 200px;
        margin-left: -100px;
        font-size: 13px;
    }
}

.feature-tooltip {
    position: relative;
    display: inline-block;
    color: var(--text-light);
    border-bottom: 1px dotted var(--text-light);
    cursor: help;
}

/* Alan Adı Promosyonu Banner Stilleri */
.domain-promo-banner {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f8f9fa, #f1f2f6);
  border-left: 4px solid #e67e22;
  border-radius: 6px;
  padding: 10px 12px;
  margin: 15px 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: help;
}

.domain-promo-banner:hover {
  box-shadow: 0 5px 15px rgba(230, 126, 34, 0.2);
  transform: translateY(-2px);
}

.domain-promo-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    left: -150%;
  }
  100% {
    left: 150%;
  }
}

.domain-promo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #e67e22, #f39c12);
  border-radius: 50%;
  margin-right: 12px;
  box-shadow: 0 3px 6px rgba(230, 126, 34, 0.3);
  flex-shrink: 0;
}

.domain-promo-icon i {
  color: white;
  stroke-width: 2.5;
  width: 18px;
  height: 18px;
}

.domain-promo-text {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  flex-grow: 1;
}

.domain-promo-highlight {
  color: #e67e22;
  margin-right: 5px;
  font-weight: 600;
}

.domain-promo-main {
  font-weight: 700;
  background: linear-gradient(90deg, #e67e22, #f39c12);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.domain-promo-tooltip {
  display: none; /* SVG ikonu gizlenir */
}

.domain-promo-tooltip-content {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  background: white;
  border-radius: 6px;
  padding: 10px 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  font-size: 12px;
  line-height: 1.5;
  color: #555;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9999;
  pointer-events: none;
  border: 1px solid rgba(230, 126, 34, 0.2);
}

.domain-promo-tooltip-content:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid white;
}

.domain-promo-banner:hover .domain-promo-tooltip-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .domain-promo-text {
    font-size: 12px;
  }
  
  .domain-promo-main {
    font-size: 12px;
  }
  
  .domain-promo-tooltip-content {
    width: 200px;
    right: 0;
  }
}

@media (max-width: 480px) {
  .domain-promo-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 15px;
  }
  
  .domain-promo-icon {
    margin-bottom: 8px;
  }
  
  .domain-promo-text {
    font-size: 11px;
  }
  
  .domain-promo-tooltip-content {
    width: 180px;
    right: 0;
  }
}

@media (min-width: 1025px) and (max-width: 1200px) {
    .wp-plans-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
    }
    
    .wp-plan-header {
        padding: 1.25rem 1rem 0.75rem;
    }
    
    .wp-plan-features {
        padding: 1rem 1rem 1.25rem;
    }
}

/* Ücretsiz Vurgusu için Özel Stil */
.free-highlight {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: white !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    padding: 4px 10px !important;
    border-radius: 20px !important;
    display: inline-block !important;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    animation: gentle-pulse 2s ease-in-out infinite !important;
}

.free-highlight:before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent) !important;
    transition: all 0.6s ease !important;
}

.free-highlight:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.5) !important;
    background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
}

.free-highlight:hover:before {
    left: 100% !important;
}

@keyframes gentle-pulse {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3) !important;
    }
    50% {
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.6) !important;
    }
}