/**
 * Nortfly Home V2
 * Product-led public home built on the operational UI foundation.
 */

.nortfly-home-v2 {
    --nfh-ink: #020817;
    --nfh-ink-soft: #061226;
    --nfh-text: #172033;
    --nfh-muted: #64748b;
    --nfh-line: #e6edf7;
    --nfh-paper: #fff;
    --nfh-warm: #f8fbff;
    --nfh-blue: #1463ff;
    --nfh-purple: #3b22ff;
    --nfh-cyan: #00b7ff;
    --nfh-green: #00e0a4;
    --nfh-gradient: linear-gradient(135deg, #3b22ff 0%, #1463ff 55%, #00b7ff 100%);
    --nfh-shadow: 0 26px 70px rgba(2, 8, 23, .13);
    --nfh-shadow-soft: 0 14px 40px rgba(2, 8, 23, .08);
    background: #fff;
    color: var(--nfh-text);
}

.nortfly-home-v2 #main,
.nortfly-home-v2 #content {
    background: #fff;
}

.nortfly-home-v2 #content {
    overflow: hidden;
}

.nortfly-home-v2 .nf-home.nf-home-v2 {
    box-sizing: border-box;
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 20px 40px;
}

.nortfly-home-v2 .nf-home-v2 *,
.nortfly-home-v2 .nf-home-v2 *::before,
.nortfly-home-v2 .nf-home-v2 *::after {
    box-sizing: border-box;
}

.nortfly-home-v2 .nf-product-hero {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--nfh-line);
    border-radius: 38px;
    background:
        linear-gradient(rgba(2, 8, 23, .028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(2, 8, 23, .028) 1px, transparent 1px),
        var(--nfh-warm);
    background-size: 48px 48px, 48px 48px, auto;
    box-shadow: var(--nfh-shadow-soft);
}

.nortfly-home-v2 .nf-product-hero::after {
    position: absolute;
    z-index: 0;
    top: -150px;
    right: -130px;
    width: 410px;
    height: 410px;
    border-radius: 50%;
    background: rgba(0, 224, 164, .24);
    filter: blur(90px);
    content: "";
    pointer-events: none;
}

.nortfly-home-v2 .nf-product-hero__glow {
    position: absolute;
    z-index: 0;
    bottom: 80px;
    left: -180px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(20, 99, 255, .16);
    filter: blur(100px);
    pointer-events: none;
}

.nortfly-home-v2 .nf-product-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 660px;
    padding: clamp(46px, 6vw, 82px) clamp(30px, 6vw, 78px) 42px;
    align-items: center;
    gap: clamp(34px, 5vw, 74px);
    grid-template-columns: minmax(0, 1.04fr) minmax(390px, .96fr);
}

.nortfly-home-v2 .nf-product-hero__copy {
    position: relative;
    z-index: 2;
}

.nortfly-home-v2 .nf-product-hero .nf-home-eyebrow {
    display: inline-flex;
    margin: 0 0 25px !important;
    align-items: center;
    gap: 10px;
    color: var(--nfh-blue);
    font-size: 12px !important;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.nortfly-home-v2 .nf-product-hero .nf-home-eyebrow::before {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--nfh-cyan);
    box-shadow: 0 0 0 6px rgba(0, 183, 255, .12);
    content: "";
}

.nortfly-home-v2 .nf-product-hero h1 {
    max-width: 700px;
    margin: 0;
    color: var(--nfh-ink);
    font-size: clamp(54px, 6.6vw, 92px);
    font-weight: 850;
    letter-spacing: -.065em;
    line-height: .94;
}

.nortfly-home-v2 .nf-product-hero h1 em,
.nortfly-home-v2 .nf-home-section-heading h2 em {
    display: inline-block;
    background: linear-gradient(135deg, var(--nfh-purple), var(--nfh-blue));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-style: normal;
}

.nortfly-home-v2 .nf-product-hero h1 em {
    margin-top: 9px;
    font-size: .56em;
    letter-spacing: -.045em;
    line-height: 1.06;
    white-space: nowrap;
}

.nortfly-home-v2 .nf-product-hero__lead {
    max-width: 640px;
    margin: 28px 0 0 !important;
    color: #475569;
    font-size: clamp(17px, 1.7vw, 21px) !important;
    line-height: 1.62;
}

.nortfly-home-v2 .nf-product-hero__actions {
    display: flex;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 12px;
}

.nortfly-home-v2 .nf-home-action {
    display: inline-flex;
    min-height: 52px;
    padding: 13px 23px;
    border: 1px solid transparent;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--nfh-ink) !important;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    text-decoration: none !important;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nortfly-home-v2 .nf-home-action:hover {
    transform: translateY(-2px);
}

.nortfly-home-v2 .nf-home-action--primary {
    background: linear-gradient(135deg, var(--nfh-purple), var(--nfh-blue));
    color: #fff !important;
    box-shadow: 0 14px 30px rgba(20, 99, 255, .24);
}

.nortfly-home-v2 .nf-home-action--primary:hover {
    box-shadow: 0 18px 38px rgba(20, 99, 255, .3);
}

.nortfly-home-v2 .nf-home-action--outline {
    border-color: #ced9e8;
    background: rgba(255, 255, 255, .62);
}

.nortfly-home-v2 .nf-home-action--outline:hover {
    border-color: var(--nfh-ink);
    background: #fff;
}

.nortfly-home-v2 .nf-product-hero .nf-home-proof {
    display: flex;
    margin: 23px 0 0;
    padding: 0;
    flex-wrap: wrap;
    gap: 15px 20px;
    color: #475569;
    font-size: 12px;
    font-weight: 850;
    list-style: none;
}

.nortfly-home-v2 .nf-product-hero .nf-home-proof li {
    display: flex;
    align-items: center;
    gap: 7px;
}

.nortfly-home-v2 .nf-product-hero .nf-home-proof li::before {
    display: grid;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 224, 164, .16);
    color: #087d62;
    content: "✓";
    font-size: 11px;
    place-items: center;
}

.nortfly-home-v2 .nf-profile-stage {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 550px;
    align-items: center;
    justify-content: center;
}

.nortfly-home-v2 .nf-profile-stage::before {
    position: absolute;
    width: 92%;
    height: 78%;
    border: 1px solid rgba(20, 99, 255, .12);
    border-radius: 48% 52% 44% 56%;
    background: linear-gradient(145deg, rgba(59, 34, 255, .08), rgba(0, 224, 164, .14));
    content: "";
    transform: rotate(-6deg);
}

.nortfly-home-v2 .nf-profile-stage__note {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    min-height: 42px;
    padding: 9px 14px;
    border: 1px solid rgba(2, 8, 23, .08);
    border-radius: 14px;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 14px 34px rgba(2, 8, 23, .12);
    color: var(--nfh-ink);
    font-size: 12px;
    font-weight: 900;
}

.nortfly-home-v2 .nf-profile-stage__note--top {
    top: 72px;
    right: -3px;
}

.nortfly-home-v2 .nf-profile-stage__note--bottom {
    bottom: 70px;
    left: -8px;
}

.nortfly-home-v2 .nf-profile-device {
    position: relative;
    z-index: 2;
    overflow: hidden;
    width: min(100%, 364px);
    padding: 9px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 38px;
    background: #07111f;
    box-shadow: 0 38px 80px rgba(2, 8, 23, .26);
    transform: rotate(1.5deg);
}

.nortfly-home-v2 .nf-profile-device__bar {
    display: flex;
    height: 36px;
    padding: 0 12px;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, .72);
    font-size: 10px;
    font-weight: 800;
}

.nortfly-home-v2 .nf-profile-device__bar i {
    width: 46px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .23);
}

.nortfly-home-v2 .nf-profile-demo {
    overflow: hidden;
    min-height: 470px;
    border-radius: 29px;
    background: #fff;
}

.nortfly-home-v2 .nf-profile-demo__cover {
    position: relative;
    height: 142px;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 224, 164, .7), transparent 32%),
        linear-gradient(135deg, var(--nfh-purple), var(--nfh-blue));
}

.nortfly-home-v2 .nf-profile-demo__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nortfly-home-v2 .nf-profile-demo__cover::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 45%, rgba(2, 8, 23, .25));
    content: "";
    pointer-events: none;
}

.nortfly-home-v2 .nf-profile-demo__cover > span {
    position: absolute;
    z-index: 1;
    top: 12px;
    left: 12px;
    padding: 5px 8px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 999px;
    background: rgba(2, 8, 23, .68);
    color: #fff;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.nortfly-home-v2 .nf-profile-demo__body {
    position: relative;
    padding: 50px 18px 18px;
}

.nortfly-home-v2 .nf-profile-demo__logo {
    position: absolute;
    top: -38px;
    left: 18px;
    display: grid;
    overflow: hidden;
    width: 76px;
    height: 76px;
    border: 5px solid #fff;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--nfh-ink), var(--nfh-blue));
    color: #fff;
    font-size: 25px;
    font-weight: 950;
    box-shadow: 0 10px 25px rgba(2, 8, 23, .16);
    place-items: center;
}

.nortfly-home-v2 .nf-profile-demo__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nortfly-home-v2 .nf-profile-demo__heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.nortfly-home-v2 .nf-profile-demo__heading p {
    margin: 0 0 3px;
    color: var(--nfh-blue);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.nortfly-home-v2 .nf-profile-demo__heading h2 {
    margin: 0;
    color: var(--nfh-ink);
    font-size: 22px;
    letter-spacing: -.035em;
    line-height: 1.08;
}

.nortfly-home-v2 .nf-profile-demo__verified {
    display: grid;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--nfh-blue);
    color: #fff;
    font-size: 13px;
    font-weight: 950;
    place-items: center;
}

.nortfly-home-v2 .nf-profile-demo__location {
    margin: 6px 0 0 !important;
    color: var(--nfh-muted);
    font-size: 11px !important;
    font-weight: 800;
}

.nortfly-home-v2 .nf-profile-demo__description {
    min-height: 40px;
    margin: 12px 0 0 !important;
    color: #475569;
    font-size: 11px !important;
    line-height: 1.52;
}

.nortfly-home-v2 .nf-profile-demo__actions {
    display: grid;
    margin-top: 14px;
    gap: 7px;
}

.nortfly-home-v2 .nf-profile-demo__actions > a {
    display: flex;
    min-height: 42px;
    padding: 9px 11px;
    border: 1px solid var(--nfh-line);
    border-radius: 12px;
    align-items: center;
    justify-content: space-between;
    color: var(--nfh-text) !important;
    font-size: 11px;
    text-decoration: none !important;
}

.nortfly-home-v2 .nf-profile-demo__actions strong,
.nortfly-home-v2 .nf-profile-demo__actions small {
    display: block;
}

.nortfly-home-v2 .nf-profile-demo__actions strong {
    font-size: 11px;
}

.nortfly-home-v2 .nf-profile-demo__actions small {
    margin-top: 1px;
    color: var(--nfh-muted);
    font-size: 9px;
}

.nortfly-home-v2 .nf-profile-demo__actions .nf-profile-demo__primary,
.nortfly-home-v2 .nf-profile-demo__primary {
    justify-content: center;
    border-color: transparent;
    background: var(--nfh-gradient);
    color: #fff !important;
    font-weight: 900;
}

.nortfly-home-v2 .nf-profile-demo--empty {
    display: grid;
    padding: 34px;
    place-items: center;
}

.nortfly-home-v2 .nf-profile-demo--empty h2 {
    margin: 12px 0 22px;
    font-size: 30px;
}

.nortfly-home-v2 .nf-value-path {
    position: relative;
    z-index: 1;
    display: grid;
    padding: 27px clamp(28px, 5vw, 62px);
    border-top: 1px solid rgba(2, 8, 23, .08);
    align-items: center;
    gap: 30px;
    grid-template-columns: minmax(220px, .72fr) minmax(0, 1.28fr);
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(16px);
}

.nortfly-home-v2 .nf-value-path__intro > span {
    display: block;
    margin-bottom: 6px;
    color: var(--nfh-blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.nortfly-home-v2 .nf-value-path__intro > strong {
    display: block;
    color: var(--nfh-ink);
    font-size: 17px;
    line-height: 1.32;
}

.nortfly-home-v2 .nf-value-path ol {
    display: grid;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    list-style: none;
}

.nortfly-home-v2 .nf-value-path li {
    display: flex;
    min-width: 0;
    padding: 4px 18px;
    border-left: 1px solid var(--nfh-line);
    align-items: flex-start;
    gap: 11px;
}

.nortfly-home-v2 .nf-value-path li > b {
    color: var(--nfh-blue);
    font-size: 10px;
    letter-spacing: .08em;
}

.nortfly-home-v2 .nf-value-path li strong,
.nortfly-home-v2 .nf-value-path li small {
    display: block;
}

.nortfly-home-v2 .nf-value-path li strong {
    color: var(--nfh-ink);
    font-size: 12px;
}

.nortfly-home-v2 .nf-value-path li small {
    margin-top: 3px;
    color: var(--nfh-muted);
    font-size: 10px;
    line-height: 1.35;
}

.nortfly-home-v2 .nf-discovery {
    margin-top: 32px;
    padding: clamp(28px, 5vw, 54px);
    border: 1px solid var(--nfh-line);
    border-radius: 34px;
    background:
        radial-gradient(circle at 90% 0, rgba(0, 183, 255, .1), transparent 28%),
        #fff;
    box-shadow: var(--nfh-shadow-soft);
    scroll-margin-top: 90px;
}

.nortfly-home-v2 .nf-discovery__head {
    display: flex;
    margin-bottom: 23px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
}

.nortfly-home-v2 .nf-discovery__head > div:first-child {
    max-width: 780px;
}

.nortfly-home-v2 .nf-home-kicker {
    margin: 0 0 13px !important;
    color: var(--nfh-blue) !important;
    font-size: 11px !important;
    font-weight: 950 !important;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.nortfly-home-v2 .nf-discovery__head h2 {
    margin: 0;
    color: var(--nfh-ink);
    font-size: clamp(34px, 4vw, 54px);
    letter-spacing: -.05em;
    line-height: 1.02;
}

.nortfly-home-v2 .nf-discovery__head > div:first-child > p:last-child {
    max-width: 700px;
    margin: 15px 0 0;
    color: var(--nfh-muted);
    font-size: 16px;
    line-height: 1.55;
}

.nortfly-home-v2 .nf-discovery .nf-map-legend {
    padding-bottom: 5px;
    color: #475569;
}

.nortfly-home-v2 .nf-discovery .nf-search-box {
    display: grid;
    max-width: none;
    margin: 0;
    padding: 9px;
    border: 1px solid #dce6f3;
    border-radius: 20px;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 9px;
    background: #f8fbff;
    box-shadow: none;
}

.nortfly-home-v2 .nf-discovery .nf-search-box input {
    height: 54px;
    border: 0;
    border-radius: 13px;
    background: #fff;
    box-shadow: inset 0 0 0 1px var(--nfh-line);
}

.nortfly-home-v2 .nf-discovery .nf-search-box input:focus {
    box-shadow: inset 0 0 0 1px var(--nfh-blue), 0 0 0 4px rgba(20, 99, 255, .11);
}

.nortfly-home-v2 .nf-discovery .nf-home-btn {
    min-height: 54px;
    border-radius: 13px;
}

.nortfly-home-v2 .nf-discovery .nf-home-btn-light {
    background: #eaf1fb;
}

.nortfly-home-v2 #nf-home-status {
    min-height: 19px;
    margin: 10px 4px 0;
    color: #475569;
    font-size: 12px;
}

.nortfly-home-v2 .nf-discovery .nf-map-card {
    margin: 3px 0 0;
    padding: 0;
    border: 0;
    border-radius: 24px;
    background: transparent;
    box-shadow: none;
}

.nortfly-home-v2 #nf-home-map {
    height: 570px;
    border: 1px solid #d9e4f1;
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(2, 8, 23, .08);
}

.nortfly-home-v2 .nf-map-card__note {
    margin: 12px 4px 0;
}

.nortfly-home-v2 .nf-results-card,
.nortfly-home-v2 .nf-public-results-card {
    margin: 26px 0 0;
    padding: 26px;
    border-radius: 28px;
}

.nortfly-home-v2 .nf-section-title > span {
    color: var(--nfh-muted);
    font-size: 12px;
    font-weight: 850;
}

.nortfly-home-v2 .nf-home-product {
    margin-top: 32px;
    padding: clamp(44px, 7vw, 82px);
    border-radius: 38px;
    background:
        radial-gradient(circle at 85% 7%, rgba(0, 224, 164, .19), transparent 26%),
        linear-gradient(135deg, var(--nfh-ink), var(--nfh-ink-soft));
    color: #fff;
    box-shadow: var(--nfh-shadow);
    scroll-margin-top: 90px;
}

.nortfly-home-v2 .nf-home-section-heading {
    display: grid;
    margin-bottom: 42px;
    align-items: end;
    gap: clamp(30px, 6vw, 80px);
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
}

.nortfly-home-v2 .nf-home-section-heading h2 {
    max-width: 800px;
    margin: 0;
    color: var(--nfh-ink);
    font-size: clamp(39px, 5.2vw, 68px);
    letter-spacing: -.055em;
    line-height: .98;
}

.nortfly-home-v2 .nf-home-section-heading > p {
    margin: 0;
    color: var(--nfh-muted);
    font-size: 16px;
    line-height: 1.65;
}

.nortfly-home-v2 .nf-home-section-heading--light h2 {
    color: #fff;
}

.nortfly-home-v2 .nf-home-section-heading--light > p {
    color: rgba(255, 255, 255, .68);
}

.nortfly-home-v2 .nf-home-section-heading--light .nf-home-kicker {
    color: var(--nfh-green) !important;
}

.nortfly-home-v2 .nf-outcome-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.nortfly-home-v2 .nf-outcome-grid article {
    position: relative;
    display: flex;
    min-height: 340px;
    padding: 25px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 25px;
    flex-direction: column;
    background: rgba(255, 255, 255, .055);
    transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.nortfly-home-v2 .nf-outcome-grid article:hover {
    border-color: rgba(0, 224, 164, .42);
    background: rgba(255, 255, 255, .08);
    transform: translateY(-4px);
}

.nortfly-home-v2 .nf-outcome-grid article > span {
    position: absolute;
    top: 23px;
    right: 23px;
    color: rgba(255, 255, 255, .3);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
}

.nortfly-home-v2 .nf-outcome-icon {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: auto;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 15px;
    background: rgba(0, 224, 164, .1);
    color: var(--nfh-green);
    font-size: 24px;
    font-weight: 700;
    place-items: center;
}

.nortfly-home-v2 .nf-outcome-grid h3 {
    margin: 32px 0 10px;
    color: #fff;
    font-size: 25px;
    letter-spacing: -.035em;
}

.nortfly-home-v2 .nf-outcome-grid p {
    margin: 0;
    color: rgba(255, 255, 255, .65);
    font-size: 14px;
    line-height: 1.58;
}

.nortfly-home-v2 .nf-outcome-grid small {
    display: inline-flex;
    width: max-content;
    margin-top: 20px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(0, 224, 164, .1);
    color: #a7f3d0;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.nortfly-home-v2 .nf-home-trust {
    display: grid;
    margin-top: 32px;
    padding: clamp(36px, 6vw, 72px);
    border: 1px solid var(--nfh-line);
    border-radius: 38px;
    align-items: center;
    gap: clamp(40px, 7vw, 95px);
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    background: var(--nfh-warm);
}

.nortfly-home-v2 .nf-home-trust__copy h2 {
    margin: 0;
    color: var(--nfh-ink);
    font-size: clamp(38px, 4.6vw, 61px);
    letter-spacing: -.055em;
    line-height: .99;
}

.nortfly-home-v2 .nf-home-trust__copy > p:not(.nf-home-kicker) {
    margin: 22px 0 0;
    color: var(--nfh-muted);
    font-size: 16px;
    line-height: 1.65;
}

.nortfly-home-v2 .nf-home-trust__copy > a {
    display: inline-flex;
    margin-top: 23px;
    align-items: center;
    gap: 8px;
    color: var(--nfh-blue) !important;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none !important;
}

.nortfly-home-v2 .nf-trust-grid {
    display: grid;
    gap: 10px;
}

.nortfly-home-v2 .nf-trust-grid article {
    display: grid;
    padding: 20px;
    border: 1px solid var(--nfh-line);
    border-radius: 20px;
    align-items: start;
    gap: 17px;
    grid-template-columns: 42px minmax(0, 1fr);
    background: #fff;
    box-shadow: 0 10px 28px rgba(2, 8, 23, .045);
}

.nortfly-home-v2 .nf-trust-grid article > span {
    display: grid;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: #eaf1ff;
    color: var(--nfh-blue);
    font-size: 11px;
    font-weight: 950;
    place-items: center;
}

.nortfly-home-v2 .nf-trust-grid h3 {
    margin: 0 0 5px;
    color: var(--nfh-ink);
    font-size: 18px;
}

.nortfly-home-v2 .nf-trust-grid p {
    margin: 0;
    color: var(--nfh-muted);
    font-size: 13px;
    line-height: 1.5;
}

.nortfly-home-v2 .nf-home-plans {
    margin-top: 32px;
    padding: clamp(40px, 7vw, 82px);
    border: 1px solid var(--nfh-line);
    border-radius: 38px;
    background: #fff;
    scroll-margin-top: 90px;
}

.nortfly-home-v2 .nf-plan-grid {
    display: grid;
    max-width: 1000px;
    margin: 0 auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.nortfly-home-v2 .nf-plan-card {
    position: relative;
    display: flex;
    min-height: 510px;
    padding: clamp(25px, 4vw, 38px);
    border: 1px solid var(--nfh-line);
    border-radius: 28px;
    flex-direction: column;
    background: var(--nfh-warm);
}

.nortfly-home-v2 .nf-plan-card--featured {
    border-color: rgba(20, 99, 255, .34);
    background:
        radial-gradient(circle at 100% 0, rgba(0, 224, 164, .15), transparent 28%),
        #fff;
    box-shadow: var(--nfh-shadow-soft);
}

.nortfly-home-v2 .nf-plan-card__tag {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 6px 9px;
    border-radius: 999px;
    background: var(--nfh-ink);
    color: #fff;
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.nortfly-home-v2 .nf-plan-card__head {
    display: grid;
    min-height: 126px;
    padding-bottom: 23px;
    border-bottom: 1px solid var(--nfh-line);
    align-items: end;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr) auto;
}

.nortfly-home-v2 .nf-plan-card__head p {
    margin: 0 0 7px;
    color: var(--nfh-ink);
    font-size: 23px;
    font-weight: 900;
}

.nortfly-home-v2 .nf-plan-card__head div > span {
    display: block;
    max-width: 290px;
    color: var(--nfh-muted);
    font-size: 12px;
    line-height: 1.45;
}

.nortfly-home-v2 .nf-plan-card__head > strong {
    color: var(--nfh-ink);
    font-size: 30px;
    letter-spacing: -.04em;
    white-space: nowrap;
}

.nortfly-home-v2 .nf-plan-card__head > strong small {
    color: var(--nfh-muted);
    font-size: 11px;
    letter-spacing: 0;
}

.nortfly-home-v2 .nf-plan-card__trial {
    width: max-content;
    margin: 17px 0 0;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0, 224, 164, .14);
    color: #087d62;
    font-size: 10px;
    font-weight: 900;
}

.nortfly-home-v2 .nf-plan-card ul {
    display: grid;
    margin: 24px 0 28px;
    padding: 0;
    gap: 11px;
    list-style: none;
}

.nortfly-home-v2 .nf-plan-card li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #475569;
    font-size: 13px;
    line-height: 1.4;
}

.nortfly-home-v2 .nf-plan-card li > span {
    color: #0a9e76;
    font-weight: 950;
}

.nortfly-home-v2 .nf-plan-card > .nf-home-action {
    width: 100%;
    margin-top: auto;
}

.nortfly-home-v2 .nf-plan-grid__note {
    margin: 18px 0 0;
    color: var(--nfh-muted);
    font-size: 11px;
    text-align: center;
}

.nortfly-home-v2 .nf-home-faq {
    display: grid;
    margin-top: 32px;
    padding: clamp(38px, 7vw, 80px);
    border-radius: 38px;
    gap: clamp(40px, 7vw, 90px);
    grid-template-columns: minmax(270px, .75fr) minmax(0, 1.25fr);
    background: var(--nfh-warm);
}

.nortfly-home-v2 .nf-home-faq__intro h2 {
    margin: 0;
    color: var(--nfh-ink);
    font-size: clamp(40px, 5vw, 66px);
    letter-spacing: -.055em;
    line-height: .98;
}

.nortfly-home-v2 .nf-home-faq__intro > p:not(.nf-home-kicker) {
    margin: 18px 0 0;
    color: var(--nfh-muted);
}

.nortfly-home-v2 .nf-home-faq__intro .nf-home-action {
    margin-top: 23px;
}

.nortfly-home-v2 .nf-home-faq__list {
    border-top: 1px solid #d9e4f1;
}

.nortfly-home-v2 .nf-home-faq details {
    border-bottom: 1px solid #d9e4f1;
}

.nortfly-home-v2 .nf-home-faq summary {
    display: flex;
    min-height: 72px;
    padding: 18px 0;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--nfh-ink);
    font-size: 17px;
    font-weight: 850;
    list-style: none;
}

.nortfly-home-v2 .nf-home-faq summary::-webkit-details-marker {
    display: none;
}

.nortfly-home-v2 .nf-home-faq summary > span {
    display: grid;
    width: 30px;
    height: 30px;
    border: 1px solid #cbd8e7;
    border-radius: 50%;
    flex: 0 0 30px;
    color: var(--nfh-blue);
    place-items: center;
    transition: transform 180ms ease;
}

.nortfly-home-v2 .nf-home-faq details[open] summary > span {
    transform: rotate(45deg);
}

.nortfly-home-v2 .nf-home-faq details > p {
    max-width: 680px;
    margin: -5px 45px 20px 0;
    color: var(--nfh-muted);
    font-size: 14px;
    line-height: 1.65;
}

.nortfly-home-v2 .nf-verified-wrap,
.nortfly-home-v2 .nf-home-vagas {
    max-width: 1240px;
    margin: 8px auto 0;
    padding: 54px 20px 24px;
}

.nortfly-home-v2 .nf-verified-head,
.nortfly-home-v2 .nf-home-vagas-head {
    margin-bottom: 22px;
}

.nortfly-home-v2 .nf-verified-head h2,
.nortfly-home-v2 .nf-home-vagas-head h2 {
    color: var(--nfh-ink);
    font-size: clamp(31px, 4vw, 48px);
    letter-spacing: -.045em;
}

.nortfly-home-v2 .nf-home-vagas-head a {
    color: var(--nfh-blue) !important;
}

.nortfly-home-v2 .nf-verified-grid,
.nortfly-home-v2 .nf-home-vagas-grid {
    gap: 16px;
}

.nortfly-home-v2 .nf-verified-card,
.nortfly-home-v2 .nf-home-vaga {
    border-color: var(--nfh-line);
    border-radius: 22px;
    box-shadow: var(--nfh-shadow-soft);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.nortfly-home-v2 .nf-verified-card:hover,
.nortfly-home-v2 .nf-home-vaga:hover {
    box-shadow: 0 20px 44px rgba(2, 8, 23, .12);
    transform: translateY(-4px);
}

.nortfly-home-v2 .nf-verified-logo {
    border-radius: 17px;
    background: linear-gradient(135deg, var(--nfh-ink), var(--nfh-blue));
}

.nortfly-home-v2 .nf-home-vaga {
    border-radius: 22px;
}

.nortfly-home-v2 .nf-home-vaga-img {
    border-radius: 16px;
}

.nortfly-home-v2 .nf-home-vaga-btn {
    border-radius: 13px;
    background: var(--nfh-ink);
}

.nortfly-home-v2 .nf-home.nf-home-cta-final {
    padding-top: 30px;
}

.nortfly-home-v2 .nf-cta {
    position: relative;
    overflow: hidden;
    min-height: 330px;
    margin: 0;
    padding: clamp(38px, 7vw, 78px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 38px;
    background:
        radial-gradient(circle at 90% 10%, rgba(0, 224, 164, .24), transparent 30%),
        linear-gradient(135deg, var(--nfh-ink), var(--nfh-ink-soft));
    box-shadow: var(--nfh-shadow);
}

.nortfly-home-v2 .nf-cta::after {
    position: absolute;
    right: -130px;
    bottom: -240px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    box-shadow: 0 0 0 65px rgba(255, 255, 255, .025), 0 0 0 130px rgba(255, 255, 255, .018);
    content: "";
}

.nortfly-home-v2 .nf-cta > div,
.nortfly-home-v2 .nf-cta > a {
    position: relative;
    z-index: 1;
}

.nortfly-home-v2 .nf-cta > div > span {
    display: block;
    margin-bottom: 13px;
    color: var(--nfh-green);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.nortfly-home-v2 .nf-cta h2 {
    max-width: 720px;
    margin: 0 0 13px;
    font-size: clamp(39px, 5.2vw, 67px);
    letter-spacing: -.055em;
    line-height: .98;
}

.nortfly-home-v2 .nf-cta p {
    max-width: 680px;
    color: rgba(255, 255, 255, .68);
    font-size: 15px;
    line-height: 1.6;
}

.nortfly-home-v2 .nf-cta > a {
    display: inline-flex;
    min-height: 56px;
    padding: 14px 22px;
    border-radius: 999px;
    align-items: center;
    gap: 9px;
    background: var(--nfh-green);
    color: var(--nfh-ink) !important;
    font-size: 14px;
}

.nortfly-home-v2 .nf-cta > a:hover {
    background: #32ebbd;
    transform: translateY(-2px);
}

@media (max-width: 1050px) {
    .nortfly-home-v2 .nf-product-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(340px, .82fr);
    }

    .nortfly-home-v2 .nf-product-hero h1 {
        font-size: clamp(50px, 7.5vw, 74px);
    }

    .nortfly-home-v2 .nf-profile-stage__note--top {
        right: -10px;
    }

    .nortfly-home-v2 .nf-profile-stage__note--bottom {
        left: -10px;
    }
}

@media (max-width: 900px) {
    .nortfly-home-v2 .nf-home.nf-home-v2 {
        padding: 12px 12px 32px;
    }

    .nortfly-home-v2 .nf-product-hero {
        border-radius: 29px;
    }

    .nortfly-home-v2 .nf-product-hero__grid {
        min-height: auto;
        padding: 48px 25px 35px;
        grid-template-columns: 1fr;
    }

    .nortfly-home-v2 .nf-product-hero__copy {
        max-width: 720px;
    }

    .nortfly-home-v2 .nf-product-hero h1 {
        font-size: clamp(50px, 12vw, 78px);
    }

    .nortfly-home-v2 .nf-profile-stage {
        min-height: 570px;
    }

    .nortfly-home-v2 .nf-profile-device {
        width: min(100%, 390px);
    }

    .nortfly-home-v2 .nf-profile-stage__note--top {
        right: max(2px, calc(50% - 230px));
    }

    .nortfly-home-v2 .nf-profile-stage__note--bottom {
        left: max(2px, calc(50% - 230px));
    }

    .nortfly-home-v2 .nf-value-path {
        grid-template-columns: 1fr;
    }

    .nortfly-home-v2 .nf-value-path ol {
        border-top: 1px solid var(--nfh-line);
        padding-top: 18px;
    }

    .nortfly-home-v2 .nf-value-path li:first-child {
        border-left: 0;
    }

    .nortfly-home-v2 .nf-discovery,
    .nortfly-home-v2 .nf-home-product,
    .nortfly-home-v2 .nf-home-trust,
    .nortfly-home-v2 .nf-home-plans,
    .nortfly-home-v2 .nf-home-faq,
    .nortfly-home-v2 .nf-cta {
        border-radius: 29px;
    }

    .nortfly-home-v2 .nf-discovery__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .nortfly-home-v2 .nf-home-section-heading,
    .nortfly-home-v2 .nf-home-trust,
    .nortfly-home-v2 .nf-home-faq {
        grid-template-columns: 1fr;
    }

    .nortfly-home-v2 .nf-outcome-grid {
        grid-template-columns: 1fr;
    }

    .nortfly-home-v2 .nf-outcome-grid article {
        min-height: 270px;
    }

    .nortfly-home-v2 .nf-verified-grid,
    .nortfly-home-v2 .nf-home-vagas-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .nortfly-home-v2 .nf-home.nf-home-v2 {
        padding-inline: 8px;
    }

    .nortfly-home-v2 .nf-product-hero__grid {
        padding: 38px 18px 28px;
        gap: 22px;
    }

    .nortfly-home-v2 .nf-product-hero .nf-home-eyebrow {
        margin-bottom: 19px !important;
        font-size: 10px !important;
    }

    .nortfly-home-v2 .nf-product-hero h1 {
        font-size: clamp(43px, 14vw, 61px);
        line-height: .96;
    }

    .nortfly-home-v2 .nf-product-hero h1 em {
        white-space: normal;
    }

    .nortfly-home-v2 .nf-product-hero__lead {
        margin-top: 21px !important;
        font-size: 16px !important;
    }

    .nortfly-home-v2 .nf-product-hero__actions {
        display: grid;
    }

    .nortfly-home-v2 .nf-product-hero .nf-home-proof {
        display: grid;
        gap: 9px;
    }

    .nortfly-home-v2 .nf-profile-stage {
        min-height: 530px;
    }

    .nortfly-home-v2 .nf-profile-stage__note {
        display: none;
    }

    .nortfly-home-v2 .nf-profile-device {
        width: 100%;
        transform: none;
    }

    .nortfly-home-v2 .nf-value-path {
        padding: 24px 18px;
    }

    .nortfly-home-v2 .nf-value-path ol {
        display: grid;
        gap: 14px;
        grid-template-columns: 1fr;
    }

    .nortfly-home-v2 .nf-value-path li {
        padding: 3px 0;
        border-left: 0;
    }

    .nortfly-home-v2 .nf-discovery,
    .nortfly-home-v2 .nf-home-product,
    .nortfly-home-v2 .nf-home-trust,
    .nortfly-home-v2 .nf-home-plans,
    .nortfly-home-v2 .nf-home-faq,
    .nortfly-home-v2 .nf-cta {
        margin-top: 20px;
        padding: 29px 18px;
        border-radius: 24px;
    }

    .nortfly-home-v2 .nf-discovery__head h2,
    .nortfly-home-v2 .nf-home-section-heading h2,
    .nortfly-home-v2 .nf-home-trust__copy h2,
    .nortfly-home-v2 .nf-home-faq__intro h2,
    .nortfly-home-v2 .nf-cta h2 {
        font-size: clamp(34px, 11vw, 47px);
    }

    .nortfly-home-v2 .nf-discovery .nf-search-box {
        grid-template-columns: 1fr;
    }

    .nortfly-home-v2 .nf-discovery .nf-home-btn {
        width: 100%;
    }

    .nortfly-home-v2 #nf-home-map {
        height: 430px;
        border-radius: 18px;
    }

    .nortfly-home-v2 .nf-results-card,
    .nortfly-home-v2 .nf-public-results-card {
        padding: 15px;
        border-radius: 21px;
    }

    .nortfly-home-v2 .nf-home-section-heading {
        margin-bottom: 28px;
        gap: 20px;
    }

    .nortfly-home-v2 .nf-plan-grid {
        grid-template-columns: 1fr;
    }

    .nortfly-home-v2 .nf-plan-card {
        min-height: auto;
    }

    .nortfly-home-v2 .nf-plan-card__head {
        grid-template-columns: 1fr;
    }

    .nortfly-home-v2 .nf-home-faq summary {
        font-size: 15px;
    }

    .nortfly-home-v2 .nf-verified-wrap,
    .nortfly-home-v2 .nf-home-vagas {
        padding: 35px 16px 18px;
    }

    .nortfly-home-v2 .nf-verified-grid,
    .nortfly-home-v2 .nf-home-vagas-grid {
        grid-template-columns: 1fr;
    }

    .nortfly-home-v2 .nf-home.nf-home-cta-final {
        padding: 22px 8px 28px;
    }

    .nortfly-home-v2 .nf-cta {
        align-items: flex-start;
    }

    .nortfly-home-v2 .nf-cta > a {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nortfly-home-v2 *,
    .nortfly-home-v2 *::before,
    .nortfly-home-v2 *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
