/* ==========================================================================
   eSignClub — New Frontend — Design System / Common Styles
   Shared tokens, resets, layout primitives and reusable components used by
   every page. Page-specific CSS files only add layout unique to that page.
   ========================================================================== */

:root {
    /* Brand colors */
    --nf-green-50: #ecfdf3;
    --nf-green-100: #d9f7e3;
    --nf-green-500: #22a55e;
    --nf-green-600: #16a34a;
    --nf-green-700: #0f7a3d;
    --nf-green-800: #0b5c30;

    --nf-navy-900: #0a1c38;
    --nf-navy-800: #0c2444;
    --nf-navy-700: #0f2e56;
    --nf-teal-700: #0a3d3f;

    --nf-orange-500: #f97316;
    --nf-blue-500: #2563eb;
    --nf-purple-500: #7c3aed;

    --nf-text: #10203a;
    --nf-text-muted: #5b6b84;
    --nf-text-soft: #8592a6;

    --nf-border: #e6ebf1;
    --nf-bg: #ffffff;
    --nf-bg-soft: #f6f9fb;
    --nf-bg-muted: #eef2f6;

    --nf-radius-sm: 8px;
    --nf-radius-md: 12px;
    --nf-radius-lg: 18px;
    --nf-radius-pill: 999px;

    --nf-shadow-sm: 0 1px 2px rgba(16, 32, 58, 0.06);
    --nf-shadow-md: 0 8px 24px rgba(16, 32, 58, 0.08);
    --nf-shadow-lg: 0 20px 48px rgba(16, 32, 58, 0.14);

    --nf-container: 1280px;
    --nf-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
    /* Prevent Chromium-based mobile browsers (Samsung Internet, OEM Android
       browsers) from auto-boosting font sizes based on column-width
       heuristics — this renders inconsistently across devices/browsers at
       the same viewport width and was silently widening text past
       already-tight mobile layouts. */
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
}

/* Resets */
.nf *,
.nf *::before,
.nf *::after {
    box-sizing: border-box;
}

.nf {
    font-family: var(--nf-font);
    color: var(--nf-text);
    background: var(--nf-bg);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

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

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

.nf ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nf button {
    font-family: inherit;
    cursor: pointer;
}

.nf h1, .nf h2, .nf h3, .nf h4, .nf h5 {
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.nf p {
    margin: 0;
}

/* Layout */
.nf-container {
    width: 100%;
    max-width: var(--nf-container);
    margin: 0 auto;
    padding: 0 24px;
}

.nf-section {
    padding: 88px 0;
}

.nf-section--sm {
    padding: 56px 0;
}

.nf-section--soft {
    background: var(--nf-bg-soft);
}

.nf-section--navy {
    background: var(--nf-navy-900);
    color: #fff;
}

@media (max-width: 991px) {
    .nf-section {
        padding: 64px 0;
    }
}

@media (max-width: 575px) {
    .nf-section {
        padding: 48px 0;
    }

    .nf-container {
        padding: 0 18px;
    }
}

/* Eyebrow / badge label */
.nf-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--nf-green-700);
    background: var(--nf-green-50);
    border: 1px solid var(--nf-green-100);
    padding: 6px 14px;
    border-radius: var(--nf-radius-pill);
    margin-bottom: 16px;
}

.nf-eyebrow--light {
    color: #d9fce7;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
}

.nf-section-header {
    max-width: 720px;
    margin-bottom: 48px;
}

.nf-section-header--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.nf-title {
    font-size: 36px;
    color: var(--nf-navy-900);
}

.nf-title .nf-accent {
    color: var(--nf-green-600);
}

.nf-subtitle {
    margin-top: 14px;
    font-size: 16px;
    color: var(--nf-text-muted);
}

@media (max-width: 575px) {
    .nf-title {
        font-size: 28px;
    }
}

/* Buttons */
.nf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: var(--nf-radius-sm);
    border: 1px solid transparent;
    transition: all 0.18s ease;
    white-space: nowrap;
}

.nf-btn--sm {
    padding: 9px 18px;
    font-size: 14px;
}

.nf-btn--primary {
    background: linear-gradient(135deg, var(--nf-green-500), #0d9488);
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.28);
}

.nf-btn--primary:hover {
    background: linear-gradient(135deg, var(--nf-green-500), #0d9488);
    transform: translateY(-1px);
}

.nf-btn--navy {
    background: var(--nf-navy-800);
    color: #fff;
}

.nf-btn--navy:hover {
    background: var(--nf-navy-900);
    transform: translateY(-1px);
}

.nf-btn--outline {
    background: transparent;
    color: var(--nf-navy-900);
    border-color: var(--nf-border);
}

.nf-btn--outline:hover {
    border-color: var(--nf-green-600);
    color: var(--nf-green-700);
}

.nf-btn--outline-light {
    background: transparent;
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.35);
}

.nf-btn--outline-light:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.nf-btn--outline-green {
    background: transparent;
    color: var(--nf-green-700);
    border-color: var(--nf-green-600);
}

.nf-btn--outline-green:hover {
    background: var(--nf-green-50);
}

.nf-btn--white {
    background: #fff;
    color: var(--nf-navy-900);
}

.nf-btn--white:hover {
    background: #f1f5f9;
}

.nf-btn--block {
    width: 100%;
}

/* Cards */
.nf-card {
    background: #fff;
    border: 1px solid var(--nf-border);
    border-radius: var(--nf-radius-md);
    padding: 28px;
}

/* Icon boxes */
.nf-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--nf-radius-sm);
    background: var(--nf-green-50);
    color: var(--nf-green-700);
    flex-shrink: 0;
}

.nf-icon svg {
    width: 22px;
    height: 22px;
}

.nf-icon--orange {
    background: #fff1e6;
    color: var(--nf-orange-500);
}

.nf-icon--navy {
    background: var(--nf-navy-800);
    color: #fff;
}

.nf-icon--blue {
    background: #eaf0ff;
    color: var(--nf-blue-500);
}

.nf-icon--round {
    border-radius: 50%;
}

.nf-icon--lg {
    width: 60px;
    height: 60px;
}

.nf-icon--lg svg {
    width: 26px;
    height: 26px;
}

/* Grids */
.nf-grid {
    display: grid;
    gap: 24px;
}

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

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

.nf-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.nf-grid--5 {
    grid-template-columns: repeat(5, 1fr);
}

.nf-grid--6 {
    grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 991px) {
    .nf-grid--3, .nf-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 575px) {
    .nf-grid--2, .nf-grid--3, .nf-grid--4, .nf-grid--5, .nf-grid--6 {
        grid-template-columns: 1fr;
    }
}

/* Checklist */
.nf-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--nf-text-muted);
    margin-bottom: 10px;
}

.nf-check-list li:last-child {
    margin-bottom: 0;
}

.nf-check-list svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: var(--nf-green-600);
    margin-top: 2px;
}

/* Breadcrumb */
.nf-breadcrumb {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 20px;
}

.nf-breadcrumb a:hover {
    color: #fff;
}

.nf-breadcrumb .nf-crumb-current {
    color: var(--nf-green-500);
}

/* Dark gradient page hero (used on inner pages) */
.nf-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(115deg, var(--nf-navy-900) 0%, var(--nf-navy-700) 55%, var(--nf-teal-700) 100%);
    color: #fff;
    padding: 56px 0 64px;
}

.nf-hero__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.nf-hero__content {
    max-width: 620px;
}

.nf-hero h1 {
    font-size: 42px;
    color: #fff;
}

.nf-hero p {
    margin-top: 16px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 560px;
}

.nf-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 24px;
}

.nf-hero__meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.nf-hero__meta-item svg {
    width: 18px;
    height: 18px;
    color: var(--nf-green-500);
    flex-shrink: 0;
}

.nf-hero__art {
    flex-shrink: 0;
    width: 320px;
}

@media (max-width: 991px) {
    .nf-hero__inner {
        flex-direction: column;
        text-align: center;
    }

    .nf-hero__content {
        max-width: 100%;
    }

    .nf-hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .nf-hero__meta {
        justify-content: center;
    }

    .nf-hero__art {
        width: 240px;
    }
}

@media (max-width: 575px) {
    .nf-hero h1 {
        font-size: 30px;
    }
}

/* Stat block */
.nf-stat {
    text-align: center;
}

.nf-stat__num {
    font-size: 30px;
    font-weight: 800;
    color: var(--nf-navy-900);
}

.nf-stat__label {
    margin-top: 4px;
    font-size: 13px;
    color: var(--nf-text-muted);
}

/* Accordion (Terms / Privacy pages) */
.nf-accordion-item {
    background: #fff;
    border: 1px solid var(--nf-border);
    border-radius: var(--nf-radius-md);
    margin-bottom: 14px;
    overflow: hidden;
}

.nf-accordion-head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 24px;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.nf-accordion-head h3 {
    font-size: 16px;
    color: var(--nf-navy-900);
    margin-bottom: 4px;
}

.nf-accordion-head p {
    font-size: 14px;
    color: var(--nf-text-muted);
}

.nf-accordion-chevron {
    margin-left: auto;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--nf-text-soft);
    transition: transform 0.2s ease;
    margin-top: 2px;
}

.nf-accordion-item.is-open {
    border-color: var(--nf-green-200, #bbf7d0);
    background: var(--nf-green-50);
}

.nf-accordion-item.is-open .nf-accordion-chevron {
    transform: rotate(180deg);
    color: var(--nf-green-600);
}

.nf-accordion-head .nf-icon {
    margin-top: 1px;
}

.nf-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.nf-accordion-body-inner {
    padding: 0 24px 22px 76px;
    font-size: 14px;
    color: var(--nf-text-muted);
}

/* ==========================================================================
   Banner CTA strip — shared premium component (partials/cta-banner)
   ========================================================================== */
.nf-cta-banner {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: linear-gradient(115deg, var(--nf-navy-900), var(--nf-teal-700));
    border-radius: var(--nf-radius-lg);
    padding: 32px 36px;
    color: #fff;
    flex-wrap: wrap;
}

/* Ambient depth: soft drifting glows + slow diagonal sheen + drifting sparks */
.nf-cta-banner__glow {
    position: absolute;
    z-index: 0;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
}

.nf-cta-banner__glow--1 {
    top: -120px;
    left: -60px;
    background: radial-gradient(circle, rgba(34, 165, 94, 0.35), transparent 70%);
    animation: ctaGlowDrift 9s ease-in-out infinite;
}

.nf-cta-banner__glow--2 {
    bottom: -140px;
    right: -40px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.35), transparent 70%);
    animation: ctaGlowDrift 11s ease-in-out infinite reverse;
}

@keyframes ctaGlowDrift {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(24px, 14px) scale(1.08);
    }
}

.nf-cta-banner__sheen {
    position: absolute;
    z-index: 0;
    top: -20%;
    left: -30%;
    width: 30%;
    height: 140%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.07), transparent);
    transform: skewX(-18deg);
    animation: ctaSheenSweep 7s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ctaSheenSweep {
    0%, 15% {
        left: -30%;
    }
    55%, 100% {
        left: 130%;
    }
}

.nf-cta-banner__particle {
    position: absolute;
    z-index: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--nf-green-500);
    opacity: 0;
    pointer-events: none;
}

.nf-cta-banner__particle--1 {
    left: 22%;
    bottom: 18%;
    animation: ctaParticleRise 5s ease-in-out infinite;
}

.nf-cta-banner__particle--2 {
    left: 78%;
    bottom: 30%;
    animation: ctaParticleRise 5s 1.6s ease-in-out infinite;
}

.nf-cta-banner__particle--3 {
    left: 55%;
    bottom: 12%;
    animation: ctaParticleRise 5s 3.2s ease-in-out infinite;
}

@keyframes ctaParticleRise {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    35% {
        opacity: .8;
    }
    100% {
        opacity: 0;
        transform: translateY(-46px);
    }
}

.nf-cta-banner__text {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Premium animated icon badge */
.nf-cta-banner__icon-wrap {
    position: relative;
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--nf-green-500), #0d9488);
    box-shadow: 0 0 0 8px rgba(34, 165, 94, 0.14), 0 16px 32px rgba(13, 148, 136, 0.4);
    animation: ctaIconGlow 2.8s ease-in-out infinite;
}

.nf-cta-banner__icon-wrap .nf-cta-banner__icon {
    display: flex;
    color: #fff;
}

.nf-cta-banner__icon-wrap .nf-cta-banner__icon svg {
    width: 28px;
    height: 28px;
}

@keyframes ctaIconGlow {
    0%, 100% {
        box-shadow: 0 0 0 8px rgba(34, 165, 94, 0.14), 0 16px 32px rgba(13, 148, 136, 0.4);
    }
    50% {
        box-shadow: 0 0 0 13px rgba(34, 165, 94, 0.08), 0 16px 32px rgba(13, 148, 136, 0.4);
    }
}

.nf-cta-banner__ring {
    position: absolute;
    inset: -9px;
    border-radius: 50%;
    border: 1.5px dashed rgba(255, 255, 255, 0.28);
    animation: ctaRingSpin 20s linear infinite;
}

@keyframes ctaRingSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.nf-cta-banner__text h3 {
    font-size: 18.5px;
    color: #fff;
    letter-spacing: -0.01em;
    max-width: 560px;
}

.nf-cta-banner__text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

.nf-cta-banner__actions {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Button micro-interactions — scoped to this component only, so the
   site-wide .nf-btn styles used elsewhere are never affected */
.nf-cta-banner .nf-btn {
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nf-cta-banner .nf-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    transition: left 0.55s ease;
}

.nf-cta-banner .nf-btn:hover::before {
    left: 130%;
}

.nf-cta-banner .nf-btn--primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 28px rgba(13, 148, 136, 0.45);
}

.nf-cta-banner .nf-btn--outline-light:hover {
    transform: translateY(-2px);
}

/* Scroll-reveal entrance (shared .nf-reveal utility, see below) */

@media (max-width: 767px) {
    .nf-cta-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .nf-cta-banner__glow {
        width: 180px;
        height: 180px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nf-cta-banner__glow,
    .nf-cta-banner__sheen,
    .nf-cta-banner__particle,
    .nf-cta-banner__icon-wrap,
    .nf-cta-banner__ring {
        animation: none;
    }
}

/* ==========================================================================
   Shared scroll-reveal utility (used by the CTA banner and available for
   reuse by any future shared component)
   ========================================================================== */
.nf-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.nf-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Header
   ========================================================================== */
.nf-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid var(--nf-border);
}

.nf-header__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 76px;
}

.nf-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nf-logo__badge {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    padding: 6px 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.nf-logo__badge .nf-logo__img {
    display: block;
    height: 70px;
    width: auto;
}

.nf-logo > .nf-logo__img {
    display: block;
    height: 70px;
    width: auto;
}

.nf-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

/* Drawer-only auth actions — hidden on the horizontal desktop nav, shown
   only inside the mobile drawer (see the max-width: 991px block below). */
.nf-nav__actions {
    display: none;
}

.nf-nav a {
    display: block;
    padding: 10px 16px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--nf-text-muted);
    border-radius: var(--nf-radius-sm);
    transition: color 0.15s ease, background 0.15s ease;
}

.nf-nav a:hover {
    color: var(--nf-navy-900);
    background: var(--nf-bg-muted);
}

.nf-nav a.is-active {
    color: var(--nf-green-700);
}

.nf-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* The shared .nf-btn--outline-light class is styled for dark backgrounds
   (hero sections, the CTA banner) — override it here so the header's own
   Login button reads correctly now that the header background is light. */
.nf-header__actions .nf-btn--outline-light,
.nf-nav__actions .nf-btn--outline-light {
    color: var(--nf-navy-900) !important;
    border-color: var(--nf-border);
}

.nf-header__actions .nf-btn--outline-light:hover,
.nf-nav__actions .nf-btn--outline-light:hover {
    border-color: var(--nf-green-600);
    background: var(--nf-bg-muted);
}

.nf-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--nf-border);
    border-radius: var(--nf-radius-sm);
    flex-shrink: 0;
}

.nf-nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 0 auto;
    background: var(--nf-navy-900);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nf-nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nf-nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nf-nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Measured on real render: the logo + all 6 nav links + Login/Get Started
   Free needs exactly ~1280px of unbroken row width with zero shrink
   available (nav links use white-space: nowrap and nothing in the row can
   flex-shrink) — below that it overflows horizontally by exactly the
   difference. 1320px keeps ~40px of real margin above that hard minimum so
   scrollbar width and cross-browser font-metric variance can't tip it into
   overflow the way a breakpoint pinned to the exact minimum would. */
@media (max-width: 1320px) {
    .nf-nav-toggle {
        display: flex;
    }

    .nf-nav {
        position: fixed;
        /* --nf-header-h is measured live in common.js (the header's real
           rendered height varies with font metrics/OEM text-boosting/locale),
           with 76px kept only as a fallback for browsers without JS/custom
           properties. */
        top: var(--nf-header-h, 76px);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--nf-bg-soft);
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 20px;
        transform: translateX(100%);
        transition: transform 0.25s ease;
        overflow-y: auto;
    }

    .nf-nav.is-open {
        transform: translateX(0);
    }

    .nf-nav a {
        padding: 14px 16px;
        font-size: 16px;
    }

    .nf-nav__actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 14px;
        padding-top: 18px;
        border-top: 1px solid var(--nf-border);
    }

    .nf-nav__actions .nf-btn {
        width: 100%;
    }

    .nf-header__actions .nf-btn--outline-light {
        display: none;
    }

    body.nf-nav-open {
        overflow: hidden;
    }
}

/* ==========================================================================
   Header — extra-narrow tiers.
   Measured on real render: the logo + "Get Started Free" + hamburger row
   has ZERO spare width at ~382px viewport (the flex gap sits exactly at its
   floor with nothing left to give). Anything narrower — a foldable's cover
   screen, or a phone with the OS display-size/font-scale setting turned up
   (very common on Android, effectively shrinking the usable CSS viewport)
   — pushes this row into real overflow, since .nf-header has no
   overflow:hidden to contain it. These tiers give it headroom well before
   that point instead of relying on a single 991px breakpoint.
   ========================================================================== */
@media (max-width: 480px) {
    .nf-logo__badge .nf-logo__img {
        height: 26px;
    }

    .nf-logo__badge {
        padding: 5px 9px;
    }

    .nf-logo > .nf-logo__img {
        height: 27px;
    }

    .nf-header__bar {
        gap: 12px;
    }
}

@media (max-width: 400px) {
    /* The primary CTA moves into the drawer (.nf-nav__actions) at this
       width — the header bar only needs to fit the logo + hamburger. */
    .nf-header__actions .nf-btn--primary {
        display: none;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.nf-footer {
    background: var(--nf-navy-900);
    color: rgba(255, 255, 255, 0.65);
    padding: 64px 0 0;
}

.nf-footer__top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
    gap: 32px;
    padding-bottom: 48px;
}

.nf-footer__brand p {
    margin-top: 14px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    max-width: 260px;
}

.nf-footer__social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.nf-footer__social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
}

.nf-footer__social a:hover {
    background: var(--nf-green-600);
}

.nf-footer__social svg {
    width: 15px;
    height: 15px;
    color: #fff;
}

.nf-footer h4 {
    font-size: 14px;
    color: #fff;
    margin-bottom: 18px;
}

.nf-footer__links li {
    margin-bottom: 12px;
}

.nf-footer__links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.15s ease;
}

.nf-footer__links a:hover, .nf-footer__links a.is-active {
    color: var(--nf-green-500);
}

.nf-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.6);
}

.nf-footer__contact svg {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    color: var(--nf-green-500);
    flex-shrink: 0;
}

.nf-footer__contact a {
    transition: color 0.15s ease;
}

.nf-footer__contact a:hover {
    color: #fff;
}

.nf-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    flex-wrap: wrap;
    gap: 10px;
}

.nf-footer__bottom-links {
    display: flex;
    gap: 20px;
}

.nf-footer__bottom-links a:hover {
    color: #fff;
}

@media (max-width: 991px) {
    .nf-footer__top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .nf-footer__top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .nf-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==========================================================================
   Product pages (Aadhaar eSign / Draw Signature / DSC Certificate)
   ========================================================================== */
.prod-hero {
    padding: 48px 0 32px;
}

.prod-hero__main {
    display: flex;
    gap: 40px;
    align-items: center;
}

.prod-hero__intro {
    flex: 0 0 360px;
}

.prod-hero__mockup {
    flex: 1;
    min-width: 0;
    position: relative;
}

/* Decorative connector arrows (desktop only — layout stacks below 1199px) */
.prod-hero-arrow {
    position: absolute;
    pointer-events: none;
    z-index: 3;
}

.prod-hero-arrow--flow {
    top: 30px;
    left: -50px;
    width: 66px;
    height: 40px;
}

.prod-hero-arrow--sig {
    top: 56%;
    left: -54px;
    width: 64px;
    height: 52px;
}

@media (max-width: 1199px) {
    .prod-hero-arrow {
        display: none;
    }
}

.prod-hero h1 {
    font-size: 38px;
    color: var(--nf-navy-900);
    margin-top: 14px;
}

.prod-hero h1 .nf-accent {
    color: var(--nf-green-600);
}

.prod-hero p.prod-lead {
    margin-top: 16px;
    font-size: 15.5px;
    color: var(--nf-text-muted);
}

.prod-hero__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 26px;
    flex-wrap: nowrap;
}

.prod-hero__badges {
    display: flex;
    gap: 20px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.prod-hero__badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--nf-text-muted);
}

.prod-hero__badge svg {
    width: 18px;
    height: 18px;
    color: var(--nf-green-600);
    flex-shrink: 0;
}

/* Browser mockup */
.prod-browser {
    background: #fff;
    border-radius: var(--nf-radius-lg);
    border: 1px solid var(--nf-border);
    box-shadow: var(--nf-shadow-lg);
    overflow: hidden;
}

/* Static product-screenshot image used in place of the live prod-browser markup */
.prod-browser-shot {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--nf-radius-lg);
    border: 1px solid var(--nf-border);
    box-shadow: var(--nf-shadow-lg);
}

.prod-browser__bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: var(--nf-navy-900);
    border-bottom: 1px solid var(--nf-border);
}

.prod-browser__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--nf-border);
}

.prod-browser__dot:nth-child(1) {
    background: #f87171;
}

.prod-browser__dot:nth-child(2) {
    background: #fbbf24;
}

.prod-browser__dot:nth-child(3) {
    background: #4ade80;
}

.prod-browser__title {
    margin-left: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--nf-text-soft);
}

.prod-browser__winctrls {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--nf-text-soft);
}

.prod-browser__winctrls svg {
    width: 14px;
    height: 14px;
}

.prod-flowbar {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 22px 16px;
    border-bottom: 1px solid var(--nf-border);
    flex-wrap: wrap;
}

.prod-flowbar__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 72px;
    flex-shrink: 0;
}

.prod-flowbar__circle {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prod-flowbar__num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--nf-bg-muted);
    color: var(--nf-text-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12.5px;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.prod-flowbar__label {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--nf-text-soft);
}

.prod-flowbar__step.is-done .prod-flowbar__num {
    background: linear-gradient(135deg, var(--nf-green-500), #0d9488);
    color: #fff;
}

.prod-flowbar__step.is-done .prod-flowbar__label {
    color: var(--nf-navy-900);
}

.prod-flowbar__step.is-active .prod-flowbar__num {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--nf-green-500), #0d9488);
    color: #fff;
    font-size: 15px;
    box-shadow: 0 0 0 6px var(--nf-green-50), 0 6px 16px rgba(34, 197, 94, 0.35);
}

.prod-flowbar__step.is-active .prod-flowbar__label {
    color: var(--nf-navy-900);
    font-weight: 700;
}

.prod-flowbar__line {
    width: 44px;
    height: 2px;
    background: var(--nf-border);
    margin-top: 19px;
    flex-shrink: 0;
}

.prod-flowbar__line.is-done {
    background: linear-gradient(135deg, var(--nf-green-500), #0d9488);
}

@media (max-width: 575px) {
    .prod-flowbar__step {
        width: 58px;
    }

    .prod-flowbar__line {
        width: 20px;
    }
}

.prod-browser__body {
    display: flex;
    gap: 16px;
    padding: 20px;
    align-items: stretch;
}

.prod-panel-left {
    flex: 0 0 44%;
    background: var(--nf-navy-900);
    border-radius: var(--nf-radius-md);
    padding: 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Stacked OTP layout: light confirmation card above the dark OTP entry card */
.prod-otp-stack {
    flex: 0 0 44%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.prod-otp-stack .prod-panel-left {
    flex: 1 1 auto;
}

.prod-otp-confirm {
    background: var(--nf-bg-soft);
    border: 1px solid var(--nf-border);
    border-radius: var(--nf-radius-md);
    padding: 16px;
    text-align: center;
}

.prod-otp-confirm p {
    font-size: 12px;
    color: var(--nf-text-muted);
    margin-bottom: 6px;
}

.prod-otp-confirm strong {
    font-size: 15px;
    color: var(--nf-navy-900);
}

.prod-panel-left p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.65);
}

.prod-panel-left strong {
    display: block;
    font-size: 15px;
    color: #fff;
    margin-top: 4px;
}

.prod-otp-boxes {
    display: flex;
    gap: 6px;
}

.prod-otp-boxes span {
    width: 30px;
    height: 36px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
}

.prod-timer {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.5);
}

.prod-secure-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: auto;
}

.prod-secure-note svg {
    width: 13px;
    height: 13px;
    color: var(--nf-green-500);
}

.prod-panel-right {
    flex: 1;
    background: #fff;
    border: 1px solid var(--nf-border);
    border-radius: var(--nf-radius-md);
    padding: 16px;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.prod-panel-right__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11.5px;
    color: var(--nf-text-soft);
    margin-bottom: 10px;
}

.prod-doc-title {
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    color: var(--nf-navy-900);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.prod-doc-lines span {
    display: block;
    height: 6px;
    background: var(--nf-bg-muted);
    border-radius: 3px;
    margin-bottom: 8px;
}

.prod-doc-lines span:nth-child(3n) {
    width: 70%;
}

.prod-drop-sig {
    margin: auto 0 0 auto;
    width: 55%;
    height: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    border: 1.5px dashed var(--nf-green-600);
    border-radius: var(--nf-radius-sm);
    padding: 14px 10px;
    text-align: center;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--nf-green-700);
    background: var(--nf-green-50);
}

.prod-drop-sig svg {
    width: 18px;
    height: 18px;
    color: var(--nf-green-600);
}

@media (max-width: 575px) {
    .prod-drop-sig {
        width: 100%;
    }
}

.prod-doc-sig {
    margin-top: auto;
    border-radius: var(--nf-radius-sm);
    padding: 10px 12px;
    background: var(--nf-green-50);
    border: 1px solid var(--nf-green-100);
    font-family: 'Brush Script MT', cursive;
    font-size: 22px;
    color: var(--nf-navy-900);
}

.prod-panel-right__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 11px;
    color: var(--nf-text-soft);
}

.prod-zoom-ctrl,
.prod-page-ctrl {
    display: flex;
    align-items: center;
    gap: 7px;
}

.prod-zoom-ctrl svg,
.prod-page-ctrl svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

/* Draw-signature tool (used in hero mockup panel) */
.prod-draw-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
}

.prod-draw-tabs button {
    padding: 7px 16px;
    font-size: 11.5px;
    font-weight: 600;
    border-radius: 6px;
    background: transparent;
    color: rgba(255, 255, 255, 0.55);
    border: none;
}

.prod-draw-tabs button.is-active {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.prod-color-swatches {
    display: flex;
    gap: 9px;
    margin-bottom: 14px;
}

.prod-color-swatches button {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid transparent;
    padding: 0;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.prod-color-swatches button.is-active {
    border-color: #fff;
}

.prod-sig-canvas-wrap {
    background: #fff;
    border-radius: var(--nf-radius-sm);
    flex: 1;
    min-height: 110px;
    position: relative;
    overflow: hidden;
}

.prod-sig-canvas {
    width: 100%;
    height: 100%;
    display: block;
    cursor: crosshair;
    touch-action: none;
}

.prod-sig-hint {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--nf-text-soft);
    pointer-events: none;
}

.prod-draw-tools {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.prod-draw-tools button {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 7px;
    border-radius: 6px;
}

.prod-draw-tools button:hover {
    background: rgba(255, 255, 255, 0.16);
}

.prod-pen-slider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.prod-pen-slider input[type="range"] {
    flex: 1;
    accent-color: var(--nf-green-500);
}

/* DSC certificate tool (used in hero mockup panel + detail cards) */
.prod-file-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--nf-radius-sm);
    padding: 10px 12px;
    margin-bottom: 12px;
}

.prod-file-row svg {
    width: 18px;
    height: 18px;
    color: var(--nf-green-500);
    flex-shrink: 0;
}

.prod-file-row div {
    flex: 1;
    min-width: 0;
}

.prod-file-row strong {
    display: block;
    font-size: 12px;
    color: #fff;
}

.prod-file-row span {
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.5);
}

.prod-file-row--light {
    background: var(--nf-bg-soft);
    border-color: var(--nf-border);
}

.prod-file-row--light strong {
    color: var(--nf-navy-900);
}

.prod-file-row--light span {
    color: var(--nf-text-soft);
}

.prod-file-row--light svg {
    color: var(--nf-green-600);
}

.prod-pwd-field {
    position: relative;
    margin-bottom: 12px;
}

.prod-pwd-field input,
.prod-pwd-field__fake {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--nf-radius-sm);
    padding: 10px 36px 10px 12px;
    font-size: 13px;
    letter-spacing: 3px;
    color: #fff;
}

.prod-pwd-field svg {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.5);
}

.prod-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.prod-checkbox input {
    accent-color: var(--nf-green-500);
}

.prod-cert-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    color: var(--nf-green-500);
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.prod-cert-status svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.prod-sig-stamp {
    margin-top: auto;
    border-radius: var(--nf-radius-sm);
    padding: 10px 12px;
    background: var(--nf-green-50);
    border: 1px solid var(--nf-green-100);
    display: flex;
    align-items: center;
    gap: 8px;
}

.prod-sig-stamp svg {
    width: 20px;
    height: 20px;
    color: var(--nf-green-600);
    flex-shrink: 0;
}

.prod-sig-stamp strong {
    display: block;
    font-size: 12px;
    color: var(--nf-navy-900);
}

.prod-sig-stamp span {
    font-size: 10px;
    color: var(--nf-text-muted);
}

@media (max-width: 991px) {
    .prod-hero__main {
        flex-direction: column;
    }

    .prod-hero__intro {
        flex: 1;
    }
}

@media (max-width: 767px) {
    .prod-browser__body {
        flex-direction: column;
    }

    .prod-panel-left {
        flex: none;
    }
}

/* Numbered flow (6/5 step overview row) */
.prod-flow-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 48px;
}

.prod-flow-row__item {
    flex: 1;
    text-align: center;
    position: relative;
}

.prod-flow-row__item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 22px;
    left: 60%;
    width: 80%;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--nf-border) 0 6px, transparent 6px 10px);
    z-index: 0;
}

.prod-flow-row__num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--nf-green-500), #0d9488);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    position: relative;
    z-index: 1;
    font-size: 15px;
}

.prod-flow-row__item h4 {
    font-size: 14.5px;
    color: var(--nf-navy-900);
    margin-bottom: 6px;
}

.prod-flow-row__item p {
    font-size: 12.5px;
    color: var(--nf-text-muted);
}

@media (max-width: 767px) {
    .prod-flow-row {
        flex-wrap: wrap;
    }

    .prod-flow-row__item {
        flex: 0 0 50%;
        margin-bottom: 24px;
    }

    .prod-flow-row__item::after {
        display: none;
    }
}

/* Detail step cards (6 mini walkthrough cards) */
.prod-detail-card {
    background: #fff;
    border: 1px solid var(--nf-border);
    border-radius: var(--nf-radius-md);
    padding: 18px;
    height: 100%;
}

.prod-detail-card__label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--nf-navy-900);
    margin-bottom: 14px;
}

.prod-detail-card__label span {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--nf-green-600);
    color: #fff;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.prod-dropzone {
    border: 1.5px dashed var(--nf-border);
    border-radius: var(--nf-radius-sm);
    padding: 20px 12px;
    text-align: center;
}

.prod-dropzone svg {
    width: 26px;
    height: 26px;
    color: var(--nf-text-soft);
    margin: 0 auto 10px;
}

.prod-dropzone p {
    font-size: 11.5px;
    color: var(--nf-text-muted);
    margin-bottom: 4px;
}

.prod-dropzone small {
    display: block;
    font-size: 10px;
    color: var(--nf-text-soft);
    margin-bottom: 12px;
}

.prod-mini-input {
    background: var(--nf-bg-soft);
    border: 1px solid var(--nf-border);
    border-radius: var(--nf-radius-sm);
    padding: 10px 12px;
    font-size: 12.5px;
    color: var(--nf-navy-900);
    margin-bottom: 10px;
}

.prod-mini-note {
    font-size: 10.5px;
    color: var(--nf-text-soft);
    margin-bottom: 12px;
}

.prod-mini-otp-msg {
    background: var(--nf-bg-soft);
    border-radius: var(--nf-radius-sm);
    padding: 10px 12px;
    font-size: 11px;
    color: var(--nf-text-muted);
    margin-bottom: 10px;
}

.prod-mini-otp-msg strong {
    color: var(--nf-navy-900);
}

.prod-mini-success {
    text-align: center;
    padding: 8px 0;
}

.prod-mini-success svg {
    width: 34px;
    height: 34px;
    color: var(--nf-green-600);
    margin: 0 auto 10px;
}

.prod-mini-success h5 {
    font-size: 13px;
    color: var(--nf-navy-900);
    margin-bottom: 4px;
}

.prod-mini-success p {
    font-size: 11px;
    color: var(--nf-text-muted);
    margin-bottom: 12px;
}

.prod-mini-list {
    font-size: 11px;
    color: var(--nf-text-muted);
    margin-bottom: 12px;
}

.prod-mini-list li {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.prod-mini-list svg {
    width: 13px;
    height: 13px;
    color: var(--nf-green-600);
    flex-shrink: 0;
}

/* Security / compliance row + testimonial combo */
.prod-security {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.prod-security__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: #fff;
    border: 1px solid var(--nf-border);
    border-radius: var(--nf-radius-md);
    padding: 24px;
}

.prod-security__item {
    text-align: center;
}

.prod-security__item svg {
    width: 26px;
    height: 26px;
    color: var(--nf-green-600);
    margin: 0 auto 10px;
}

.prod-security__item span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--nf-navy-900);
}

.prod-testimonial {
    background: #fff;
    border: 1px solid var(--nf-border);
    border-radius: var(--nf-radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.prod-testimonial svg {
    width: 24px;
    height: 24px;
    color: var(--nf-green-200, #bbf7d0);
    margin-bottom: 10px;
}

.prod-testimonial p {
    font-size: 13.5px;
    color: var(--nf-text-muted);
    flex: 1;
}

.prod-testimonial__author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}

.prod-testimonial__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--nf-bg-muted);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--nf-navy-900);
}

.prod-testimonial__author strong {
    display: block;
    font-size: 13px;
    color: var(--nf-navy-900);
}

.prod-testimonial__author span {
    font-size: 11.5px;
    color: var(--nf-text-muted);
}

@media (max-width: 991px) {
    .prod-security {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 575px) {
    .prod-security__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Utility */
.nf [hidden] {
    display: none !important;
}

.nf-text-center {
    text-align: center;
}

.nf-mt-0 {
    margin-top: 0 !important;
}

.nf-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}
