@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/poppins-v20-latin-300.woff2') format('woff2')
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/poppins-v20-latin-regular.woff2') format('woff2')
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/poppins-v20-latin-500.woff2') format('woff2')
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/poppins-v20-latin-600.woff2') format('woff2')
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/poppins-v20-latin-700.woff2') format('woff2')
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/poppins-v20-latin-800.woff2') format('woff2')
}

:root {
    --primary: #0CA684;
    --secondary: #19D3C5;
    --dark: #122D40;
    --dark2: #081420;
    --light: #F4F8FB;
    --white: #FFFFFF;
    --text: #64748B;
}

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

body {
    overflow-x: hidden;
    background: var(--light);
}

.gd-hero {
    min-height: 100vh;
    background: var(--light);
    position: relative;
    overflow: hidden;
    padding: 40px 0 80px;
}

.gd-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(12, 166, 132, .16) 2px, transparent 2px),
        radial-gradient(circle at 85% 75%, rgba(18, 45, 64, .12) 2px, transparent 2px),
        repeating-linear-gradient(45deg,
            transparent,
            transparent 40px,
            rgba(255, 255, 255, .55) 40px,
            rgba(255, 255, 255, .55) 41px);
    background-size: 35px 35px, 45px 45px, 80px 80px;
    opacity: .9;
    z-index: 0;
}

.gd-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(25, 211, 197, .08), transparent);
    animation: textureMove 12s linear infinite;
    z-index: 0;
}

.gd-hero>* {
    position: relative;
    z-index: 2;
}

.container {
    width: 90%;
    max-width: 1320px;
    margin: auto;
}

.row {
    display: flex;
    align-items: center;
    min-height: 90vh;
}

.col {
    width: 50%;
    position: relative;
}

.gd-nav {
    position: absolute;
    top: 35px;
    left: 0;
    width: 100%;
    z-index: 20;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.logo {
    font-size: 32px;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary);
}

.logo a {
    display: inline-flex;
    align-items: center;
}

.logo img {
    max-width: 180px;
    height: auto;
    display: block;
}

.menu-toggle {
    display: none;
    width: 56px;
    height: 56px;
    border: 0;
    background: var(--dark);
    border-radius: 14px;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    box-shadow: 0 18px 35px rgba(8, 20, 32, .18);
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: .35s ease;
}

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

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

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

.menu {
    display: flex;
    gap: 45px;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.menu li {
    position: relative;
}

.menu a,
.dropdown-toggle {
    text-decoration: none;
    color: var(--dark);
    font-size: 18px;
    font-weight: 700;
    transition: .4s;
    position: relative;
    background: none;
    border: 0;
    padding: 0;
    font-family: inherit;
    cursor: pointer;
}

.menu a::after,
.dropdown-toggle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: .4s;
}

.menu a:hover,
.dropdown-toggle:hover,
.menu-item-has-children.is-open>.dropdown-toggle {
    color: var(--primary);
}

.menu a:hover::after,
.dropdown-toggle:hover::after,
.menu-item-has-children.is-open>.dropdown-toggle::after {
    width: 100%;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.dropdown-arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: .3s ease;
}

.menu-item-has-children.is-open .dropdown-arrow {
    transform: rotate(-135deg) translateY(-1px);
}

.sub-menu {
    list-style: none;
    margin: 0;
    padding: 16px 0;
    position: absolute;
    top: calc(100% + 18px);
    left: 0;
    min-width: 250px;
    background: rgba(255, 255, 255, .98);
    border: 1px solid rgba(18, 45, 64, .08);
    box-shadow: 0 28px 60px rgba(8, 20, 32, .14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: .3s ease;
    pointer-events: none;
}

.sub-menu li {
    width: 100%;
}

.sub-menu a {
    display: block;
    padding: 12px 22px;
    font-size: 16px;
}

.sub-menu a::after {
    bottom: 6px;
    left: 22px;
}

.menu-item-has-children:hover>.sub-menu,
.menu-item-has-children.is-open>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.hero-content {
    padding-top: 120px;
    animation: fadeLeft 1.2s ease forwards;
}

.hero-sub {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--dark);
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 5px;
    margin-bottom: 25px;
}

.hero-sub::after {
    content: "";
    width: 260px;
    height: 2px;
    background: var(--primary);
}

.hero-title {
    font-size: 68px;
    line-height: 81px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 30px;
}

.hero-title span {
    display: block;
    color: var(--primary);
}

.hero-text {
    max-width: 620px;
    color: var(--text);
    line-height: 1.9;
    font-size: 17px;
    margin-bottom: 40px;
}

.hero-btn {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    text-decoration: none;
    font-size: 30px;
    font-weight: 800;
    transition: .4s;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.hero-btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(12, 166, 132, .35);
}

.hero-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .25);
    transition: .5s;
}

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

.hero-image-wrap {
    position: relative;
    margin-top: 142px;
    animation: fadeRight 1.2s ease forwards;
}

.dark-box {
    position: absolute;
    top: -50px;
    right: -60px;
    width: 80%;
    height: 620px;
    background: linear-gradient(145deg, var(--dark), var(--dark2));
    z-index: 1;
}

.border-box {
    position: absolute;
    right: -35px;
    top: -68px;
    width: 101%;
    height: 78px;
    border: 3px solid var(--primary);
    z-index: 2;
}

.hero-image {
    position: relative;
    z-index: 5;
    background: var(--white);
    padding: 16px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(8, 20, 32, .18);
    animation: imageAppear 1.5s ease, floatImage 6s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
    animation: imageZoom 12s ease-in-out infinite;
}

.hero-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .5), transparent);
    animation: shine 5s infinite;
    z-index: 6;
}

.vertical-bar {
    position: absolute;
    width: 25px;
    height: 260px;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    left: -30px;
    bottom: 0;
    z-index: 7;
}

.square {
    position: absolute;
    animation: float 4s ease-in-out infinite;
}

.sq1 {
    width: 70px;
    height: 70px;
    background: var(--primary);
    top: 180px;
    left: 46%;
}

.sq2 {
    width: 45px;
    height: 45px;
    background: var(--secondary);
    top: 250px;
    left: 50%;
    animation-delay: .8s;
}

.sq3 {
    width: 40px;
    height: 40px;
    background: var(--dark);
    top: 300px;
    left: 47%;
    animation-delay: 1.3s;
}

.dots {
    position: absolute;
    display: grid;
    grid-template-columns: repeat(5, 10px);
    gap: 15px;
}

.dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--dark);
    animation: pulse 2s infinite;
}

.orange span {
    background: var(--primary);
}

.dots-one {
    top: 110px;
    left: 22%;
}

.dots-two {
    top: 260px;
    right: 34%;
}

.dots-three {
    bottom: 90px;
    left: 33%;
}

.dots-four {
    top: 260px;
    right: 2%;
}

.arrow-line {
    position: absolute;
    left: 42%;
    top: 0;
    width: 1px;
    height: 220px;
    background: rgba(18, 45, 64, .35);
}

.arrow-line::after {
    content: "";
    position: absolute;
    bottom: -18px;
    left: -12px;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(18, 45, 64, .35);
    transform: rotate(45deg);
    background: var(--light);
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

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

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

@keyframes imageAppear {
    from {
        opacity: 0;
        transform: translateY(80px) scale(.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes floatImage {

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

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

@keyframes imageZoom {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

@keyframes shine {
    0% {
        left: -120%;
    }

    50%,
    100% {
        left: 140%;
    }
}

@keyframes textureMove {
    from {
        transform: translateX(-100px);
    }

    to {
        transform: translateX(100px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: .4;
    }

    50% {
        opacity: 1;
    }
}

@media(max-width:991px) {
    .gd-nav {
        top: 20px;
    }

    .row {
        flex-direction: column;
    }

    .col {
        width: 100%;
    }

    .menu {
        position: absolute;
        top: calc(100% + 18px);
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px;
        background: rgba(255, 255, 255, .98);
        border: 1px solid rgba(18, 45, 64, .08);
        box-shadow: 0 28px 60px rgba(8, 20, 32, .16);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        pointer-events: none;
        transition: .3s ease;
    }

    .menu.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .menu li {
        width: 100%;
    }

    .menu a,
    .dropdown-toggle {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 14px;
        border-bottom: 1px solid rgba(18, 45, 64, .08);
    }

    .menu>li:last-child>a {
        border-bottom: 0;
    }

    .menu a::after,
    .dropdown-toggle::after {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .sub-menu {
        position: static;
        min-width: 100%;
        background: #eef5f8;
        border: 0;
        box-shadow: none;
        padding: 0;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
    }

    .menu-item-has-children:hover>.sub-menu {
        transform: none;
    }

    .menu-item-has-children.is-open>.sub-menu {
        max-height: 320px;
        padding: 8px 0;
    }

    .sub-menu a {
        padding: 12px 24px;
        font-size: 15px;
        border-bottom: 0;
    }

    .sub-menu li:last-child a {
        padding-bottom: 16px;
    }

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

    .hero-sub {
        font-size: 18px;
        letter-spacing: 4px;
    }

    .hero-text {
        margin-bottom: 20px;

    }

    .hero-sub::after {
        width: 100px;
    }

    .hero-image {
        margin-top: 40px;
    }

    .hero-image img {
        height: 350px;
    }

    .dark-box,
    .border-box {
        display: none;
    }

    .square,
    .dots,
    .arrow-line {
        opacity: .25;
    }
}

/* ================= ABOUT ================= */
.gd-about {
    position: relative;
    padding: 110px 0;
    background: var(--white);
    overflow: hidden;
}

.gd-about::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(12, 166, 132, .12) 2px, transparent 2px),
        radial-gradient(circle at 90% 80%, rgba(18, 45, 64, .10) 2px, transparent 2px);
    background-size: 40px 40px;
    opacity: .8;
}

.gd-about>* {
    position: relative;
    z-index: 2;
}

.about-row {
    gap: 60px;
}

.about-img-box {
    position: relative;
    animation: fadeLeft 1.2s ease;
}

.about-img-box img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    position: relative;
    z-index: 4;
    padding: 15px;
    background: #fff;
    box-shadow: 0 30px 70px rgba(8, 20, 32, .15);
    animation: floatImage 6s ease-in-out infinite;
}

.about-dark {
    position: absolute;
    left: -35px;
    bottom: -35px;
    width: 75%;
    height: 75%;
    background: var(--dark);
    z-index: 1;
}

.about-border {
    position: absolute;
    right: -30px;
    top: -30px;
    width: 80%;
    height: 120px;
    border: 3px solid var(--primary);
    z-index: 2;
}

.about-content {
    animation: fadeRight 1.2s ease;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 900;
    letter-spacing: 5px;
    margin-bottom: 18px;
}

.about-content h2,
.section-head h2 {
    font-size: 52px;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 25px;
}

.about-content p,
.section-head p {
    color: var(--text);
    line-height: 1.9;
    font-size: 17px;
}

.about-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 35px;
}

.about-points div {
    background: var(--light);
    padding: 22px;
    font-weight: 800;
    color: var(--dark);
    border-left: 5px solid var(--primary);
    transition: .4s;
}

.about-points div:hover {
    transform: translateY(-8px);
    background: var(--dark);
    color: #fff;
}

/* ================= SERVICES ================= */
.gd-services {
    padding: 110px 0;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.gd-services::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(45deg,
            transparent,
            transparent 45px,
            rgba(255, 255, 255, .65) 45px,
            rgba(255, 255, 255, .65) 46px);
}

.gd-services>* {
    position: relative;
    z-index: 2;
}

.section-head {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: #fff;
    padding: 45px 30px;
    min-height: 280px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(8, 20, 32, .08);
    transition: .5s;
    animation: imageAppear 1.2s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 0;
    background: linear-gradient(135deg, var(--dark), var(--dark2));
    transition: .5s;
    z-index: 0;
}

.service-card:hover::before {
    height: 100%;
}

.service-card * {
    position: relative;
    z-index: 2;
}

.service-card span {
    font-size: 42px;
    font-weight: 900;
    color: rgba(12, 166, 132, .25);
}

.service-card h3 {
    color: var(--dark);
    font-size: 24px;
    margin: 25px 0 15px;
}

.service-card p {
    color: var(--text);
    line-height: 1.8;
}

.service-card:hover {
    transform: translateY(-15px);
}

.service-card:hover h3,
.service-card:hover p {
    color: #fff;
}

.service-card:hover span {
    color: var(--primary);
}

/* ================= PROCESS ================= */
.gd-process {
    padding: 110px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.gd-process::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(12, 166, 132, .20) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(25, 211, 197, .15) 2px, transparent 2px);
    background-size: 42px 42px;
    animation: textureMove 12s linear infinite;
}

.gd-process .section-head h2 {
    color: #fff;
}

.process-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.process-box {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    padding: 45px;
    text-align: center;
    transition: .5s;
    animation: fadeLeft 1.2s ease;
}

.process-box.active,
.process-box:hover {
    background: var(--primary);
    transform: translateY(-12px);
}

.process-num {
    width: 80px;
    height: 80px;
    line-height: 80px;
    margin: 0 auto 25px;
    background: #fff;
    color: var(--dark);
    font-size: 28px;
    font-weight: 900;
    border-radius: 50%;
}

.process-box h3 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 15px;
}

.process-box p {
    color: rgba(255, 255, 255, .78);
    line-height: 1.8;
}

/* ================= RESPONSIVE ================= */
@media(max-width:991px) {
    .about-row {
        gap: 30px;
    }

    .about-content h2,
    .section-head h2 {
        font-size: 38px;
    }

    .about-points,
    .services-grid,
    .process-row {
        grid-template-columns: 1fr;
    }

    .about-img-box img {
        height: 360px;
    }

    .about-dark,
    .about-border {
        display: none;
    }
}

.gd-why {
    padding: 120px 0;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.gd-why::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 30%, rgba(12, 166, 132, .15) 2px, transparent 2px),
        radial-gradient(circle at 85% 70%, rgba(18, 45, 64, .10) 2px, transparent 2px),
        repeating-linear-gradient(-45deg,
            transparent,
            transparent 42px,
            rgba(255, 255, 255, .65) 42px,
            rgba(255, 255, 255, .65) 43px);
    background-size: 40px 40px, 50px 50px, 90px 90px;
}

.gd-why>* {
    position: relative;
    z-index: 2;
}

.why-row {
    gap: 60px;
}

.why-content {
    animation: fadeLeft 1.2s ease;
}

.why-content h2 {
    font-size: 52px;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 25px;
}

.why-content>p {
    color: var(--text);
    line-height: 1.9;
    font-size: 17px;
    max-width: 600px;
    margin-bottom: 40px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.why-item {
    display: flex;
    gap: 22px;
    background: #fff;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(8, 20, 32, .08);
    border-left: 5px solid var(--primary);
    transition: .45s;
}

.why-item:hover {
    transform: translateX(12px);
    background: var(--dark);
}

.why-item span {
    min-width: 58px;
    height: 58px;
    line-height: 58px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-weight: 900;
}

.why-item h3 {
    color: var(--dark);
    font-size: 22px;
    margin-bottom: 8px;
}

.why-item p {
    color: var(--text);
    line-height: 1.7;
}

.why-item:hover h3,
.why-item:hover p {
    color: #fff;
}

.why-card-wrap {
    position: relative;
    height: 560px;
    animation: fadeRight 1.2s ease;
}

.why-big-card {
    position: absolute;
    right: 40px;
    top: 40px;
    width: 390px;
    height: 390px;
    background: linear-gradient(145deg, var(--dark), var(--dark2));
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 35px 80px rgba(8, 20, 32, .25);
    animation: floatImage 6s ease-in-out infinite;
}

.why-big-card::before {
    content: "";
    position: absolute;
    inset: -25px;
    border: 3px solid var(--primary);
    z-index: -1;
}

.why-big-card h3 {
    font-size: 92px;
    color: var(--primary);
    margin-bottom: 15px;
}

.why-big-card p {
    font-size: 24px;
    font-weight: 800;
    max-width: 260px;
    line-height: 1.4;
}

.why-small-card {
    position: absolute;
    background: #fff;
    padding: 30px;
    min-width: 210px;
    box-shadow: 0 25px 60px rgba(8, 20, 32, .16);
    border-bottom: 5px solid var(--primary);
    animation: float 4s ease-in-out infinite;
}

.why-small-card strong {
    display: block;
    color: var(--dark);
    font-size: 42px;
    margin-bottom: 8px;
}

.why-small-card span {
    color: var(--text);
    font-weight: 800;
}

.card-a {
    left: 20px;
    top: 110px;
}

.card-b {
    left: 90px;
    bottom: 70px;
    animation-delay: 1s;
}

@media(max-width:991px) {
    .why-content h2 {
        font-size: 38px;
    }

    .why-card-wrap {
        height: auto;
        display: grid;
        gap: 22px;
    }

    .why-big-card,
    .why-small-card {
        position: relative;
        inset: auto;
        width: 100%;
        min-width: 100%;
    }

    .why-big-card {
        height: 300px;
    }
}

.gd-install {
    padding: 120px 0;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.gd-install::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 25%, rgba(12, 166, 132, .16) 2px, transparent 2px),
        radial-gradient(circle at 88% 75%, rgba(18, 45, 64, .12) 2px, transparent 2px),
        repeating-linear-gradient(45deg,
            transparent,
            transparent 45px,
            rgba(255, 255, 255, .65) 45px,
            rgba(255, 255, 255, .65) 46px);
    background-size: 38px 38px, 48px 48px, 90px 90px;
}

.gd-install>* {
    position: relative;
    z-index: 2;
}

.install-row {
    gap: 60px;
}

.install-content {
    animation: fadeLeft 1.2s ease;
}

.install-content h2 {
    font-size: 56px;
    line-height: 1.05;
    color: var(--dark);
    margin-bottom: 28px;
}

.install-content h2 span {
    display: block;
    color: var(--primary);
}

.install-content p {
    color: var(--text);
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 20px;
    max-width: 650px;
}

.install-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 35px 0 40px;
}

.install-features div {
    background: #fff;
    padding: 24px 20px;
    box-shadow: 0 20px 45px rgba(8, 20, 32, .08);
    border-top: 5px solid var(--primary);
    transition: .4s;
}

.install-features div:hover {
    transform: translateY(-10px);
    background: var(--dark);
}

.install-features strong {
    display: block;
    color: var(--primary);
    font-size: 30px;
    margin-bottom: 10px;
}

.install-features span {
    color: var(--dark);
    font-weight: 800;
    line-height: 1.4;
}

.install-features div:hover span {
    color: #fff;
}

.install-visual {
    position: relative;
    min-height: 560px;
    animation: fadeRight 1.2s ease;
}

.install-photo {
    position: relative;
    z-index: 4;
    background: #fff;
    padding: 16px;
    box-shadow: 0 30px 70px rgba(8, 20, 32, .18);
    overflow: hidden;
    animation: floatImage 6s ease-in-out infinite;
}

.install-photo img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    animation: imageZoom 12s ease-in-out infinite;
}

.install-photo::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .5), transparent);
    animation: shine 5s infinite;
    z-index: 5;
}

.install-dark-box {
    position: absolute;
    right: -35px;
    top: 45px;
    width: 82%;
    height: 470px;
    background: linear-gradient(145deg, var(--dark), var(--dark2));
    z-index: 1;
}

.install-border {
    position: absolute;
    left: -30px;
    top: -30px;
    width: 75%;
    height: 130px;
    border: 3px solid var(--primary);
    z-index: 2;
}

.install-floating-card {
    position: absolute;
    left: -35px;
    bottom: 10px;
    z-index: 6;
    background: #fff;
    padding: 28px 32px;
    width: 230px;
    box-shadow: 0 25px 60px rgba(8, 20, 32, .18);
    border-left: 6px solid var(--primary);
    animation: float 4s ease-in-out infinite;
}

.install-floating-card h3 {
    color: var(--primary);
    font-size: 42px;
    margin-bottom: 6px;
}

.install-floating-card p {
    color: var(--dark);
    font-weight: 800;
    line-height: 1.5;
}

.install-shape {
    position: absolute;
    background: var(--primary);
    animation: float 4s ease-in-out infinite;
    z-index: 1;
}

.install-s1 {
    width: 70px;
    height: 70px;
    left: 47%;
    top: 90px;
}

.install-s2 {
    width: 42px;
    height: 42px;
    left: 51%;
    bottom: 120px;
    background: var(--dark);
    animation-delay: 1s;
}

@media(max-width:991px) {
    .install-row {
        gap: 30px;
    }

    .install-content h2 {
        font-size: 38px;
    }

    .install-features {
        grid-template-columns: 1fr;
    }

    .install-visual {
        min-height: auto;
    }

    .install-photo img {
        height: 360px;
    }

    .install-dark-box,
    .install-border,
    .install-shape {
        display: none;
    }

    .install-floating-card {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        margin-top: 20px;
    }
}

.ba-overlap {
    padding: 120px 0 150px;
    background: linear-gradient(135deg, #081420, #122D40);
    position: relative;
    overflow: hidden;
}

.ba-overlap::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(12, 166, 132, .18) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(25, 211, 197, .14) 2px, transparent 2px);
    background-size: 45px 45px;
    animation: baTexture 12s linear infinite;
}

.ba-overlap::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    right: -180px;
    top: -180px;
    background: rgba(12, 166, 132, .10);
    filter: blur(10px);
}

.ba-overlap .container {
    position: relative;
    z-index: 2;
}

.ba-overlap-head {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}

.ba-overlap-head span {
    color: var(--primary);
    font-weight: 900;
    letter-spacing: 5px;
}

.ba-overlap-head h2 {
    color: #fff;
    font-size: 56px;
    margin: 18px 0;
}

.ba-overlap-head p {
    color: rgba(255, 255, 255, .75);
    line-height: 1.9;
}

.ba-overlap-stage {
    position: relative;
    min-height: 650px;
}

.ba-photo {
    position: absolute;
    width: 58%;
    padding: 14px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .15);
    box-shadow: 0 35px 90px rgba(0, 0, 0, .42);
    overflow: hidden;
    transition: .6s;
}

.ba-photo img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    display: block;
    transition: .8s;
}

.ba-photo::before {
    content: "";
    position: absolute;
    top: 14px;
    left: -130%;
    width: 55%;
    height: calc(100% - 28px);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .42), transparent);
    z-index: 4;
    animation: baShine 5s ease-in-out infinite;
}

.ba-photo:hover {
    transform: translateY(-15px) rotate(0deg) scale(1.02);
    z-index: 10;
}

.ba-photo:hover img {
    transform: scale(1.1);
}

.ba-photo-before {
    left: 0;
    top: 20px;
    transform: rotate(-4deg);
    animation: baBeforeFloat 6s ease-in-out infinite;
}

.ba-photo-after {
    right: 0;
    bottom: 20px;
    transform: rotate(4deg);
    animation: baAfterFloat 6s ease-in-out infinite;
}

.ba-tag {
    position: absolute;
    top: 35px;
    left: 35px;
    z-index: 5;
    padding: 12px 28px;
    color: #fff;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.ba-tag.red {
    background: #0e2232;
}

.ba-tag.green {
    background:linear-gradient(135deg, #0F2637, var(--secondary));
}

.ba-arrow-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    z-index: 20;
}

/* Outer Ring */
.arrow-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed rgba(25, 211, 197, .6);
    animation: spinRing 12s linear infinite;
}

/* Glow Ring */
.arrow-ring::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 50%;
    border: 2px solid rgba(12, 166, 132, .3);
}

.arrow-ring::after {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1px solid rgba(12, 166, 132, .15);
}

/* Arrow */
.arrow-core {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            var(--primary),
            var(--secondary));
    color: #fff;
    font-size: 54px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 25px rgba(12, 166, 132, .4),
        0 0 60px rgba(12, 166, 132, .3);
    animation: arrowPulse 2s ease-in-out infinite;
}

/* Animation */
@keyframes spinRing {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes arrowPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.12);
    }
}

@keyframes baBeforeFloat {

    0%,
    100% {
        transform: rotate(-4deg) translateY(0);
    }

    50% {
        transform: rotate(-4deg) translateY(-18px);
    }
}

@keyframes baAfterFloat {

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

    50% {
        transform: rotate(4deg) translateY(18px);
    }
}

@keyframes baTexture {
    from {
        transform: translateX(-80px);
    }

    to {
        transform: translateX(80px);
    }
}

@keyframes baShine {
    0% {
        left: -130%;
    }

    45%,
    100% {
        left: 140%;
    }
}

@keyframes baPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.08);
    }
}

@keyframes baRotate {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@media(max-width:991px) {
    .ba-overlap-head h2 {
        font-size: 38px;
    }

    .ba-overlap-stage {
        min-height: auto;
        display: grid;
        gap: 30px;
    }

    .ba-photo,
    .ba-center-card {
        position: relative;
        width: 100%;
        inset: auto;
        transform: none;
    }

    .ba-photo img {
        height: 340px;
    }

    .ba-center-card {
        margin: auto;
    }
}

.maintenance-clean {
    padding: 140px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.maintenance-bg-word {
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 165px;
    font-weight: 900;
    color: #f1f6f8;
    letter-spacing: 14px;
    white-space: nowrap;
    z-index: 0;
    animation: bgWordMove 6s ease-in-out infinite;
}

.maintenance-clean-inner {
    position: relative;
    z-index: 3;
    max-width: 1100px;
    margin: auto;
}

.maintenance-clean-inner h2 {
    font-size: 68px;
    line-height: 1.05;
    color: var(--dark);
    max-width: 900px;
    margin-bottom: 55px;
}

.maintenance-clean-inner h2 span {
    display: block;
    color: var(--primary);
}

.maintenance-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px 55px;
}

.maintenance-copy p {
    background: rgba(244, 248, 251, .75);
    padding: 28px 30px;
    color: var(--text);
    font-size: 17px;
    line-height: 1.9;
    border-left: 4px solid var(--primary);
    box-shadow: 0 18px 40px rgba(8, 20, 32, .06);
    transition: .4s;
}

.maintenance-copy p:hover {
    transform: translateY(-8px);
    background: #fff;
    box-shadow: 0 24px 55px rgba(8, 20, 32, .10);
}

/* Background Details */
.maint-shape {
    position: absolute;
    z-index: 1;
    opacity: .75;
    animation: float 5s ease-in-out infinite;
}

.maint-shape-1 {
    width: 90px;
    height: 90px;
    border: 18px solid rgba(12, 166, 132, .16);
    top: 90px;
    right: 10%;
}

.maint-shape-2 {
    width: 65px;
    height: 65px;
    background: rgba(25, 211, 197, .13);
    left: 8%;
    bottom: 120px;
    transform: rotate(20deg);
    animation-delay: 1s;
}

.maint-line {
    position: absolute;
    right: 18%;
    bottom: 0;
    width: 2px;
    height: 260px;
    background: linear-gradient(to bottom, transparent, rgba(12, 166, 132, .35));
}

.maint-line::before {
    content: "";
    position: absolute;
    top: 50px;
    left: -8px;
    width: 18px;
    height: 18px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 12px rgba(12, 166, 132, .12);
}

@keyframes bgWordMove {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -53%) scale(1.03);
    }
}

@media(max-width:991px) {
    .maintenance-clean {
        padding: 90px 0;
    }

    .maintenance-bg-word {
        font-size: 70px;
        top: 20%;
        letter-spacing: 5px;
    }

    .maintenance-clean-inner h2 {
        font-size: 40px;
    }

    .maintenance-copy {
        grid-template-columns: 1fr;
    }

    .maint-shape,
    .maint-line {
        opacity: .25;
    }
}

.creative-counter {
    padding: 120px 0;
    background: linear-gradient(135deg, #081420, #122D40);
    position: relative;
    overflow: hidden;
}

.creative-counter::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(12, 166, 132, .20) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(25, 211, 197, .15) 2px, transparent 2px);
    background-size: 45px 45px;
    animation: counterBgMove 12s linear infinite;
}

.counter-bg-word {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 170px;
    font-weight: 900;
    letter-spacing: 16px;
    color: rgba(255, 255, 255, .035);
    white-space: nowrap;
    animation: bigWordFloat 6s ease-in-out infinite;
}

.counter-panel {
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .13);
    backdrop-filter: blur(10px);
    padding: 60px;
    display: grid;
    grid-template-columns: 0.9fr 1.6fr;
    gap: 50px;
    box-shadow: 0 35px 90px rgba(0, 0, 0, .30);
}

.counter-intro {
    border-right: 1px solid rgba(255, 255, 255, .16);
    padding-right: 40px;
}

.counter-intro span {
    color: var(--primary);
    font-weight: 900;
    letter-spacing: 5px;
}

.counter-intro h2 {
    color: #fff;
    font-size: 42px;
    line-height: 1.15;
    margin-top: 20px;
}

.counter-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.creative-count {
    position: relative;
    padding: 32px 25px;
    background: rgba(255, 255, 255, .06);
    overflow: hidden;
    transition: .5s;
}

.creative-count::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(var(--primary), var(--secondary));
}

.creative-count::after {
    content: "";
    position: absolute;
    right: -50px;
    top: -50px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(12, 166, 132, .10);
    transition: .5s;
}

.creative-count:hover,
.creative-count.active {
    transform: translateY(-10px);
    background: rgba(12, 166, 132, .16);
}

.creative-count:hover::after,
.creative-count.active::after {
    right: -20px;
    top: -20px;
}

.creative-count strong {
    display: block;
    color: var(--primary);
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 8px;
    animation: numberGlow 2.5s ease-in-out infinite;
}

.creative-count p {
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 1px;
}

.counter-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    z-index: 1;
    opacity: .45;
}

.line-one {
    width: 420px;
    top: 90px;
    left: -120px;
    animation: lineMove 6s ease-in-out infinite;
}

.line-two {
    width: 520px;
    bottom: 90px;
    right: -140px;
    animation: lineMove 7s ease-in-out infinite reverse;
}

@keyframes counterBgMove {
    from {
        transform: translateX(-80px);
    }

    to {
        transform: translateX(80px);
    }
}

@keyframes bigWordFloat {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -54%) scale(1.03);
    }
}

@keyframes numberGlow {

    0%,
    100% {
        text-shadow: 0 0 0 rgba(12, 166, 132, 0);
    }

    50% {
        text-shadow: 0 0 25px rgba(25, 211, 197, .55);
    }
}

@keyframes lineMove {

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

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

@media(max-width:991px) {
    .counter-panel {
        grid-template-columns: 1fr;
        padding: 35px;
    }

    .counter-intro {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .16);
        padding-right: 0;
        padding-bottom: 30px;
    }

    .counter-items {
        grid-template-columns: 1fr;
    }

    .counter-bg-word {
        font-size: 70px;
    }
}

.editorial-gallery {
    padding: 130px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.editorial-gallery::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #fff 0%, #f4f8fb 100%);
}

.gallery-watermark {
    position: absolute;
    right: 40px;
    top: 80px;
    font-size: 190px;
    font-weight: 900;
    color: #edf4f7;
    letter-spacing: 14px;
}

.editorial-head {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin-bottom: 70px;
}

.editorial-head h2 {
    font-size: 58px;
    color: var(--dark);
    line-height: 1.1;
    margin: 18px 0;
}

.editorial-head p {
    color: var(--text);
    line-height: 1.9;
}

.editorial-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.25fr .8fr .8fr;
    grid-template-rows: 260px 260px;
    gap: 24px;
}

.editorial-main {
    grid-row: 1 / 3;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 75px rgba(8, 20, 32, .12);
}

.editorial-small {
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(8, 20, 32, .08);
}

.editorial-small.tall {
    grid-row: span 1;
}

.editorial-main img,
.editorial-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .8s;
}

.editorial-main:hover img,
.editorial-small:hover img {
    transform: scale(1.12);
}

.editorial-main::before,
.editorial-small::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(8, 20, 32, .75));
    opacity: 0;
    transition: .5s;
    z-index: 2;
}

.editorial-main:hover::before,
.editorial-small:hover::before {
    opacity: 1;
}

.editorial-main::after,
.editorial-small::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .45), transparent);
    z-index: 3;
}

.editorial-main:hover::after,
.editorial-small:hover::after {
    animation: galleryShine 1.2s;
}

.editorial-caption {
    position: absolute;
    left: 35px;
    bottom: 35px;
    z-index: 4;
    color: #fff;
}

.editorial-caption span {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 10px 20px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.editorial-caption h3 {
    font-size: 34px;
}

@keyframes galleryShine {
    from {
        left: -120%;
    }

    to {
        left: 140%;
    }
}

@media(max-width:991px) {
    .gallery-watermark {
        font-size: 75px;
    }

    .editorial-head h2 {
        font-size: 38px;
    }

    .editorial-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .editorial-main,
    .editorial-small {
        height: 320px;
        grid-row: auto;
    }
}

.answers-strips {
    padding: 130px 0;
    background: #f4f8fb;
    position: relative;
    overflow: hidden;
}

.answers-strips::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, transparent 40%, rgba(12, 166, 132, .08) 40%, rgba(12, 166, 132, .08) 60%, transparent 60%),
        radial-gradient(circle at 15% 25%, rgba(18, 45, 64, .08) 2px, transparent 2px);
    background-size: 100% 100%, 42px 42px;
}

.strips-head {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 2;
}

.strips-head h2 {
    font-size: 56px;
    color: var(--dark);
    margin-top: 18px;
}

.strips-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.strip-item {
    width: 82%;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 30px;
    align-items: center;
    padding: 38px 45px;
    background: #fff;
    transform: skewX(-6deg);
    box-shadow: 0 25px 60px rgba(8, 20, 32, .08);
    border-right: 8px solid var(--primary);
    transition: .45s;
}

.strip-item>* {
    transform: skewX(6deg);
}

.strip-reverse {
    margin-left: auto;
    border-right: none;
    border-left: 8px solid var(--primary);
}

.strip-item:hover {
    transform: skewX(-6deg) translateY(-12px);
    background: var(--dark);
}

.strip-num {
    font-size: 58px;
    font-weight: 900;
    color: var(--primary);
}

.strip-item h3 {
    font-size: 30px;
    color: var(--dark);
    margin-bottom: 12px;
}

.strip-item p {
    color: var(--text);
    line-height: 1.9;
    font-size: 17px;
}

.strip-item:hover h3,
.strip-item:hover p {
    color: #fff;
}

@media(max-width:991px) {
    .strips-head h2 {
        font-size: 38px;
    }

    .strip-item,
    .strip-reverse {
        width: 100%;
        margin-left: 0;
        grid-template-columns: 1fr;
        transform: none;
    }

    .strip-item>* {
        transform: none;
    }

    .strip-item:hover {
        transform: translateY(-10px);
    }
}

.premium-coupon {
    padding: 140px 0;
    background: linear-gradient(135deg, #081420, #122D40);
    position: relative;
    overflow: hidden;
}

.premium-coupon::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 25%, rgba(12, 166, 132, .20) 2px, transparent 2px),
        radial-gradient(circle at 82% 75%, rgba(25, 211, 197, .16) 2px, transparent 2px);
    background-size: 46px 46px;
    animation: premiumTexture 12s linear infinite;
}

.coupon-bg-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 230px;
    font-weight: 900;
    letter-spacing: 22px;
    color: rgba(255, 255, 255, .035);
    pointer-events: none;
    user-select: none;
}

.premium-coupon-box {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.premium-coupon-content {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(12px);
    padding: 65px;
    box-shadow: 0 35px 90px rgba(0, 0, 0, .28);
    position: relative;
}

.premium-coupon-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 7px;
    height: 100%;
    background: linear-gradient(var(--primary), var(--secondary));
}

.premium-coupon-content h2 {
    color: #fff;
    font-size: 58px;
    line-height: 1.08;
    margin: 20px 0 28px;
}

.premium-coupon-content p {
    color: rgba(255, 255, 255, .78);
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 18px;
}

.premium-coupon-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 18px 46px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: .4s;
}

.premium-coupon-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    left: -120%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .4), transparent);
    transition: .5s;
}

.premium-coupon-btn:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 50px rgba(12, 166, 132, .38);
}

.premium-coupon-btn:hover::before {
    left: 120%;
}

.premium-coupon-image {
    position: relative;
    height: 560px;
    transform: rotate(3deg);
    overflow: hidden;
    border: 14px solid rgba(255, 255, 255, .12);
    box-shadow: 0 40px 100px rgba(0, 0, 0, .45);
    transition: .6s;
}

.premium-coupon-image:hover {
    transform: rotate(0deg) translateY(-14px);
}

.premium-coupon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .8s;
}

.premium-coupon-image:hover img {
    transform: scale(1.12);
}

.premium-coupon-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(8, 20, 32, .78));
    z-index: 2;
}

.premium-coupon-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: -130%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .45), transparent);
    z-index: 3;
    animation: premiumShine 5s infinite;
}

.coupon-glow-badge {
    position: absolute;
    right: 35px;
    bottom: 35px;
    z-index: 5;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 55px rgba(12, 166, 132, .55);
    animation: badgePulse 2.5s ease-in-out infinite;
}

.coupon-glow-badge::before {
    content: "";
    position: absolute;
    inset: -16px;
    border: 2px dashed rgba(255, 255, 255, .65);
    border-radius: 50%;
    animation: badgeRotate 12s linear infinite;
}

.coupon-glow-badge span {
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.coupon-glow-badge strong {
    font-size: 38px;
}

@keyframes premiumTexture {
    from {
        transform: translateX(-80px);
    }

    to {
        transform: translateX(80px);
    }
}

@keyframes premiumShine {
    0% {
        left: -130%;
    }

    45%,
    100% {
        left: 140%;
    }
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

@keyframes badgeRotate {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@media(max-width:991px) {
    .premium-coupon-box {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .premium-coupon-content {
        padding: 40px 28px;
    }

    .premium-coupon-content h2 {
        font-size: 38px;
    }

    .premium-coupon-image {
        height: 360px;
        transform: none;
    }

    .coupon-bg-text {
        font-size: 85px;
    }

    .coupon-glow-badge {
        width: 120px;
        height: 120px;
    }

    .coupon-glow-badge strong {
        font-size: 28px;
    }
}

.creative-contact {
    padding: 130px 0;
    background: #f4f8fb;
    position: relative;
    overflow: hidden;
}

.creative-contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 25%, rgba(12, 166, 132, .12) 2px, transparent 2px),
        radial-gradient(circle at 85% 75%, rgba(18, 45, 64, .08) 2px, transparent 2px);
    background-size: 42px 42px;
}

.contact-big-word {
    position: absolute;
    left: 50%;
    top: 80px;
    transform: translateX(-50%);
    font-size: 160px;
    font-weight: 900;
    letter-spacing: 14px;
    color: rgba(18, 45, 64, .045);
    white-space: nowrap;
}

.contact-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 45px;
    align-items: stretch;
}

.contact-info-side {
    background: linear-gradient(135deg, #081420, #122D40);
    padding: 55px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-info-side::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(12, 166, 132, .14);
    right: -90px;
    top: -90px;
}

.contact-info-side>* {
    position: relative;
    z-index: 2;
}

.contact-info-side h2 {
    font-size: 50px;
    line-height: 1.08;
    margin: 20px 0;
}

.contact-info-side p {
    color: rgba(255, 255, 255, .75);
    line-height: 1.9;
    margin-bottom: 30px;
}

.contact-mini-box {
    background: rgba(255, 255, 255, .08);
    border-left: 5px solid var(--primary);
    padding: 22px;
    margin-bottom: 18px;
}

.contact-mini-box strong {
    display: block;
    color: #fff;
    font-size: 22px;
    margin-bottom: 8px;
}

.contact-mini-box span {
    color: rgba(255, 255, 255, .72);
    line-height: 1.6;
}

.contact-map-small {
    height: 220px;
    margin-top: 28px;
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, .08);
}

.contact-map-small iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-form-side {
    background: #fff;
    padding: 45px;
    box-shadow: 0 35px 90px rgba(8, 20, 32, .12);
    position: relative;
}

.contact-form-side::before {
    content: "REQUEST";
    position: absolute;
    right: 20px;
    bottom: 5px;
    font-size: 90px;
    font-weight: 900;
    color: #0e223236;
    z-index: 0;
}

.cc-fcf-form {
    position: relative;
    z-index: 2;
}

.cc-fcf-form fieldset {
    border: 0;
    padding: 0;
    margin: 0;
}

.cc-fcf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cc-fcf-form input,
.cc-fcf-form select,
.cc-fcf-form textarea {
    width: 100%;
    border: 1px solid #e3eaf0;
    background: #f8fbfd;
    padding: 17px 18px;
    font-size: 15px;
    color: var(--dark);
    outline: none;
    transition: .35s;
}

.cc-fcf-form input:focus,
.cc-fcf-form select:focus,
.cc-fcf-form textarea:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(12, 166, 132, .10);
}

.cc-fcf-form textarea {
    height: 135px;
    resize: none;
    margin: 16px 0;
}

.cc-fcf-label {
    display: block;
    color: var(--dark);
    font-weight: 900;
    margin: 18px 0 10px;
}

.cc-fcf-date {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.cc-fcf-form select[name="service_time"] {
    margin-bottom: 22px;
}

.cc-fcf-form input[type="submit"] {
    border: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-weight: 900;
    font-size: 17px;
    cursor: pointer;
    transition: .4s;
}

.cc-fcf-form input[type="submit"]:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(12, 166, 132, .35);
}

@media(max-width:991px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-big-word {
        font-size: 70px;
    }

    .contact-info-side,
    .contact-form-side {
        padding: 35px 25px;
    }

    .contact-info-side h2 {
        font-size: 38px;
    }

    .cc-fcf-grid,
    .cc-fcf-date {
        grid-template-columns: 1fr;
    }

    .contact-form-side::before {
        font-size: 55px;
    }
}

.premium-footer {
    position: relative;
    background: linear-gradient(135deg,
            #081420,
            #122D40);
    padding-top: 90px;
    overflow: hidden;
}

.premium-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
            transparent,
            var(--primary),
            var(--secondary),
            transparent);
}

.premium-footer::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 25%, rgba(12, 166, 132, .18) 2px, transparent 2px),
        radial-gradient(circle at 85% 75%, rgba(25, 211, 197, .14) 2px, transparent 2px);
    background-size: 42px 42px;
}

.footer-word {
    position: absolute;
    left: 50%;
    top: 50px;
    transform: translateX(-50%);
    font-size: 180px;
    font-weight: 900;
    color: rgba(255, 255, 255, .03);
    letter-spacing: 15px;
    pointer-events: none;
    user-select: none;
}

.footer-top {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
    padding-bottom:37px;
}

.footer-about {
    max-width: 760px;
    margin: 0 auto 30px;
    text-align: center;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
    align-items: start;
    max-width: 1080px;
    margin: 0 auto;
}

.footer-links-grid > .footer-col {
    position: relative;
    padding: 0 24px;
}

.footer-links-grid > .footer-col:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 6px;
    right: 0;
    width: 1px;
    height: calc(100% - 12px);
    background: rgba(255, 255, 255, .14);
}

.footer-quick-links::after {
    display: none;
}

.footer-about .footer-social {
    justify-content: center;
}

.footer-quick-links {
    grid-column: 1 / -1;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.footer-quick-links h4::after {
    margin-left: auto;
    margin-right: auto;
}

.footer-quick-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.footer-quick-links ul li {
    margin-bottom: 0;
}

.footer-quick-links ul li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 128px;
    padding: 12px 22px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border-radius: 999px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, .14);
}

.footer-quick-links ul li a:hover,
.footer-quick-links ul li a.active {
    color: #fff;
    padding-left: 22px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    transform: translateY(-4px);
}

.footer-services-list ul,
.footer-areas-list ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
}

.footer-areas-list {
    text-align: left;
}

.footer-services-list ul li,
.footer-areas-list ul li {
    margin-bottom: 0;
}

.footer-services-list ul li a,
.footer-areas-list ul li a {
    display: inline-flex;
    width: 100%;
}

.footer-col h3 {
    color: #fff;
    font-size: 34px;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h4::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary);
    margin-top: 12px;
}

.footer-col p {
    color: rgba(255, 255, 255, .75);
    line-height: 1.9;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    transition: .3s;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.footer-contact li {
    color: rgba(255, 255, 255, .75);
    line-height: 1.8;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-zip-note {
    max-width: 980px;
    margin: 24px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .16);
    text-align: center;
    color: rgba(255, 255, 255, .7);
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.footer-social a {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    text-decoration: none;
    transition: .4s;
}

.footer-social a:hover {
    background: linear-gradient(135deg,
            var(--primary),
            var(--secondary));
    transform: translateY(-6px);
}

.footer-bottom {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-bottom p {
    color: rgba(255, 255, 255, .65);
    margin: 0;
}

@media(max-width:991px) {
    .footer-word {
        font-size: 70px;
    }

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

    .footer-links-grid > .footer-col {
        padding: 0;
    }

    .footer-links-grid > .footer-col:not(:last-child)::after {
        display: none;
    }

    .footer-quick-links ul li a {
        min-width: 110px;
    }
}

.partner-cities-simple {
    padding: 100px 0;
    background: #F4F8FB;
}

.section-title {
    max-width: 750px;
    margin: auto;
    margin-bottom: 50px;
}

.section-title span {
    color: #0CA684;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
}

.section-title h2 {
    color: #122D40;
    font-size: 48px;
    font-weight: 800;
    margin: 15px 0;
}

.section-title p {
    color: #667788;
    font-size: 18px;
    line-height: 1.8;
}

.cities-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.cities-wrapper a {
    text-decoration: none;
    color: #122D40;
    font-weight: 600;
    padding: 14px 24px;
    background: #fff;
    border-radius: 50px;
    border: 1px solid #E5ECF3;
    transition: .3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .04);
}

.cities-wrapper a:hover {
    background: #0CA684;
    color: #fff;
    transform: translateY(-3px);
}

@media(max-width:768px) {
    .section-title h2 {
        font-size: 34px;
    }

    .partner-cities-simple {
        padding: 80px 0;
    }
}


.creative-faq{
    padding:110px 0;
    background:
        linear-gradient(180deg, #ffffff 0%, #F4F8FB 100%);
    position:relative;
    overflow:hidden;
}

.creative-faq::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(12,166,132,.08);
    top:-220px;
    left:-160px;
}

.faq-top{
    max-width:780px;
    margin:0 auto 65px;
    position:relative;
    z-index:2;
}

.faq-top span{
    color:#0CA684;
    font-size:14px;
    font-weight:800;
    letter-spacing:3px;
}

.faq-top h2{
    color:#122D40;
    font-size:50px;
    font-weight:900;
    margin:15px 0;
}

.faq-top p{
    color:#667788;
    font-size:18px;
    line-height:1.8;
}

.faq-service-card{
    height:100%;
    background:#fff;
    border-radius:28px;
    padding:35px 28px;
    position:relative;
    overflow:hidden;
    border:1px solid #E5ECF3;
    box-shadow:0 16px 45px rgba(18,45,64,.07);
    transition:.4s;
}

.faq-service-card::before{
    content:"";
    position:absolute;
    width:140px;
    height:140px;
    border-radius:50%;
    background:rgba(12,166,132,.09);
    right:-55px;
    top:-55px;
    transition:.4s;
}

.faq-service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 26px 65px rgba(18,45,64,.13);
}

.faq-service-card:hover::before{
    width:260px;
    height:260px;
}

.faq-service-card.highlighted{
    background:linear-gradient(135deg, #122D40, #0CA684);
}

.faq-service-card.highlighted h3,
.faq-service-card.highlighted summary,
.faq-service-card.highlighted p{
    color:#fff;
}

.faq-icon{
    width:62px;
    height:62px;
    border-radius:18px;
    background:linear-gradient(135deg, #0CA684, #19D3C5);
    color:#fff;
    display:grid;
    place-items:center;
    font-weight:900;
    margin-bottom:22px;
    position:relative;
    z-index:2;
}

.faq-service-card h3{
    color:#122D40;
    font-size:24px;
    font-weight:900;
    margin-bottom:20px;
    position:relative;
    z-index:2;
}

.faq-service-card details{
    position:relative;
    z-index:2;
    border-top:1px solid rgba(18,45,64,.12);
}

.faq-service-card summary{
    list-style:none;
    cursor:pointer;
    color:#122D40;
    font-weight:800;
    padding:16px 34px 16px 0;
    position:relative;
}

.faq-service-card summary::-webkit-details-marker{
    display:none;
}

.faq-service-card summary::after{
    content:"+";
    position:absolute;
    right:0;
    top:14px;
    width:28px;
    height:28px;
    border-radius:50%;
    background:#F4F8FB;
    color:#0CA684;
    display:grid;
    place-items:center;
}

.faq-service-card details[open] summary::after{
    content:"−";
    background:#0CA684;
    color:#fff;
}

.faq-service-card p{
    color:#667788;
    line-height:1.8;
    padding-bottom:18px;
    margin:0;
}

@media(max-width:768px){
    .creative-faq{
        padding:80px 0;
    }

    .faq-top h2{
        font-size:34px;
    }
}