.overlay,
.progress-wrap,
footer label input[type=email],
footer label input[type=text],
header {
    width: 100%
}

#how-it-works,
.questions,
.business-valuation-section {
    scroll-margin-top: 120px
}

html {
    scroll-behavior: smooth
}

.logo,
nav ul {
    display: flex
}

body,
nav ul {
    margin: 0
}

.dropdown ul li,
nav ul {
    padding: 0
}

.highlight,
.valuTrek-hero,
.valuTrek-hero h2,
.valuTrek-hero p {
    color: #fff
}

.social-icons a:not(:first-child) {
    display: flex;
    align-items: center;
    justify-content: center
}

.grid.cols-2,
.options-grid {
    grid-template-columns: repeat(1, 1fr)
}

footer h4,
nav a {
    display: inline-block
}

.btn,
nav a {
    text-decoration: none
}

.footer-links ul li a:hover,
a.inline-link {
    text-decoration: underline
}

.dropdown ul,
.invisible {
    visibility: hidden
}

.dimension-bar,
.faq-answer,
.gauge,
.hero,
.progress-bar,
.progressbar,
.valuTrek-hero {
    overflow: hidden
}

.gauge-mirror,
.gauge-mirror::after,
.gauge-mirror::before {
    filter: blur(10px);
    position: absolute
}

#why-sellability-score-matters,
.circular-graph,
.dropdown ul a,
.relative,
nav li {
    position: relative
}

:root {
    --emerald-600: #059669;
    --emerald-700: #065f46;
    --emerald-50: #ecfdf5;
    --emerald-100: #d1fae5;
    --main: #00461c;
    --dark-btn-color: #003616;
    --slate-100: #d1d7de;
    --slate-400: #94a3b8;
    --orange-50: #fff7ed;
    --red-50: #fee2e2;
    --red-600: #dc2626;
    --yellow-500: #f59e0b;
    --bg: #ffffff;
    --card-radius: 12px;
    --container: 1200px;
    --shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    --gauge-width: 300px;
    --gauge-height: 300px;
    --glow-color: #00ff66;
    --highlight-color: #00e65c;
    --highlight-color-400: #00c251;
    --main-border-color: #00461C;
    --main-outline-color: #007a33;
    --corner-soft-color: rgba(0, 255, 102, 0.2);
    --C1: tomato;
    --C2: green;
    --C3: violet;
    --C4: blue;
    --C5: royalblue;
    --C6: gray;
}

* {
    box-sizing: border-box
}

body {
    color: #0f172a;
    line-height: 1.45;
          font-family: "Poppins", sans-serif;
}

input,
select {
          font-family: "Poppins", sans-serif;
}

.dropdown ul,
header {
    background-color: #fff;
    display: flex;
    z-index: 1000
}

header {
    justify-content: space-between;
    align-items: center;
    padding: .5rem 2rem;
    position: sticky;
    top: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15)
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: .5px;
    align-items: center;
    justify-content: center
}

.logo a {
    display: flex;
    align-items: center
}

.btn,
.highlight {
    font-weight: 600
}

nav ul {
    list-style: none;
    gap: 1.5rem
}

nav a {
    color: #333;
    font-weight: 500;
    font-size: 18px;
    transition: color .3s;
    padding: .5rem
}

.dropdown>a::after {
    content: " ▾";
    font-size: .8rem
}

.dropdown ul a:hover::before,
.dropdown ul::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%)
}

.dropdown ul {
    position: absolute;
    top: 100%;
    left: -80px;
    width: 310px;
    white-space: nowrap;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
    padding: .5rem 0;
    opacity: 0;
    flex-direction: column;
    gap: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: .25s
}

.dropdown ul::before {
    top: 0;
    width: 100px;
    height: 5px;
    background-color: #035122
}

.dropdown:hover ul {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    transform: translateY(0)
}

.dropdown ul a {
    display: block;
    padding: .6rem 1rem;
    color: #333;
    text-align: center
}

.dropdown ul a:hover {
    color: #aaa
}

.dropdown ul a:hover::before {
    bottom: 0;
    width: 60%;
    height: 2px;
    background-color: var(--main)
}

.contact-action-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    padding: 6px 0;
    gap: 20px
}

.contact-action-bar button {
    padding: 4px 10px
}

.menu-toggle .row,
.newsletter-options label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000
}

footer a {
    color: #fff !important
}

.menu-toggle .row a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #ecfdf5;
    border-radius: 8px
}

@media (max-width:900px) {
    nav ul {
        flex-direction: column;
        background-color: #fff;
        position: absolute;
        top: 100%;
        right: 0;
        width: 250px;
        display: none;
        padding: 1rem 0
    }

    nav ul.show {
        display: flex;
        overflow-y: auto;
        height: calc(100vh - 50px);
        gap: 0;
        min-width: 320px
    }

    .dropdown ul {
        display: none;
        position: static;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        transform: none;
        width: 100%;
        background-color: #ecfdf5
    }

    nav ul.show li {
        text-align: center
    }

    #nav-list ul::before {
        content: unset
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
        font-size: 1.5rem;
        margin-left: auto;
        background-color: transparent;
        border: none;
        outline: 0
    }
}

.hero .wrap,
.q-wrap,
main {
    margin: 0 auto
}

.overlay {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    z-index: 99;
    display: none
}

.dark-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: -1
}

.valuTrek-hero {
    position: relative;
    background-color: var(--main);
    background-size: cover;
    padding: 3rem 1.5rem
}

.valuTrek-hero-bg {
    position: absolute;
    inset: 0;
    opacity: .1;
    z-index: 0
}

.valuTrek-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1050px;
    margin: 0 auto
}

#sellability-tiers .section-container,
.q-wrap {
    max-width: 1360px
}

.valuTrek-hero h1 {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem
}

.valuTrek-hero h2 {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 1.5rem
}

@media (min-width:768px) {
    .valuTrek-hero h1 {
        font-size: 3.6rem
    }

    .valuTrek-hero h2 {
        font-size: 1.5rem
    }
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem
}

.btn.primary {
    background: #fff;
    color: #064e3b;
    border: none
}

.btn.primary:hover {
    background: #f3f4f6
}

.sub-footer {
    margin-top: 2.5rem;
    font-size: .9rem;
    color: #d1d5db
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

.fade-up {
    opacity: 0;
    animation: .6s forwards fadeUp
}

.fade-up.delay-0 {
    animation-delay: 0s
}

.fade-up.delay-1 {
    animation-delay: .2s
}

.fade-up.delay-2 {
    animation-delay: .4s
}

.fade-up.delay-3 {
    animation-delay: .6s
}

.fade-up.delay-4 {
    animation-delay: .8s
}

.hero {
    position: relative;
    color: #fff;
    padding: 64px 24px;
    background: linear-gradient(90deg, #10b981 0, #14b8a6 50%, #2dd4bf 100%);
    background-size: 200% 100%;
    animation: 18s linear infinite gradientMove
}

.btn,
.progressbar>i {
    background: var(--main)
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(4, 120, 87, .18);
    pointer-events: none
}

@keyframes gradientMove {

    0%,
    100% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }
}

.hero .wrap {
    position: relative;
    z-index: 2;
    max-width: var(--container)
}

h1 {
    font-size: 3.6rem;
    margin: 0 0 12px;
    font-weight: 800;
    letter-spacing: -.02em
}

.hero p {
    margin: 8px auto;
    max-width: 760px;
    color: rgba(236, 253, 245, .95);
    font-size: 16px
}

.hero .controls {
    margin-top: 22px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    font-size: 15px;
    box-shadow: var(--shadow)
}

.btn.outline {
    color: #fff;
    background: #fff;
    color: var(--main);
    border: 1px solid rgba(6, 95, 70, .08);
    box-shadow: none
}

.btn:active {
    transform: translateY(1px) scale(.998)
}

.btn[disabled] {
    opacity: .55;
    cursor: not-allowed;
    transform: none
}

.stickybar {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid #e6eef6
}

.sticky-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 12px 20px
}

.progress-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: #475569;
    margin-bottom: 8px
}

.progressbar {
    height: 10px;
    background: #eef2f7;
    border-radius: 999px
}

.card,
.opt-btn,
.review-panel,
.sellability-table tbody tr.even {
    background: #fff
}

.progressbar>i {
    display: block;
    height: 100%;
    width: 0%;
    transition: width .35s
}

.review-panel {
    padding: 16px 20px;
    border-bottom: 1px solid #eef2f7
}

.grid,
.review-grid {
    display: grid;
    gap: 12px
}

.card {
    border-radius: 12px;
    border: 1px solid #eef2f7;
    padding: 14px;
    box-shadow: none
}

section.questions {
    padding: 36px 24px
}

h2.qtitle {
    font-size: 30px;
    margin: 0 0 8px;
    color: var(--main)
}

p.help {
    margin: 6px 0 18px;
    color: #475569;
    min-height: 50px
}

.options-grid {
    display: grid;
    gap: 14px
}

@media(min-width:940px) {
    .options-grid {
        grid-template-columns: repeat(5, 1fr)
    }
}

@media(max-width:939px) {
    .options-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:640px) {
    .options-grid {
        grid-template-columns: 1fr
    }
}

.opt-btn {
    border-radius: 14px;
    border: 1px solid #e6eef6;
    padding: 18px;
    cursor: pointer;
    transition: .18s;
    box-shadow: 0 6px 14px rgba(15, 23, 42, .04);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 220px;
    flex-direction: column
}

.cta-row,
.nav-row {
    display: flex;
    gap: 12px
}

.opt-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .06)
}

.opt-btn .label {
    font-weight: 700;
    color: #0f172a;
    font-size: 16px
}

.opt-btn .desc,
.small {
    font-size: 13px;
    color: #475569
}

.opt-btn .desc {
    margin-top: 6px;
    min-height: 38px
}

.sel-exceptional {
    background: var(--emerald-50);
    border: 2px solid #10b981;
    box-shadow: 0 8px 34px rgba(16, 185, 129, .06);
    outline: rgba(16, 185, 129, .12) solid 4px
}

.sel-strong {
    background: var(--emerald-100);
    border: 2px solid #16a34a;
    outline: rgba(16, 185, 129, .1) solid 4px
}

.sel-stable {
    background: var(--slate-100);
    border: 2px solid var(--slate-400);
    outline: rgba(148, 163, 184, .06) solid 4px
}

.sel-uneven {
    background: var(--orange-50);
    border: 2px solid #fb923c;
    outline: rgba(251, 146, 60, .06) solid 4px
}

.sel-declining {
    background: var(--red-50);
    border: 2px solid #ef4444;
    outline: rgba(239, 68, 68, .06) solid 4px
}

.footer-top,
footer h4 {
    border-bottom: 1px solid #fff
}

.nav-row {
    justify-content: space-between;
    margin-top: 18px
}

.results {
    padding: 8px 18px
}

.result-score {
    margin-top: 12px;
    font-size: 24px;
    font-weight: 800
}

.tier-meaning {
    color: #334155;
    margin-top: 8px
}

@media(min-width:768px) {
    h1 {
        font-size: 54px
    }

    .grid.cols-2,
    .review-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

.cta-row {
    justify-content: center;
    margin-top: 18px;
    flex-wrap: wrap
}

.icon-sm {
    width: 28px;
    height: 28px;
    display: block
}

.muted {
    color: #64748b
}

.fade-enter {
    opacity: 0;
    transform: translateY(16px)
}

.fade-enter.fade-in {
    opacity: 1;
    transform: none;
    transition: .28s cubic-bezier(.2, .9, .2, 1)
}

.fade-leave {
    opacity: 0;
    transform: translateY(8px);
    transition: .18s
}

.mx-auto {
    margin-left: auto;
    margin-right: auto
}

.mb-1 {
    margin-bottom: 6px
}

.footer-middle,
.footer-top {
    max-width: 1200px;
    margin: 0 auto 40px;
    gap: 40px;
    display: flex
}

.p-4 {
    padding: 16px
}

a.inline-link {
    color: var(--main)
}

.footer,
.footer-social a {
    color: #f1f5f9
}

input {
    border-radius: 10px;
    border: 1px solid var(--slate-100);
    padding: 10px
}

input:focus {
    outline: 1px solid var(--main)
}

footer form button {
    width: 150px;
    margin: 0 auto
}

.footer {
    background: #222;
    font-size: 14px;
    padding: 20px
}

.footer-top {
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 10px
}

.footer-top>div {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 10px
}

.footer-social .social-icons {
    display: flex;
    gap: 15px;
    font-size: 20px
}

.footer-address i,
.footer-phone i {
    font-size: 22px;
    margin-bottom: 6px
}

.footer-phone .phone-number {
    margin: 0;
    font-weight: 700
}

.footer-phone .phone-text {
    margin: 2px 0 0;
    font-size: 13px
}

.footer-middle {
    flex-wrap: wrap;
    justify-content: space-between
}

.footer-logo img {
    width: 120px;
    margin-bottom: 12px;
    filter: brightness(0) invert(1)
}

.footer-logo p {
    line-height: 1.5;
    max-width: 250px;
    font-size: 13px
}

.footer-links {
    min-width: 180px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px
}

.footer-middle h2 {
    border-bottom: 1px solid rgba(255, 255, 255, .4);
    margin-bottom: 10px
}

.footer-links h4,
.footer-newsletter h4 {
    font-size: 15px;
    margin-bottom: 8px
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.8
}

.footer-links ul li a {
    cursor: pointer;
    color: #fff;
    text-decoration: none
}

.footer-newsletter {
    flex: 1;
    max-width: 300px
}

.footer-newsletter p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 16px
}

.footer-newsletter form {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.footer-newsletter input[type=email],
.footer-newsletter input[type=text] {
    margin-bottom: 10px;
    margin-top: 10px;
    padding: 8px;
    border-radius: 5px;
    border: none
}

.newsletter-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 200px;
    margin: 10px auto;
    gap: 40px;
    font-size: 13px
}

.footer-newsletter button {
    padding: 10px;
    background: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500
}

.footer-bottom {
    font-size: 12px;
    color: #d1d5db;
    border-top: 1px solid #fff;
    padding-top: 10px
}

#your-valuation,
.how-it-works-section,
.section-white {
    padding: 3rem 1.5rem;
    background: #fff;
    scroll-margin-top: 120px
}

.how-it-works-section .container,
.section-container,
.valuation-container {
    max-width: 1360px;
    margin: 0 auto
}

#your-valuation h2,
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--main);
    margin-bottom: 1rem
}

.valuation-subtitle {
    color: var(--main);
    font-weight: 500
}

.section-desc,
.valuation-desc {
    color: #334155;
    margin-bottom: 1.5rem
}

.steps-grid,
.valuation-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem
}

.valuation-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px
}

.valuation-footer label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #334155
}

.btn {
    padding: 10px 16px;
    background: var(--dark-btn-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity .3s
}

.btn:disabled {
    opacity: .6;
    cursor: not-allowed
}

.analyzing-container {
    text-align: center;
    padding: 4rem 1.5rem;
    color: var(--main)
}

.gauge-mirror,
.gauge-mirror::after,
.gauge-mirror::before {
    height: 100%;
    border-radius: 50%
}

.faq-item,
.sellability-table {
    background: #fff;
    overflow: hidden
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--main)
}

.faq-item {
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1)
}

.step-card {
    border: 1px solid #c7f0dc;
    border-radius: .75rem;
    padding: 1rem
}

.step-title {
    font-weight: 600;
    color: #213152;
    margin-bottom: .25rem
}

.step-desc {
    font-size: .875rem;
    color: #64748b
}

.sellability-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    border: 1px solid #a7f3d0;
    border-radius: .5rem
}

.sellability-table thead {
    background: #e4f8ed;
    color: var(--main);
    text-align: left
}

.sellability-table td,
.sellability-table th {
    padding: .75rem;
    border-bottom: 1px solid #a7f3d0
}

.sellability-table tbody tr.odd {
    background: #e4f8ed
}

.table-wrapper {
    overflow-x: auto
}

.section-note {
    margin-top: 1.5rem;
    color: #334155
}

.section-light {
    padding: 3rem 1.5rem;
    background: #ecfdf5
}

.faq-container {
    border-top: 1px solid #a7f3d0
}

.faq-item {
    border-bottom: 1px solid #a7f3d0
}

.faq-question {
    width: 100%;
    text-align: left;
    background: 0 0;
    border: none;
    outline: 0;
    padding: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #0f172a;
    cursor: pointer;
    justify-content: flex-start;
    transition: background .2s
}

.faq-question:hover {
    background: #d1fae5
}

.arrow {
    margin-right: .5rem;
    transition: transform .2s;
    color: var(--main)
}

.faq-item.active .arrow {
    transform: rotate(90deg)
}

.faq-answer {
    max-height: 0;
    transition: max-height .3s, padding .3s;
    background: #fff;
    padding: 0 1rem
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 1rem
}

.faq-answer p {
    color: #334155;
    margin: 0;
    font-size: .95rem;
    line-height: 1.5
}

#why-sellability-score-matters::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1060px;
    border-top: 1px solid #bbb
}

.mobile {
    display: none
}

.graph-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 50px
}

.gauge-mirror {
    left: 0;
    top: 0;
    width: 100%;
    border-left: 20px solid rgba(0, 0, 0, .8);
    z-index: 10
}

.gauge-mirror::before {
    content: '';
    left: -40px;
    top: 0;
    width: 100%;
    border-right: 20px solid #000
}

.gauge-mirror::after {
    content: '';
    left: 0;
    top: -30px;
    width: 100%;
    border-bottom: 20px solid rgba(255, 255, 255, .1)
}

.gauge {
    position: relative;
    width: 310px;
    height: 310px;
    border-radius: 50%;
    border: 12px solid var(--main-border-color);
    outline: 5px solid var(--main-outline-color);
    box-shadow: inset 5px 5px 10px 10px rgba(0, 0, 0, .4), 0 0 40px rgba(0, 0, 0, .7);
    background: linear-gradient(to right, #002a11, #00461c)
}

.gauge .inner,
.glow-arc,
.tick {
    position: absolute
}

.gauge::after,
.gauge::before {
    content: '';
    width: 40px;
    height: 150px;
    background-color: var(--corner-soft-color);
    border-radius: 50% 25% 25% 50%;
    filter: blur(30px);
    position: absolute
}

.gauge::before {
    right: 100px;
    bottom: 0;
    transform: rotate(35deg)
}

.gauge::after {
    right: 20px;
    bottom: 15%
}

.gauge .inner {
    left: 50%;
    top: 50%;
    width: 80%;
    height: 80%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(0, 0, 0, .8);
    filter: blur(15px)
}

.tick {
    top: 99%;
    left: 50%;
    width: 3px;
    border-radius: 10px;
    height: 14px;
    background: var(--main-outline-color);
    transform-origin: center -130px;
    opacity: .6;
    box-shadow: 0 0 5px var(--main-outline-color);
    transition: .3s;
    z-index: 10
}

.tick.special {
    background: var(--glow-color);
    box-shadow: 0 0 15px var(--glow-color), 0 0 30px rgba(0, 255, 102, .5);
    opacity: 1
}

.glow-arc {
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 12px solid transparent;
    border-top-color: var(--glow-color);
    filter: blur(6px);
    transform: translate(-50%, -50%) rotate(-60deg);
    mask: radial-gradient(circle, transparent 70%, black 70%);
    -webkit-mask: radial-gradient(circle, transparent 70%, black 70%);
    opacity: .8
}

.gauge .column {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    text-align: center;
    z-index: 20;
    color: #fff
}

.gauge .column p {
    color: var(--highlight-color);
    line-height: 1.4
}

.gauge .column h2 {
    font-size: 80px
}

.dimensions {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: auto;
    margin-top: 5px
}

.dimensions h2 {
    color: var(--highlight-color);
    text-align: center;
    letter-spacing: 2px;
    font-size: 22px;
    margin-bottom: 45px
}

.dimensions-chart {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%
}

.dimension-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px
}

.dimension-label {
    flex: 0 0 110px;
    font-size: 18px;
    letter-spacing: 1px;
    color: #fff;
    min-width: 140px
}

.dimension-bar {
    flex: 1;
    height: 12px;
    background: rgba(255, 255, 255, .1);
    border-radius: 10px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, .6);
    position: relative
}

.dimension-fill {
    height: 100%;
    border-radius: inherit;
    transition: width .6s;
    box-shadow: 0 0 15px var(--glow-color)
}

.financial .dimension-fill {
    width: 90%;
    background: linear-gradient(90deg, #0f6, #00994d);
    box-shadow: 0 0 15px #0f6, 0 0 25px rgba(0, 255, 102, .5)
}

.operational .dimension-fill {
    width: 80%;
    background: linear-gradient(90deg, #00e65c, #007a33);
    box-shadow: 0 0 15px #00e65c, 0 0 25px rgba(0, 230, 92, .5)
}

.customer .dimension-fill {
    width: 85%;
    background: linear-gradient(90deg, #00d455, #007a33);
    box-shadow: 0 0 15px #00d455, 0 0 25px rgba(0, 212, 85, .4)
}

.growth .dimension-fill {
    width: 70%;
    background: linear-gradient(90deg, #00b84c, #006629);
    box-shadow: 0 0 15px #00b84c, 0 0 25px rgba(0, 184, 76, .4)
}

.readiness .dimension-fill {
    width: 60%;
    background: linear-gradient(90deg, #ffb347, #ff7e29);
    box-shadow: 0 0 15px #ff7e29, 0 0 30px rgba(255, 126, 41, .5)
}

@media (max-width:750px) {

    .dark-layer,
    .desktop,
    .sellability-table td:last-child,
    .sellability-table th:last-child,
    .valuTrek-hero-bg {
        display: none
    }

    .mobile {
        display: block
    }

    .valuTrek-hero {
        background-image: none
    }

    .graph-wrapper {
        flex-direction: column
    }
}

.interpretation {
    text-align: center;
    color: var(--highlight-color);
    font-size: 26px;
    margin-top: -150px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 450px;
    width: 100%;
}

.result-box {
    padding: 5px 16px;
    border-radius: 30px;
    font-size: 45px;
    font-weight: bold;
    color: #00ff66;

    /* Gradient text */
    /* background: linear-gradient(90deg, #00ff66, #98ffc3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}

.graph-header {
    margin: 30px auto 0;
    max-width: 550px
}

.graph-header .name {
    display: flex;
    flex-direction: column;
    color: var(--highlight-color)
}

.graph-header .name .title {
    font-size: 40px;
    color: var(--highlight-color-400);
}

.graph-header .name .desc {
    color: var(--highlight-color-400);
}

.graph-body {
    background-color: #003214;
    /* padding: 10px 0 40px; */
    padding: 10px;
    margin-top: 20px
}

.glow-tick {
    background: linear-gradient(90deg, #ffb347, #ff7e29);
    box-shadow: 0 0 10px #ff8c42, 0 0 20px #ff8c42;
    opacity: 1
}

@media (max-width:950px) {
    .graph-wrapper {
        flex-direction: column
    }

    .graph-sep {
        width: 60%;
        height: 1px
    }
}

@media(max-width:450px) {
    .gauge {
        width: 250px;
        height: 250px
    }

    .tick {
        transform-origin: center -90px
    }

    .gauge .column p {
        color: var(--highlight-color);
        line-height: 1.4;
        font-size: 12px
    }

    .gauge .column h2 {
        font-size: 50px
    }

    section.questions {
        padding-left: 5px;
        padding-right: 5px
    }
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: #e2e8f0;
    border-radius: 10px;
    margin: 1rem auto;
    box-shadow: inset 0 0 4px rgba(0, 0, 0, .2)
}

.progress-fill {
    height: 100%;
    width: 70%;
    border-radius: 10px;
    position: relative;
    background: repeating-linear-gradient(-45deg, var(--color1) 0, var(--color1) 16px, var(--color2) 16px, var(--color2) 32px);
    background-size: 40px 40px;
    animation: 1.2s linear infinite moveBlocks;
    transition: width .3s, background .3s;
    box-shadow: 0 0 12px var(--glow)
}

@keyframes moveBlocks {
    from {
        background-position: 0 0
    }

    to {
        background-position: 40px 0
    }
}

.gauge.disable-before::after,
.gauge.disable-before::before {
    content: none !important
}

.footer-top.info .column {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start
}

.quest-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px
}

.center {
    display: flex;
    align-items: center;
    gap: 10px
}

.show-ul {
    display: flex !important
}

.faq-answer ul {
    padding: 20px;
}

.faq-answer strong {
    font-weight: 500;
}

#why-mpsp-matters {
    position: relative;
}

#why-mpsp-matters::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1060px;
    border-top: 1px solid #bbb
}

/* ************************************************************************************** */

/* Section & Container */
.business-valuation-section {
    background-color: #ecfdf5;
    padding: 3rem 1.5rem;
}

.business-valuation-section .container {
    max-width: 1360px;
    margin: 0 auto;
    width: 100%;
}

/* Section Title */
.business-valuation-section .section-title {
    text-align: center;
    margin-bottom: 2rem;
}

/* Grid */
.calculator-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Card Styles */
.calculator-card {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    width: 100% !important;
    flex-direction: column;
    gap: 0.75rem;
}

/* Row Inputs */
.row-inputs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.calculator-card input {
    text-align: center;
    font-size: 16px;
    padding: 8px !important;
}

.row-inputs input:first-child {
    width: 80px;
}

.row-inputs input:nth-child(2) {
    flex: 1;
    width: 100%;
}

/* Buttons for management team */
.button-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.button-group button {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #f0f0f0;
    cursor: pointer;
}

.button-group button:not(.active):hover {
    background: #e0e0e0;
}

/* Inputs & Range */
input[type="number"],
select {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 100%;
}

input[type="range"] {
    width: 100%;
}

/* Paragraphs */
.calculator-card p {
    font-size: 0.875rem;
    color: #555;
    margin: 0;
}

.calculator-card h3 {
    font-weight: 500;
    font-size: 16px;
    color: var(--main);
}

/* Calculate Button */
.calculate-button {
    text-align: center;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .calculator-grid {
        grid-template-columns: 1fr;
    }
}

.calculator-card input[type="range"] {
    padding: 0 !important;
    outline: none;
}

.calculator-card input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, red 0%, red var(--val, 50%), #ddd var(--val, 50%), #ddd 100%);
    border-radius: 5px;
    outline: none;
}

/* Thumb (circle) */
.calculator-card input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: red;
    cursor: pointer;
    border: none;
    transition: background 0.2s ease;
}

.calculator-card input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: red;
    cursor: pointer;
    border: none;
}

/* Track for Firefox */
.calculator-card input[type="range"]::-moz-range-track {
    background: #ddd;
    height: 6px;
    border-radius: 5px;
}

/* Fill portion for Firefox */
.calculator-card input[type="range"]::-moz-range-progress {
    background: red;
    height: 6px;
    border-radius: 5px;
}

.management-btn{
    color: black;
}

.management-btn.active {
    background-color: var(--main);
    color: white;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.hidden {
    display: none;
}

.modal {
    background-color: white;
    border-radius: 20px;
    padding: 40px;
    width: 350px;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    animation: popIn 0.5s ease forwards;
}

.modal h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--dark-green);
}

.modal p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.modal input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 10px;
    border: none;
    background: white;
    font-size: 14px;
}

.modal button.primary {
    margin-top: 15px;
    width: 100%;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    color: #444;
    cursor: pointer;
}

.half-circle {
    width: 120%;
    height: 60%;
    background-color: #003214;
    position: absolute;
    z-index: 99;
    left: 50%;
    transform: translateX(-50%);
    bottom: -45px;
}

.calc-arrow {
    position: absolute;
    left: 50%;
    top: 40px;
    transform: translateX(-50%) rotate(35deg);
    transform-origin: bottom center;
    width: 6px;
    height: 45%;
    background: linear-gradient(to bottom, #fff, #ccc);
    border-radius: 10px;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
    animation: gaugeWobble 2s ease-in-out infinite;
    z-index: 999;
}

.calc-arrow::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 22px;
    background: radial-gradient(circle at center, #fff 40%, #aaa 100%);
    border: 2px solid #aaa;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
}

/* Subtle left–right wobble animation */
@keyframes gaugeWobble {

    0%,
    100% {
        transform: translateX(-50%) rotate(34deg);
    }

    50% {
        transform: translateX(-50%) rotate(36deg);
    }
}

@media (max-width:550px) {
    .result-box {
        font-size: 20px;
    }

    .interpretation {
        font-size: 20px;
    }
}

@media (max-width:450px) {
    .interpretation {
        margin-top: -105px;
        flex-direction: column;
        gap: 20px;
    }

    .results {
        padding: 8px 0;
    }

    .graph-header .name .desc {
        padding: 0 20px;
    }

    #contentArea {
        padding: 3rem 5px;
    }
}

.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    gap: 1rem;
}

.loader {
    width: 60px;
    height: 60px;
    border: 5px solid #eee;
    border-top-color: var(--highlight-color-400, #d33);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-container p {
    font-size: 1.1rem;
    color: #666;
    letter-spacing: 0.5px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.result-row {
    display: flex;
    /* gap: 50px; */
    justify-content: center;
    padding: 20px;
}

.graph-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.graph-col p {
    color: var(--highlight-color);
}

.schedule {
    background: linear-gradient(to right, #00c251, #00c251);
    border-radius: 30px;
    padding: 10px 20px;
    border: none;
    outline: none;
    font-size: 16px;
    /* color: #fff; */
    cursor: pointer;
    box-shadow: 0 0 10px #00c25166;
    /* subtle glow */
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.schedule:hover {
    box-shadow: 0 0 10px #00ff88cc, 0 0 10px #00ff8899;
    /* stronger glow on hover */
    transform: scale(1.05);
}

.schedule:active {
    transform: scale(0.98);
    box-shadow: 0 0 10px #00ff8866;
}

.speedometer-container {
      position: relative;
    }

    .speedometer-container .arc {
      position: absolute;
      left: -5px;
      top: -5px;
      width: calc(100% + 10px);
      height: calc(100% + 10px);
      border: 1px solid #00ff66;
      border-radius: 50%;
      clip-path: inset(0 0 50% 0);
      opacity: 0.5;
    }

    .speedometer-container .arc.outer {
      position: absolute;
      left: -10px;
      top: -10px;
      width: calc(100% + 20px);
      height: calc(100% + 20px);
      border: 1px solid #00ff66;
      border-radius: 50%;
      opacity: 1;
      clip-path: inset(0 0 50% 0);
      /* top half only */
            box-shadow: 0 0 10px #00ff6625, 0 0 10px #058639a9;
      /* soft glow */
      pointer-events: none;
    }

  .speedometer {
      width: 350px;
      height: 350px;
      padding: 50px;
      border-radius: 50%;
      background:
        radial-gradient(#003214 0 0) content-box,
        conic-gradient(from -90deg,
          /* 4 shades of green */
          #2e7d32 0deg 30deg,
          /* darkest green */
          #388e3c 30deg 60deg,
          /* darker green */
          #43a047 60deg 90deg,
          /* medium green */
          #66bb6a 90deg 120deg,
          /* lighter green */
          /* transition from green to red (orange zone) */
          #66bb6a 120deg,
          #96aa00 135deg,
          #ff2501 150deg,
          /* final red segment */
          #ff2501 150deg 180deg,
          transparent 180deg);
      position: relative;
      overflow: hidden;
      opacity: 1;
    }

@keyframes transition {

    0%,
    100% {
        opacity: 0.9;
    }

    50% {
        opacity: 1;
    }
}

.needle {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transform: translate(-50%, -50%);

    /* transparent center */
    background: transparent;

    /* glowing circular base */
    border: 1px solid #f4f401;
    box-shadow: 0 0 10px #f4f401;

    animation: rotateNeedle 3s ease-in-out infinite alternate;
}

@keyframes rotateNeedle {
    0% {
        transform: translate(-50%, -50%) rotate(25deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(35deg);
    }
}

/* long red needle arm */
.needle::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 0;
    transform: translate(-50%, -16px) rotate(0deg);
    /* rotate as needed */
    transform-origin: bottom center;

    /* create tapered needle shape */
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 190px solid #f4f401;
    /* needle body color */

    /* glowing effect */
    filter: drop-shadow(0 0 10px #070803) drop-shadow(0 0 25px #5ef400);
}

@media (max-width:400px){
    .calculator-card{
        padding: 10px;
    }

    .calculator-card h3{
        font-size: 13px;
    }
}