/* ============================================
   HOME PAGE STYLES
   ============================================ */

/* Hero Corporate */
.hero-corporate {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay-corp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(9, 36, 46, 0.95) 0%, rgba(9, 36, 46, 0.8) 100%);
    z-index: 2;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(38, 151, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(38, 151, 255, 0.08) 0%, transparent 50%);
    z-index: 2;
}

.hero-inner {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 3rem 2rem;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(38, 151, 255, 0.15);
    border: 1px solid rgba(38, 151, 255, 0.3);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-corporate h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-corporate h1 span {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero-contact-premium {
    margin-bottom: 3.5rem;
}

.contact-buttons-corp {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.contact-btn-premium {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
    transition: var(--transition);
    min-width: 260px;
    text-align: left;
}

.contact-btn-premium:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.btn-icon-glow {
    width: 45px;
    height: 45px;
    background: var(--primary-grad);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(38, 151, 255, 0.3);
    flex-shrink: 0;
}

.btn-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
}

.btn-value {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
}

.contact-btn-premium:hover .btn-label {
    color: var(--text-muted);
}

.contact-btn-premium:hover .btn-value {
    color: var(--secondary-color);
}

.btn-outline-corp-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline-corp-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-outline-corp-hero:hover::before {
    left: 100%;
}

.btn-outline-corp-hero i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-outline-corp-hero:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(38, 151, 255, 0.3);
}

.btn-outline-corp-hero:hover i {
    transform: translateX(3px);
    animation: bounce-horizontal 0.6s ease infinite;
}

@keyframes bounce-horizontal {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(38, 151, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.3rem;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
    cursor: pointer;
    transition: var(--transition);
}

.scroll-indicator:hover {
    color: var(--primary-color);
}

/* Trust Badges */
.trust-badges {
    background: var(--primary-color);
    padding: 1.5rem 0;
}

.trust-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 0 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
}

.trust-item i {
    font-size: 1rem;
}

/* Services Section */
.services-corp {
    padding: 6rem 0;
    background: var(--white);
}

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

.service-card-corp {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card-corp:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(38, 151, 255, 0.1);
    transform: translateY(-10px);
}

.service-card-corp.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 2.5rem;
    transform: rotate(45deg);
}

.service-icon-corp {
    width: 80px;
    height: 80px;
    background: var(--primary-grad);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.service-card-corp h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-card-corp p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-tag {
    display: inline-block;
    background: var(--bg-grey);
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.service-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--primary-grad);
    transition: width 0.4s ease;
}

.service-card-corp:hover .service-hover-line {
    width: 100%;
}

/* About Preview */
.about-preview-corp {
    padding: 6rem 0;
    background: var(--bg-grey);
}

.about-content-corp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-corp {
    position: relative;
}

.about-image-corp img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

.about-image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image-badge i {
    color: #f1c40f;
    font-size: 1.5rem;
}

.about-image-badge span {
    font-weight: 600;
    color: var(--secondary-color);
}

.about-experience-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(38, 151, 255, 0.3);
}

.about-experience-badge strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.about-experience-badge span {
    font-size: 0.75rem;
    opacity: 0.9;
    line-height: 1.2;
}

.about-text-corp h2 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.about-text-corp>p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-features {
    list-style: none;
    margin-bottom: 2rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--secondary-color);
}

.about-features li i {
    color: #2ecc71;
    font-size: 1.1rem;
}

/* Process Section */
.process-corp {
    padding: 6rem 0;
    background: var(--secondary-color);
}

.process-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.process-step-corp {
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.step-number-corp {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 auto 1.5rem;
}

.step-content-corp h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.step-content-corp p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.process-connector {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin-top: 30px;
    position: relative;
}

.connector-dot {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Who Needs Section */
.who-needs-corp {
    padding: 6rem 0;
    background: var(--white);
}

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

.need-card {
    background: var(--bg-grey);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.need-card:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.need-card:hover i,
.need-card:hover span,
.need-card:hover small {
    color: var(--white);
}

.need-icon-wrap {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(38, 151, 255, 0.1) 0%, rgba(38, 151, 255, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.need-card:hover .need-icon-wrap {
    background: rgba(255, 255, 255, 0.2);
}

.need-card i {
    font-size: 2rem;
    color: var(--primary-color);
}

.need-card span {
    display: block;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.need-card small {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Test Categories */
.test-categories-corp {
    padding: 6rem 0;
    background: var(--bg-grey);
}

.categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.category-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    border: 1px solid #eee;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    color: var(--secondary-color);
    transition: var(--transition);
}

.category-tag i {
    color: var(--primary-color);
}

.category-tag:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.category-tag:hover i {
    color: var(--white);
}

/* Info Banner */
.info-banner {
    background: var(--bg-grey);
    padding: 4rem 2rem;
}

.info-banner-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.info-banner-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--white);
}

.info-banner p {
    font-size: 1.25rem;
    color: var(--secondary-color);
    line-height: 1.8;
    font-style: italic;
}

.info-banner strong {
    color: var(--primary-color);
}

/* CTA Section */
.cta-corp {
    background: var(--primary-grad);
    padding: 4rem 0;
}

.cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.cta-content h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-phone {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    color: var(--secondary-color);
    transition: var(--transition);
}

.cta-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-phone i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.cta-phone small {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.cta-phone strong {
    font-size: 1.1rem;
}

/* Responsive Home */
@media (max-width: 900px) {
    .hero-corporate h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-divider {
        display: none;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .trust-inner {
        gap: 1rem;
    }

    .trust-item {
        font-size: 0.85rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card-corp.featured {
        transform: scale(1);
    }

    .about-content-corp {
        grid-template-columns: 1fr;
    }

    .about-image-corp img {
        height: 350px;
    }

    .about-experience-badge {
        display: none;
    }

    .process-connector {
        display: none;
    }

    .process-timeline {
        flex-direction: column;
        align-items: center;
    }

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

    .cta-inner {
        text-align: center;
        justify-content: center;
    }

    .cta-actions {
        justify-content: center;
    }

    .info-banner p {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .hero-corporate h1 {
        font-size: 2rem;
    }

    .hero-contact-premium {
        width: 100%;
    }

    .contact-buttons-corp {
        flex-direction: column;
        align-items: center;
    }

    .contact-btn-premium {
        width: 100%;
        max-width: 320px;
    }

    .trust-inner {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .needs-grid {
        grid-template-columns: 1fr;
    }

    .scroll-indicator {
        display: none;
    }
}