:root {
    --lime: #78be20;
    --lime2: #a8e635;
    --blue: #0477bf;
    --cyan: #31d7ff;
    --navy: #061829;
    --navy2: #0b2740;
    --ink: #102033;
    --muted: #6a7b8b;
    --card: #ffffff;
    --soft: #eef7fb
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, Segoe UI, Arial, sans-serif;
    color: var(--ink);
    background: #f7fbff;
    line-height: 1.6;
    font-size: 15px;
    overflow-x: hidden
}

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

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

.topbar {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1180px, 92%);
    height: 72px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 18px;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 999px;
    box-shadow: 0 20px 70px rgba(4, 30, 55, .18);
    z-index: 50
}

.logo img {
    width: 132px
}

.topbar nav {
    display: flex;
    gap: 5px;
    margin-left: auto
}

.topbar nav a {
    font-size: 14px;
    font-weight: 800;
    padding: 10px 13px;
    border-radius: 999px;
    color: #17344c
}

.topbar nav a:hover,
.topbar nav a.active {
    background: linear-gradient(135deg, rgba(120, 190, 32, .18), rgba(49, 215, 255, .16));
    color: var(--blue)
}

.estimate,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 999px;
    padding: 12px 21px;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--blue), var(--lime));
    box-shadow: 0 16px 38px rgba(4, 119, 191, .26);
    transition: .25s
}

.btn:hover,
.estimate:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 55px rgba(4, 119, 191, .35)
}

.btn.ghost {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .35);
    box-shadow: none
}

.btn.light {
    background: #fff;
    color: var(--blue)
}

.btn.small {
    padding: 10px 16px;
    font-size: 13px
}

.menu {
    display: none
}

.hero {
    position: relative;
    min-height: 840px;
    padding: 135px 5% 76px;
    color: #fff;
    background: radial-gradient(circle at 70% 20%, rgba(49, 215, 255, .35), transparent 28%), linear-gradient(135deg, #051524 0%, #092b48 45%, #04101c 100%);
    overflow: hidden
}

.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/sliderbg.png') center/cover;
    opacity: .2;
    mix-blend-mode: screen
}

.hero:after {
    content: "";
    position: absolute;
    width: 900px;
    height: 900px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    right: -260px;
    top: 70px
}

.hero-wrap {
    position: relative;
    z-index: 2;
    width: min(1220px, 100%);
    margin: auto;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 42px;
    align-items: center
}

.eyebrow,
.tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    letter-spacing: .13em;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 900;
    color: var(--lime2);
    margin-bottom: 12px
}

.eyebrow:before,
.tag:before {
    content: "";
    width: 30px;
    height: 3px;
    border-radius: 5px;
    background: linear-gradient(90deg, var(--lime), var(--cyan))
}

.hero h1,
.inner-hero h1 {
    font-size: clamp(38px, 6vw, 66px);
    line-height: 1.05;
    margin: 0 0 20px;
    letter-spacing: 0
}

.hero h1 span {
    color: transparent;
    background: linear-gradient(135deg, var(--cyan), var(--lime2));
    -webkit-background-clip: text;
    background-clip: text
}

.hero p {
    font-size: 18px;
    color: #d6edf8;
    max-width: 680px
}

.actions {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    margin: 28px 0
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 28px;
    max-width: 720px
}

.hero-stats div {
    padding: 17px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(8px)
}

.hero-stats strong {
    display: block;
    font-size: 26px;
    color: #fff;
    line-height: 1
}

.hero-stats span {
    font-size: 12px;
    color: #bfe3f2;
    font-weight: 700
}

.hero-visual {
    position: relative;
    min-height: 560px
}

.hero-visual .main-img {
    position: absolute;
    inset: 0 0 76px 30px;
    border-radius: 38px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .48);
    transform: rotate(1.5deg)
}

.hero-visual .main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.float-card {
    position: absolute;
    left: 0;
    bottom: 68px;
    width: 240px;
    padding: 20px;
    background: #fff;
    color: var(--ink);
    border-radius: 24px;
    box-shadow: 0 26px 80px rgba(0, 0, 0, .32)
}

.float-card b {
    font-size: 34px;
    color: var(--blue);
    line-height: 1
}

.mini-card {
    position: absolute;
    right: 8px;
    top: 68px;
    width: 198px;
    padding: 16px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--lime), var(--blue));
    box-shadow: 0 26px 70px rgba(0, 0, 0, .3);
    font-weight: 900
}

.orbit {
    position: absolute;
    right: -20px;
    bottom: 0;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, #fff 0 7%, transparent 8%), conic-gradient(from 90deg, var(--cyan), var(--lime), var(--blue), var(--cyan));
    opacity: .9;
    filter: blur(.2px)
}

section {
    padding: 78px 5%
}

.container {
    width: min(1180px, 100%);
    margin: auto
}

.quick {
    position: relative;
    z-index: 3;
    margin-top: -100px
}

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

.quick article {
    background: rgba(255, 255, 255, .92);
    border: 1px solid #e3eef6;
    border-radius: 24px;
    padding: 23px;
    box-shadow: 0 22px 70px rgba(7, 35, 58, .12);
    transition: .28s
}

.quick article:hover {
    transform: translateY(-8px)
}

.icon {
    width: 52px;
    height: 52px;
    border-radius: 17px;
    display: grid;
    place-items: center;
    font-size: 22px;
    background: linear-gradient(135deg, rgba(120, 190, 32, .18), rgba(49, 215, 255, .18));
    color: var(--blue);
    margin-bottom: 15px
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px
}

.section-head h2,
.split h2,
.process h2,
.logos h2,
.certs h2,
.cta h2 {
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.12;
    margin: 0;
    letter-spacing: 0
}

.muted,
.split p,
.service-card p,
.process p,
.logos p {
    color: var(--muted)
}

.split {
    display: grid;
    grid-template-columns: 1fr .95fr;
    gap: 55px;
    align-items: center
}

.photo-collage {
    position: relative;
    min-height: 510px
}

.photo-collage img {
    position: absolute;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 22px 70px rgba(4, 31, 55, .18)
}

.photo-collage img:nth-child(1) {
    left: 0;
    top: 34px;
    width: 70%;
    height: 390px
}

.photo-collage img:nth-child(2) {
    right: 0;
    bottom: 0;
    width: 52%;
    height: 270px;
    border: 10px solid #f7fbff
}

.experience {
    position: absolute;
    right: 30px;
    top: 0;
    background: linear-gradient(135deg, var(--blue), var(--lime));
    color: #fff;
    border-radius: 28px;
    padding: 22px;
    box-shadow: 0 22px 65px rgba(4, 119, 191, .28)
}

.experience strong {
    font-size: 42px;
    line-height: 1;
    display: block
}

.tick-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0
}

.tick-list span {
    font-weight: 800;
    padding: 12px 14px;
    border-radius: 16px;
    background: #edf8ff;
    color: #12344f
}

.services {
    background: linear-gradient(180deg, #fff, #edf8ff)
}

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

.service-card {
    position: relative;
    min-height: 390px;
    border-radius: 30px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 24px 75px rgba(6, 24, 41, .16)
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s
}

.service-card:hover img {
    transform: scale(1.08)
}

.service-card:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(5, 18, 31, .88) 100%)
}

.service-card div {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 24px;
    color: #fff
}

.service-card h3 {
    font-size: 22px;
    line-height: 1.2;
    margin: 0 0 8px
}

.service-card p {
    color: #d8eef8
}

.showcase {
    background: #071827;
    color: #fff;
    overflow: hidden
}

.showcase-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 42px;
    align-items: center
}

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

.mosaic img {
    height: 215px;
    width: 100%;
    object-fit: cover;
    border-radius: 24px
}

.mosaic img:nth-child(1) {
    grid-row: span 2;
    height: 446px
}

.why-list {
    display: grid;
    gap: 12px;
    margin-top: 22px
}

.why-list article {
    padding: 17px 19px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px
}

.why-list h3 {
    margin: 0 0 4px;
    color: #fff
}

.why-list p {
    margin: 0;
    color: #bad7e6
}

.process {
    text-align: center;
    background: #f7fbff
}

.steps {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: left
}

.steps article {
    background: #fff;
    border-radius: 26px;
    padding: 25px;
    border: 1px solid #e4eef7;
    box-shadow: 0 20px 60px rgba(6, 24, 41, .08)
}

.steps span {
    font-size: 40px;
    line-height: 1;
    font-weight: 900;
    color: transparent;
    background: linear-gradient(135deg, var(--blue), var(--lime));
    -webkit-background-clip: text;
    background-clip: text
}

.logos {
    background: #fff;
    text-align: center
}

.logo-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 22px
}

.logo-row img {
    width: 148px;
    height: 82px;
    object-fit: contain;
    padding: 16px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #e4eef6;
    box-shadow: 0 12px 35px rgba(6, 24, 41, .08)
}

.certs {
    background: #edf8ff
}

.cert-grid,
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.cert-grid img {
    height: 290px;
    width: 100%;
    object-fit: contain;
    background: #fff;
    border-radius: 22px;
    padding: 13px;
    box-shadow: 0 14px 45px rgba(6, 24, 41, .09)
}

.gallery-grid img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 12px 38px rgba(6, 24, 41, .1)
}

.cta {
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, #061829, #073c63 55%, #0b8f3a)
}

.cta:before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/footerbg.jpg') center/cover;
    opacity: .17
}

.cta .container {
    position: relative
}

.cta p {
    color: #d6edf8
}

.inner-hero {
    position: relative;
    min-height: 450px;
    color: #fff;
    padding: 135px 5% 76px;
    display: flex;
    align-items: end;
    background: #061829;
    overflow: hidden
}

.inner-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .42
}

.inner-hero:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #061829 0%, rgba(6, 24, 41, .75) 45%, rgba(6, 24, 41, .1))
}

.inner-hero .container {
    position: relative;
    z-index: 1
}

.service-list {
    display: grid;
    gap: 20px
}

.service-list article {
    display: grid;
    grid-template-columns: 310px 1fr;
    gap: 24px;
    background: #fff;
    border: 1px solid #e4eef6;
    border-radius: 28px;
    padding: 20px;
    box-shadow: 0 18px 55px rgba(6, 24, 41, .08)
}

.service-list img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    border-radius: 22px
}

.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 28px
}

.contact-card,
form {
    background: #fff;
    border: 1px solid #e4eef6;
    border-radius: 26px;
    padding: 26px;
    box-shadow: 0 18px 55px rgba(6, 24, 41, .08)
}

.big {
    font-size: 23px;
    font-weight: 900;
    color: var(--blue)
}

form {
    display: grid;
    gap: 14px
}

label {
    display: grid;
    gap: 6px;
    font-weight: 800
}

input,
select,
textarea {
    border: 1px solid #d8e6f0;
    border-radius: 14px;
    padding: 13px;
    font: inherit;
    background: #fbfdff
}

textarea {
    min-height: 125px
}

footer {
    padding: 58px 5%;
    background: #04101c;
    color: #d4eaf5
}

footer .foot {
    width: min(1180px, 100%);
    margin: auto;
    display: grid;
    grid-template-columns: 1.3fr .8fr .9fr;
    gap: 34px
}

footer img {
    width: 165px
}

footer a {
    display: block;
    margin: 7px 0;
    color: #d4eaf5
}

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

.reveal.show {
    opacity: 1;
    transform: none
}

.hero:before {
    animation: coolMist 14s ease-in-out infinite alternate
}

.hero:after {
    animation: slowSpin 34s linear infinite
}

.hero h1 span {
    background-size: 220% 220%;
    animation: coolGradient 7s ease-in-out infinite
}

.hero-visual .main-img {
    animation: hvacFloat 7s ease-in-out infinite
}

.float-card {
    animation: cardFloat 5.5s ease-in-out infinite
}

.float-card p {
    color: #000
}

.mini-card {
    animation: cardFloatReverse 6.2s ease-in-out infinite
}

.orbit {
    animation: fanSpin 6s linear infinite;
    box-shadow: 0 0 34px rgba(49, 215, 255, .38), 0 0 68px rgba(120, 190, 32, .2)
}

.icon {
    position: relative;
    overflow: hidden
}

.icon:after {
    content: "";
    position: absolute;
    width: 140%;
    height: 18px;
    left: -150%;
    top: 20px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .7), transparent);
    transform: rotate(-20deg);
    animation: airSweep 3.6s ease-in-out infinite
}

.quick article,
.steps article,
.contact-card,
form,
.logo-row img,
.cert-grid img,
.gallery-grid img {
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease
}

.quick article:hover,
.steps article:hover,
.contact-card:hover,
form:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 78px rgba(4, 119, 191, .16);
    border-color: rgba(49, 215, 255, .45)
}

.logo-row img:hover,
.cert-grid img:hover,
.gallery-grid img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 22px 62px rgba(4, 119, 191, .18)
}

.service-card:before {
    content: "";
    position: absolute;
    inset: auto -40% 0 -40%;
    height: 44%;
    z-index: 1;
    background: linear-gradient(90deg, transparent, rgba(49, 215, 255, .24), rgba(120, 190, 32, .18), transparent);
    transform: translateX(-70%) skewX(-18deg);
    transition: transform .85s ease
}

.service-card:hover:before {
    transform: translateX(70%) skewX(-18deg)
}

.service-card div {
    transition: transform .35s ease
}

.service-card:hover div {
    transform: translateY(-8px)
}

.mosaic img,
.photo-collage img {
    transition: transform .45s ease, filter .45s ease
}

.mosaic img:hover,
.photo-collage img:hover {
    transform: scale(1.035);
    filter: saturate(1.08) contrast(1.03)
}

.topbar {
    animation: navDrop .75s ease both
}

.topbar nav a {
    position: relative;
    overflow: hidden
}

.topbar nav a:after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 8px;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--lime));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease
}

.topbar nav a:hover:after,
.topbar nav a.active:after {
    transform: scaleX(1)
}

.btn,
.estimate {
    position: relative;
    overflow: hidden
}

.btn:after,
.estimate:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0 35%, rgba(255, 255, 255, .35) 50%, transparent 65% 100%);
    transform: translateX(-120%);
    transition: transform .7s ease
}

.btn:hover:after,
.estimate:hover:after {
    transform: translateX(120%)
}

.reveal {
    opacity: 0;
    transform: translateY(36px) scale(.985);
    transition: opacity .75s ease, transform .75s cubic-bezier(.22, 1, .36, 1)
}

.reveal.show {
    opacity: 1;
    transform: none
}

.reveal.show .hero-stats div,
.reveal.show.quick-grid article,
.reveal.show .service-card,
.reveal.show .steps article,
.reveal.show .logo-row img,
.reveal.show .cert-grid img,
.reveal.show .gallery-grid img {
    animation: staggerUp .7s cubic-bezier(.22, 1, .36, 1) both
}

.reveal.show .hero-stats div:nth-child(2),
.reveal.show.quick-grid article:nth-child(2),
.reveal.show .service-card:nth-child(2),
.reveal.show .steps article:nth-child(2),
.reveal.show .logo-row img:nth-child(2),
.reveal.show .cert-grid img:nth-child(2),
.reveal.show .gallery-grid img:nth-child(2) {
    animation-delay: .08s
}

.reveal.show .hero-stats div:nth-child(3),
.reveal.show.quick-grid article:nth-child(3),
.reveal.show .service-card:nth-child(3),
.reveal.show .steps article:nth-child(3),
.reveal.show .logo-row img:nth-child(3),
.reveal.show .cert-grid img:nth-child(3),
.reveal.show .gallery-grid img:nth-child(3) {
    animation-delay: .16s
}

.reveal.show.quick-grid article:nth-child(4),
.reveal.show .logo-row img:nth-child(4) {
    animation-delay: .24s
}

.reveal.show .logo-row img:nth-child(5) {
    animation-delay: .32s
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    pointer-events: none !important
}

.form-alert {
    display: none;
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 14px;
    font-weight: 700
}

.success-alert {
    background: rgba(0, 165, 92, .12);
    color: #087445;
    border: 1px solid rgba(0, 165, 92, .25)
}

.error-alert {
    background: rgba(220, 38, 38, .1);
    color: #b91c1c;
    border: 1px solid rgba(220, 38, 38, .25)
}

body.form-sent .success-alert {
    display: block
}

body.form-error .error-alert {
    display: block
}

.contact-form button[type=submit] {
    cursor: pointer
}

@keyframes coolMist {
    0% {
        transform: scale(1) translate3d(0, 0, 0);
        opacity: .16
    }

    100% {
        transform: scale(1.08) translate3d(-18px, 14px, 0);
        opacity: .28
    }
}

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

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

@keyframes coolGradient {

    0%,
    100% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }
}

@keyframes hvacFloat {

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

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

@keyframes cardFloat {

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

    50% {
        transform: translateY(-14px)
    }
}

@keyframes cardFloatReverse {

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

    50% {
        transform: translateY(12px)
    }
}

@keyframes airSweep {

    0%,
    55% {
        left: -150%
    }

    100% {
        left: 150%
    }
}

@keyframes navDrop {
    from {
        opacity: 0;
        transform: translate(-50%, -18px)
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0)
    }
}

@keyframes staggerUp {
    from {
        opacity: 0;
        transform: translateY(26px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@media(max-width: 1000px) {
    body {
        font-size: 14px
    }

    .topbar {
        top: 0;
        width: 100%;
        border-radius: 0
    }

    .topbar nav,
    .estimate {
        display: none
    }

    .menu {
        display: block;
        margin-left: auto;
        background: linear-gradient(135deg, var(--blue), var(--lime));
        border: 0;
        border-radius: 12px;
        color: #fff;
        padding: 9px 13px;
        font-weight: 800
    }

    .topbar.open nav {
        display: flex;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 18px
    }

    .hero-wrap,
    .split,
    .showcase-grid,
    .contact-grid {
        grid-template-columns: 1fr
    }

    .hero {
        padding-top: 112px;
        min-height: auto
    }

    .hero-visual {
        min-height: 480px
    }

    .quick {
        margin-top: 0
    }

    .quick-grid,
    .service-grid,
    .steps,
    .cert-grid,
    .gallery-grid,
    footer .foot {
        grid-template-columns: 1fr
    }

    .section-head {
        display: block
    }

    .tick-list {
        grid-template-columns: 1fr
    }

    .service-list article {
        grid-template-columns: 1fr
    }

    .mosaic img,
    .mosaic img:nth-child(1) {
        height: 250px
    }

    .hero-stats {
        grid-template-columns: 1fr
    }

    .hero h1,
    .inner-hero h1 {
        font-size: 36px
    }

    .photo-collage {
        min-height: 430px
    }
}

@media(max-width: 640px) {
    section {
        padding: 58px 5%
    }

    .hero {
        padding-bottom: 58px
    }

    .hero p {
        font-size: 16px
    }

    .inner-hero {
        min-height: 390px;
        padding-top: 108px
    }

    .hero-visual {
        min-height: 350px
    }

    .hero-visual .main-img {
        inset: 0 0 64px 0;
        border-radius: 26px
    }

    .float-card {
        width: 205px;
        bottom: 36px
    }

    .mini-card {
        right: 0;
        top: 30px;
        width: 175px
    }

    .orbit {
        width: 110px;
        height: 110px
    }

    .logo img {
        width: 120px
    }

    .topbar {
        height: 68px
    }

    .topbar.open nav {
        top: 68px
    }

    .photo-collage {
        min-height: 360px
    }

    .photo-collage img:nth-child(1) {
        height: 285px
    }

    .photo-collage img:nth-child(2) {
        height: 190px
    }

    .experience {
        right: 10px;
        padding: 16px
    }

    .experience strong {
        font-size: 34px
    }

    .cert-grid img,
    .gallery-grid img {
        height: 240px
    }

    .service-card {
        min-height: 330px
    }

    .contact-card,
    form {
        padding: 22px
    }

    .big {
        font-size: 20px
    }
}

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

    *,
    *:before,
    *:after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important
    }
}

.section-head .btn.small {
    width: 20%;
}