/**
 * İlkserver - Bayi Hosting Sayfası CSS
 * Bu dosya sadece bayi hosting sayfasına özel stilleri içerir
 */

/* Bayi hosting paketi renkleri */
:root {
    --mega-color: #6654c0;
    --mega-light: #8072d6;
    --mega-dark: #4e3e9e;
    --mega-bg: rgba(102, 84, 192, 0.1);

    --titan-color: #5546b8;
    --titan-light: #7665d1;
    --titan-dark: #41359b;
    --titan-bg: rgba(85, 70, 184, 0.1);

    --platinum-color: #4437ad;
    --platinum-light: #6658cf;
    --platinum-dark: #352b8a;
    --platinum-bg: rgba(68, 55, 173, 0.1);

    --diamond-color: #3328a5;
    --diamond-light: #554bc8;
    --diamond-dark: #29217f;
    --diamond-bg: rgba(51, 40, 165, 0.1);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--mega-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    color: white;
    overflow: hidden;
}

.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(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;
}

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

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

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

.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(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

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

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

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

.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;
}

/* Özellikler Bölümü */
.reseller-features-section {
    padding: 5rem 0;
    background-color: #f9faff;
    position: relative;
    overflow: hidden;
}

.reseller-features-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102, 84, 192, 0.05) 0%, rgba(102, 84, 192, 0) 70%);
    top: -400px;
    left: -200px;
    z-index: 0;
}

.reseller-features-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(51, 40, 165, 0.05) 0%, rgba(51, 40, 165, 0) 70%);
    bottom: -300px;
    right: -100px;
    z-index: 0;
}

.reseller-features-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.reseller-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.reseller-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--mega-color), var(--diamond-color));
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.reseller-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.reseller-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.reseller-feature-card {
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0ff;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.reseller-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: transparent;
    background: linear-gradient(145deg, #ffffff, #f8f9ff);
}

.reseller-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--mega-color), var(--mega-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reseller-feature-card:nth-child(2n)::before {
    background: linear-gradient(90deg, var(--titan-color), var(--titan-light));
}

.reseller-feature-card:nth-child(3n)::before {
    background: linear-gradient(90deg, var(--platinum-color), var(--platinum-light));
}

.reseller-feature-card:nth-child(4n)::before {
    background: linear-gradient(90deg, var(--diamond-color), var(--diamond-light));
}

.reseller-feature-card:hover::before {
    opacity: 1;
}

.reseller-feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--mega-bg) 0%, var(--mega-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 84, 192, 0.15);
}

.reseller-feature-card:nth-child(2n) .reseller-feature-icon {
    background: linear-gradient(135deg, var(--titan-bg) 0%, var(--titan-light) 100%);
}

.reseller-feature-card:nth-child(3n) .reseller-feature-icon {
    background: linear-gradient(135deg, var(--platinum-bg) 0%, var(--platinum-light) 100%);
}

.reseller-feature-card:nth-child(4n) .reseller-feature-icon {
    background: linear-gradient(135deg, var(--diamond-bg) 0%, var(--diamond-light) 100%);
}

.reseller-feature-icon i {
    color: white;
    font-size: 1.75rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

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

.reseller-feature-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-top: auto;
}

.reseller-feature-card:hover .reseller-feature-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    animation: pulse 1.5s infinite;
}

/* Yatay Fiyatlandırma Tablosu */
.reseller-pricing-section {
    padding: 5rem 0;
    background-color: var(--background-alt);
    position: relative;
}

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

/* Pricing Toggle */
.pricing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem auto;
    flex-wrap: wrap;
    position: relative;
}

.pricing-toggle-label {
    font-weight: 500;
    color: var(--text-dark);
}

.pricing-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    margin: 0 0.5rem;
}

.pricing-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pricing-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray-300);
    transition: .4s;
    border-radius: 34px;
}

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

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

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

.pricing-toggle-discount {
    display: none; /* Varsayılan olarak gizli */
}

.pricing-toggle-discount-monthly {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(245, 101, 101, 0.1);
    color: #e74c3c;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    text-align: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 350px;
}

.pricing-toggle-discount-yearly {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(72, 187, 120, 0.1);
    color: #2ecc71;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    text-align: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 350px;
}

.reseller-pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.horizontal-pricing {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2rem;
}

.horizontal-pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 1rem;
}

.horizontal-pricing-row {
    transition: var(--transition-all);
}

.horizontal-pricing-row:hover {
    transform: translateY(-5px);
}

.horizontal-pricing-cell {
    padding: 2rem;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border);
    position: relative;
}

.horizontal-pricing-cell:first-child {
    border-top-left-radius: var(--radius-lg);
    border-bottom-left-radius: var(--radius-lg);
    border-right: none;
}

.horizontal-pricing-cell:last-child {
    border-top-right-radius: var(--radius-lg);
    border-bottom-right-radius: var(--radius-lg);
    border-left: none;
}

.horizontal-pricing-row:hover .horizontal-pricing-cell {
    box-shadow: var(--shadow-md);
}

.mega-color .horizontal-pricing-cell:first-child {
    border-left: 4px solid var(--mega-color);
}

.titan-color .horizontal-pricing-cell:first-child {
    border-left: 4px solid var(--titan-color);
}

.platinum-color .horizontal-pricing-cell:first-child {
    border-left: 4px solid var(--platinum-color);
}

.diamond-color .horizontal-pricing-cell:first-child {
    border-left: 4px solid var(--diamond-color);
}

.horizontal-pricing-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.horizontal-pricing-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.horizontal-pricing-tag i {
    font-size: 1rem;
}

.mega-color .horizontal-pricing-tag {
    color: var(--mega-color);
}

.titan-color .horizontal-pricing-tag {
    color: var(--titan-color);
}

.platinum-color .horizontal-pricing-tag {
    color: var(--platinum-color);
}

.diamond-color .horizontal-pricing-tag {
    color: var(--diamond-color);
}

.horizontal-pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.horizontal-pricing-description {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.horizontal-pricing-resources {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.horizontal-pricing-resource {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text);
}

.horizontal-pricing-resource-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--primary-soft);
    color: var(--primary);
    font-size: 0.875rem;
}

.mega-color .horizontal-pricing-resource-icon {
    background-color: var(--mega-bg);
    color: var(--mega-color);
}

.titan-color .horizontal-pricing-resource-icon {
    background-color: var(--titan-bg);
    color: var(--titan-color);
}

.platinum-color .horizontal-pricing-resource-icon {
    background-color: var(--platinum-bg);
    color: var(--platinum-color);
}

.diamond-color .horizontal-pricing-resource-icon {
    background-color: var(--diamond-bg);
    color: var(--diamond-color);
}

.horizontal-pricing-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.horizontal-pricing-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    display: flex;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.horizontal-pricing-currency {
    font-size: 1rem;
    font-weight: 500;
    margin-right: 0.25rem;
}

.horizontal-pricing-period {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.horizontal-pricing-button {
    width: 100%;
    margin-top: 1rem;
}

.mega-color .horizontal-pricing-button {
    background-color: var(--mega-color);
}

.titan-color .horizontal-pricing-button {
    background-color: var(--titan-color);
}

.platinum-color .horizontal-pricing-button {
    background-color: var(--platinum-color);
}

.diamond-color .horizontal-pricing-button {
    background-color: var(--diamond-color);
}

.mega-color .horizontal-pricing-button:hover {
    background-color: var(--mega-dark);
}

.titan-color .horizontal-pricing-button:hover {
    background-color: var(--titan-dark);
}

.platinum-color .horizontal-pricing-button:hover {
    background-color: var(--platinum-dark);
}

.diamond-color .horizontal-pricing-button:hover {
    background-color: var(--diamond-dark);
}

.horizontal-pricing-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.horizontal-pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text);
}

.horizontal-pricing-feature i {
    color: var(--success);
    flex-shrink: 0;
}

.horizontal-pricing-feature.negative i {
    color: var(--error);
}

.horizontal-pricing-popular {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--success);
    color: white;
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    z-index: 10;
    white-space: nowrap;
}

/* Kazanç Hesaplayıcı */
.earnings-calculator-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.earnings-calculator-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
}

.earnings-calculator-container {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.earnings-calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.earnings-calculator-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.earnings-calculator-results {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 2rem;
    border-left: 1px solid var(--border);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.875rem;
}

.form-control {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    transition: var(--transition-all);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-soft);
}

.earnings-result-item {
    margin-bottom: 1.5rem;
}

.earnings-result-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.earnings-result-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.earnings-note {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* White Label Bölümü */
.white-label-section {
    padding: 5rem 0;
    background-color: var(--background);
}

.white-label-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.white-label-image {
    position: relative;
}

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

.white-label-content {
    max-width: 500px;
}

.white-label-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary-soft);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.white-label-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.white-label-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.white-label-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.white-label-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.white-label-feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.white-label-feature-content {
    flex: 1;
}

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

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

/* Kaynaklar Bölümü */
.resources-section {
    padding: 5rem 0;
    background-color: var(--background-alt);
}

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

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

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

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

.resource-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.resource-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.resource-card:hover .resource-image img {
    transform: scale(1.05);
}

.resource-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.resource-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.75rem;
    background-color: var(--primary-soft);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    align-self: flex-start;
}

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

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

.resource-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: auto;
}

.resource-link i {
    transition: transform 0.3s ease;
}

.resource-card:hover .resource-link i {
    transform: translateX(5px);
}

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

.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;
}

.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;
}

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

.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);
}

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

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

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

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

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

/* Mobil Uyumluluk */
@media (max-width: 1024px) {
    .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;
    }

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

    .earnings-calculator-grid {
        grid-template-columns: 1fr;
    }

    .earnings-calculator-results {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid var(--border);
        padding-top: 2rem;
    }

    .white-label-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .white-label-content {
        max-width: 100%;
        order: 1;
    }

    .white-label-image {
        order: 2;
    }

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

    .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;
    }

    .pricing-toggle-container {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-toggle-discount-monthly,
    .pricing-toggle-discount-yearly {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {

    .reseller-features-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .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;
    }

    .horizontal-pricing-table {
        display: block;
    }

    .horizontal-pricing-row {
        display: block;
        margin-bottom: 2rem;
    }

    .horizontal-pricing-cell {
        display: block;
        border-radius: 0 !important;
        border: 1px solid var(--border) !important;
    }

    .horizontal-pricing-cell:first-child {
        border-top-left-radius: var(--radius-lg) !important;
        border-top-right-radius: var(--radius-lg) !important;
        border-bottom: none !important;
    }

    .horizontal-pricing-cell:last-child {
        border-bottom-left-radius: var(--radius-lg) !important;
        border-bottom-right-radius: var(--radius-lg) !important;
        border-top: none !important;
    }

    .mega-color .horizontal-pricing-cell:first-child {
        border-top: 4px solid var(--mega-color) !important;
        border-left: 1px solid var(--border) !important;
    }

    .titan-color .horizontal-pricing-cell:first-child {
        border-top: 4px solid var(--titan-color) !important;
        border-left: 1px solid var(--border) !important;
    }

    .platinum-color .horizontal-pricing-cell:first-child {
        border-top: 4px solid var(--platinum-color) !important;
        border-left: 1px solid var(--border) !important;
    }

    .diamond-color .horizontal-pricing-cell:first-child {
        border-top: 4px solid var(--diamond-color) !important;
        border-left: 1px solid var(--border) !important;
    }

    .most-popular-flag {
        width: auto;
        height: auto;
        clip-path: none;
        top: -10px;
        right: 50%;
        transform: translateX(50%);
        border-radius: var(--radius-full);
        background-color: #3498db;
    }
}

/* Popular flag badge for Platinum package */
.most-popular-flag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #3498db;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 0 var(--radius-lg) 0 var(--radius-lg);
    transform: none;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reseller-feature-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(102, 84, 192, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mega-color);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.reseller-feature-arrow i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.reseller-feature-card:nth-child(2n) .reseller-feature-arrow i {
    color: var(--titan-color);
}

.reseller-feature-card:nth-child(3n) .reseller-feature-arrow i {
    color: var(--platinum-color);
}

.reseller-feature-card:nth-child(4n) .reseller-feature-arrow i {
    color: var(--diamond-color);
}

.reseller-feature-card:hover .reseller-feature-arrow {
    opacity: 1;
    transform: translateX(0);
}

.reseller-features-action {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.reseller-features-action .button {
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.reseller-features-action .button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.reseller-features-action .button i {
    transition: all 0.3s ease;
}

.reseller-features-action .button:hover i {
    transform: translateY(3px);
}

.features-shape {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
}

.features-shape.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(102, 84, 192, 0.03) 0%, rgba(102, 84, 192, 0.08) 100%);
    top: 20%;
    left: -150px;
    animation: float 15s infinite alternate ease-in-out;
}

.features-shape.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(51, 40, 165, 0.03) 0%, rgba(51, 40, 165, 0.08) 100%);
    bottom: 10%;
    right: -100px;
    animation: float 12s infinite alternate-reverse ease-in-out;
}

.reseller-feature-card:nth-child(3n+2) .reseller-feature-icon {
    background: linear-gradient(135deg, #6254e8 0%, #8579f1 100%);
    position: relative;
    overflow: hidden;
}

.reseller-feature-card:nth-child(3n+2) .reseller-feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
    z-index: 1;
}

.reseller-feature-card:nth-child(3n+2) .reseller-feature-icon i {
    position: relative;
    z-index: 2;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.reseller-feature-card:nth-child(3n+2) {
    transform-origin: center;
    animation: pulse 3s infinite alternate;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(98, 84, 232, 0);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(98, 84, 232, 0.1);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(98, 84, 232, 0);
    }
}