*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --blue: #2563EB;
    --blue-dark: #1D4ED8;
    --blue-light: #EFF6FF;
    --blue-mid: #DBEAFE;
    --green: #16A34A;
    --green-light: #F0FDF4;
    --amber: #D97706;
    --amber-light: #FFFBEB;
    --red: #DC2626;
    --red-light: #FEF2F2;
    --gray-900: #111827;
    --gray-800: #1F2937;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --gray-50: #F9FAFB;
    --white: #fff;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 20px;
    --shadow: 0 1px 3px rgba(0, 0, 0, .08), 0 4px 12px rgba(0, 0, 0, .06);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, .08), 0 12px 40px rgba(0, 0, 0, .07);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--gray-900);
    background: var(--white);
    font-size: 16px;
    line-height: 1.6
}

a {
    text-decoration: none;
    color: inherit
}

button {
    cursor: pointer;
    font-family: inherit
}

/* NAV */
.nav {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 200;
    padding: 0 1.5rem
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--blue)
}

.nav-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--blue);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center
}

.nav-logo-mark svg {
    width: 20px;
    height: 20px
}

.nav-links {
    display: flex;
    gap: 2rem
}

.nav-links a {
    font-size: .875rem;
    font-weight: 600;
    color: var(--gray-600);
    transition: color .15s
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--blue)
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: .75rem
}

.btn-ghost {
    background: none;
    border: 1.5px solid var(--gray-300);
    color: var(--gray-700);
    border-radius: var(--radius);
    padding: 8px 18px;
    font-size: .875rem;
    font-weight: 600;
    transition: all .15s
}

.btn-ghost:hover {
    border-color: var(--blue);
    color: var(--blue)
}

.btn-solid {
    background: var(--blue);
    border: none;
    color: var(--white);
    border-radius: var(--radius);
    padding: 9px 20px;
    font-size: .875rem;
    font-weight: 700;
    transition: background .15s
}

.btn-solid:hover {
    background: var(--blue-dark)
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #EFF6FF 0%, #F0F9FF 50%, #F5F3FF 100%);
    padding: 4.5rem 1.5rem 3.5rem;
    border-bottom: 1px solid var(--gray-200)
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 490px;
    gap: 3.5rem;
    align-items: start
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border: 1px solid var(--blue-mid);
    color: var(--blue);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 1.25rem
}

.hero-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--blue);
    border-radius: 50%
}

.hero h1 {
    font-size: clamp(1.75rem, 3.5vw, 2.625rem);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.15;
    margin-bottom: 1rem
}

.hero h1 span {
    color: var(--blue)
}

.hero-sub {
    font-size: 1.0625rem;
    color: var(--gray-600);
    margin-bottom: 1.75rem;
    max-width: 520px;
    font-weight: 400
}

.hero-proof {
    display: flex;
    flex-direction: column;
    gap: .625rem;
    margin-bottom: 2rem
}

.proof-item {
    display: flex;
    align-items: center;
    gap: .625rem;
    font-size: .9rem;
    font-weight: 600;
    color: var(--gray-700)
}

.proof-item svg {
    width: 18px;
    height: 18px;
    color: var(--green);
    flex-shrink: 0
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
    flex-wrap: wrap
}

.hero-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--blue)
}

.hero-stat span {
    font-size: .8125rem;
    color: var(--gray-500)
}

.seen-in {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--gray-200)
}

.seen-in p {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: .75rem
}

.seen-in-logos {
    display: flex;
    gap: .75rem;
    align-items: center;
    flex-wrap: wrap
}

.logo-pill {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 6px 14px;
    font-size: .8125rem;
    font-weight: 700;
    color: var(--gray-500)
}

/* TOOL CARD */
.tool-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden
}

.tool-header {
    background: var(--blue);
    padding: 1.125rem 1.5rem;
    display: flex;
    align-items: center;
    gap: .875rem
}

.tool-header svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0
}

.tool-header-text h2 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white)
}

.tool-header-text p {
    font-size: .8125rem;
    color: rgba(255, 255, 255, .8)
}

.steps-bar {
    display: flex;
    padding: .75rem 1.25rem;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    align-items: center
}

.step-item {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--gray-400)
}

.step-item.active {
    color: var(--blue)
}

.step-item.done {
    color: var(--green)
}

.step-num {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .625rem;
    font-weight: 800;
    flex-shrink: 0
}

.step-connector {
    flex: 1;
    height: 1.5px;
    background: var(--gray-200);
    margin: 0 .5rem
}

.step-connector.done {
    background: var(--green)
}

.tabs {
    display: flex;
    border-bottom: 1px solid var(--gray-200)
}

.tab-btn {
    flex: 1;
    padding: .875rem 1rem;
    background: none;
    border: none;
    border-bottom: 2.5px solid transparent;
    font-size: .875rem;
    font-weight: 600;
    color: var(--gray-500);
    transition: all .15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem
}

.tab-btn svg {
    width: 15px;
    height: 15px
}

.tab-btn.active {
    color: var(--blue);
    border-bottom-color: var(--blue);
    background: var(--blue-light)
}

.tab-btn:hover:not(.active) {
    color: var(--gray-700);
    background: var(--gray-50)
}

.pane {
    padding: 1.25rem;
    display: none
}

.pane.active {
    display: block
}

.upload-zone {
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius-xl);
    padding: 2.25rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all .2s;
    background: var(--gray-50);
    position: relative
}

.upload-zone:hover,
.upload-zone.drag-active {
    border-color: var(--blue);
    background: var(--blue-light)
}

.upload-zone input[type=file] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%
}

.upload-icon {
    width: 56px;
    height: 56px;
    background: var(--blue-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto .875rem
}

.upload-icon svg {
    width: 28px;
    height: 28px;
    color: var(--blue)
}

.upload-zone h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: .25rem
}

.upload-zone p {
    font-size: .8125rem;
    color: var(--gray-500)
}

.file-types {
    display: flex;
    gap: .4rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: .75rem
}

.ft-badge {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 5px;
    padding: 2px 8px;
    font-size: .7rem;
    font-weight: 700;
    color: var(--gray-600)
}

.file-ok {
    margin-top: .75rem;
    display: none;
    align-items: center;
    gap: .5rem;
    background: var(--green-light);
    border: 1px solid #BBF7D0;
    border-radius: var(--radius);
    padding: 7px 12px;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--green)
}

.file-ok svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0
}

#paste-pane textarea {
    width: 100%;
    height: 200px;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-lg);
    padding: .875rem 1rem;
    font-family: inherit;
    font-size: .875rem;
    color: var(--gray-800);
    resize: vertical;
    outline: none;
    line-height: 1.6;
    transition: border-color .15s;
    background: var(--gray-50)
}

#paste-pane textarea:focus {
    border-color: var(--blue);
    background: var(--white)
}

#paste-pane textarea::placeholder {
    color: var(--gray-400)
}

.jd-section {
    padding: 0 1.25rem 1.25rem
}

.jd-label {
    font-size: .875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    gap: .5rem
}

.opt-badge {
    font-size: .68rem;
    font-weight: 700;
    background: var(--amber-light);
    color: var(--amber);
    border: 1px solid #FDE68A;
    border-radius: 4px;
    padding: 1px 7px
}

.jd-section textarea {
    width: 100%;
    height: 100px;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-lg);
    padding: .75rem 1rem;
    font-family: inherit;
    font-size: .875rem;
    color: var(--gray-800);
    resize: vertical;
    outline: none;
    line-height: 1.6;
    transition: border-color .15s;
    background: var(--gray-50)
}

.jd-section textarea:focus {
    border-color: var(--blue);
    background: var(--white)
}

.jd-section textarea::placeholder {
    color: var(--gray-400)
}

.jd-hint {
    font-size: .75rem;
    color: var(--gray-400);
    margin-top: .3rem
}

.cta-row {
    padding: 1rem 1.25rem;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200)
}

.check-btn {
    width: 100%;
    background: var(--blue);
    color: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    padding: 14px 24px;
    font-size: .9375rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .625rem;
    transition: all .2s
}

.check-btn:hover:not(:disabled) {
    background: var(--blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37, 99, 235, .35)
}

.check-btn:disabled {
    background: var(--gray-300);
    cursor: not-allowed;
    transform: none;
    box-shadow: none
}

.check-btn svg {
    width: 18px;
    height: 18px
}

.spin {
    animation: spin .75s linear infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.counter-note {
    font-size: .78rem;
    color: var(--gray-400);
    text-align: center;
    margin-top: .625rem
}

.counter-note strong {
    color: var(--gray-600)
}

/* RESULTS */
.results-wrap {
    padding: 1.25rem;
    display: none
}

.results-wrap.show {
    display: block
}

.loader {
    text-align: center;
    padding: 2rem 0
}

.loader-ring {
    width: 44px;
    height: 44px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--blue);
    border-radius: 50%;
    animation: spin .7s linear infinite;
    margin: 0 auto .875rem
}

.loader p {
    font-size: .9375rem;
    color: var(--gray-600);
    font-weight: 500;
    margin-bottom: .875rem
}

.loader-steps {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    align-items: flex-start;
    width: fit-content;
    margin: 0 auto
}

.lstep {
    font-size: .8125rem;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: .5rem
}

.lstep.done {
    color: var(--green)
}

.lstep-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0
}

.score-panel {
    background: linear-gradient(135deg, #1D4ED8, #3B82F6);
    border-radius: var(--radius-xl);
    padding: 1.375rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem
}

.score-ring {
    position: relative;
    width: 96px;
    height: 96px;
    flex-shrink: 0
}

.score-ring svg {
    transform: rotate(-90deg)
}

.score-ring-txt {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.score-ring-num {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1
}

.score-ring-lbl {
    font-size: .6rem;
    font-weight: 700;
    opacity: .7;
    letter-spacing: .05em;
    text-transform: uppercase
}

.score-meta h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: .25rem
}

.score-meta p {
    font-size: .8125rem;
    opacity: .85;
    line-height: 1.55
}

.grade-pill {
    display: inline-block;
    padding: 3px 11px;
    border-radius: 100px;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: .4rem
}

.sec-head {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: .75rem;
    display: flex;
    align-items: center;
    gap: .75rem
}

.sec-head::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200)
}

.bk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
    gap: 8px;
    margin-bottom: 1.25rem
}

.bk-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: .75rem .875rem
}

.bk-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: .5rem
}

.bk-name {
    font-size: .75rem;
    font-weight: 600;
    color: var(--gray-500)
}

.bk-val {
    font-size: 1rem;
    font-weight: 800
}

.bk-bar-bg {
    height: 4px;
    background: var(--gray-200);
    border-radius: 100px;
    overflow: hidden
}

.bk-bar {
    height: 100%;
    border-radius: 100px;
    transition: width .9s cubic-bezier(.4, 0, .2, 1)
}

.kw-section {
    margin-bottom: 1.25rem
}

.kw-legend {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: .625rem
}

.kw-li {
    font-size: .75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .35rem;
    color: var(--gray-600)
}

.kw-li-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%
}

.kw-group {
    margin-bottom: .75rem
}

.kw-group-lbl {
    font-size: .7rem;
    font-weight: 700;
    color: var(--gray-400);
    margin-bottom: .4rem;
    text-transform: uppercase;
    letter-spacing: .05em
}

.kw-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .375rem
}

.kw-chip {
    padding: 3px 10px;
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 600;
    border: 1.5px solid transparent
}

.kw-chip.found {
    background: var(--green-light);
    color: #166534;
    border-color: #BBF7D0
}

.kw-chip.missing {
    background: var(--red-light);
    color: #991B1B;
    border-color: #FECACA
}

.kw-chip.suggested {
    background: var(--amber-light);
    color: #92400E;
    border-color: #FDE68A
}

.sugg-list {
    display: flex;
    flex-direction: column;
    gap: .625rem;
    margin-bottom: 1.25rem
}

.sugg-item {
    display: flex;
    gap: .75rem;
    padding: .75rem .875rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    border-left-width: 3px
}

.sugg-item.warn {
    border-left-color: var(--amber)
}

.sugg-item.error {
    border-left-color: var(--red)
}

.sugg-item.ok {
    border-left-color: var(--green)
}

.sugg-item.info {
    border-left-color: var(--blue)
}

.si-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.si-icon.warn {
    background: var(--amber-light)
}

.si-icon.error {
    background: var(--red-light)
}

.si-icon.ok {
    background: var(--green-light)
}

.si-icon.info {
    background: var(--blue-light)
}

.si-icon svg {
    width: 14px;
    height: 14px
}

.si-body strong {
    display: block;
    font-size: .8125rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: .15rem
}

.si-body span {
    font-size: .78rem;
    color: var(--gray-500);
    line-height: 1.5
}

.result-actions {
    display: flex;
    gap: .625rem;
    flex-wrap: wrap
}

.ra-btn {
    flex: 1;
    min-width: 130px;
    padding: 10px 16px;
    border-radius: var(--radius);
    font-size: .875rem;
    font-weight: 700;
    border: 1.5px solid var(--gray-300);
    background: var(--white);
    color: var(--gray-700);
    transition: all .15s
}

.ra-btn:hover {
    background: var(--gray-50);
    border-color: var(--gray-400)
}

.ra-btn.primary {
    background: var(--blue);
    color: white;
    border-color: var(--blue)
}

.ra-btn.primary:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark)
}

/* SECTIONS */
.section {
    padding: 5rem 1.5rem
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto
}

.section-tag {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: .625rem
}

.section-h2 {
    font-size: clamp(1.5rem, 3vw, 2.125rem);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1rem
}

.section-sub {
    font-size: 1rem;
    color: var(--gray-500);
    max-width: 600px;
    line-height: 1.7
}

.checks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem
}

.check-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    transition: box-shadow .2s
}

.check-card:hover {
    box-shadow: var(--shadow)
}

.ci-wrap {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.125rem
}

.ci-wrap.blue {
    background: var(--blue-light)
}

.ci-wrap.green {
    background: var(--green-light)
}

.ci-wrap.purple {
    background: #F5F3FF
}

.ci-wrap svg {
    width: 23px;
    height: 23px
}

.check-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .875rem
}

.cg {
    margin-bottom: .75rem
}

.cg-title {
    font-size: .8125rem;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: .35rem
}

.cg ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .2rem
}

.cg ul li {
    font-size: .8125rem;
    color: var(--gray-500);
    display: flex;
    align-items: flex-start;
    gap: .35rem
}

.cg ul li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--gray-400);
    border-radius: 50%;
    margin-top: .5rem;
    flex-shrink: 0
}

.how-section {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200)
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem
}

.how-step h3 {
    font-size: .9375rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .5rem
}

.how-step p {
    font-size: .875rem;
    color: var(--gray-500);
    line-height: 1.6
}

.how-num {
    width: 42px;
    height: 42px;
    background: var(--blue);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9375rem;
    font-weight: 800;
    margin-bottom: .875rem
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem
}

.trust-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    text-align: center
}

.trust-num {
    font-size: 2.125rem;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: .35rem
}

.trust-lbl {
    font-size: .875rem;
    font-weight: 700;
    color: var(--gray-700)
}

.trust-sub {
    font-size: .78rem;
    color: var(--gray-400);
    margin-top: .25rem
}

.faq-list {
    max-width: 780px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: .9375rem;
    font-weight: 700;
    color: var(--gray-800);
    text-align: left;
    cursor: pointer;
    transition: background .15s
}

.faq-q:hover {
    background: var(--gray-50)
}

.faq-q svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--gray-400);
    transition: transform .2s
}

.faq-q.open svg {
    transform: rotate(45deg);
    color: var(--blue)
}

.faq-a {
    display: none;
    padding: 0 1.25rem 1rem;
    font-size: .875rem;
    color: var(--gray-600);
    line-height: 1.75
}

.faq-a.open {
    display: block
}

.cta-section {
    background: linear-gradient(135deg, #1E40AF, #2563EB, #3B82F6);
    padding: 5rem 1.5rem;
    text-align: center
}

.cta-section h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem
}

.cta-section p {
    font-size: 1rem;
    color: rgba(255, 255, 255, .8);
    max-width: 540px;
    margin: 0 auto 2rem
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: .625rem;
    background: white;
    color: var(--blue);
    border: none;
    border-radius: var(--radius-lg);
    padding: 14px 28px;
    font-size: .9375rem;
    font-weight: 700;
    transition: all .2s;
    cursor: pointer;
    font-family: inherit
}

.cta-btn:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .15)
}

.cta-btn svg {
    width: 18px;
    height: 18px
}

footer {
    background: var(--gray-900);
    color: white;
    padding: 4rem 1.5rem 2rem
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem
}

.footer-brand p {
    font-size: .875rem;
    color: var(--gray-400);
    margin-top: .875rem;
    max-width: 220px;
    line-height: 1.7
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: .625rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: white
}

.fl-mark {
    width: 32px;
    height: 32px;
    background: var(--blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center
}

.fl-mark svg {
    width: 18px;
    height: 18px
}

.footer-col h4 {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 1rem
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.footer-col ul li a {
    font-size: .875rem;
    color: var(--gray-400);
    transition: color .15s
}

.footer-col ul li a:hover {
    color: white
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
    flex-wrap: wrap;
    gap: 1rem
}

.footer-bottom p {
    font-size: .8125rem;
    color: var(--gray-500)
}

.fb-links {
    display: flex;
    gap: 1.5rem
}

.fb-links a {
    font-size: .8125rem;
    color: var(--gray-500);
    transition: color .15s
}

.fb-links a:hover {
    color: white
}

@media(max-width:960px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem
    }
}

@media(max-width:600px) {
    .hero {
        padding: 2.5rem 1rem 2rem
    }

    .score-panel {
        flex-direction: column;
        text-align: center
    }

    .footer-top {
        grid-template-columns: 1fr
    }

    .nav-links {
        display: none
    }

    .nav-actions .btn-ghost {
        display: none
    }
}