/* =========================================================
   AVAC-TECH MAIN STYLESHEET
   ========================================================= */


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {

    --bg-dark: #0f171a;
    --bg-dark-2: #151f23;
    --bg-dark-3: #1b272c;

    --text-dark: #122024;
    --text-body: #66767c;
    --text-light: #f4f8f9;
    --text-muted: #a6b4b9;

    --white: #ffffff;

    --green: #00c789;
    --green-dark: #009e70;

    --cyan: #18bfe3;
    --cyan-dark: #129ebd;

    --border-light: #e8eef0;
    --border-dark: rgba(255,255,255,0.10);

    --shadow-sm: 0 8px 25px rgba(0,0,0,0.07);
    --shadow-md: 0 18px 45px rgba(0,0,0,0.10);
    --shadow-lg: 0 30px 80px rgba(0,0,0,0.18);

    --gradient-main: linear-gradient(
        135deg,
        var(--green) 0%,
        var(--cyan) 100%
    );

    --gradient-dark: linear-gradient(
        145deg,
        #0d171a 0%,
        #142328 55%,
        #0d181c 100%
    );

    --container: 1240px;

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;

    --transition: all .3s ease;

}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background: #ffffff;
    overflow-x: hidden;
}


body.menu-open {
    overflow: hidden;
}


img {
    max-width: 100%;
    display: block;
}


a {
    text-decoration: none;
    color: inherit;
}


ul {
    list-style: none;
}


button,
input,
textarea,
select {
    font: inherit;
}


button {
    border: 0;
    outline: 0;
}


section {
    position: relative;
}


/* =========================================================
   GLOBAL
========================================================= */

.container {
    width: calc(100% - 40px);
    max-width: var(--container);
    margin: 0 auto;
}


.section-padding {
    padding: 110px 0;
}


.section-heading {
    max-width: 790px;
    margin-bottom: 55px;
}


.section-heading.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}


.section-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 17px;
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}


.section-heading.centered .section-tag {
    justify-content: center;
}


.section-tag span {
    width: 28px;
    height: 2px;
    background: var(--gradient-main);
    border-radius: 10px;
}


.section-title {
    font-family: "Manrope", sans-serif;
    font-size: 48px;
    line-height: 1.16;
    letter-spacing: -1.8px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 22px;
}


.section-title span {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


.section-heading > p {
    font-size: 17px;
    line-height: 1.8;
}


.lead-text {
    color: #3d5056;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 500;
}


.btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 9px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    cursor: pointer;
}


.btn-primary {
    color: #ffffff;
    background: var(--gradient-main);
    box-shadow: 0 12px 30px rgba(0, 194, 160, .20);
}


.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(0, 194, 160, .30);
}


.btn-outline {
    color: #ffffff;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.22);
}


.btn-outline:hover {
    background: #ffffff;
    color: var(--text-dark);
    transform: translateY(-3px);
}


.btn-light {
    color: var(--text-dark);
    background: #ffffff;
}


.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
}


/* =========================================================
   PAGE LOADER
========================================================= */

.page-loader {
    position: fixed;
    inset: 0;
    background: #10191c;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .45s ease, visibility .45s ease;
}


.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}


.loader-ring {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,.10);
    border-top-color: var(--green);
    border-right-color: var(--cyan);
    animation: loaderSpin .8s linear infinite;
}


@keyframes loaderSpin {
    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   HEADER
========================================================= */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 92px;
    z-index: 1000;
    transition: var(--transition);
}


.main-header.scrolled {
    height: 76px;
    background: rgba(13, 22, 25, .96);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 35px rgba(0,0,0,.18);
    border-bottom: 1px solid rgba(255,255,255,.06);
}


.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}


.logo {
    display: flex;
    align-items: center;
    width: 215px;
    flex-shrink: 0;
}


.logo img {
    width: 100%;
    max-height: 95px;
    object-fit: contain;
    object-position: left center;
}


.main-nav {
    margin-left: auto;
}


.main-nav ul {
    display: flex;
    align-items: center;
    gap: 35px;
}


.nav-link {
    position: relative;
    display: block;
    color: rgba(255,255,255,.84);
    font-size: 14px;
    font-weight: 600;
    padding: 14px 0;
    transition: var(--transition);
}


.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    border-radius: 5px;
    transition: width .3s ease;
}


.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}


.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


.header-action {
    display: flex;
    align-items: center;
    gap: 18px;
}


.header-phone {
    display: flex;
    align-items: center;
    gap: 11px;
}


.phone-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #ffffff;
    background: var(--gradient-main);
}


.phone-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}


.phone-text small {
    color: rgba(255,255,255,.55);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.phone-text strong {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}


.menu-toggle {
    width: 46px;
    height: 46px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border-radius: 10px;
    background: rgba(255,255,255,.08);
    cursor: pointer;
}


.menu-toggle span {
    width: 21px;
    height: 2px;
    background: #ffffff;
    border-radius: 5px;
    transition: var(--transition);
}


/* =========================================================
   HERO
========================================================= */

.hero-section {
    position: relative;
    min-height: 810px;
    display: flex;
    align-items: center;
    color: #ffffff;
    background: var(--gradient-dark);
    overflow: hidden;
    padding: 145px 0 75px;
}


.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 65% 35%,
            rgba(24,191,227,.10),
            transparent 31%
        ),
        radial-gradient(
            circle at 25% 70%,
            rgba(0,199,137,.08),
            transparent 32%
        );
}


.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .10;
    background-image:
        linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(
        to bottom,
        rgba(0,0,0,.9),
        rgba(0,0,0,.15)
    );
}


.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
}


.hero-glow-one {
    width: 420px;
    height: 420px;
    background: rgba(0,199,137,.15);
    left: -150px;
    bottom: -120px;
}


.hero-glow-two {
    width: 420px;
    height: 420px;
    background: rgba(24,191,227,.14);
    right: -120px;
    top: 80px;
}


.hero-container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(400px, .96fr);
    align-items: center;
    gap: 60px;
}


.hero-content {
    max-width: 700px;
}


.hero-badge {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d8f9f0;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.12);
    padding: 9px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 25px;
}


.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(0,199,137,.12);
}


.hero-content h1 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(52px, 5vw, 76px);
    line-height: 1.03;
    letter-spacing: -3px;
    font-weight: 800;
    margin-bottom: 27px;
}


.hero-content h1 span {
    display: block;
    background: var(--gradient-main);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}


.hero-description {
    max-width: 650px;
    color: rgba(255,255,255,.72);
    font-size: 18px;
    line-height: 1.8;
}


.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 33px;
}


.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 23px;
    margin-top: 35px;
}


.hero-feature {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255,255,255,.78);
    font-size: 13px;
}


.feature-check {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0,199,137,.15);
    color: var(--green);
    font-size: 10px;
}


.hero-visual {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.technology-orbit {
    position: relative;
    width: 500px;
    height: 500px;
}


.orbit-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.11);
}


.orbit-one {
    inset: 50px;
    animation: orbitRotate 22s linear infinite;
}


.orbit-two {
    inset: 105px;
    border-style: dashed;
    border-color: rgba(24,191,227,.24);
    animation: orbitRotateReverse 16s linear infinite;
}


.orbit-three {
    inset: 155px;
    border-color: rgba(0,199,137,.22);
}


@keyframes orbitRotate {
    to {
        transform: rotate(360deg);
    }
}


@keyframes orbitRotateReverse {
    to {
        transform: rotate(-360deg);
    }
}


.technology-center {
    position: absolute;
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 34px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow:
        0 30px 80px rgba(0,0,0,.30),
        0 0 50px rgba(0,199,137,.10);
    backdrop-filter: blur(15px);
}


.technology-center img {
    width: 100px;
    max-height: 100px;
    object-fit: contain;
}


.tech-icon {
    position: absolute;
    min-width: 145px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 13px 15px;
    border-radius: 12px;
    color: #ffffff;
    background: rgba(15,26,30,.85);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 20px 50px rgba(0,0,0,.24);
    backdrop-filter: blur(14px);
    font-size: 12px;
    font-weight: 600;
}


.tech-icon i {
    color: var(--cyan);
    font-size: 18px;
}


.tech-icon-1 {
    left: 0;
    top: 90px;
    animation: floatOne 4.4s ease-in-out infinite;
}


.tech-icon-2 {
    right: -8px;
    top: 120px;
    animation: floatOne 4.9s ease-in-out infinite reverse;
}


.tech-icon-3 {
    left: 20px;
    bottom: 80px;
    animation: floatOne 5.3s ease-in-out infinite;
}


.tech-icon-4 {
    right: 5px;
    bottom: 75px;
    animation: floatOne 4.7s ease-in-out infinite reverse;
}


@keyframes floatOne {

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

    50% {
        transform: translateY(-10px);
    }

}


.scroll-down {
    position: absolute;
    z-index: 5;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.50);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}


.scroll-down i {
    color: var(--green);
    animation: scrollBounce 1.7s infinite;
}


@keyframes scrollBounce {

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

    50% {
        transform: translateY(6px);
    }

}


/* =========================================================
   QUICK SOLUTIONS
========================================================= */

.quick-solutions {
    position: relative;
    z-index: 8;
    margin-top: -1px;
    background: #ffffff;
    border-bottom: 1px solid var(--border-light);
}


.quick-solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}


.quick-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 105px;
    padding: 20px 30px;
    border-right: 1px solid var(--border-light);
}


.quick-item:first-child {
    border-left: 1px solid var(--border-light);
}


.quick-item > i {
    font-size: 28px;
    background: var(--gradient-main);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}


.quick-item div {
    display: flex;
    flex-direction: column;
}


.quick-item strong {
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 700;
}


.quick-item span {
    color: #849297;
    font-size: 11px;
}


/* =========================================================
   INTRO
========================================================= */

.intro-section {
    background: #ffffff;
}


.intro-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    align-items: center;
    gap: 80px;
}


.intro-image {
    position: relative;
}


.image-wrapper {
    position: relative;
    max-width: 550px;
}


.image-wrapper > img {
    width: 100%;
    min-height: 550px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
}


.image-wrapper::before {
    content: "";
    position: absolute;
    left: -25px;
    bottom: -25px;
    width: 55%;
    height: 55%;
    border-radius: 22px;
    background: var(--gradient-main);
    opacity: .13;
    z-index: -1;
}


.image-pattern {
    position: absolute;
    right: -25px;
    top: -25px;
    width: 110px;
    height: 110px;
    opacity: .45;
    background-image: radial-gradient(
        var(--green) 2px,
        transparent 2px
    );
    background-size: 14px 14px;
    z-index: -1;
}


.experience-box {
    position: absolute;
    right: -30px;
    bottom: 45px;
    min-width: 225px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 20px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
}


.experience-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--gradient-main);
    color: #ffffff;
    font-size: 19px;
}


.experience-box div:last-child {
    display: flex;
    flex-direction: column;
}


.experience-box strong {
    color: var(--text-dark);
    font-size: 17px;
}


.experience-box span {
    color: #879397;
    font-size: 11px;
}


.intro-content > p:not(:last-child) {
    margin-bottom: 18px;
}


.intro-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 32px 0;
}


.intro-point {
    display: flex;
    gap: 12px;
}


.point-icon {
    color: var(--green);
    font-size: 22px;
    margin-top: 2px;
}


.intro-point h4 {
    color: var(--text-dark);
    font-size: 15px;
    margin-bottom: 4px;
}


.intro-point p {
    font-size: 13px;
    line-height: 1.6;
}


.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--green-dark);
    font-size: 14px;
    font-weight: 700;
}


.text-link i {
    transition: transform .3s ease;
}


.text-link:hover i {
    transform: translateX(5px);
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    overflow: hidden;
    background: #f5f8f9;
}


.services-bg {
    position: absolute;
    right: -200px;
    top: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(24,191,227,.07);
    filter: blur(25px);
}


.services-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


.service-card {
    position: relative;
    min-height: 330px;
    padding: 31px 27px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #e8edef;
    box-shadow: 0 8px 35px rgba(0,0,0,.035);
    overflow: hidden;
    transition: var(--transition);
}


.service-card::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-main);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}


.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0,199,137,.18);
}


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


.service-number {
    position: absolute;
    top: 19px;
    right: 22px;
    font-family: "Manrope", sans-serif;
    color: #edf1f2;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}


.service-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 23px;
    border-radius: 13px;
    background: rgba(0,199,137,.08);
    color: var(--green-dark);
    font-size: 23px;
}


.service-card h3 {
    color: var(--text-dark);
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    line-height: 1.35;
    margin-bottom: 12px;
}


.service-card p {
    font-size: 13.5px;
    line-height: 1.75;
    margin-bottom: 22px;
}


.service-link {
    position: absolute;
    left: 27px;
    bottom: 27px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 700;
}


.service-link i {
    transition: transform .3s ease;
}


.service-link:hover i {
    transform: translateX(4px);
}


.featured-service {
    color: rgba(255,255,255,.75);
    background: var(--gradient-dark);
    border-color: transparent;
}


.featured-service .service-number {
    color: rgba(255,255,255,.07);
}


.featured-service .service-icon {
    color: #ffffff;
    background: var(--gradient-main);
}


.featured-service h3 {
    color: #ffffff;
}


.featured-service .service-link {
    color: var(--green);
}


/* =========================================================
   SOLUTIONS
========================================================= */

.solutions-section {
    background: #ffffff;
}


.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}


.solution-card {
    position: relative;
    padding: 32px;
    border-radius: 17px;
    background: #ffffff;
    border: 1px solid #e4eaec;
    box-shadow: 0 10px 35px rgba(0,0,0,.035);
    overflow: hidden;
    transition: var(--transition);
}


.solution-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 90px;
    height: 90px;
    border-radius: 0 0 0 100%;
    background: var(--gradient-main);
    opacity: .055;
}


.solution-card:hover {
    transform: translateY(-7px);
    border-color: rgba(0,199,137,.28);
    box-shadow: var(--shadow-md);
}


.solution-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: linear-gradient(
        145deg,
        rgba(0,199,137,.10),
        rgba(24,191,227,.10)
    );
    color: var(--green-dark);
    font-size: 25px;
    margin-bottom: 21px;
}


.solution-card h3 {
    color: var(--text-dark);
    font-family: "Manrope", sans-serif;
    font-size: 19px;
    margin-bottom: 12px;
}


.solution-card > p {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 19px;
}


.solution-card ul {
    display: grid;
    gap: 8px;
}


.solution-card li {
    position: relative;
    padding-left: 20px;
    color: #56676c;
    font-size: 12.5px;
}


.solution-card li::before {
    content: "\f00c";
    position: absolute;
    left: 0;
    top: 1px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--green);
    font-size: 10px;
}


.featured-solution {
    background: linear-gradient(
        145deg,
        #142327,
        #101a1d
    );
    border-color: transparent;
}


.featured-solution h3 {
    color: #ffffff;
}


.featured-solution > p,
.featured-solution li {
    color: rgba(255,255,255,.66);
}


.featured-solution .solution-icon {
    color: #ffffff;
    background: var(--gradient-main);
}


.solution-badge {
    position: absolute;
    top: 17px;
    right: 17px;
    padding: 6px 10px;
    border-radius: 20px;
    background: rgba(0,199,137,.12);
    border: 1px solid rgba(0,199,137,.25);
    color: var(--green);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-section {
    background: #f5f8f9;
}


.why-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 75px;
}


.why-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 34px;
}


.why-item {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e8edef;
}


.why-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #ffffff;
    background: var(--gradient-main);
}


.why-item h4 {
    color: var(--text-dark);
    font-size: 14px;
    margin-bottom: 4px;
}


.why-item p {
    font-size: 11.5px;
    line-height: 1.55;
}


.why-image-box {
    position: relative;
}


.why-image-box > img {
    width: 100%;
    min-height: 620px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
}


.why-overlay-card {
    position: absolute;
    left: -35px;
    bottom: 45px;
    min-width: 245px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    color: #ffffff;
    background: rgba(14,24,27,.92);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(15px);
}


.overlay-icon {
    width: 47px;
    height: 47px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: var(--gradient-main);
    font-size: 20px;
}


.why-overlay-card > div:last-child {
    display: flex;
    flex-direction: column;
}


.why-overlay-card span {
    color: rgba(255,255,255,.58);
    font-size: 11px;
}


.why-overlay-card strong {
    font-size: 17px;
}


/* =========================================================
   PROCESS
========================================================= */

.process-section {
    color: #ffffff;
    background: var(--gradient-dark);
    overflow: hidden;
}


.process-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .10;
    background-image:
        linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 55px 55px;
}


.process-section .container {
    position: relative;
    z-index: 2;
}


.process-section .section-title {
    color: #ffffff;
}


.process-section .section-heading > p {
    color: rgba(255,255,255,.62);
}


.process-grid {
    display: grid;
    grid-template-columns:
        1fr 50px
        1fr 50px
        1fr 50px
        1fr 50px
        1fr 50px
        1fr;
    align-items: center;
}


.process-item {
    position: relative;
    text-align: center;
    padding: 10px 5px;
}


.process-number {
    position: absolute;
    top: -12px;
    right: 12px;
    color: rgba(255,255,255,.08);
    font-family: "Manrope", sans-serif;
    font-size: 42px;
    font-weight: 800;
}


.process-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: #ffffff;
    background: var(--gradient-main);
    font-size: 24px;
    box-shadow: 0 15px 35px rgba(0,199,137,.18);
}


.process-item h3 {
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    margin-bottom: 7px;
}


.process-item p {
    color: rgba(255,255,255,.55);
    font-size: 11.5px;
    line-height: 1.6;
}


.process-line {
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(0,199,137,.2),
        rgba(24,191,227,.65),
        rgba(0,199,137,.2)
    );
}


/* =========================================================
   INDUSTRIES
========================================================= */

.industries-section {
    background: #ffffff;
}


.industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}


.industry-card {
    min-height: 135px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    padding: 20px 12px;
    border-radius: 13px;
    background: #f7f9fa;
    border: 1px solid #edf1f2;
    transition: var(--transition);
}


.industry-card i {
    font-size: 27px;
    background: var(--gradient-main);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}


.industry-card span {
    color: #33474c;
    font-size: 12px;
    font-weight: 700;
}


.industry-card:hover {
    transform: translateY(-5px);
    background: #ffffff;
    border-color: rgba(0,199,137,.22);
    box-shadow: var(--shadow-sm);
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    background: #f5f8f9;
}


.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 75px;
    align-items: center;
}


.about-content > p {
    margin-bottom: 17px;
}


.about-buttons {
    margin-top: 30px;
}


.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}


.value-card {
    padding: 30px 27px;
    border-radius: 17px;
    background: #ffffff;
    border: 1px solid #e5ebed;
    box-shadow: 0 10px 35px rgba(0,0,0,.035);
}


.value-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: #ffffff;
    background: var(--gradient-main);
    font-size: 21px;
    margin-bottom: 20px;
}


.value-card h3 {
    color: var(--text-dark);
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
}


.value-card p {
    font-size: 12.5px;
    line-height: 1.7;
}


.full-value {
    grid-column: 1 / -1;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}


.full-value .value-icon {
    flex-shrink: 0;
    margin-bottom: 0;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    position: relative;
    padding: 0 0 110px;
    background: #f5f8f9;
}


.cta-box {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
    padding: 55px 60px;
    border-radius: 22px;
    color: #ffffff;
    background: var(--gradient-dark);
    box-shadow: var(--shadow-lg);
}


.cta-box::after {
    content: "";
    position: absolute;
    right: -100px;
    top: -130px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(24,191,227,.10);
}


.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}


.cta-small {
    display: block;
    color: var(--green);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
}


.cta-content h2 {
    font-family: "Manrope", sans-serif;
    font-size: 37px;
    line-height: 1.2;
    margin-bottom: 14px;
}


.cta-content p {
    color: rgba(255,255,255,.62);
    max-width: 650px;
}


.cta-actions {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 22px;
}


.cta-phone {
    display: flex;
    align-items: center;
    gap: 12px;
}


.cta-phone > i {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--gradient-main);
}


.cta-phone div {
    display: flex;
    flex-direction: column;
}


.cta-phone span {
    color: rgba(255,255,255,.52);
    font-size: 10px;
}


.cta-phone strong {
    color: #ffffff;
    font-size: 13px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    background: #ffffff;
}


.contact-grid {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: 80px;
    align-items: flex-start;
}


.contact-info {
    position: sticky;
    top: 115px;
}


.contact-items {
    display: grid;
    gap: 13px;
    margin-top: 35px;
}


.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    border-radius: 12px;
    border: 1px solid #e7edef;
    background: #fafbfb;
    transition: var(--transition);
}


a.contact-item:hover {
    background: #ffffff;
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}


.contact-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: rgba(0,199,137,.08);
    color: var(--green-dark);
}


.contact-item > div:last-child {
    display: flex;
    flex-direction: column;
}


.contact-item span {
    color: #8a969a;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .8px;
}


.contact-item strong {
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 700;
}


.contact-company {
    margin-top: 37px;
    padding-top: 27px;
    border-top: 1px solid #e5eaec;
}


.contact-company img {
    width: 200px;
    max-height: 75px;
    object-fit: contain;
    object-position: left center;
    margin-bottom: 13px;
}


.contact-company p {
    max-width: 330px;
    font-size: 11px;
    line-height: 1.6;
}


.contact-form-wrapper {
    padding: 40px;
    border-radius: 20px;
    background: #f6f9fa;
    border: 1px solid #e5ebed;
}


.form-heading {
    margin-bottom: 29px;
}


.form-heading > span {
    display: block;
    margin-bottom: 6px;
    color: var(--green-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
}


.form-heading h3 {
    color: var(--text-dark);
    font-family: "Manrope", sans-serif;
    font-size: 27px;
    margin-bottom: 8px;
}


.form-heading p {
    font-size: 13px;
}


.contact-form {
    display: grid;
    gap: 18px;
}


.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}


.form-group {
    display: grid;
    gap: 7px;
}


.form-group label {
    color: #33464b;
    font-size: 11px;
    font-weight: 700;
}


.input-wrapper {
    position: relative;
}


.input-wrapper > i:first-child {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #92a0a4;
    font-size: 13px;
    z-index: 2;
    pointer-events: none;
}


.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    color: var(--text-dark);
    background: #ffffff;
    border: 1px solid #dce4e6;
    border-radius: 9px;
    outline: 0;
    transition: var(--transition);
}


.input-wrapper input,
.input-wrapper select {
    min-height: 52px;
    padding: 0 42px;
}


.input-wrapper textarea {
    min-height: 145px;
    padding: 16px 18px 16px 42px;
    resize: vertical;
}


.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: #abb5b8;
}


.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    border-color: rgba(0,199,137,.55);
    box-shadow: 0 0 0 4px rgba(0,199,137,.07);
}


.select-wrapper select {
    appearance: none;
    cursor: pointer;
}


.select-arrow {
    position: absolute;
    right: 17px;
    top: 50%;
    transform: translateY(-50%);
    color: #8d999d;
    font-size: 11px;
    pointer-events: none;
}


.textarea-wrapper > i:first-child {
    top: 20px;
    transform: none;
}


.website-field {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    opacity: 0 !important;
    visibility: hidden !important;
}


.form-submit {
    width: 100%;
    min-height: 55px;
    border: 0;
}


.form-status {
    min-height: 0;
    font-size: 12px;
    font-weight: 600;
}


.form-status.success {
    padding: 11px 13px;
    border-radius: 8px;
    color: #007c59;
    background: rgba(0,199,137,.09);
}


.form-status.error {
    padding: 11px 13px;
    border-radius: 8px;
    color: #b03a3a;
    background: rgba(220,53,69,.08);
}


/* =========================================================
   FOOTER
========================================================= */

.main-footer {
    color: rgba(255,255,255,.62);
    background: #0d1619;
}


.footer-top {
    padding: 80px 0 60px;
}


.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .75fr 1fr 1fr;
    gap: 50px;
}


.footer-logo {
    width: 210px;
    display: block;
    margin-bottom: 22px;
}


.footer-logo img {
    width: 100%;
    max-height: 70px;
    object-fit: contain;
    object-position: left center;
}


.footer-about p {
    max-width: 360px;
    font-size: 12.5px;
    line-height: 1.8;
}


.footer-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 19px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}


.footer-call i {
    color: var(--green);
}


.footer-column h4 {
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    margin-bottom: 20px;
}


.footer-links {
    display: grid;
    gap: 10px;
}


.footer-links a {
    position: relative;
    display: inline-block;
    color: rgba(255,255,255,.55);
    font-size: 12px;
    transition: var(--transition);
}


.footer-links a:hover {
    color: var(--green);
    transform: translateX(4px);
}


.footer-contact p {
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 19px;
}


.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 14px;
    border-radius: 8px;
    color: #ffffff;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.09);
    font-size: 11px;
    font-weight: 700;
}


.footer-btn:hover {
    background: var(--gradient-main);
    border-color: transparent;
}


.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.07);
}


.footer-bottom-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}


.footer-bottom p {
    font-size: 10.5px;
}


.footer-bottom-links {
    display: flex;
    gap: 22px;
}


.footer-bottom-links a {
    font-size: 10px;
    transition: var(--transition);
}


.footer-bottom-links a:hover {
    color: var(--green);
}


/* =========================================================
   WHATSAPP BUTTON
========================================================= */

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 50px;
    padding: 11px 18px;
    color: #ffffff;
    background: #25d366;
    border-radius: 50px;
    box-shadow: 0 12px 30px rgba(0,0,0,.19);
    font-size: 12px;
    font-weight: 700;
    transition: var(--transition);
}


.whatsapp-float i {
    font-size: 21px;
}


.whatsapp-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(0,0,0,.25);
}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 88px;
    width: 43px;
    height: 43px;
    z-index: 890;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #ffffff;
    background: #152327;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    cursor: pointer;
    transition: var(--transition);
}


.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.back-to-top:hover {
    background: var(--green-dark);
}


/* =========================================================
   SIMPLE SCROLL ANIMATION CLASSES
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity .7s ease,
        transform .7s ease;
}


.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   LARGE TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 1180px) {

    .main-nav ul {
        gap: 23px;
    }

    .header-phone {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr 430px;
        gap: 30px;
    }

    .technology-orbit {
        width: 430px;
        height: 430px;
    }

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

    .solutions-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .process-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .process-line {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1.3fr .8fr .9fr;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .section-padding {
        padding: 85px 0;
    }

    .section-title {
        font-size: 40px;
    }

    .main-header,
    .main-header.scrolled {
        height: 74px;
        background: rgba(13,22,25,.97);
    }

    .logo {
        width: 180px;
    }

    .menu-toggle {
        display: flex;
        position: relative;
        z-index: 1002;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(360px, 88%);
        height: 100vh;
        margin: 0;
        padding: 110px 35px 40px;
        background: #101a1d;
        box-shadow: -20px 0 50px rgba(0,0,0,.25);
        transition: right .35s ease;
        z-index: 1001;
    }

    .main-nav.open {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
    }

    .nav-link {
        padding: 14px 2px;
        border-bottom: 1px solid rgba(255,255,255,.07);
        font-size: 15px;
    }

    .nav-link::after {
        display: none;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-section {
        min-height: auto;
        padding: 130px 0 85px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 750px;
        margin: auto;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content h1 {
        font-size: 58px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons,
    .hero-features {
        justify-content: center;
    }

    .hero-visual {
        min-height: 470px;
        margin-top: 20px;
    }

    .technology-orbit {
        width: 440px;
        height: 440px;
    }

    .scroll-down {
        display: none;
    }

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

    .quick-item:nth-child(2) {
        border-right: 0;
    }

    .quick-item:nth-child(3),
    .quick-item:nth-child(4) {
        border-top: 1px solid var(--border-light);
    }

    .intro-grid,
    .why-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .intro-image {
        max-width: 650px;
        margin: auto;
    }

    .image-wrapper {
        max-width: 100%;
    }

    .image-wrapper > img {
        min-height: 480px;
    }

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

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

    .why-content {
        order: 2;
    }

    .why-visual {
        order: 1;
        max-width: 650px;
        margin: auto;
    }

    .why-image-box > img {
        min-height: 500px;
    }

    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-values {
        max-width: 700px;
    }

    .cta-box {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        justify-content: flex-start;
    }

    .contact-info {
        position: static;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px;
    }

    .footer-contact {
        grid-column: auto;
    }

}


/* =========================================================
   MOBILE LANDSCAPE / SMALL TABLET
========================================================= */

@media (max-width: 767px) {

    .container {
        width: calc(100% - 30px);
    }

    .section-padding {
        padding: 70px 0;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-title {
        font-size: 34px;
        letter-spacing: -1px;
    }

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

    .hero-section {
        padding-top: 115px;
    }

    .hero-content h1 {
        font-size: 44px;
        letter-spacing: -1.7px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-features {
        gap: 15px;
    }

    .hero-visual {
        min-height: 390px;
    }

    .technology-orbit {
        width: 360px;
        height: 360px;
    }

    .orbit-one {
        inset: 38px;
    }

    .orbit-two {
        inset: 78px;
    }

    .orbit-three {
        inset: 120px;
    }

    .technology-center {
        width: 115px;
        height: 115px;
    }

    .technology-center img {
        width: 75px;
    }

    .tech-icon {
        min-width: 120px;
        padding: 10px 12px;
        font-size: 10px;
    }

    .tech-icon i {
        font-size: 15px;
    }

    .tech-icon-1 {
        top: 55px;
    }

    .tech-icon-2 {
        top: 75px;
    }

    .tech-icon-3 {
        bottom: 55px;
    }

    .tech-icon-4 {
        bottom: 45px;
    }

    .intro-points,
    .why-list,
    .form-row {
        grid-template-columns: 1fr;
    }

    .experience-box {
        right: 15px;
        bottom: 20px;
    }

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

    .service-card {
        min-height: 300px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 20px;
    }

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

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

    .full-value {
        grid-column: auto;
    }

    .cta-section {
        padding-bottom: 75px;
    }

    .cta-box {
        padding: 40px 30px;
    }

    .cta-content h2 {
        font-size: 30px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-form-wrapper {
        padding: 30px 23px;
    }

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

    .footer-bottom-inner {
        padding: 22px 0;
        flex-direction: column;
        align-items: flex-start;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    body {
        font-size: 15px;
    }

    .container {
        width: calc(100% - 26px);
    }

    .section-padding {
        padding: 62px 0;
    }

    .section-tag {
        font-size: 10px;
        letter-spacing: 1.4px;
    }

    .section-title {
        font-size: 30px;
        line-height: 1.22;
    }

    .section-heading > p {
        font-size: 14px;
    }

    .logo {
        width: 150px;
    }

    .menu-toggle {
        width: 43px;
        height: 43px;
    }

    .main-nav {
        width: 86%;
        padding: 100px 25px 30px;
    }

    .hero-section {
        padding: 105px 0 65px;
    }

    .hero-badge {
        font-size: 9px;
        padding: 8px 11px;
    }

    .hero-content h1 {
        font-size: 37px;
        line-height: 1.08;
        letter-spacing: -1.3px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.75;
    }

    .hero-buttons {
        display: grid;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-features {
        display: grid;
        grid-template-columns: 1fr;
        justify-content: flex-start;
        text-align: left;
        width: fit-content;
        margin: 30px auto 0;
    }

    .hero-visual {
        min-height: 320px;
    }

    .technology-orbit {
        width: 290px;
        height: 290px;
    }

    .orbit-one {
        inset: 30px;
    }

    .orbit-two {
        inset: 62px;
    }

    .orbit-three {
        inset: 98px;
    }

    .technology-center {
        width: 94px;
        height: 94px;
        border-radius: 25px;
    }

    .technology-center img {
        width: 62px;
    }

    .tech-icon {
        min-width: auto;
        padding: 9px;
        border-radius: 9px;
    }

    .tech-icon span {
        display: none;
    }

    .tech-icon i {
        font-size: 17px;
    }

    .tech-icon-1 {
        left: 16px;
        top: 55px;
    }

    .tech-icon-2 {
        right: 15px;
        top: 65px;
    }

    .tech-icon-3 {
        left: 21px;
        bottom: 50px;
    }

    .tech-icon-4 {
        right: 14px;
        bottom: 45px;
    }

    .quick-solutions-grid {
        grid-template-columns: 1fr;
    }

    .quick-item,
    .quick-item:first-child,
    .quick-item:nth-child(2),
    .quick-item:nth-child(3),
    .quick-item:nth-child(4) {
        min-height: 85px;
        border-left: 0;
        border-right: 0;
        border-top: 1px solid var(--border-light);
        padding: 17px 8px;
    }

    .quick-item:first-child {
        border-top: 0;
    }

    .quick-item > i {
        width: 38px;
    }

    .image-wrapper > img {
        min-height: 390px;
        border-radius: 16px;
    }

    .experience-box {
        position: relative;
        right: auto;
        bottom: auto;
        margin: -38px 14px 0;
        min-width: 0;
    }

    .intro-grid {
        gap: 45px;
    }

    .service-card,
    .solution-card {
        padding: 27px 22px;
    }

    .service-link {
        left: 22px;
        bottom: 24px;
    }

    .solution-card h3 {
        font-size: 18px;
    }

    .why-list {
        gap: 12px;
    }

    .why-item {
        padding: 16px;
    }

    .why-image-box > img {
        min-height: 380px;
        border-radius: 16px;
    }

    .why-overlay-card {
        position: relative;
        left: auto;
        bottom: auto;
        min-width: 0;
        width: calc(100% - 24px);
        margin: -35px auto 0;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .process-item {
        max-width: 290px;
        margin: 0 auto;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .industry-card {
        min-height: 115px;
    }

    .value-card {
        padding: 25px 22px;
    }

    .full-value {
        display: block;
    }

    .full-value .value-icon {
        margin-bottom: 18px;
    }

    .cta-box {
        padding: 34px 22px;
        border-radius: 16px;
    }

    .cta-content h2 {
        font-size: 27px;
    }

    .cta-content p {
        font-size: 13px;
    }

    .cta-actions {
        width: 100%;
    }

    .cta-actions .btn {
        width: 100%;
    }

    .contact-grid {
        gap: 45px;
    }

    .contact-form-wrapper {
        padding: 25px 17px;
        border-radius: 14px;
    }

    .form-heading h3 {
        font-size: 23px;
    }

    .input-wrapper input,
    .input-wrapper select {
        min-height: 50px;
    }

    .footer-top {
        padding: 60px 0 45px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-logo {
        width: 185px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        gap: 12px 20px;
    }

    .whatsapp-float {
        right: 15px;
        bottom: 15px;
        width: 52px;
        height: 52px;
        min-height: 52px;
        padding: 0;
        justify-content: center;
    }

    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float i {
        font-size: 24px;
    }

    .back-to-top {
        right: 19px;
        bottom: 79px;
        width: 40px;
        height: 40px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .hero-content h1 {
        font-size: 33px;
    }

    .section-title {
        font-size: 27px;
    }

    .technology-orbit {
        width: 265px;
        height: 265px;
    }

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

    .industry-card span {
        font-size: 11px;
    }

}


/* =========================================================
   REDUCED MOTION ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

}