/*
Theme: NTF front
File: Front theme corrections + landing page

This file is loaded last on every public page, so it carries two things:

  1. Site-wide corrections that belong to the whole front theme -- the RTL
     text alignment bootstrap gets wrong, and the header menu.
  2. The landing page sections, all namespaced .ntf-* so they cannot reach
     the category / entry / warranty pages that share this bundle.

=====================================================================
   1. Site-wide
===================================================================== */

/* bootstrap 4 ships `body { text-align: left }` and style.css only added
   `direction: rtl` on top of it, so every public page has been rendering
   right-to-left boxes with left-aligned text inside them. */
body {
    text-align: right;
}

/* the theme is an LTR template: a few of its blocks pin themselves left and
   have to be handed back to the reading direction */
.f-right {
    float: right;
}

/* ---------------------------------------------------------------
   Header menu
--------------------------------------------------------------- */
/* the template set background-color: rgba(3.1, 2.4, 27.5, .5) here, which is
   not a valid colour; a translucent version of the hero navy is what it meant */
.header-area {
    background-color: rgba(11, 16, 48, 0.45);
}

.header-menu-area {
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

/* the entry and category pages want real bullets in their body copy, which is
   why the theme forces them on globally -- the menus have to opt back out */
li {
    list-style: outside !important;
}

.main-menu li,
.main-menu li li,
.ntf-footer-links li,
.mean-nav li {
    list-style: none !important;
}

.header_menu ul.main-menu > li {
    display: inline-block;
    margin-left: 2px;
}

.header_menu ul.main-menu > li:last-child {
    margin-left: 0;
}

/* seven items have to sit on one line next to the logo, so the padding is
   tight; the template used to fake separators with a "|" character instead */
.header_menu ul.main-menu > li > a {
    position: relative;
    display: inline-block;
    padding: 30px 13px;
    font-size: 14.5px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    letter-spacing: 0;
    transition: color 0.2s ease;
}

/* a hairline that grows from the centre beats the pipe characters the
   template used to fake separators with */
.header_menu ul.main-menu > li > a:after {
    content: '';
    position: absolute;
    right: 50%;
    left: 50%;
    bottom: 20px;
    height: 2px;
    background: #7aa2ff;
    border-radius: 2px;
    /* a zero-width rounded box still paints a speck at some zoom levels, so
       the collapsed state is hidden outright rather than just squeezed */
    opacity: 0;
    transition: all 0.22s ease;
}

.header_menu ul.main-menu > li:hover > a:after,
.header_menu ul.main-menu > li.active > a:after {
    right: 13px;
    left: 13px;
    opacity: 1;
}

.header_menu ul.main-menu > li:hover > a {
    color: #fff;
}

/* parents get a caret so it is obvious there is a submenu */
.header_menu ul.main-menu > li.menu-item-has-children > a:before {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    float: left;
    margin-right: 7px;
    margin-top: 1px;
    font-size: 12px;
    opacity: 0.7;
}

.header_menu ul li ul.submenu {
    min-width: 230px;
    padding: 10px 0;
    background: #fff;
    border-top: 2px solid #2f5cff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 22px 44px -22px rgba(11, 16, 48, 0.55);
    text-align: right;
}

.header_menu ul li ul.submenu li a {
    display: block;
    padding: 9px 22px;
    font-size: 14.5px;
    font-weight: 500;
    color: #46506b;
    transition: all 0.18s ease;
}

.header_menu ul li ul.submenu li a:hover {
    color: #2f5cff;
    background: #f2f5fd;
    padding-right: 28px;
}

/* the themify arrow the template animated in on hover fought the padding
   shift above and left a floating glyph */
.header_menu ul li ul.submenu li a::after {
    content: none;
}

/* once the page is scrolled the bar needs its own ground, not the hero */
.header-area.stick {
    background: #0b1030;
    box-shadow: 0 8px 24px -14px rgba(11, 16, 48, 0.8);
}

.header-area.stick .header_menu ul.main-menu > li > a {
    padding: 22px 13px;
    color: #fff;
}

.header-area.stick .header_menu ul.main-menu > li > a:after {
    bottom: 14px;
}

.logo img {
    max-height: 52px;
}

/* mobile drawer */
.mean-container .mean-nav ul li a {
    font-size: 15px;
    text-align: right;
}

.mean-container a.meanmenu-reveal {
    padding: 18px 14px 14px;
}

/* =====================================================================
   2. Landing page
===================================================================== */

.ntf {
    --ntf-ink: #12163a;
    --ntf-body: #5b6480;
    --ntf-muted: #8b93a9;
    --ntf-line: #e6eaf2;
    --ntf-soft: #f5f7fb;
    --ntf-brand: #2f5cff;
    --ntf-brand-dark: #1b3fd4;
    --ntf-accent: #00c2a8;
}

.ntf,
.ntf p,
.ntf li {
    color: #5b6480;
}

.ntf h1,
.ntf h2,
.ntf h3,
.ntf h4,
.ntf h5 {
    color: #12163a;
    line-height: 1.55;
    margin: 0;
}

.ntf a {
    text-decoration: none;
}

.ntf-section {
    padding: 78px 0;
}

.ntf-section.is-soft {
    background: #f5f7fb;
}

/* ============================================================
   Section heading
============================================================ */
.ntf-head {
    max-width: 640px;
    margin: 0 auto 44px;
    text-align: center;
}

.ntf-eyebrow {
    display: inline-block;
    padding: 5px 14px;
    margin-bottom: 14px;
    font-size: 12.5px;
    font-weight: 700;
    color: #2f5cff;
    background: rgba(47, 92, 255, 0.09);
    border-radius: 20px;
}

.ntf-head h2 {
    font-size: 30px;
    font-weight: 800;
}

.ntf-head p {
    margin: 12px 0 0;
    font-size: 15px;
    line-height: 2;
}

/* ============================================================
   Buttons
============================================================ */
.ntf-btn {
    display: inline-block;
    padding: 13px 30px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.ntf-btn + .ntf-btn {
    margin-right: 12px;
}

.ntf-btn-primary {
    color: #fff;
    background: #2f5cff;
    box-shadow: 0 10px 24px -10px rgba(47, 92, 255, 0.9);
}

.ntf-btn-primary:hover,
.ntf-btn-primary:focus {
    color: #fff;
    background: #1b3fd4;
    transform: translateY(-2px);
}

.ntf-btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.06);
}

.ntf-btn-ghost:hover,
.ntf-btn-ghost:focus {
    color: #12163a;
    background: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

.ntf-btn-light {
    color: #12163a;
    background: #fff;
}

.ntf-btn-light:hover,
.ntf-btn-light:focus {
    color: #12163a;
    background: #eef2fb;
    transform: translateY(-2px);
}

/* ============================================================
   Hero
============================================================ */
.ntf-hero {
    position: relative;
    overflow: hidden;
    background: #0b1030;
}

.ntf-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: center;
    background-size: cover;
    /* the photo carries the page -- keep it readable, and brighten it a
       little since the source image is very dark to begin with */
    opacity: 1;
    filter: brightness(1.35) contrast(1.1) saturate(1.1);
}

/* darkness only where the copy sits, so the bulb stays visible on the left */
.ntf-hero:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to left, #0b1030 0%, rgba(11, 16, 48, 0.9) 26%, rgba(11, 16, 48, 0.55) 52%, rgba(11, 16, 48, 0.15) 100%);
}

.ntf-hero-inner {
    position: relative;
    z-index: 2;
    padding: 132px 0 108px;
}

.ntf-hero-copy {
    max-width: 640px;
}

.ntf-hero-eyebrow {
    display: inline-block;
    padding: 6px 16px;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 700;
    color: #9fc0ff;
    background: rgba(47, 92, 255, 0.18);
    border: 1px solid rgba(159, 192, 255, 0.28);
    border-radius: 22px;
}

.ntf-hero h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.5;
    color: #fff;
}

.ntf-hero h1 span {
    color: #7aa2ff;
}

.ntf-hero-lead {
    max-width: 540px;
    margin: 20px 0 34px;
    font-size: 17px;
    line-height: 2.1;
    color: rgba(255, 255, 255, 0.78);
}

.ntf-hero-actions {
    margin-bottom: 42px;
}

/* quick facts under the call to action */
.ntf-hero-facts {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.ntf-fact {
    margin-left: 46px;
}

.ntf-fact:last-child {
    margin-left: 0;
}

.ntf-fact-value {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    line-height: 1.4;
}

.ntf-fact-label {
    display: block;
    margin-top: 2px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   Category cards
============================================================ */
.ntf-cats {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    /* a category with three sub groups should not leave a hole in the row */
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 -12px;
}

.ntf-cat {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 12px;
    margin-bottom: 24px;
}

.ntf-cat-inner {
    position: relative;
    display: block;
    height: 100%;
    padding: 32px 26px;
    overflow: hidden;
    text-align: center;
    background: #fff;
    border: 1px solid #e6eaf2;
    border-radius: 14px;
    transition: all 0.22s ease;
}

.ntf-cat-inner:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #2f5cff, #00c2a8);
    opacity: 0;
    transition: opacity 0.22s ease;
}

.ntf-cat-inner:hover {
    border-color: #cfdaf5;
    box-shadow: 0 22px 40px -26px rgba(18, 22, 58, 0.5);
    transform: translateY(-5px);
}

.ntf-cat-inner:hover:before {
    opacity: 1;
}

.ntf-cat-icon {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    margin: 0 auto 20px;
    background: #f5f7fb;
    border-radius: 50%;
    transition: background 0.22s ease;
}

.ntf-cat-inner:hover .ntf-cat-icon {
    background: rgba(47, 92, 255, 0.1);
}

.ntf-cat-icon img {
    max-width: 42px;
    max-height: 42px;
}

.ntf-cat-title {
    font-size: 17px;
    font-weight: 700;
}

.ntf-cat-more {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #2f5cff;
}

.ntf-cat-more i {
    margin-right: 4px;
    font-size: 11px;
}

/* ============================================================
   Feature list
============================================================ */
.ntf-features {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -14px;
}

.ntf-feature {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 14px;
    margin-bottom: 28px;
}

.ntf-feature-icon {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    font-size: 22px;
    color: #2f5cff;
    background: rgba(47, 92, 255, 0.1);
    border-radius: 12px;
}

.ntf-feature h4 {
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 700;
}

.ntf-feature p {
    margin: 0;
    font-size: 14px;
    line-height: 2;
}

/* ============================================================
   Brand strip
============================================================ */
.ntf-brands {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 -10px;
}

.ntf-brand {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex: 0 0 160px;
    flex: 0 0 160px;
    height: 96px;
    margin: 0 10px 20px;
    padding: 14px;
    background: #fff;
    border: 1px solid #e6eaf2;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.ntf-brand:hover {
    border-color: #cfdaf5;
    box-shadow: 0 16px 30px -22px rgba(18, 22, 58, 0.55);
    transform: translateY(-3px);
}

.ntf-brand img {
    max-height: 58px;
    /* logos arrive in every shape and tint; muting them keeps the row calm */
    filter: grayscale(100%);
    opacity: 0.72;
    transition: all 0.2s ease;
}

.ntf-brand:hover img {
    filter: none;
    opacity: 1;
}

/* ============================================================
   Product grid
============================================================ */
.ntf-products {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    /* a short last row (or two related items) should sit centred, not leave
       the rest of the row hanging empty */
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 -12px;
}

.ntf-product {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 12px;
    margin-bottom: 24px;
}

.ntf-product-inner {
    display: block;
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e6eaf2;
    border-radius: 14px;
    transition: all 0.22s ease;
}

.ntf-product-inner:hover {
    border-color: #cfdaf5;
    box-shadow: 0 22px 40px -26px rgba(18, 22, 58, 0.5);
    transform: translateY(-5px);
}

.ntf-product-media {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 190px;
    padding: 18px;
    background: #f5f7fb;
}

.ntf-product-media img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.ntf-product-body {
    display: block;
    padding: 18px 18px 20px;
}

.ntf-product-cat {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    color: #8b93a9;
}

.ntf-product-title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #12163a;
    line-height: 1.8;
    /* titles run long; two lines keeps every card the same height */
    height: 54px;
    overflow: hidden;
}

/* ============================================================
   Warranty band
============================================================ */
.ntf-cta {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    color: #fff;
    background: linear-gradient(255deg, #1b3fd4 0%, #12163a 100%);
}

.ntf-cta:before {
    content: '';
    position: absolute;
    top: -120px;
    left: -60px;
    width: 340px;
    height: 340px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.ntf-cta-inner {
    position: relative;
    z-index: 2;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.ntf-cta h2 {
    margin: 0;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
}

.ntf-cta p {
    max-width: 560px;
    margin: 10px 0 0;
    font-size: 15px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.75);
}

/* ============================================================
   About + contact
============================================================ */
.ntf-about-text p {
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 2.15;
}

/* the editor writes font-size:14pt and its own family into the stored HTML,
   so the block has to be normalised back onto the page's type scale */
.ntf-about-text p,
.ntf-about-text span,
.ntf-about-text div,
.ntf-about-text li {
    font-family: inherit !important;
    font-size: 15px !important;
    line-height: 2.15 !important;
    color: #5b6480 !important;
    text-align: justify;
}

.ntf-about-text strong,
.ntf-about-text b {
    color: #12163a !important;
}

.ntf-about-text h2 {
    margin-bottom: 18px;
    font-size: 28px;
    font-weight: 800;
}

.ntf-contact-card {
    padding: 30px;
    background: #fff;
    border: 1px solid #e6eaf2;
    border-radius: 14px;
    box-shadow: 0 24px 44px -34px rgba(18, 22, 58, 0.55);
}

.ntf-contact-card h3 {
    margin-bottom: 20px;
    font-size: 19px;
    font-weight: 800;
}

.ntf-contact-row {
    display: -ms-flexbox;
    display: flex;
    padding: 14px 0;
    border-bottom: 1px solid #eef1f7;
}

.ntf-contact-row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.ntf-contact-icon {
    -ms-flex: none;
    flex: none;
    width: 40px;
    height: 40px;
    margin-left: 14px;
    font-size: 17px;
    line-height: 40px;
    text-align: center;
    color: #2f5cff;
    background: rgba(47, 92, 255, 0.1);
    border-radius: 10px;
}

.ntf-contact-label {
    display: block;
    margin-bottom: 2px;
    font-size: 12.5px;
    color: #8b93a9;
}

.ntf-contact-value {
    display: block;
    font-size: 14.5px;
    font-weight: 600;
    color: #12163a;
    line-height: 1.9;
}

a.ntf-contact-value:hover {
    color: #2f5cff;
}

/* phone numbers read left to right even inside an RTL block */
.ntf-ltr {
    direction: ltr;
    unicode-bidi: embed;
    display: inline-block;
}

/* ============================================================
   Footer
============================================================ */
.ntf-footer {
    padding: 58px 0 0;
    color: rgba(255, 255, 255, 0.62);
    background: #0b1030;
}

.ntf-footer h4 {
    margin-bottom: 18px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.ntf-footer p {
    font-size: 14px;
    line-height: 2.1;
    color: rgba(255, 255, 255, 0.62);
}

.ntf-footer-logo {
    max-width: 160px;
    margin-bottom: 18px;
}

.ntf-footer-links {
    padding: 0;
    margin: 0;
    list-style: none !important;
}

.ntf-footer-links li {
    margin-bottom: 10px;
    list-style: none !important;
}

.ntf-footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.62);
    transition: color 0.18s ease;
}

.ntf-footer-links a:hover {
    color: #fff;
}

.ntf-footer-bottom {
    padding: 20px 0;
    margin-top: 44px;
    font-size: 13px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================================
   Responsive
============================================================ */
@media (max-width: 991px) {
    .ntf-section {
        padding: 58px 0;
    }
    .ntf-hero-inner {
        padding: 96px 0 76px;
    }
    .ntf-hero h1 {
        font-size: 32px;
    }
    .ntf-cat,
    .ntf-feature,
    .ntf-product {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .ntf-cta-inner {
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .ntf-cta-actions {
        margin-top: 24px;
    }
}

@media (max-width: 575px) {
    .ntf-hero h1 {
        font-size: 26px;
    }
    .ntf-hero-lead {
        font-size: 15px;
    }
    .ntf-btn {
        display: block;
        text-align: center;
    }
    .ntf-btn + .ntf-btn {
        margin: 12px 0 0;
    }
    .ntf-fact {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        margin: 0 0 18px;
    }
    .ntf-cat,
    .ntf-feature,
    .ntf-product {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .ntf-head h2 {
        font-size: 23px;
    }
}

/* the copy should fill the band; without this the button drifts far from it */
.ntf-cta-copy {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding-left: 30px;
}

/* ============================================================
   Category page
============================================================ */
.ntf-page-hero {
    position: relative;
    overflow: hidden;
    background: #0b1030;
}

.ntf-page-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: center;
    background-size: cover;
}

/* the CMS background is a photo of the product in use, so it is kept legible
   and only darkened enough to carry white text */
.ntf-page-hero:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to left, rgba(11, 16, 48, 0.92) 0%, rgba(11, 16, 48, 0.72) 45%, rgba(11, 16, 48, 0.42) 100%);
}

.ntf-page-hero.is-plain:after {
    background: linear-gradient(to left, #12163a 0%, #1b3fd4 100%);
}

.ntf-page-hero-inner {
    position: relative;
    z-index: 2;
    padding: 118px 0 62px;
}

.ntf-page-hero h1 {
    margin: 14px 0 0;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
}

.ntf-page-hero-meta {
    margin: 10px 0 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
}

.ntf-crumbs {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.ntf-crumbs a {
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.18s ease;
}

.ntf-crumbs a:hover {
    color: #fff;
}

.ntf-crumbs span {
    margin: 0 7px;
    opacity: 0.45;
}

.ntf-crumbs b {
    color: #fff;
    font-weight: 600;
}

/* brand logos are wide, not square like the landing page's group icons */
.ntf-cat-icon.is-wide {
    width: 116px;
    height: 78px;
    border-radius: 10px;
}

.ntf-cat-icon.is-wide img {
    max-width: 92px;
    max-height: 56px;
}

.ntf-cat-count {
    display: block;
    margin-top: 6px;
    font-size: 12.5px;
    color: #8b93a9;
}

/* the entry cards carry a summary here, which the landing showcase does not */
.ntf-product-desc {
    display: block;
    margin-top: 6px;
    font-size: 12.5px;
    line-height: 1.9;
    color: #8b93a9;
    height: 46px;
    overflow: hidden;
}

.ntf-product-more {
    display: block;
    margin-top: 12px;
    padding-top: 12px;
    font-size: 12.5px;
    font-weight: 700;
    color: #2f5cff;
    border-top: 1px solid #eef1f7;
}

.ntf-product-more i {
    margin-right: 4px;
    font-size: 11px;
}

.ntf-product-noimage {
    font-size: 40px;
    color: #cbd4e4;
}

/* ---------------------------------------------------------------
   Pager
--------------------------------------------------------------- */
.ntf-pager {
    margin-top: 14px;
    text-align: center;
}

.ntf-pager-btn {
    display: inline-block;
    min-width: 40px;
    padding: 9px 14px;
    margin: 4px 3px;
    font-size: 14px;
    font-weight: 600;
    color: #46506b;
    background: #fff;
    border: 1px solid #e6eaf2;
    border-radius: 8px;
    transition: all 0.18s ease;
}

.ntf-pager-btn:hover {
    color: #2f5cff;
    border-color: #cfdaf5;
}

.ntf-pager-btn.is-current {
    color: #fff;
    background: #2f5cff;
    border-color: #2f5cff;
}

/* ---------------------------------------------------------------
   Empty state
--------------------------------------------------------------- */
.ntf-empty {
    max-width: 520px;
    margin: 0 auto;
    padding: 54px 30px;
    text-align: center;
    background: #fff;
    border: 1px dashed #dde3ee;
    border-radius: 16px;
}

.ntf-empty i {
    display: block;
    margin-bottom: 16px;
    font-size: 44px;
    color: #cbd4e4;
}

.ntf-empty h3 {
    margin-bottom: 8px;
    font-size: 19px;
    font-weight: 700;
}

.ntf-empty p {
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 2;
}

@media (max-width: 767px) {
    .ntf-page-hero-inner {
        padding: 96px 0 46px;
    }
    .ntf-page-hero h1 {
        font-size: 26px;
    }
}

/* ============================================================
   Entry page (products and content pages share it)
============================================================ */
.ntf-entry-media {
    position: relative;
    padding: 22px;
    background: #fff;
    border: 1px solid #e6eaf2;
    border-radius: 16px;
    box-shadow: 0 26px 48px -34px rgba(18, 22, 58, 0.5);
}

.ntf-entry-media a {
    display: block;
    position: relative;
    text-align: center;
}

.ntf-entry-media img {
    max-width: 100%;
    max-height: 380px;
    width: auto;
}

.ntf-entry-zoom {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 40px;
    font-size: 15px;
    line-height: 40px;
    text-align: center;
    color: #46506b;
    background: #f2f5fb;
    border-radius: 10px;
    transition: all 0.18s ease;
}

.ntf-entry-media a:hover .ntf-entry-zoom {
    color: #fff;
    background: #2f5cff;
}

.ntf-entry-wide {
    margin: 0 auto;
    float: none;
}

.ntf-entry-title {
    margin: 12px 0 0;
    font-size: 27px;
    font-weight: 800;
}

.ntf-entry-lead {
    margin: 12px 0 0;
    font-size: 15.5px;
    line-height: 2.1;
}

/* the stored HTML carries the editor's own sizes and families; the page's own
   scale wins, the same way it does in the landing page's about box */
.ntf-entry-body {
    margin-top: 20px;
}

.ntf-entry-body p,
.ntf-entry-body span,
.ntf-entry-body div,
.ntf-entry-body li {
    font-family: inherit !important;
    font-size: 15px !important;
    line-height: 2.1 !important;
    color: #5b6480 !important;
}

.ntf-entry-body strong,
.ntf-entry-body b {
    color: #12163a !important;
}

/* a spec sheet is stored as one paragraph per line ("ولتاژ: 12"); the
   controller flags that shape so the rows can be ruled like a table, while a
   prose page such as «درباره ما» keeps ordinary paragraph spacing */
.ntf-entry-body p {
    margin: 0 0 14px;
}

.ntf-entry-body.is-specs p {
    margin: 0;
    padding: 11px 2px;
    border-bottom: 1px solid #eef1f7;
}

.ntf-entry-body.is-specs p:last-child {
    border-bottom: 0;
}

.ntf-entry-body img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.ntf-entry-body ul,
.ntf-entry-body ol {
    padding-right: 20px;
    margin: 0 0 14px;
}

.ntf-entry-block {
    margin-top: 26px;
}

.ntf-entry-block h3 {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 700;
}

.ntf-chips {
    margin: 0 -4px;
}

.ntf-chip {
    display: inline-block;
    padding: 6px 14px;
    margin: 0 4px 8px;
    font-size: 13px;
    color: #46506b;
    background: #f2f5fb;
    border: 1px solid #e6eaf2;
    border-radius: 20px;
}

/* the template used to draw this button with ~170 lines of gradient and a
   keyframed CSS cloud */
.ntf-download {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 14px 22px;
    background: #e5f7ee;
    border: 1px solid #bfe9d4;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.ntf-download:hover {
    background: #d8f2e5;
    transform: translateY(-2px);
}

.ntf-download-icon {
    -ms-flex: none;
    flex: none;
    width: 42px;
    height: 42px;
    margin-left: 14px;
    font-size: 17px;
    line-height: 42px;
    text-align: center;
    color: #fff;
    background: #10a35a;
    border-radius: 10px;
}

.ntf-download-text b {
    display: block;
    font-size: 15px;
    color: #12163a;
}

.ntf-download-text small {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    color: #6b8a79;
}

.ntf-entry-actions {
    padding-top: 24px;
    margin-top: 28px;
    border-top: 1px solid #eef1f7;
}

.ntf-btn-outline {
    color: #2f5cff;
    background: transparent;
    border-color: #cfdaf5;
}

.ntf-btn-outline:hover,
.ntf-btn-outline:focus {
    color: #fff;
    background: #2f5cff;
    border-color: #2f5cff;
    transform: translateY(-2px);
}

.ntf-btn-outline i {
    margin-left: 6px;
    font-size: 13px;
}

.ntf-entry-backlink {
    margin-top: 10px;
    text-align: center;
}

@media (max-width: 991px) {
    .ntf-entry-media {
        margin-bottom: 26px;
    }
    .ntf-entry-title {
        font-size: 22px;
    }
}

/* ============================================================
   Landing hero — bold variant (preview: /?v=2)
   Namespaced .ntf-hero2-* so it cannot touch the approved hero.
============================================================ */
.ntf-hero2 {
    position: relative;
    overflow: hidden;
    background: #070b24;
}

.ntf-hero2-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: center;
    background-size: cover;
    opacity: 0.75;
    filter: brightness(1.25) contrast(1.05);
}

/* two slow coloured hazes give the flat scrim some depth */
.ntf-hero2-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.ntf-hero2-glow-a {
    top: -160px;
    right: -80px;
    width: 520px;
    height: 520px;
    background: rgba(47, 92, 255, 0.42);
    animation: ntf-drift-a 15s ease-in-out infinite alternate;
}

.ntf-hero2-glow-b {
    bottom: -220px;
    left: -60px;
    width: 460px;
    height: 460px;
    background: rgba(0, 194, 168, 0.26);
    animation: ntf-drift-b 18s ease-in-out infinite alternate;
}

@keyframes ntf-drift-a {
    to { transform: translate3d(-70px, 60px, 0) scale(1.12); }
}

@keyframes ntf-drift-b {
    to { transform: translate3d(60px, -50px, 0) scale(1.08); }
}

/* a faint technical grid, fading out before it reaches the copy */
.ntf-hero2-grid {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 62px 62px;
    -webkit-mask-image: radial-gradient(ellipse at 20% 50%, #000 0%, transparent 72%);
    mask-image: radial-gradient(ellipse at 20% 50%, #000 0%, transparent 72%);
}

.ntf-hero2:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to left, #070b24 4%, rgba(7, 11, 36, 0.9) 34%, rgba(7, 11, 36, 0.45) 72%, rgba(7, 11, 36, 0.2) 100%);
}

.ntf-hero2-inner {
    position: relative;
    z-index: 2;
    padding: 122px 0 96px;
}

.ntf-hero2-copy {
    max-width: 660px;
}

.ntf-hero2-badge {
    display: inline-block;
    padding: 7px 18px;
    margin-bottom: 22px;
    font-size: 13px;
    font-weight: 700;
    color: #a8c4ff;
    background: rgba(47, 92, 255, 0.16);
    border: 1px solid rgba(168, 196, 255, 0.3);
    border-radius: 24px;
}

.ntf-hero2-badge i {
    margin-left: 7px;
    color: #ffd25e;
}

.ntf-hero2 h1 {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.35;
    color: #fff;
}

/* the promise gets a highlight rather than just a colour change */
.ntf-hero2-mark {
    position: relative;
    display: inline-block;
    color: #fff;
    white-space: nowrap;
}

.ntf-hero2-mark:after {
    content: '';
    position: absolute;
    right: -6px;
    left: -6px;
    bottom: 6px;
    height: 16px;
    background: linear-gradient(90deg, #2f5cff, #00c2a8);
    border-radius: 4px;
    opacity: 0.85;
    z-index: -1;
}

.ntf-hero2-lead {
    max-width: 540px;
    margin: 20px 0 32px;
    font-size: 16.5px;
    line-height: 2.1;
    color: rgba(255, 255, 255, 0.76);
}

/* ---------------------------------------------------------------
   Finder card
--------------------------------------------------------------- */
.ntf-finder {
    max-width: 560px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 30px 60px -34px rgba(0, 0, 0, 0.9);
}

.ntf-finder-tabs {
    margin-bottom: 14px;
}

.ntf-finder-tab {
    padding: 7px 0;
    margin-left: 22px;
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    background: none;
    border: 0;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.18s ease;
}

.ntf-finder-tab:hover {
    color: rgba(255, 255, 255, 0.85);
}

.ntf-finder-tab.is-active {
    color: #fff;
    border-bottom-color: #2f5cff;
}

.ntf-finder-pane {
    display: none;
}

.ntf-finder-pane.is-active {
    display: -ms-flexbox;
    display: flex;
}

.ntf-finder-field {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-width: 0;
    height: 50px;
    padding: 0 16px;
    font-family: inherit;
    font-size: 14.5px;
    color: #12163a;
    background: #fff;
    border: 0;
    border-radius: 10px;
    outline: none;
}

.ntf-finder-field::placeholder {
    color: #9aa3b8;
}

.ntf-finder-go {
    -ms-flex: none;
    flex: none;
    height: 50px;
    padding: 0 24px;
    margin-right: 10px;
    font-family: inherit;
    font-size: 14.5px;
    font-weight: 700;
    color: #fff;
    background: #2f5cff;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.18s ease;
}

.ntf-finder-go:hover {
    background: #1b3fd4;
}

.ntf-finder-go i {
    margin-left: 6px;
    font-size: 13px;
}

/* ---------------------------------------------------------------
   Counters
--------------------------------------------------------------- */
.ntf-hero2-facts {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 38px;
}

.ntf-hero2-fact {
    margin-left: 52px;
}

.ntf-hero2-fact:last-child {
    margin-left: 0;
}

.ntf-hero2-num {
    display: block;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.35;
    color: #fff;
}

.ntf-hero2-label {
    display: block;
    margin-top: 2px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.55);
}

/* ---------------------------------------------------------------
   Trust strip
--------------------------------------------------------------- */
.ntf-hero2-trust {
    position: relative;
    z-index: 2;
    padding: 18px 0;
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.ntf-hero2-trust .container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.ntf-hero2-trust-label {
    -ms-flex: none;
    flex: none;
    margin-left: 26px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.5);
}

.ntf-hero2-trust-logos {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* most of these logos are JPEGs on a white ground, so they cannot be knocked
   out to a silhouette -- they get a light chip and a muted tint instead */
.ntf-hero2-trust-logos img {
    max-height: 30px;
    padding: 5px 10px;
    margin-left: 12px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 7px;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: all 0.2s ease;
}

.ntf-hero2-trust-logos img:hover {
    filter: none;
    opacity: 1;
}

/* ---------------------------------------------------------------
   Scroll cue
--------------------------------------------------------------- */
.ntf-hero2-scroll {
    position: absolute;
    z-index: 3;
    left: 40px;
    bottom: 96px;
    width: 42px;
    height: 42px;
    font-size: 17px;
    line-height: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    animation: ntf-bob 2.2s ease-in-out infinite;
}

.ntf-hero2-scroll:hover {
    color: #fff;
    border-color: #fff;
}

@keyframes ntf-bob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(7px); }
}

/* motion is decorative here; anyone who asked for less should get none */
@media (prefers-reduced-motion: reduce) {
    .ntf-hero2-glow,
    .ntf-hero2-scroll {
        animation: none;
    }
}

@media (max-width: 991px) {
    .ntf-hero2 h1 { font-size: 40px; }
    .ntf-hero2-scroll { display: none; }
}

@media (max-width: 575px) {
    .ntf-hero2-inner { padding: 96px 0 66px; }
    .ntf-hero2 h1 { font-size: 29px; }
    .ntf-hero2-lead { font-size: 15px; }
    .ntf-finder-pane.is-active { -ms-flex-wrap: wrap; flex-wrap: wrap; }
    .ntf-finder-go { width: 100%; margin: 10px 0 0; }
    .ntf-hero2-fact { -ms-flex: 0 0 50%; flex: 0 0 50%; margin: 0 0 16px; }
    .ntf-hero2-trust-label { -ms-flex: 0 0 100%; flex: 0 0 100%; margin: 0 0 10px; }
}
