/* =====================================================
   BASE
===================================================== */

html {
    scroll-behavior: smooth;
}

body {
    padding-top: 72px !important;
    font-family: 'Poppins', sans-serif;
}


/* =====================================================
   HEADER
===================================================== */

.modern-header {

    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 9999;

    width: 100%;
    height: 72px;

    background: #FFFFFF;

    border-bottom: 1px solid #E8EDF5;

    box-shadow:
        0 4px 20px rgba(15, 31, 58, 0.06);
}


.modern-header-container {

    position: relative;

    width: 100%;
    max-width: 1170px;
    height: 72px;

    margin: 0 auto;
    padding: 0 15px;

    display: flex;
    align-items: center;

    gap: 15px;
}


/* =====================================================
   RESPONSIVE LOGO
===================================================== */

.modern-brand {

    display: flex;
    align-items: center;

    flex: 0 1 auto;

    min-width: 0;
    max-width: 300px;
    height: 100%;

    overflow: hidden;

    text-decoration: none !important;
}


.modern-brand:hover,
.modern-brand:focus {

    text-decoration: none !important;
}


.modern-brand .logo {

    display: flex;
    align-items: center;
    justify-content: flex-start;

    width: auto;
    max-width: 100%;
    height: 100%;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden;

    color: #0B1F3A !important;
}


/*
 * Automatically scale ANY uploaded logo.
 *
 * Important:
 * - No forced width
 * - No forced height
 * - Original aspect ratio preserved
 * - Large logos automatically shrink
 * - Small logos are not stretched
 */

.modern-brand .logo img {

    display: block !important;

    width: auto !important;
    height: auto !important;

    max-width: 100% !important;
    max-height: 48px !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain;
    object-position: left center;
}


/* Protect against theme styles wrapping the image */

.modern-brand .logo a {

    display: flex !important;

    align-items: center;

    width: auto;
    max-width: 100%;
    height: 100%;

    margin: 0 !important;
    padding: 0 !important;

    text-decoration: none !important;
}


.modern-brand .logo a img {

    width: auto !important;
    height: auto !important;

    max-width: 100% !important;
    max-height: 48px !important;

    object-fit: contain;
}


/* =====================================================
   DESKTOP NAVIGATION
===================================================== */

.modern-navigation {

    display: flex;
    align-items: center;

    flex: 1 1 auto;

    min-width: 0;

    margin-left: auto;
}


.modern-navigation .main-nav {

    display: flex;
    align-items: center;
    justify-content: flex-end;

    width: 100%;

    margin: 0 !important;
    padding: 0 !important;

    list-style: none;
}


.modern-navigation .main-nav > li {

    position: relative;

    flex-shrink: 0;

    margin: 0 2px !important;
    padding: 0 !important;

    list-style: none;
}


.modern-navigation .main-nav > li > a {

    position: relative;

    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 14px !important;

    background: transparent !important;

    border: 0 !important;

    color: #475569 !important;

    font-family: 'Poppins', sans-serif !important;

    font-size: 14px !important;
    font-weight: 500 !important;

    line-height: normal !important;

    white-space: nowrap;

    text-decoration: none !important;

    text-shadow: none !important;

    transition:
        color .2s ease,
        background .2s ease;
}


.modern-navigation .main-nav > li > a:hover,
.modern-navigation .main-nav > li > a:focus {

    color: #1457D9 !important;

    background: transparent !important;

    text-decoration: none !important;
}


/* Navigation underline */

.modern-navigation .main-nav > li > a::after {

    content: "";

    position: absolute;

    left: 14px;
    right: 14px;
    bottom: 17px;

    height: 2px;

    background: #1457D9;

    border-radius: 20px;

    transform: scaleX(0);

    transform-origin: center;

    transition: transform .2s ease;
}


.modern-navigation .main-nav > li > a:hover::after {

    transform: scaleX(1);
}


/* =====================================================
   LANGUAGE BUTTON
===================================================== */

.modern-language {

    margin-left: 7px !important;
}


.modern-language > a {

    width: 42px !important;
    height: 42px !important;

    margin: 15px 0 !important;

    padding: 0 !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    background: #F8FAFC !important;

    border: 1px solid #E2E8F0 !important;

    border-radius: 10px !important;

    color: #475569 !important;

    transition: all .2s ease !important;
}


.modern-language > a::after {

    display: none !important;
}


.modern-language > a:hover {

    background: #EFF6FF !important;

    border-color: #BFDBFE !important;

    color: #1457D9 !important;
}


.modern-language > a .fa {

    margin: 0 !important;

    color: inherit !important;

    font-size: 17px !important;
}


/* =====================================================
   DROPDOWN
===================================================== */

.modern-navigation .dropdown-menu {

    min-width: 180px;

    padding: 7px;

    background: #FFFFFF;

    border: 1px solid #E2E8F0;

    border-radius: 10px;

    box-shadow:
        0 15px 35px rgba(15, 31, 58, .12);
}


.modern-navigation .dropdown-menu > li > a {

    padding: 9px 12px !important;

    color: #475569 !important;

    font-family: 'Poppins', sans-serif;

    font-size: 13px;

    border-radius: 7px;
}


.modern-navigation .dropdown-menu > li > a:hover {

    background: #F1F5F9 !important;

    color: #1457D9 !important;
}


/* =====================================================
   MOBILE MENU BUTTON
===================================================== */

.modern-menu-button {

    display: none;

    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    margin-left: auto;

    padding: 0;

    align-items: center;
    justify-content: center;

    background: #F8FAFC;

    border: 1px solid #E2E8F0;

    border-radius: 10px;

    color: #0B1F3A;

    cursor: pointer;

    outline: none;

    transition:
        background .2s ease,
        border-color .2s ease,
        color .2s ease;
}


.modern-menu-button:hover {

    background: #EFF6FF;

    border-color: #BFDBFE;

    color: #1457D9;
}


.modern-menu-button .fa {

    font-size: 18px;
}


/* =====================================================
   HERO
===================================================== */

.modern-hero {

    position: relative;

    overflow: hidden;

    padding: 100px 15px 90px;

    background:
        linear-gradient(
            120deg,
            #102A56 0%,
            #1457D9 100%
        );

    text-align: center;
}


.modern-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(255,255,255,.08),
            transparent 35%
        );

    pointer-events: none;
}


.modern-hero-inner {

    position: relative;

    z-index: 2;

    max-width: 900px;

    margin: 0 auto;
}


.modern-hero h1 {

    margin: 0 0 16px;

    color: #FFFFFF;

    font-family: 'Poppins', sans-serif;

    font-size: 42px;

    font-weight: 700;

    line-height: 1.2;

    letter-spacing: -.8px;

    text-shadow: none;
}


.modern-hero h2 {

    max-width: 760px;

    margin: 0 auto 30px;

    color: rgba(255,255,255,.78);

    font-family: 'Poppins', sans-serif;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.7;

    text-shadow: none;
}


/* =====================================================
   ANALYZER FORM
===================================================== */

.modern-analyzer {

    max-width: 760px;

    margin: 0 auto;
}


.modern-search-box {

    display: flex;

    padding: 6px;

    background: #FFFFFF;

    border: 1px solid rgba(255,255,255,.45);

    border-radius: 13px;

    box-shadow:
        0 16px 45px rgba(4, 20, 50, .25);
}


.modern-search-box input {

    flex: 1;

    min-width: 0;

    height: 52px;

    padding: 0 18px;

    background: transparent;

    border: 0 !important;

    outline: 0 !important;

    box-shadow: none !important;

    color: #0B1F3A;

    font-family: 'Poppins', sans-serif;

    font-size: 14px;
}


.modern-search-box input::placeholder {

    color: #94A3B8;

    opacity: 1;
}


.modern-search-button {

    height: 52px;

    padding: 0 22px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    background: #1457D9;

    border: 0;

    border-radius: 9px;

    color: #FFFFFF;

    font-family: 'Poppins', sans-serif;

    font-size: 13px;

    font-weight: 600;

    white-space: nowrap;

    cursor: pointer;

    transition:
        background .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}


.modern-search-button:hover {

    background: #0F46B5;

    transform: translateY(-1px);

    box-shadow:
        0 6px 18px rgba(20,87,217,.25);
}


/* =====================================================
   TRUST POINTS
===================================================== */

.modern-trust {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 22px;

    margin: 22px 0 0;

    padding: 0;

    list-style: none;
}


.modern-trust li {

    display: flex;

    align-items: center;

    gap: 6px;

    color: rgba(255,255,255,.82);

    font-family: 'Poppins', sans-serif;

    font-size: 12px;
}


.modern-trust .fa {

    color: #FFFFFF;
}


/* =====================================================
   INTERNAL PAGE HEADER
===================================================== */

.modern-page-header {

    padding: 55px 15px;

    background:
        linear-gradient(
            120deg,
            #102A56,
            #1457D9
        );
}


.modern-page-header h1 {

    margin: 0;

    color: #FFFFFF;

    font-family: 'Poppins', sans-serif;

    font-size: 34px;

    font-weight: 700;

    line-height: 1.25;

    text-align: center;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) and (min-width: 768px) {

    .modern-header-container {

        padding-left: 15px;
        padding-right: 15px;

        gap: 10px;
    }


    .modern-brand {

        max-width: 220px;
    }


    .modern-brand .logo img,
    .modern-brand .logo a img {

        max-height: 42px !important;
    }


    .modern-navigation .main-nav > li {

        margin: 0 !important;
    }


    .modern-navigation .main-nav > li > a {

        padding-left: 8px !important;
        padding-right: 8px !important;

        font-size: 12px !important;
    }


    .modern-navigation .main-nav > li > a::after {

        left: 8px;
        right: 8px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    body {

        padding-top: 64px !important;
    }


    .modern-header {

        height: 64px;
    }


    .modern-header-container {

        height: 64px;

        padding-left: 15px;
        padding-right: 15px;

        gap: 10px;
    }


    /*
     * Leave guaranteed room for menu button.
     */

    .modern-brand {

        flex: 0 1 auto;

        width: auto;

        max-width: calc(100% - 58px);

        height: 64px;

        overflow: hidden;
    }


    .modern-brand .logo {

        width: auto;

        max-width: 220px;

        height: 64px;

        overflow: hidden;
    }


    .modern-brand .logo img,
    .modern-brand .logo a img {

        display: block !important;

        width: auto !important;
        height: auto !important;

        max-width: 100% !important;
        max-height: 40px !important;

        margin: 0 !important;

        object-fit: contain;
        object-position: left center;
    }


    .modern-menu-button {

        display: flex;
    }


    /* Mobile navigation panel */

    .modern-navigation {

        display: none;

        position: absolute;

        top: 64px;
        left: 15px;
        right: 15px;

        width: auto;

        max-height: calc(100vh - 85px);

        overflow-y: auto;

        margin: 0;

        padding: 10px;

        background: #FFFFFF;

        border: 1px solid #E2E8F0;

        border-radius: 12px;

        box-shadow:
            0 15px 40px rgba(15,31,58,.15);
    }


    .modern-navigation.open {

        display: block;
    }


    .modern-navigation .main-nav {

        display: block;

        width: 100%;
    }


    .modern-navigation .main-nav > li {

        width: 100%;

        margin: 2px 0 !important;
    }


    .modern-navigation .main-nav > li > a {

        width: 100%;
        height: auto;

        justify-content: flex-start;

        padding: 11px 12px !important;

        border-radius: 8px;

        white-space: normal;
    }


    .modern-navigation .main-nav > li > a:hover {

        background: #F8FAFC !important;
    }


    .modern-navigation .main-nav > li > a::after {

        display: none;
    }


    .modern-language {

        margin-left: 0 !important;
    }


    .modern-language > a {

        width: 42px !important;

        height: 42px !important;

        margin: 7px 0 !important;

        justify-content: center !important;
    }


    /* HERO */

    .modern-hero {

        padding: 70px 15px 65px;
    }


    .modern-hero h1 {

        font-size: 30px;

        letter-spacing: -.4px;
    }


    .modern-hero h2 {

        font-size: 14px;

        line-height: 1.65;
    }


    .modern-search-box {

        display: block;

        padding: 6px;
    }


    .modern-search-box input {

        width: 100%;

        height: 50px;
    }


    .modern-search-button {

        width: 100%;

        height: 48px;
    }


    .modern-trust {

        gap: 10px 18px;

        margin-top: 18px;
    }


    .modern-page-header {

        padding: 40px 15px;
    }


    .modern-page-header h1 {

        font-size: 27px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .modern-header-container {

        padding-left: 12px;
        padding-right: 12px;
    }


    .modern-brand {

        max-width: calc(100% - 54px);
    }


    .modern-brand .logo {

        max-width: 190px;
    }


    .modern-brand .logo img,
    .modern-brand .logo a img {

        max-height: 36px !important;
    }


    .modern-navigation {

        left: 10px;
        right: 10px;
    }


    .modern-hero {

        padding: 58px 12px 55px;
    }


    .modern-hero h1 {

        font-size: 27px;
    }


    .modern-hero h2 {

        font-size: 13px;
    }


    .modern-trust {

        gap: 9px 14px;
    }

}




/* =========================================================
   SSA-HERO-2026-V3
   PREMIUM HOMEPAGE SEO ANALYZER HERO
   ========================================================= */

.ssa-hero-v3 {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    min-height: 660px;

    display: flex;
    align-items: center;

    padding: 76px 28px 72px;

    background:
        radial-gradient(
            circle at 87% 12%,
            rgba(68, 103, 255, .72) 0,
            rgba(68, 103, 255, .22) 22%,
            rgba(68, 103, 255, 0) 45%
        ),
        radial-gradient(
            circle at 18% 82%,
            rgba(0, 184, 255, .14) 0,
            rgba(0, 184, 255, 0) 30%
        ),
        linear-gradient(
            125deg,
            #071334 0%,
            #0B1B4B 42%,
            #1239A4 72%,
            #314DFF 100%
        );

    text-align: center;
}


/* ---------------------------------------------------------
   BACKGROUND LIGHT
   --------------------------------------------------------- */

.ssa-hero-v3::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: -3;

    background:
        radial-gradient(
            circle at 50% 48%,
            rgba(31, 92, 255, .18),
            transparent 38%
        ),
        linear-gradient(
            115deg,
            rgba(255,255,255,.018),
            transparent 38%,
            rgba(255,255,255,.025) 70%,
            transparent
        );

    pointer-events: none;
}


.ssa-hero-v3::after {
    content: "";

    position: absolute;
    z-index: -2;

    width: 920px;
    height: 420px;

    left: 50%;
    bottom: -290px;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse at center,
            rgba(23, 110, 255, .34) 0%,
            rgba(23, 110, 255, .08) 44%,
            transparent 72%
        );

    filter: blur(12px);

    pointer-events: none;
}


/* ---------------------------------------------------------
   HERO CONTENT
   --------------------------------------------------------- */

.ssa-hero-v3 .modern-hero-inner {
    position: relative;
    z-index: 5;

    width: 100%;
    max-width: 930px;

    margin: 0 auto;
}


/* ---------------------------------------------------------
   TOP BADGE
   --------------------------------------------------------- */

.ssa-hero-badge {
    width: max-content;
    max-width: 100%;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    margin: 0 auto 24px;
    padding: 9px 17px;

    border:
        1px solid rgba(87, 217, 255, .19);

    border-radius: 999px;

    background:
        rgba(9, 34, 86, .46);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.05),
        0 8px 28px rgba(0,0,0,.08);

    color: #62E7E4;

    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .45px;
    line-height: 1;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}


.ssa-hero-badge .fa {
    font-size: 10px;
}


/* ---------------------------------------------------------
   HEADLINE
   --------------------------------------------------------- */

.ssa-hero-v3 h1 {
    max-width: 830px;

    margin: 0 auto 18px;

    color: #FFFFFF;

    font-family: 'Poppins', sans-serif;
    font-size: clamp(44px, 5vw, 66px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -2.2px;

    text-shadow:
        0 5px 25px rgba(0,0,0,.12);
}


.ssa-seo-highlight {
    display: inline-block;

    background:
        linear-gradient(
            90deg,
            #55E6E1 0%,
            #46C9FF 42%,
            #6A8DFF 100%
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;
}


.ssa-hero-v3 h2 {
    max-width: 700px;

    margin: 0 auto 34px;

    color: rgba(232, 240, 255, .82);

    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;

    text-shadow: none;
}


/* ---------------------------------------------------------
   ANALYZER
   --------------------------------------------------------- */

.ssa-hero-v3 .modern-analyzer {
    position: relative;
    z-index: 8;

    width: 100%;
    max-width: 820px;

    margin: 0 auto;
}


.ssa-hero-v3 .modern-search-box {
    position: relative;

    width: 100%;

    display: flex;
    align-items: center;

    padding: 8px;

    background:
        rgba(255,255,255,.985);

    border:
        1px solid rgba(255,255,255,.86);

    border-radius: 18px;

    box-shadow:
        0 24px 65px rgba(0, 16, 60, .34),
        0 0 32px rgba(49, 111, 255, .20),
        inset 0 1px 0 rgba(255,255,255,1);

    transition:
        box-shadow .2s ease,
        border-color .2s ease,
        transform .2s ease;
}


.ssa-hero-v3 .modern-search-box:focus-within {
    border-color: #A7C7FF;

    box-shadow:
        0 26px 70px rgba(0, 16, 60, .38),
        0 0 0 4px rgba(76, 139, 255, .16),
        0 0 38px rgba(49, 111, 255, .22);
}


.ssa-url-icon {
    flex: 0 0 auto;

    width: 46px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #7D8CA5;

    font-size: 19px;
}


.ssa-hero-v3 .modern-search-box input {
    flex: 1;

    min-width: 0;
    height: 58px;

    padding: 0 14px 0 2px;

    background: transparent !important;

    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;

    color: #10213D !important;

    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
}


.ssa-hero-v3
.modern-search-box
input::placeholder {
    color: #97A3B6;
    opacity: 1;
}


/* ---------------------------------------------------------
   CTA
   --------------------------------------------------------- */

.ssa-hero-v3 .modern-search-button {
    flex: 0 0 auto;

    min-width: 220px;
    height: 58px;

    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    background:
        linear-gradient(
            135deg,
            #315CFF 0%,
            #176BEF 55%,
            #188EEB 100%
        );

    border:
        1px solid rgba(20, 77, 210, .22);

    border-radius: 13px;

    color: #FFFFFF;

    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;

    white-space: nowrap;
    cursor: pointer;

    box-shadow:
        0 10px 25px rgba(26, 88, 232, .30),
        inset 0 1px 0 rgba(255,255,255,.14);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        filter .2s ease;
}


.ssa-hero-v3
.modern-search-button:hover,
.ssa-hero-v3
.modern-search-button:focus {
    color: #FFFFFF;

    transform: translateY(-1px);

    filter: brightness(1.04);

    box-shadow:
        0 14px 30px rgba(26, 88, 232, .38),
        inset 0 1px 0 rgba(255,255,255,.16);
}


.ssa-hero-v3
.modern-search-button:focus-visible {
    outline:
        3px solid rgba(190, 219, 255, .85);

    outline-offset: 3px;
}


.ssa-button-arrow {
    margin-left: 2px;
    opacity: .82;
}


/* ---------------------------------------------------------
   TRUST BENEFITS
   --------------------------------------------------------- */

.ssa-hero-v3 .modern-trust {
    width: 100%;
    max-width: 760px;

    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    align-items: center;

    gap: 0;

    margin: 30px auto 0;
    padding: 0;

    list-style: none;
}


.ssa-hero-v3 .modern-trust li {
    position: relative;

    min-width: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    margin: 0;
    padding: 0 24px;

    color: #FFFFFF;

    text-align: left;
}


.ssa-hero-v3
.modern-trust li + li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 1px;
    height: 44px;

    transform: translateY(-50%);

    background:
        rgba(255,255,255,.16);
}


.ssa-trust-icon {
    flex: 0 0 auto;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(255,255,255,.10);

    border-radius: 50%;

    background:
        rgba(255,255,255,.08);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.07);

    color: #EAF2FF;

    font-size: 15px;
}


.ssa-trust-copy {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 3px;
}


.ssa-trust-copy strong {
    color: #FFFFFF;

    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;

    white-space: nowrap;
}


.ssa-trust-copy small {
    color: rgba(222, 232, 251, .68);

    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.4;

    white-space: nowrap;
}


/* ---------------------------------------------------------
   FLOATING CARDS
   --------------------------------------------------------- */

.ssa-float-card,
.ssa-float-icon {
    position: absolute;
    z-index: 3;

    pointer-events: none;
    user-select: none;
}


.ssa-float-card {
    border:
        1px solid rgba(255,255,255,.13);

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.10),
            rgba(255,255,255,.045)
        );

    box-shadow:
        0 18px 45px rgba(0, 9, 40, .22),
        inset 0 1px 0 rgba(255,255,255,.08);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


.ssa-score-card {
    left: 5.2%;
    top: 30%;

    width: 190px;

    display: flex;
    align-items: center;

    gap: 14px;

    padding: 18px;

    border-radius: 18px;

    transform: rotate(-7deg);
}


.ssa-score-ring {
    position: relative;

    flex: 0 0 auto;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        conic-gradient(
            #5BE5D5 0deg 275deg,
            rgba(255,255,255,.12) 275deg 360deg
        );
}


.ssa-score-ring::after {
    content: "";

    position: absolute;

    inset: 7px;

    border-radius: 50%;

    background: #122659;
}


.ssa-score-ring span {
    position: relative;
    z-index: 2;

    color: #FFFFFF;

    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
}


.ssa-score-copy {
    display: flex;
    flex-direction: column;

    gap: 3px;

    text-align: left;
}


.ssa-score-copy small,
.ssa-issues-card small {
    color: rgba(235,243,255,.72);

    font-family: 'Poppins', sans-serif;
    font-size: 10px;
}


.ssa-score-copy strong {
    color: #FFFFFF;

    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
}


.ssa-issues-card {
    right: 5.2%;
    top: 48%;

    width: 145px;

    padding: 17px 18px;

    border-radius: 17px;

    transform: rotate(8deg);

    text-align: left;
}


.ssa-issues-card strong {
    display: block;

    margin: 3px 0 6px;

    color: #FFFFFF;

    font-family: 'Poppins', sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
}


.ssa-issues-card span {
    color: rgba(230,239,255,.58);

    font-family: 'Poppins', sans-serif;
    font-size: 9px;
}


/* ---------------------------------------------------------
   FLOATING ICONS
   --------------------------------------------------------- */

.ssa-float-icon {
    width: 68px;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(255,255,255,.13);

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.16),
            rgba(255,255,255,.055)
        );

    box-shadow:
        0 16px 40px rgba(0,10,45,.20),
        inset 0 1px 0 rgba(255,255,255,.10);

    color: #FFFFFF;

    font-size: 23px;

    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}


.ssa-chart-float {
    right: 10.5%;
    top: 17%;

    transform: rotate(7deg);
}


.ssa-bolt-float {
    left: 10%;
    bottom: 15%;

    width: 64px;
    height: 64px;

    font-size: 24px;

    transform: rotate(-7deg);
}


/* ---------------------------------------------------------
   DOT GRID
   --------------------------------------------------------- */

.ssa-hero-grid {
    position: absolute;
    z-index: 1;

    right: 2.5%;
    top: 31%;

    width: 150px;
    height: 180px;

    opacity: .28;

    background-image:
        radial-gradient(
            circle,
            rgba(150, 198, 255, .72) 1px,
            transparent 1.4px
        );

    background-size: 15px 15px;

    -webkit-mask-image:
        linear-gradient(
            to bottom,
            transparent,
            #000 20%,
            #000 75%,
            transparent
        );

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            #000 20%,
            #000 75%,
            transparent
        );

    pointer-events: none;
}


/* ---------------------------------------------------------
   AMBIENT ORBS
   --------------------------------------------------------- */

.ssa-hero-orb {
    position: absolute;
    z-index: 0;

    border-radius: 50%;

    filter: blur(2px);

    pointer-events: none;
}


.ssa-hero-orb-one {
    right: -80px;
    top: -120px;

    width: 430px;
    height: 430px;

    background:
        radial-gradient(
            circle,
            rgba(82, 107, 255, .42),
            rgba(82, 107, 255, 0) 68%
        );
}


.ssa-hero-orb-two {
    left: -160px;
    bottom: -210px;

    width: 480px;
    height: 480px;

    background:
        radial-gradient(
            circle,
            rgba(0, 175, 255, .13),
            rgba(0, 175, 255, 0) 67%
        );
}


/* ---------------------------------------------------------
   CURVED LIGHT LINES
   --------------------------------------------------------- */

.ssa-hero-lines {
    position: absolute;
    z-index: 1;

    right: -120px;
    bottom: -95px;

    width: 600px;
    height: 280px;

    transform: rotate(-8deg);

    pointer-events: none;
}


.ssa-hero-lines span {
    position: absolute;

    right: 0;

    width: 570px;
    height: 170px;

    border-top:
        1px solid rgba(80, 193, 255, .45);

    border-radius: 50%;

    box-shadow:
        0 -1px 10px rgba(45, 135, 255, .12);
}


.ssa-hero-lines span:nth-child(1) {
    top: 10px;
}


.ssa-hero-lines span:nth-child(2) {
    top: 45px;

    width: 530px;

    border-color:
        rgba(93, 124, 255, .40);
}


.ssa-hero-lines span:nth-child(3) {
    top: 80px;

    width: 490px;

    border-color:
        rgba(49, 216, 255, .32);
}


/* ---------------------------------------------------------
   LARGE TABLET / SMALL DESKTOP
   --------------------------------------------------------- */

@media (max-width: 1180px) {

    .ssa-score-card {
        left: 2.5%;

        transform:
            scale(.88)
            rotate(-7deg);
    }

    .ssa-issues-card {
        right: 2.5%;

        transform:
            scale(.90)
            rotate(8deg);
    }

    .ssa-chart-float {
        right: 5%;
    }

    .ssa-bolt-float {
        left: 5%;
    }

}


/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 991px) {

    .ssa-hero-v3 {
        min-height: auto;

        padding:
            78px 22px 70px;
    }

    .ssa-hero-v3 h1 {
        max-width: 760px;

        font-size: 48px;
        letter-spacing: -1.6px;
    }

    .ssa-hero-v3 h2 {
        max-width: 650px;

        font-size: 15px;
    }

    .ssa-hero-v3 .modern-analyzer {
        max-width: 730px;
    }

    .ssa-score-card,
    .ssa-issues-card,
    .ssa-chart-float,
    .ssa-bolt-float {
        opacity: .42;
    }

    .ssa-score-card {
        left: -45px;
    }

    .ssa-issues-card {
        right: -28px;
    }

    .ssa-chart-float {
        right: 2%;
    }

    .ssa-bolt-float {
        left: 2%;
    }

}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 767px) {

    .ssa-hero-v3 {
        padding:
            60px 16px 54px;
    }

    .ssa-hero-badge {
        margin-bottom: 19px;

        padding: 8px 14px;

        font-size: 10px;
    }

    .ssa-hero-v3 h1 {
        max-width: 590px;

        margin-bottom: 15px;

        font-size: 36px;
        line-height: 1.13;
        letter-spacing: -1px;
    }

    .ssa-hero-v3 h2 {
        max-width: 540px;

        margin-bottom: 27px;

        font-size: 14px;
        line-height: 1.65;
    }

    .ssa-hero-v3 .modern-analyzer {
        max-width: 570px;
    }

    .ssa-hero-v3 .modern-search-box {
        padding: 6px;

        border-radius: 15px;
    }

    .ssa-url-icon {
        width: 39px;
        height: 52px;

        font-size: 17px;
    }

    .ssa-hero-v3
    .modern-search-box input {
        height: 52px;

        padding-right: 8px;

        font-size: 13px;
    }

    .ssa-hero-v3
    .modern-search-button {
        min-width: 0;
        height: 52px;

        padding: 0 17px;

        border-radius: 11px;

        font-size: 12px;
    }

    .ssa-button-arrow {
        display: none;
    }

    .ssa-hero-v3 .modern-trust {
        max-width: 540px;

        margin-top: 24px;
    }

    .ssa-hero-v3
    .modern-trust li {
        gap: 8px;

        padding: 0 10px;
    }

    .ssa-trust-icon {
        width: 34px;
        height: 34px;

        font-size: 12px;
    }

    .ssa-trust-copy strong {
        font-size: 10px;
    }

    .ssa-trust-copy small {
        font-size: 8px;
    }

    .ssa-score-card,
    .ssa-issues-card,
    .ssa-chart-float,
    .ssa-bolt-float {
        display: none;
    }

    .ssa-hero-grid {
        right: -35px;

        opacity: .17;
    }

    .ssa-hero-lines {
        opacity: .45;
    }

}


/* ---------------------------------------------------------
   SMALL MOBILE
   --------------------------------------------------------- */

@media (max-width: 560px) {

    .ssa-hero-v3 {
        padding:
            52px 13px 48px;
    }

    .ssa-hero-v3 h1 {
        font-size: 31px;
        letter-spacing: -.75px;
    }

    .ssa-hero-v3 h2 {
        margin-bottom: 24px;

        font-size: 13px;
    }

    .ssa-hero-v3 .modern-search-box {
        display: grid;

        grid-template-columns:
            38px minmax(0, 1fr);

        padding: 6px;
    }

    .ssa-url-icon {
        grid-column: 1;
        grid-row: 1;
    }

    .ssa-hero-v3
    .modern-search-box input {
        grid-column: 2;
        grid-row: 1;

        width: 100%;
    }

    .ssa-hero-v3
    .modern-search-button {
        grid-column: 1 / -1;
        grid-row: 2;

        width: 100%;
        height: 50px;

        margin-top: 3px;
    }

    .ssa-hero-v3 .modern-trust {
        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 14px;

        max-width: 100%;

        margin-top: 23px;
    }

    .ssa-hero-v3
    .modern-trust li {
        justify-content: flex-start;

        padding: 0;
    }

    
.ssa-hero-v3
    .modern-trust li + li::before {
        display: none;
    }

    .ssa-hero-v3 .modern-trust {
        gap: 4px;
    }

    .ssa-hero-v3 .modern-trust li {
        flex-direction: column;
        gap: 5px;
        padding: 0 2px;
        text-align: center;
    }

    .ssa-trust-icon {
        width: 32px;
        height: 32px;
    }

    .ssa-trust-copy strong {
        font-size: 9px;
        white-space: normal;
    }

    .ssa-trust-copy small {
        font-size: 8px;
        white-space: normal;
    }

    .ssa-hero-v3 .modern-trust li + li::before {
        display: block;
        height: 66px;
    }


    .ssa-trust-icon {
        width: 38px;
        height: 38px;
    }

    .ssa-trust-copy strong {
        font-size: 11px;
    }

    .ssa-trust-copy small {
        font-size: 9px;
    }

}


/* ---------------------------------------------------------
   VERY SMALL MOBILE
   --------------------------------------------------------- */

@media (max-width: 380px) {

    .ssa-hero-v3 h1 {
        font-size: 28px;
    }

    .ssa-hero-badge {
        font-size: 9px;
    }

}
