body {
	min-height: 100vh;
	background-color: #ffffff;
	overflow-x: hidden;

    background-image: url("../images/bg-2.png");
    background-repeat: repeat;
    background-position: top left;
    background-size: auto;

}

main {
    width: 100%;
    max-width: 3840px;
    margin: 0 auto;
    box-sizing: border-box;
}


.top-image {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
} 

.top-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    object-fit: cover;

    max-height: 60vh;
    object-position: center;
} 

.top-image-text {
    position: absolute;
    bottom: 25%;
    left: 10%;
    color: white;
    max-width: 60%;
    line-height: 1.5;
    text-align: left;
    opacity: 0;
    -webkit-animation: fadeIn 1.5s ease-out forwards;
    -moz-animation: fadeIn 1.5s ease-out forwards;
    -o-animation: fadeIn 1.5s ease-out forwards;
    animation: fadeIn 1.5s ease-out forwards;
} 
.top-image-text h1 {
    font-size: 46px;
    font-weight: 600;
}
.top-image-text h1 span {
    display: block;
}



/* ---------------- MODULE 1 ---------------- */

.module-1 {
    width: 100%;
    background-color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    padding: 4% 0; 
}

.module-1-image-wrapper {
    position: relative;
    width: 90%;
    overflow: hidden;
}

.module-1-image-wrapper img {
    width: 100%;
    max-height: 800px;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    object-fit: cover;
    display: block;
    border-radius: 10px; 
}

.module-1-text {
    position: absolute;
    top: 50%;
    left: 50%;
    color: white;
    width: 50%;
    opacity: 0;
    -webkit-transform: translate(-100px, -50%);
    -ms-transform: translate(-100px, -50%);
    transform: translate(-100px, -50%);
    -webkit-transition: 1s ease-out;
    -moz-transition: 1s ease-out;
    -o-transition: 1s ease-out;
    transition: 1s ease-out;
    font-weight: 500; 
}
.module-1-text.visible {
    opacity: 1;
    -webkit-transform: translate(-70%, -50%);
    -ms-transform: translate(-70%, -50%);
    transform: translate(-70%, -50%);
} 

.module-1-text span {
    font-size: 40px;
    display: block;
}


/* ---------------- MODULE 2 ---------------- */

.module-2 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    padding: 4% 0;
}

.module-2-inner {
    width: 70%;
    height: auto;
    /* background-image: url('../images/bg-2.png');
    background-size: cover;
    background-position: center; */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-items: center; 
}

.module-2-card {
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
    max-width: 450px;
    
    opacity: 0;     
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: all 0.8s ease-out;
    -moz-transition: all 0.8s ease-out;
    -o-transition: all 0.8s ease-out;
    transition: all 0.8s ease-out; 
}

.module-2-card.visible {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
} 

.card-img {
    width: 200px;
    height: auto;
}

.card-title {
    font-size: 46px;
    font-weight: 700;
    text-align: left;
    color: #000000;
    padding-bottom: 20px;
}
.card-title span {
    color: #2F36FC;
}


.card-list {
    padding-left: 20px;
    text-align: left;
}

.card-list li {
    font-size: 22px;
    margin-bottom: 5px;
    margin-left: 5px;
    color: #000000;
}



/* ---------------- MODULE 3 ---------------- */
.module-3 {
    width: 100%;
    background-color: #E0DCD8; 
    padding: 4% 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center; 
}

.module-3-inner {
    width: 80%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 15px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    box-sizing: border-box;
    justify-content: center;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.module-3-block {
    width: 48%;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;

    opacity: 0;
    -webkit-transform: translateY(80px);
    -ms-transform: translateY(80px);
    transform: translateY(80px);
    -webkit-transition: -webkit-transform 1.1s cubic-bezier(.22,.61,.36,1), opacity 1.1s;
    -moz-transition: transform 1.1s cubic-bezier(.22,.61,.36,1), opacity 1.1s;
    -o-transition: transform 1.1s cubic-bezier(.22,.61,.36,1), opacity 1.1s;
    transition: transform 1.1s cubic-bezier(.22,.61,.36,1), opacity 1.1s;

}
.module-3-block.visible {
    opacity: 1;
    transform: translateY(0);
}


.module-3-block-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000000;
    width: 100%;
    display: block;
}

.module-3-block-images {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.module-3-block-images img {
    height: auto;
    width: auto;
    max-width: 40%;
    display: block;     
    border-radius: 10px;

    opacity: 0;
    -webkit-transform: scale(0.9) translateY(30px);
    -ms-transform: scale(0.9) translateY(30px);
    transform: scale(0.9) translateY(30px);
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;

}
.module-3-block.visible .module-3-block-images img {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
} 
.module-3-block-images img:nth-child(1) { transition-delay: 0.1s; }
.module-3-block-images img:nth-child(2) { transition-delay: 0.3s; }
.module-3-block-images img:nth-child(3) { transition-delay: 0.5s; }


.module-3-block-paragraphs {
    padding: 80px;
    display: flex;
    flex-direction: column;
}

.module-3-block-paragraphs h2 {
    font-size: 32px;
    color: #2F36FC;
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;

    opacity: 0;
    -webkit-transform: translateX(-60px);
    -ms-transform: translateX(-60px);
    transform: translateX(-60px);
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;

}
.module-3-block-paragraphs h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.15em;
    width: 0.3em;
    height: 0.4em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='10' viewBox='0 0 9 10' fill='none'%3E%3Cpath d='M0 0H8.46154L0 10V0Z' fill='%232F36FC'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.module-3-block-paragraphs span {
    font-size: 20px;
    color: #000000;
    margin-bottom: 60px;
    display: block;
    padding-left: 20px;
    width: 90%;

    opacity: 0;
    -webkit-transform: translateX(-40px);
    -ms-transform: translateX(-40px);
    transform: translateX(-40px);
    -webkit-transition: all 0.7s ease-out;
    -moz-transition: all 0.7s ease-out;
    -o-transition: all 0.7s ease-out;
    transition: all 0.7s ease-out;    
}

.module-3-block-link {
    font-size: 24px;
    color: #ffffff;
    background-color: #2F36FC;
    text-decoration: none;
    font-weight: 600;
    padding: 20px;
    border-radius: 8px;
    display: inline-block;
    font-size: 28px;
    -webkit-transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
    align-self: flex-end;

    opacity: 0;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transition: all 0.6s cubic-bezier(.34,1.56,.64,1);
    -moz-transition: all 0.6s cubic-bezier(.34,1.56,.64,1);
    -o-transition: all 0.6s cubic-bezier(.34,1.56,.64,1);
    transition: all 0.6s cubic-bezier(.34,1.56,.64,1);    
}
.module-3-block-link:hover {
    background-color: #1d24c8;
    cursor: pointer;
}


.module-3-block.visible h2 {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}

.module-3-block.visible span {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.45s;
}

.module-3-block.visible .module-3-block-link {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.1s;
}


/* ---------------- MODULE 4 ---------------- */

.module-4 {
    width: 100%;
    min-height: 1200px;
    background-image: url('../images/bg-3.png');
    /* background-size: cover; */
    background-position: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: right;
    align-items: center;
    padding: 4% 0; 
    padding-right: 10%;
}

.module-4-overlay {
    width: 60%;
    max-width: 1200px;
    background: rgba(47, 54, 252, 0.85);
    border-radius: 20px;
    padding: 60px;
    box-sizing: border-box;
    color: #ffffff;

    opacity: 0;
    transform: translateY(80px);
    transition: all 1s cubic-bezier(.22,.61,.36,1);
}

.module-4-overlay.visible {
    opacity: 1;
    transform: translateY(0);
}

.module-4-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 30px;
}

.module-4-description {
    font-size: 22px;
    line-height: 1.6;
    max-width: 900px;
    margin-bottom: 60px;
}

.module-4-title,
.module-4-description {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease-out;
}

.module-4-overlay.visible .module-4-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.module-4-overlay.visible .module-4-description {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

/* ---- STATS ---- */

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

.module-4-stat {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;

    opacity: 0;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: all 0.6s ease-out;
    -moz-transition: all 0.6s ease-out;
    -o-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out;
    
}

.module-4-overlay.visible .module-4-stat {
    opacity: 1;
    transform: translateY(0);
}

.module-4-overlay.visible .module-4-stat:nth-child(1) { transition-delay: 0.6s; }
.module-4-overlay.visible .module-4-stat:nth-child(2) { transition-delay: 0.8s; }
.module-4-overlay.visible .module-4-stat:nth-child(3) { transition-delay: 1s; }

.stat-number {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 10px;
    visibility: hidden;
}

.stat-text {
    font-size: 20px;
    opacity: 0.9;
}

.module-4-overlay.visible .stat-number {
    visibility: visible;
}


/* ---------------- MODULE 5 ---------------- */

.module-5 {
    width: 100%;
    background: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    padding: 4% 0; 
}

.module-5-inner {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center; 
}

.module-5-image {
    width: 90%;
    position: relative;
}

.module-5-image img {
    width: 100%;
    display: block;
    border-radius: 24px;
    max-height: 800px;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    object-fit: cover; 
}

.module-5-content {
    position: absolute;
    inset: 0;
    padding: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center; 
    overflow: hidden;
}

.module-5-title {
    color: #ffffff;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 60px;
}


.module-5-tiles-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.module-5-tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    flex: 1;
    max-width: 1400px;
    height: 100%;
}
.tile {
    background: rgba(255, 255, 255, 0.25);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center; 
}

.tile svg, .tile object {
    display: block;
    margin: auto;
    width: 70%;
    height: 70%;
}

.tile.small {
    max-height: 150px;
    max-width: 400px;
    width: 100%;
    height: 100%;
}

.tile.medium {
    max-height: 250px;
    max-width: 400px;
    width: 100%;
    height: 100%;
}

.tile.large {
    max-height: 320px;
    max-width: 400px;
    width: 100%;
    height: 100%;
}

.tile-1 {
    grid-column: 1;
    grid-row: 1;
    margin-top: auto;
}

.tile-2 {
    grid-column: 1;
    grid-row: 2;
    margin-bottom: auto;
}

.tile-3 {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin: auto 0;
}

.tile-4 {
    grid-column: 3;
    grid-row: 1 / span 2;
    margin: auto 0;
}

.tile-5 {
    grid-column: 4;
    grid-row: 1;
    margin-top: auto;
}

.tile-6 {
    grid-column: 4;
    grid-row: 2;
    margin-bottom: auto;
}

/* ===== MODULE 5 ANIMATIONS ===== */

.module-5-title,
.tile {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.7s cubic-bezier(.22,.61,.36,1);
}

.module-5.visible .module-5-title {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.2s;
}

.module-5.visible .tile {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.module-5.visible .tile:nth-child(1) { transition-delay: 0.3s; }
.module-5.visible .tile:nth-child(2) { transition-delay: 0.4s; }
.module-5.visible .tile:nth-child(3) { transition-delay: 0.5s; }
.module-5.visible .tile:nth-child(4) { transition-delay: 0.6s; }
.module-5.visible .tile:nth-child(5) { transition-delay: 0.7s; }
.module-5.visible .tile:nth-child(6) { transition-delay: 0.8s; }


/* ---------------- MODULE 6 ---------------- */

.module-6 {
    width: 100%;
    padding: 4% 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
}

.module-6-inner {
    width: 90%;
    max-width: 1600px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    position: relative;
}

.slider-viewport {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 30px;
    will-change: transform;
}


.slider-tile {
    flex: 0 0 calc(50% - 15px);
    background: #f5f5f58a;
    border-radius: 20px;
    padding: 60px;
    box-sizing: border-box;
    text-align: center;
}


.slider-text {
    font-family: "General Sans Variable", sans-serif;
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #2B2E7E;
}

.slider-name {
    display: block;
    font-weight: 700;
    font-size: 20px;
    color: #2B2E7E;
}

.slider-company {
    display: block;
    font-size: 16px;
    color: #2B2E7E;
}


.slider-arrow {
    background: none;
    border: none;
    font-size: 48px;
    cursor: pointer;
    color: #dadada;
    padding: 20px;
    -webkit-transition: -webkit-transform 0.2s ease;
    -moz-transition: transform 0.2s ease;
    -o-transition: transform 0.2s ease;
    transition: transform 0.2s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; 
}

.slider-arrow:hover {
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
} 


.slider-arrow,
.slider-arrow * {
    -webkit-tap-highlight-color: transparent;
}

.slider-arrow:focus,
.slider-arrow:focus-visible,
.slider-arrow:active {
    outline: none;
    box-shadow: none;
}



/* ===== MODULE 6 ENTRY ANIMATION ===== */

.module-6-inner {
    opacity: 0;
    transform: translateY(80px);
    transition: all 1s cubic-bezier(.22,.61,.36,1);
}

.module-6-inner.visible {
    opacity: 1;
    transform: translateY(0);
}

.module-6-inner .slider-arrow {
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.6s ease-out;
}

.module-6-inner.visible .slider-arrow {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.4s;
}


/* ---------------- MODULE 7 ---------------- */

.module-7 {
    width: 100%;
    padding: 4% 0;
    display: flex;
    justify-content: center;
}

.module-7-inner {
    width: 90%;
    max-width: 1600px;
    text-align: center;
}

.module-7-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 80px;
    color: #000000;
}

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

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
    margin-bottom: 80px;
}

.step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.step:hover {
    transform: translateY(-5px);
}

.circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #000000;
    margin-bottom: 15px;
    -webkit-box-shadow: 0px 20px 18px -10px rgba(66, 68, 90, 1);
    -moz-box-shadow: 0px 20px 18px -10px rgba(66, 68, 90, 1);
    box-shadow: 0px 20px 18px -10px rgba(66, 68, 90, 1);
}
.circle:hover {
    cursor: pointer;
}

.step.active .circle {
    background: #2F36FC;
    border: none;
    transform: scale(1.15);
}

.step span {
    font-size: 16px;
    max-width: 160px;
    color: #000000;
}

.arrow {
    width: 40px;
    height: 2px;
    background: #000000;
    position: relative;
    margin-top: 25px;
    flex-shrink: 0;
}

.arrow::after {
    content: "";
    position: absolute;
    right: -6px;
    top: -4px;
    width: 0;
    height: 0;
    border-left: 6px solid #000000;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}


.process-content {
    max-width: 900px;
    text-align: center;
    font-size: 22px;
    line-height: 1.6;
    color: #000000;
    min-height: 250px;
}
.process-content p {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.step,
.step * {
    -webkit-tap-highlight-color: transparent;
}

.step:focus,
.step:focus-visible,
.step:active {
    outline: none;
    box-shadow: none;
}

/* ===== MODULE 7 – ENTRY ANIMATION ===== */

.module-7-inner {
    opacity: 0;
    transform: translateY(80px);
    transition: all 1s cubic-bezier(.22,.61,.36,1);
}

.module-7-inner.visible {
    opacity: 1;
    transform: translateY(0);
}

/* cascade */
.module-7-title,
.process-steps,
.process-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.module-7-inner.visible .module-7-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.module-7-inner.visible .process-steps {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.module-7-inner.visible .process-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}


/* ---------------- MODULE 8 ---------------- */

.module-8 {
    width: 100%;
    background: #ffffff;
    padding: 4% 0;
    display: flex;
    justify-content: center;
}

.module-8-inner {
    width: 100%;
    display: flex;
    justify-content: center;
}

.module-8-image {
    position: relative;
    width: 90%;
    overflow: hidden;
    border-radius: 24px;
}

.module-8-image img {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 800px;
}


.module-8-text {
    position: absolute;
    top: 50%;
    left: 12%;
    transform: translateY(-50%);
    color: #ffffff;
    max-width: 35%;
}

.module-8-text h2 {
    font-size: 46px;
    font-weight: 500;
    margin-bottom: 20px;
}

.module-8-text p {
    font-size: 24px;
    line-height: 1.6;
    opacity: 0.9;
}

/* --- LINK --- */

.module-8-link {
    position: absolute;
    bottom: 70px;
    right: 70px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.module-8-link:hover {
    transform: translateX(6px);
    opacity: 0.85;
}


/* ===== MODULE 8 – ENTRY ANIMATION ===== */

.module-8-text,
.module-8-link {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.module-8-inner.visible .module-8-text {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.module-8-inner.visible .module-8-link {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}


/* ---------------- MODULE 9 ---------------- */

.module-9 {
  width: 100%;
  padding: 4% 0;
  display: flex;
  justify-content: center;
}

.module-9-inner {
  width: 90%;
  max-width: 1600px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.module-9-card {
  display: flex;
  flex-direction: column;
}

.module-9-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 16px;
}

.module-9-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.module-9-text {
  margin-top: 16px;
}

.module-9-company {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b6b6b;
  display: block;
  margin-bottom: 6px;
}

.module-9-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 6px 0;
  color: #000000;
}

.module-9-description {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0;
}

/* ===== MODULE 9 – ENTRY ANIMATION ===== */

.module-9-card {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.22,.61,.36,1);
}

.module-9-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.module-9-card.visible:nth-child(1) { transition-delay: 0.1s; }
.module-9-card.visible:nth-child(2) { transition-delay: 0.25s; }
.module-9-card.visible:nth-child(3) { transition-delay: 0.4s; }


/* ---------------- MODULE 10 ---------------- */

.module-10 {
    width: 100%;
    min-height: 600px;
    padding-top: 4% 0;
}

.module-10-inner {
    display: flex;
    width: 100%;
    min-height: 600px;
    max-height: 1000px;
    flex-direction: row;
}

/* ===== LEFT ===== */

.module-10-left {
    position: relative;
    width: 60%;
    overflow: hidden;
}

.module-10-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.module-10-overlay {
    position: absolute;
    width: 70%;
    height: 55%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(26, 34, 255, 0.90);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    border-radius: 10px;
    overflow: hidden;
    max-height: 500px;
    max-width: 800px;
}

.module-10-overlay a {
    color: #ffffff;
    text-decoration: none;
}


.module-10-overlay h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    max-width: 70%;
}

.module-10-description {
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.module-10-contact-data {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-mail {
    font-size: 18px;
    font-weight: 500;
}

.contact-phone {
    font-size: 18px;
    font-weight: 500;
}


/* ===== RIGHT ===== */

.module-10-right {
    width: 40%;
    background: #E0DCD8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.module-10-form {
    width: 100%;
    max-width: 500px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.module-10-form input,
.module-10-form textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-family: inherit;
    resize: none;
}

.module-10-form input:focus,
.module-10-form textarea:focus {
    outline: none;
    border-color: #2F36FC;
}

textarea {
    margin-bottom: 30px;
}

.form-submit {
    display: flex;
    justify-content: flex-end;
}

.form-submit button {
    background: #2F36FC;
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.form-submit button:hover {
    background: #1d24c8;
    transform: translateY(-2px);
}

.form-privacy {
    margin-top: 14px;
    font-size: 14px;
    color: #8a8a8a;
    margin-top: 40px;
}

.form-privacy a {
    color: inherit;
    text-decoration: underline;
}

.form-privacy a:hover {
    opacity: 0.75;
}


.form-info {
    margin-top: 14px;
    font-size: 14px;
    margin-top: 20px;  
    margin-bottom: 20px;  
    padding-right: 5px;
    text-align: center;  
}

/* ===== MODULE 10 – INNER ANIMATION ===== */

.module-10-overlay {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.module-10.visible .module-10-overlay {
  opacity: 1;
}

.module-10-form {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.22,.61,.36,1);
}

.module-10.visible .module-10-form {
  opacity: 1;
  transform: translateY(0);
}


/* RECAPTCHA */

.g-recaptcha {
    margin-left: auto;
    margin-bottom: 30px;
}

/* ===== RESPONSIVE STYLES ===== */


@media (max-width: 1440px) {


    .module-4 {
        min-height: 700px;
    }

    .top-image-text h1, .module-1-text span, .module-5-title {
        font-size: 30px;
    }

    .card-img {
        width: 150px;
    }

    .card-title, .module-3-block-title {
        font-size: 28px;
    }

    .card-list li {
        font-size: 14px;
    }

    .module-3-block-paragraphs h2 {
        font-size: 26px;
    }
    .module-3-block-paragraphs span, .module-3-block-link {
        font-size: 14px;
    }


    .module-8-text {
        max-width: 45%;
    }

    .module-8-text h2 {
        font-size: 36px;
    }

    .module-8-text p {
        font-size: 18px;
    }

    .module-10-overlay h2 {
        font-size: 28px;
        margin-bottom: 15px;
        max-width: 90%;
    }    

}


@media (max-width: 1200px) {
    .top-image-text h1, .module-1-text span, .module-5-title {
        font-size: 25px;
    }

    .module-1-text {
        width: 60%;
        transform: translate(-55%, -50%);
    }

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

    .module-2-card {
        width: 50%;
    }   

    .card-title {
        font-size: 24px;
    }
    .module-3-block-paragraphs {
        padding: 0px;
    }  

    .card-list li {
        font-size: 12px;
    }  

    .module-3-block {
        width: 100%;
        display: block;
    }

    .module-3-block-title {
        font-size: 24px;
        width: 90%;
    }

    .module-3-block-paragraphs h2 {
        font-size: 20px;
        padding-left: 10px;
    }
    .module-3-block-paragraphs span {
        font-size: 12px;
        margin-bottom: 30px;
        padding-left: 10px;
    }    

    .module-3-block-link {
        font-size: 12px;
    }

    .module-4 {
        justify-content: center;
        padding: 5% 0;
    }

    .module-4-overlay {
        padding: 40px;
    }

    .module-4-title {
        font-size: 36px;
    }

    .stat-number {
        font-size: 48px;
    }

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

    .slider-text {
        font-size: 12px;
    }

    .slider-name {
        font-size: 16px;
    }

    .slider-company {
        font-size: 14px;
    }

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

    .module-10-overlay h2 {
        font-size: 24px;
    }

    .module-10-description {
        font-size: 16px;
    }
    .contact-mail {
        font-size: 16px;
    }

    .contact-phone {
        font-size: 16px;
    }

}

@media (max-width: 900px) {

    .process-steps {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 60px;
        gap: 30px;
    }

    .step {
        flex-direction: row;
        gap: 20px;
    }

    .step span {
        max-width: none;
        font-size: 18px;
        text-align: left;
    }

    .arrow {
        width: 2px;
        height: 30px;
        margin-left: 24px;
        background: #000000;
        position: relative;
        margin-top: auto;
    }

    .arrow::after {
        content: "";
        position: absolute;
        top: 25px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-top: 6px solid #000000; 
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
    }

    .module-7-title {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .process-content {
        font-size: 18px;
    }


    .module-8-text h2 {
        font-size: 28px;
    }

    .module-8-text p {
        font-size: 16px;
    }

    .module-8-link {
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }

    .module-10-inner {
        flex-direction: column;
        max-height: none;
    }

    .module-10-right {
        padding: 40px 20px;
        width: 100%;
    }

    .module-10-left {
        width: 100%;
    }

    .module-10-overlay {
        width: 70%;
        height: 60%;
    }

}



@media (max-width: 800px) {

    .module-1-image-wrapper img {
        max-height: 500px;
    }

    .top-image-text {
        max-width: 80%;
    }
    .top-image-text h1 {
        font-size: 20px;
    }
    
    .module-1-text span {
        font-size: 20px;
    }
    
    .module-1-text.visible {
        width: 70%;
        transform: translate(-50%, -50%);
    }
    
    .module-2-inner {
        grid-template-columns: repeat(1, 1fr);
    }

   .module-2-card {
        width: 100%;
    }  

    .card-img {
        width: 80px;
    }
    .card-title, .module-3-block-title {
        font-size: 18px;

    }

    .card-list li {
        font-size: 12px;
    }  

    .module-3-block-paragraphs h2 {
        font-size: 16px;
    }
    .module-3-block-paragraphs span {
        font-size: 12px;
    }

    .module-3-block-link {
        font-size: 12px;
        padding: 10px;
    }

    .module-5 {
        padding: 60px 0;
    }

    .module-5-image {
        width: 95%;
        min-height: 400px;
    }

    .module-5-image img {
        height: 100%;
    }

    .module-5-content {
        padding: 30px;
    }

    .module-5-title {
        margin-bottom: 20px;
        font-size: 20px;
    }

    .module-5-tiles {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, minmax(0, 1fr));
    }

    .tile {
        grid-column: auto;
        grid-row: auto;
    }

    .slider-tile {
        flex: 0 0 100%;
        padding: 40px;
    }

    .slider-arrow {
        font-size: 36px;
    }    

    .module-8-text h2 {
        font-size: 22px;
    }

    .module-8-text p {
        font-size: 16px;
    }

    .module-8-link {
        font-size: 16px;
    }

    .module-8-text {
        left: 50px;
        top: 50px;
        max-width: 65%;
    }

    .module-9 {
        padding: 10% 0;
    }

    .module-9-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .module-10-overlay h2 {
        font-size: 22px;
    }

    .module-10-description {
        font-size: 14px;
    }
    .contact-mail {
        font-size: 14px;
    }

    .contact-phone {
        font-size: 14px;
    }

}


@media (max-width: 600px) {
    .module-4 {
        padding: 10% 0;
    }

    .module-4-overlay {
        width: 90%;
        padding: 30px;
    }

    .module-4-stats {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .module-4-title {
        font-size: 28px;
    }

    .module-4-description {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-text {
        font-size: 16px;
    }

    .module-5-tiles {
        gap: 5px;
    }

    .module-8-image {
        width: 95%;
        border-radius: 16px;
    }

    .module-8-text h2 {
        font-size: 18px;
    }

    .module-8-text p {
        font-size: 14px;
    }

    .module-8-link {
        font-size: 14px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }    

    .module-10-overlay h2 {
        font-size: 16px;
    }

    .module-10-description {
        font-size: 12px;
    }
    .contact-mail {
        font-size: 12px;
    }

    .contact-phone {
        font-size: 12px;
    }


}


@media (max-width: 460px) {
    .top-image-text h1, .module-1-text span {
        font-size: 14px;
    }

    .module-5-title {
        font-size: 16px;
    }

    .module-1-text {
        width: 80%;
        transform: translate(-45%, -50%);
    }

    .card-img {
        width: 40px;
    }

    .module-8-text h2 {
        font-size: 16px;
    }

    .module-8-text p {
        font-size: 12px;
    }

    .module-8-link {
        font-size: 12px;
    }

    .module-10-overlay {
        width: 85%;
        height: 85%;
    }    
    

}

@media (max-width: 320px) {
    .top-image-text h1, .module-1-text span {
        font-size: 8px;
    }

    .module-5-title {
        font-size: 10px;
    }

    .module-3-block-paragraphs h2 {
        font-size: 12px;
    }
    .module-3-block-paragraphs span, .module-3-block-link {
        font-size: 8px;
    }

    .module-10-overlay h2 {
        font-size: 12px;
    }

    .module-10-description {
        font-size: 8px;
    }
    .contact-mail {
        font-size: 8px;
    }

    .contact-phone {
        font-size: 8px;
    }


}



@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(30%);
        -moz-transform: translateY(30%);
        -o-transform: translateY(30%);
        transform: translateY(30%);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0%);
        -moz-transform: translateY(0%);
        -o-transform: translateY(0%);
        transform: translateY(0%);
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(30%);
        -moz-transform: translateY(30%);
        -o-transform: translateY(30%);
        transform: translateY(30%);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0%);
        -moz-transform: translateY(0%);
        -o-transform: translateY(0%);
        transform: translateY(0%);
    }
}

@-o-keyframes fadeIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(30%);
        -moz-transform: translateY(30%);
        -o-transform: translateY(30%);
        transform: translateY(30%);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0%);
        -moz-transform: translateY(0%);
        -o-transform: translateY(0%);
        transform: translateY(0%);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(30%);
        -moz-transform: translateY(30%);
        -o-transform: translateY(30%);
        transform: translateY(30%);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0%);
        -moz-transform: translateY(0%);
        -o-transform: translateY(0%);
        transform: translateY(0%);
    }
}
