:root {
    --color-primary: #0066b1;
    --color-secondary: #ea930b;
    --color-ink: #172033;
    --color-muted: #667085;
    --color-line: #e6ebf2;
    --color-surface: #ffffff;
    --color-soft: #f5f8fb;
    --font-family-base: "Poppins", Arial, Helvetica, sans-serif;
}

* {
    letter-spacing: 0;
}

body {
    background: var(--color-surface);
    color: var(--color-ink);
    font-family: var(--font-family-base);
    font-weight: 400;
    line-height: 1.6;
}

button,
input,
textarea,
select,
.btn,
.form-control,
.form-select,
.dropdown-menu,
.table {
    font-family: var(--font-family-base);
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

.whatsapp-float {
    align-items: center;
    background: #128c7e;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 999px;
    bottom: 24px;
    box-shadow: 0 18px 42px rgba(18, 140, 126, .32), 0 8px 20px rgba(16, 24, 40, .14);
    color: #fff;
    display: inline-flex;
    gap: 10px;
    left: 24px;
    min-height: 56px;
    padding: 0 18px 0 15px;
    position: fixed;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
    z-index: 1080;
}

.whatsapp-float::before {
    animation: whatsappPulse 2.8s ease-out infinite;
    border: 1px solid rgba(18, 140, 126, .34);
    border-radius: 999px;
    content: "";
    inset: -7px;
    position: absolute;
}

.whatsapp-float svg {
    fill: currentColor;
    height: 28px;
    width: 28px;
}

.whatsapp-float span {
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.whatsapp-float:hover {
    background: #0f7f72;
    box-shadow: 0 22px 50px rgba(18, 140, 126, .38), 0 12px 26px rgba(16, 24, 40, .18);
    color: #fff;
    transform: translateY(-3px);
}

@keyframes whatsappPulse {
    0% {
        opacity: .65;
        transform: scale(.96);
    }

    70% {
        opacity: 0;
        transform: scale(1.15);
    }

    100% {
        opacity: 0;
        transform: scale(1.15);
    }
}

@media (max-width: 767px) {
    .whatsapp-float {
        bottom: 18px;
        left: 16px;
        min-height: 52px;
        padding: 0 14px;
    }

    .whatsapp-float svg {
        height: 26px;
        width: 26px;
    }

    .whatsapp-float span {
        display: none;
    }
}

.site-header {
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, .88);
    border-bottom: 1px solid rgba(0, 102, 177, .08);
    box-shadow: 0 14px 38px rgba(16, 24, 40, .08);
}

.navbar {
    background: transparent !important;
    min-height: 76px;
}

.navbar-brand strong,
.navbar-brand small {
    display: block;
    line-height: 1.05;
}

.navbar-brand small {
    color: var(--color-muted);
    font-size: .75rem;
    font-weight: 600;
}

.brand-mark {
    align-items: center;
    background: var(--color-primary);
    border-radius: 8px;
    color: #fff;
    display: inline-flex;
    font-weight: 700;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.nav-link {
    color: #344054;
    font-weight: 600;
}

.nav-link.active,
.nav-link:hover {
    color: var(--color-primary);
}

.user-menu-button {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-dropdown {
    border: 1px solid var(--color-line);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(16, 24, 40, .12);
    min-width: 220px;
    padding: 8px;
}

.user-dropdown .dropdown-item {
    border-radius: 6px;
    color: var(--color-ink);
    font-weight: 600;
    padding: 9px 10px;
}

.user-dropdown .dropdown-item:hover {
    background: #f2f7fb;
    color: var(--color-primary);
}

.user-dropdown-summary {
    background: #f5f8fb;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    margin-bottom: 4px;
    padding: 10px 12px;
}

.user-dropdown-summary strong,
.user-dropdown-summary span {
    display: block;
}

.user-dropdown-summary strong {
    color: var(--color-ink);
    font-size: .9rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-dropdown-summary span {
    color: var(--color-primary);
    font-size: .78rem;
    font-weight: 700;
    margin-top: 3px;
}

.btn {
    border-radius: 8px;
    font-weight: 700;
}

.btn-primary {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background: #004f89;
    border-color: #004f89;
}

.btn-secondary {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
}

.btn-outline-primary {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-outline-primary:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.hero-section {
    background: linear-gradient(180deg, #ffffff 0%, #f2f7fb 100%);
    padding: 86px 0 64px;
}

.hero-section h1,
.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 4.75rem);
    font-weight: 700;
    line-height: 1;
    margin: 12px 0 20px;
}

.hero-copy,
.page-hero p,
.section-block p,
.form-panel p,
.info-panel p {
    color: var(--color-muted);
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-image,
.rounded-visual {
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 49, 91, .14);
}

.section-kicker {
    color: var(--color-secondary);
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.section-block {
    padding: 72px 0;
}

.section-muted,
.auth-section {
    background: var(--color-soft);
}

.feature-card,
.form-panel,
.info-panel,
.metric-card,
.table-panel,
.pricing-card {
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(16, 24, 40, .06);
    height: 100%;
    padding: 28px;
}

.feature-card img {
    border-radius: 8px;
    margin-bottom: 22px;
    width: 100%;
}

.feature-card h2,
.form-panel h1,
.form-panel h2,
.info-panel h2,
.section-block h2,
.pricing-card h2 {
    font-size: 1.45rem;
    font-weight: 700;
}

.page-hero {
    background: #f3f8fc;
    padding: 64px 0;
}

.page-hero.compact h1 {
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.auth-section {
    min-height: 72vh;
    padding: 72px 0;
}

.form-control {
    border-color: #d0d5dd;
    border-radius: 8px;
    min-height: 48px;
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 .2rem rgba(0, 102, 177, .12);
}

.metric-card span,
.pricing-card span {
    color: var(--color-muted);
    display: block;
    font-weight: 700;
    margin-bottom: 12px;
}

.metric-card strong {
    color: var(--color-primary);
    display: block;
    font-size: 2rem;
}

.pricing-card {
    text-align: center;
}

.pricing-card h2 {
    color: var(--color-primary);
    font-size: 3rem;
}

.table-panel .table {
    margin-bottom: 0;
}

.calculation-history-table td,
.calculation-history-table th {
    white-space: nowrap;
}

.history-status-pill {
    background: #f2f7fb;
    border: 1px solid var(--color-line);
    border-radius: 999px;
    color: var(--color-primary);
    display: inline-flex;
    font-size: .82rem;
    font-weight: 700;
    line-height: 1;
    padding: 7px 10px;
}

.account-dashboard {
    background: linear-gradient(180deg, #ffffff 0%, #f5f8fb 100%);
}

.account-profile-panel,
.account-metric-card,
.account-credit-cta,
.account-empty-state {
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(16, 24, 40, .08);
}

.account-profile-panel {
    align-items: center;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 28px;
}

.account-profile-panel h2,
.account-section-heading h2,
.account-empty-state h2 {
    color: var(--color-ink);
    font-weight: 700;
    margin: 8px 0 10px;
}

.account-profile-meta {
    color: var(--color-muted);
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    font-weight: 600;
}

.account-profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.account-metrics {
    margin-bottom: 24px;
}

.account-metric-card {
    height: 100%;
    padding: 24px;
}

.account-metric-card span {
    color: var(--color-muted);
    display: block;
    font-size: .82rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.account-metric-card strong {
    color: var(--color-primary);
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.account-metric-card .metric-text {
    color: var(--color-ink);
    font-size: 1.05rem;
    line-height: 1.25;
}

.account-credit-cta {
    align-items: center;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin-bottom: 34px;
    padding: 22px 24px;
}

.account-credit-cta.no-credits {
    border-left: 5px solid var(--color-secondary);
}

.account-credit-cta.has-credits {
    border-left: 5px solid var(--color-primary);
}

.account-credit-cta strong,
.account-credit-cta span {
    display: block;
}

.account-credit-cta strong {
    color: var(--color-ink);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.account-credit-cta span {
    color: var(--color-muted);
    font-weight: 600;
}

.account-section-heading {
    align-items: end;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin-bottom: 18px;
}

.account-empty-state {
    padding: 34px;
    text-align: center;
}

.account-empty-state p {
    color: var(--color-muted);
    margin: 0 auto 22px;
    max-width: 520px;
}

.account-history-table td,
.account-history-table th {
    white-space: nowrap;
}

.site-footer {
    background:
        radial-gradient(circle at 18% 0%, rgba(0, 102, 177, .24), transparent 28%),
        radial-gradient(circle at 86% 12%, rgba(234, 147, 11, .16), transparent 24%),
        #0d1422;
    color: #d0d5dd;
    padding: 64px 0 0;
}

.site-footer h3 {
    color: #fff;
    font-size: .92rem;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.footer-brand {
    display: inline-flex;
    margin-bottom: 20px;
}

.footer-brand img {
    background: #fff;
    border-radius: 8px;
    max-height: 56px;
    max-width: 220px;
    object-fit: contain;
    padding: 8px 12px;
}

.footer-brand-fallback {
    align-items: center;
    background: var(--color-primary);
    border-radius: 8px;
    color: #fff;
    display: none;
    font-weight: 700;
    height: 52px;
    justify-content: center;
    width: 52px;
}

.footer-description,
.footer-newsletter-text {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 440px;
}

.footer-creci {
    border-left: 3px solid var(--color-secondary);
    color: #eef4ff;
    display: inline-flex;
    font-size: .82rem;
    font-weight: 700;
    margin-top: 14px;
    padding-left: 10px;
}

.footer-links a {
    color: #d0d5dd;
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    transition: color .2s ease, transform .2s ease;
}

.footer-links a:hover,
.footer-bottom a:hover {
    color: var(--color-secondary);
    transform: translateX(3px);
}

.footer-newsletter-form {
    align-items: stretch;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    display: flex;
    gap: 8px;
    margin-top: 18px;
    padding: 8px;
}

.footer-newsletter-form input {
    background: rgba(255, 255, 255, .92);
    border: 0;
    border-radius: 6px;
    color: var(--color-ink);
    flex: 1;
    min-height: 42px;
    min-width: 0;
    padding: 0 12px;
}

.footer-newsletter-form input:focus {
    box-shadow: 0 0 0 3px rgba(234, 147, 11, .24);
    outline: 0;
}

.footer-newsletter-form button {
    background: var(--color-secondary);
    border: 0;
    border-radius: 6px;
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
    min-height: 42px;
    padding: 0 14px;
    transition: background .2s ease;
}

.footer-newsletter-form button:hover {
    background: #d68307;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    margin-top: 48px;
    padding: 22px 0;
}

.footer-bottom span,
.footer-bottom a {
    color: #cbd5e1;
    font-size: .92rem;
}

.footer-bottom a {
    display: inline;
    font-weight: 700;
    margin: 0;
}

.home-hero {
    background:
        radial-gradient(circle at 80% 14%, rgba(234, 147, 11, .12), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f2f7fb 100%);
    overflow: hidden;
    padding: 92px 0 72px;
}

.home-hero h1 {
    font-size: clamp(2.35rem, 5.4vw, 3rem);
    font-weight: 700;
    line-height: .98;
    margin: 14px 0 22px;
    max-width: 760px;
}

.home-hero .hero-copy {
    max-width: 640px;
}

.hero-visual-frame {
    position: relative;
}

.hero-floating-card {
    background: #fff;
    border: 1px solid var(--color-line);
    border-left: 5px solid var(--color-secondary);
    border-radius: 8px;
    bottom: 24px;
    box-shadow: 0 18px 42px rgba(16, 24, 40, .14);
    left: -8px;
    padding: 18px 20px;
    position: absolute;
    width: min(300px, 86%);
}

.hero-floating-card span,
.hero-floating-card strong {
    display: block;
}

.hero-floating-card span {
    color: var(--color-muted);
    font-size: .86rem;
    font-weight: 700;
}

.hero-floating-card strong {
    color: var(--color-ink);
    font-size: 1.05rem;
    margin-top: 4px;
}

.hero-trust-row {
    border-top: 1px solid var(--color-line);
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 36px;
    max-width: 620px;
    padding-top: 22px;
}

.hero-trust-row strong,
.hero-trust-row span {
    display: block;
}

.hero-trust-row strong {
    color: var(--color-primary);
    font-size: 1.1rem;
}

.hero-trust-row span {
    color: var(--color-muted);
    font-size: .92rem;
}

.section-heading {
    margin: 0 auto 34px;
    max-width: 780px;
    text-align: center;
}

.section-heading h2,
.section-block .col-lg-5>h2,
.section-block .col-lg-7>h2,
.calculator-section h2,
.authority-section h2,
.final-cta h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.30rem);
    font-weight: 700;
    line-height: 1.05;
    margin: 10px 0 16px;
}

.highlight-list {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.highlight-list div,
.audience-item,
.authority-card div {
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    padding: 18px;
}

.highlight-list strong,
.highlight-list span,
.audience-item strong,
.audience-item span,
.authority-card strong,
.authority-card span {
    display: block;
}

.highlight-list strong,
.audience-item strong,
.authority-card strong {
    color: var(--color-ink);
    font-size: 1rem;
    margin-bottom: 6px;
}

.highlight-list span,
.audience-item span,
.authority-card span {
    color: var(--color-muted);
}

.service-card {
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(16, 24, 40, .06);
    height: 100%;
    overflow: hidden;
}

.service-card img {
    aspect-ratio: 16 / 9;
    display: block;
    object-fit: cover;
    width: 100%;
}

.service-card h3,
.process-step h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 22px 22px 10px;
}

.service-card p {
    margin: 0 22px 24px;
}

.audience-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.audience-item {
    border-top: 4px solid var(--color-primary);
    min-height: 144px;
}

.calculator-section {
    background:
        linear-gradient(90deg, rgba(0, 102, 177, .08), rgba(234, 147, 11, .08)),
        #f5f8fb;
    padding: 82px 0;
}

.calculator-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.calculator-benefits span {
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    color: var(--color-ink);
    font-weight: 700;
    padding: 10px 14px;
}

.process-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-step {
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(16, 24, 40, .05);
    min-height: 250px;
    padding: 26px;
}

.process-step span {
    align-items: center;
    background: var(--color-primary);
    border-radius: 8px;
    color: #fff;
    display: inline-flex;
    font-weight: 700;
    height: 42px;
    justify-content: center;
    width: 48px;
}

.process-step h3 {
    margin-left: 0;
    margin-right: 0;
}

.authority-section {
    background: #111827;
    color: #fff;
    padding: 82px 0;
}

.authority-section p {
    color: #d0d5dd;
    font-size: 1.08rem;
}

.authority-card {
    display: grid;
    gap: 14px;
}

.authority-card div {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .12);
}

.authority-card strong {
    color: #fff;
}

.authority-card span {
    color: #d0d5dd;
}

.final-cta {
    background: #f5f8fb;
    padding: 82px 0;
}

.final-cta-panel {
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 49, 91, .11);
    margin: 0 auto;
    max-width: 920px;
    padding: 52px;
    text-align: center;
}

.final-cta-panel p {
    color: var(--color-muted);
    font-size: 1.08rem;
    margin: 0 auto;
    max-width: 680px;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 767px) {

    .hero-section,
    .home-hero,
    .section-block,
    .auth-section,
    .calculator-section,
    .authority-section,
    .final-cta {
        padding: 48px 0;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .feature-card,
    .form-panel,
    .info-panel,
    .metric-card,
    .table-panel,
    .pricing-card {
        padding: 22px;
    }

    .hero-trust-row,
    .audience-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .hero-floating-card {
        left: 14px;
    }

    .final-cta-panel {
        padding: 28px 22px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Home hero */
.home-hero {
    background:
        linear-gradient(135deg, rgba(0, 102, 177, .08), rgba(234, 147, 11, .06)),
        radial-gradient(circle at 14% 20%, rgba(0, 102, 177, .18), transparent 34%),
        radial-gradient(circle at 88% 24%, rgba(234, 147, 11, .16), transparent 28%),
        #f8fbff;
    isolation: isolate;
    min-height: calc(100vh - 76px);
    overflow: hidden;
    padding: 60px 0 86px;
    position: relative;
}

.hero-grid-layer {
    background-image:
        linear-gradient(rgba(0, 102, 177, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 177, .07) 1px, transparent 1px);
    background-size: 44px 44px;
    inset: 0;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .85), transparent 78%);
    opacity: .42;
    position: absolute;
    z-index: -3;
}

.hero-glow {
    border-radius: 999px;
    filter: blur(52px);
    opacity: .58;
    position: absolute;
    z-index: -2;
}

.hero-glow-primary {
    background: rgba(0, 102, 177, .38);
    height: 260px;
    left: -80px;
    top: 92px;
    width: 260px;
}

.hero-glow-secondary {
    background: rgba(234, 147, 11, .32);
    height: 240px;
    right: 7%;
    top: 70px;
    width: 240px;
}

.home-hero::after {
    background: linear-gradient(90deg, rgba(0, 102, 177, .08), rgba(234, 147, 11, .1));
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    right: 0;
}

.hero-badge {
    align-items: center;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(0, 102, 177, .16);
    border-radius: 999px;
    box-shadow: 0 12px 35px rgba(0, 49, 91, .08);
    color: #004f89;
    display: inline-flex;
    font-size: .82rem;
    font-weight: 700;
    gap: 10px;
    padding: 9px 14px;
}

.hero-badge span {
    background: var(--color-secondary);
    border-radius: 999px;
    box-shadow: 0 0 0 6px rgba(234, 147, 11, .16);
    display: inline-block;
    height: 8px;
    width: 8px;
}

.home-hero h1 {
    color: #101828;
    font-size: clamp(2.55rem, 5.8vw, 2.85rem);
    font-weight: 700;
    line-height: .96;
    margin: 22px 0 22px;
    max-width: 790px;
}

.home-hero .hero-copy {
    color: #475467;
    font-size: clamp(1.05rem, 1.4vw, 1.22rem);
    line-height: 1.68;
    max-width: 660px;
}

.home-hero .hero-actions {
    gap: 14px;
    margin-top: 34px;
}

.home-hero .btn-lg {
    box-shadow: 0 14px 28px rgba(0, 102, 177, .13);
    min-height: 54px;
    padding-left: 24px;
    padding-right: 24px;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #0066b1, #004f89);
    border-color: transparent;
}

.hero-btn-light {
    background: rgba(255, 255, 255, .78);
    border-color: rgba(0, 102, 177, .26);
    box-shadow: 0 14px 28px rgba(16, 24, 40, .08);
}

.home-hero .hero-trust-row {
    background: rgba(255, 255, 255, .58);
    border: 1px solid rgba(0, 102, 177, .11);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(16, 24, 40, .06);
    gap: 0;
    margin-top: 38px;
    max-width: 650px;
    padding: 0;
}

.home-hero .hero-trust-row div {
    padding: 18px;
}

.home-hero .hero-trust-row div+div {
    border-left: 1px solid rgba(0, 102, 177, .11);
}

.home-hero .hero-trust-row strong {
    color: #004f89;
    font-size: 1rem;
}

.home-hero .hero-trust-row span {
    color: #667085;
    font-size: .88rem;
}

.home-hero .hero-visual-frame {
    margin-left: auto;
    max-width: 660px;
    min-height: 570px;
    position: relative;
}

.home-hero .hero-visual-frame::before {
    background: linear-gradient(135deg, rgba(0, 102, 177, .18), rgba(234, 147, 11, .18));
    border-radius: 28px;
    content: "";
    inset: 46px 28px 46px 40px;
    position: absolute;
    transform: rotate(-4deg);
    z-index: -1;
}

.hero-mockup-card {
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(255, 255, 255, .78);
    border-radius: 18px;
    box-shadow: 0 34px 90px rgba(0, 49, 91, .18);
    overflow: hidden;
    padding: 14px;
    position: absolute;
    right: 0;
    top: 28px;
    width: min(590px, 100%);
}

.hero-mockup-topbar {
    align-items: center;
    background: #101828;
    border-radius: 12px 12px 0 0;
    display: flex;
    gap: 7px;
    height: 38px;
    padding: 0 14px;
}

.hero-mockup-topbar span {
    background: rgba(255, 255, 255, .45);
    border-radius: 999px;
    height: 9px;
    width: 9px;
}

.home-hero .hero-image {
    border-radius: 0 0 12px 12px;
    box-shadow: none;
    display: block;
    width: 100%;
}

.home-hero .hero-floating-card {
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(255, 255, 255, .88);
    border-left: 4px solid var(--color-secondary);
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(16, 24, 40, .14);
    padding: 16px 18px;
    position: absolute;
    width: 230px;
}

.home-hero .hero-floating-card span,
.hero-indicator-panel span {
    color: #667085;
    display: block;
    font-size: .78rem;
    font-weight: 700;
}

.home-hero .hero-floating-card strong,
.hero-indicator-panel strong {
    color: #101828;
    display: block;
    font-size: 1.12rem;
    margin-top: 4px;
}

.hero-card-profit {
    left: 0;
    top: 132px;
}

.hero-card-risk {
    border-left-color: var(--color-primary);
    bottom: 128px;
    right: 18px;
}

.hero-indicator-panel {
    background: #101828;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    bottom: 28px;
    box-shadow: 0 24px 55px rgba(16, 24, 40, .22);
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(3, 1fr);
    left: 54px;
    overflow: hidden;
    position: absolute;
    width: min(520px, calc(100% - 70px));
}

.hero-indicator-panel div {
    background: rgba(255, 255, 255, .06);
    padding: 18px;
}

.hero-indicator-panel span {
    color: #cbd5e1;
}

.hero-indicator-panel strong {
    color: #fff;
    font-size: 1rem;
}

@media (max-width: 991px) {
    .home-hero {
        min-height: auto;
        padding: 70px 0 58px;
    }

    .home-hero .hero-visual-frame {
        margin: 0;
        min-height: 640px;
    }

    .hero-mockup-card {
        left: 0;
        right: auto;
    }
}

@media (max-width: 767px) {
    .home-hero {
        padding: 54px 0 48px;
    }

    .home-hero h1 {
        font-size: clamp(2.35rem, 12vw, 3.35rem);
    }

    .home-hero .hero-trust-row div+div {
        border-left: 0;
        border-top: 1px solid rgba(0, 102, 177, .11);
    }

    .home-hero .hero-visual-frame {
        min-height: 560px;
    }

    .hero-card-profit {
        left: 12px;
        top: 96px;
    }

    .hero-card-risk {
        bottom: 132px;
        right: 8px;
    }

    .hero-indicator-panel {
        grid-template-columns: 1fr;
        left: 12px;
        width: calc(100% - 24px);
    }
}

/* About page */
.internal-hero {
    background:
        radial-gradient(circle at 12% 18%, rgba(0, 102, 177, .2), transparent 30%),
        radial-gradient(circle at 86% 18%, rgba(234, 147, 11, .14), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f2f7fb 100%);
    overflow: hidden;
    padding: 86px 0 76px;
    position: relative;
}

.internal-hero-grid {
    background-image:
        linear-gradient(rgba(0, 102, 177, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 177, .06) 1px, transparent 1px);
    background-size: 44px 44px;
    inset: 0;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .8), transparent 78%);
    opacity: .55;
    position: absolute;
}

.page-breadcrumb {
    align-items: center;
    display: flex;
    gap: 10px;
    margin-bottom: 26px;
}

.page-breadcrumb a,
.page-breadcrumb span {
    color: var(--color-muted);
    font-size: .9rem;
    font-weight: 700;
}

.page-breadcrumb a::after {
    color: #98a2b3;
    content: "/";
    margin-left: 10px;
}

.internal-hero h1 {
    color: #101828;
    font-size: clamp(2.3rem, 5vw, 2.35rem);
    font-weight: 700;
    line-height: 1;
    margin: 14px 0 22px;
    max-width: 920px;
}

.internal-hero p {
    color: #475467;
    font-size: clamp(1.05rem, 1.35vw, 1.2rem);
    line-height: 1.7;
    max-width: 760px;
}

.internal-hero-card {
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(0, 102, 177, .12);
    border-left: 5px solid var(--color-secondary);
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(16, 24, 40, .1);
    padding: 24px;
}

.internal-hero-card strong,
.internal-hero-card span {
    display: block;
}

.internal-hero-card strong {
    color: var(--color-primary);
    font-size: 1.12rem;
    margin-bottom: 8px;
}

.internal-hero-card span {
    color: var(--color-muted);
}

.about-highlight-row,
.about-help-grid,
.about-metrics-grid {
    display: grid;
    gap: 16px;
}

.about-highlight-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 26px;
}

.about-highlight-row div,
.about-help-card,
.about-metrics-grid div {
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(16, 24, 40, .06);
    padding: 22px;
}

.about-highlight-row strong,
.about-highlight-row span,
.about-help-card span,
.about-help-card h3,
.about-metrics-grid strong,
.about-metrics-grid span {
    display: block;
}

.about-highlight-row strong {
    color: var(--color-primary);
    font-size: 1rem;
    margin-bottom: 6px;
}

.about-highlight-row span,
.about-help-card p,
.about-metrics-grid span {
    color: var(--color-muted);
}

.about-image-frame {
    position: relative;
}

.about-image-frame::before {
    background: linear-gradient(135deg, rgba(0, 102, 177, .18), rgba(234, 147, 11, .18));
    border-radius: 18px;
    content: "";
    inset: 34px -16px -16px 34px;
    position: absolute;
    z-index: -1;
}

.about-image-badge {
    background: #fff;
    border: 1px solid var(--color-line);
    border-left: 5px solid var(--color-secondary);
    border-radius: 8px;
    bottom: 24px;
    box-shadow: 0 20px 50px rgba(16, 24, 40, .14);
    left: 24px;
    padding: 16px 18px;
    position: absolute;
    width: min(230px, 80%);
}

.about-image-badge span,
.about-image-badge strong {
    display: block;
}

.about-image-badge span {
    color: var(--color-muted);
    font-size: .78rem;
    font-weight: 700;
}

.about-image-badge strong {
    color: var(--color-ink);
    font-size: 1.08rem;
    margin-top: 4px;
}

.about-help-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-help-card {
    min-height: 220px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.about-help-card:hover {
    box-shadow: 0 24px 60px rgba(0, 49, 91, .12);
    transform: translateY(-4px);
}

.about-help-card span {
    align-items: center;
    background: var(--color-primary);
    border-radius: 8px;
    color: #fff;
    display: inline-flex;
    font-weight: 700;
    height: 40px;
    justify-content: center;
    margin-bottom: 18px;
    width: 48px;
}

.about-help-card h3 {
    color: var(--color-ink);
    font-size: 1.14rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-authority {
    background:
        radial-gradient(circle at 84% 10%, rgba(234, 147, 11, .18), transparent 26%),
        #111827;
    color: #fff;
    padding: 82px 0;
}

.about-authority h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.05;
    margin: 10px 0 16px;
}

.about-authority p {
    color: #d0d5dd;
    font-size: 1.06rem;
    line-height: 1.7;
}

.about-metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-metrics-grid div {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .12);
    box-shadow: none;
}

.about-metrics-grid strong {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.about-metrics-grid span {
    color: #d0d5dd;
}

.about-final-cta {
    background: #f5f8fb;
}

@media (max-width: 991px) {

    .about-help-grid,
    .about-metrics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {

    .internal-hero,
    .about-authority {
        padding: 52px 0;
    }

    .about-highlight-row,
    .about-help-grid,
    .about-metrics-grid {
        grid-template-columns: 1fr;
    }

    .about-image-frame::before {
        inset: 22px -8px -8px 22px;
    }
}

/* Services page */
.services-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-card {
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(16, 24, 40, .06);
    min-height: 245px;
    overflow: hidden;
    padding: 26px;
    position: relative;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.services-card::after {
    background: linear-gradient(135deg, rgba(0, 102, 177, .12), rgba(234, 147, 11, .14));
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.services-card:hover {
    border-color: rgba(0, 102, 177, .18);
    box-shadow: 0 28px 70px rgba(0, 49, 91, .13);
    transform: translateY(-5px);
}

.services-icon {
    align-items: center;
    background: var(--color-primary);
    border-radius: 8px;
    box-shadow: 0 12px 26px rgba(0, 102, 177, .18);
    color: #fff;
    display: inline-flex;
    font-weight: 700;
    height: 44px;
    justify-content: center;
    margin-bottom: 22px;
    width: 52px;
}

.services-card h3 {
    color: var(--color-ink);
    font-size: 1.18rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
}

.services-card p {
    color: var(--color-muted);
    line-height: 1.65;
    margin: 0;
}

.services-card-wide {
    background:
        linear-gradient(135deg, rgba(0, 102, 177, .07), rgba(234, 147, 11, .08)),
        #fff;
    grid-column: span 3;
    min-height: auto;
}

.services-visual-section {
    background:
        radial-gradient(circle at 84% 12%, rgba(234, 147, 11, .14), transparent 26%),
        linear-gradient(180deg, #f5f8fb 0%, #ffffff 100%);
    padding: 82px 0;
}

.services-visual-section h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.05;
    margin: 10px 0 16px;
}

.services-visual-section p {
    color: var(--color-muted);
    font-size: 1.06rem;
    line-height: 1.7;
}

.services-visual-frame {
    position: relative;
}

.services-visual-frame::before {
    background: linear-gradient(135deg, rgba(0, 102, 177, .18), rgba(234, 147, 11, .18));
    border-radius: 18px;
    content: "";
    inset: 34px 34px -16px -16px;
    position: absolute;
    z-index: -1;
}

.services-floating-badge {
    background: #fff;
    border: 1px solid var(--color-line);
    border-left: 5px solid var(--color-secondary);
    border-radius: 8px;
    bottom: 24px;
    box-shadow: 0 20px 50px rgba(16, 24, 40, .14);
    padding: 16px 18px;
    position: absolute;
    right: 24px;
    width: min(280px, 82%);
}

.services-floating-badge span,
.services-floating-badge strong,
.services-proof-grid strong,
.services-proof-grid span {
    display: block;
}

.services-floating-badge span {
    color: var(--color-muted);
    font-size: .78rem;
    font-weight: 700;
}

.services-floating-badge strong {
    color: var(--color-ink);
    font-size: 1.08rem;
    margin-top: 4px;
}

.services-proof-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 26px;
}

.services-proof-grid div {
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(16, 24, 40, .05);
    padding: 20px;
}

.services-proof-grid strong {
    color: var(--color-primary);
    font-size: 1rem;
    margin-bottom: 6px;
}

.services-proof-grid span {
    color: var(--color-muted);
}

.services-final-cta {
    background: #f5f8fb;
}

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-card-wide {
        grid-column: span 2;
    }
}

@media (max-width: 767px) {

    .services-grid,
    .services-proof-grid {
        grid-template-columns: 1fr;
    }

    .services-card-wide {
        grid-column: span 1;
    }

    .services-visual-section {
        padding: 52px 0;
    }

    .services-visual-frame::before {
        inset: 22px 22px -8px -8px;
    }
}

/* Contact page */
.contact-info-card,
.contact-form-card {
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(16, 24, 40, .08);
    height: 100%;
    padding: 32px;
}

.contact-info-card {
    background:
        linear-gradient(135deg, rgba(0, 102, 177, .06), rgba(234, 147, 11, .06)),
        #fff;
}

.contact-info-card h2,
.contact-form-card h2 {
    color: var(--color-ink);
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    font-weight: 700;
    line-height: 1.08;
    margin: 10px 0 16px;
}

.contact-info-card p,
.contact-form-card p {
    color: var(--color-muted);
    line-height: 1.7;
}

.contact-info-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.contact-info-list div {
    background: rgba(255, 255, 255, .74);
    border: 1px solid rgba(0, 102, 177, .1);
    border-radius: 8px;
    padding: 16px;
}

.contact-info-list span,
.contact-info-list strong {
    display: block;
}

.contact-info-list span {
    color: var(--color-muted);
    font-size: .82rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-info-list strong {
    color: var(--color-ink);
    font-size: .98rem;
}

.contact-trust-note {
    background: #111827;
    border-left: 5px solid var(--color-secondary);
    border-radius: 8px;
    color: #d0d5dd;
    line-height: 1.65;
    margin-top: 22px;
    padding: 18px;
}

.contact-form-card textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-topics-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-topics-grid div {
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(16, 24, 40, .06);
    min-height: 180px;
    padding: 24px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.contact-topics-grid div:hover {
    box-shadow: 0 24px 60px rgba(0, 49, 91, .12);
    transform: translateY(-4px);
}

.contact-topics-grid strong,
.contact-topics-grid span {
    display: block;
}

.contact-topics-grid strong {
    color: var(--color-primary);
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.contact-topics-grid span {
    color: var(--color-muted);
    line-height: 1.6;
}

.contact-final-cta {
    background: #f5f8fb;
}

/* FAQ page */
.faq-section {
    background:
        linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
}

.faq-accordion {
    display: grid;
    gap: 16px;
    margin: 0 auto;
    max-width: 920px;
}

.faq-accordion-item {
    background: #fff;
    border: 1px solid rgba(0, 102, 177, .11);
    border-radius: 8px !important;
    box-shadow: 0 18px 45px rgba(16, 24, 40, .07);
    overflow: hidden;
}

.faq-accordion-button {
    background: #fff;
    color: var(--color-ink);
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.35;
    padding: 22px 24px;
}

.faq-accordion-button:not(.collapsed) {
    background:
        linear-gradient(135deg, rgba(0, 102, 177, .08), rgba(234, 147, 11, .08)),
        #fff;
    box-shadow: none;
    color: var(--color-primary);
}

.faq-accordion-button:focus {
    border-color: transparent;
    box-shadow: 0 0 0 .2rem rgba(0, 102, 177, .12);
}

.faq-accordion-button::after {
    background-color: rgba(0, 102, 177, .08);
    border-radius: 999px;
    background-position: center;
    background-size: 16px;
    height: 32px;
    width: 32px;
}

.faq-accordion-body {
    border-top: 1px solid rgba(0, 102, 177, .08);
    color: var(--color-muted);
    font-size: .98rem;
    line-height: 1.75;
    padding: 22px 24px 24px;
}

.faq-final-cta {
    background: #f5f8fb;
}

@media (max-width: 991px) {
    .contact-topics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {

    .contact-info-card,
    .contact-form-card {
        padding: 24px;
    }

    .contact-topics-grid {
        grid-template-columns: 1fr;
    }
}

/* Credits page */
.credits-shop-section {
    background:
        linear-gradient(180deg, rgba(0, 102, 177, .035), rgba(255, 255, 255, 0) 28%),
        linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
    position: relative;
}

.credits-shop-section::before {
    background: linear-gradient(90deg, transparent, rgba(0, 102, 177, .14), rgba(234, 147, 11, .14), transparent);
    content: "";
    height: 1px;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: min(1060px, calc(100% - 32px));
}

.credits-heading {
    margin-bottom: 30px;
}

.credits-heading h2 {
    max-width: 760px;
}

.credits-heading p {
    margin-left: auto;
    margin-right: auto;
    max-width: 680px;
}

.credits-tabs-shell {
    display: flex;
    justify-content: center;
    margin: 0 auto 40px;
}

.credits-tabs {
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(0, 102, 177, .14);
    border-radius: 999px;
    box-shadow: 0 20px 50px rgba(0, 49, 91, .1);
    display: inline-flex;
    gap: 8px;
    padding: 7px;
}

.credits-tab {
    background: transparent;
    border: 0;
    border-radius: 999px;
    color: var(--color-muted);
    font-size: .95rem;
    font-weight: 700;
    min-width: 144px;
    padding: 13px 28px;
    transition: background .22s ease, color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.credits-tab:hover {
    color: var(--color-primary);
    transform: translateY(-1px);
}

.credits-tab.active {
    background: linear-gradient(135deg, var(--color-primary), #004f89);
    box-shadow: 0 14px 30px rgba(0, 102, 177, .28);
    color: #fff;
}

.credits-tab-content>.tab-pane {
    transition: opacity .22s ease, transform .22s ease;
}

.credits-tab-content>.tab-pane:not(.show) {
    transform: translateY(8px);
}

.credits-plans-grid {
    align-items: stretch;
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.credits-plan-card {
    background: #fff;
    border: 1px solid rgba(0, 102, 177, .11);
    border-radius: 8px;
    box-shadow: 0 22px 54px rgba(16, 24, 40, .08);
    display: flex;
    flex-direction: column;
    min-height: 580px;
    overflow: hidden;
    padding: 34px;
    position: relative;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.credits-plan-card::before {
    background: linear-gradient(90deg, rgba(0, 102, 177, .32), rgba(234, 147, 11, .32));
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.credits-plan-card:hover {
    border-color: rgba(0, 102, 177, .24);
    box-shadow: 0 30px 76px rgba(0, 49, 91, .15);
    transform: translateY(-6px);
}

.credits-plan-card.featured {
    background:
        linear-gradient(180deg, rgba(0, 102, 177, .055), rgba(234, 147, 11, .055)),
        #fff;
    border-color: rgba(0, 102, 177, .34);
    box-shadow: 0 36px 92px rgba(0, 49, 91, .2);
    transform: translateY(-8px) scale(1.018);
    z-index: 1;
}

.credits-plan-card.featured::before {
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    height: 5px;
}

.credits-plan-card.featured:hover {
    transform: translateY(-12px) scale(1.018);
}

.plan-ribbon {
    background: linear-gradient(135deg, var(--color-secondary), #d27d00);
    border-radius: 999px;
    box-shadow: 0 12px 24px rgba(234, 147, 11, .25);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    left: 50%;
    padding: 8px 18px;
    position: absolute;
    top: 20px;
    transform: translateX(-50%);
    white-space: nowrap;
}

.credits-plan-head {
    border-bottom: 1px solid rgba(0, 102, 177, .1);
    margin-bottom: 24px;
    padding: 18px 0 22px;
}

.credits-plan-head span,
.credits-plan-head strong {
    display: block;
}

.credits-plan-head span {
    color: var(--color-secondary);
    font-size: .78rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.credits-plan-head strong {
    color: var(--color-ink);
    font-size: clamp(1.2rem, 2vw, 1.48rem);
    font-weight: 700;
    line-height: 1.2;
}

.credits-price {
    color: var(--color-primary);
    font-size: clamp(2.55rem, 4.3vw, 3.45rem);
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: .98;
    margin-bottom: 8px;
}

.credits-price-meta {
    color: #8a5a12;
    font-size: .92rem;
    font-weight: 700;
    line-height: 1.45;
    min-height: 42px;
    margin-bottom: 20px;
}

.credits-quantity-control {
    align-items: center;
    background: #f7fafc;
    border: 1px solid rgba(0, 102, 177, .12);
    border-radius: 8px;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin: 0 0 22px;
    padding: 12px 14px;
}

.credits-quantity-control span {
    color: var(--color-ink);
    font-size: .88rem;
    font-weight: 700;
}

.credits-quantity-stepper {
    align-items: center;
    background: #fff;
    border: 1px solid rgba(0, 102, 177, .14);
    border-radius: 8px;
    display: inline-flex;
    overflow: hidden;
}

.credits-quantity-button,
.credits-quantity-input {
    border: 0;
    height: 38px;
}

.credits-quantity-button {
    align-items: center;
    background: #fff;
    color: var(--color-primary);
    display: inline-flex;
    font-size: 1.1rem;
    font-weight: 700;
    justify-content: center;
    transition: background .18s ease, color .18s ease;
    width: 40px;
}

.credits-quantity-button:hover {
    background: var(--color-primary);
    color: #fff;
}

.credits-quantity-input {
    border-left: 1px solid rgba(0, 102, 177, .12);
    border-right: 1px solid rgba(0, 102, 177, .12);
    color: var(--color-ink);
    font-weight: 700;
    text-align: center;
    width: 54px;
}

.credits-quantity-input::-webkit-inner-spin-button,
.credits-quantity-input::-webkit-outer-spin-button {
    appearance: none;
    margin: 0;
}

.credits-plan-card p {
    color: var(--color-muted);
    line-height: 1.65;
    min-height: 90px;
    margin-bottom: 0;
}

.credits-plan-card ul {
    border-top: 1px solid rgba(0, 102, 177, .08);
    display: grid;
    gap: 12px;
    list-style: none;
    margin: 24px 0 28px;
    padding: 24px 0 0;
}

.credits-plan-card li {
    color: var(--color-ink);
    font-size: .95rem;
    font-weight: 500;
    line-height: 1.45;
    padding-left: 30px;
    position: relative;
}

.credits-plan-card li::before {
    background: rgba(0, 102, 177, .08);
    border: 1px solid rgba(0, 102, 177, .18);
    border-radius: 999px;
    color: var(--color-primary);
    content: "";
    height: 14px;
    left: 0;
    position: absolute;
    top: 4px;
    width: 14px;
}

.credits-plan-card li::after {
    border-bottom: 2px solid var(--color-primary);
    border-right: 2px solid var(--color-primary);
    content: "";
    height: 7px;
    left: 5px;
    position: absolute;
    top: 6px;
    transform: rotate(45deg);
    width: 4px;
}

.credits-plan-footer {
    display: grid;
    gap: 16px;
    margin-top: auto;
}

.credits-plan-badge {
    align-self: start;
    background: rgba(0, 102, 177, .07);
    border: 1px solid rgba(0, 102, 177, .14);
    border-radius: 999px;
    color: var(--color-primary);
    display: inline-flex;
    font-size: .8rem;
    font-weight: 700;
    justify-self: start;
    line-height: 1;
    padding: 9px 13px;
}

.credits-plan-card.featured .credits-plan-badge {
    background: #fff7e8;
    border-color: rgba(234, 147, 11, .28);
    color: #9a5a00;
}

.credits-plan-card .btn {
    border-radius: 8px;
    box-shadow: 0 12px 24px rgba(0, 102, 177, .08);
    min-height: 50px;
}

.credits-plan-card.featured .btn {
    box-shadow: 0 16px 32px rgba(0, 102, 177, .22);
}

.credits-note-section {
    background: #f5f8fb;
    padding: 0 0 82px;
}

.credits-note-card {
    align-items: center;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 49, 91, .1);
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr auto;
    padding: 34px;
}

.credits-note-card h2 {
    color: var(--color-ink);
    font-size: clamp(1.55rem, 3vw, 2.3rem);
    font-weight: 700;
    line-height: 1.08;
    margin: 8px 0 12px;
}

.credits-note-card p {
    color: var(--color-muted);
    margin: 0;
}

.credits-soon-alert {
    background: #fff7e8;
    border: 1px solid rgba(234, 147, 11, .28);
    border-radius: 8px;
    color: #9a5a00;
    font-weight: 700;
    padding: 16px 18px;
}

@media (max-width: 991px) {

    .credits-plans-grid,
    .credits-note-card {
        grid-template-columns: 1fr;
    }

    .credits-plan-card.featured {
        transform: none;
    }

    .credits-plan-card.featured:hover {
        transform: translateY(-5px);
    }

    .credits-plan-card {
        min-height: auto;
    }

    .credits-plan-card p,
    .credits-price-meta {
        min-height: 0;
    }

    .credits-quantity-control {
        max-width: 360px;
    }
}

@media (max-width: 767px) {

    .credits-plan-card,
    .credits-note-card {
        padding: 24px;
    }

    .credits-tabs-shell {
        justify-content: stretch;
    }

    .credits-tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .credits-tab {
        min-width: 0;
        padding: 11px 14px;
        width: 100%;
    }

    .plan-ribbon {
        display: inline-block;
        left: auto;
        margin-bottom: 18px;
        position: static;
        transform: none;
        width: fit-content;
    }

    .credits-plan-head {
        padding-top: 0;
    }

    .credits-quantity-control {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
        max-width: none;
    }

    .credits-quantity-stepper {
        justify-content: space-between;
        width: 100%;
    }

    .credits-quantity-input {
        flex: 1;
    }
}

/* Calculator page */
.calculator-workspace {
    background:
        radial-gradient(circle at 88% 12%, rgba(234, 147, 11, .12), transparent 26%),
        linear-gradient(180deg, #f5f8fb 0%, #ffffff 100%);
    padding: 72px 0;
}

.calculator-form-card,
.calculator-result-card,
.calculator-side-note {
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(16, 24, 40, .08);
}

.calculator-form-card {
    padding: 32px;
}

.calculator-card-heading {
    margin-bottom: 28px;
}

.calculator-card-heading h2,
.calculator-result-card h2 {
    color: var(--color-ink);
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    font-weight: 700;
    line-height: 1.08;
    margin: 10px 0 10px;
}

.calculator-card-heading p,
.calculator-result-card p {
    color: var(--color-muted);
    margin: 0;
}

.calculator-action-alert {
    background: #fff7e8;
    border: 1px solid rgba(234, 147, 11, .38);
    border-left: 5px solid var(--color-secondary);
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(16, 24, 40, .1);
    color: #5f3700;
    margin-bottom: 24px;
    padding: 18px 20px;
    scroll-margin-top: 110px;
}

.calculator-alert-title {
    color: var(--color-ink);
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
}

.calculator-alert-message {
    font-weight: 600;
}

.calculator-alert-button {
    margin-top: 14px;
}

.calculator-alert-highlight {
    animation: calculatorAlertPulse 1.1s ease;
}

@keyframes calculatorAlertPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(234, 147, 11, .45), 0 18px 40px rgba(16, 24, 40, .1);
        transform: translateY(-2px);
    }

    55% {
        box-shadow: 0 0 0 8px rgba(234, 147, 11, .12), 0 18px 40px rgba(16, 24, 40, .12);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(234, 147, 11, 0), 0 18px 40px rgba(16, 24, 40, .1);
        transform: translateY(0);
    }
}

.calculator-group {
    border-top: 1px solid var(--color-line);
    padding: 24px 0;
}

.calculator-group h3 {
    color: var(--color-ink);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.calculator-choice {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.calculator-choice label {
    cursor: pointer;
    margin: 0;
}

.calculator-choice input {
    display: none;
}

.calculator-choice span {
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    color: var(--color-ink);
    display: inline-flex;
    font-weight: 700;
    min-width: 150px;
    padding: 12px 16px;
    transition: border-color .2s ease, box-shadow .2s ease, color .2s ease;
}

.calculator-choice input:checked+span {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(0, 102, 177, .1);
    color: var(--color-primary);
}

.calculator-info-button {
    align-items: center;
    background: rgba(0, 102, 177, .08);
    border: 1px solid rgba(0, 102, 177, .18);
    border-radius: 50%;
    color: var(--color-primary);
    display: inline-flex;
    font-size: .72rem;
    font-weight: 700;
    height: 20px;
    justify-content: center;
    line-height: 1;
    padding: 0;
    width: 20px;
}

.calculator-info-button:hover,
.calculator-info-button:focus {
    background: var(--color-primary);
    color: #fff;
    outline: none;
}

.calculator-tooltip {
    --bs-tooltip-bg: var(--color-ink);
    --bs-tooltip-color: #fff;
    --bs-tooltip-max-width: 320px;
    --bs-tooltip-padding-x: 14px;
    --bs-tooltip-padding-y: 12px;
    --bs-tooltip-border-radius: 8px;
    --bs-tooltip-font-size: .82rem;
    --bs-tooltip-opacity: 1;
}

.calculator-submit {
    min-width: 220px;
}

.calculator-result-card {
    min-height: 420px;
    overflow: hidden;
    padding: 28px;
    position: sticky;
    top: 104px;
}

.empty-result {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.result-status {
    border-radius: 8px;
    margin-bottom: 18px;
    padding: 18px;
}

.result-status span,
.result-status strong {
    display: block;
}

.result-status span {
    font-size: .8rem;
    font-weight: 700;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.result-status strong {
    font-size: 1.8rem;
    font-weight: 700;
}

.status-viÃ¡vel {
    background: #ecfdf3;
    color: #027a48;
}

.status-atenÃ§Ã£o {
    background: #fff7e8;
    color: #9a5a00;
}

.status-inviÃ¡vel {
    background: #fff1f3;
    color: #b42318;
}

.result-summary {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 18px;
}

.result-summary div {
    background: #f5f8fb;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    padding: 16px;
}

.result-summary span,
.result-summary strong,
.result-lines span,
.result-lines strong,
.calculator-side-note strong,
.calculator-side-note span {
    display: block;
}

.result-summary span {
    color: var(--color-muted);
    font-size: .82rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.result-summary strong {
    color: var(--color-primary);
    font-size: 1.25rem;
    font-weight: 700;
}

.status-viável {
    background: #ecfdf3;
    color: #027a48;
}

.status-atenção {
    background: #fff7e8;
    color: #9a5a00;
}

.status-inviável {
    background: #fff1f3;
    color: #b42318;
}

.result-summary-cards {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
    margin-bottom: 18px;
}

.result-summary-card {
    background: #f5f8fb;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    padding: 15px;
}

.result-summary-card span,
.result-summary-card strong,
.result-summary-card small {
    display: block;
}

.result-summary-card span {
    color: var(--color-muted);
    font-size: .82rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.result-summary-card strong {
    color: var(--color-primary);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.15;
}

.result-summary-card small {
    color: var(--color-muted);
    font-size: .78rem;
    font-weight: 600;
    margin-top: 6px;
}

.result-summary-card.is-negative {
    background: #fff1f3;
    border-color: rgba(180, 35, 24, .18);
}

.result-summary-card.is-negative strong,
.result-summary-card.is-negative small {
    color: #b42318;
}

.result-analysis-card,
.result-recommendation-card {
    border-radius: 8px;
    margin-bottom: 18px;
    padding: 18px;
}

.result-analysis-card span,
.result-recommendation-card span {
    border-radius: 999px;
    display: inline-flex;
    font-size: .72rem;
    font-weight: 700;
    margin-bottom: 12px;
    padding: 6px 10px;
    text-transform: uppercase;
}

.result-analysis-card h3,
.result-recommendation-card h3 {
    color: var(--color-ink);
    font-size: 1.02rem;
    font-weight: 700;
    margin: 0 0 10px;
}

.result-analysis-card strong,
.result-recommendation-card strong {
    color: var(--color-ink);
    display: block;
    font-size: .92rem;
    margin-bottom: 8px;
}

.result-analysis-card p,
.result-recommendation-card p {
    color: var(--color-muted);
    font-size: .9rem;
    line-height: 1.65;
    margin: 0;
}

.result-analysis-positive {
    background: #ecfdf3;
    border: 1px solid rgba(2, 122, 72, .18);
}

.result-analysis-positive span {
    background: rgba(2, 122, 72, .1);
    color: #027a48;
}

.result-analysis-warning {
    background: #fff7e8;
    border: 1px solid rgba(234, 147, 11, .24);
}

.result-analysis-warning span {
    background: rgba(234, 147, 11, .13);
    color: #9a5a00;
}

.result-analysis-negative {
    background: #fff1f3;
    border: 1px solid rgba(180, 35, 24, .18);
}

.result-analysis-negative span {
    background: rgba(180, 35, 24, .1);
    color: #b42318;
}

.result-recommendation-card {
    background: #f2f7fb;
    border: 1px solid rgba(0, 102, 177, .14);
    border-left: 5px solid var(--color-primary);
}

.result-recommendation-card span {
    background: rgba(0, 102, 177, .09);
    color: var(--color-primary);
}

.saved-report-summary,
.saved-report-insights {
    display: grid;
    gap: 18px;
    margin-bottom: 24px;
}

.saved-report-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.saved-report-insights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.result-lines {
    display: grid;
    gap: 8px;
}

.result-lines div {
    align-items: center;
    border-bottom: 1px solid var(--color-line);
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding: 10px 0;
}

.result-lines div:last-child {
    border-bottom: 0;
}

.result-lines span {
    color: var(--color-muted);
    font-weight: 700;
}

.result-lines strong {
    color: var(--color-ink);
    font-weight: 700;
    text-align: right;
}

.result-lines .highlight strong {
    color: var(--color-primary);
}

.calculator-side-note {
    border-left: 5px solid var(--color-secondary);
    margin-top: 18px;
    padding: 20px;
}

.calculator-side-note strong {
    color: var(--color-ink);
    margin-bottom: 6px;
}

.calculator-side-note span {
    color: var(--color-muted);
    line-height: 1.6;
}

@media (max-width: 1199px) {
    .calculator-result-card {
        position: static;
    }
}

@media (max-width: 767px) {

    .account-profile-panel,
    .account-credit-cta,
    .account-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .account-profile-actions,
    .account-profile-actions .btn,
    .account-credit-cta .btn,
    .account-section-heading .btn {
        width: 100%;
    }

    .calculator-workspace {
        padding: 52px 0;
    }

    .saved-report-summary,
    .saved-report-insights {
        grid-template-columns: 1fr;
    }

    .calculator-form-card,
    .calculator-result-card {
        padding: 24px;
    }

    .result-summary {
        grid-template-columns: 1fr;
    }

    .result-lines div {
        align-items: flex-start;
        flex-direction: column;
    }

    .result-lines strong {
        text-align: left;
    }
}

/* ============================================
   PÁGINA DE IMÓVEIS
   ============================================ */

/* Filtros */
.filtros-container {
    background: var(--color-soft);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
    border: 1px solid var(--color-line);
}

.filtros-container .form-label {
    font-size: .875rem;
    margin-bottom: 6px;
    color: var(--color-ink);
}

.filtros-container .form-select,
.filtros-container .form-control {
    border-radius: 8px;
    border-color: var(--color-line);
    font-size: .9rem;
}

.filtros-container .form-select:focus,
.filtros-container .form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 177, .12);
}

.resultados-contador {
    color: var(--color-muted);
    font-size: .95rem;
    margin-bottom: 24px;
}

.resultados-contador span {
    color: var(--color-ink);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Grid de Imóveis */
.imoveis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.imovel-card {
    background: var(--color-surface);
    border-radius: 12px;
    border: 1px solid var(--color-line);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.imovel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(16, 24, 40, .10);
}

.imovel-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--color-soft);
}

.imovel-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.imovel-card:hover .imovel-card-image img {
    transform: scale(1.03);
}

.imovel-status {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 14px;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .3px;
    color: #fff;
}

.status-disponivel {
    background: #0ca77a;
}

.status-indisponivel {
    background: #dc3545;
}

.imovel-card-content {
    padding: 20px;
}

.imovel-card-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.imovel-card-content h3 a {
    color: var(--color-ink);
    transition: color .2s ease;
}

.imovel-card-content h3 a:hover {
    color: var(--color-primary);
}

.imovel-localizacao {
    color: var(--color-muted);
    font-size: .875rem;
    margin-bottom: 12px;
}

.imovel-localizacao i {
    margin-right: 4px;
}

.imovel-preco {
    margin-bottom: 14px;
}

.preco-valor {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

.imovel-caracteristicas {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding: 14px 0;
    border-top: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
    margin-bottom: 16px;
}

.imovel-caracteristicas span {
    font-size: .85rem;
    color: var(--color-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.imovel-caracteristicas span i {
    font-size: .95rem;
}

.imovel-card-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.imovel-card-actions .btn {
    flex: 1;
    min-width: 80px;
}

/* Responsividade */
@media (max-width: 767px) {
    .imoveis-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .filtros-container {
        padding: 16px;
    }

    .imovel-card-image {
        height: 180px;
    }

    .imovel-card-actions .btn {
        font-size: .8rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .imoveis-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   PÁGINA DE DETALHES DO IMÓVEL
   ============================================ */

.imovel-gallery-main {
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-soft);
    height: 420px;
}

.imovel-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.imovel-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.imovel-gallery-thumbs img {
    border-radius: 8px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color .2s ease;
}

.imovel-gallery-thumbs img:hover {
    border-color: var(--color-primary);
}

.imovel-info-card {
    background: var(--color-soft);
    border-radius: 12px;
    padding: 28px;
    border: 1px solid var(--color-line);
}

.imovel-info-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.imovel-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.info-label {
    display: block;
    font-size: .8rem;
    color: var(--color-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.info-value {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-ink);
}

.preco-destaque {
    font-size: 1.4rem;
    color: var(--color-primary);
}

.imovel-caracteristicas-detalhe {
    border-top: 1px solid var(--color-line);
    padding-top: 20px;
}

.imovel-caracteristicas-detalhe h4 {
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: .3px;
}

.caracteristicas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.caracteristicas-grid span {
    font-size: .9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.caracteristicas-grid span i {
    color: var(--color-primary);
}

.imovel-diferenciais ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.imovel-diferenciais ul li {
    padding: 4px 0;
    font-size: .9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.imovel-diferenciais ul li i {
    font-size: 1rem;
}

.imovel-acoes {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--color-line);
}

/* Responsividade */
@media (max-width: 767px) {
    .imovel-gallery-main {
        height: 250px;
    }

    .imovel-gallery-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }

    .imovel-gallery-thumbs img {
        height: 60px;
    }

    .imovel-info-card {
        padding: 20px;
    }

    .imovel-info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .caracteristicas-grid {
        grid-template-columns: 1fr 1fr;
    }
}
/* ==========================================================
   ADMIN
========================================================== */

.admin-body{

    background:#f5f8fb;

    min-height:100vh;

}

.admin-page{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:32px;

}

.admin-card{

    width:100%;

    max-width:430px;

    background:#fff;

    border-radius:20px;

    border:1px solid var(--color-line);

    box-shadow:
        0 20px 60px rgba(23,32,51,.08);

    padding:40px;

}

.admin-title{

    font-size:2rem;

    font-weight:700;

    color:var(--color-ink);

}

.admin-subtitle{

    color:var(--color-muted);

    margin-bottom:32px;

}

.admin-card .form-label{

    font-weight:600;

}

.admin-card .form-control{

    height:52px;

    border-radius:12px;

    border:1px solid var(--color-line);

}

.admin-card .form-control:focus{

    border-color:var(--color-primary);

    box-shadow:0 0 0 .2rem rgba(0,102,177,.12);

}

.admin-btn{

    height:52px;

    border-radius:12px;

    background:var(--color-primary);

    color:#fff;

    font-weight:600;

    border:none;

    transition:.25s;

}

.admin-btn:hover{

    background:#00589a;

    color:#fff;

    transform:translateY(-2px);

}
.admin-header{

    margin-bottom:30px;

}

.admin-section{

    margin:30px 0;

}

.admin-section h5{

    font-weight:600;

    color:var(--color-ink);

    margin-bottom:12px;

}

.admin-section p{

    color:var(--color-muted);

}