:root {
    --navy: #07131f;
    --navy2: #0c1b2a;
    --gold: #d4a25a;
    --gold2: #c9983a;
    --text: #172233;
    --muted: #68717d;
    --line: #e8e4dd;
    --bg: #faf9f6
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Montserrat, Arial, sans-serif;
    color: var(--text);
    background: #fff;
    font-size: 14px;
    line-height: 1.55
}

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

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

.container {
    width: min(var(--container-width, 1130px), calc(100% - 48px));
    margin: auto
}

.site-header {
    position: fixed;
    z-index: 50;
    left: 0;
    right: 0;
    top: 0;
    height: 56px;
    background: var(--brand-primary, #07131f);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .18)
}

.header-inner {
    height: 56px;
    display: flex;
    align-items: center;
    gap: 24px
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 210px
}

.brand-mark {
    width: 45px;
    height: 35px;
    color: var(--gold);
    display: grid;
    place-items: center;
    flex: none
}

.brand-mark svg {
    width: 45px;
    height: 35px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round
}

.brand-text strong {
    display: block;
    font-size: 19px;
    line-height: 1;
    color: #fff;
    letter-spacing: 1px
}

.brand-text small {
    display: block;
    font-size: 8px;
    color: #c9c9c9;
    letter-spacing: .8px
}

.nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 31px;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700
}

.nav a {
    position: relative;
    flex: none;
    color: #f4f6f8;
    white-space: nowrap;
    transition: color .25s ease
}

.nav a.active,
.nav a:hover {
    color: var(--gold)
}

.nav a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -12px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform .25s ease
}

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

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

.phone {
    font-weight: 700;
    font-size: var(--font-size-small, 12px);
    white-space: nowrap
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--btn-radius, 2px);
    text-transform: uppercase;
    font-weight: 800;
    font-size: var(--font-size-small, 12px);
    height: 42px;
    padding: 0 26px;
    border: 1px solid transparent;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
    cursor: pointer
}

.btn:hover {
    transform: translateY(-2px)
}

.btn-gold {
    background: linear-gradient(180deg, var(--brand-accent, #d4a25a), var(--brand-accent-2, #c9983a));
    color: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .15)
}

.btn-outline {
    border-color: #fff;
    color: #fff;
    background: rgba(5, 10, 16, .2)
}

.btn-outline:hover {
    background: #fff;
    color: var(--navy)
}

.btn-light {
    border: 1px solid var(--gold);
    color: var(--gold2);
    height: 34px;
    background: #fff;
    margin: 0
}

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

.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 24px
}

.hero {
    height: 438px;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 56px
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url("https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=1920&q=90") center/cover no-repeat;
    animation: heroZoom 18s ease-in-out infinite alternate
}

@keyframes heroZoom {
    from {
        transform: scale(1)
    }

    to {
        transform: scale(1.06)
    }
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 14, 24, .9) 0%, rgba(5, 14, 24, .72) 34%, rgba(5, 14, 24, .2) 78%)
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 18px
}

.eyebrow,
.section-label {
    text-transform: uppercase;
    font-weight: 700;
    font-size: var(--font-size-small, 12px);
    letter-spacing: .7px
}

.hero h1 {
    font-size: var(--font-size-h1, 48px);
    line-height: 1.5;
    text-transform: uppercase;
    margin: 18px 0 15px;
    font-weight: 800;
    letter-spacing: .2px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, .35)
}

.hero h1 span {
    color: var(--gold)
}

.hero-desc {
    max-width: 500px;
    color: #eef2f4;
    margin: 0 0 24px
}

.hero-buttons {
    display: flex;
    gap: 14px
}

.slider-index {
    margin-top: 42px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #a7afb8;
    font-size: var(--font-size-small, 12px)
}

.slider-index b {
    color: var(--gold)
}

.slider-index span {
    width: 36px;
    height: 1px;
    background: #89929b
}

.slider-index em {
    font-style: normal
}

.section {
    padding: var(--section-spacing, 28px) 0
}

.compact {
    /*padding-top: 12px */
}

.section-label {
    color: #5d6670;
    font-size: 11px;
    margin: 0 0 8px
}

.center {
    text-align: center
}

.section h2,
.about h2,
.projects h2,
.process h2 {
    font-size: var(--font-size-h2, 25px);
    line-height: 1.25;
    margin: 0 0 20px;
    font-weight: 700
}

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

.about-image {
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    border-radius: var(--image-radius, 3px);
    box-shadow: var(--card-shadow, 0 12px 30px -18px rgba(13, 30, 52, .35))
}

.about-image img {
    height: auto;
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s ease
}

.about-image:hover img {
    transform: scale(1.06)
}

.about-content>p:not(.section-label) {
    max-width: 100%;
    color: #5e6874;
    margin: 0 0 19px
}

.stats {
    border: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff
}

.stat {
    display: grid;
    grid-template-columns: 46px 1fr;
    grid-template-rows: 1fr 1fr;
    align-items: center;
    border-right: 1px solid var(--line);
    min-height: 72px
}

.stat:last-child {
    border-right: 0
}

.stat i {
    grid-row: 1/3;
    color: var(--gold2)
}

.stat svg {
    width: 34px;
    height: 34px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round
}

.stat strong {
    font-size: 18px;
    color: #0e1825;
    align-self: end
}

.stat span {
    font-size: var(--font-size-small, 11px);
    color: #5f6972;
    align-self: start
}

.service-grid {
    display: grid;
    gap: var(--grid-gap, 12px)
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: -2px 0 14px
}

.tabs button {
    border: 0;
    background: #f0f0f0;
    padding: 8px 25px;
    font-size: var(--font-size-small, 11px);
    text-transform: uppercase;
    cursor: pointer
}

.tabs .active {
    background: var(--brand-primary, #0b1725);
    color: #fff
}



.process-line {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    position: relative;
    padding-top: 22px
}

.process-line:before {
    content: "";
    position: absolute;
    top: 39px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: var(--brand-secondary, #0c1b2a);
    opacity: .7
}

.step {
    text-align: center;
    position: relative
}

.step i {
    display: block;
    height: 28px;
    color: var(--gold2);
    margin-bottom: 8px
}

.step i svg {
    height: 28px;
    width: 38px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8
}

.step b {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--brand-primary, #0b1725);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: var(--font-size-small, 13px);
    border: 2px solid #fff;
    z-index: 2
}

.step h3 {
    text-transform: uppercase;
    font-size: var(--font-size-small, 11px);
    margin: 6px 0 4px
}

.step p {
    font-size: var(--font-size-small, 10px);
    color: #59636e;
    margin: 0 auto;
    max-width: 100%
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--grid-gap, 14px)
}

.testimonial-grid article {
    border: 1px solid var(--line);
    padding: 18px;
    background: #fff;
    display: flex;
    flex-direction: column;
    min-height: 125px
}

.testimonial-grid article>span {
    font-size: 34px;
    color: var(--gold);
    line-height: .6;
    font-family: Georgia, serif
}

.testimonial-grid p {
    font-size: var(--font-size-small, 12px);
    color: #3d4650;
    margin: 0 0 12px
}

.t-author {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: auto
}

.t-author img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover
}

.t-author strong {
    display: block;
    font-size: var(--font-size-small, 12px)
}

.t-author small {
    display: block;
    color: #777;
    font-size: var(--font-size-small, 10px)
}

.logos {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    align-items: center;
    text-align: center;
    margin-top: 80px;
    color: #a1a1a1;
    font-weight: 800;
    font-size: 19px;
    filter: grayscale(1);
    opacity: .78
}

.blog-cta-grid {
    display: grid;
    grid-template-columns: 1fr 292px;
    gap: 18px
}

.blog-grid {
    display: grid;
    gap: var(--grid-gap, 14px)
}

.cta {
    background: linear-gradient(140deg, var(--brand-primary, #07131f) 0%, var(--brand-secondary, #0c1b2a) 100%);
    color: #fff;
    padding: 26px;
    text-align: center
}

.cta .large {
    margin: auto;
    width: 70px;
    height: 52px
}

.cta h2 {
    text-transform: uppercase;
    color: var(--gold);
    margin: 12px 0;
    font-size: 22px
}

.cta p {
    color: #d9dee3;
    font-size: var(--font-size-small, 13px)
}

.footer {
    background: var(--brand-primary, #07131f);
    color: #cfd5dc;
    padding: 30px 0 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr .8fr 1fr 1.2fr 1.15fr;
    gap: 32px
}

.footer h3 {
    text-transform: uppercase;
    color: var(--gold);
    font-size: var(--font-size-small, 13px);
    margin: 0 0 14px
}

.footer p,
.footer a {
    display: block;
    font-size: var(--font-size-small, 12px);
    color: #b9c0c8;
    margin: 0 0 7px
}

.footer-brand {
    margin-bottom: 14px
}


.social {
    display: flex;
    gap: 8px
}

.social a {
    width: 36px;
    height: 36px;
    border: 1px solid #6e7884;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: var(--font-size-small, 10px);
    color: #a0aab4
}

.footer form {
    display: flex;
    border: 1px solid #344253;
    height: 38px;
    margin-top: 12px
}

.footer input {
    flex: 1;
    background: transparent;
    border: 0;
    color: #fff;
    padding: 0 10px;
    min-width: 0
}

.footer button {
    width: 44px;
    background: var(--gold);
    border: 0;
    color: #fff
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .07);
    margin-top: 20px;
    padding: 12px;
    color: #b7bec7;
    font-size: var(--font-size-small, 12px)
}


.reveal,
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity .75s ease, transform .75s cubic-bezier(.2, .7, .2, 1)
}

.reveal {
    transform: translateY(16px)
}

.reveal-up {
    transform: translateY(34px)
}

.reveal-left {
    transform: translateX(-34px)
}

.reveal-right {
    transform: translateX(34px)
}

.is-visible {
    opacity: 1;
    transform: none
}

.delay-1 {
    transition-delay: .08s
}

.delay-2 {
    transition-delay: .16s
}

.delay-3 {
    transition-delay: .24s
}

.delay-4 {
    transition-delay: .32s
}

.delay-5 {
    transition-delay: .4s
}

@media(max-width:1099px) {
    .container {
        width: min(960px, calc(100% - 36px))
    }

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

    .process-line:before {
        display: none
    }

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

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

    .about-grid {
        grid-template-columns: 300px 1fr
    }

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

    .blog-cta-grid {
        grid-template-columns: 1fr
    }

    .hero h1 {
        font-size: 42px
    }

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

@media(max-width:960px) {
    .nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 56px;
        background: #07131f;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        text-align: center
    }

    .nav.open {
        display: flex
    }

    .nav a:after {
        display: none
    }

    .menu-toggle {
        display: block
    }

    .phone {
        display: none
    }

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

    .about-image img {
        height: 320px
    }

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

    .hero {
        height: 520px
    }

    .section {
        padding: 42px 0
    }
}

@media(max-width:767px) {
    .container {
        width: min(100% - 32px, 720px)
    }

    .process-line {
        grid-template-columns: repeat(2, 1fr)
    }

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

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

    .blog-tpl-blog-1 {
        grid-template-columns: 1fr
    }

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

    .tabs {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 4px
    }

    .tabs button {
        flex: none
    }

    .hero h1 {
        font-size: 32px
    }

    .section h2,
    .about h2,
    .projects h2,
    .process h2 {
        font-size: 22px
    }

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

@media(max-width:559px) {
    .container {
        width: calc(100% - 28px)
    }

    .header-actions .btn {
        display: none
    }

    .brand {
        min-width: auto
    }

    .brand-text strong {
        font-size: 15px
    }

    .hero {
        height: auto;
        min-height: 560px
    }

    .hero-content {
        padding: 96px 0 50px
    }

    .hero h1 {
        font-size: 28px
    }

    .hero-buttons {
        flex-direction: column
    }

    .stats,
    .process-line,
    .testimonial-grid,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .about-image img {
        height: 220px
    }

    .section {
        padding: 34px 0
    }

    .blog-tpl-blog-1 article {
        grid-template-columns: 1fr
    }

    .blog-tpl-blog-1 img {
        width: 100%;
        height: 180px
    }

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