.custom-solution-form-box form {
    width: 100%;
}

.custom-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0.5rem;
    flex-wrap: nowrap;
}

.custom-form-col {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

    .custom-form-col .form-label {
        margin-bottom: 0.35rem;
        font-size: 1rem;
        color: #223964;
        font-weight: 500;
    }

    .custom-form-col .form-control {
        width: 100%;
        min-width: 0;
        font-size: 1rem;
        border: 1.5px solid #e9ecef;
        border-radius: 8px;
        padding: 0.7rem 1rem;
        background: #fafbfc;
        transition: border 0.2s, box-shadow 0.2s;
        box-sizing: border-box;
    }

        .custom-form-col .form-control:focus {
            border-color: #ff5f00;
            outline: none;
            background: #fff;
            box-shadow: 0 0 0 2px #ffe3d1;
        }

.custom-solution-form-box textarea.form-control {
    width: 100%;
    min-width: 0;
    font-size: 1rem;
    border: 1.5px solid #e9ecef;
    border-radius: 8px;
    padding: 0.7rem 1rem;
    background: #fafbfc;
    transition: border 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    resize: vertical;
    min-height: 90px;
}

    .custom-solution-form-box textarea.form-control:focus {
        border-color: #ff5f00;
        outline: none;
        background: #fff;
        box-shadow: 0 0 0 2px #ffe3d1;
    }

.custom-solution-form-btn {
    margin-top: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    padding: 0.9rem 0;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(255,95,0,0.08);
    width: 100%;
}

@media (max-width: 900px) {
    .custom-solution-form-box {
        max-width: 98vw;
    }
}

@media (max-width: 700px) {
    .custom-form-row {
        flex-direction: column;
        gap: 0;
    }
}
/* Çözümler formu ile CTA arasında boşluk */
.custom-solution-form {
    margin-bottom: 48px;
}
/* Çözümlerimiz formu için özel stiller */
.custom-solution-form {
    padding: 0 0 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    z-index: 2;
}

.custom-solution-form-box {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(34,57,100,0.10), 0 2px 8px rgba(34,57,100,0.06);
    padding: 2.5rem 2.5rem 2rem 2.5rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    border: 1.5px solid #f1f1f1;
    transition: box-shadow 0.3s, transform 0.3s;
}

    .custom-solution-form-box:hover {
        box-shadow: 0 16px 48px rgba(34,57,100,0.16), 0 4px 16px rgba(34,57,100,0.10);
        transform: translateY(-4px) scale(1.01);
    }

.custom-solution-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.custom-solution-form-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-solution-form-header h3 {
    color: var(--primary-color, #223964);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.custom-solution-form-header p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.custom-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.custom-form-col {
    flex: 1 1 0;
    min-width: 0;
}

.custom-solution-form-btn {
    margin-top: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    padding: 0.9rem 0;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(255,95,0,0.08);
}

@media (max-width: 600px) {
    .custom-solution-form-box {
        padding: 1.2rem 0.7rem 1.2rem 0.7rem;
        border-radius: 14px;
    }

    .custom-form-row {
        flex-direction: column;
        gap: 0;
    }
}
/* Galeri ve Youtube Slider */
.gallery-slider-section, .youtube-slider-section {
    padding: 40px 0 0 0;
    background: #fff;
}

.gallery-slider-wrapper, .youtube-slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    margin-bottom: 30px;
}

.gallery-slider, .youtube-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 16px;
    max-width: 700px;
}

.gallery-img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(34,57,100,0.08);
    transition: transform 0.3s;
}

    .gallery-img:hover {
        transform: scale(1.08);
    }

.gallery-arrow, .youtube-arrow {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 2;
}

    .gallery-arrow:hover, .youtube-arrow:hover {
        background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    }

.youtube-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    max-width: 700px;
}

.youtube-video {
    width: 220px;
    height: 124px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(34,57,100,0.08);
    background: #000;
}

@media (max-width: 900px) {
    .gallery-slider, .youtube-slider {
        max-width: 95vw;
    }

    .youtube-video {
        width: 160px;
        height: 90px;
    }

    .gallery-img {
        width: 90px;
        height: 60px;
    }
}

.product-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
    min-height: 60vh;
}

.product-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: heroFloat 8s ease-in-out infinite;
}

    .hero-shape.shape-1 {
        width: 120px;
        height: 120px;
        background: var(--secondary-color);
        top: 20%;
        right: 10%;
        animation-delay: 0s;
    }

    .hero-shape.shape-2 {
        width: 80px;
        height: 80px;
        background: var(--accent-color);
        bottom: 30%;
        left: 15%;
        animation-delay: 2s;
    }

    .hero-shape.shape-3 {
        width: 100px;
        height: 100px;
        background: var(--light-blue);
        top: 60%;
        right: 25%;
        animation-delay: 4s;
    }

@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

.product-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 16px;
}

    .breadcrumb a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .breadcrumb a:hover {
            color: var(--secondary-color);
        }

    .breadcrumb span {
        color: rgba(255, 255, 255, 0.6);
        margin: 0 10px;
    }

.hero-logo {
    margin-bottom: 30px;
}

.product-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.product-hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 95, 0, 0.4);
    }

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-secondary:hover {
        background: white;
        color: var(--primary-color);
    }

    .btn-primary.large,
    .btn-secondary.large {
        padding: 18px 40px;
        font-size: 18px;
    }

/* Product Variants Section */
.product-variants {
    padding: 120px 0;
    background: white;
}

.variants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.variant-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(34, 57, 100, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
}

    .variant-card.featured {
        border-color: var(--secondary-color);
        transform: scale(1.05);
    }

    .variant-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(34, 57, 100, 0.15);
        border-color: var(--secondary-color);
    }

.variant-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 8px 20px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.variant-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: white;
}

.variant-card h3 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.variant-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
}

.variant-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

    .variant-features .feature {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
    }

        .variant-features .feature i {
            color: var(--secondary-color);
            font-size: 12px;
        }

.variant-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--light-blue));
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .variant-btn:hover {
        background: linear-gradient(135deg, var(--light-blue), var(--primary-color));
        transform: translateY(-2px);
    }

/* Features Section */
.product-features {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.features-tabs {
    margin-top: 60px;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    background: white;
    border: 2px solid transparent;
    padding: 12px 25px;
    border-radius: 25px;
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .tab-btn.active,
    .tab-btn:hover {
        background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(255, 95, 0, 0.3);
    }

.tab-content {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 35px rgba(34, 57, 100, 0.08);
}

.tab-panel {
    display: none;
}

    .tab-panel.active {
        display: block;
    }

.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-text h3 {
    color: var(--primary-color);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.feature-text p {
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .feature-list li {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
        font-size: 16px;
        color: var(--text-light);
    }

        .feature-list li i {
            color: var(--secondary-color);
            font-size: 18px;
        }

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(34, 57, 100, 0.1);
}

/* Benefits Section */
.product-benefits {
    padding: 120px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(34, 57, 100, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

    .benefit-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(34, 57, 100, 0.15);
        border-color: var(--secondary-color);
    }

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    color: white;
}

.benefit-card h3 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.product-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a2e 100%);
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-contact {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

    .contact-item i {
        color: var(--secondary-color);
        font-size: 18px;
    }

/* Cloud Services Specific Styles */
.cloud-providers {
    padding: 120px 0;
    background: white;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.provider-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(34, 57, 100, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
}

    .provider-card.featured {
        border-color: var(--secondary-color);
        transform: scale(1.05);
    }

.provider-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 8px 20px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.provider-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

    .provider-logo img {
        max-height: 60px;
        width: auto;
    }

.provider-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--light-blue));
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Cloud Services Tabs */
.cloud-services {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.services-tabs {
    margin-top: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(34, 57, 100, 0.08);
    transition: all 0.3s ease;
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(34, 57, 100, 0.12);
    }

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: white;
}

.service-card h4 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .service-card ul li {
        color: var(--text-light);
        font-size: 14px;
        margin-bottom: 8px;
    }

/* Cloud Benefits */
.cloud-benefits {
    padding: 120px 0;
    background: white;
}

.benefit-stat {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 15px;
    display: inline-block;
}

/* Cloud Pricing */
.cloud-pricing {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 40px 0 60px;
    font-weight: 500;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
}

    .toggle-switch input {
        display: none;
    }

    .toggle-switch label {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #ddd;
        border-radius: 15px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .toggle-switch label::after {
            content: '';
            position: absolute;
            top: 3px;
            left: 3px;
            width: 24px;
            height: 24px;
            background: white;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

    .toggle-switch input:checked + label {
        background: var(--secondary-color);
    }

        .toggle-switch input:checked + label::after {
            left: 33px;
        }

.discount {
    background: var(--secondary-color);
    color: white;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 11px;
    margin-left: 5px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(34, 57, 100, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
}

    .pricing-card.featured {
        border-color: var(--secondary-color);
        transform: scale(1.05);
    }

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 8px 20px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-header h3 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.price {
    margin: 20px 0;
}

.currency {
    font-size: 20px;
    color: var(--text-light);
    vertical-align: top;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
}

.period {
    font-size: 16px;
    color: var(--text-light);
}

.pricing-features {
    margin: 30px 0;
}

    .pricing-features .feature {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 12px;
        font-size: 14px;
        color: var(--text-light);
    }

        .pricing-features .feature i {
            color: var(--secondary-color);
            font-size: 12px;
        }

.pricing-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--light-blue));
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-note {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    margin-top: 30px;
}

    .pricing-note i {
        color: var(--secondary-color);
        margin-right: 8px;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .product-hero {
        padding: 100px 0 60px;
    }

    .product-hero-title {
        font-size: 36px;
    }

    .product-hero-description {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .product-variants,
    .product-features,
    .product-benefits,
    .product-cta {
        padding: 80px 0;
    }

    .variants-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .variant-card.featured {
        transform: none;
    }

    .tab-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .tab-content {
        padding: 30px 20px;
    }

    .feature-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-text {
        order: 2;
    }

    .feature-image {
        order: 1;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-contact {
        flex-direction: column;
        gap: 20px;
    }

    .cloud-providers,
    .cloud-services,
    .cloud-benefits,
    .cloud-pricing {
        padding: 80px 0;
    }

    .providers-grid,
    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .provider-card.featured,
    .pricing-card.featured {
        transform: none;
    }

    .pricing-toggle {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .product-hero-title {
        font-size: 28px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .feature-text h3 {
        font-size: 24px;
    }

    .tab-content {
        padding: 20px 15px;
    }
}
/* Almanca gibi uzun metinlerde taşmayı engelle */
.variant-card h1,
.variant-card h3,
.benefit-card h3,
.product-hero-title,
.section-title,
.product-hero-description,
.section-description,
.variant-description {
    word-break: break-word;
    hyphens: auto;
}

/* Hero içeriği genişleyip body'i taşırmasın */
.product-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Featured kartların şişip grid'i bozmasını engelle (tablet/laptop için de kapat) */
@media (max-width: 1100px) {
    .variant-card.featured,
    .provider-card.featured,
    .pricing-card.featured {
        transform: none;
    }
}

/* Son güvenlik ağı: global overflow fix */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

