:root {
    --bg: #0b0f14;
    --text: #0e1520;
    --muted: rgba(14, 21, 32, .72);
    --card: rgba(255, 255, 255, .88);
    --card2: rgba(255, 255, 255, .74);
    --stroke: rgba(14, 21, 32, .12);
    --stroke2: rgba(255, 255, 255, .14);
    --primary: #F4B41A;
    --primary2: #F4B41A;
    --dark: #0e1623;
    --dark2: #121c2c;
    --shadow: 0 20px 60px rgba(0, 0, 0, .18);
    --shadow2: 0 10px 30px rgba(0, 0, 0, .14);
    --r: 18px;
    --r2: 22px;
    --max: 1120px;
    --pad: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    color: var(--text);
    background: #f7f6f2;
}

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

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

button,
input,
select {
    font: inherit;
}

/* Fix iOS Safari select dropdown styling */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.container {
    width: min(var(--max), calc(100% - 2*var(--pad)));
    margin: 0 auto;
}

.d-mobile {
    display: inherit;
}

.d-desktop {
    display: none;
}

/* Utilities */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.muted {
    color: var(--muted);
}

.muted--light {
    color: rgba(255, 255, 255, .74);
}

.dot {
    opacity: .5;
}

.divider {
    height: 1px;
    background: var(--stroke);
    margin: 16px 0;
}

.center {
    text-align: center;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, .66);
    font-weight: 600;
    font-size: 12px;
}

.pill--soft {
    background: rgba(213, 177, 90, .12);
    border-color: rgba(213, 177, 90, .25);
    color: rgba(14, 21, 32, .85);
}

.eyebrow {
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(14, 21, 32, .68);
    margin-bottom: 10px;
}

.eyebrow--light {
    color: rgba(255, 255, 255, .72);
}

.h2 {
    font-family: "Bebas Neue", serif;
    font-size: clamp(24px, 4vw, 40px);
    line-height: 1.1;
    margin: 0 0 10px;
    letter-spacing: 2px;
}

.h2--light {
    color: #fff;
}

.h3 {
    font-family: "Bebas Neue", serif;
    font-size: 25px;
    margin: 0 0 15px;
    letter-spacing: 2px;
}

.h3--light {
    color: #fff;
}

.sub {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(14, 21, 32, .76);
    line-height: 1.6;
}

.sub--light {
    color: rgba(255, 255, 255, .78);
    margin-bottom: 10px;
    text-align: left;
    margin-left: 0;
}

.pricing__text {
    margin-bottom: 20px;
}

/* Topbar */
.topbar {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(14, 21, 32, .08);
}

.topbar__inner {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.topbar__left,
.topbar__right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.topbar__link {
    font-weight: 700;
    font-size: 13px;
    opacity: .9;
}

.topbar__link:hover {
    opacity: 1;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    /* below topbar */
    z-index: 10000;
    background: rgba(247, 246, 242, 1);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(14, 21, 32, .08);
}

.header__inner {
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 5px;
}

.brand__logo {
    max-width: 30px;
}

.brand__mark {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #F4B41A;
    color: #111;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(200, 155, 47, .24);
}

.brand__name {
    display: block;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: 22px;
    letter-spacing: -1px;
}

.brand__tag {
    display: block;
    font-size: 12px;
    color: rgba(14, 21, 32, .7);
    margin-top: 2px;
}

/* Nav */
.nav {
    position: relative;
}

.nav__toggle {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(14, 21, 32, .12);
    background: rgba(255, 255, 255, .7);
    display: grid;
    place-items: center;
    cursor: pointer;
}

.burger {
    width: 18px;
    height: 2px;
    background: rgba(14, 21, 32, .9);
    position: relative;
    border-radius: 10px;
}

.burger::before,
.burger::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: rgba(14, 21, 32, .9);
    border-radius: 10px;
}

.burger::before {
    top: -6px;
}

.burger::after {
    top: 6px;
}

.nav__menu {
    position: absolute;
    right: 0;
    top: 54px;
    width: min(92vw, 360px);
    padding: 14px;
    border-radius: var(--r2);
    border: 1px solid rgba(14, 21, 32, .12);
    background: rgba(255, 255, 255, 1);
    box-shadow: var(--shadow);
    display: none;
}

.nav__menu.is-open {
    display: block;
    animation: pop .16s ease-out;
}

.nav__link {
    display: block;
    padding: 12px 12px;
    border-radius: 14px;
    font-weight: 600;
    color: rgba(14, 21, 32, .86);
}

.nav__link:hover {
    background: rgba(213, 177, 90, .12);
}

@keyframes pop {
    from {
        transform: translateY(-6px);
        opacity: .6;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 999px;
    border: 1px solid rgba(14, 21, 32, .14);
    background: rgba(255, 255, 255, .75);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
    user-select: none;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow2);
}

.btn:active {
    transform: translateY(0);
    box-shadow: none;
}

.btn--primary {
    border-color: rgba(200, 155, 47, .55);
    background: #F4B41A;
    color: #111;
}

.btn--ghost {
    background: rgba(255, 255, 255, .6);
}

.btn--lg {
    padding: 14px 16px;
}

.btn--full {
    width: 100%;
}

#walkaround .btn--primary {
    display: flex;
    max-width: 350px;
    align-items: center;
    margin: auto;
    margin-top: 15px;
}

/* Hero */
.hero {
    position: relative;
    padding: 22px 0 20px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 400px at 15% 15%, rgba(213, 177, 90, .22), transparent 60%),
        radial-gradient(900px 400px at 85% 5%, rgba(14, 22, 35, .18), transparent 60%),
        url("https://images.unsplash.com/photo-1496307653780-42ee777d4833?auto=format&fit=crop&w=2200&q=80") center/cover no-repeat;
    filter: saturate(1.05) contrast(1.02);
}

.hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(247, 246, 242, .86) 0%, rgba(247, 246, 242, .92) 26%, #f7f6f2 62%, #f7f6f2 100%);
}

.hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(14, 21, 32, .12);
    background: rgba(255, 255, 255, .62);
    width: fit-content;
    font-size: 12px;
}

.kicker__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--primary);
    box-shadow: 0 0 0 4px rgba(213, 177, 90, .18);
}

.hero__title {
    font-family: "Bebas Neue", serif;
    /* font-family: "Poppins", sans-serif; */
    font-size: clamp(34px, 7vw, 56px);
    line-height: 1.02;
    letter-spacing: 2px;
    margin: 14px 0 10px;
}

.accent {
    background: linear-gradient(135deg, rgba(14, 22, 35, .96), rgba(14, 22, 35, .76));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero__sub {
    max-width: 640px;
    color: rgba(14, 21, 32, .82);
    line-height: 1.65;
    margin: 0 0 14px;
}

.hero__cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 20px;

}

.hero__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 12px 0 4px;
}

.mini {
    border-radius: var(--r2);
    background: rgba(255, 255, 255, .74);
    border: 1px solid rgba(14, 21, 32, .10);
    padding: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.mini__top {
    font-size: 12px;
    color: rgba(14, 21, 32, .65);
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.mini__big {
    font-size: 18px;
    font-weight: 700;
    margin: 8px 0 4px;
}

.mini__bottom {
    font-size: 12px;
    color: rgba(14, 21, 32, .66);
}

.hero__trust {
    margin-top: 14px;
    display: grid;
    gap: 10px;
}

.trust__item {
    padding: 12px 14px;
    border-radius: var(--r2);
    border: 1px solid rgba(14, 21, 32, .10);
    background: rgba(255, 255, 255, .62);
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.trust__label {
    font-size: 12px;
    color: rgba(14, 21, 32, .64);
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.trust__value {
    font-size: 12px;
    color: rgba(14, 21, 32, .86);
    font-weight: 800;
}

/* Cards / Forms */
.card {
    border-radius: var(--r2);
    border: 1px solid rgba(14, 21, 32, .10);
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .10);
    padding: 16px;
}

.card--glass {
    background: linear-gradient(180deg, rgba(255, 255, 255, .80), rgba(255, 255, 255, .62));
    backdrop-filter: blur(10px);
}

.card--dark {
    border-color: rgba(255, 255, 255, .12);
    background: linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .06));
}

.card__header {
    margin-bottom: 10px;
}

.card__title {
    font-family: "Bebas Neue", serif;
    font-size: 20px;
    margin: 0 0 6px;
    letter-spacing: 2px;
}

.card__subtitle {
    margin: 0;
    color: rgba(14, 21, 32, .74);
    line-height: 1.5;
}

.form {
    display: grid;
    gap: 12px;
}

.form--dark .field span {
    color: rgba(255, 255, 255, .75);
}

.field {
    display: grid;
    gap: 8px;
}

.field span {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(14, 21, 32, .66);
}

.field input,
.field select {
    width: 100%;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(14, 21, 32, .12);
    background: rgba(255, 255, 255, .8);
    outline: none;
    transition: border .12s ease, box-shadow .12s ease;
}

.field select {
    /* Fix iOS Safari select styling */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* Custom arrow for select */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230e1520' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    padding-right: 36px;
}

.form--dark .field input,
.form--dark .field select {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .18);
    color: #fff;
}

.form--dark .field select {
    /* Fix iOS Safari select styling for dark theme */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* Custom arrow for dark theme select */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    padding-right: 36px;
}

.field input:focus,
.field select:focus {
    border-color: rgba(200, 155, 47, .65);
    box-shadow: 0 0 0 4px rgba(213, 177, 90, .18);
}

.field__error {
    min-height: 14px;
    color: #b42318;
    font-weight: 700;
    font-size: 12px;
}

.form--dark .field__error {
    color: #ffd1cc;
}

.row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.fineprint {
    margin: 0;
    color: rgba(14, 21, 32, .66);
    font-size: 12px;
    line-height: 1.5;
}

.fineprint--light {
    color: rgba(255, 255, 255, .72);
}

/* Sections */
.section {
    padding: 44px 0;
}

.section--alt {
    background: radial-gradient(1000px 400px at 20% 20%, rgba(213, 177, 90, .18), transparent 60%),
    linear-gradient(180deg, var(--dark), var(--dark2));
}

.nc-section__kicker {
    color: rgba(255, 255, 255, 0.70);
}
.section--alt .h2 {
    color: #ffffff;
}

.nc-section__sub {
    color: rgba(255, 255, 255, 0.72);
}

.section__head {
    margin-bottom: 18px;
}

.section__head.center {
    margin-bottom: 22px;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 0px 0 22px;
}

.stat {
    border-radius: var(--r2);
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(14, 21, 32, .10);
    padding: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.stat__icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(213, 177, 90, .16);
    border: 1px solid rgba(213, 177, 90, .25);
    margin-bottom: 10px;
    font-weight: 900;
}

.stat__value {
    font-weight: 900;
    font-size: 16px;
}

.stat__label {
    color: rgba(14, 21, 32, .66);
    font-size: 12px;
    margin-top: 6px;
}

.split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
}

.split--reverse .split__text {
    order: 2;
}

.split--reverse .split__media {
    order: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.split--reverse .split__media img {
    max-width: 450px;
    border-radius: 20px;
    width: 100%;
}

.imageCard {
    border-radius: var(--r2);
    overflow: hidden;
    border: 1px solid rgba(14, 21, 32, .12);
    background: rgba(255, 255, 255, .74);
    box-shadow: var(--shadow2);
    margin: 0px;
}

.imageCard img {
    height: 340px;
    object-fit: cover;
    width: 100%;
}

.imageCard figcaption {
    padding: 12px 14px;
    color: rgba(14, 21, 32, .72);
    font-size: 13px;
    text-align: center;
}

/* Checklist */
.checklist {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.checklist li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(14, 21, 32, .82);
    line-height: 1.45;
    max-width: 240px;
    width: 100%;
}

.check {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(213, 177, 90, .18);
    border: 1px solid rgba(213, 177, 90, .28);
    font-weight: 900;
}

.checklist--light li {
    color: rgba(255, 255, 255, .82);
}

.check--light {
    background: rgba(213, 177, 90, .22);
    border-color: rgba(213, 177, 90, .32);
}

/* Location */
.location {
    display: flex;
    gap: 30px;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.location__map {
    max-width: 510px;
    border-radius: 22px;
    overflow: hidden;
}

.location__panel{
    max-width: 480px;
}

.map {
    width: 100%;
    height: 320px;
    border-radius: var(--r2);
    border: 1px solid rgba(14, 21, 32, .12);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .10);
}

.map__legend {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 10px 2px 0;
}

.legendItem {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 12px;
    color: rgba(14, 21, 32, .70);
}

.pin {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    display: inline-block;
}

.pin--primary {
    background: #7b00ff;
}

.pin--airport {
    background: #cd00f1;
}

.pin--road {
    background: #0026ff;
}

.pillGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.route {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

.route__row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 16px;
    border: 1px solid rgba(14, 21, 32, .10);
    background: rgba(255, 255, 255, .66);
    flex-wrap: wrap;
}

.route__label {
    color: rgba(14, 21, 32, .62);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-align: left;
}

.route__value {
    font-weight: 900;
    font-size: 14px;
    color: rgba(14, 21, 32, .86);
    text-align: left;
}

/* Grid tiles */
.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.tile {
    border-radius: var(--r2);
    overflow: hidden;
    border: 1px solid rgba(14, 21, 32, .12);
    background: rgba(255, 255, 255, .76);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .10);
}

.tile svg {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    padding: 10px;
    background: antiquewhite;
    margin-left: 10px;
    margin-top: 10px;
}

.tile__body {
    padding: 14px;
}

.tile__body h3 {
    margin: 0 0 6px;
    font-size: 16px;
}

.tile__body p {
    margin: 0;
    color: rgba(14, 21, 32, .72);
    line-height: 1.5;
}

/* Banner */
.banner {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    background:
        url("media/Yamuna-expressway-plots.png") center/cover no-repeat;
}

.banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(14, 22, 35, .86), rgba(14, 22, 35, .56), rgba(14, 22, 35, .86));
}

.banner__inner {
    position: relative;
}

.banner__content {
    max-width: 620px;
    padding: 40px 0;
}

/* Tabs */
.tabs {
    margin-top: 14px;
}

.tabs__list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 14px;
}

.tab {
    border-radius: 999px;
    border: 1px solid rgba(14, 21, 32, .14);
    padding: 10px 14px;
    background: rgba(255, 255, 255, .70);
    font-weight: 900;
    cursor: pointer;
}

.tab.is-active {
    background: rgba(213, 177, 90, .22);
    border-color: rgba(213, 177, 90, .38);
}

.pane {
    display: none;
}

.pane.is-active {
    display: block;
}

.plan {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    border-radius: var(--r2);
    border: 1px solid rgba(14, 21, 32, .12);
    background: rgba(255, 255, 255, .78);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .10);
}

.plan__img img {
    height: 280px;
    object-fit: cover;
    width: 100%;
}

.plan__info {
    padding: 16px;
}

.kv {
    margin-top: 10px;
    display: grid;
    gap: 10px;
}

.kv__row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 16px;
    border: 1px solid rgba(14, 21, 32, .10);
    background: rgba(255, 255, 255, .66);
}

.kv__row span {
    color: rgba(14, 21, 32, .66);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.inline-cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

/* Newsletter */
.newsletter {
    border-radius: var(--r2);
    border: 1px solid rgba(14, 21, 32, .10);
    background: rgba(255, 255, 255, .72);
    box-shadow: var(--shadow2);
    padding: 16px;
    display: grid;
    gap: 14px;
}

.newsletter__form {
    display: grid;
    gap: 10px;
}

.newsletter__form input {
    width: 100%;
    padding: 12px 12px;
    border-radius: 16px;
    border: 1px solid rgba(14, 21, 32, .12);
    background: rgba(255, 255, 255, .86);
}

/* Steps */
.steps {
    margin-top: 14px;
    display: grid;
    gap: 12px;
}

.step {
    display: flex;
    gap: 12px;
    padding: 14px;
    border-radius: var(--r2);
    border: 1px solid rgba(14, 21, 32, .10);
    background: rgba(255, 255, 255, .72);
}

.step__num {
    min-width: 42px;
    height: 42px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-weight: 900;
    background: rgba(213, 177, 90, .20);
    border: 1px solid rgba(213, 177, 90, .30);
}

.step__body h3 {
    margin: 0 0 4px;
    font-size: 16px;
}

.step__body p {
    margin: 0;
    color: rgba(14, 21, 32, .72);
    line-height: 1.5;
}

/* Cards section */
.cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.link {
    display: inline-flex;
    margin-top: 10px;
    font-weight: 900;
    color: rgba(14, 21, 32, .90);
    border-bottom: 1px solid rgba(14, 21, 32, .22);
    width: fit-content;
}

.link:hover {
    border-bottom-color: rgba(14, 21, 32, .55);
}

/* Carousel */
.carousel {
    position: relative;
    margin-top: 16px;
}

.carousel__viewport {
    overflow: hidden;
    border-radius: var(--r2);
    border: 1px solid rgba(14, 21, 32, .12);
    box-shadow: var(--shadow2);
    background: rgba(255, 255, 255, .74);
}

.carousel__track {
    display: flex;
    transition: transform .35s ease;
    will-change: transform;
}

.carousel__track img {
    width: 100%;
    flex: 0 0 100%;
    height: 300px;
    object-fit: cover;
}

.carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(14, 21, 32, .14);
    background: rgba(255, 255, 255, .78);
    box-shadow: var(--shadow2);
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 24px;
    font-weight: 900;
}

.carousel__btn:hover {
    background: rgba(255, 255, 255, .92);
}

#prevSlide {
    left: 8px;
}

#nextSlide {
    right: 8px;
}

.carousel__dots {
    /*display: flex;*/
    gap: 8px;
    justify-content: center;
    margin-top: 10px;
    display: none;
}

.dotBtn {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 0;
    background: rgba(14, 21, 32, .22);
    cursor: pointer;
}

.dotBtn.is-active {
    background: #F4B41A;
}

/* Pricing dark section */
.section--dark {
    background: radial-gradient(1000px 400px at 20% 20%, rgba(213, 177, 90, .18), transparent 60%),
        linear-gradient(180deg, var(--dark), var(--dark2));
    color: #fff;
}

.pricing {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

/* Footer */
.footer {
    padding: 34px 0 18px;
    background: #0c1220;
    color: #fff;
}

.footer__inner {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
    align-items: start;
}

.brand--footer .brand__tag {
    color: rgba(255, 255, 255, .68);
}

.footer__links {
    display: grid;
    gap: 10px;
}

.footer__links a {
    color: rgba(255, 255, 255, .80);
    font-weight: 700;
}

.footer__links a:hover {
    color: #fff;
}

.footer__cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer__bottom {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    gap: 10px;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* WhatsApp floating */
.wa {
    position: fixed;
    right: 14px;
    bottom: 14px;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 999px;
    border: 1px solid rgba(14, 21, 32, .14);
    background: #04be50;
    box-shadow: var(--shadow2);
    color: white;
}

.wa__icon {
    font-size: 18px;
}

.wa__text {
    font-weight: 900;
}

/* Toast */
/* .toast {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 84px;
    z-index: 100;
    padding: 12px 14px;
    border-radius: 999px;
    border: 1px solid rgba(14, 21, 32, .14);
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--shadow2);
    display: none;
    font-weight: 900;
} */

.toast {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 84px;
    z-index: 100;
    padding: 12px 14px;
    border-radius: 999px;
    border: 1px solid rgba(14, 21, 32, .14);
    background: rgba(255, 255, 255, 1);
    box-shadow: var(--shadow2);
    display: none;
    font-weight: 500;
    max-width: 300px;
    width: 100%;
    color: #b42319;
}

.toast.is-show {
    display: block;
    animation: toastIn .18s ease-out;
}

@keyframes toastIn {
    from {
        transform: translateX(-50%) translateY(8px);
        opacity: .6;
    }

    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 100001;
    display: none;
}

.modal.is-open {
    display: block;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .62);
    backdrop-filter: blur(6px);
}

.modal__content {
    width: min(94vw, 920px);
    margin: 0;
    border-radius: var(--r2);
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(12, 18, 32, .96);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    display: grid;
    place-items: center;
}

.modal__frame {
    aspect-ratio: 16/9;
    width: 100%;
}

.modal__frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.nc-bank-partners{
    background: #f4f1eb;
    padding: 34px 0;
}

.nc-bank-partners__container{
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
}

.nc-bank-partners__header{
    text-align: center;
    max-width: 760px;
    margin: 0 auto 16px;
}

.nc-bank-partners__kicker{
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(17,24,39,0.70);
    margin-bottom: 10px;
}

.nc-bank-partners__title{
    margin: 0 0 8px;
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #0b0f17;
    font-weight: 900;
}

.nc-bank-partners__sub{
    margin: 0;
    color: rgba(17,24,39,0.72);
    font-size: 15px;
    line-height: 1.55;
}

.nc-bank-partners__subNote{
    color: rgba(17,24,39,0.60);
    font-weight: 600;
}

.nc-bank-partners__grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: stretch;
    margin-top: 16px;
}

.nc-bank-partners__panel{
    background: #ffffff;
    border: 1px solid rgba(16,24,40,0.10);
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(15,23,42,0.08);
    padding: 20px;
    display: grid;
    gap: 12px;
}

.nc-bank-partners__panelTitle{
    font-weight: 900;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    font-size: 11px;
    color: rgba(17,24,39,0.70);
}

.nc-bank-partners__logos{
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.nc-bank-partners__logo{
    background: rgba(16,24,40,0.02);
    border: 1px solid rgba(16,24,40,0.08);
    border-radius: 14px;
    padding: 10px;
    display: grid;
    place-items: center;
    min-height: 64px;
}

.nc-bank-partners__logo img{
    max-width: 100%;
    max-height: 38px;
    object-fit: contain;
    display: block;
}

.nc-bank-partners__disclaimer{
    font-size: 11.5px;
    line-height: 1.45;
    color: rgba(17,24,39,0.62);
}

.nc-bank-partners__usps{
    display: grid;
    gap: 10px;
}

.nc-bank-partners__usp{
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 10px;
    align-items: start;
    padding: 10px;
    border-radius: 14px;
    background: rgba(16,24,40,0.03);
    border: 1px solid rgba(16,24,40,0.06);
}

.nc-bank-partners__uspIcon{
    width: 28px;
    height: 28px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-weight: 900;
    color: #0b0f17;
    background: rgba(245,158,11,0.18);
    border: 1px solid rgba(245,158,11,0.35);
    line-height: 1;
}

.nc-bank-partners__uspTitle{
    font-weight: 900;
    font-size: 14px;
    color: #0b0f17;
    margin: 0 0 2px;
}

.nc-bank-partners__uspSub{
    font-size: 13px;
    line-height: 1.5;
    color: rgba(17,24,39,0.72);
}

.nc-bank-partners__ctaRow{
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2px;
}

.nc-bank-partners__btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 14px;
    border-radius: 999px;
    background: #f4b11a;
    color: #111827;
    font-weight: 900;
    text-decoration: none;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 10px 24px rgba(244,177,26,0.28);
    transition: transform .15s ease, box-shadow .15s ease;
}

.nc-bank-partners__btn:hover{
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(244,177,26,0.34);
}

.nc-bank-partners__note{
    font-size: 12.5px;
    color: rgba(17,24,39,0.68);
}

/* Parent scope only */
.nc-videos{
    background: radial-gradient(1000px 400px at 20% 20%, rgba(213, 177, 90, .18), transparent 60%),
    linear-gradient(180deg, var(--dark), var(--dark2));
    padding: 46px 0;
    color: #ffffff;
}

.nc-videos__container{
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
}

.nc-videos__header{
    text-align: center;
    max-width: 780px;
    margin: 0 auto 18px;
}

.nc-videos__kicker{
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.70);
    margin-bottom: 10px;
}

.nc-videos__title{
    margin: 0 0 8px;
    font-size: 34px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 900;
    color: #ffffff;
}

.nc-videos__sub{
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.72);
}

.nc-videos__grid{
    display: flex;
    /*grid-template-columns: repeat(3, minmax(0, 1fr));*/
    gap: 30px;
    margin-top: 18px;
    overflow: scroll;
}

.nc-videos__grid {
    overflow-y: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
}
.nc-videos__grid::-webkit-scrollbar { /* WebKit */
    width: 0;
    height: 0;
}

.nc-videos__card{
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
    min-width: 320px;
}

.nc-videos__frame{
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    background: rgba(255,255,255,0.08);
}

.nc-videos__iframe{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.nc-videos__meta{
    padding: 14px 14px 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.nc-videos__cardTitle{
    margin: 0 0 6px;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: -0.01em;
    color: #ffffff;
}

.nc-videos__cardText{
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255,255,255,0.72);
}

.nc-videos__ctaRow{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.nc-videos__btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 16px;
    border-radius: 999px;
    background: #f4b11a;
    color: #111827;
    font-weight: 900;
    text-decoration: none;
    border: 1px solid rgba(0,0,0,0.10);
    box-shadow: 0 10px 24px rgba(244,177,26,0.26);
    transition: transform .15s ease, box-shadow .15s ease;
}

.nc-videos__btn:hover{
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(244,177,26,0.34);
}

.nc-videos__note{
    font-size: 12.5px;
    color: rgba(255,255,255,0.66);
}

@media (max-width: 860px){
    /*.nc-videos__grid{ grid-template-columns: 1fr; }*/
    .nc-videos__title{ font-size: 28px; }
}

@media (max-width: 980px){
    .nc-bank-partners__grid{ grid-template-columns: 1fr; }
}

@media (max-width: 560px){
    .nc-bank-partners__title{ font-size: 24px; }
    .nc-bank-partners__logos{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Desktop enhancements */
@media (min-width: 860px) {
    .d-desktop {
        display: inherit;
    }

    .d-mobile {
        display: none;
    }

    :root {
        --pad: 22px;
    }

    .hero {
        padding: 44px 0 28px;
    }

    .hero__inner {
        grid-template-columns: 1.15fr .85fr;
        align-items: start;
        gap: 18px;
    }

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

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

    .nav__toggle {
        display: none;
    }

    .nav__menu {
        position: static;
        width: auto;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
        display: flex !important;
        align-items: center;
        gap: 6px;
    }

    .nav__link {
        display: inline-flex;
        padding: 10px 12px;
    }

    .nav__link:hover {
        background: rgba(213, 177, 90, .12);
    }

    .btn--ghost {
        background: rgba(255, 255, 255, .55);
    }

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

    .split {
        grid-template-columns: 1.05fr .95fr;
        gap: 18px;
    }

    .split--reverse .split__text {
        order: 2;
    }

    .split--reverse .split__media {
        order: 1;
    }

    .map {
        height: 408px;
    }
    
    .location{
        flex-wrap: wrap;
    }
    
    .route__value {
        text-align: right;
    }
    
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .plan {
        grid-template-columns: 1fr 1fr;
    }

    .plan__img img {
        height: 100%;
        min-height: 360px;
    }

    .newsletter {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        padding: 22px;
    }

    .newsletter__form {
        grid-template-columns: 1fr auto;
        align-items: center;
    }

    .newsletter__form .fineprint {
        grid-column: 1 / -1;
    }

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

    .carousel__track img {
        height: 420px;
    }

    .pricing {
        grid-template-columns: 1.05fr .95fr;
        align-items: center;
    }

    .footer__inner {
        grid-template-columns: 1.2fr .6fr .8fr;
        gap: 22px;
    }
}