:root {
    --cyan:#01a9ad;
    /* --cyan: #10bfc1; */
    --cyan-dark: #079a9d;
    --navy: #293946;
    /* --navy: #102a43; */
    --text: #526579;
    --pale: #effafa;
    --line: #dce8ea;
    --white: #fff;
    --shadow: 0 18px 60px rgba(16, 42, 67, .11);
    --radius: 24px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px
}

body {
    margin: 0;
    color: var(--navy);
    background: var(--white);
    font-family: "Manrope", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased
}

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

a {
    color: inherit
}

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

.skip-link {
    position: fixed;
    left: 16px;
    top: -60px;
    z-index: 100;
    background: var(--navy);
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px
}

.skip-link:focus {
    top: 12px
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(220, 232, 234, .8)
}

.nav-wrap {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand img {
    width: 164px;
    height: auto
}

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

.main-nav>a:not(.button) {
    font-size: .91rem;
    font-weight: 700;
    text-decoration: none;
    position: relative
}

.main-nav>a:not(.button)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--cyan);
    transition: .25s
}

.main-nav>a:hover::after,
.main-nav>a:focus-visible::after {
    width: 100%
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 12px;
    padding: 15px 22px;
    background: var(--cyan);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(16, 191, 193, .22);
    transition: transform .2s, background .2s, box-shadow .2s
}

.button:hover {
    background: var(--cyan-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(16, 191, 193, .29)
}

.button-small {
    padding: 11px 18px;
    border-radius: 10px
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    width: 44px;
    height: 44px;
    padding: 10px;
    cursor: pointer
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 6px 0;
    background: var(--navy);
    transition: .2s
}

.hero {
    overflow: hidden;
    padding: 86px 0 90px
}

.hero-grid {
    display: grid;
    grid-template-columns: .91fr 1.09fr;
    gap: 48px;
    align-items: center
}

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--cyan-dark);
    font-size: .77rem;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .14em
}

.hero h1 {
    margin: 0;
    font-size: clamp(2.75rem, 5vw, 4.1em);
    line-height: 1.04;
    letter-spacing: -.055em;
    max-width: 720px
}

.hero h1 em {
    color: var(--cyan);
    font-style: normal
}

.hero-copy>p {
    max-width: 610px;
    margin: 26px 0 32px;
    color: var(--text);
    font-size: 1.13rem
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px
}

.text-link {
    font-weight: 800;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px
}

.hero-visual {
    position: relative
}

.hero-visual img {
    position: relative;
    z-index: 2;
    width: 100%;
    filter: drop-shadow(0 24px 28px rgba(16, 42, 67, .12));
    mix-blend-mode: multiply
}

.orbit {
    position: absolute;
    border: 1px solid rgba(16, 191, 193, .17);
    border-radius: 50%;
    z-index: 1
}

.orbit-one {
    width: 410px;
    height: 410px;
    right: 7%;
    top: 5%
}

.orbit-two {
    width: 270px;
    height: 270px;
    left: 9%;
    bottom: 4%
}

.section-heading {
    max-width: 720px;
    margin-bottom: 48px
}

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

.section-heading h2,
.results h2,
.contact h2 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 3.7vw, 3.15rem);
    line-height: 1.12;
    letter-spacing: -.04em
}

.section-heading p,
.contact p {
    margin: 0;
    color: var(--text);
    font-size: 1.06rem
}

.value-section {
    padding: 88px 0;
    background: linear-gradient(135deg, #f5fcfc, #edfafa)
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(16, 42, 67, .12)
}

.value-item {
    padding: 30px 24px 0;
    border-right: 1px solid rgba(16, 42, 67, .12)
}

.value-item:last-child {
    border-right: 0
}

.value-number {
    color: var(--cyan);
    font-size: .8rem;
    font-weight: 800
}

.value-item h3 {
    margin: 8px 0 5px;
    font-size: 1.08rem
}

.value-item p {
    margin: 0;
    color: var(--text);
    font-size: .92rem
}

.solutions {
    padding: 110px 0
}

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

.solution-card {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 8px 30px rgba(16, 42, 67, .045);
    transition: transform .25s, border-color .25s, box-shadow .25s
}

.solution-card:hover {
    transform: translateY(-6px);
    border-color: rgba(16, 191, 193, .45);
    box-shadow: var(--shadow)
}

.card-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    border-radius: 18px;
    background: var(--pale);
    color: var(--cyan-dark);
    font-size: 1.05rem;
    font-weight: 800
}

.card-icon.gear {
    font-size: 1.9rem
}

.chart-icon {
    align-items: flex-end;
    gap: 4px;
    padding: 14px
}

.chart-icon i {
    display: block;
    width: 7px;
    background: var(--cyan);
    border-radius: 3px 3px 0 0
}

.chart-icon i:nth-child(1) {
    height: 13px
}

.chart-icon i:nth-child(2) {
    height: 22px
}

.chart-icon i:nth-child(3) {
    height: 31px
}

.solution-card h3 {
    margin: 0 0 14px;
    font-size: 1.35rem;
    line-height: 1.25
}

.solution-card p {
    margin: 0;
    color: var(--text)
}

.method {
    padding: 105px 0;
    background: #fbfdfd
}

.steps {
    display: grid;
    grid-template-columns: 1fr 80px 1fr 80px 1fr;
    align-items: start
}

.step {
    text-align: center;
    padding-inline: 10px
}

.step>span {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--pale);
    color: var(--cyan-dark);
    font-weight: 800;
    font-size: 1.25rem
}

.step h3 {
    font-size: 1.28rem;
    margin: 0 0 10px
}

.step p {
    color: var(--text);
    margin: 0;
    font-size: .95rem
}

.step-line {
    height: 1px;
    margin-top: 26px;
    background: linear-gradient(90deg, var(--cyan), rgba(16, 191, 193, .15));
    position: relative
}

.step-line::after {
    content: "";
    position: absolute;
    right: 0;
    top: -3px;
    width: 7px;
    height: 7px;
    border-top: 1px solid var(--cyan);
    border-right: 1px solid var(--cyan);
    transform: rotate(45deg)
}

.results {
    padding: 72px 0;
    background: var(--navy);
    color: #fff
}

.results-grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 60px;
    align-items: center
}

.results .eyebrow {
    color: #5fe3e4
}

.results-title h2 {
    font-size: 2.4rem
}

.results-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 0;
    margin: 0;
    list-style: none
}

.results-list li {
    min-height: 120px;
    padding: 10px 22px;
    border-left: 1px solid rgba(255, 255, 255, .2);
    font-size: .88rem;
    font-weight: 700;
    text-align: center
}

.results-list li span {
    display: block;
    margin-bottom: 10px;
    color: var(--cyan);
    font-size: 2rem
}

.contact {
    position: relative;
    overflow: hidden;
    padding: 72px 0 76px;
    background: linear-gradient(180deg, #fff 0%, var(--pale) 100%)
}

.contact-panel {
    position: relative;
    z-index: 2;
    max-width: 820px;
    text-align: center
}

.contact-panel .eyebrow {
    color: var(--cyan-dark)
}

.contact-panel p {
    max-width: 720px;
    margin: 0 auto 28px;
    color: var(--text)
}

.contact-circuit {
    position: absolute;
    bottom: 26px;
    width: 235px;
    height: 74px;
    border-top: 3px solid rgba(1, 169, 173, .32)
}

.contact-circuit-left {
    left: -24px;
    border-radius: 0 45px 0 0
}

.contact-circuit-right {
    right: -24px;
    transform: scaleX(-1);
    border-radius: 0 45px 0 0
}

.contact-circuit i {
    position: absolute;
    top: -10px;
    width: 17px;
    height: 17px;
    border: 4px solid var(--cyan);
    border-radius: 50%;
    background: #fff
}

.contact-circuit i:nth-child(1) { left: 42px }
.contact-circuit i:nth-child(2) { left: 112px; top: -25px }
.contact-circuit i:nth-child(3) { right: 12px; border-color: #aab8c2 }

.contact-circuit::after {
    content: "";
    position: absolute;
    left: 120px;
    top: -14px;
    width: 62px;
    height: 28px;
    border-top: 2px solid rgba(170, 184, 194, .65);
    border-radius: 50%
}

.site-footer {
    padding: 48px 0 0;
    background: #fff
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr .7fr;
    gap: 0;
    padding-bottom: 44px
}

.footer-grid>div,
.footer-grid>nav {
    min-height: 150px;
    padding: 4px 48px;
    border-left: 1px solid var(--line)
}

.footer-grid>div:first-child {
    padding-left: 0;
    border-left: 0
}

.footer-grid img {
    width: 190px
}

.footer-grid p {
    color: var(--text);
    margin: 14px 0 0
}

.footer-brand p { max-width: 380px }

.footer-grid h2 {
    margin: 2px 0 16px;
    color: var(--navy);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .12em
}

.footer-contact a,
.footer-contact p,
.footer-nav a {
    display: block;
    margin: 0 0 10px;
    color: var(--text);
    font-size: .9rem;
    text-decoration: none
}

.footer-contact span { display: inline-block; width: 26px; color: var(--cyan-dark); font-weight: 800 }
.footer-nav a:hover,
.footer-contact a:hover { color: var(--cyan-dark) }

.footer-bottom-wrap { background: var(--navy) }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 21px;
    padding-bottom: 21px;
    color: rgba(255, 255, 255, .72);
    font-size: .75rem
}

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

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

@media (prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

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

    .button,
    .solution-card {
        transition: none
    }
}

@media (max-width:900px) {
    .nav-toggle {
        display: block
    }

    .main-nav {
        position: absolute;
        left: 24px;
        right: 24px;
        top: 72px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 16px;
        box-shadow: var(--shadow)
    }

    .main-nav.open {
        display: flex
    }

    .main-nav>a {
        padding: 12px
    }

    .main-nav .button {
        margin-top: 8px
    }

    .hero {
        padding-top: 55px
    }

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

    .hero-copy {
        text-align: center
    }

    .hero-copy>p {
        margin-inline: auto
    }

    .hero-actions {
        justify-content: center
    }

    .hero-visual {
        max-width: 680px;
        margin-inline: auto
    }

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

    .value-item {
        border-right: 0
    }

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

    .solution-card {
        max-width: 680px
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .step-line {
        display: none
    }

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

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

    .contact-circuit { width: 170px; opacity: .7 }

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

    .footer-grid>div,
    .footer-grid>nav { padding-inline: 28px }
}

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

    .nav-wrap {
        height: 72px
    }

    .brand img {
        width: 138px
    }

    .hero {
        padding: 48px 0 65px
    }

    .hero h1 {
        font-size: 2.55rem
    }

    .hero-copy>p {
        font-size: 1rem
    }

    .hero-actions {
        flex-direction: column;
        gap: 18px
    }

    .hero-visual img {
        mix-blend-mode: normal
    }

    .value-section,
    .solutions,
    .method,
    .contact {
        padding-top: 78px;
        padding-bottom: 78px
    }

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

    .value-item {
        text-align: center;
        padding-inline: 0
    }

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

    .results-list li {
        padding: 10px 8px
    }

    .contact-panel {
        padding-inline: 12px
    }

    .contact-circuit { width: 95px; opacity: .55 }

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

    .footer-grid>div,
    .footer-grid>nav {
        min-height: 0;
        padding: 28px 0;
        border-left: 0;
        border-top: 1px solid var(--line)
    }

    .footer-grid>div:first-child { border-top: 0 }

    .footer-grid img,
    .footer-brand p { margin-inline: auto }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 7px;
        text-align: center
    }
}
