/* ============================= TOKENS ============================= */
:root {
    --green: #1F9E59;
    --green-dark: #16804A;
    --green-light: #E8F7ED;
    --navy: #1A2152;
    --navy-2: #262E63;
    --navy-3: #10153A;
    --ink: #1A2152;
    --muted: #646B82;
    --paper: #FCFBF8;
    --line: #E6E8F0;
    --gold: #F3A93C;
    --radius: 18px;
    --shadow-sm: 0 2px 10px rgba(20, 28, 60, .06);
    --shadow-md: 0 18px 40px -12px rgba(20, 28, 60, .18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .font-display {
    font-family: 'Sora', sans-serif;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.font-mono {
    font-family: 'JetBrains Mono', monospace;
}

a {
    text-decoration: none;
}

.text-green {
    color: var(--green) !important;
}

.text-muted-c {
    color: var(--muted);
}

.bg-paper {
    background: var(--paper);
}

.bg-mint {
    background: var(--green-light);
}

.bg-navy {
    background: var(--navy);
}

.bg-navy-2 {
    background: linear-gradient(135deg, var(--navy-3), var(--navy-2));
}

.section-pad {
    padding: 96px 0;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--green-dark);
    background: var(--green-light);
    border: 1px solid rgba(31, 158, 89, .18);
    padding: 7px 16px;
    border-radius: 30px;
}

.eyebrow-light {
    background: rgba(255, 255, 255, .08);
    color: #BFE9D2;
    border: 1px solid rgba(255, 255, 255, .16);
}

.divider-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
    display: inline-block;
}

.lead-muted {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

/* ============================= BUTTONS ============================= */
.btn-brand {
    background: var(--green);
    border: 1px solid var(--green);
    color: #fff;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 50px;
    transition: .2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-brand:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: #fff;
    transform: translateY(-1px);
}

.btn-ghost-navy {
    background: transparent;
    border: 1.5px solid var(--line);
    color: var(--navy);
    font-weight: 600;
    padding: 12px 26px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: .2s ease;
}

.btn-ghost-navy:hover {
    border-color: var(--navy);
    background: var(--navy);
    color: #fff;
}

.btn-light-pill {
    background: #fff;
    border: 1px solid rgba(255, 255, 255, .5);
    color: var(--navy);
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 50px;
}

.icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle svg {
    width: 16px;
    height: 16px;
}

/* ============================= NAVBAR ============================= */
.navbar-msr {
    background: #fff;
    padding: 16px 0;
    transition: .25s ease;
    border-bottom: 1px solid transparent;
}

.navbar-msr.is-scrolled {
    box-shadow: 0 4px 24px rgba(20, 28, 60, .08);
    border-bottom-color: var(--line);
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    /*background: var(--navy);*/
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.brand-mark svg {
    width: 22px;
    height: 22px;
}

.brand-wordmark {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    line-height: 1.05;
    font-size: .95rem;
}

.brand-wordmark .l2 {
    color: var(--green);
}

.nav-link-msr {
    font-weight: 600;
    font-size: .94rem;
    color: var(--navy) !important;
    padding: 8px 16px !important;
    position: relative;
}

.nav-link-msr::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 2px;
    height: 2px;
    background: var(--green);
    transform: scaleX(0);
    transition: .2s ease;
    transform-origin: left;
}

.nav-link-msr:hover::after, .nav-link-msr.active::after {
    transform: scaleX(1);
}

/* ============================= HERO ============================= */
.hero {
    padding: 130px 0 80px;
    background: radial-gradient(ellipse 700px 420px at 88% -8%, rgba(31, 158, 89, .10), transparent 70%),
    radial-gradient(ellipse 600px 400px at 0% 100%, rgba(26, 33, 82, .06), transparent 70%),
    #fff;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.12;
}

@media (max-width: 767px) {
    .hero {
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 2.15rem;
    }
}

.underline-stroke {
    position: relative;
    display: inline;
}

.underline-stroke svg {
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 10px;
}

/* hero illustration — stacked "papers" composition */
.paper-stack {
    position: relative;
    height: 430px;
}

.sheet {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 22px;
}

.sheet-back {
    width: 78%;
    height: 300px;
    top: 10px;
    right: 0;
    transform: rotate(6deg);
    background: var(--green-light);
    border: 1px solid rgba(31, 158, 89, .18);
}

.sheet-mid {
    width: 74%;
    height: 300px;
    top: 34px;
    right: 10%;
    transform: rotate(-4deg);
}

.sheet-front {
    width: 72%;
    height: 300px;
    top: 60px;
    right: 6%;
    border-top: 5px solid var(--green);
}

.line-bar {
    height: 8px;
    border-radius: 5px;
    background: var(--line);
    margin-bottom: 10px;
}

.line-bar.w-60 {
    width: 60%;
}

.line-bar.w-80 {
    width: 80%;
}

.line-bar.w-40 {
    width: 40%;
}

.tag-pill-mini {
    font-family: 'JetBrains Mono', monospace;
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .06em;
    background: var(--green-light);
    color: var(--green-dark);
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    text-transform: uppercase;
}

.float-chip {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--line);
    animation: floaty 5s ease-in-out infinite;
}

.float-chip.c1 {
    top: 18px;
    left: -10px;
    animation-delay: .2s;
}

.float-chip.c2 {
    bottom: 30px;
    left: 10px;
    animation-delay: 1.1s;
}

@keyframes floaty {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.mini-chart {
    width: 60px;
    height: 30px;
}

.stars-row svg {
    width: 14px;
    height: 14px;
}

.avatar-stack {
    display: flex;
}

.avatar-stack img, .avatar-stack .av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2.5px solid #fff;
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 700;
    color: #fff;
}

.avatar-stack .av1 {
    background: #3D6BFF;
}

.avatar-stack .av2 {
    background: #F3A93C;
}

.avatar-stack .av3 {
    background: #E45B7A;
}

.avatar-stack .av4 {
    background: var(--green);
}

/* ============================= MARQUEE ============================= */
.marquee-wrap {
    background: linear-gradient(120deg, var(--green-dark), var(--green));
    overflow: hidden;
    padding: 16px 0;
    position: relative;
    transform: skewY(-1.2deg);
    margin: 0 -2px;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: scroll-left 28s linear infinite;
    width: max-content;
}

.marquee-wrap:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 0 28px;
    letter-spacing: .02em;
}

.marquee-item svg {
    width: 16px;
    height: 16px;
    opacity: .85;
}

/* ============================= STATS ============================= */
.stat-band {
    position: relative;
    overflow: hidden;
}

.stat-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: .5;
    pointer-events: none;
}

.stat-col {
    position: relative;
    text-align: center;
    padding: 8px 10px;
}

.stat-col + .stat-col::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    bottom: 14px;
    width: 1px;
    background: rgba(255, 255, 255, .12);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(31, 158, 89, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 1px solid rgba(31, 158, 89, .3);
}

.stat-icon svg {
    width: 22px;
    height: 22px;
    color: #BFE9D2;
}

.stat-num {
    font-size: 2.1rem;
    font-weight: 700;
    color: #fff;
}

.stat-label {
    color: #A8AFCB;
    font-size: .88rem;
    font-weight: 500;
}

/* ============================= PAPER CARD (signature) ============================= */
.card-paper {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    transition: .25s ease;
    height: 100%;
}

.card-paper::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    border-width: 0 22px 22px 0;
    border-style: solid;
    border-color: transparent var(--green-light) transparent transparent;
    transition: .25s ease;
}

.card-paper:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(31, 158, 89, .25);
}

.card-paper:hover::after {
    border-color: transparent var(--green) transparent transparent;
}

/* feature checklist */
.check-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 22px;
}

.check-ico {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.check-ico svg {
    width: 13px;
    height: 13px;
}

/* ============================= FEATURE GRID ============================= */
.feature-card {
    padding: 32px 26px;
}

.feature-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: .75rem;
    color: var(--muted);
    position: absolute;
    top: 18px;
    right: 30px;
}

.feature-ico-wrap {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-ico-wrap svg {
    width: 24px;
    height: 24px;
    color: var(--green-dark);
}

/* ============================= HOW IT WORKS ============================= */
.step-track {
    position: relative;
}

.step-line {
    position: absolute;
    top: 28px;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--line) 0 10px, transparent 10px 18px);
    display: none;
}

@media (min-width: 992px) {
    .step-line {
        display: block;
    }
}

.step-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    margin-bottom: 22px;
    border: 5px solid #fff;
}

.step-circle.is-green {
    background: var(--green);
}

/* ============================= PRICING ============================= */
.seg-toggle {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 50px;
    display: inline-flex;
    padding: 5px;
    position: relative;
}

.seg-btn {
    border: none;
    background: transparent;
    padding: 10px 26px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--muted);
    font-size: .92rem;
    position: relative;
    z-index: 1;
    transition: .2s ease;
    cursor: pointer;
}

.seg-btn.active {
    background: var(--navy);
    color: #fff;
}

.pill-tabs .nav-link {
    border: none;
    background: transparent;
    color: var(--muted);
    font-weight: 600;
    padding: 10px 4px;
    margin-right: 30px;
    border-bottom: 2px solid transparent;
    border-radius: 0;
}

.pill-tabs .nav-link.active {
    color: var(--navy);
    border-bottom-color: var(--green);
    background: transparent;
}

.price-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 38px 32px;
    height: 100%;
    position: relative;
}

.price-card.featured {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
    box-shadow: var(--shadow-md);
    transform: scale(1.02);
}

.price-card.featured h3, .price-card.featured .ink-flip {
    color: #fff;
}

.price-card.featured .lead-muted {
    color: #B7BEDB;
}

.featured-tag {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 30px;
    white-space: nowrap;
}

.ticket-cut {
    border-top: 1px dashed rgba(0, 0, 0, .14);
    position: relative;
    margin: 26px 0;
}

.price-card.featured .ticket-cut {
    border-top-color: rgba(255, 255, 255, .22);
}

.ticket-cut::before, .ticket-cut::after {
    content: "";
    position: absolute;
    top: -10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
}

.ticket-cut::before {
    left: -32px;
}

.ticket-cut::after {
    right: -32px;
}

.price-card.featured .ticket-cut::before, .price-card.featured .ticket-cut::after {
    background: var(--navy);
}

.price-amount {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.6rem;
    font-weight: 700;
}

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

.price-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: .92rem;
    color: var(--muted);
}

.price-card.featured .price-list li {
    color: #D5DAF0;
}

.price-list svg {
    width: 17px;
    height: 17px;
    color: var(--green);
    flex-shrink: 0;
    margin-top: 2px;
}

.price-card.featured .price-list svg {
    color: #7CE2A6;
}

/* ============================= PRODUCTS ============================= */
.product-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    transition: .25s ease;
    position: relative;
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.product-thumb {
    height: 190px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px;
    color: #fff;
    overflow: hidden;
}

.product-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 110%, rgba(255, 255, 255, .18), transparent 60%);
}

.thumb-blue {
    background: linear-gradient(150deg, #2451C7, #1A2152);
}

.thumb-green {
    background: linear-gradient(150deg, #1F9E59, #0F5B33);
}

.thumb-amber {
    background: linear-gradient(150deg, #F3A93C, #C97412);
}

.thumb-violet {
    background: linear-gradient(150deg, #7A4FE0, #3E1F8C);
}

.year-pill {
    font-family: 'JetBrains Mono', monospace;
    background: rgba(255, 255, 255, .22);
    font-size: .68rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 6px;
    width: fit-content;
    backdrop-filter: blur(2px);
}

.thumb-title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.25;
    position: relative;
    z-index: 1;
}

.discount-ribbon {
    position: absolute;
    top: 14px;
    right: -32px;
    width: 130px;
    text-align: center;
    background: var(--gold);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    padding: 4px 0;
    transform: rotate(40deg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
    letter-spacing: .04em;
    z-index: 2;
}

.stars-row svg path {
    fill: var(--gold);
}

.price-old {
    color: var(--muted);
    text-decoration: line-through;
    font-size: .88rem;
}

.price-new {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    color: var(--navy);
    font-size: 1.15rem;
}

/* ============================= TESTIMONIALS ============================= */
.testi-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    height: 100%;
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: .85rem;
    flex-shrink: 0;
}

/* ============================= FAQ ============================= */
.accordion-msr .accordion-item {
    border: 1px solid var(--line);
    border-radius: 14px !important;
    margin-bottom: 14px;
    overflow: hidden;
}

.accordion-msr .accordion-button {
    font-weight: 600;
    color: var(--navy);
    font-family: 'Sora', sans-serif;
    padding: 20px 22px;
}

.accordion-msr .accordion-button:not(.collapsed) {
    background: var(--green-light);
    color: var(--green-dark);
    box-shadow: none;
}

.accordion-msr .accordion-button:focus {
    box-shadow: none;
    border-color: var(--line);
}

.accordion-msr .accordion-button::after {
    filter: hue-rotate(100deg);
}

.accordion-msr .accordion-body {
    color: var(--muted);
    padding: 4px 22px 22px;
}

/* ============================= NEWSLETTER ============================= */
.newsletter-box {
    border-radius: 28px;
    position: relative;
    overflow: hidden;
}

.newsletter-box::before {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    border: 60px solid rgba(255, 255, 255, .04);
    top: -220px;
    right: -160px;
}

.newsletter-box::after {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    border: 40px solid rgba(255, 255, 255, .04);
    bottom: -200px;
    left: -120px;
}

.input-pill {
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    padding: 14px 22px;
}

.input-pill::placeholder {
    color: #B7BEDB;
}

.input-pill:focus {
    box-shadow: none;
    border-color: var(--green);
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

/* ============================= FOOTER ============================= */
.footer-msr {
    background: var(--navy-3);
    color: #A8AFCB;
}

.footer-msr h6 {
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: .92rem;
    letter-spacing: .02em;
}

.footer-msr a {
    color: #A8AFCB;
    font-size: .92rem;
}

.footer-msr a:hover {
    color: var(--green);
}

.footer-msr ul {
    list-style: none;
    padding: 0;
}

.footer-msr li {
    margin-bottom: 12px;
}

.social-ico {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .14);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s ease;
}

.social-ico:hover {
    background: var(--green);
    border-color: var(--green);
}

.social-ico svg {
    width: 15px;
    height: 15px;
}

hr.footer-line {
    border-color: rgba(255, 255, 255, .08);
}

/* ============================= INNER PAGE BANNER ============================= */
.page-banner {
    padding: 150px 0 70px;
    background: radial-gradient(ellipse 700px 420px at 88% -8%, rgba(31, 158, 89, .10), transparent 70%),
    radial-gradient(ellipse 600px 400px at 0% 100%, rgba(26, 33, 82, .06), transparent 70%),
    #fff;
    position: relative;
    overflow: hidden;
}

.page-banner h1 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.15;
}

.breadcrumb-msr {
    font-family: 'JetBrains Mono', monospace;
    font-size: .78rem;
    color: var(--muted);
    letter-spacing: .04em;
}

.breadcrumb-msr a {
    color: var(--green-dark);
    font-weight: 600;
}

@media (max-width: 767px) {
    .page-banner {
        padding: 120px 0 50px;
    }

    .page-banner h1 {
        font-size: 1.9rem;
    }
}

/* ============================= LEGAL CONTENT ============================= */
.legal-content h2 {
    font-size: 1.35rem;
    margin-top: 44px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-content h2 .num-badge {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--green-light);
    color: var(--green-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: .85rem;
    flex-shrink: 0;
}

.legal-content p {
    color: var(--muted);
    line-height: 1.8;
    font-size: .98rem;
}

.legal-content ul {
    color: var(--muted);
    line-height: 1.8;
    font-size: .98rem;
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content li::marker {
    color: var(--green);
}

.legal-sidebar {
    position: sticky;
    top: 110px;
}

.legal-sidebar .side-link {
    display: block;
    padding: 10px 16px;
    border-radius: 10px;
    color: var(--muted);
    font-weight: 600;
    font-size: .9rem;
    border-left: 2px solid var(--line);
}

.legal-sidebar .side-link:hover {
    color: var(--green-dark);
    background: var(--green-light);
    border-left-color: var(--green);
}

.update-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: .72rem;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 30px;
}

/* ============================= TEAM ============================= */
.team-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    text-align: center;
    padding: 30px 20px;
    height: 100%;
    transition: .25s ease;
}

.team-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(31, 158, 89, .25);
}

.team-avatar {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 1.4rem;
    margin: 0 auto 16px;
}

/* ============================= VALUES ============================= */
.value-card {
    padding: 30px 26px;
    height: 100%;
}

/* ============================= FAQ PAGE SEARCH ============================= */
.faq-search {
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: 50px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-search input {
    border: none;
    outline: none;
    flex: 1;
    font-size: .98rem;
    color: var(--ink);
    background: transparent;
}

.faq-search svg {
    width: 18px;
    height: 18px;
    color: var(--muted);
    flex-shrink: 0;
}

.faq-cat-btn {
    border: 1.5px solid var(--line);
    background: #fff;
    color: var(--navy);
    font-weight: 600;
    font-size: .85rem;
    padding: 9px 18px;
    border-radius: 30px;
    transition: .2s ease;
}

.faq-cat-btn.active, .faq-cat-btn:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}

/* ============================= AUTH PAGES ============================= */
.auth-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    background: radial-gradient(ellipse 700px 420px at 88% -8%, rgba(31, 158, 89, .10), transparent 70%),
    radial-gradient(ellipse 600px 400px at 0% 100%, rgba(26, 33, 82, .06), transparent 70%),
    #fff;
    position: relative;
}

.auth-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 44px 40px;
    width: 100%;
    max-width: 440px;
    position: relative;
    z-index: 1;
}

.auth-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-bottom: 28px;
}

.form-label-msr {
    font-weight: 600;
    font-size: .88rem;
    color: var(--navy);
    margin-bottom: 8px;
    display: block;
}

.form-control-msr {
    width: 100%;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: .95rem;
    color: var(--ink);
    background: #fff;
    transition: .2s ease;
}

.form-control-msr.is-invalid {
    border-color: #dc3545;
}

.form-control-msr:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(31, 158, 89, .12);
}

.input-icon-wrap {
    position: relative;
}

.input-icon-wrap svg {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 17px;
    pointer-events: none;
    height: 17px;
    color: var(--muted);
}

.input-icon-wrap .form-control-msr {
    padding-left: 44px;
    padding-right: 44px;
}

.toggle-pass {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    color: var(--muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.toggle-pass svg {
    position: static;
    transform: none;
    width: 18px;
    height: 18px;
}

.form-check-msr {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .88rem;
    color: var(--muted);
}

.form-check-msr input {
    width: 16px;
    height: 16px;
    accent-color: var(--green);
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--muted);
    font-size: .8rem;
    margin: 24px 0;
}

.auth-divider::before, .auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--line);
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    padding: 11px;
    font-weight: 600;
    font-size: .9rem;
    color: var(--navy);
    background: #fff;
    transition: .2s ease;
}

.btn-social:hover {
    border-color: var(--navy);
    background: var(--paper);
}

.btn-brand-block {
    width: 100%;
    justify-content: center;
    border-radius: 12px;
    padding: 13px 20px;
}

.strength-bar {
    height: 4px;
    border-radius: 3px;
    background: var(--line);
    overflow: hidden;
    margin-top: 8px;
}

.strength-bar span {
    display: block;
    height: 100%;
    width: 0%;
    background: var(--green);
    transition: .3s ease;
}

/* ============================= DASHBOARD ============================= */
body.dash-body {
    background: var(--paper);
}

.dash-shell {
    display: flex;
    min-height: 100vh;
}

.dash-sidebar {
    width: 260px;
    flex-shrink: 0;
    background: var(--navy-3);
    color: #A8AFCB;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    padding: 26px 18px;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    transition: .25s ease;
}

.dash-sidebar .brand-wordmark {
    color: #fff;
}

.dash-nav {
    list-style: none;
    padding: 0;
    margin: 26px 0 0;
    flex: 1;
}

.dash-nav li {
    margin-bottom: 4px;
}

.dash-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: 10px;
    color: #A8AFCB;
    font-weight: 600;
    font-size: .9rem;
    transition: .15s ease;
}

.dash-nav a svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.dash-nav a:hover {
    background: rgba(255, 255, 255, .06);
    color: #fff;
}

.dash-nav a.active {
    background: var(--green);
    color: #fff;
}

.dash-sidebar-foot {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 16px;
    margin-top: 16px;
}

.dash-main {
    margin-left: 260px;
    flex: 1;
    min-width: 0;
}

.dash-topbar {
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}

.dash-content {
    padding: 32px;
}

.dash-search {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 9px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 280px;
}

.dash-search input {
    border: none;
    background: transparent;
    outline: none;
    font-size: .88rem;
    flex: 1;
}

.dash-search svg {
    width: 15px;
    height: 15px;
    color: var(--muted);
}

.topbar-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.topbar-icon-btn svg {
    width: 17px;
    height: 17px;
    color: var(--navy);
}

.notif-dot {
    position: absolute;
    top: 7px;
    right: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    border: 1.5px solid #fff;
}

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

.stat-tile {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px;
    height: 100%;
}

.stat-tile .tile-ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--green-light);
    color: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.stat-tile .tile-ico svg {
    width: 20px;
    height: 20px;
}

.stat-tile .tile-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
}

.stat-tile .tile-label {
    color: var(--muted);
    font-size: .85rem;
}

.tile-trend {
    font-size: .76rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
}

.tile-trend.up {
    background: var(--green-light);
    color: var(--green-dark);
}

.dash-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 26px;
}

.dl-table {
    width: 100%;
    border-collapse: collapse;
}

.dl-table th {
    text-align: left;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--muted);
    font-weight: 600;
    padding: 10px 12px;
    border-bottom: 1px solid var(--line);
}

.dl-table td {
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
    font-size: .9rem;
    vertical-align: middle;
}

.dl-table tr:last-child td {
    border-bottom: none;
}

.file-ico {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--green-light);
    color: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.file-ico svg {
    width: 16px;
    height: 16px;
}

.badge-msr {
    font-size: .72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.badge-green {
    background: var(--green-light);
    color: var(--green-dark);
}

.badge-gold {
    background: #FDF1DD;
    color: #B0700E;
}

.plan-card-dash {
    background: linear-gradient(135deg, var(--navy-3), var(--navy-2));
    color: #fff;
    border-radius: 16px;
    padding: 26px;
    position: relative;
    overflow: hidden;
}

.plan-card-dash::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 36px solid rgba(255, 255, 255, .05);
    top: -100px;
    right: -80px;
}

.dash-quick-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: .2s ease;
}

.dash-quick-card:hover {
    border-color: rgba(31, 158, 89, .3);
    box-shadow: var(--shadow-sm);
}

.progress-msr {
    height: 8px;
    border-radius: 6px;
    background: var(--line);
    overflow: hidden;
}

.progress-msr span {
    display: block;
    height: 100%;
    background: var(--green);
    border-radius: 6px;
}

@media (max-width: 991px) {
    .dash-sidebar {
        transform: translateX(-100%);
    }

    .dash-sidebar.open {
        transform: translateX(0);
    }

    .dash-main {
        margin-left: 0;
    }

    .dash-search {
        display: none;
    }
}

.org-select-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 28px 0 32px;
}

/* Hide native radio button */
.org-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.org-option {
    position: relative;
    flex: 1;
    max-width: 170px;
    border: 1.5px solid var(--line);
    border-radius: 16px;
    padding: 26px 14px;
    text-align: center;
    cursor: pointer;
    transition: .2s ease;
    background: #fff;
}

.org-option:hover {
    border-color: var(--green);
}

/* Selected state triggered natively via :checked */
.org-option:has(input:checked) {
    border-color: var(--green);
    background: var(--green-light);
    box-shadow: 0 0 0 3px rgba(31, 158, 89, .14);
}

.org-option .oo-ico {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: var(--navy);
    transition: .2s ease;
}

.org-option:has(input:checked) .oo-ico {
    background: var(--green);
    color: #fff;
}

.org-option .oo-ico svg {
    width: 26px;
    height: 26px;
}

.org-option p {
    margin: 0;
    font-weight: 700;
    color: var(--navy);
    font-size: .9rem;
}

.org-option span.oo-sub {
    display: block;
    color: var(--muted);
    font-size: .74rem;
    font-weight: 500;
    margin-top: 3px;
}

.cart-toast {
    position: fixed;
    bottom: 26px;
    right: 26px;
    background: var(--navy-3);
    color: #fff;
    padding: 14px 22px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
    z-index: 3000;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: .3s ease;
    font-size: .88rem;
    font-weight: 600;
}

.cart-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.cart-toast .ct-ico {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cart-toast .ct-ico svg {
    width: 14px;
    height: 14px;
}
