/* ============================================
   HOMEPAGE SECTIONS CSS - MODÜLER YAPI
   Kolay düzenlenebilir, ayrı CSS dosyası
   ============================================ */

/* Hero Section - Modern Corporate - Trust & Solution Focused */
.hero-modern-corporate {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 30%, #0f172a 100%);
    overflow: hidden;
    padding: 100px 0 80px;
    margin-top: 0;
}

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

/* Flowing Text Animation - İllüzyonlu Akan Yazılar */
.hero-flowing-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 0.8) 15%,
        rgba(0, 0, 0, 0.8) 85%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 0.8) 15%,
        rgba(0, 0, 0, 0.8) 85%,
        transparent 100%
    );
}

.flowing-text-track {
    position: absolute;
    display: flex;
    white-space: nowrap;
    gap: 120px;
    will-change: transform;
}

.flowing-text-track--1 {
    top: 10%;
    animation: flowText1 80s linear infinite;
}

.flowing-text-track--2 {
    top: 50%;
    animation: flowText2 100s linear infinite reverse;
    transform: translateY(-50%);
}

.flowing-text-track--3 {
    bottom: 15%;
    animation: flowText3 90s linear infinite;
}

.flowing-text-item {
    font-size: clamp(5rem, 12vw, 15rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    white-space: nowrap;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
    filter: blur(0.5px);
    transition: color 0.3s;
}

/* Animasyonlar - Sürekli akan efekt */
@keyframes flowText1 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes flowText2 {
    0% {
        transform: translateX(-50%) translateY(-50%);
    }
    100% {
        transform: translateX(0) translateY(-50%);
    }
}

@keyframes flowText3 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Hover efektleri için (opsiyonel) */
.hero-modern-corporate:hover .flowing-text-item {
    color: rgba(255, 255, 255, 0.06);
    filter: blur(0.3px);
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(0, 102, 255, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 75% 75%, rgba(0, 212, 255, 0.1) 0%, transparent 45%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, transparent 40%, rgba(15, 23, 42, 0.3) 100%);
}

.hero-modern-corporate__inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    text-align: center;
}

.hero-modern-corporate__content {
    max-width: 950px;
    margin: 0 auto;
    color: white;
    text-align: center;
}

.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
}

.hero-badge-modern:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-badge-modern svg {
    color: #00d4ff;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.hero-title-modern {
    font-size: clamp(2.25rem, 5.5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
    letter-spacing: -0.04em;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

.hero-title-highlight {
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 50%, #0066ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    background-size: 200% auto;
    animation: gradientShift 4s ease infinite;
    display: inline-block;
}

@keyframes gradientShift {
    0%, 100% { 
        background-position: 0% center;
    }
    50% { 
        background-position: 100% center;
    }
}

.hero-subtitle-modern {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    line-height: 1.75;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.25);
    font-weight: 400;
}

.hero-subtitle-modern strong {
    color: white;
    font-weight: 600;
}

/* Solution Benefits */
.hero-solutions {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.hero-solution-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.hero-solution-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-solution-item svg {
    width: 18px;
    height: 18px;
    color: #00d4ff;
    flex-shrink: 0;
}

.hero-actions-modern {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-hero--primary {
    background: white;
    color: #1a1a1a;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.btn-hero--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
    background: #f8f9fa;
}

.btn-hero--secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 600;
}

.btn-hero--secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.hero-trust-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-content: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    max-width: 900px;
    margin: 0 auto;
}

.trust-item-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
}

.trust-item-modern:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.trust-item-modern__icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 212, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d4ff;
    flex-shrink: 0;
}

.trust-item-modern__icon svg {
    width: 24px;
    height: 24px;
}

.trust-item-modern__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trust-item-modern__number {
    font-size: 24px;
    font-weight: 800;
    color: white;
    line-height: 1;
    letter-spacing: -0.02em;
}

.trust-item-modern__label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.3px;
}

/* Stats Section */
.stats-section-modern {
    background: white;
    padding: 80px 0;
    border-bottom: 1px solid #e9ecef;
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.stat-item-modern {
    text-align: center;
    padding: 24px;
    position: relative;
}

.stat-item-modern:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: #e9ecef;
}

.stat-number-modern {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1;
    background: linear-gradient(135deg, #1a1a1a 0%, #0066ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label-modern {
    font-size: 16px;
    color: #6c757d;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Section Header (Common) */
.section-header-modern {
    text-align: center;
    margin-bottom: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title-modern {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle-modern {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.7;
    font-weight: 400;
}

.section-footer-modern {
    text-align: center;
    margin-top: 48px;
}

/* Clients Section */
.clients-section-modern {
    background: #f8f9fa;
    padding: 80px 0;
}

.clients-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
    align-items: center;
    padding: 32px 0;
}

.client-item-modern {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: 16px;
    font-size: 20px;
    font-weight: 700;
    color: #6c757d;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.client-item-modern:hover {
    color: #0066ff;
    border-color: #e9ecef;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

/* Features Section */
.features-section-modern {
    background: white;
    padding: 100px 0;
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feature-card-modern {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066ff 0%, #ff6b35 100%);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.feature-card-modern:hover::before {
    transform: scaleX(1);
}

.feature-card-modern:hover {
    border-color: #0066ff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.feature-icon-modern {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 24px;
}

.feature-title-modern {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.feature-desc-modern {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.7;
}

/* Categories Section */
.categories-section-modern {
    background: #f8f9fa;
    padding: 100px 0;
}

.categories-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}

.category-card-modern {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.category-card-modern:hover {
    border-color: #0066ff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px);
}

.category-image-modern {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #0066ff 0%, #ff6b35 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.category-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-image-modern--placeholder {
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
}

.category-image-modern--placeholder svg {
    color: white;
    opacity: 0.8;
}

.category-content-modern {
    padding: 32px;
    flex: 1;
}

.category-title-modern {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.category-desc-modern {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
}

/* Packages Section */
.packages-section-modern {
    background: white;
    padding: 100px 0;
}

.packages-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
}

.package-card-modern {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
}

.package-card-modern:hover {
    border-color: #0066ff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px);
}

.package-badge-modern {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 16px;
    background: #ff6b35;
    color: white;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.package-image-modern {
    width: 100%;
    height: 240px;
    background: #f8f9fa;
    overflow: hidden;
    position: relative;
}

.package-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.package-card-modern:hover .package-image-modern img {
    transform: scale(1.08);
}

.package-image-modern--placeholder {
    background: linear-gradient(135deg, #0066ff 0%, #ff6b35 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-image-modern--placeholder svg {
    color: white;
    opacity: 0.5;
}

.package-content-modern {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-category-modern {
    display: inline-block;
    padding: 4px 12px;
    background: #0066ff;
    color: white;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    width: fit-content;
}

.package-title-modern {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
    line-height: 1.3;
}

.package-excerpt-modern {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
}

.package-footer-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid #e9ecef;
}

.package-price-modern {
    font-size: 32px;
    font-weight: 800;
    color: #0066ff;
}

.package-arrow-modern {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0066ff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.package-card-modern:hover .package-arrow-modern {
    transform: translateX(4px);
    background: #1a1a1a;
}

/* How It Works Section */
.how-it-works-section-modern {
    background: #f8f9fa;
    padding: 100px 0;
}

.steps-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    margin-top: 64px;
}

.step-item-modern {
    text-align: center;
    padding: 48px 32px;
}

.step-number-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 36px;
    font-weight: 700;
}

.step-title-modern {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.step-desc-modern {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section-modern {
    background: white;
    padding: 100px 0;
}

.testimonials-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.testimonial-card-modern {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-header-modern {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.testimonial-avatar-modern {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066ff 0%, #ff6b35 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
}

.testimonial-name-modern {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.testimonial-title-modern {
    font-size: 14px;
    color: #6c757d;
}

.testimonial-text-modern {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-rating-modern {
    color: #ffd700;
    font-size: 18px;
}

/* CTA Section */
.cta-section-modern {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 102, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 107, 53, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content-modern {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title-modern {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
    letter-spacing: -0.02em;
}

.cta-subtitle-modern {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-actions-modern {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-modern--primary {
    background: white;
    color: #1a1a1a;
}

.btn-cta-modern--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-cta-modern--secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-cta-modern--secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Buttons */
.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn-modern--primary {
    background: #0066ff;
    color: white;
}

.btn-modern--primary:hover {
    background: #0052cc;
    box-shadow: 0 6px 24px rgba(0, 102, 255, 0.3);
    transform: translateY(-2px);
}

/* Responsive - Taşma düzeltmeleri */
@media (max-width: 1024px) {
    .hero-modern-corporate {
        min-height: 80vh;
        padding: 80px 0 60px;
    }
    
    .hero-trust-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 600px;
    }
    
    .stats-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .stat-item-modern:nth-child(2n)::after {
        display: none;
    }
    
    .features-grid-modern,
    .categories-grid-modern,
    .packages-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .section-header-modern,
    .section-title-modern,
    .section-subtitle-modern {
        max-width: 100%;
        padding: 0 16px;
    }
}

@media (max-width: 767px) {
    /* Genel taşma düzeltmeleri */
    .container {
        padding-left: 16px;
        padding-right: 16px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Hero Section */
    .hero-modern-corporate {
        min-height: 85vh;
        padding: 40px 0 60px;
        overflow: hidden;
        margin-top: 0;
    }
    
    .pattern-text {
        font-size: clamp(3rem, 15vw, 6rem);
        word-break: keep-all;
        white-space: nowrap;
        opacity: 0.25;
    }
    
    .pattern-text--1,
    .pattern-text--2,
    .pattern-text--3,
    .pattern-text--4 {
        position: relative;
        transform: none;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }
    
    .hero-modern-corporate__content {
        padding: 20px 16px;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-badge-modern {
        padding: 8px 16px;
        font-size: 12px;
        margin-bottom: 24px;
    }
    
    .hero-title-modern {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        margin-bottom: 16px;
    }
    
    .hero-subtitle-modern {
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin-bottom: 28px;
    }
    
    .hero-solutions {
        gap: 12px;
        margin-bottom: 28px;
    }
    
    .hero-solution-item {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .hero-solution-item svg {
        width: 16px;
        height: 16px;
    }
    
    .hero-actions-modern {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-bottom: 40px;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
    
    .hero-trust-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding-top: 32px;
    }
    
    .trust-item-modern {
        padding: 20px 12px;
    }
    
    .trust-item-modern__icon {
        width: 40px;
        height: 40px;
    }
    
    .trust-item-modern__icon svg {
        width: 20px;
        height: 20px;
    }
    
    .trust-item-modern__number {
        font-size: 20px;
    }
    
    .trust-item-modern__label {
        font-size: 12px;
    }
    
    /* Stats Section */
    .stats-grid-modern {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
    }
    
    .stat-item-modern::after {
        display: none;
    }
    
    /* Section Headers */
    .section-header-modern {
        padding: 0 16px;
        margin-bottom: 48px;
    }
    
    .section-title-modern {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .section-subtitle-modern {
        font-size: 16px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Grid Sections */
    .features-grid-modern,
    .categories-grid-modern,
    .packages-grid-modern,
    .testimonials-grid-modern,
    .steps-grid-modern,
    .clients-grid-modern {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
    }
    
    /* Cards */
    .feature-card-modern,
    .category-card-modern,
    .package-card-modern,
    .testimonial-card-modern,
    .step-item-modern,
    .client-item-modern {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    
    /* Package Card */
    .package-image-modern {
        height: 200px;
    }
    
    .package-content-modern {
        padding: 24px;
    }
    
    /* CTA Section */
    .cta-section-modern {
        padding: 80px 16px;
    }
    
    .cta-content-modern {
        padding: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .cta-title-modern {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .cta-subtitle-modern {
        font-size: 16px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .cta-actions-modern {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .btn-cta-modern {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
    
    /* Sections padding */
    .features-section-modern,
    .categories-section-modern,
    .packages-section-modern,
    .testimonials-section-modern,
    .how-it-works-section-modern,
    .clients-section-modern {
        padding: 60px 0;
    }
    
    /* Section Footer */
    .section-footer-modern {
        padding: 0 16px;
    }
    
    .btn-modern {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }
}

