body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--surface);
    line-height: 1.6
}

.container {
    width: min(calc(100% - 3rem), var(--container));
    margin-inline: auto
}

.section {
    padding-block: var(--space-section)
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    height: 78px;
    border-bottom: 1px solid transparent;
    transition: .3s;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(16px)
}

.site-header.scrolled {
    height: 68px;
    border-color: rgba(16, 29, 47, .08);
    box-shadow: 0 8px 30px rgba(9, 20, 33, .06)
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2.2rem
}

.main-nav a {
    font-size: .88rem;
    font-weight: 650;
    color: #33465b;
    position: relative
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -.5rem;
    height: 2px;
    background: var(--orange);
    transition: .25s
}

.main-nav a:hover::after,
.main-nav a.active::after {
    right: 0
}

.menu-toggle {
    display: none;
    background: none
}

.hero {
    min-height: 100vh;
    padding-top: clamp(9.5rem, 14vw, 11.5rem);
    background: linear-gradient(118deg, #fbfcfc 0%, #f7f9f9 52%, #edf2f3 100%);
    position: relative;
    overflow: hidden
}

.hero-grid {
    display: grid;
    grid-template-columns: .87fr 1.13fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center
}

.hero-copy {
    position: relative;
    z-index: 2
}

.hero h1 {
    font-size: clamp(3rem, 5.4vw, 5.3rem);
    line-height: 1.01;
    letter-spacing: -.055em;
    max-width: 680px
}

.hero h1 em,
.section-heading em,
.cta em {
    display: block;
    color: var(--orange);
    font-style: normal
}

.hero-lead {
    margin-top: 1.75rem;
    color: var(--muted);
    font-size: clamp(1.02rem, 1.35vw, 1.19rem);
    max-width: 590px
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2.2rem
}

.hero-signals {
    display: flex;
    gap: 1.7rem;
    margin-top: 2rem;
    font-size: .8rem;
    color: #44556a;
    font-weight: 650
}

.hero-signals li {
    display: flex;
    align-items: center;
    gap: .5rem
}

.hero-signals i {
    font-style: normal;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    background: #e2f4ed;
    color: var(--success)
}

.hero-visual {
    position: relative;
    min-width: 0;
    z-index: 1;
    perspective: 1000px
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none
}

.orb-one {
    width: 490px;
    height: 490px;
    right: -180px;
    top: 120px;
    background: rgba(237, 139, 0, .09)
}

.orb-two {
    width: 400px;
    height: 400px;
    left: 45%;
    bottom: -260px;
    border: 1px solid rgba(237, 139, 0, .2)
}

.trust {
    margin-top: clamp(5rem, 9vw, 8rem);
    padding-block: 1.5rem;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center
}

.trust p {
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .65rem;
    color: #778492
}

.trust div {
    display: flex;
    align-items: center;
    gap: 1.55rem;
    color: #627080;
    font-weight: 750;
    font-size: .7rem;
    letter-spacing: .12em
}

.trust div i {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--orange)
}

.about-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: clamp(3rem, 9vw, 8rem);
    align-items: start
}

.about-copy>p {
    font-size: clamp(1.05rem, 1.5vw, 1.24rem);
    color: #526170;
    margin-bottom: 1.1rem
}

.principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2.7rem
}

.principles div {
    border-top: 2px solid var(--orange);
    padding-top: 1rem
}

.principles span {
    color: var(--orange);
    font-size: .7rem;
    font-weight: 800
}

.principles strong,
.principles small {
    display: block
}

.principles strong {
    margin-top: .6rem;
    font-size: .95rem
}

.principles small {
    color: var(--muted);
    margin-top: .35rem;
    font-size: .78rem
}

.solutions {
    background: var(--surface-alt)
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
    margin-top: 3.5rem
}

.process {
    background: var(--navy-900);
    color: #fff;
    position: relative;
    overflow: hidden
}

.process::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(237, 139, 0, .15);
    border-radius: 50%;
    right: -250px;
    top: -250px
}

.process-intro {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    align-items: end;
    gap: 3rem
}

.process-intro>p {
    color: #9caaba;
    max-width: 390px
}

.process-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 4.5rem;
    position: relative;
    z-index: 1
}

.process-list::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 58px;
    border-top: 1px dashed rgba(255, 255, 255, .2)
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-top: 3.5rem
}

.cta {
    background: var(--orange);
    padding-block: clamp(4rem, 7vw, 6.5rem);
    color: #fff
}

.cta-inner {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 5rem;
    align-items: end
}

.cta h2 {
    font-size: clamp(2.3rem, 4vw, 4rem);
    line-height: 1.08;
    letter-spacing: -.04em
}

.cta em {
    color: var(--navy-900)
}

.cta-inner>p {
    font-size: 1.05rem;
    color: #fff8f4
}

.site-footer {
    background: var(--navy-950);
    color: #c7d0d8;
    padding-top: 4.5rem
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr .6fr .8fr;
    gap: 4rem;
    padding-bottom: 3.5rem
}

.footer-brand p {
    max-width: 380px;
    margin-top: 1.25rem;
    color: #8594a3
}

.footer-nav,
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .6rem;
    font-size: .85rem
}

.footer-nav strong,
.footer-contact strong {
    color: #fff;
    margin-bottom: .5rem
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: var(--orange)
}

.footer-contact small {
    color: #70808e
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    justify-content: space-between;
    padding-block: 1.25rem;
    color: #6f7f8e;
    font-size: .74rem
}