/* ===== HERO COMPLETE ===== */
.hero--complete {
    position: relative;
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #0a1120 0%, #162b40 100%);
    color: #ffffff;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(42, 93, 187, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 107, 0, 0.1) 0%, transparent 50%);
}

.hero__orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.orb--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at center, rgba(42, 93, 187, 0.2), transparent 70%);
    top: -200px;
    right: -200px;
}

.orb--2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at center, rgba(255, 107, 0, 0.1), transparent 70%);
    bottom: -200px;
    left: -200px;
}

.particles__canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero__content {
    max-width: 600px;
    text-align: left;
}

.hero__title {
    position: relative;
    margin-bottom: 1.5rem;
    text-align: left;
}

.hero__title-main {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    display: block;
    text-align: left;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #cbd5e1;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    text-align: center;
}

.hero__stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat__number {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat__label {
    font-size: 0.9rem;
    color: #94a3b8;
}

.hero__registry {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-align: center;
}

.hero__registry-logo {
    height: 40px;
    width: auto;
    flex-shrink: 0;
}

.hero__registry-text {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.4;
    text-align: left;
}

.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-diagram--enhanced {
    position: relative;
    width: min(500px, 45vw);
    height: min(500px, 45vw);
}

.diagram__center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(150px, 14vw);
    height: min(150px, 14vw);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    overflow: hidden;
    padding: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(42, 93, 187, 0.3);
}

.diagram__center img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    margin-top: -20px;
    display: block;
}

.diagram__center:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 15px 40px rgba(42, 93, 187, 0.5);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
}

.diagram__node {
    position: absolute;
    width: min(150px, 14vw);
    height: min(150px, 14vw);
    background: linear-gradient(135deg, #0a1120 0%, #162b40 100%);
    border: 3px solid var(--primary-light);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.diagram__node--1 {
    top: 5%;
    left: 5%;
    animation: floatUpDown1 6s ease-in-out infinite;
}

.diagram__node--2 {
    top: 5%;
    right: 5%;
    animation: floatUpDown2 4.2s ease-in-out infinite;
}

.diagram__node--3 {
    bottom: 5%;
    left: 5%;
    animation: floatUpDown3 5s ease-in-out infinite;
}

.diagram__node--4 {
    bottom: 5%;
    right: 5%;
    animation: floatUpDown4 4.5s ease-in-out infinite;
}

.diagram__node i {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.diagram__node span {
    font-size: clamp(0.8rem, 1.6vw, 1rem);
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.diagram__node:hover {
    transform: scale(1.1) translateY(-5px);
    border-color: var(--primary-color);
    background: #223869;
    box-shadow: 0 15px 40px rgba(42, 93, 187, 0.3);
    z-index: 15;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.diagram__node:hover i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.diagram__lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.diagram__line {
    stroke: var(--primary-light);
    stroke-width: 1.5;
    stroke-dasharray: 4 4;
    opacity: 0.3;
    transition: all 0.3s ease;
}

@keyframes floatUpDown1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes floatUpDown2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes floatUpDown3 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-25px); }
}

@keyframes floatUpDown4 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

/* ===== SUCCESS PATH ===== */
.success-path {
    padding: 6rem 0;
    background-color: var(--background-light);
    position: relative;
}

.success-path::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom right, transparent 49%, var(--background-light) 50%);
}

.success-path .section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-dark);
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.success-path .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.success-path__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.success-path__image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.success-path__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.success-path__image:hover img {
    transform: scale(1.05);
}

.success-path__text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.success-path__text p {
    margin-bottom: 1.5rem;
}

/* ===== FEATURES ===== */
.features {
    padding: 6rem 0;
    background-color: var(--background-white);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom right, transparent 49%, var(--background-white) 50%);
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-dark);
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.features h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem;
    text-align: center;
    background-color: var(--background-light);
    border-radius: 10px;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin: 0 auto 32px;
    display: block;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
}

.feature-card:hover i {
    transform: scale(1.2);
    color: var(--accent-color);
}

.feature-card h2 {
    margin: 0 auto 24px;
    font-size: 28px;
    text-align: center;
    line-height: 1.2;
}

.feature-card h3 {
    margin: 0 auto 24px;
    font-size: 20px;
    text-align: center;
    line-height: 1.2;
}

.feature-card p {
    margin: 0 auto;
    text-align: center;
    max-width: 90%;
    line-height: 1.5;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--primary-dark);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-dark);
}

.overlap-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0;
    position: relative;
    height: 600px;
    align-items: start;
    padding-bottom: 0;
}

.service-card {
    grid-column: span 4;
    background: var(--background-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 30px;
    transition: var(--transition);
    z-index: 1;
    height: 480px;
    display: flex;
    flex-direction: column;
}

.service-card:nth-child(1) {
    margin-left: 0;
    z-index: 1;
}

.service-card:nth-child(2) {
    z-index: 2;
    transform: translateY(15px);
}

.service-card:nth-child(3) {
    z-index: 3;
    transform: translateY(30px);
}

.service-card:nth-child(1):hover {
    z-index: 10 !important;
    box-shadow: var(--shadow-hover);
    transform: translateY(-10px) !important;
}

.service-card:nth-child(2):hover {
    z-index: 10 !important;
    box-shadow: var(--shadow-hover);
    transform: translateY(+5px) !important;
}

.service-card:nth-child(3):hover {
    z-index: 10 !important;
    box-shadow: var(--shadow-hover);
    transform: translateY(+20px) !important;
}

.service-card-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--accent-color);
}

.service-card-header h3 {
    color: var(--primary-dark);
    font-size: 1.6rem;
}

.service-features {
    list-style: none;
    flex-grow: 1;
    padding-top: 10px;
}

.service-features li {
    padding: 12px 0;
    position: relative;
    padding-left: 35px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 10px;
    color: var(--accent-color);
    font-weight: bold;
}

.service-link {
    display: inline-block;
    padding: 12px 25px;
    background: var(--accent-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
    align-self: center;
    margin-top: 20px;
    cursor: pointer;
}

.service-link:hover {
    background: var(--accent-light);
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: block;
    opacity: 1;
}

.modal-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 80%;
    max-width: 1200px;
    max-height: 80vh;
    background: var(--background-white);
    border-radius: 12px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.3);
    z-index: 1001;
    padding: 40px;
    overflow-y: auto;
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: translate(-50%, -50%) scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--accent-color);
}

.modal-header h3 {
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-dark);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

.modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
}

.modal-feature {
    margin-bottom: 25px;
}

.modal-feature-title {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.modal-feature-title::before {
    content: '→';
    color: var(--accent-color);
    margin-right: 10px;
    font-weight: bold;
}

.modal-feature-details {
    list-style: none;
    padding-left: 25px;
}

.modal-feature-details li {
    padding: 8px 0;
    position: relative;
}

.modal-feature-details li::before {
    content: '•';
    position: absolute;
    left: -15px;
    color: var(--accent-color);
    font-weight: bold;
}

/* ===== CLIENTS CAROUSEL ===== */
.clients {
    padding: 6rem 0 4rem;
    background: var(--background-light);
    position: relative;
    min-height: 500px;
}

.clients .section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-dark);
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.clients .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.clients .scene {
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.clients .carousel {
    position: relative;
    width: 300px;
    height: 300px;
    transform-style: preserve-3d;
    animation: orbit 20s infinite linear;
}

.clients .client {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 250px;
    transform-style: preserve-3d;
    transform-origin: center center;
}

.clients .client__inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,119,182,0.15);
    border: 2px solid rgba(75,127,209,0.3);
}

.clients .client__front,
.clients .client__back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    padding: 20px;
    box-sizing: border-box;
}

.clients .client__back {
    background: white;
    transform: rotateY(180deg);
}

.clients .client img {
    width: 140px;
    height: 140px;
    object-fit: contain;
}

.clients .client:nth-child(1) { transform: translate(-50%, -50%) rotateY(0deg) translateZ(300px); }
.clients .client:nth-child(2) { transform: translate(-50%, -50%) rotateY(72deg) translateZ(300px); }
.clients .client:nth-child(3) { transform: translate(-50%, -50%) rotateY(144deg) translateZ(300px); }
.clients .client:nth-child(4) { transform: translate(-50%, -50%) rotateY(216deg) translateZ(300px); }
.clients .client:nth-child(5) { transform: translate(-50%, -50%) rotateY(288deg) translateZ(300px); }

@keyframes orbit {
    from { transform: rotateY(0); }
    to { transform: rotateY(360deg); }
}

/* ===== CONTACT INFO ===== */
.contact {
    padding: 6rem 0;
    background-color: var(--background-white);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom right, transparent 49%, var(--background-white) 50%);
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-dark);
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.contact-info__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-info__card {
    text-align: center;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-info__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    color: var(--accent-color);
}

.contact-info__card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info__card h3 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.contact-info__card p {
    color: var(--text-dark);
}

.contact-info__card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info__card a:hover {
    color: var(--accent-color);
}

/* ===== RESPONSIVE FOR INDEX PAGE ===== */
@media (max-width: 1024px) {
    .overlap-grid {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .service-card {
        position: relative !important;
        width: 100% !important;
        transform: none !important;
        left: 0 !important;
        top: 0 !important;
    }
    
    .service-card:nth-child(2) {
        transform: none !important;
    }
    
    .service-card:nth-child(3) {
        transform: none !important;
    }
    
    .service-card:nth-child(1):hover,
    .service-card:nth-child(2):hover,
    .service-card:nth-child(3):hover {
        transform: translateY(-10px) !important;
    }
    
    .modal-content {
        grid-template-columns: 1fr;
    }
    
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero__visual {
        order: -1;
        margin: 0 auto;
    }
    
    .hero__content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero__title,
    .hero__title-main,
    .hero__subtitle {
        text-align: center;
    }
    
    .hero__stats {
        justify-content: center;
    }
    
    .stat {
        text-align: center;
    }
    
    .hero__registry {
        margin: 0 auto;
        text-align: left;
    }
}

@media (max-width: 992px) {
    .success-path__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .success-path__image {
        order: -1;
    }
    
    .clients .scene { height: 320px; }
    .clients .carousel { width: 220px; height: 220px; }
    .clients .client { width: 120px; height: 150px; }
    .clients .client img { width: 60px; height: 60px; }
    .clients .client__front, 
    .clients .client__back { padding: 10px; }
}

@media (max-width: 768px) {
    .hero--complete {
        padding: 6rem 0 4rem;
        min-height: auto;
    }
    
    .hero__grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero__content {
        order: 1;
        width: 100%;
    }
    
    .hero__visual {
        order: 2;
        margin: 1rem auto 0;
    }
    
    .hero__title-main {
        font-size: 2.2rem;
    }
    
    .hero__subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero__stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
    }
    
    .stat {
        min-width: 120px;
    }
    
    .stat__number {
        font-size: 2rem;
    }
    
    .hero__registry {
        flex-direction: row;
        text-align: left;
        padding: 1rem;
        margin: 0 0 1rem 0;
        max-width: 100%;
    }
    
    .hero__registry-logo {
        height: 35px;
    }
    
    .hero__registry-text {
        text-align: left;
        font-size: 0.8rem;
    }
    
    .tech-diagram--enhanced {
        width: 400px;
        height: 400px;
        margin: 0 auto;
    }
    
    .diagram__center {
        width: 120px;
        height: 120px;
    }
    
    .diagram__node {
        width: 130px;
        height: 130px;
    }
    
    .diagram__node i {
        font-size: 2.5rem;
        margin-bottom: 0.25rem;
    }
    
    .diagram__node span {
        font-size: 0.7rem;
    }
    
    .diagram__node--1 {
        animation: floatUpDown1 6s ease-in-out infinite;
    }
    
    .diagram__node--2 {
        animation: floatUpDown2 4.2s ease-in-out infinite;
    }
    
    .diagram__node--3 {
        animation: floatUpDown3 5s ease-in-out infinite;
    }
    
    .diagram__node--4 {
        animation: floatUpDown4 4.5s ease-in-out infinite;
    }
    
    .success-path {
        padding: 4rem 0;
    }
    
    .success-path .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .success-path__text {
        font-size: 1rem;
    }
    
    .clients .scene {
        height: 400px;
        perspective: 1200px;
    }
    
    .clients .carousel {
        width: 320px;
        height: 320px;
        animation: orbitMobile 20s infinite linear;
    }
    
    .clients .client {
        width: 200px;
        height: 220px;
    }
    
    .clients .client img {
        width: 120px;
        height: 120px;
    }
    
    .clients .client:nth-child(1) { transform: translate(-50%, -50%) rotateY(0deg) translateZ(200px); }
    .clients .client:nth-child(2) { transform: translate(-50%, -50%) rotateY(72deg) translateZ(200px); }
    .clients .client:nth-child(3) { transform: translate(-50%, -50%) rotateY(144deg) translateZ(200px); }
    .clients .client:nth-child(4) { transform: translate(-50%, -50%) rotateY(216deg) translateZ(200px); }
    .clients .client:nth-child(5) { transform: translate(-50%, -50%) rotateY(288deg) translateZ(200px); }
}

@media (max-width: 576px) {
    .hero__title-main {
        font-size: 1.8rem;
    }
    
    .hero__stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .stat {
        width: 100%;
        max-width: 150px;
    }
    
    .hero__registry {
        flex-direction: column;
        text-align: center;
        border-color: rgba(255, 255, 255, 0.3);
    }
    
    .hero__registry-logo {
        margin-bottom: 0.5rem;
    }
    
    .hero__registry-text {
        text-align: center;
    }
    
    .tech-diagram--enhanced {
        width: 340px;
        height: 340px;
    }
    
    .diagram__center {
        width: 100px;
        height: 100px;
    }
    
    .diagram__node {
        width: 110px;
        height: 110px;
    }
    
    .diagram__node i {
        font-size: 1.5rem;
    }
    
    .diagram__node span {
        font-size: 0.6rem;
    }
    
    .clients {
        padding: 3.5rem 0 2.5rem;
    }
    
    .clients .scene {
        height: 380px;
    }
    
    .clients .carousel {
        width: 280px;
        height: 280px;
    }
    
    .clients .client {
        width: 170px;
        height: 190px;
    }
    
    .clients .client img {
        width: 100px;
        height: 100px;
    }
    
    .clients .client:nth-child(1) { transform: translate(-50%, -50%) rotateY(0deg) translateZ(160px); }
    .clients .client:nth-child(2) { transform: translate(-50%, -50%) rotateY(72deg) translateZ(160px); }
    .clients .client:nth-child(3) { transform: translate(-50%, -50%) rotateY(144deg) translateZ(160px); }
    .clients .client:nth-child(4) { transform: translate(-50%, -50%) rotateY(216deg) translateZ(160px); }
    .clients .client:nth-child(5) { transform: translate(-50%, -50%) rotateY(288deg) translateZ(160px); }
}

@media (max-width: 480px) {
    .tech-diagram--enhanced {
        width: 300px;
        height: 300px;
    }
    
    .diagram__center {
        width: 80px;
        height: 80px;
    }
    
    .diagram__node {
        width: 90px;
        height: 90px;
    }
    
    .diagram__node i {
        font-size: 1.2rem;
    }
    
    .clients .scene {
        height: 340px;
    }
    
    .clients .carousel {
        width: 240px;
        height: 240px;
    }
    
    .clients .client {
        width: 140px;
        height: 160px;
    }
    
    .clients .client img {
        width: 80px;
        height: 80px;
    }
    
    .clients .client:nth-child(1) { transform: translate(-50%, -50%) rotateY(0deg) translateZ(130px); }
    .clients .client:nth-child(2) { transform: translate(-50%, -50%) rotateY(72deg) translateZ(130px); }
    .clients .client:nth-child(3) { transform: translate(-50%, -50%) rotateY(144deg) translateZ(130px); }
    .clients .client:nth-child(4) { transform: translate(-50%, -50%) rotateY(216deg) translateZ(130px); }
    .clients .client:nth-child(5) { transform: translate(-50%, -50%) rotateY(288deg) translateZ(130px); }
}

@keyframes orbitMobile {
    from { transform: rotateY(0); }
    to { transform: rotateY(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .diagram__node,
    .diagram__node--1,
    .diagram__node--2,
    .diagram__node--3,
    .diagram__node--4,
    .clients .carousel {
        animation: none !important;
    }
    
    .diagram__node {
        transform: none !important;
    }
}

.cta-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 100px 0;
    padding-bottom: 70px;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 820px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.btn--large {
    padding: 40px 40px;
    font-size: 1.15rem;
}

.btn--primary-large {
    padding: 18px 40px;
    font-size: 1.15rem;
}

.btn--secondary-large {
    padding: 18px 40px;
    font-size: 1.15rem;
    background: var(--primary-color);
    color: white;
}

.btn--secondary-large:hover {
    background: var(--primary-light);
}

.cta-trust {
    opacity: 0.85;
}

.cta-clients-mini {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.cta-clients-mini img {
    height: 45px;
    filter: grayscale(100%);
    transition: all 0.3s;
}

.cta-clients-mini img:hover {
    filter: grayscale(0%);
}

.hero__title-main{
    text-align: center;
}

.hero__title-accent {
    display: block;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 0.75rem;
    color: #a0b8d4;
    text-transform: uppercase;
    position: relative;
    padding-top: 1rem;
    text-align: center;
}

.hero__title-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg,
                                transparent 0%,
                                #ff6b00 35%,
                                #ff6b00 65%,
                                transparent 100%);
}

.hero__title-accent::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg,
                                transparent 0%,
                                #ff6b00 35%,
                                #ff6b00 65%,
                                transparent 100%);
}