:root {
    --bg: #071425;
    --surface: #10213b;
    --text: #fff;
    --muted: #9eb1c8;
    --primary: #14B8A6;
    --primary2: #2DD4BF;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, sans-serif;
    background: var(--bg);
    color: var(--text)
}

.page {

    width: 100%;

    max-width: 1500px;

    margin: 0 auto;

    padding: 0 40px;

}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 18px 40px 8px; */
    padding: 20px 28px;
    position: sticky;
    background-color: #071525;
    z-index: 9999;
    top: 0
}
.mobile-menu-toggle {

    display: none;

    width: 46px;
    height: 46px;

    padding: 0;

    background: transparent;
    border: none;

    cursor: pointer;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    z-index: 1001;

}

.mobile-menu-toggle span {

    display: block;

    width: 24px;
    height: 2px;

    margin: 3px 0;

    background: #ffffff;

    border-radius: 999px;

    transition: all .25s ease;

}

.logo {
    font-weight: 700
}
.homepage-logo {
    display: flex;
    align-items: center;
    gap: 12px
}
#homepage-logo-welcome {
    height: 52px;
    width: auto
}

.nav-links {
    display: flex;
    gap: 18px;
    align-items: center
}

.nav-links>a {

    position: relative;

    color: #6B7280;

    font-size: 1rem;

    font-weight: 400;

    text-decoration: none;

    transition: color .25s ease;

}

.nav-links>a:hover {

    color: var(--primary2);

}

.nav-links>a:not(.nav-cta)::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -6px;

    width: 100%;
    height: 2px;

    background: var(--bs-primary);

    transform: scaleX(0);

    transform-origin: right;

    transition: transform .25s ease;

}

.nav-links>a:hover::after {

    transform: scaleX(1);

    transform-origin: left;

}

.nav-cta {
    margin-left: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: .85rem 1.5rem;

    border-radius: 999px;

    background: #14B8A6;
    color: #fff !important;

    font-weight: 600;

    box-shadow: 0 10px 28px rgba(20, 184, 166, .28);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;

}

.nav-cta:hover {

    transform: translateY(-2px);

    background: #0F9F92;
    transition: 0.06;

    box-shadow: 0 16px 40px rgba(20, 184, 166, .36);

}

.hero {
    display: grid;
    grid-template-columns: 43% 57%;
    align-items: center;
    overflow: visible;
    min-height: calc(100vh - 120px);
    padding-top: 0;
    gap: 10px;
    position: relative;
}

.hero-left {
    align-self: start;
    padding-right: 1%;
    padding-top: 90px;
    position: relative;
    z-index: 5;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    font-size: 18px;
    border-radius: 999px;
    border: 1px solid rgba(20, 184, 166, .18);
    background: rgba(20, 184, 166, .06);
    color: #7DE4D4;
}
.hero-light {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    z-index: 1;
}

.hero-light.ambient {
    width: 900px;
    height: 900px;
    top: -180px;
    right: -220px;
    background:
        radial-gradient(circle,
            rgba(110, 160, 255, .08) 0%,
            rgba(110, 160, 255, .04) 35%,
            transparent 75%);

    filter: blur(120px);
}

.hero-light.spotlight {
    width: 620px;
    height: 620px;
    top: 140px;
    right: 140px;
    background:
        radial-gradient(circle,
            rgba(20, 184, 166, .16) 0%,
            rgba(20, 184, 166, .08) 35%,
            transparent 75%);
    filter: blur(90px);
}

.hero-light.floor {

    width: 760px;
    height: 220px;

    bottom: 20px;
    right: 80px;

    background:
        radial-gradient(ellipse,
            rgba(20, 184, 166, .10),
            transparent 75%);

    filter: blur(70px);

}



.hero h1 {
    font-size: 76px;
    line-height: .96;
    letter-spacing: -3px;
    position: relative;
    color: #F7F9FC;
}

.hero h1 em {
    color: var(--primary);
    font-style: italic;
}

.hero h1 em::after {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    background:
        radial-gradient(circle,
            rgba(20, 184, 166, .10),
            transparent 70%);

    filter: blur(45px);

    z-index: -1;

}
.hero p {
    max-width: 500px;
    font-weight: 300;
    font-size: 19px;
    line-height: 1.7;
    margin-top: 28px;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 16px
}

/* .hero-trust {

    display: flex;

    gap: 26px;

    margin-top: 26px;

    align-items: center;

    flex-wrap: wrap;

}
 

.trust-item {

    display: flex;

    align-items: center;

    gap: 8px;

    color: #9FB2C8;

    font-size: 14px;

    font-weight: 500;

}

.trust-item svg {

    width: 16px;
    height: 16px;

    color: var(--primary);

    flex-shrink: 0;

}

.hero-trust span {

    display: flex;

    align-items: center;

    gap: 8px;

} */

.hero-highlights {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 0;

    margin-top: 32px;

    padding: 14px 22px;

    width: fit-content;

    background: rgba(255, 255, 255, 0.035);

    border: 1px solid rgba(255, 255, 255, 0.06);

    border-radius: 18px;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow:
        inset 0 1px rgba(255, 255, 255, .05),
        0 18px 40px rgba(0, 0, 0, .18);

}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
    color: #C7D4E5;
    font-size: 15px;
    font-weight: 300;
    white-space: nowrap;
}

.highlight-item+.highlight-item {

    border-left: 1px solid rgba(255, 255, 255, .02);

}

.highlight-item svg {

    width: 18px;
    height: 18px;

    color: var(--primary);

    flex-shrink: 0;

}

.invoice-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    border-radius: 26px;

    background:

        linear-gradient(130deg,

            rgba(255, 255, 255, .14) 0%,

            rgba(255, 255, 255, .05) 10%,

            transparent 24%);

    pointer-events: none;

    z-index: 2;

}

.invoice-hero::after {

    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    background: #2DD4BF;

    filter: blur(90px);

    opacity: .25;

    right: 20px;
    bottom: 40px;

    z-index: -2;

}

.invoice-hero {
    position: relative;
    overflow: hidden;
    width: 950px;
    margin-top: 18px;
    margin-left: -20px;
    /* margin-right: -30px;*/
    transform: rotate(4deg);
    transform-origin: center;
    z-index: 10;
}
.invoice-hero.pulse {
    transform:
        rotate(-5deg) translateY(-5px) scale(1.015);
}

.invoice-hero-image {
    display: block;
    width: 100%;
    border-radius: 16px;
    box-shadow:
        0 32px 60px rgba(0, 0, 0, .35),
        0 12px 24px rgba(0, 0, 0, .20),    
        0 1px 0 rgba(255, 255, 255, .12);
}
.hero-right {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 10;
}


.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 58px;
    padding: 0 30px;
    border-radius: 18px;
    background: var(--primary);
    color: #071425;
    font-weight: 600;
    font-size: 17px;
    text-decoration: none;
    transition: .28s cubic-bezier(.22, 1, .36, 1);
    box-shadow:
        0 12px 28px rgba(20, 184, 166, .22),
        inset 0 1px rgba(255, 255, 255, .28);
}

.btn-primary:hover {

    transform: translateY(-2px);

    background: #28d7c2;

    box-shadow:
        0 20px 42px rgba(20, 184, 166, .30),
        inset 0 1px rgba(255, 255, 255, .35);

}

.btn-secondary {

    height: 58px;

    padding: 18px 28px;

    border-radius: 18px;

    background: rgba(255, 255, 255, .03);

    border: 1px solid rgba(255, 255, 255, .08);

    color: white;

    transition: .28s;
}

.btn-secondary:hover {

    background: rgba(255, 255, 255, .07);

    border-color: rgba(255, 255, 255, .14);

}

.btn-primary,
.btn-secondary {

    text-decoration: none;

}

/* ==========================================================
   Audience
========================================================== */
.audience{
    margin-top: 160px;
    margin-bottom: 160px;
}
.audience-marquee {
    font-family: "DM Serif Display", serif;
    margin: 64px auto 0;
    display: flex;
    flex-direction: column;
    gap: 30px;

}
.audience h2 {
    font-family: "DM Serif Display", serif;
    text-align: center;
    font-size: 54px;
    line-height: 1.1;
    margin-bottom: 18px;
}

.audience p {
    font-family: "Inter", serif;
    font-weight: 300;
    text-align: center;
    font-size: 20px;
    color: var(--muted);
    max-width: 850px;
    margin: 0 auto 80px;
}

.audience-line {

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

    gap: 26px;

    opacity: 0;
    transform: translateY(24px);

    transition:
        opacity 1.3s cubic-bezier(.16, 1, .3, 1),
        transform 1.3s cubic-bezier(.16, 1, .3, 1);

}

.audience-line:last-child {

    transition-delay: .45s;

}

.audience-line.visible {

    opacity: 1;
    transform: none;

}

.audience-line span {

    font-size: 35px;
    font-weight: 350;
    /* or 400 if the font doesn't support it
    letter-spacing: -0.04em;*/
    line-height: 1.15;

}

.audience-line .dot {

    width: 4px;
    height: 4px;

    background: rgba(45, 212, 191, .5);

}

/* --------------------------------------------------
   Workflow
-------------------------------------------------- */

.workflow .section-header h2{
    font-family: "DM Serif Display", serif;
    text-align: center;
    font-size: 54px;
    line-height: 1.1;
    margin-bottom: 18px;
}

.workflow .section-header P{
    font-family: "Inter", serif;
    font-weight: 300;
    text-align: center;
    font-size: 20px;
    color: var(--muted);
    max-width: 850px;
    margin: 0 auto 80px;
}

.workflow {
    margin: 180px 0;
}

.workflow-layout {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 80px;
    align-items: start;
    margin-top: 90px;
}
.workflow-mobile-trigger {
    display: none;
}

/*--------------------------------------------------------------
# Left
--------------------------------------------------------------*/
.workflow-content {
    position: relative;
}

.workflow-step {
    min-height: 70vh;
    max-width: 360px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    transition: opacity .35s ease;
    transform: translateY(18px);
    
    transition:
        opacity .35s ease,
        transform .35s ease;
}

.workflow-step.active {
    opacity: 1;
    transform: none;
}

.workflow-step:not(.active) {
    opacity: .35;
}

.workflow-number {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .14em;
    color: var(--primary);
    margin-bottom: 18px;
}

.workflow-step h3 {
    font-family: "DM Serif Display", serif;
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.workflow-step p {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 300;
    color: #64748b;
}

.workflow-step p strong{
    color: #fff;
}

/*--------------------------------------------------------------
# Right
--------------------------------------------------------------*/

.workflow-preview {
    position: sticky;
    top: 120px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.workflow-image-stack {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.workflow-lightbox-trigger:hover .workflow-image-stack {
    transform: translateY(-2px);
}

.workflow-image::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .18),
            transparent 18%);
    pointer-events: none;
}

.workflow-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transform: scale(.992);
    filter: blur(1px);
    transition:
        opacity .9s ease,
        transform .9s cubic-bezier(.22, 1, .36, 1),
        filter .9s ease;
    border-radius: 22px;
    outline: 1px solid rgba(255, 255, 255, .06);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, .28),
        0 18px 36px rgba(0, 0, 0, .18);
}


.workflow-image.active {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    opacity: 1;
    transform: scale(1);
    filter: none;
    z-index: 1;
}

.workflow-image-stack::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10%;
    transform: translateX(-50%);
    width: 80%;
    height: 55%;
    border-radius: 50%;
    background:
        radial-gradient(ellipse,
            rgba(20, 184, 166, .32) 0%,
            rgba(20, 184, 166, .18) 35%,
            rgba(20, 184, 166, .08) 60%,
            transparent 78%);
    filter: blur(90px);
    opacity: 1;
    transition:
        opacity .9s ease;
    pointer-events: none;
    z-index: -1;
}

.workflow-image-stack.glow::after {
    opacity: 1;
}

.workflow-image-stack {
    position: relative;
    width: 100%;
    /* aspect-ratio: 16 / 10; */
    overflow: visible;
    border-radius: 22px;
}

/*--------------------------------------------------------------
# Progress Indicator
--------------------------------------------------------------*/

.workflow-progress {
    position: relative;
    width: 42px;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    z-index: 20;
}

.workflow-progress span {
    position: relative;
    z-index: 2;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bs-dark);
    color: rgba(255, 255, 255, .35);

    transition:
        color .35s ease,
        transform .35s ease,
        background .35s ease;
}

.workflow-progress span.completed {
    color: #58E6D5;
}

.workflow-progress span.active {
    transform: scale(1.08);
    text-shadow:
        0 0 10px rgba(20, 184, 166, .35);
    color: #fff;
    z-index: 33330;
    font-weight: 600;
}

.workflow-progress-track {
    position: absolute;
    left: 50%;
    top: 20px;
    bottom: 20px;
    width: 2px;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, .08);
}

.workflow-progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background: var(--bs-primary);
    transition: height .6s cubic-bezier(.22, 1, .36, 1);
}

.workflow-lightbox-trigger {
    flex: 1;
    padding: 0;
    margin: 0;
    border: 0;
    background: none;
    cursor: zoom-in;
}

.workflow-lightbox {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(5, 10, 18, .88);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity .25s ease,
        visibility .25s ease;
    z-index: 9999;
}

.workflow-lightbox.open {
    opacity: 1;
    visibility: visible;
}

.workflow-lightbox img {
    max-width: 92vw;
    max-height: 90vh;
    border-radius: 18px;
    box-shadow:
        0 50px 120px rgba(0, 0, 0, .45);
}

.workflow-lightbox-close {

    position: absolute;

    top: 32px;
    right: 36px;

    width: 46px;
    height: 46px;

    border: none;

    border-radius: 999px;

    background: rgba(255, 255, 255, .08);

    color: #fff;

    font-size: 28px;

    cursor: pointer;

}



/* Generic Pages */
.legal-page {

    font-size: 18px;
    line-height: 1.85;
    color: #d1d5db;

}

.updated {

    font-size: .95rem;
    color: #9ca3af;

    margin-bottom: 36px;

}

.intro {

    font-size: 1.35rem;
    line-height: 1.75;

    color: #f3f4f6;

    margin-bottom: 72px;

    max-width: 42rem;

}

.legal-page h2 {

    margin-top: 80px;
    margin-bottom: 28px;

    font-size: 2rem;
    font-weight: 650;

    letter-spacing: -.02em;

}

.legal-page h3 {

    margin-top: 42px;
    margin-bottom: 16px;

    font-size: 1.25rem;
    font-weight: 600;

}

.legal-page p {

    margin-bottom: 1.4rem;

    color: #cbd5e1;

}

.legal-page ul {

    margin: 18px 0 28px;
    padding-left: 1.3rem;

}

.legal-page li {

    margin-bottom: .75rem;

}

.legal-page {

    width: min(760px, calc(100% - 48px));

    margin: 72px auto 140px;

}

.legal-page article {

    margin-top: 84px;

}


.footer {

    margin-top: 160px;

    padding: 0 20px 48px;

    position: relative;

}

.footer-divider {

    width: 100%;
    height: 1px;

    margin-bottom: 90px;

    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .08),
            transparent);

}

.footer-inner {

    max-width: 1200px;

    margin: auto;

}

.footer-closing {

    position: relative;

    text-align: center;

    margin-bottom: 84px;
}

.footer-closing::after {

    content: "";

    position: absolute;

    left: 50%;
    bottom: -60px;

    transform: translateX(-50%);

    width: 520px;
    height: 180px;

    pointer-events: none;

    background:

        radial-gradient(ellipse at center,
            rgba(20, 184, 166, .08),
            rgba(20, 184, 166, .035) 40%,
            transparent 72%);

    filter: blur(45px);

    z-index: -1;

}

.footer-closing-sub {

    max-width: 620px;

    margin: 26px auto 0;

    color: var(--muted);

    font-size: 18px;

    line-height: 1.8;

    font-weight: 300;

}

.footer-mini-divider {

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 16px;

    margin-top: 40px;

}

.footer-mini-divider::before,
.footer-mini-divider::after {

    content: "";

    width: 70px;
    height: 1px;

    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .15));

}

.footer-mini-divider::after {

    background: linear-gradient(90deg,
            rgba(255, 255, 255, .15),
            transparent);

}

.footer-mini-divider span {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #6ea8ff;

    box-shadow: 0 0 12px rgba(110, 168, 255, .5);

}

.footer-closing-text {

    font-family: "DM Serif Display", serif;

    font-size: 46px;

    line-height: 1.15;

    color: rgba(255, 255, 255, .92);

    max-width: 760px;

    margin: auto;

}

.footer-main {

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 80px;

}

.footer-brand {

    max-width: 360px;

}

.footer-logo img {

    height: 52px;

    width: auto;

}

.footer-tagline {

    margin-top: 22px;

    color: var(--muted);

    font-size: 17px;
    font-weight: 300;
    line-height: 1.8;

}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-column a{
    font-weight: 300;
}

.footer-column h4 {

    margin: 0 0 12px;

    font-size: 14px;

    letter-spacing: .08em;

    text-transform: uppercase;

    color: rgba(255, 255, 255, .45);

}

.footer-column a {

    color: rgba(255, 255, 255, .78);

    text-decoration: none;

    transition: color .25s;

}

.footer-column a:hover {

    color: white;

}

.footer-bottom {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: 80px;

    padding-top: 28px;

    border-top: 1px solid rgba(255, 255, 255, .05);

    color: rgba(255, 255, 255, .45);

    font-size: 14px;

}

.footer-made {

    display: flex;

    align-items: center;

    gap: 10px;

}

.footer-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #6ea8ff;

    box-shadow:

        0 0 10px rgba(110, 168, 255, .55);

}

/* GSPR Popup */
.cookie-banner {
    position: fixed;
    padding:10px 20px;
    border-radius: 5px;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 999;

    background: #fff;

    border-top: 1px solid #E5E7EB;

    transform: translateY(100%);
    opacity: 0;

    transition:
        transform .35s ease,
        opacity .25s ease;

}

.cookie-banner.show {

    transform: translateY(0);
    opacity: 1;

}

.cookie-banner.hide {

    transform: translateY(100%);
    opacity: 0;

}

.cookie-banner__inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 2rem;

    min-height: 56px;

}

.cookie-banner__text {

    font-size: .9rem;

    color: #64748B;

}

.cookie-banner__text strong {

    font-weight: 600;

    color: #334155;

}

.cookie-banner__text p {

    margin: 0;

}

.cookie-banner__text a {

    color: inherit;

    text-decoration: underline;

}

.cookie-banner__actions {

    display: flex;

    gap: .5rem;

    flex-shrink: 0;

}

.cookie-banner .btn-primary {
    display: inline-flex;
    /* align-items: center; */
    justify-content: center;
    gap: 10px;
    border: 0;
    cursor: pointer;
    height: 35px;
    padding: 0 30px;
    border-radius: 18px;
    background: var(--primary);
    color: #071425;
    font-weight: 400;
    font-size: 17px;
    text-decoration: none;
    transition: .28s cubic-bezier(.22, 1, .36, 1);
    box-shadow: 0 12px 28px rgba(20, 184, 166, .22), inset 0 1px rgba(255, 255, 255, .28);
}
.cookie-banner .btn-outline-secondary {
    height: 35px;
    padding: 0 28px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid #000;
    cursor: pointer;
    transition: .28s;
}

@media(max-width:768px) {

    .cookie-banner__inner {

        flex-direction: column;

        align-items: flex-start;

    }

    .cookie-banner__actions {

        width: 100%;

    }

    .cookie-banner__actions .btn {

        flex: 1;

    }

}


/* RESPONSIVE */
@media (max-width: 900px) {

    .page {

        padding: 0 24px;

    }
    .hero {

        display: flex;

        flex-direction: column;

    }

    /* ==========================================================
    Audience
    ========================================================== */

    .audience {
        margin: 100px 0;
    }

    .audience h2 {
        font-size: 40px;
        line-height: 1.15;
        margin-bottom: 16px;
    }

    .audience p {
        font-size: 20px;
        line-height: 1.6;
        max-width: 32ch;
        margin: 0 auto 50px;
    }

    .audience-marquee {
        margin-top: 55px;
        gap: 22px;
    }

    .audience-line {

        gap: 14px;

        justify-content: center;

    }

    .audience-line span {

        font-size: 20px;
        line-height: 1.2;
    }

    .audience-line .dot {

        width: 3px;
        height: 3px;

    }

    /* Workflow */
    
    .workflow {
        margin: 100px 0;
    }
    .workflow .section-header h2 {
        font-size: 40px;
        line-height: 1.15;

    }
    .workflow-mobile-trigger {
        display: block;
    }
    .workflow-mobile-image {
        display: block;
        width: 100%;
        border-radius: 16px;
        box-shadow:
            0 18px 40px rgba(0, 0, 0, .22),
            0 6px 18px rgba(0, 0, 0, .12);
        outline: 1px solid rgba(255, 255, 255, .05);
        cursor: zoom-in;
    }
    .workflow-mobile-image:active {

        transform: scale(.985);

    }
    .workflow-number{
        margin-bottom: 0px;
    }
    .workflow-step h3 {
        font-size: 32px;
        margin-bottom: 0px;
    }
    .workflow-layout {
        display: block;
    }

    .workflow-preview {
        display: none;
    }

    .workflow-content {
        display: flex;
        flex-direction: column;
        gap: 70px;
    }

    .workflow-step {
        min-height: auto;
        max-width: none;
        opacity: 1 !important;
        transform: none !important;
    }

    .footer{
        margin-top: 0px;
        padding-bottom: 36px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .footer-divider {

        margin-bottom: 60px;

    }

    .footer-main {

        flex-direction: column;

        gap: 56px;

        text-align: center;

    }

    .footer-closing {

        margin-bottom: 60px;

    }
    .footer-closing::after {
        display: none;
    }

    .footer-closing-text {

        font-size: 34px;

        line-height: 1.2;

    }

    .footer-closing-sub {

        font-size: 17px;

        line-height: 1.8;

        max-width: 32ch;

    }

    .footer-brand {

        max-width: none;

        margin: auto;

    }

    .footer-logo {

        display: inline-block;

    }

    .footer-tagline {

        margin-top: 18px;

        max-width: 320px;

        margin-inline: auto;

    }

    .footer-links {

        width: 100%;

        flex-direction: column;

        gap: 36px;

    }

    .footer-column {

        gap: 10px;

    }

    .footer-bottom {

        flex-direction: column;

        gap: 16px;

        text-align: center;

        margin-top: 60px;

    }

}
@media (max-width:640px){
    .hero {
        display: flex;
        flex-direction: column;
    }
    .hero-left {
        padding-top: 25px;
    }
    .page {

        padding: 0 20px;

    }
    .mobile-menu-toggle {
        display: flex;
    }
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .nav-links {

        position: absolute;

        top: 82px;
        left: 5%;
        width: 90%;

        display: flex;
        flex-direction: column;
        gap: 18px;

        padding: 24px;

        background: rgba(8, 20, 38, 0.82);

        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);

        border: 1px solid rgba(255, 255, 255, .06);
        border-radius: 22px;

        box-shadow:
            0 30px 80px rgba(0, 0, 0, .35);

        opacity: 0;
        visibility: hidden;

        transform:
            translateY(-12px) scale(.98);

        transition:
            opacity .28s ease,
            transform .28s cubic-bezier(.22, 1, .36, 1),
            visibility .28s;

        pointer-events: none;

        z-index: 1000;

    }

    .nav-links.open {
        top: 100px;
        opacity: 0.98;

        visibility: visible;

        transform:
            translateY(0) scale(1);

        pointer-events: auto;

    }

    .nav-links a {

        padding: 10px 4px;

        font-size: 18px;
    }

    .nav-links .nav-cta {

        margin-top: 8px;

        text-align: center;

        width: 100%;

    }

    .invoice-hero {

        width: 100%;

        max-width: 620px;

        margin: auto;

        transform: none;

    }
    .invoice-frame{
        overflow: hidden;
        border-radius: 16px;
    }

    .hero h1 {
        font-size: 51px;
        line-height: 1.1;
    }

    .hero-eyebrow {
        display: inline-flex;
        align-items: center;
        width: auto;
        max-width: 100%;
        padding: 10px 18px;
        font-size: 12px;
        line-height: 1;
        border-radius: 999px;
        white-space: nowrap;
    }
    .hero p {
        font-size: 18px;
        line-height: 1.65;
        max-width: 34ch;
        margin: 24px 0 34px;
    }

    .hero-highlights {

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 12px;

        width: 100%;

        padding: 16px 18px;

        margin-top: 26px;
        margin-bottom: 14px;

    }
    .hero-highlight {

        width: 100%;

        justify-content: flex-start;

        padding: 2px 0;

        font-size: 16px;

    }
    .hero-highlight svg {

        width: 18px;
        height: 18px;

        flex-shrink: 0;

    }
}

/*Color scroll bars*/
/* Target element (e.g., the entire page) */
html {
    /* 1. Modern Standard (Chrome, Firefox, Safari, Edge) */
    scrollbar-color: #101C2D #e0e0e0;
    /* format: thumb_color track_color */
    scrollbar-width: auto;
    /* options: auto | thin */
}

/* 2. Legacy WebKit Engine (Older Chrome, Safari, Edge versions) */
html::-webkit-scrollbar {
    width: 12px;
    /* Width of the vertical scrollbar */
    height: 12px;
    /* Height of the horizontal scrollbar */
}

html::-webkit-scrollbar-track {
    background: #e0e0e0;
    /* Color of the scrollbar track (background) */
}

html::-webkit-scrollbar-thumb {
    background-color: #101c2d;
    /* Color of the draggable scrollbar handle */
    border-radius: 6px;
    /* Optional: Rounds the corners of the handle */
    border: 3px solid #e0e0e0;
    /* Optional: Creates padding around the handle */
}