/*
Theme Name: NaijaTraffic SEO
Theme URI: https://naijatraffic.ng/
Description: Custom child theme for the NaijaTraffic SEO platform.
Author: NaijaTraffic
Author URI: https://naijatraffic.ng/
Template: astra
Version: 1.0.0
*/

/* Custom styles will be added here later. */
/* =========================================================
   NAIJATRAFFIC SEO — PUBLIC WEBSITE HEADER
   ========================================================= */

.nt-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e9edf2;
    z-index: 99999;
}

.nt-header-container {
    width: min(1180px, calc(100% - 40px));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Logo */

.nt-logo {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none !important;
    white-space: nowrap;
}

.nt-logo-main {
    color: #111827;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.7px;
}

.nt-logo-seo {
    color: #00A63F;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.7px;
}

/* Desktop Navigation */

.nt-navigation {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.nt-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    border: 0;
    background: transparent;
    color: #4b5563;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none !important;
    cursor: pointer;
    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.nt-nav-link:hover {
    color: #00A63F;
    background: #f3faf6;
}

.nt-nav-dropdown {
    position: relative;
}

.nt-nav-dropdown-button {
    appearance: none;
}

.nt-nav-arrow {
    font-size: 13px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.nt-nav-dropdown:hover .nt-nav-arrow {
    transform: rotate(180deg);
}

/* Desktop Dropdown */

.nt-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 220px;
    padding: 8px;
    background: #ffffff;
    border: 1px solid #e7ebef;
    border-radius: 12px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
}

.nt-nav-dropdown:hover .nt-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nt-dropdown-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    color: #374151;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none !important;
    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.nt-dropdown-menu a:hover {
    color: #00A63F;
    background: #f3faf6;
}

/* Header Actions */

.nt-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nt-login-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    color: #374151;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.nt-login-button:hover {
    color: #00A63F;
}

.nt-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    background: #00A63F;
    color: #ffffff !important;
    border: 1px solid #00A63F;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 5px 14px rgba(0, 166, 63, 0.16);
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.nt-header-cta:hover {
    background: #008f36;
    border-color: #008f36;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 166, 63, 0.20);
}

/* Mobile Menu Button */

.nt-mobile-menu {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nt-mobile-menu span {
    display: block;
    width: 22px;
    height: 2px;
    background: #111827;
    border-radius: 2px;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

/* Mobile Navigation */

.nt-mobile-navigation {
    display: none;
}

/* =========================================================
   RESPONSIVE HEADER
   ========================================================= */

@media (max-width: 900px) {

    .nt-header-container {
        width: calc(100% - 28px);
        min-height: 68px;
        gap: 12px;
    }

    .nt-navigation,
    .nt-header-actions {
        display: none;
    }

    .nt-mobile-menu {
        display: flex;
        flex-shrink: 0;
    }

    .nt-mobile-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 12px 18px 20px;
        background: #ffffff;
        border-top: 1px solid #edf0f3;
        border-bottom: 1px solid #e7ebef;
        box-shadow: 0 18px 35px rgba(15, 23, 42, 0.10);
        display: none;
    }

    .nt-mobile-navigation.is-open {
        display: block;
    }

    .nt-mobile-navigation > a,
    .nt-mobile-navigation summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 48px;
        padding: 10px 4px;
        border-bottom: 1px solid #f0f2f5;
        color: #374151;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none !important;
        cursor: pointer;
    }

    .nt-mobile-navigation > a:hover,
    .nt-mobile-navigation summary:hover {
        color: #00A63F;
    }

    .nt-mobile-navigation details {
        width: 100%;
    }

    .nt-mobile-navigation summary {
        list-style: none;
    }

    .nt-mobile-navigation summary::-webkit-details-marker {
        display: none;
    }

    .nt-mobile-submenu {
        padding: 4px 0 8px 14px;
    }

    .nt-mobile-submenu a {
        display: block;
        padding: 9px 4px;
        color: #6b7280;
        font-size: 13px;
        text-decoration: none !important;
    }

    .nt-mobile-submenu a:hover {
        color: #00A63F;
    }

    .nt-mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding-top: 16px;
    }

    .nt-mobile-login,
    .nt-mobile-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 44px;
        border-radius: 9px;
        text-decoration: none !important;
        font-size: 14px;
        font-weight: 700;
    }

    .nt-mobile-login {
        border: 1px solid #dfe4e8;
        color: #374151;
        background: #ffffff;
    }

    .nt-mobile-cta {
        background: #00A63F;
        color: #ffffff !important;
        border: 1px solid #00A63F;
    }

}

@media (max-width: 480px) {

    .nt-header-container {
        width: calc(100% - 20px);
    }

    .nt-logo-main,
    .nt-logo-seo {
        font-size: 20px;
    }

    .nt-mobile-navigation {
        padding-left: 14px;
        padding-right: 14px;
    }

}
/* =========================================================
   NAIJATRAFFIC SEO — PUBLIC WEBSITE FOOTER
   ========================================================= */

.nt-footer {
    width: 100%;
    margin: 0;
    padding: 70px 0 0;
    background: #071a12;
    color: #d7e3dc;
}

.nt-footer-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

/* Footer Top */

.nt-footer-top {
    display: grid;
    grid-template-columns: 1.7fr repeat(4, 1fr);
    gap: 45px;
    padding-bottom: 55px;
}

/* Brand */

.nt-footer-brand {
    max-width: 330px;
}

.nt-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 18px;
    color: #ffffff !important;
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -0.7px;
    text-decoration: none !important;
}

.nt-footer-logo span {
    color: #00A63F;
}

.nt-footer-brand p {
    margin: 0 0 24px;
    color: #aabbb2;
    font-size: 14px;
    line-height: 1.75;
}

.nt-footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid #00A63F;
    border-radius: 8px;
    background: #00A63F;
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.nt-footer-cta:hover {
    background: #008f36;
    color: #ffffff !important;
    transform: translateY(-1px);
}

.nt-footer-cta span {
    font-size: 17px;
    line-height: 1;
}

/* Footer Columns */

.nt-footer-column h3 {
    margin: 2px 0 18px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.nt-footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nt-footer-column li {
    margin: 0;
    padding: 0;
}

.nt-footer-column a {
    display: inline-block;
    padding: 6px 0;
    color: #9fb0a8 !important;
    font-size: 13px;
    line-height: 1.5;
    text-decoration: none !important;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.nt-footer-column a:hover {
    color: #ffffff !important;
    transform: translateX(2px);
}

/* Newsletter */

.nt-footer-newsletter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.nt-footer-newsletter h3 {
    margin: 0 0 7px;
    color: #ffffff;
    font-size: 19px;
    font-weight: 750;
    letter-spacing: -0.3px;
}

.nt-footer-newsletter p {
    margin: 0;
    color: #9fb0a8;
    font-size: 13px;
    line-height: 1.6;
}

.nt-footer-form {
    display: flex;
    width: min(430px, 100%);
    gap: 8px;
}

.nt-footer-form input {
    flex: 1;
    min-width: 0;
    height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    outline: none;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font-family: inherit;
    font-size: 13px;
}

.nt-footer-form input::placeholder {
    color: #82938b;
}

.nt-footer-form input:focus {
    border-color: #00A63F;
}

.nt-footer-form button {
    height: 44px;
    padding: 0 17px;
    border: 1px solid #00A63F;
    border-radius: 8px;
    background: #00A63F;
    color: #ffffff;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

/* Footer Bottom */

.nt-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 72px;
}

.nt-footer-bottom p {
    margin: 0;
    color: #82938b;
    font-size: 12px;
}

.nt-footer-legal {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nt-footer-legal a {
    color: #82938b !important;
    font-size: 12px;
    text-decoration: none !important;
}

.nt-footer-legal a:hover {
    color: #ffffff !important;
}

/* =========================================================
   FOOTER RESPONSIVENESS
   ========================================================= */

@media (max-width: 950px) {

    .nt-footer-top {
        grid-template-columns: 1.5fr repeat(2, 1fr);
        gap: 35px 30px;
    }

    .nt-footer-brand {
        max-width: 100%;
        grid-column: 1 / -1;
    }

    .nt-footer-newsletter {
        align-items: flex-start;
        flex-direction: column;
    }

    .nt-footer-form {
        width: 100%;
        max-width: 500px;
    }

}

@media (max-width: 650px) {

    .nt-footer {
        padding-top: 50px;
    }

    .nt-footer-container {
        width: calc(100% - 28px);
    }

    .nt-footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 25px;
        padding-bottom: 40px;
    }

    .nt-footer-brand {
        grid-column: 1 / -1;
    }

    .nt-footer-newsletter {
        gap: 20px;
    }

    .nt-footer-form {
        flex-direction: column;
        max-width: none;
    }

    .nt-footer-form input,
    .nt-footer-form button {
        width: 100%;
    }

    .nt-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 12px;
        padding: 20px 0;
    }

}

@media (max-width: 400px) {

    .nt-footer-top {
        grid-template-columns: 1fr;
    }

}
/* =========================================================
   NAIJATRAFFIC SEO HOMEPAGE
   ========================================================= */

.nt-homepage {
    width: 100%;
    overflow: hidden;
    color: #101b17;
    background: #ffffff;
    font-family: inherit;
}

.nt-homepage *,
.nt-homepage *::before,
.nt-homepage *::after {
    box-sizing: border-box;
}

.nt-home-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   SHARED TYPOGRAPHY
   ========================================================= */

.nt-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: #00A63F;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.nt-home-section-heading {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
}

.nt-home-section-heading h2,
.nt-showcase-heading h2,
.nt-ai-content h2,
.nt-how-intro h2,
.nt-faq-intro h2 {
    margin: 0;
    color: #0b1712;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    font-weight: 800;
}

.nt-home-section-heading h2 span,
.nt-showcase-heading h2 span,
.nt-ai-content h2 span,
.nt-how-intro h2 span,
.nt-faq-intro h2 span {
    color: #00A63F;
}

.nt-home-section-heading p,
.nt-showcase-heading p,
.nt-ai-content > p,
.nt-how-intro > p,
.nt-faq-intro > p {
    max-width: 680px;
    margin: 20px auto 0;
    color: #607069;
    font-size: 17px;
    line-height: 1.75;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.nt-home-primary-button,
.nt-home-secondary-button,
.nt-price-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 10px;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.25s ease;
}

.nt-home-primary-button {
    color: #ffffff !important;
    background: #00A63F;
    box-shadow: 0 12px 30px rgba(0, 166, 63, 0.18);
}

.nt-home-primary-button:hover {
    color: #ffffff !important;
    background: #008c35;
    transform: translateY(-2px);
}

.nt-home-secondary-button {
    color: #122019 !important;
    background: #ffffff;
    border: 1px solid #dfe7e2;
}

.nt-home-secondary-button:hover {
    color: #00A63F !important;
    border-color: #00A63F;
    transform: translateY(-2px);
}


/* =========================================================
   HERO
   ========================================================= */

.nt-home-hero {
    position: relative;
    padding: 90px 0 100px;
    background:
        radial-gradient(circle at 82% 40%, rgba(0, 166, 63, 0.08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8fbf9 100%);
}

.nt-home-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    align-items: center;
    gap: 70px;
}

.nt-home-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
    padding: 8px 13px;
    border: 1px solid rgba(0, 166, 63, 0.18);
    border-radius: 999px;
    color: #168a46;
    background: rgba(0, 166, 63, 0.05);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.nt-home-eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00A63F;
    box-shadow: 0 0 0 5px rgba(0, 166, 63, 0.09);
}

.nt-home-hero-content h1 {
    max-width: 700px;
    margin: 0;
    color: #0b1712;
    font-size: clamp(48px, 6vw, 76px);
    font-weight: 850;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.nt-home-hero-content h1 span {
    display: block;
    color: #00A63F;
}

.nt-home-hero-text {
    max-width: 650px;
    margin: 25px 0 0;
    color: #5d6c64;
    font-size: 18px;
    line-height: 1.75;
}

.nt-home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.nt-home-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 24px;
    color: #68766f;
    font-size: 13px;
}

.nt-home-hero-trust strong {
    margin-right: 5px;
    color: #00A63F;
}


/* HERO DASHBOARD */

.nt-home-hero-visual {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nt-home-glow {
    position: absolute;
    width: 470px;
    height: 470px;
    border-radius: 50%;
    background: rgba(0, 166, 63, 0.08);
    filter: blur(30px);
}

.nt-dashboard-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 560px;
    overflow: hidden;
    border: 1px solid #dce6df;
    border-radius: 18px;
    background: #ffffff;
    box-shadow:
        0 35px 80px rgba(19, 48, 33, 0.12),
        0 8px 20px rgba(19, 48, 33, 0.06);
    transform: rotate(1deg);
}

.nt-dashboard-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid #ebf0ed;
    background: #fbfcfc;
}

.nt-dashboard-brand,
.nt-showcase-side-logo {
    color: #111c16;
    font-size: 14px;
    font-weight: 800;
}

.nt-dashboard-brand span,
.nt-showcase-side-logo span {
    color: #00A63F;
}

.nt-dashboard-dots {
    display: flex;
    gap: 5px;
}

.nt-dashboard-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #cad5ce;
}

.nt-dashboard-body {
    padding: 24px;
}

.nt-dashboard-heading {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.nt-dashboard-heading small,
.nt-showcase-main-top small {
    color: #8b9892;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.nt-dashboard-heading h3 {
    margin: 5px 0 0;
    color: #122019;
    font-size: 22px;
}

.nt-dashboard-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 74px;
    min-height: 74px;
    border: 7px solid #dff4e8;
    border-radius: 50%;
}

.nt-dashboard-score strong {
    color: #00A63F;
    font-size: 22px;
    line-height: 1;
}

.nt-dashboard-score span {
    margin-top: 4px;
    color: #89968f;
    font-size: 8px;
}

.nt-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.nt-dashboard-stat {
    padding: 15px;
    border: 1px solid #edf1ee;
    border-radius: 10px;
}

.nt-dashboard-stat span,
.nt-dashboard-stat small {
    display: block;
    color: #89958f;
    font-size: 10px;
}

.nt-dashboard-stat strong {
    display: block;
    margin: 7px 0 3px;
    color: #16231c;
    font-size: 20px;
}

.nt-dashboard-stat small {
    color: #00A63F;
}

.nt-dashboard-chart {
    margin-top: 14px;
    padding: 17px;
    border: 1px solid #edf1ee;
    border-radius: 12px;
}

.nt-chart-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.nt-chart-header strong,
.nt-chart-growth {
    color: #18251e;
    font-size: 11px;
}

.nt-chart-header span {
    display: block;
    margin-top: 4px;
    color: #99a49e;
    font-size: 9px;
}

.nt-chart-growth {
    color: #00A63F;
    font-weight: 700;
}

.nt-chart-area {
    position: relative;
    height: 120px;
    margin-top: 15px;
    overflow: hidden;
    border-bottom: 1px solid #e8eeea;
    background:
        linear-gradient(#f2f6f3 1px, transparent 1px);
    background-size: 100% 30px;
}

.nt-chart-line {
    position: absolute;
    inset: 0;
}

.nt-chart-line::after {
    content: "";
    position: absolute;
    left: 2%;
    right: 2%;
    bottom: 18%;
    height: 70%;
    background: linear-gradient(
        145deg,
        transparent 0%,
        transparent 19%,
        rgba(0, 166, 63, 0.08) 20%,
        rgba(0, 166, 63, 0.16) 45%,
        rgba(0, 166, 63, 0.08) 80%,
        transparent 81%
    );
    clip-path: polygon(
        0 78%,
        10% 70%,
        22% 72%,
        35% 52%,
        45% 58%,
        57% 42%,
        68% 48%,
        80% 25%,
        91% 32%,
        100% 10%,
        100% 100%,
        0 100%
    );
}

.nt-chart-point {
    position: absolute;
    width: 7px;
    height: 7px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: #00A63F;
    box-shadow: 0 0 0 2px rgba(0, 166, 63, 0.12);
    z-index: 2;
}

.nt-chart-point.p1 { left: 10%; bottom: 27%; }
.nt-chart-point.p2 { left: 24%; bottom: 34%; }
.nt-chart-point.p3 { left: 39%; bottom: 47%; }
.nt-chart-point.p4 { left: 54%; bottom: 43%; }
.nt-chart-point.p5 { left: 72%; bottom: 67%; }
.nt-chart-point.p6 { left: 92%; bottom: 82%; }

.nt-dashboard-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
}

.nt-dashboard-mini-card {
    padding: 14px;
    border: 1px solid #edf1ee;
    border-radius: 10px;
}

.nt-dashboard-mini-card span,
.nt-dashboard-mini-card small {
    display: block;
    color: #89958f;
    font-size: 9px;
}

.nt-dashboard-mini-card strong {
    display: block;
    margin: 6px 0 4px;
    color: #17231c;
    font-size: 12px;
}

.nt-dashboard-mini-card small b {
    color: #00A63F;
}

.nt-floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border: 1px solid #e1eae4;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 16px 35px rgba(18, 45, 31, 0.11);
}

.nt-floating-card small,
.nt-floating-card strong {
    display: block;
}

.nt-floating-card small {
    color: #89958f;
    font-size: 8px;
}

.nt-floating-card strong {
    margin-top: 3px;
    color: #152119;
    font-size: 11px;
}

.nt-floating-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    color: #00A63F;
    background: #ecf9f0;
    font-weight: 800;
}

.nt-floating-keyword {
    top: 15%;
    left: -5%;
}

.nt-floating-ranking {
    right: -6%;
    bottom: 14%;
}


/* =========================================================
   CAPABILITIES
   ========================================================= */

.nt-home-capabilities {
    padding: 28px 0;
    border-top: 1px solid #edf2ef;
    border-bottom: 1px solid #edf2ef;
    background: #ffffff;
}

.nt-capabilities-heading {
    margin-bottom: 18px;
    text-align: center;
    color: #95a19a;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.nt-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.nt-capability-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    border-radius: 10px;
    background: #f8faf9;
    color: #314138;
    font-size: 12px;
}

.nt-capability-icon {
    color: #00A63F;
    font-size: 16px;
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.nt-home-section {
    padding: 110px 0;
}

.nt-home-features {
    background: #ffffff;
}


/* =========================================================
   FEATURES
   ========================================================= */

.nt-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.nt-feature-card {
    min-height: 310px;
    padding: 30px;
    border: 1px solid #e5ece7;
    border-radius: 18px;
    background: #ffffff;
    transition: all 0.25s ease;
}

.nt-feature-card:hover {
    border-color: rgba(0, 166, 63, 0.3);
    box-shadow: 0 22px 50px rgba(17, 47, 30, 0.07);
    transform: translateY(-5px);
}

.nt-feature-large {
    grid-column: span 2;
    background:
        radial-gradient(circle at 100% 0%, rgba(0, 166, 63, 0.08), transparent 40%),
        #f8fbf9;
}

.nt-feature-ai {
    background: #071a12;
    border-color: #071a12;
}

.nt-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 26px;
    border-radius: 13px;
    color: #00A63F;
    background: #eaf8ef;
    font-size: 22px;
    font-weight: 800;
}

.nt-feature-card h3 {
    margin: 0;
    color: #142019;
    font-size: 23px;
    letter-spacing: -0.02em;
}

.nt-feature-card p {
    margin: 12px 0 22px;
    color: #69766f;
    font-size: 14px;
    line-height: 1.75;
}

.nt-feature-card a {
    color: #00A63F !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
}

.nt-feature-ai h3 {
    color: #ffffff;
}

.nt-feature-ai p {
    color: #b9c8c0;
}


/* =========================================================
   HOW IT WORKS
   ========================================================= */

.nt-home-how {
    background: #f7faf8;
}

.nt-how-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 90px;
    align-items: start;
}

.nt-how-intro h2 {
    margin-top: 0;
}

.nt-how-intro > p {
    margin: 20px 0 30px;
    max-width: 500px;
}

.nt-how-steps {
    display: flex;
    flex-direction: column;
}

.nt-how-step {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 25px;
    padding: 0 0 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid #dfe8e2;
}

.nt-how-step:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.nt-step-number {
    color: #00A63F;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.nt-how-step h3 {
    margin: 0;
    color: #132018;
    font-size: 21px;
}

.nt-how-step p {
    margin: 8px 0 0;
    color: #6c7972;
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   SHOWCASE
   ========================================================= */

.nt-home-showcase {
    background: #ffffff;
}

.nt-showcase-heading {
    max-width: 750px;
    margin: 0 auto 55px;
    text-align: center;
}

.nt-showcase-heading p {
    max-width: 660px;
}

.nt-showcase-window {
    overflow: hidden;
    border: 1px solid #dfe7e2;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 30px 80px rgba(16, 44, 29, 0.11);
}

.nt-showcase-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 52px;
    border-bottom: 1px solid #edf1ee;
    background: #fafcfa;
}

.nt-window-dots {
    position: absolute;
    left: 18px;
    display: flex;
    gap: 5px;
}

.nt-window-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ccd5cf;
}

.nt-window-url {
    padding: 8px 45px;
    border: 1px solid #e4ebe6;
    border-radius: 8px;
    color: #7d8983;
    background: #ffffff;
    font-size: 10px;
}

.nt-showcase-content {
    display: grid;
    grid-template-columns: 190px 1fr;
    min-height: 470px;
}

.nt-showcase-sidebar {
    padding: 25px 16px;
    border-right: 1px solid #edf1ee;
    background: #fbfcfb;
}

.nt-showcase-side-logo {
    padding: 0 10px 26px;
}

.nt-showcase-sidebar > div:not(.nt-showcase-side-logo) {
    margin-bottom: 5px;
    padding: 11px 10px;
    border-radius: 8px;
    color: #75837b;
    font-size: 11px;
}

.nt-showcase-sidebar .nt-side-active {
    color: #00A63F !important;
    background: #ecf8f0;
    font-weight: 700;
}

.nt-showcase-main {
    padding: 34px;
}

.nt-showcase-main-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.nt-showcase-main-top h3 {
    margin: 5px 0 0;
    color: #15221b;
    font-size: 23px;
}

.nt-showcase-domain {
    padding: 9px 12px;
    border: 1px solid #e3ebe5;
    border-radius: 8px;
    color: #6c7a72;
    font-size: 10px;
}

.nt-showcase-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 25px;
}

.nt-showcase-metrics > div {
    padding: 17px;
    border: 1px solid #edf1ee;
    border-radius: 10px;
}

.nt-showcase-metrics span {
    display: block;
    color: #8c9891;
    font-size: 9px;
}

.nt-showcase-metrics strong {
    display: block;
    margin-top: 8px;
    color: #15221b;
    font-size: 22px;
}

.nt-showcase-chart {
    margin-top: 15px;
    padding: 20px;
    border: 1px solid #edf1ee;
    border-radius: 12px;
}

.nt-showcase-chart-heading {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.nt-showcase-chart-heading strong {
    color: #18251e;
    font-size: 12px;
}

.nt-showcase-chart-heading span {
    color: #96a099;
    font-size: 9px;
}

.nt-showcase-bars {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 210px;
    margin-top: 25px;
    padding: 0 5px 5px;
    border-bottom: 1px solid #e9efeb;
}

.nt-showcase-bars span {
    flex: 1;
    max-width: 40px;
    border-radius: 7px 7px 0 0;
    background: linear-gradient(
        180deg,
        #00A63F 0%,
        #80d4a1 100%
    );
}


/* =========================================================
   AI SEARCH
   ========================================================= */

.nt-home-ai {
    background: #071a12;
}

.nt-ai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.nt-ai-content .nt-section-label {
    color: #7ce5a8;
}

.nt-ai-content h2 {
    color: #ffffff;
}

.nt-ai-content > p {
    margin: 22px 0 0;
    color: #adbbb3;
}

.nt-ai-points {
    margin-top: 35px;
}

.nt-ai-points > div {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 12px;
    align-items: start;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nt-ai-points strong {
    color: #7ce5a8;
    font-size: 11px;
}

.nt-ai-points span {
    color: #e4ebe7;
    font-size: 14px;
    line-height: 1.6;
}

.nt-ai-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 470px;
}

.nt-search-core {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(124, 229, 168, 0.35);
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    box-shadow: 0 0 0 20px rgba(124, 229, 168, 0.03);
}

.nt-search-core-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    border-radius: 13px;
    color: #071a12;
    background: #7ce5a8;
    font-size: 14px;
    font-weight: 900;
}

.nt-search-core strong {
    color: #ffffff;
    font-size: 15px;
}

.nt-search-core small {
    margin-top: 5px;
    color: #91a69a;
    font-size: 9px;
}

.nt-search-orbit {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(124, 229, 168, 0.22);
    border-radius: 50%;
}

.nt-search-orbit span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 85px;
    height: 85px;
    border: 1px solid rgba(124, 229, 168, 0.28);
    border-radius: 50%;
    color: #c8d7ce;
    background: rgba(255,255,255,0.04);
    font-size: 12px;
    font-weight: 700;
}

.nt-search-orbit.orbit-one {
    width: 370px;
    height: 370px;
}

.nt-search-orbit.orbit-two {
    width: 270px;
    height: 270px;
}

.nt-search-orbit.orbit-one span {
    position: absolute;
    top: -42px;
}

.nt-search-orbit.orbit-two span {
    position: absolute;
    right: -44px;
}


/* =========================================================
   WHY US
   ========================================================= */

.nt-home-why {
    background: #f7faf8;
}

.nt-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.nt-why-card {
    padding: 29px;
    border: 1px solid #e2eae5;
    border-radius: 16px;
    background: #ffffff;
}

.nt-why-card > span {
    color: #00A63F;
    font-size: 11px;
    font-weight: 800;
}

.nt-why-card h3 {
    margin: 40px 0 11px;
    color: #15221b;
    font-size: 20px;
}

.nt-why-card p {
    margin: 0;
    color: #69776f;
    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   PRICING
   ========================================================= */

.nt-home-pricing {
    background: #ffffff;
}

.nt-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1000px;
    margin: 0 auto;
}

.nt-price-card {
    position: relative;
    padding: 30px;
    border: 1px solid #e2e9e4;
    border-radius: 16px;
    background: #ffffff;
}

.nt-price-featured {
    border-color: #00A63F;
    box-shadow: 0 25px 55px rgba(0, 166, 63, 0.1);
}

.nt-price-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 9px;
    border-radius: 999px;
    color: #ffffff;
    background: #00A63F;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.nt-price-name {
    color: #00A63F;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.nt-price-card h3 {
    margin: 18px 0 8px;
    color: #15221b;
    font-size: 32px;
    letter-spacing: -0.04em;
}

.nt-price-card h3 small {
    color: #8b9790;
    font-size: 11px;
    font-weight: 500;
}

.nt-price-card p {
    min-height: 52px;
    margin: 0;
    color: #6c7972;
    font-size: 13px;
    line-height: 1.7;
}

.nt-price-button {
    width: 100%;
    margin-top: 25px;
    color: #17231c !important;
    border: 1px solid #dce5df;
    background: #f9fbfa;
}

.nt-price-featured .nt-price-button {
    color: #ffffff !important;
    background: #00A63F;
    border-color: #00A63F;
}

.nt-pricing-link {
    margin-top: 28px;
    text-align: center;
}

.nt-pricing-link a {
    color: #00A63F !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
}


/* =========================================================
   FAQ
   ========================================================= */

.nt-home-faq {
    background: #f7faf8;
}

.nt-faq-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.nt-faq-intro h2 {
    margin-top: 0;
}

.nt-faq-intro > p {
    margin: 20px 0 0;
    max-width: 450px;
}

.nt-faq-list {
    border-top: 1px solid #dce6e0;
}

.nt-faq-list details {
    border-bottom: 1px solid #dce6e0;
}

.nt-faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 23px 0;
    cursor: pointer;
    color: #17231c;
    font-size: 15px;
    font-weight: 700;
    list-style: none;
}

.nt-faq-list summary::-webkit-details-marker {
    display: none;
}

.nt-faq-list summary span {
    color: #00A63F;
    font-size: 22px;
    font-weight: 400;
}

.nt-faq-list details[open] summary span {
    transform: rotate(45deg);
}

.nt-faq-list p {
    max-width: 700px;
    margin: -4px 0 23px;
    color: #69766f;
    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.nt-home-final-cta {
    padding: 100px 0;
    background: #ffffff;
}

.nt-final-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 60px;
    overflow: hidden;
    border-radius: 24px;
    background:
        radial-gradient(circle at 95% 10%, rgba(0, 166, 63, 0.22), transparent 35%),
        #071a12;
}

.nt-final-cta-content {
    max-width: 700px;
}

.nt-final-cta-content .nt-section-label {
    color: #7ce5a8;
}

.nt-final-cta-content h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.nt-final-cta-content h2 span {
    display: block;
    color: #7ce5a8;
}

.nt-final-cta-content p {
    max-width: 600px;
    margin: 19px 0 0;
    color: #aebdb4;
    font-size: 15px;
    line-height: 1.7;
}

.nt-final-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    flex-shrink: 0;
}

.nt-final-contact-link {
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
}

.nt-final-contact-link:hover {
    color: #7ce5a8 !important;
}


/* =========================================================
   ELEMENTOR COMPATIBILITY
   ========================================================= */

.elementor-widget-html:has(.nt-homepage) {
    width: 100%;
}

.elementor-widget-html:has(.nt-homepage) .elementor-widget-container {
    padding: 0 !important;
}

.nt-homepage a {
    box-shadow: none;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .nt-home-hero-grid {
        gap: 40px;
    }

    .nt-capabilities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .nt-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nt-how-grid,
    .nt-ai-grid,
    .nt-faq-grid {
        gap: 50px;
    }

    .nt-floating-keyword {
        left: -2%;
    }

    .nt-floating-ranking {
        right: -2%;
    }

}


/* =========================================================
   MOBILE / SMALL TABLET
   ========================================================= */

@media (max-width: 800px) {

    .nt-home-container {
        width: min(100% - 30px, 680px);
    }

    .nt-home-section {
        padding: 80px 0;
    }

    .nt-home-hero {
        padding: 65px 0 75px;
    }

    .nt-home-hero-grid,
    .nt-how-grid,
    .nt-ai-grid,
    .nt-faq-grid {
        grid-template-columns: 1fr;
    }

    .nt-home-hero-content {
        text-align: center;
    }

    .nt-home-hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .nt-home-eyebrow {
        justify-content: center;
    }

    .nt-home-hero-actions,
    .nt-home-hero-trust {
        justify-content: center;
    }

    .nt-home-hero-visual {
        min-height: 450px;
    }

    .nt-dashboard-card {
        transform: none;
    }

    .nt-floating-keyword {
        left: 0;
    }

    .nt-floating-ranking {
        right: 0;
    }

    .nt-features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nt-feature-large {
        grid-column: span 2;
    }

    .nt-capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nt-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .nt-final-cta-box {
        padding: 45px 30px;
        flex-direction: column;
        align-items: flex-start;
    }

    .nt-showcase-content {
        grid-template-columns: 1fr;
    }

    .nt-showcase-sidebar {
        display: none;
    }

    .nt-showcase-main {
        padding: 22px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 560px) {

    .nt-home-container {
        width: calc(100% - 24px);
    }

    .nt-home-hero-content h1 {
        font-size: 45px;
    }

    .nt-home-hero-text {
        font-size: 15px;
    }

    .nt-home-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .nt-home-primary-button,
    .nt-home-secondary-button {
        width: 100%;
    }

    .nt-home-hero-trust {
        flex-direction: column;
        gap: 8px;
    }

    .nt-home-hero-visual {
        min-height: 370px;
    }

    .nt-dashboard-body {
        padding: 16px;
    }

    .nt-dashboard-heading h3 {
        font-size: 17px;
    }

    .nt-dashboard-score {
        min-width: 62px;
        min-height: 62px;
    }

    .nt-dashboard-stats {
        grid-template-columns: 1fr;
    }

    .nt-dashboard-stat strong {
        font-size: 17px;
    }

    .nt-dashboard-bottom {
        grid-template-columns: 1fr;
    }

    .nt-floating-card {
        transform: scale(0.82);
    }

    .nt-floating-keyword {
        top: 2%;
        left: -10%;
    }

    .nt-floating-ranking {
        right: -10%;
        bottom: 2%;
    }

    .nt-capabilities-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nt-capability-item {
        min-height: 46px;
        font-size: 10px;
    }

    .nt-features-grid {
        grid-template-columns: 1fr;
    }

    .nt-feature-large {
        grid-column: span 1;
    }

    .nt-home-section-heading {
        margin-bottom: 40px;
    }

    .nt-home-section-heading h2,
    .nt-showcase-heading h2,
    .nt-ai-content h2,
    .nt-how-intro h2,
    .nt-faq-intro h2 {
        font-size: 36px;
    }

    .nt-showcase-window {
        border-radius: 12px;
    }

    .nt-showcase-main-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .nt-showcase-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .nt-showcase-bars {
        gap: 5px;
        height: 150px;
    }

    .nt-ai-visual {
        min-height: 350px;
        transform: scale(0.82);
    }

    .nt-search-orbit.orbit-one {
        width: 300px;
        height: 300px;
    }

    .nt-search-orbit.orbit-two {
        width: 220px;
        height: 220px;
    }

    .nt-why-grid {
        grid-template-columns: 1fr;
    }

    .nt-faq-grid {
        gap: 35px;
    }

    .nt-final-cta-box {
        padding: 38px 23px;
        border-radius: 18px;
    }

    .nt-final-cta-content h2 {
        font-size: 34px;
    }

}
/* =========================================================
   NAIJATRAFFIC PUBLIC HEADER
   MOBILE FIX
   ========================================================= */

@media (max-width: 900px) {

    /* -----------------------------------------------------
       HEADER
       ----------------------------------------------------- */

    .nt-header {
        position: relative;
        z-index: 9999;
        width: 100%;
        background: #ffffff !important;
    }

    .nt-header-container {
        position: relative;
        width: 100% !important;
        min-height: 72px;
        padding: 0 18px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }


    /* -----------------------------------------------------
       LOGO
       ----------------------------------------------------- */

    .nt-logo {
        display: inline-flex !important;
        align-items: center !important;
        gap: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        text-decoration: none !important;
        white-space: nowrap !important;
    }

    .nt-logo-main {
        color: #0b1712 !important;
        font-size: 20px !important;
        line-height: 1 !important;
        font-weight: 800 !important;
    }

    .nt-logo-seo {
        color: #00A63F !important;
        font-size: 20px !important;
        line-height: 1 !important;
        font-weight: 800 !important;
        margin-left: 2px !important;
    }


    /* -----------------------------------------------------
       COMPLETELY HIDE DESKTOP NAV ON MOBILE
       ----------------------------------------------------- */

    .nt-navigation {
        display: none !important;
    }

    .nt-header-actions {
        display: none !important;
    }


    /* -----------------------------------------------------
       MOBILE HAMBURGER
       ----------------------------------------------------- */

    .nt-mobile-menu {
        display: flex !important;
        position: relative !important;
        z-index: 10001 !important;

        width: 44px !important;
        height: 44px !important;
        margin: 0 !important;
        padding: 0 !important;

        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;
        gap: 5px !important;

        border: 0 !important;
        border-radius: 10px !important;

        background: #f4f7f5 !important;
        cursor: pointer !important;
        box-shadow: none !important;
    }

    .nt-mobile-menu span {
        display: block !important;
        width: 20px !important;
        height: 2px !important;
        border-radius: 5px !important;
        background: #0b1712 !important;
        transition: all .25s ease !important;
    }


    /* -----------------------------------------------------
       MOBILE MENU CONTAINER
       HIDDEN BY DEFAULT
       ----------------------------------------------------- */

    .nt-mobile-navigation {
        display: none !important;

        width: 100% !important;
        max-height: calc(100vh - 72px);
        overflow-y: auto;

        padding: 12px 18px 22px !important;

        border-top: 1px solid #edf1ee !important;

        background: #ffffff !important;
        box-shadow: 0 15px 35px rgba(10, 30, 18, .08) !important;
    }


    /* -----------------------------------------------------
       OPEN MOBILE MENU
       ----------------------------------------------------- */

    .nt-mobile-navigation.nt-mobile-navigation-open {
        display: block !important;
    }


    /* -----------------------------------------------------
       MOBILE LINKS
       ----------------------------------------------------- */

    .nt-mobile-navigation > a,
    .nt-mobile-navigation details summary {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;

        width: 100% !important;
        min-height: 48px !important;

        margin: 0 !important;
        padding: 12px 4px !important;

        color: #17231c !important;

        background: transparent !important;
        border: 0 !important;

        font-size: 15px !important;
        font-weight: 650 !important;

        text-decoration: none !important;

        cursor: pointer !important;
    }


    .nt-mobile-navigation > a:hover,
    .nt-mobile-navigation details summary:hover {
        color: #00A63F !important;
    }


    /* -----------------------------------------------------
       MOBILE DROPDOWNS
       ----------------------------------------------------- */

    .nt-mobile-navigation details {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
    }

    .nt-mobile-navigation details summary {
        list-style: none !important;
    }

    .nt-mobile-navigation details summary::-webkit-details-marker {
        display: none !important;
    }

    .nt-mobile-navigation details summary span {
        color: #6c7972 !important;
        font-size: 14px !important;
        transition: transform .2s ease !important;
    }

    .nt-mobile-navigation details[open] summary span {
        transform: rotate(180deg) !important;
    }


    /* -----------------------------------------------------
       MOBILE SUBMENU
       ----------------------------------------------------- */

    .nt-mobile-submenu {
        display: block !important;

        padding: 3px 0 8px 15px !important;
        margin: 0 !important;

        border-left: 2px solid #e5eee8 !important;
    }

    .nt-mobile-submenu a {
        display: flex !important;
        align-items: center !important;

        min-height: 42px !important;
        padding: 9px 8px !important;

        color: #65736b !important;

        font-size: 14px !important;
        font-weight: 500 !important;

        text-decoration: none !important;
    }

    .nt-mobile-submenu a:hover {
        color: #00A63F !important;
    }


    /* -----------------------------------------------------
       MOBILE ACCOUNT ACTIONS
       ----------------------------------------------------- */

    .nt-mobile-actions {
        display: flex !important;

        width: 100% !important;

        gap: 10px !important;

        margin-top: 14px !important;
        padding-top: 14px !important;

        border-top: 1px solid #edf1ee !important;
    }


    .nt-mobile-login,
    .nt-mobile-cta {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        flex: 1 !important;

        min-height: 46px !important;
        padding: 0 14px !important;

        border-radius: 9px !important;

        font-size: 13px !important;
        font-weight: 700 !important;

        text-decoration: none !important;
    }


    .nt-mobile-login {
        color: #17231c !important;
        background: #f3f6f4 !important;
        border: 1px solid #e1e9e4 !important;
    }


    .nt-mobile-cta {
        color: #ffffff !important;
        background: #00A63F !important;
        border: 1px solid #00A63F !important;
    }

}


/* =========================================================
   EXTRA SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

    .nt-header-container {
        min-height: 68px !important;
        padding: 0 15px !important;
    }

    .nt-logo-main,
    .nt-logo-seo {
        font-size: 18px !important;
    }

    .nt-mobile-navigation {
        max-height: calc(100vh - 68px) !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .nt-mobile-navigation > a,
    .nt-mobile-navigation details summary {
        font-size: 14px !important;
    }

}
/* =========================================================
   NAIJATRAFFIC BLOG PAGE
   ========================================================= */

.nt-blog-page {
    background: #ffffff;
    color: #111827;
}

/* Container */
.nt-blog-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* =========================================================
   BLOG HERO
   ========================================================= */

.nt-blog-hero {
    background: linear-gradient(135deg, #003d1c 0%, #006b32 55%, #00a63f 100%);
    padding: 100px 0 95px;
    position: relative;
    overflow: hidden;
}

.nt-blog-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    right: -120px;
    top: -180px;
}

.nt-blog-hero::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 50%;
    left: -100px;
    bottom: -150px;
}

.nt-blog-hero .nt-blog-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
}

.nt-blog-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 20px;
}

.nt-blog-hero h1 {
    margin: 0 auto 22px;
    color: #ffffff;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.nt-blog-hero p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255,255,255,0.88);
    font-size: 18px;
    line-height: 1.7;
}


/* =========================================================
   BLOG CONTENT
   ========================================================= */

.nt-blog-content {
    padding: 90px 0 110px;
}

.nt-blog-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 45px;
}

.nt-blog-small-title {
    display: block;
    color: #00a63f;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.nt-blog-heading h2 {
    margin: 0;
    color: #111827;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
    font-weight: 800;
}


/* =========================================================
   BLOG GRID
   ========================================================= */

.nt-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


/* =========================================================
   BLOG CARD
   ========================================================= */

.nt-blog-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nt-blog-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.10);
}


/* Blog Image */

.nt-blog-image {
    display: block;
    width: 100%;
    height: 230px;
    overflow: hidden;
    background: #f0fdf4;
}

.nt-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.nt-blog-card:hover .nt-blog-image img {
    transform: scale(1.05);
}

.nt-blog-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00a63f;
}

.nt-blog-no-image span {
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
}


/* Card Content */

.nt-blog-card-content {
    padding: 25px;
}

.nt-blog-meta {
    color: #6b7280;
    font-size: 13px;
    margin-bottom: 12px;
}

.nt-blog-card h3 {
    margin: 0 0 13px;
    font-size: 21px;
    line-height: 1.35;
    font-weight: 750;
}

.nt-blog-card h3 a {
    color: #111827;
    text-decoration: none;
    transition: color 0.25s ease;
}

.nt-blog-card h3 a:hover {
    color: #00a63f;
}

.nt-blog-card p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 20px;
}

.nt-blog-read-more {
    color: #00a63f;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.nt-blog-read-more:hover {
    color: #007a2d;
}


/* =========================================================
   EMPTY BLOG
   ========================================================= */

.nt-blog-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 70px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #f9fafb;
}

.nt-blog-empty h3 {
    margin: 0 0 10px;
    font-size: 28px;
    color: #111827;
}

.nt-blog-empty p {
    margin: 0;
    color: #6b7280;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .nt-blog-hero {
        padding: 80px 0;
    }

    .nt-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .nt-blog-hero {
        padding: 65px 0 70px;
    }

    .nt-blog-hero h1 {
        font-size: 38px;
        letter-spacing: -0.8px;
    }

    .nt-blog-hero p {
        font-size: 16px;
    }

    .nt-blog-content {
        padding: 65px 0 80px;
    }

    .nt-blog-heading {
        margin-bottom: 30px;
    }

    .nt-blog-heading h2 {
        font-size: 32px;
    }

    .nt-blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .nt-blog-image {
        height: 220px;
    }

    .nt-blog-card-content {
        padding: 22px;
    }

}