:root {
    --bg: #ffffff;
    --text: #333;
    /* gradient */
    --gradient: linear-gradient(to right, #0094FF, #00B123);
    /* slate-900 */
    --muted: #33333380;
    /* slate-600 */
    --line: #dedede;
    /* slate-200 */
    --card: #ffffff;
    --blue: #0080DD;
    /* blue-600 */
    --blue-700: #005A9B;
    /* blue-700 */
    --emerald: #059669;
    /* emerald-600 */
    --emerald-100: #d1fae5;
    /* emerald-100 */
    --shadow: 0 10px 20px rgba(2, 6, 23, 0.06), 0 2px 6px rgba(2, 6, 23, 0.08);
    --radius: 16px;
}

html {
    box-sizing: border-box;
    scroll-padding-top: 89px;
    scroll-behavior: smooth;
    /* or match your header height */
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    margin: 0;
    font: 16px/1.5 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
    color: var(--text);
    background: var(--bg);
}

.new-container {
    width: 100%;
    max-width: 1180px;
    margin-inline: auto;
}

.new-container.child {
    padding: 0px 40px;
    margin-inline: auto;
}

h2 {
    font-size: clamp(20px, 4vw, 32px);
    margin-top: 12px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.subheading {
    color: #333
}

.subtext {
    color: var(--muted);
    font-weight: 600;
    margin: 0;
}

.global-div {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin-top: 40px;
}

@media screen and (max-width: 920px) {
    .global-div {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 28px;
        gap: .5rem;
    }

    .global-div.left {
        justify-content: left;
    }
}

.global-div.styled {
    background-color: #3333330D;
    border: 2px solid #DDDDDD;
    border-radius: 32px;
    margin-top: 2rem;
    padding: 40px;
}

.vertical-line {
    border-left: 2px solid #33333333;
    /* Adjust width, style, and color */
    height: 40px;
    /* Adjust height as needed */
    margin: 0 auto;
    /* Optional: center the line horizontally */
}

.gradient-text {
    font-size: clamp(16px, 4vw, 24px);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

p {
    color: var(--text);
}

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

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

[data-animate] {
    opacity: 1;
    transform: none;
}

.js [data-animate] {
    opacity: 0;
    transform: translateY(-24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: var(--delay, 0s);
    will-change: opacity, transform;
}

.js [data-animate].is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .js [data-animate] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

.container {
    width: min(1100px, 92%);
    margin-inline: auto;
}

.btn {
    display: inline-flex;
    font-size: 16px;
    gap: .5rem;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: .2s ease;
}

.btn.cta {
    background: var(--blue);
    color: white;
    font-size: 20px;
}

.btn.cta:hover {
    background: var(--blue-700);
}

.btn.primary {
    background: var(--blue);
    color: white;
    padding: 1rem 2rem;
    font-size: 16px;
}

.btn.primary:hover {
    background: var(--blue-700);
}

.btn.primary.nav {
    align-self: center;
    flex-shrink: 0;
    flex-grow: 0;
    padding: .6rem 1.6rem;
}

.btn.ghost {
    border-color: var(--line);
    font-size: 20px;
    background: white;
    color: var(--text);
}

.btn.ghost:hover {
    background: #f7f7f7;
}

.btn.ghost.nav {
    align-self: center;
    flex-shrink: 0;
    flex-grow: 0;
    padding: .6rem 1.6rem;
}

.checkmark {
    width: 24px;
    height: 24px;
}

.chip {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    gap: 0.5rem;
    font-weight: 600;
}

.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem 2rem;
    box-shadow: none;
}

.grid {
    display: grid;
    gap: 1rem;
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media screen and (max-width: 920px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media screen and (max-width: 920px) {
    .feature-list {
        grid-template-columns: 1fr;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--line);
}

nav {
    display: flex;
    align-items: center;
    justify-content: start;
    margin: auto;
    padding: 0rem 40px;
}

@media screen and (max-width: 920px) {
    nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: auto;
        padding: 1rem 28px;
    }
}

.brand {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 700;
    height: 36px;
}

.brand-badge {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: var(--blue);
    color: white;
    display: grid;
    place-items: center;
    font-weight: 800;
}

.nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    border: none;
    margin-left: 2rem;
}

.nav-links a {
    padding: 2rem 1rem;
    text-decoration: none;
    font-weight: 600;
    color: var(--text);
    transition: opacity .2s ease;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.nav-link {
    padding: 2rem 1rem;
    font-weight: 600;
    color: var(--text);
    background: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font: inherit;
    transition: opacity .2s ease;
}

.nav-link:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
}

.dropdown-menu {
    display: none;
    position: fixed;
    top: var(--header-height, 72px);
    left: 0;
    width: 100vw;
    background: white;
    border: 1px solid var(--line);
    border-radius: 0;
    box-shadow: var(--shadow);
    padding: 1.5rem max(1.5rem, min(4vw, 3.5rem));
    z-index: 200;
    box-sizing: border-box;
}

.dropdown-menu a {
    display: block;
    padding: .75rem 1rem;
    color: var(--text);
    text-decoration: none;
    transition: opacity .2s ease;
}

.nav-links a:hover,
.nav-link:hover,
.dropdown-menu a:hover,
.has-dropdown.open .nav-link,
.has-dropdown:hover .nav-link,
.has-dropdown:focus-within .nav-link {
    opacity: .5;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
    display: block;
}

.menu-btn {
    display: none;
}

.nav-actions {
    display: flex;
    flex: 1;
    justify-content: flex-end;
}

@media screen and (max-width:920px) {

    .btn.cta {
        font-size: 16px;
        padding: .75rem 1.5rem;
    }

    .btn.ghost {
        font-size: 16px;
        padding: .75rem 1.5rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        flex-direction: column;
        background: white;
        top: 73px;
        margin-left: 0;
        left: 0;
        width: 100%;
        border-top: 1px solid var(--line);
    }

    .nav-links a {
        padding: 1.25rem;
        border-bottom: 1px solid var(--line);
        text-decoration: none;
        color: var(--text);
        transition: opacity .2s ease;
    }

    .nav-item {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }

    .nav-link {
        width: 100%;
        justify-content: space-between;
        padding: 1.25rem;
        border-bottom: 1px solid var(--line);
        text-align: left;
    }

    .dropdown-menu {
        border: none;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        display: none;
        width: 100%;
        left: auto;
        top: auto;
    }

    .has-dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 1rem 1.25rem;
        border-bottom: 1px solid var(--line);
        transition: opacity .2s ease;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-btn {
        display: flex;
        height: 40px;
        width: 40px;
        align-items: center;
        /* Centers vertically */
        justify-content: center;
        /* Centers horizontally */
        text-align: center;
        padding: 0;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
    }

    .nav-actions {
        display: none;
    }
}

/* Hero */
.hero {
    display: flex;
    gap: 5rem;
    padding: 60px 0 0;
}

.hero-cta {
    max-width: 600px;
    min-width: 420px;
}

@media screen and (max-width:920px) {
    .hero-cta {
        width: 80vw;
        min-width: 280px;
        text-align: center;
        margin: auto;
        min-width: none;
    }
}

.hero h1 {
    font-size: clamp(48px, 5vw, 60px);
    line-height: 1.1;
    margin: 0;
}

@media screen and (max-width:920px) {
    .hero h1 {
        font-size: clamp(32px, 8vw, 56px);
        text-align: center;
        margin: auto;
        min-width: none;
    }
}

.hero-p {
    font-size: clamp(16px, 2vw, 24px);
    color: var(--muted);
    margin-top: 0px;
}

.hero .actions {
    margin-top: 24px;
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}

@media screen and (max-width:920px) {
    .hero .actions {
        margin-top: 24px;
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem 1rem;
    /* row gap | column gap */
    align-items: start;
    margin-top: 40px;
    max-width: 420px;
}

@media screen and (max-width:920px) {
    .feature-list {
        display: none;
    }
}

.device-wrap {
    position: relative;
}

.device {
    aspect-ratio: 4/5;
    border-radius: 28px;
    background: linear-gradient(160deg, #f1f5f9, #fff);
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    box-shadow: var(--shadow);
}

.phone {
    width: min(330px, 86%);
    aspect-ratio: 9/19;
    border-radius: 26px;
    background: white;
    border: 1px solid #cbd5e1;
    display: grid;
    place-items: center;
}

.pax-device-large {
    height: auto;
    max-height: 600px;
    margin: auto;
}

@media screen and (max-width:920px) {
    .pax-device-large {
        height: auto;
        max-height: 420px;
    }
}

/* Partners */
.logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

@media screen and (max-width:920px) {
    .logo-wrapper {
        gap: 1rem;
    }
}

.logo {
    display: inline-flex;
    height: 32px;
    width: 80px;
    margin: 0;
    object-fit: contain;
    filter: grayscale(0%);
    /* optional */
    opacity: 1;
    transition: transform .2s ease, opacity .2s ease;
}

@media screen and (max-width:920px) {
    .logo {
        height: 28px;
        width: 80px;
    }
}

/* Sections */
section {
    padding: 60px 0;
}

section.strip {
    background: linear-gradient(90deg, var(--blue), var(--blue-700));
    color: white;
}

.section-title {
    font-size: clamp(22px, 3vw, 32px);
    margin: 0 0 0px;
}

.section-sub {
    color: var(--muted);
    max-width: 60ch;
}

/* Compliance box */
.compliance {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
    align-items: center;
}

.compliance .note {
    font-size: 12px;
    color: #64748b;
}

@media screen and (max-width: 920px) {
    .compliance {
        grid-template-columns: 1.1fr .9fr;
    }
}

/* Contact */
.text-link {
    color: var(--card);
    text-decoration: underline;
    font-weight: 600;
}

.text-link:hover {
    color: var(--blue-700);
}

form .row {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media screen and (max-width:920px) {
    form .row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #334155;
}

input,
textarea {
    width: 100%;
    margin-top: 6px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: .7rem .9rem;
    font: inherit;
    color: inherit;
}

textarea {
    resize: vertical;
}

/* Footer */
footer {
    border-top: 1px solid var(--line);
    padding: 28px 0;
    color: #64748b;
    font-size: 14px;
}

/* Mobile menu */
.mobile-panel {
    display: none;
    border-top: 1px solid var(--line);
    padding: 12px 0 16px;
}

.mobile-panel a {
    display: block;
    padding: 10px 0;
    font-weight: 600;
    color: #334155;
}
