/* ========================================
   KORTEX & PRODEX - PAGE-SPECIFIC STYLES
   ======================================== */

/* ========== HERO SECTIONS ========== */
/* Modern Hero Layout */
.hero-modern {
    padding: 3rem 0 2rem 0;
    min-height: auto;
    padding-top: 120px;
}

.hero-card {
    background: var(--glass-white);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 35px;
    padding: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: var(--transition);
}

.hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(26, 54, 93, 0.4), transparent);
    border-radius: 35px 35px 0 0;
    z-index: 1;
}

.hero-text-section {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 400px;
}

.hero-image-section {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.hero-image-section img {
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.hero-image-section img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.15);
}

/* ========== GRADIENT HERO BACKGROUNDS ========== */
/* Kortex Hero Background */
.bg-gradient-kortex {
    background: var(--kortex-gradient);
    position: relative;
}

.bg-gradient-kortex::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(66, 153, 225, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(26, 54, 93, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(45, 70, 99, 0.1) 0%, transparent 50%);
    animation: gradientShift 40s ease-in-out infinite;
    z-index: 0;
}

/* Prodex Hero Background */
.bg-gradient-prodex {
    background: var(--prodex-gradient);
    position: relative;
}

.bg-gradient-prodex::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(39, 174, 96, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(22, 160, 133, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    animation: gradientShift 40s ease-in-out infinite;
    z-index: 0;
}

/* Integration Hero Background */
.bg-gradient-integration {
    background: var(--integration-gradient);
    position: relative;
}

.bg-gradient-integration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(243, 156, 18, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(241, 143, 1, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(245, 166, 35, 0.1) 0%, transparent 50%);
    animation: gradientShift 40s ease-in-out infinite;
    z-index: 0;
}

/* Security Hero Background */
.bg-gradient-security {
    background: linear-gradient(135deg, 
        rgba(220, 53, 69, 0.15) 0%, 
        rgba(255, 193, 7, 0.1) 25%,
        rgba(40, 167, 69, 0.1) 50%,
        rgba(0, 123, 255, 0.15) 100%);
    position: relative;
    overflow: hidden;
}

.bg-gradient-security::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(220, 53, 69, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 193, 7, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(40, 167, 69, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 123, 255, 0.15) 0%, transparent 50%);
    animation: securityGradientShift 40s ease-in-out infinite;
    z-index: 1;
}

/* Ensure content is above gradient backgrounds */
.bg-gradient-kortex .container,
.bg-gradient-prodex .container,
.bg-gradient-integration .container,
.bg-gradient-security .container {
    position: relative;
    z-index: 1;
}

/* ========== FEATURE CARDS ========== */
.feature-card {
    background: var(--glass-white);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 35px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(26, 54, 93, 0.4), transparent);
    border-radius: 35px 35px 0 0;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 60px rgba(26, 54, 93, 0.15);
    background: rgba(255, 255, 255, 0.9);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #ffffff !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-icon i {
    color: #ffffff !important;
    z-index: 2;
    position: relative;
}

.feature-card:hover .feature-icon i {
    color: #ffffff !important;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    opacity: 0.8;
    transform: scale(1);
    transition: var(--transition);
}

.feature-card:hover .feature-icon::before {
    transform: scale(1.1);
    opacity: 1;
}

.kortex-gradient {
    background: var(--kortex-gradient);
}

.prodex-gradient {
    background: var(--prodex-gradient);
}

.integration-gradient {
    background: var(--integration-gradient);
}

.security-gradient {
    background: linear-gradient(135deg, 
        rgba(220, 53, 69, 0.8) 0%, 
        rgba(255, 193, 7, 0.6) 25%,
        rgba(40, 167, 69, 0.6) 50%,
        rgba(0, 123, 255, 0.8) 100%);
}

.feature-card h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

/* ========== CONTACT PAGE ========== */
.contact-form {
    background: var(--glass-white);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 35px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(26, 54, 93, 0.4), transparent);
    border-radius: 35px 35px 0 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--kortex-primary);
    box-shadow: 0 0 0 0.2rem rgba(26, 54, 93, 0.25);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

textarea.form-control {
    border-radius: 20px;
    resize: vertical;
    min-height: 120px;
}

/* ========== KORTEX PAGE ========== */
.kortex-hero {
    background: var(--kortex-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.kortex-feature-icon {
    background: var(--kortex-gradient);
}

.kortex-stat-card {
    background: rgba(26, 54, 93, 0.1);
    border: 1px solid rgba(26, 54, 93, 0.2);
    color: var(--kortex-primary);
}

.kortex-section {
    position: relative;
}

.kortex-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(26, 54, 93, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(45, 70, 99, 0.05) 0%, transparent 50%);
    z-index: -1;
}

/* ========== PRODEX PAGE ========== */
.prodex-hero {
    background: var(--prodex-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.prodex-feature-icon {
    background: var(--prodex-gradient);
}

.prodex-stat-card {
    background: rgba(22, 160, 133, 0.1);
    border: 1px solid rgba(22, 160, 133, 0.2);
    color: var(--prodex-primary);
}

.prodex-section {
    position: relative;
}

.prodex-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(22, 160, 133, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(39, 174, 96, 0.05) 0%, transparent 50%);
    z-index: -1;
}

/* ========== INTEGRATION PAGE ========== */
.integration-hero {
    background: var(--integration-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.integration-feature-icon {
    background: var(--integration-gradient);
}

.integration-stat-card {
    background: rgba(241, 143, 1, 0.1);
    border: 1px solid rgba(241, 143, 1, 0.2);
    color: #f18f01;
}

.integration-section {
    position: relative;
}

.integration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(241, 143, 1, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(243, 156, 18, 0.05) 0%, transparent 50%);
    z-index: -1;
}

/* ========== SECURITY PAGE ========== */
.security-hero {
    background: linear-gradient(135deg, 
        rgba(220, 53, 69, 0.9) 0%, 
        rgba(0, 123, 255, 0.9) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.security-feature-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.security-stat-card {
    background: rgba(0, 123, 255, 0.1);
    border: 1px solid rgba(0, 123, 255, 0.2);
    color: #007bff;
}

.security-section {
    position: relative;
}

.security-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 123, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(220, 53, 69, 0.05) 0%, transparent 50%);
    z-index: -1;
}

/* Security specific components */
.security-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.security-gradient:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.security-gradient i {
    color: white !important;
}

.feature-card:hover .security-gradient i {
    color: white !important;
}

/* ========== SECURITY PAGE STYLES ========== */
/* Security Shield Display */
.security-shield-display {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.central-shield {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
    animation: shieldPulse 3s ease-in-out infinite;
    z-index: 10;
}

.central-shield i {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.central-shield span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Security Features */
.security-feature {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #e3f2fd;
    animation: featureFloat 4s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.security-feature:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.security-feature i {
    font-size: 1.5rem;
    margin-bottom: 4px;
    color: #3498db;
}

.security-feature span {
    font-size: 0.7rem;
    font-weight: bold;
    color: #2c3e50;
    text-align: center;
    line-height: 1.1;
}

/* Feature Positions */
.feature-1 { top: 20px; left: 60px; animation-delay: 0s; }
.feature-2 { top: 20px; right: 60px; animation-delay: 0.5s; }
.feature-3 { top: 50%; right: 20px; transform: translateY(-50%); animation-delay: 1s; }
.feature-4 { bottom: 20px; right: 60px; animation-delay: 1.5s; }
.feature-5 { bottom: 20px; left: 60px; animation-delay: 2s; }
.feature-6 { top: 50%; left: 20px; transform: translateY(-50%); animation-delay: 2.5s; }

/* Security SVG Lines */
.security-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.security-line {
    stroke: #bdc3c7;
    stroke-width: 2;
    stroke-dasharray: 5, 5;
    animation: linePulse 3s ease-in-out infinite;
}

.security-flow {
    fill: #3498db;
    opacity: 0.6;
}

/* Security Pulse Effect */
.security-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 2px solid rgba(52, 152, 219, 0.3);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: securityPulseEffect 3s ease-in-out infinite;
    z-index: 8;
}

/* Compliance Badges */
.compliance-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.compliance-badge {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #3498db;
    transition: all 0.3s ease;
}

.compliance-badge:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.compliance-badge.iso27001 { border-left-color: #e74c3c; }
.compliance-badge.iso9001 { border-left-color: #27ae60; }
.compliance-badge.gdpr { border-left-color: #3498db; }

.compliance-badge i {
    font-size: 2.5rem;
    margin-right: 20px;
    color: #3498db;
}

.compliance-badge.iso27001 i { color: #e74c3c; }
.compliance-badge.iso9001 i { color: #27ae60; }
.compliance-badge.gdpr i { color: #3498db; }

.badge-content h5 {
    margin: 0 0 5px 0;
    color: #2c3e50;
    font-weight: bold;
}

.badge-content p {
    margin: 0;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.security-layer {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #3498db;
    transition: all 0.3s ease;
    height: 100%;
}

.security-layer:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.layer-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.layer-header i {
    font-size: 2rem;
    color: #3498db;
    margin-right: 15px;
    width: 40px;
}

.layer-header h4 {
    margin: 0;
    color: #2c3e50;
}

.layer-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.layer-features li {
    padding: 8px 0;
    color: #5a6c7d;
    display: flex;
    align-items: center;
}

.layer-features i {
    margin-right: 10px;
    width: 20px;
}

.practice-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.practice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.practice-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white !important;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.practice-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.practice-icon i {
    color: white !important;
}

.practice-card:hover .practice-icon i {
    color: white !important;
}

.practice-card h5 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.practice-card p {
    color: #5a6c7d;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========== FEATURES SECTION ========== */
.feature-section {
    padding: 4rem 0;
    position: relative;
}

.feature-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: var(--glass-white);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.feature-item h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========== STATISTICS SECTION ========== */
.stats-section {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--kortex-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonial-card {
    background: var(--glass-white);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    margin-bottom: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--kortex-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.author-info h6 {
    margin: 0;
    color: var(--text-primary);
    font-weight: 600;
}

.author-info p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ========== PAGE-SPECIFIC RESPONSIVE ========== */
@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .section-title p {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .compliance-badge {
        flex-direction: column;
        text-align: center;
    }
    
    .compliance-badge i {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
        border-radius: 25px;
    }
    
    .form-control {
        padding: 0.8rem 1.2rem;
    }
}

@media (max-width: 576px) {
    .feature-item {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .contact-form {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Hero Statistics Cards */
.hero-stats {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stat-card {
    flex: 1;
    min-width: 120px;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.hero-stat-card:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hero-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--kortex-primary);
    margin-bottom: 0.25rem;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ========== INTEGRATION ECOSYSTEM ========== */
/* Enhanced Integration Ecosystem */
.integration-ecosystem {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    padding: 20px;
}

.system-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
    z-index: 10;
    animation: centralPulse 3s ease-in-out infinite;
}

.system-hub i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.system-hub span {
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
}

.system-node {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.system-node:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.system-node i {
    font-size: 1.2rem;
    margin-bottom: 3px;
}

.system-node span {
    font-size: 0.6rem;
    font-weight: 600;
    text-align: center;
}

/* Node Positions (Hexagonal Layout) */
.node-1 { top: 10%; left: 20%; background: linear-gradient(135deg, #667eea, #764ba2); }
.node-2 { top: 10%; right: 20%; background: linear-gradient(135deg, #48c6ef, #6f86d6); }
.node-3 { top: 40%; right: 5%; background: linear-gradient(135deg, #a8edea, #fed6e3); color: #333; }
.node-4 { bottom: 10%; right: 20%; background: linear-gradient(135deg, #ffecd2, #fcb69f); color: #333; }
.node-5 { bottom: 10%; left: 20%; background: linear-gradient(135deg, #ff9a9e, #fecfef); }
.node-6 { top: 40%; left: 5%; background: linear-gradient(135deg, #a8edea, #fed6e3); color: #333; }

/* SVG Connections */
.connection-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.connection-line {
    stroke: #ddd;
    stroke-width: 2;
    stroke-dasharray: 5,5;
    animation: connectionFlow 4s linear infinite;
    opacity: 0.7;
}

.cross-connection {
    stroke: #bbb;
    stroke-width: 1.5;
    stroke-dasharray: 3,3;
    opacity: 0.5;
    animation: crossFlow 6s linear infinite;
}

.data-flow {
    fill: #ff6b6b;
    opacity: 0.8;
}

/* Pulse Animation */
.pulse-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 3px solid rgba(255, 107, 107, 0.3);
    border-radius: 50%;
    animation: pulseRing 3s ease-out infinite;
    pointer-events: none;
}
