/**
 * IdeaDunes Public Pages Stylesheet
 * Styles for shared header, footer, preloader, and public page layouts
 * Uses the IdeaDunes brand: #6C587B purple, #F05F40 orange accent, #0D0D0D dark
 */

/* ========================================================================
   Custom Font
   ======================================================================== */
@font-face {
    font-family: 'TondoBold';
    src: url('/theme/backend/theme1/assets/fonts/tondo-bold-webfont.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* ========================================================================
   Preloader
   ======================================================================== */
.page-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.3s ease;
}
.page-preloader.preloader-hidden {
    opacity: 0 !important;
    pointer-events: none !important;
    display: none !important;
}

.u-hidden {
    display: none;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    font-family: 'TondoBold', 'Open Sans', sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: #6C587B;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.spinner-bounce {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.spinner-bounce div {
    width: 12px;
    height: 12px;
    background-color: #6C587B;
    border-radius: 100%;
    display: inline-block;
    animation: bounce-delay 1.4s infinite ease-in-out both;
}

.spinner-bounce .bounce1 { animation-delay: -0.32s; }
.spinner-bounce .bounce2 { animation-delay: -0.16s; }

@keyframes bounce-delay {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1.0); }
}

/* ========================================================================
   Navigation Overrides (public pages)
   ======================================================================== */
.navbar-brand.logo_name {
    font-family: 'TondoBold', 'Open Sans', sans-serif;
    font-weight: bold;
    font-size: 22px;
    letter-spacing: 0.5px;
}

.brand-logo {
    vertical-align: middle;
    height: 30px;
    margin-top: -5px;
    margin-right: 8px;
    display: inline-block;
    border-radius: 4px;
}

.navbar-right .signin_btn {
    color: #fff !important;
    background-color: #F05F40;
    border-color: #F05F40;
    border-radius: 4px;
    padding: 8px 20px;
    margin-top: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.navbar-right .signin_btn:hover {
    background-color: #d94e33;
    border-color: #d94e33;
    color: #fff !important;
}

.navbar-nav > li.active > a {
    color: #F05F40 !important;
    font-weight: 600;
}

/* ========================================================================
   Footer
   ======================================================================== */
.site-footer {
    margin-top: 0;
}

.footer-main {
    background: linear-gradient(to right, #6C587B, #6C587B);
    padding: 40px 0 30px;
    color: #fff;
}

.footer-info-block {
    margin-bottom: 10px;
}

.footer-info-block + .footer-info-block {
    margin-top: 15px;
}

.footer-links-row {
    margin-top: 25px;
}

.footer-heading {
    color: #ffffff;
    font-family: 'TondoBold', Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-text {
    color: #e6e6e6;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.7;
    font-size: 13px;
    margin-bottom: 0;
}

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

.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    color: #e6e6e6;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Footer Bottom Bar */
.footer-bottom {
    background-color: #0D0D0D;
    padding: 12px 0;
    color: #fff;
}

.footer-bottom .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.footer-brand {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
}

.footer-brand a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'TondoBold', 'Open Sans', sans-serif;
}

.footer-brand a:hover {
    color: #e6e6e6;
    text-decoration: none;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 2px;
}

.footer-social a {
    color: #fff;
    font-size: 18px;
    transition: color 0.2s ease;
}

.footer-social a:hover {
    color: #F05F40;
}

.footer-copyright {
    color: #fff;
    font-size: 13px;
}

.footer-copyright a {
    color: #fff;
    text-decoration: none;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

.footer-legal-link {
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    margin-left: 12px;
}

.footer-legal-link:hover {
    color: #e6e6e6;
    text-decoration: underline;
}

/* ========================================================================
   Standalone Page Layout (auth pages, terms, privacy, etc.)
   ======================================================================== */
.page-content-wrapper {
    padding-top: 90px;
    min-height: calc(100vh - 300px);
}

.standalone-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 450px;
    margin: 40px auto;
}

.standalone-card-wide {
    max-width: 800px;
}

.standalone-card .card-header-area {
    text-align: center;
    margin-bottom: 25px;
}

.standalone-card .card-header-area .card-logo {
    font-family: 'TondoBold', 'Open Sans', sans-serif;
    font-size: 28px;
    color: #6C587B;
    font-weight: bold;
    margin-bottom: 8px;
}

.standalone-card .card-header-area h1 {
    font-size: 22px;
    color: #333;
    margin-bottom: 6px;
}

.standalone-card .card-header-area .subtitle {
    color: #666;
    font-size: 14px;
}

/* ========================================================================
   Info Page Layout (terms, privacy, about)
   ======================================================================== */
.info-page-content {
    padding-top: 90px;
    padding-bottom: 40px;
    min-height: calc(100vh - 300px);
}

.info-page-content .page-hero,
.info-page-content .info-page-hero {
    background: linear-gradient(135deg, #6C587B 0%, #5a4868 100%);
    color: #fff;
    padding: 50px 0;
    text-align: center;
    margin-bottom: 40px;
}

.info-page-content .page-hero h1,
.info-page-content .info-page-hero h1 {
    font-family: 'TondoBold', 'Open Sans', sans-serif;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.info-page-content .page-hero p,
.info-page-content .info-page-hero p {
    font-size: 16px;
    opacity: 0.9;
}

.info-page-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
    line-height: 1.8;
    color: #333;
}

.info-page-body h2 {
    color: #6C587B;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 22px;
}

.info-page-body h3 {
    color: #5a4868;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 18px;
}

.info-page-body p {
    margin-bottom: 15px;
}

.info-page-body ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.info-page-body li {
    margin-bottom: 5px;
}

/* About page feature cards */
.about-features-row {
    margin: 30px 0;
}

.about-feature {
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
}

.about-feature .feature-icon {
    font-size: 2rem;
    color: #6c587b;
    margin-bottom: 12px;
    display: block;
}

.about-feature h4 {
    font-weight: 700;
    margin-bottom: 8px;
}

.about-feature p {
    font-size: .9rem;
    color: #666;
}

/* Branded inline links */
.link-brand {
    color: #6c587b;
    font-weight: 600;
}

.link-brand:hover {
    color: #5a4868;
}

.public-story-section {
    margin: 50px 0;
}

.public-story-section--muted {
    background: linear-gradient(180deg, #fbf8ff 0%, #ffffff 100%);
    border: 1px solid rgba(108, 88, 123, 0.1);
    border-radius: 24px;
    padding: 34px 28px;
}

.public-story-section__header {
    max-width: 820px;
    margin: 0 auto 28px;
}

.public-story-section__eyebrow {
    color: #6c587b;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .75rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.public-story-section__lead {
    color: #655f6c;
    line-height: 1.8;
    font-size: .98rem;
}

.public-capability-grid {
    margin-top: 8px;
}

.public-capability-card,
.public-roadmap-step {
    background: #fff;
    border: 1px solid rgba(108, 88, 123, 0.12);
    border-radius: 20px;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
    padding: 28px;
    height: 100%;
}

.public-capability-card i {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f6f0fb;
    color: #6c587b;
    font-size: 1.35rem;
    margin-bottom: 16px;
}

.public-capability-card h3,
.public-roadmap-step h3 {
    color: #241c2b;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 12px;
}

.public-capability-card p,
.public-roadmap-step p {
    color: #655f6c;
    line-height: 1.75;
    margin: 0;
}

.public-roadmap-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.public-roadmap-step span {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #f6f0fb;
    color: #6c587b;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* ========================================================================
   Pricing Page Enhancements
   ======================================================================== */
.pricing-hero {
    background: linear-gradient(135deg, #6C587B 0%, #5a4868 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.pricing-hero h1 {
    font-family: 'TondoBold', 'Open Sans', sans-serif;
    font-size: 36px;
    font-weight: bold;
}

.pricing-page-shell {
    background: linear-gradient(180deg, #f7f4fb 0%, #ffffff 24%);
    padding: 0 0 30px;
}

.pricing-intro-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin: -28px 0 30px;
}

.pricing-intro-card {
    background: #ffffff;
    border: 1px solid rgba(108, 88, 123, 0.12);
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(56, 45, 67, 0.08);
    padding: 24px;
}

.pricing-intro-card strong,
.pricing-intro-card span {
    display: block;
}

.pricing-intro-card strong {
    color: #241c2b;
    font-size: 1rem;
    margin-bottom: 8px;
}

.pricing-intro-card span {
    color: #625c68;
    line-height: 1.6;
    font-size: .92rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin: 10px 0 50px;
}

.pricing-card {
    border: 1px solid rgba(108, 88, 123, 0.12);
    border-radius: 24px;
    padding: 28px 22px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    margin-bottom: 0;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
}

.pricing-card.featured {
    border-color: #6C587B;
    box-shadow: 0 22px 48px rgba(108, 88, 123, 0.18);
    background: linear-gradient(180deg, #ffffff 0%, #fbf8ff 100%);
}

.pricing-card.featured::before {
    content: none;
}

.badge-popular {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #F05F40;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-name {
    color: #1f1630;
    font-family: 'TondoBold', 'Open Sans', sans-serif;
    font-size: 1.55rem;
    margin-bottom: 10px;
}

.plan-desc {
    color: #615b67;
    line-height: 1.7;
    min-height: 52px;
    margin-bottom: 12px;
}

.plan-audience,
.plan-price-summary {
    color: #6c587b;
    font-size: .88rem;
    font-weight: 600;
}

.plan-audience {
    margin-bottom: 18px;
}

.plan-price {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 6px;
}

.plan-price .amount {
    font-size: 2.4rem;
    line-height: 1;
    font-weight: 800;
    color: #241c2b;
}

.plan-price .period {
    color: #7a7283;
    font-size: .92rem;
    margin-bottom: 5px;
}

.plan-price-summary {
    margin-bottom: 20px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    gap: 10px;
    flex: 1;
}

.plan-features li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #4e4857;
    line-height: 1.6;
}

.plan-features i {
    color: #0f9f63;
    margin-top: 4px;
}

.plan-meta-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid rgba(108, 88, 123, 0.12);
    padding-top: 16px;
    margin-top: auto;
    color: #70697b;
    font-size: .86rem;
}

.btn-plan {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 52px;
    border-radius: 14px;
    font-weight: 700;
    margin-top: 20px;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.btn-plan:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.btn-plan-primary {
    background: #6c587b;
    color: #fff;
    box-shadow: 0 12px 24px rgba(108, 88, 123, 0.22);
}

.btn-plan-primary:hover,
.btn-plan-primary:focus {
    background: #5a4868;
    color: #fff;
}

.btn-plan-outline {
    background: #fff;
    color: #6c587b;
    border: 1px solid rgba(108, 88, 123, 0.25);
}

.btn-plan-outline:hover,
.btn-plan-outline:focus {
    background: #f7f3fb;
    color: #5a4868;
}

.btn-plan-dark {
    background: #1f1630;
    color: #fff;
}

.btn-plan-dark:hover,
.btn-plan-dark:focus {
    background: #120d1b;
    color: #fff;
}

.pricing-section-heading {
    max-width: 780px;
    margin: 0 auto 28px;
}

.pricing-section-heading h2 {
    color: #241c2b;
    font-family: 'TondoBold', 'Open Sans', sans-serif;
    font-size: 2rem;
    margin: 0 0 12px;
}

.pricing-section-heading p {
    color: #655f6c;
    line-height: 1.7;
}

.pricing-section-eyebrow {
    color: #6c587b;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .75rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-compare-section,
.pricing-coverage-section,
.pricing-stack-section,
.pricing-integration-path-section,
.pricing-roadmap-section,
.pricing-enterprise-cta {
    margin: 60px 0 0;
}

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

.pricing-coverage-card {
    background: #fff;
    border: 1px solid rgba(108, 88, 123, 0.12);
    border-radius: 20px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
    padding: 24px;
}

.pricing-coverage-card h3 {
    margin: 0 0 10px;
    color: #241c2b;
    font-size: 1.08rem;
}

.pricing-coverage-card p {
    margin: 0 0 16px;
    color: #655f6c;
    line-height: 1.65;
}

.pricing-coverage-tiers {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.pricing-coverage-tier {
    display: block;
    background: #faf6fd;
    border: 1px solid rgba(108, 88, 123, 0.12);
    border-radius: 12px;
    padding: 10px;
    color: #5d5568;
    font-size: .84rem;
}

.pricing-coverage-tier strong {
    display: block;
    color: #241c2b;
    margin-bottom: 4px;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.pricing-integration-path-table-wrap {
    background: #fff;
    border: 1px solid rgba(108, 88, 123, 0.12);
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
    overflow-x: auto;
}

.pricing-integration-path-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.pricing-integration-path-table th,
.pricing-integration-path-table td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(108, 88, 123, 0.08);
    text-align: left;
    vertical-align: top;
}

.pricing-integration-path-table th {
    background: #f8f5fb;
    color: #241c2b;
    font-weight: 700;
}

.pricing-integration-phase {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #f6f0fb;
    color: #6c587b;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.pricing-integration-path-table td strong {
    display: block;
    color: #241c2b;
}

.pricing-compare-table-wrap {
    background: #fff;
    border: 1px solid rgba(108, 88, 123, 0.12);
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
    overflow-x: auto;
}

.pricing-compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.pricing-compare-table th,
.pricing-compare-table td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(108, 88, 123, 0.08);
    text-align: left;
}

.pricing-compare-table th {
    background: #f8f5fb;
    color: #241c2b;
    font-weight: 700;
}

.pricing-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.pricing-check--yes {
    color: #0d8d58;
}

.pricing-check--no {
    color: #8b8593;
}

.pricing-stack-card,
.pricing-roadmap-step {
    background: #fff;
    border: 1px solid rgba(108, 88, 123, 0.12);
    border-radius: 20px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
    padding: 28px;
    height: 100%;
}

.pricing-stack-card i {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f6f0fb;
    color: #6c587b;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.pricing-stack-card h3,
.pricing-roadmap-step h3 {
    color: #241c2b;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.pricing-stack-card p,
.pricing-roadmap-step p {
    color: #655f6c;
    line-height: 1.7;
    margin-bottom: 0;
}

.pricing-roadmap-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.pricing-roadmap-step span {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #f6f0fb;
    color: #6c587b;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.pricing-enterprise-cta__inner {
    background: linear-gradient(135deg, #241c2b 0%, #6c587b 100%);
    border-radius: 28px;
    color: #fff;
    padding: 36px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

.pricing-enterprise-cta__inner h2 {
    color: #fff;
    margin: 0 0 12px;
    font-family: 'TondoBold', 'Open Sans', sans-serif;
}

.pricing-enterprise-cta__inner p:last-child {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.85);
}

.pricing-enterprise-cta__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.pricing-enterprise-cta__actions .btn-default {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.pricing-enterprise-cta__actions .btn-default:hover,
.pricing-enterprise-cta__actions .btn-default:focus {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

/* Add-ons grid */
.pricing-addons-section { padding: 48px 0; }
.pricing-addons-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
}
.pricing-addon-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(108, 88, 123, 0.12);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pricing-addon-card h3 {
    font-size: 1rem;
    color: #241c2b;
    margin: 0;
}
.pricing-addon-card p {
    font-size: 0.88rem;
    color: #655f6c;
    margin: 0;
    flex: 1;
}
.pricing-addon-price {
    font-weight: 600;
    color: var(--public-accent, #6C587B);
    font-size: 0.92rem;
}
@media (max-width: 767px) {
    .pricing-addons-grid {
        grid-template-columns: 1fr;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .pricing-addons-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ========================================================================
   Contact Page
   ======================================================================== */
.contact-hero {
    background: linear-gradient(135deg, #6C587B 0%, #5a4868 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.contact-hero h1 {
    font-family: 'TondoBold', 'Open Sans', sans-serif;
    font-size: 36px;
    font-weight: bold;
}

.contact-container {
    max-width: 1000px;
    margin: 40px auto 60px;
}

.contact-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
    margin-bottom: 24px;
}

.contact-card .contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.3rem;
}

.contact-icon-email { background: linear-gradient(135deg, #6c587b, #5a4868); }
.contact-icon-support { background: linear-gradient(135deg, #22c55e, #16a34a); }
.contact-icon-sales { background: linear-gradient(135deg, #f59e0b, #d97706); }

.contact-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-card p {
    color: #777;
    font-size: .9rem;
    margin-bottom: 8px;
}

.contact-card a {
    color: #6c587b;
    font-weight: 600;
}

.contact-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
}

.contact-form-card h2 {
    text-align: center;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-form-card .subtitle {
    text-align: center;
    color: #777;
    font-size: .9rem;
    margin-bottom: 30px;
}

.contact-methods {
    padding: 50px 0;
}

.contact-method-card {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 30px;
    transition: box-shadow 0.3s ease;
}

.contact-method-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-method-card i {
    font-size: 36px;
    color: #6C587B;
    margin-bottom: 15px;
}

.contact-method-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.contact-method-card p {
    color: #666;
    font-size: 14px;
}

.contact-method-card a {
    color: #6C587B;
    font-weight: 600;
}

.contact-form-section {
    background: #f8f8f8;
    padding: 50px 0;
}

/* ========================================================================
   Auth Forms (login, signup, forgot-password)
   ======================================================================== */
.auth-remember-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.auth-remember-row .checkbox-inline {
    display: inline;
    font-size: 13px;
    color: #666;
    cursor: pointer;
}

.auth-remember-row .checkbox-inline input {
    margin-right: 6px;
}

.auth-forgot-link {
    font-size: 13px;
    color: #6c587b;
}

.auth-forgot-link:hover {
    color: #5a4868;
}

.auth-or-divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
    gap: 10px;
}

.auth-or-divider .line {
    flex: 1;
    height: 1px;
    background: #eee;
}

.auth-or-divider span {
    color: #999;
    font-size: 13px;
}

.auth-social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.btn-oauth-google {
    border: 1px solid #4285f4;
    color: #4285f4;
}

.btn-oauth-google:hover {
    background: #4285f4;
    color: #fff;
}

.btn-oauth-github {
    border: 1px solid #333;
    color: #333;
}

.btn-oauth-github:hover {
    background: #333;
    color: #fff;
}

.btn-magic-link {
    border: 1px dashed #6c587b;
    color: #6c587b;
}

.btn-magic-link:hover {
    background: #f8f5fa;
}

.auth-bottom-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.auth-bottom-link + .auth-bottom-link {
    margin-top: 10px;
}

.auth-info-box {
    background: #f9f9f9;
    border-left: 4px solid #6c587b;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* ========================================================================
   Shared Brand Button
   ======================================================================== */
.btn-brand {
    background: #6c587b;
    border-color: #6c587b;
    font-weight: 600;
    color: #fff;
}

.btn-brand:hover,
.btn-brand:focus {
    background: #5a4868;
    border-color: #5a4868;
    color: #fff;
}

/* ========================================================================
   Skip Link & Accessibility
   ======================================================================== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px 12px;
    text-decoration: none;
    z-index: 100000;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

/* ========================================================================
   Responsive
   ======================================================================== */
@media (max-width: 767px) {
    .public-story-section--muted {
        padding: 24px 18px;
    }

    .public-roadmap-grid {
        grid-template-columns: 1fr;
    }

    .pricing-intro-grid,
    .pricing-cards,
    .pricing-roadmap-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 26px 20px;
    }

    .plan-meta-row,
    .pricing-enterprise-cta__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .pricing-enterprise-cta__inner {
        padding: 28px 22px;
    }

    .pricing-enterprise-cta__actions {
        width: 100%;
    }

    .pricing-enterprise-cta__actions .btn {
        width: 100%;
    }

    .footer-bottom .row {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom .col-sm-3 {
        margin-bottom: 10px;
        text-align: center !important;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-legal-link {
        margin-left: 6px;
        margin-right: 6px;
    }

    .standalone-card {
        margin: 20px 15px;
        padding: 25px 20px;
    }

    .info-page-content .page-hero h1,
    .info-page-content .info-page-hero h1 {
        font-size: 28px;
    }

    .pricing-hero h1,
    .contact-hero h1 {
        font-size: 28px;
    }

    .page-content-wrapper {
        padding-top: 70px;
    }

    .info-page-content {
        padding-top: 70px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .public-roadmap-grid {
        grid-template-columns: 1fr;
    }

    .pricing-intro-grid,
    .pricing-roadmap-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .pricing-roadmap-grid {
        grid-template-columns: 1fr;
    }

    .pricing-enterprise-cta__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-right .signin_btn {
        margin-top: 0;
        margin-bottom: 10px;
        display: inline-block;
    }
}

/* ========================================================================
   Auth page background
   ======================================================================== */
.auth-page-bg {
    background: linear-gradient(135deg, #6C587B 0%, #5a4868 100%);
    min-height: 100vh;
}

.auth-page-bg .page-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 200px);
}

.auth-page-bg .standalone-card {
    margin: 20px auto;
}

.auth-page-bg .site-footer {
    position: relative;
}

/* Override footer on auth pages to be more subtle */
.auth-page-bg .footer-main {
    padding: 25px 0 15px;
}

.auth-page-bg .footer-info-block {
    display: none;
}

/* ========================================================================
   Pricing Page — Toggle & FAQ
   ======================================================================== */
.pricing-toggle {
    text-align: center;
    margin: 40px 0 20px;
}
.toggle-label {
    font-size: 1rem;
    color: #555;
    cursor: pointer;
    padding: 0 12px;
}
.toggle-label.active {
    color: #6c587b;
    font-weight: 700;
}
.toggle-switch {
    display: inline-block;
    width: 50px;
    height: 26px;
    background: #ccc;
    border-radius: 13px;
    position: relative;
    cursor: pointer;
    vertical-align: middle;
    transition: background .3s;
}
.toggle-switch.active {
    background: #6c587b;
}
.toggle-switch::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform .3s;
}
.toggle-switch.active::after {
    transform: translateX(24px);
}
.save-badge {
    display: inline-block;
    background: #6c587b;
    color: #fff;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: .75rem;
    font-weight: 700;
    margin-left: 6px;
    vertical-align: middle;
}
.faq-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}
.faq-section h2 {
    text-align: center;
    margin-bottom: 32px;
    font-weight: 700;
}
.faq-item {
    margin-bottom: 16px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.faq-item summary {
    padding: 16px 20px;
    font-weight: 600;
    cursor: pointer;
    font-size: .95rem;
    list-style: none;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: "+";
    float: right;
    font-size: 1.2rem;
    color: #6c587b;
}
.faq-item[open] summary::after {
    content: "\2212";
}
.faq-item p {
    padding: 0 20px 16px;
    color: #666;
    font-size: .9rem;
    line-height: 1.6;
}
.pricing-help-cta {
    text-align: center;
    padding: 40px 20px 20px;
    color: #888;
}

/* ========================================================================
   Demo Page
   ======================================================================== */
.demo-container {
    max-width: 900px;
    margin: -30px auto 40px;
    padding: 0 20px;
}
.demo-roles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}
.demo-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
    transition: transform .2s, box-shadow .2s;
}
.demo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,.14);
}
.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: #fff;
}
.icon-admin {
    background: linear-gradient(135deg, #6c587b, #5a4868);
}
.icon-user {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}
.icon-manager {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}
.demo-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}
.demo-card p {
    font-size: .88rem;
    color: #777;
    margin-bottom: 20px;
    line-height: 1.5;
}
.demo-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    text-align: left;
}
.demo-features li {
    padding: 4px 0;
    font-size: .83rem;
    color: #555;
}
.demo-features li i {
    color: #16a34a;
    margin-right: 6px;
    width: 14px;
    text-align: center;
}
.btn-demo {
    display: inline-block;
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(135deg, #6c587b, #5a4868);
    transition: opacity .2s;
    text-decoration: none;
}
.btn-demo:hover {
    opacity: .9;
    color: #fff;
}
.btn-demo:disabled {
    opacity: .6;
    cursor: not-allowed;
}
.demo-notice {
    text-align: center;
    max-width: 600px;
    margin: 32px auto;
    padding: 16px 24px;
    background: #fff;
    border-radius: 12px;
    border-left: 4px solid #6c587b;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.demo-notice p {
    font-size: .88rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
}
.demo-error {
    display: none;
    text-align: center;
    padding: 12px;
    color: #dc2626;
    font-size: .9rem;
    margin-top: 12px;
}
.demo-bottom-cta {
    text-align: center;
    padding: 20px;
    font-size: .9rem;
    color: #666;
}
@media (max-width: 768px) {
    .demo-roles {
        grid-template-columns: 1fr;
    }
}

/* ========================================================================
   Signup Page — Password Validation
   ======================================================================== */
.password-requirements {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    font-size: 12px;
}
.password-requirements li {
    padding: 2px 0;
    color: #999;
}
.password-requirements li.met {
    color: #28a745;
}
.password-requirements li::before {
    content: "\2717 ";
}
.password-requirements li.met::before {
    content: "\2713 ";
}
.strength-bar {
    height: 4px;
    border-radius: 2px;
    background: #eee;
    margin-top: 6px;
}
.strength-bar .fill {
    height: 100%;
    border-radius: 2px;
    transition: width 0.3s, background 0.3s;
}
.match-indicator {
    font-size: 12px;
    margin-top: 4px;
}

.match-indicator.is-success {
    color: #2a8f52;
    font-weight: 600;
}

.match-indicator.is-error {
    color: #c0392b;
    font-weight: 600;
}

.auth-email-hint--error {
    color: #c0392b;
    font-weight: 600;
}

/* ========================================================================
   Signup Page — Multi-Step Wizard
   ======================================================================== */
.signup-wizard-card {
    max-width: 540px;
}
.signup-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 30px;
    padding: 0;
}
.signup-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.signup-step .step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e9ecef;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    transition: background 0.3s, color 0.3s;
}
.signup-step.active .step-number {
    background: #6C587B;
    color: #fff;
}
.signup-step.completed .step-number {
    background: #28a745;
    color: #fff;
}
.signup-step.completed .step-number::after {
    content: "\2713";
    position: absolute;
}
.signup-step .step-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}
.signup-step.active .step-label,
.signup-step.completed .step-label {
    color: #333;
}
.step-connector {
    flex: 1;
    height: 2px;
    background: #e9ecef;
    margin: 0 12px;
    margin-bottom: 20px;
    transition: background 0.3s;
}
.step-connector.active {
    background: #28a745;
}

.signup-step-panel {
    display: none;
}
.signup-step-panel.active {
    display: block;
    animation: stepFadeIn 0.3s ease;
}
@keyframes stepFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.signup-step-buttons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}
.signup-step-buttons .btn:first-child {
    flex: 0 0 auto;
}
.signup-step-buttons .btn:last-child {
    flex: 1;
}
.signup-no-cc {
    text-align: center;
    color: #999;
    font-size: 12px;
    margin-top: 12px;
}

/* ========================================================================
   Contact Page — Form Row
   ======================================================================== */
.contact-form-row {
    margin-top: 40px;
}

/* ========================================================================
   Auth — Magic Link Form
   ======================================================================== */
.magic-link-form {
    display: none;
    margin-top: 20px;
}

.magic-link-form.is-visible {
    display: block;
}

.btn-cancel-magic {
    margin-top: 8px;
}

/* ========================================================================
   Reduced Motion
   ======================================================================== */
@media (prefers-reduced-motion: reduce) {
    .page-preloader {
        transition: none !important;
    }
    .spinner-bounce div {
        animation: none !important;
    }
    .pricing-card:hover,
    .demo-card:hover {
        transform: none;
    }
}

/* ========================================================================
   Public Experience Refresh
   ======================================================================== */

:root {
    --public-ink: #14213d;
    --public-text: #32415d;
    --public-muted: #6b7280;
    --public-border: rgba(20, 33, 61, 0.1);
    --public-surface: rgba(255, 255, 255, 0.92);
    --public-surface-strong: #ffffff;
    --public-brand: #6c587b;
    --public-brand-deep: #4b395d;
    --public-accent: #e98a5f;
    --public-highlight: #f6efe9;
    --public-shadow: 0 18px 50px rgba(20, 33, 61, 0.12);
    --public-shadow-soft: 0 10px 30px rgba(20, 33, 61, 0.08);
    --public-radius: 22px;
}

html {
    background:
        radial-gradient(circle at top left, rgba(233, 138, 95, 0.2), transparent 34%),
        linear-gradient(180deg, #fffaf6 0%, #f6f7fb 48%, #eef2f8 100%);
}

/* Loading / spinner states (used on forms) */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--public-brand, #6c587b);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.btn-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn-loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

body {
    font-family: 'Manrope', 'Open Sans', Arial, sans-serif;
    color: var(--public-text);
    background: transparent;
    padding-top: 42px;
}

h1,
h2,
h3,
h4,
.footer-brand-title,
.pricing-hero h1,
.contact-hero h1,
.info-page-content .page-hero h1,
.info-page-content .info-page-hero h1 {
    font-family: 'Fraunces', 'Merriweather', serif;
    letter-spacing: -0.02em;
}

a {
    transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.page-preloader {
    background:
        radial-gradient(circle at top, rgba(233, 138, 95, 0.18), transparent 40%),
        linear-gradient(135deg, #fff7f2 0%, #eef2f8 100%);
}

.preloader-logo {
    color: var(--public-brand-deep);
}

.spinner-bounce div {
    background-color: var(--public-accent);
}

.public-utility-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1045;
    background: rgba(20, 33, 61, 0.96);
    color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 6px 20px rgba(20, 33, 61, 0.12);
}

.public-utility-bar__inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 12px;
    line-height: 1.5;
}

.public-utility-bar__message,
.public-utility-bar__actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.public-utility-bar a,
.public-utility-bar span {
    color: inherit;
}

.public-pref-switchers {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}

.public-pref-select {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 999px;
    height: 30px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
}

.public-pref-select option {
    color: #1e2a46;
}

.public-pref-apply {
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.public-pref-apply:hover,
.public-pref-apply:focus {
    background: rgba(255, 255, 255, 0.24);
}

.public-utility-bar a:hover,
.public-utility-bar a:focus {
    color: #ffffff;
    text-decoration: none;
}

.public-navbar.navbar-default {
    top: 42px;
    min-height: 76px;
    background: rgba(255, 255, 255, 0.92);
    border: 0;
    box-shadow: 0 14px 40px rgba(20, 33, 61, 0.1);
    backdrop-filter: blur(14px);
}

.public-navbar .container {
    position: relative;
}

.public-navbar .navbar-brand {
    height: 76px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--public-ink) !important;
}

.navbar-brand.logo_name {
    font-size: 24px;
    letter-spacing: -0.02em;
}

.brand-wordmark {
    display: inline-block;
    line-height: 1;
}

.brand-logo {
    height: 38px;
    margin-top: 0;
    margin-right: 0;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(108, 88, 123, 0.2);
}

.public-nav-links > li > a {
    color: var(--public-ink) !important;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
    padding-top: 28px;
    padding-bottom: 28px;
}

.public-nav-links > li > a:hover,
.public-nav-links > li > a:focus,
.navbar-nav > li.active > a {
    color: var(--public-brand) !important;
    background: transparent !important;
}

.public-nav-links > li.active > a {
    position: relative;
}

.public-nav-links > li.active > a::after {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 18px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--public-brand), var(--public-accent));
}

.public-nav-action {
    margin-left: 8px;
}

.public-nav-action > a {
    margin: 18px 0 0;
    padding: 12px 20px !important;
    border-radius: 999px;
    font-weight: 800 !important;
    line-height: 1 !important;
}

.public-nav-search {
    margin-top: 20px;
    margin-bottom: 0;
    margin-right: 0;
}

.public-nav-search .form-group {
    margin-bottom: 0;
}

.public-nav-search .form-control {
    border-radius: 999px 0 0 999px;
    border: 1px solid rgba(108, 88, 123, 0.18);
    background: #f8f6fa;
    font-size: 13px;
    width: 160px;
    transition: width 0.3s ease, border-color 0.2s ease;
}

.public-nav-search .form-control:focus {
    width: 220px;
    border-color: var(--public-brand);
    box-shadow: 0 0 0 3px rgba(108, 88, 123, 0.08);
    background: #fff;
}

.public-nav-search .input-group-btn .btn {
    border-radius: 0 999px 999px 0;
    border: 1px solid rgba(108, 88, 123, 0.18);
    border-left: 0;
    background: #f8f6fa;
    color: #6c587b;
}

.public-nav-search .input-group-btn .btn:hover {
    background: var(--public-brand);
    color: #fff;
}

/* Nav dropdown styling */
.public-nav-links > .dropdown > .dropdown-toggle .caret {
    margin-left: 3px;
    opacity: 0.6;
}
.public-nav-links > .dropdown > .dropdown-menu {
    border: 1px solid rgba(20, 33, 61, 0.08);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(75, 57, 93, 0.15);
    padding: 6px 0;
    min-width: 200px;
    margin-top: -2px;
}
.public-nav-links > .dropdown > .dropdown-menu > li > a {
    padding: 9px 18px;
    color: var(--public-ink);
    font-size: 14px;
    transition: background 0.15s, color 0.15s;
}
.public-nav-links > .dropdown > .dropdown-menu > li > a:hover,
.public-nav-links > .dropdown > .dropdown-menu > li > a:focus {
    background: #f4f1f7;
    color: var(--public-brand);
}

.public-nav-action--secondary > a {
    border: 1px solid rgba(108, 88, 123, 0.2);
    background: rgba(255, 255, 255, 0.9);
}

.public-nav-action--secondary > a i {
    margin-right: 6px;
}

.public-nav-action--primary > a,
.navbar-right .signin_btn,
.btn-brand {
    background: linear-gradient(135deg, var(--public-brand), var(--public-brand-deep));
    border-color: transparent;
    color: #fff !important;
    box-shadow: 0 14px 28px rgba(75, 57, 93, 0.2);
}

.public-nav-action--primary > a:hover,
.public-nav-action--primary > a:focus,
.navbar-right .signin_btn:hover,
.navbar-right .signin_btn:focus,
.btn-brand:hover,
.btn-brand:focus {
    background: linear-gradient(135deg, var(--public-brand-deep), #3c2c4c);
    color: #fff !important;
    transform: translateY(-1px);
}

.public-account-menu .dropdown-menu {
    border: 1px solid rgba(20, 33, 61, 0.08);
    border-radius: 16px;
    box-shadow: var(--public-shadow-soft);
    overflow: hidden;
}

.public-account-menu .dropdown-menu > li > a {
    padding: 10px 16px;
    color: var(--public-ink);
}

.page-content-wrapper {
    padding-top: 150px;
    min-height: calc(100vh - 280px);
}

.info-page-content {
    padding-top: 136px;
    padding-bottom: 56px;
}

.standalone-card,
.contact-card,
.contact-form-card,
.demo-card,
.pricing-card,
.faq-item,
.demo-notice,
.contact-method-card {
    border: 1px solid var(--public-border);
    border-radius: var(--public-radius);
    box-shadow: var(--public-shadow-soft);
}

.standalone-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 42px;
}

.standalone-card .card-header-area .card-logo {
    color: var(--public-brand-deep);
}

.standalone-card .card-header-area h1 {
    color: var(--public-ink);
}

.standalone-card .subtitle,
.auth-bottom-link,
.auth-info-box,
.contact-card p,
.demo-card p,
.pricing-help-cta,
.demo-bottom-cta {
    color: var(--public-muted);
}

.auth-page-bg {
    background:
        radial-gradient(circle at top left, rgba(233, 138, 95, 0.2), transparent 30%),
        linear-gradient(135deg, #4b395d 0%, #1f3152 100%);
}

.auth-page-bg .standalone-card {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
}

.auth-info-box {
    background: var(--public-highlight);
    border-left-color: var(--public-accent);
    border-radius: 14px;
}

.auth-status-card,
.auth-reset-card {
    max-width: 520px;
}

.auth-status-panel {
    border: 1px solid var(--public-border);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 18px;
}

.auth-status-panel--loading {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.75);
}

.auth-status-title {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: var(--public-ink);
}

.auth-status-copy {
    margin: 6px 0 0;
    font-size: 14px;
    color: var(--public-muted);
}

.auth-inline-loader {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(108, 88, 123, 0.2);
    border-top-color: var(--public-brand);
    border-radius: 50%;
    animation: auth-spin 0.9s linear infinite;
    flex-shrink: 0;
}

.auth-password-wrapper {
    position: relative;
}

.auth-password-wrapper .form-control {
    padding-right: 44px;
}

.auth-password-toggle {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: var(--public-muted);
    line-height: 1;
    padding: 4px;
}

.auth-password-toggle:hover,
.auth-password-toggle:focus {
    color: var(--public-brand-deep);
}

.auth-strength-meter {
    margin-top: 10px;
    width: 100%;
    height: 5px;
    border-radius: 999px;
    background: rgba(20, 33, 61, 0.12);
    overflow: hidden;
}

.auth-strength-meter__bar {
    width: 0;
    height: 100%;
    border-radius: inherit;
    transition: width 0.25s ease, background-color 0.25s ease;
}

.auth-strength-label {
    margin-top: 8px;
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--public-muted);
}

.auth-requirements {
    margin: 10px 0 0;
    padding-left: 18px;
    color: var(--public-muted);
    font-size: 12px;
    line-height: 1.8;
}

.auth-requirements li {
    transition: color 0.2s ease;
}

.auth-requirements li.met {
    color: #2a8f52;
    font-weight: 600;
}

.auth-match-copy {
    margin-top: 8px;
    margin-bottom: 0;
    font-size: 12px;
    color: var(--public-muted);
}

.auth-match-copy.is-match {
    color: #2a8f52;
    font-weight: 600;
}

.auth-match-copy.is-mismatch {
    color: #c0392b;
    font-weight: 600;
}

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

.info-page-content .page-hero,
.info-page-content .info-page-hero,
.pricing-hero,
.contact-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(233, 138, 95, 0.24), transparent 28%),
        linear-gradient(135deg, #182848 0%, #4b395d 55%, #6c587b 100%);
    padding: 84px 0 72px;
    margin-bottom: 46px;
}

.info-page-content .page-hero::before,
.info-page-content .info-page-hero::before,
.pricing-hero::before,
.contact-hero::before {
    content: "";
    position: absolute;
    inset: auto -10% -120px auto;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.info-page-content .page-hero h1,
.info-page-content .info-page-hero h1,
.pricing-hero h1,
.contact-hero h1 {
    font-size: 44px;
    margin-bottom: 16px;
}

.info-page-content .page-hero p,
.info-page-content .info-page-hero p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 17px;
    opacity: 0.92;
}

.info-page-body {
    max-width: 920px;
    padding: 40px 44px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--public-border);
    border-radius: 28px;
    box-shadow: var(--public-shadow);
    line-height: 1.85;
}

.info-page-body h2,
.info-page-body h3,
.contact-form-card h2,
.faq-section h2,
.demo-card h3,
.pricing-card .price {
    color: var(--public-ink);
}

.link-brand,
.auth-forgot-link,
.contact-card a,
.contact-method-card a {
    color: var(--public-brand-deep);
}

.link-brand:hover,
.auth-forgot-link:hover,
.contact-card a:hover,
.contact-method-card a:hover {
    color: var(--public-brand);
}

.pricing-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,254,0.98));
    padding: 34px 24px;
}

.pricing-card:hover,
.contact-method-card:hover,
.contact-card:hover,
.demo-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--public-shadow);
}

.pricing-card.featured {
    border-color: rgba(108, 88, 123, 0.3);
    background: linear-gradient(180deg, #fff7f2 0%, #ffffff 100%);
    box-shadow: 0 18px 46px rgba(108, 88, 123, 0.16);
}

.pricing-card.featured::before {
    background: linear-gradient(90deg, var(--public-accent), #d46f45);
    border-radius: 999px;
    padding: 6px 18px;
}

.pricing-card .price {
    font-size: 48px;
    color: var(--public-brand-deep);
}

.toggle-switch.active,
.save-badge {
    background: var(--public-brand-deep);
}

.faq-item summary {
    color: var(--public-ink);
}

.faq-item p {
    color: var(--public-text);
}

.contact-container {
    margin: 50px auto 70px;
}

.contact-card,
.demo-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,254,0.98));
}

.contact-form-card,
.demo-notice {
    background: rgba(255, 255, 255, 0.94);
}

.contact-card .contact-icon,
.icon-circle {
    box-shadow: 0 12px 24px rgba(20, 33, 61, 0.16);
}

.btn-demo {
    background: linear-gradient(135deg, var(--public-brand), var(--public-brand-deep));
    box-shadow: 0 12px 28px rgba(75, 57, 93, 0.18);
    border-radius: 14px;
}

.btn-demo:hover,
.btn-demo:focus {
    color: #fff;
    opacity: 1;
    transform: translateY(-1px);
}

.site-footer {
    margin-top: 64px;
    position: relative;
}

.footer-cta-band {
    padding: 0 0 28px;
}

.footer-cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background:
        radial-gradient(circle at top left, rgba(233, 138, 95, 0.2), transparent 32%),
        linear-gradient(135deg, #182848 0%, #4b395d 100%);
    color: #fff;
    border-radius: 30px 30px 0 0;
    padding: 34px 36px;
    box-shadow: var(--public-shadow);
}

.footer-eyebrow {
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.footer-cta-band h2 {
    margin: 0 0 12px;
    max-width: 680px;
    font-size: 34px;
    line-height: 1.15;
}

.footer-cta-copy {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.7;
}

.footer-cta-band__actions {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
}

.footer-cta-button {
    min-width: 150px;
    border-radius: 999px;
    padding: 14px 24px;
    font-weight: 800;
}

.footer-cta-button--ghost {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-cta-button--ghost:hover,
.footer-cta-button--ghost:focus {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.footer-trust-strip {
    padding-bottom: 0;
}

.footer-trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: -1px;
}

.footer-trust-item {
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: var(--public-ink);
    box-shadow: var(--public-shadow-soft);
}

.footer-trust-item strong {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
}

.footer-trust-item span {
    display: block;
    color: var(--public-muted);
    font-size: 13px;
    line-height: 1.7;
}

.footer-usecase-strip {
    padding: 18px 0 0;
}

.footer-usecase-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.footer-usecase-card {
    display: block;
    padding: 18px;
    border-radius: 16px;
    border: 1px solid rgba(20, 33, 61, 0.08);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--public-shadow-soft);
    color: var(--public-ink);
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.footer-usecase-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: var(--public-ink);
}

.footer-usecase-card span {
    display: block;
    color: var(--public-muted);
    font-size: 12px;
    line-height: 1.6;
}

.footer-usecase-card:hover,
.footer-usecase-card:focus {
    color: var(--public-ink);
    text-decoration: none;
    border-color: rgba(108, 88, 123, 0.35);
    box-shadow: 0 16px 36px rgba(20, 33, 61, 0.14);
    transform: translateY(-2px);
}

.footer-main {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 246, 250, 0.98));
    padding: 44px 0 28px;
    color: var(--public-text);
    border-top: 1px solid rgba(20, 33, 61, 0.06);
}

.footer-brand-column {
    padding-right: 28px;
}

.footer-brand-title {
    margin: 0 0 14px;
    color: var(--public-ink);
    font-size: 34px;
}

.footer-text {
    color: var(--public-muted);
    font-size: 14px;
}

.footer-text--lead {
    max-width: 380px;
    margin-bottom: 22px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--public-text);
}

.footer-contact-list i {
    color: var(--public-brand);
    width: 18px;
    margin-top: 3px;
}

.footer-contact-list a,
.footer-contact-list span,
.footer-links a {
    color: var(--public-text);
}

.footer-contact-list a:hover,
.footer-links a:hover {
    color: var(--public-brand-deep);
    text-decoration: none;
}

.footer-heading {
    color: var(--public-ink);
    font-family: 'Manrope', 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    background: #101826;
    padding: 18px 0;
}

.footer-brand a,
.footer-copyright,
.footer-copyright a,
.footer-legal-link,
.footer-social a {
    color: rgba(255, 255, 255, 0.9);
}

.footer-social a:hover,
.footer-legal-link:hover,
.footer-copyright a:hover {
    color: #ffffff;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-legal-link {
    margin-left: 14px;
}

.skip-link {
    background: var(--public-ink);
    border-radius: 999px;
}

@media (max-width: 1199px) {
    .footer-cta-band__inner {
        border-radius: 26px 26px 0 0;
    }

    .footer-cta-band h2 {
        font-size: 30px;
    }
}

@media (max-width: 991px) {
    body {
        padding-top: 0;
    }

    .public-utility-bar {
        position: relative;
    }

    .public-navbar.navbar-default {
        top: 0;
    }

    .public-nav-search {
        margin: 10px 0;
    }

    .public-nav-search .form-control {
        width: 100%;
    }

    .public-nav-search .form-control:focus {
        width: 100%;
    }

    .public-nav-links > li > a {
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .public-nav-action {
        margin-left: 0;
    }

    .public-nav-action > a,
    .navbar-right .signin_btn {
        margin-top: 0;
        margin-bottom: 10px;
        display: inline-block;
    }

    .page-content-wrapper {
        padding-top: 110px;
    }

    .info-page-content {
        padding-top: 104px;
    }

    .footer-cta-band__inner,
    .footer-trust-strip__grid {
        grid-template-columns: 1fr;
    }

    .footer-usecase-strip__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-cta-band__inner {
        display: block;
    }

    .footer-cta-band__actions {
        margin-top: 24px;
        flex-wrap: wrap;
    }

    .footer-brand-column {
        padding-right: 15px;
        margin-bottom: 24px;
    }
}

@media (max-width: 991px) {
    .pricing-coverage-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .pricing-coverage-tiers {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .public-utility-bar__inner {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .public-utility-bar__message,
    .public-utility-bar__actions {
        width: 100%;
        gap: 8px 14px;
    }

    .public-pref-switchers {
        width: 100%;
    }

    .public-pref-select {
        flex: 1 1 auto;
        min-width: 0;
    }

    .public-navbar.navbar-default {
        min-height: 68px;
    }

    .public-navbar .navbar-brand {
        height: 68px;
    }

    .navbar-brand.logo_name {
        font-size: 21px;
    }

    .standalone-card,
    .contact-form-card,
    .info-page-body {
        padding: 28px 22px;
    }

    .info-page-content .page-hero,
    .info-page-content .info-page-hero,
    .pricing-hero,
    .contact-hero {
        padding: 68px 0 56px;
    }

    .info-page-content .page-hero h1,
    .info-page-content .info-page-hero h1,
    .pricing-hero h1,
    .contact-hero h1 {
        font-size: 32px;
    }

    .footer-cta-band__inner {
        padding: 28px 24px;
        border-radius: 24px 24px 0 0;
    }

    .footer-cta-band h2,
    .footer-brand-title {
        font-size: 28px;
    }

    .footer-trust-item {
        padding: 18px 18px;
    }

    .footer-usecase-strip__grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

/* ========================================================================
   Public Page Modules
   ======================================================================== */
.crm-about-content {
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--public-border);
}

.public-section-intro {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.public-section-intro .lead {
    color: var(--public-text);
    font-size: 18px;
    line-height: 1.8;
}

.public-section-divider {
    margin: 40px 0;
    border-color: rgba(20, 33, 61, 0.08);
}

.public-section-heading {
    margin-bottom: 28px;
    text-align: center;
    color: var(--public-ink);
}

.public-tabs {
    margin-bottom: 28px !important;
    border-bottom: 1px solid rgba(20, 33, 61, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.public-tabs > li {
    float: none;
    margin-bottom: 0;
}

.public-tabs > li > a {
    margin-right: 0;
    border: 1px solid rgba(20, 33, 61, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--public-text);
    font-weight: 700;
    padding: 10px 16px;
}

.public-tabs > li.active > a,
.public-tabs > li.active > a:hover,
.public-tabs > li.active > a:focus,
.public-tabs > li > a:hover,
.public-tabs > li > a:focus {
    background: linear-gradient(135deg, var(--public-brand), var(--public-brand-deep));
    border-color: transparent;
    color: #fff;
}

.products-proof-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 8px 0 34px;
}

.products-proof-item {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--public-border);
    border-radius: 18px;
    box-shadow: var(--public-shadow-soft);
    padding: 20px;
}

.products-proof-item strong,
.products-proof-item span {
    display: block;
}

.products-proof-item strong {
    color: var(--public-ink);
    font-size: 1rem;
    margin-bottom: 8px;
}

.products-proof-item span {
    color: var(--public-muted);
    line-height: 1.65;
    font-size: .92rem;
}

.products-story-shell,
.products-blueprint-shell,
.products-connections-shell,
.solution-finder-shell {
    margin-bottom: 34px;
}

.public-pillar-grid,
.products-blueprint-grid,
.products-connection-grid {
    display: grid;
    gap: 22px;
}

.public-pillar-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.public-pillar-card,
.products-blueprint-card,
.products-connection-card,
.wizard-summary {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--public-border);
    border-radius: 22px;
    box-shadow: var(--public-shadow-soft);
}

.public-pillar-card {
    padding: 24px;
}

.public-pillar-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(108, 88, 123, 0.12), rgba(240, 95, 64, 0.14));
    color: var(--public-brand);
    font-size: 1.35rem;
    margin-bottom: 16px;
}

.public-pillar-card h3,
.products-blueprint-card h3,
.products-connection-card h3 {
    color: var(--public-ink);
    font-size: 1.18rem;
    font-weight: 700;
    margin: 0 0 12px;
}

.public-pillar-card p,
.products-blueprint-card p,
.products-connection-card p {
    color: var(--public-muted);
    line-height: 1.7;
    margin: 0;
}

.products-blueprint-grid,
.products-connection-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.products-blueprint-card,
.products-connection-card {
    padding: 28px;
}

.products-blueprint-card__tag {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #f6f0fb;
    color: #6c587b;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.products-blueprint-card ul {
    margin: 14px 0 0;
    padding-left: 18px;
    color: var(--public-text);
    line-height: 1.7;
}

.solution-step-col {
    margin-bottom: 30px;
}

.products-overview-card {
    padding: 30px;
    border: 1px solid var(--public-border);
    border-radius: 22px;
    min-height: 280px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(247,249,252,0.98) 100%);
    box-shadow: var(--public-shadow-soft);
}

.products-overview-card .fa {
    margin-bottom: 15px;
}

.product-solutions-intro {
    margin-bottom: 18px;
}

.solution-step {
    padding: 25px;
    border: 1px solid var(--public-border);
    border-radius: 24px;
    min-height: 520px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--public-shadow-soft);
}

.solution-step.is-active {
    border-color: rgba(233, 138, 95, 0.5);
    box-shadow: 0 18px 46px rgba(233, 138, 95, 0.14);
}

.solution-step-number-wrap {
    text-align: center;
    margin-bottom: 15px;
}

.solution-step-number {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #9ca3af;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
}

.solution-step.is-active .solution-step-number {
    background: linear-gradient(135deg, var(--public-accent), #d46f45);
}

.solution-step-note {
    margin-bottom: 12px;
    text-align: center;
    color: var(--public-muted);
    font-size: 12px;
}

.solution-step-search,
.solution-step-select {
    margin-bottom: 12px;
}

.wizard-preview {
    margin-top: 16px;
    padding: 16px;
    border-radius: 16px;
    background: #faf7f3;
    min-height: 180px;
    border: 1px solid rgba(233, 138, 95, 0.12);
}

.wizard-preview-media {
    margin-bottom: 8px;
}

.wizard-preview img {
    width: 100%;
    max-height: 140px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.wizard-preview-title {
    font-size: 16px;
    font-weight: 700;
    color: #2a2f45;
    margin-bottom: 6px;
}

.wizard-preview-copy {
    color: #5b6475;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

.wizard-preview-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--public-accent);
    font-weight: 700;
}

.wizard-meta-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.wizard-meta-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #f0dfd8;
    color: #7a5a4f;
    font-size: 12px;
    font-weight: 600;
}

.wizard-metric-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.wizard-metric {
    border-radius: 12px;
    background: #fff;
    border: 1px solid #efe3df;
    padding: 10px;
}

.wizard-metric-label {
    color: #8d7d76;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.wizard-metric-value {
    color: #1f2638;
    font-size: 15px;
    font-weight: 700;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.feature-card {
    display: flex;
    gap: 12px;
    padding: 12px;
    border: 1px solid #ececec;
    border-radius: 12px;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.feature-card:hover {
    border-color: var(--public-accent);
    box-shadow: 0 10px 24px rgba(240, 95, 64, 0.12);
    transform: translateY(-1px);
}

.feature-card.is-selected {
    border-color: var(--public-accent);
    background: #fff8f6;
}

.feature-card-check {
    padding-top: 4px;
}

.feature-card-media {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: #f4f4f4;
    object-fit: cover;
    flex: 0 0 64px;
}

.feature-card-body {
    flex: 1;
    min-width: 0;
}

.feature-card-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 4px;
}

.feature-card-title {
    font-weight: 700;
    color: #20263a;
    margin: 0;
}

.feature-card-price {
    color: var(--public-accent);
    font-weight: 700;
    white-space: nowrap;
}

.feature-card-copy {
    color: #616b7c;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.feature-card-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    align-items: center;
}

.feature-card-link {
    color: var(--public-accent);
    font-weight: 700;
    font-size: 12px;
}

.feature-card-note {
    color: #8a7a73;
    font-size: 12px;
}

.plan-tiers-panel {
    margin-top: 12px;
    padding: 12px;
    border-radius: 12px;
    background: #f7f3f1;
    border: 1px solid #f0e4df;
    display: none;
}

.plan-tiers-panel.is-open {
    display: block;
}

.plan-tiers-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9e8d86;
    margin-bottom: 10px;
}

.plan-tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 8px;
}

.plan-tier-card {
    background: #fff;
    border: 1px solid #ece2de;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}

.plan-tier-name {
    font-size: 12px;
    font-weight: 700;
    color: #20263a;
    margin-bottom: 4px;
}

.plan-tier-cost {
    font-size: 18px;
    font-weight: 800;
    color: var(--public-accent);
    line-height: 1.1;
}

.plan-tier-period {
    font-size: 11px;
    color: #9b9b9b;
    margin-bottom: 6px;
}

.plan-tier-meta {
    font-size: 11px;
    color: #78716c;
    line-height: 1.5;
}

.btn-toggle-plans {
    background: none;
    border: 1px solid #f0cec5;
    color: #c05a3f;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.btn-toggle-plans:hover {
    background: var(--public-accent);
    color: #fff;
}

.wizard-summary-cta {
    padding-top: 18px;
    text-align: center;
}

.wizard-summary {
    margin-bottom: 30px;
    padding: 28px;
}

.wizard-summary-title {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--public-ink);
}

.wizard-summary-copy {
    margin-bottom: 18px;
}

.wizard-summary-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.wizard-summary-list li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(20, 33, 61, 0.08);
}

.wizard-summary-label {
    color: var(--public-muted);
    font-weight: 600;
}

.wizard-summary-value {
    color: var(--public-ink);
    font-weight: 700;
    text-align: right;
}

.wizard-summary-button {
    display: inline-block;
    margin-top: 10px;
}

.wizard-summary-button--ghost {
    margin-left: 5px;
}

.feature-list-shell {
    max-height: 300px;
    overflow-y: auto;
}

.wizard-price-summary {
    margin-top: 10px;
    font-weight: 700;
}

.wizard-price-details {
    margin-top: 8px;
    font-size: 12px;
}

.wizard-quote-message {
    margin-top: 10px;
}

.quote-panel,
.contact-panel,
.resource-panel,
.resource-media-card,
.training-card,
.document-card,
.knowledge-card,
.contact-quick-card,
.industry-card,

.public-card-col {
    margin-bottom: 30px;
}

.public-card-col-sm {
    margin-bottom: 25px;
}

.public-card-col-xs {
    margin-bottom: 20px;
}

.resource-video {
    width: 100%;
    max-height: 200px;
    display: block;
}

.resource-video--sm {
    max-height: 180px;
}

.resource-media-card__placeholder-text {
    margin-top: 10px;
}

.resource-media-card--alt {
    background: #f7f7f7;
    border: 0;
    border-radius: 8px;
}

.resource-media-card--alt .resource-media-card__placeholder {
    background: #2d1b4e;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.resource-media-card__body {
    padding: 15px;
}

.resource-list-card {
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 8px;
}

.resource-list-card__list {
    padding-left: 20px;
    line-height: 2;
}

.resource-doc-lane {
    padding: 20px;
    border-left: 4px solid #F05F40;
}

.resource-doc-lane--sales {
    border-left-color: #F05F40;
}

.resource-doc-lane--tech {
    border-left-color: #3498db;
}

.resource-doc-lane--guides {
    border-left-color: #27ae60;
}

.resource-doc-lane--legal {
    border-left-color: #f39c12;
}

.resource-gallery-card {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
    background: #fff;
}

.resource-gallery-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.resource-gallery-card__body {
    padding: 12px;
}

.resource-gallery-card__title {
    margin: 0 0 4px;
}

.resource-gallery-card__desc {
    font-size: 12px;
    margin: 0;
}

.resource-showcase-card {
    background: #f0f0f0;
    border-radius: 8px;
    padding: 40px 15px;
    text-align: center;
    min-height: 180px;
}

.resource-showcase-card__icon {
    margin-bottom: 10px;
}

.resource-showcase-card__desc {
    font-size: 12px;
}

.resource-row-gap {
    margin-bottom: 20px;
}

.resource-media-card__title {
    margin-top: 0;
}

.resource-media-card__desc {
    font-size: 13px;
}

.resource-doc-card {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    min-height: 160px;
}

.resource-doc-card__head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.resource-doc-card__icon {
    flex-shrink: 0;
    margin-top: 4px;
}

.resource-doc-card__desc {
    margin-top: 6px;
    font-size: 13px;
}

.resource-doc-card__rev {
    font-size: 11px;
}

.resource-chip {
    font-size: 10px;
}

.resource-chip--gap-lg {
    margin-left: 6px;
}

.resource-chip--gap-sm {
    margin-left: 4px;
}

.resource-separator {
    margin: 30px 0;
}

.resource-separator--sm {
    margin: 20px 0;
}

.resource-section-heading {
    margin-bottom: 30px;
}

.resource-search-results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    padding: 18px 24px;
    background: #f8f6fa;
    border: 1px solid rgba(108, 88, 123, 0.12);
    border-radius: 16px;
}

.resource-search-results-header h2 {
    margin: 0;
    font-size: 1.3rem;
    color: #241c2b;
}

.resource-guideline-col {
    margin-bottom: 15px;
}

.resource-guideline-card {
    padding: 15px;
    border-left: 4px solid #27ae60;
}

.resource-guideline-card__desc {
    margin-top: 5px;
    font-size: 13px;
}

.resource-vertical-card {
    display: block;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow .2s;
}

.resource-vertical-card:hover,
.resource-vertical-card:focus {
    box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
    text-decoration: none;
    color: inherit;
}

.resource-vertical-card__media {
    height: 90px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #f0f0f0;
}

.resource-vertical-card__media--fallback {
    background: linear-gradient(135deg, #f05f40, #c94030);
    display: flex;
    align-items: center;
    justify-content: center;
}

.resource-vertical-card__media--fallback .fa {
    color: rgba(255, 255, 255, .7);
}

.resource-vertical-card__body {
    padding: 12px;
}

.resource-vertical-card__title {
    font-size: 13px;
}

.resource-vertical-card__desc {
    font-size: 11px;
    margin: 4px 0 0;
}

.resource-product-card {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    min-height: 140px;
}

.resource-product-card__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.resource-product-card__title {
    margin: 0 0 8px;
}

.resource-product-card__price {
    color: #f05f40;
    white-space: nowrap;
}

.resource-product-card__desc {
    font-size: 13px;
    margin: 0;
}
.product-mini-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--public-border);
    border-radius: 20px;
    box-shadow: var(--public-shadow-soft);
}

.quote-panel,
.contact-panel,
.resource-panel {
    padding: 30px;
}

.quote-panel-message,
.contact-panel-copy {
    margin-bottom: 20px;
    color: var(--public-muted);
}

.products-quote-row {
    margin: 30px 0;
}

.final-cta {
    margin-top: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.final-cta p {
    margin-bottom: 20px;
    color: var(--public-muted);
}

.final-cta-actions {
    display: inline-flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ========================================================================
   About Page — Proof Strip & Capability Grid
   ======================================================================== */
.about-proof-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.about-proof-item {
    background: var(--public-surface-strong, #fff);
    border: 1px solid var(--public-border, rgba(20, 33, 61, 0.1));
    border-radius: var(--public-radius, 22px);
    box-shadow: var(--public-shadow-soft, 0 10px 30px rgba(20, 33, 61, 0.08));
    padding: 26px;
}

.about-proof-item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: var(--public-ink, #14213d);
}

.about-proof-item span {
    display: block;
    color: var(--public-muted, #6b7280);
    font-size: 14px;
    line-height: 1.75;
}

.about-capability-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.about-capability-card {
    background: var(--public-surface-strong, #fff);
    border: 1px solid var(--public-border, rgba(20, 33, 61, 0.1));
    border-radius: var(--public-radius, 22px);
    box-shadow: var(--public-shadow-soft, 0 10px 30px rgba(20, 33, 61, 0.08));
    padding: 26px;
}

.about-capability-card h3 {
    margin: 0 0 10px;
    color: var(--public-ink, #14213d);
    font-size: 18px;
}

.about-capability-card p {
    margin: 0;
    color: var(--public-muted, #6b7280);
    line-height: 1.75;
}

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

@media (max-width: 767px) {
    .about-proof-strip,
    .about-capability-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-buyers-guide,
.pricing-includes-grid,
.pricing-implementation-grid {
    display: grid;
    gap: 20px;
}

.pricing-buyers-guide,
.pricing-includes-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.pricing-guide-card,
.pricing-include-card,
.pricing-implementation-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(108, 88, 123, 0.12);
    border-radius: 20px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
    padding: 24px;
}

.pricing-buyers-guide {
    margin: 0 0 28px;
}

.pricing-guide-card strong,
.pricing-guide-card span {
    display: block;
}

.pricing-guide-card strong,
.pricing-include-card h3,
.pricing-implementation-card h3 {
    color: #241c2b;
    margin-bottom: 10px;
}

.pricing-guide-card span,
.pricing-include-card p,
.pricing-implementation-card p {
    color: #655f6c;
    line-height: 1.7;
    margin: 0;
}

.plan-kicker {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #f6f0fb;
    color: #6c587b;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.plan-best-for {
    color: #5f5866;
    line-height: 1.65;
    margin-bottom: 16px;
    font-size: .92rem;
}

.plan-module-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.plan-module-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: #faf6fd;
    border: 1px solid rgba(108, 88, 123, 0.12);
    color: #6c587b;
    font-size: .78rem;
    font-weight: 700;
}

.pricing-includes-section,
.pricing-implementation-section {
    margin: 54px 0 0;
}

.pricing-feature-inventory-section,
.pricing-stack-section,
.pricing-integration-path-section,
.pricing-roadmap-section {
    margin-top: 54px;
}

.pricing-feature-inventory-grid,
.pricing-integration-coverage-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-feature-inventory-card,
.pricing-integration-coverage-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(108, 88, 123, 0.12);
    border-radius: 20px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
    padding: 24px;
}

.pricing-feature-inventory-card h3,
.pricing-integration-coverage-card h3 {
    color: #241c2b;
    margin: 0 0 12px;
}

.pricing-feature-inventory-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.pricing-feature-inventory-card li {
    color: #655f6c;
    line-height: 1.6;
}

.pricing-feature-inventory-card li i {
    color: var(--public-accent);
    margin-right: 8px;
}

.pricing-integration-coverage-grid {
    margin-top: 22px;
}

.pricing-integration-coverage-card p {
    margin: 0;
    color: #655f6c;
    line-height: 1.7;
}

.pricing-implementation-card span {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #f6f0fb;
    color: #6c587b;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.footer-navigation-strip {
    padding: 0 0 24px;
    background: #0f1728;
}

.footer-navigation-strip__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.footer-navigation-card {
    display: block;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 20px;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.footer-navigation-card strong,
.footer-navigation-card span {
    display: block;
}

.footer-navigation-card strong {
    color: #ffffff;
    margin-bottom: 8px;
}

.footer-navigation-card span {
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.65;
}

.footer-navigation-card:hover,
.footer-navigation-card:focus {
    text-decoration: none;
    transform: translateY(-2px);
    border-color: rgba(240, 95, 64, 0.42);
    background: rgba(255, 255, 255, 0.06);
}

.footer-global-strip {
    padding: 0 0 28px;
    background: #0f1728;
}

.footer-compliance-strip {
    padding: 0 0 28px;
    background: #0f1728;
}

.footer-compliance-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    padding: 16px 20px;
}

.footer-compliance-strip__copy {
    color: rgba(255, 255, 255, 0.76);
    margin: 0;
}

.footer-compliance-strip__links {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-compliance-strip__links a {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.footer-compliance-strip__links a:hover,
.footer-compliance-strip__links a:focus {
    color: #ffffff;
    border-color: rgba(240, 95, 64, 0.52);
    background: rgba(240, 95, 64, 0.2);
    text-decoration: none;
}

/* Newsletter strip */
.footer-newsletter-strip {
    padding: 40px 0;
    background:
        radial-gradient(circle at bottom right, rgba(233, 138, 95, 0.12), transparent 36%),
        linear-gradient(180deg, #f6f7fb 0%, #fffaf6 100%);
}

.footer-newsletter-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-newsletter-copy h3 {
    margin: 0 0 6px;
    color: var(--public-ink, #14213d);
    font-size: 24px;
}

.footer-newsletter-copy p {
    margin: 0;
    color: var(--public-muted, #6b7280);
    font-size: 15px;
}

.footer-newsletter-form {
    flex: 1;
    min-width: 280px;
    max-width: 480px;
}

.footer-newsletter-input-group {
    display: flex;
    gap: 8px;
}

.footer-newsletter-input-group .form-control {
    height: 46px;
    border-radius: 14px;
    border: 1px solid var(--public-border, rgba(20, 33, 61, 0.1));
    box-shadow: none;
    flex: 1;
}

.footer-newsletter-input-group .btn {
    height: 46px;
    border-radius: 14px;
    padding: 0 24px;
    white-space: nowrap;
}

.footer-newsletter-disclaimer {
    margin: 8px 0 0;
    font-size: 12px;
    color: var(--public-muted, #6b7280);
}

.footer-newsletter-disclaimer a {
    color: var(--public-brand-deep, #4b395d);
}

@media (max-width: 767px) {
    .footer-newsletter-strip__inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-newsletter-form {
        max-width: 100%;
        width: 100%;
    }

    .footer-newsletter-input-group {
        flex-direction: column;
    }

    .footer-newsletter-input-group .btn {
        width: 100%;
    }
}

.info-page-meta {
    margin-bottom: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.info-page-meta__chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #5a5363;
    border: 1px solid rgba(108, 88, 123, 0.2);
    background: rgba(246, 240, 251, 0.62);
}

.footer-global-strip__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.footer-global-item {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    padding: 18px;
}

.footer-global-item strong,
.footer-global-item span {
    display: block;
}

.footer-global-item strong {
    color: #ffffff;
    margin-bottom: 8px;
}

.footer-global-item span {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
}

.resource-hub-card {
    padding: 30px;
    border: 1px solid var(--public-border);
    border-radius: 20px;
    min-height: 250px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,249,252,0.98));
    box-shadow: var(--public-shadow-soft);
    text-align: center;
}

.resource-hub-card .fa,
.resource-media-card .fa,
.contact-quick-card .fa,
.knowledge-card .fa {
    margin-bottom: 12px;
}

.resource-hub-card .btn,
.training-card .btn,
.document-card .btn {
    margin-top: 12px;
}

.knowledge-card {
    padding: 22px;
    border-left: 4px solid var(--public-accent);
}

.knowledge-card ul,
.training-card ul,
.document-card ul {
    padding-left: 20px;
}

.resource-media-card {
    overflow: hidden;
}

.resource-media-card__body {
    padding: 15px;
}

.resource-media-card__placeholder {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, #2d1b4e, #182848);
    color: #fff;
}

.document-card__head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.document-card__meta {
    margin-top: 6px;
    font-size: 11px;
    color: var(--public-muted);
}

.industry-card,
.product-mini-card,
.contact-quick-card {
    padding: 18px;
}

.industry-card {
    display: block;
    color: inherit;
    text-decoration: none;
    overflow: hidden;
}

.industry-card:hover {
    color: inherit;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--public-shadow);
}

.industry-card__image {
    height: 96px;
    background-size: cover;
    background-position: center;
    border-radius: 14px;
    margin-bottom: 12px;
    background-color: #f0f0f0;
}

.industry-card__image--fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--public-accent), #c94030);
}

.contact-directory {
    margin-top: 18px;
}

.contact-directory-empty,
.department-detail-placeholder {
    padding: 20px;
    text-align: center;
    color: var(--public-muted);
}

.department-detail-card {
    padding: 25px;
    min-height: 300px;
}

.department-detail-content {
    text-align: center;
    padding: 30px;
}

.department-detail-content .fa-user-circle {
    color: var(--public-accent);
    margin-bottom: 15px;
}

.department-detail-placeholder {
    padding-top: 80px;
}

.contact-quick-row {
    margin-top: 20px;
}

.contact-panel-title {
    margin-top: 0;
}

.contact-feedback-toggle {
    margin-bottom: 15px;
}

.rating-stars {
    font-size: 28px;
    cursor: pointer;
    color: #ddd;
    text-align: center;
    margin: 10px 0;
}

.status-alert {
    margin-bottom: 16px;
}

@media (max-width: 991px) {
    .solution-step {
        min-height: 0;
    }
}

@media (max-width: 767px) {
    .public-tabs {
        display: block;
    }

    .public-tabs > li {
        display: block;
        margin-bottom: 10px;
    }

    .public-tabs > li > a {
        display: block;
        text-align: center;
    }

    .products-overview-card,
    .resource-hub-card,
    .quote-panel,
    .contact-panel,
    .resource-panel,
    .knowledge-card,
    .industry-card,
    .product-mini-card,
    .contact-quick-card {
        padding: 22px;
    }

    .wizard-summary-cta {
        padding-top: 0;
    }

    .wizard-summary-button,
    .wizard-summary-button--ghost {
        display: block;
        margin-left: 0;
    }

    .final-cta-actions {
        display: flex;
        width: 100%;
    }

    .final-cta-actions .btn {
        width: 100%;
    }
}

@media (max-width: 1199px) {
    .products-proof-strip,
    .pricing-buyers-guide,
    .pricing-includes-grid,
    .public-pillar-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .products-blueprint-grid,
    .products-connection-grid,
    .pricing-implementation-grid,
    .pricing-feature-inventory-grid,
    .pricing-integration-coverage-grid,
    .footer-navigation-strip__grid,
    .footer-global-strip__grid {
        grid-template-columns: 1fr;
    }

    .footer-compliance-strip__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .products-proof-strip,
    .pricing-buyers-guide,
    .pricing-includes-grid,
    .public-pillar-grid {
        grid-template-columns: 1fr;
    }

    .wizard-summary-list li {
        flex-direction: column;
        align-items: flex-start;
    }

    .wizard-summary-value {
        text-align: left;
    }
}

/* ========================================================================
   Homepage
   ======================================================================== */
.home-page {
    background:
        radial-gradient(circle at top left, rgba(233, 138, 95, 0.14), transparent 32%),
        linear-gradient(180deg, #fffaf6 0%, #f6f7fb 42%, #edf1f8 100%);
}

.home-hero {
    position: relative;
    overflow: hidden;
    padding: 150px 0 80px;
    background:
        radial-gradient(circle at top left, rgba(233, 138, 95, 0.25), transparent 28%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.12), transparent 28%),
        linear-gradient(135deg, #182848 0%, #4b395d 52%, #6c587b 100%);
    color: #fff;
}

.home-hero::after {
    content: "";
    position: absolute;
    inset: auto auto -120px -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.home-hero__inner,
.home-hero__row {
    position: relative;
    z-index: 1;
}

.home-hero__content {
    padding-right: 36px;
}

.home-eyebrow {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.72);
}

.home-eyebrow--dark {
    color: rgba(20, 33, 61, 0.58);
}

.home-hero h1 {
    max-width: 700px;
    margin: 0 0 18px;
    font-size: 56px;
    line-height: 1.04;
}

.home-hero__copy {
    max-width: 640px;
    margin: 0 0 28px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
}

.home-hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.home-trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}

.home-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 700;
}

.home-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.home-stat-card {
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.home-stat-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
}

.home-stat-card span {
    display: block;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    line-height: 1.7;
}

.home-signup-card,
.home-dashboard-card {
    background: rgba(255, 255, 255, 0.96);
    color: var(--public-text);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
    padding: 30px;
}

.home-signup-card__header h2,
.home-dashboard-card h2 {
    margin: 0 0 10px;
    color: var(--public-ink);
    font-size: 34px;
}

.home-signup-card__header p,
.home-dashboard-card p {
    color: var(--public-muted);
    line-height: 1.8;
}

.home-signup-alert {
    min-height: 20px;
    margin-bottom: 10px;
}

.home-signup-form .form-group {
    margin-bottom: 14px;
}

.home-signup-form .form-control {
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(20, 33, 61, 0.12);
    box-shadow: none;
}

.home-signup-form__actions {
    margin-top: 10px;
}

.home-signup-form__meta {
    margin-top: 10px;
    text-align: center;
    font-size: 13px;
    color: var(--public-muted);
}

.home-signup-card__privacy {
    margin: 14px 0 0;
    font-size: 12px;
    color: var(--public-muted);
    text-align: center;
}

.home-signup-card__privacy a {
    color: var(--public-brand-deep);
}

.home-social-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
}

.home-social-row span {
    color: var(--public-muted);
    font-size: 13px;
    font-weight: 700;
}

.home-social-row .social-buttons,
.home-social-row--footer .social-buttons {
    margin: 0;
}

.home-social-row .social_icon,
.home-social-row--footer .social_icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #101826;
    color: #fff;
}

.home-social-row .social_icon:hover,
.home-social-row--footer .social_icon:hover {
    color: #fff;
    background: var(--public-brand-deep);
}

.home-dashboard-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 22px;
}

.home-dashboard-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--public-text);
}

.home-dashboard-list i {
    color: var(--public-accent);
}

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

.home-section-heading {
    max-width: 820px;
    margin: 0 auto 34px;
}

.home-section-heading h2 {
    margin: 0 0 16px;
    color: var(--public-ink);
    font-size: 42px;
    line-height: 1.12;
}

.home-section-heading p {
    color: var(--public-muted);
    font-size: 17px;
    line-height: 1.8;
}

.home-overview-grid {
    margin-top: 26px;
}

.home-overview-card,
.home-capability-card,
.home-use-case-card,
.home-contact-card,
.home-workflow-step {
    height: 100%;
    padding: 28px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--public-border);
    border-radius: 24px;
    box-shadow: var(--public-shadow-soft);
}

.home-overview-card strong {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    color: var(--public-ink);
}

.home-overview-card p,
.home-capability-card p,
.home-use-case-card p,
.home-contact-card p,
.home-workflow-step p {
    margin: 0;
    color: var(--public-muted);
    line-height: 1.75;
}

.home-capabilities-section,
.home-contact-section {
    background: rgba(255, 255, 255, 0.36);
}

.home-capability-card,
.home-use-case-card,
.home-contact-card {
    margin-bottom: 24px;
}

.home-capability-card i,
.home-use-case-card i,
.home-contact-card i {
    display: inline-flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 18px;
    background: var(--public-highlight);
    color: var(--public-brand-deep);
    font-size: 22px;
}

.home-capability-card h3,
.home-use-case-card h3,
.home-contact-card h3,
.home-workflow-step h3 {
    margin: 0 0 10px;
    color: var(--public-ink);
    font-size: 22px;
}

.home-workflow-shell {
    display: flex;
    align-items: center;
}

.home-workflow-copy {
    padding-right: 34px;
}

.home-workflow-steps {
    display: grid;
    gap: 18px;
}

.home-workflow-step {
    position: relative;
    padding-left: 92px;
}

.home-workflow-step span {
    position: absolute;
    left: 28px;
    top: 28px;
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--public-accent), #d46f45);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.home-cta-band {
    padding: 0 0 32px;
}

.home-cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 32px 36px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(233, 138, 95, 0.18), transparent 32%),
        linear-gradient(135deg, #182848 0%, #4b395d 100%);
    color: #fff;
    box-shadow: var(--public-shadow);
}

.home-cta-band__inner h2 {
    margin: 0;
    max-width: 700px;
    font-size: 34px;
    line-height: 1.15;
}

.home-cta-band__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.home-contact-card a {
    color: var(--public-brand-deep);
    font-weight: 700;
}

.home-social-row--footer {
    justify-content: center;
    margin-top: 22px;
}

.home-auth-modal-card {
    background: rgba(16, 24, 38, 0.75);
    border-radius: 14px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 20px 42px rgba(12, 18, 31, 0.35);
}

.home-auth-modal-title {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 20px;
}

@media (max-width: 1199px) {
    .home-hero h1 {
        font-size: 50px;
    }
}

@media (max-width: 991px) {
    .home-hero {
        padding-top: 120px;
    }

    .home-hero__content,
    .home-workflow-copy {
        padding-right: 15px;
    }

    .home-stat-grid {
        grid-template-columns: 1fr;
    }

    .home-workflow-shell,
    .home-cta-band__inner {
        display: block;
    }

    .home-cta-band__actions {
        margin-top: 24px;
    }
}

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

    .home-hero h1 {
        font-size: 38px;
    }

    .home-hero__copy,
    .home-section-heading p {
        font-size: 16px;
    }

    .home-section {
        padding: 56px 0;
    }

    .home-section-heading h2,
    .home-cta-band__inner h2,
    .home-signup-card__header h2,
    .home-dashboard-card h2 {
        font-size: 30px;
    }

    .home-signup-card,
    .home-dashboard-card,
    .home-overview-card,
    .home-capability-card,
    .home-use-case-card,
    .home-contact-card,
    .home-workflow-step,
    .home-cta-band__inner {
        padding: 24px;
    }

    .home-hero__actions,
    .home-social-row,
    .home-trust-pills {
        display: block;
    }

    .home-hero__actions .btn,
    .home-cta-band__actions .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .home-trust-pill {
        margin: 0 8px 8px 0;
    }

    .home-workflow-step {
        padding-left: 24px;
        padding-top: 88px;
    }

    .home-workflow-step span {
        left: 24px;
        top: 24px;
    }
}

/* ============================================================
   Roadmap Page
   ============================================================ */
.roadmap-phase {
    padding: 20px;
    background: #fff;
    border: 1px solid rgba(108, 88, 123, 0.1);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
    margin-bottom: 20px;
}
.roadmap-phase h3 {
    margin: 10px 0 14px;
    font-size: 1.15rem;
    color: #241c2b;
}
.roadmap-phase__badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
}
.roadmap-phase__badge--done {
    background: rgba(34, 197, 94, 0.12);
    color: #166534;
}
.roadmap-phase__badge--progress {
    background: rgba(245, 158, 11, 0.12);
    color: #92400e;
}
.roadmap-phase__badge--planned {
    background: rgba(59, 130, 246, 0.12);
    color: #1e40af;
}
.roadmap-phase__badge--future {
    background: rgba(108, 88, 123, 0.1);
    color: #4e3a5e;
}
.roadmap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.roadmap-list li {
    padding: 5px 0;
    font-size: 0.88rem;
    color: #4a4550;
    line-height: 1.5;
}
.roadmap-list li.done {
    color: #2d7a4a;
}
.roadmap-list li i {
    margin-right: 6px;
    width: 14px;
    text-align: center;
}
.roadmap-phase-progress {
    margin-bottom: 14px;
}
.roadmap-phase-progress-text {
    font-size: 0.78rem;
    color: #8a8490;
    margin-bottom: 4px;
}
.roadmap-phase-progress-bar-wrap {
    height: 4px;
    background: rgba(108, 88, 123, 0.1);
    border-radius: 4px;
    overflow: hidden;
}
.roadmap-phase-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--brand-primary, #6c587b), #22c55e);
    border-radius: 4px;
    transition: width 0.5s ease;
}

/* Roadmap stat cards */
.roadmap-progress-section {
    margin: 20px 0 32px;
}
.roadmap-stat-card {
    text-align: center;
    padding: 20px 12px;
    background: #fff;
    border: 1px solid rgba(108, 88, 123, 0.1);
    border-radius: 14px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}
.roadmap-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-primary, #6c587b);
    line-height: 1.1;
}
.roadmap-stat-label {
    font-size: 0.85rem;
    color: #8a8490;
    margin-top: 4px;
}
.roadmap-progress-bar-wrap {
    height: 8px;
    background: rgba(108, 88, 123, 0.08);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 16px;
}
.roadmap-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--brand-primary, #6c587b), #22c55e);
    border-radius: 8px;
    transition: width 0.6s ease;
}

/* Roadmap filter bar */
.roadmap-filter-bar {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0 0 24px;
}
.roadmap-filter-btn {
    background: #fff;
    border: 1px solid rgba(108, 88, 123, 0.2);
    border-radius: 20px;
    padding: 7px 18px;
    font-size: 0.86rem;
    color: #4e3a5e;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
}
.roadmap-filter-btn:hover {
    background: rgba(108, 88, 123, 0.05);
}
.roadmap-filter-btn.active {
    background: var(--brand-primary, #6c587b);
    color: #fff;
    border-color: var(--brand-primary, #6c587b);
}

/* Release cards */
.roadmap-releases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 28px;
}
.roadmap-release-card {
    background: #fff;
    border: 1px solid rgba(108, 88, 123, 0.1);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
    position: relative;
}
.roadmap-release-version {
    display: inline-block;
    background: var(--brand-primary, #6c587b);
    color: #fff;
    padding: 3px 12px;
    border-radius: 12px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.roadmap-release-card h4 {
    font-size: 1rem;
    color: #241c2b;
    margin-bottom: 10px;
}
.roadmap-release-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
}
.roadmap-release-card li {
    padding: 3px 0 3px 18px;
    font-size: 0.85rem;
    color: #615b67;
    position: relative;
}
.roadmap-release-card li::before {
    content: '\f00c';
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    color: #22c55e;
    font-size: 0.75rem;
}
.roadmap-release-date {
    font-size: 0.8rem;
    color: #8a8490;
    font-weight: 600;
}
@media (max-width: 767px) {
    .roadmap-releases-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   Solutions Page
   ============================================================ */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.solutions-card {
    background: #fff;
    border: 1px solid rgba(108, 88, 123, 0.12);
    border-radius: 18px;
    padding: 32px 24px;
    text-align: center;
    min-height: 240px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.solutions-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(108, 88, 123, 0.14);
}

.solutions-card i {
    color: var(--brand-primary, #6c587b);
    margin-bottom: 16px;
}

.solutions-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #241c2b;
}

.solutions-card p {
    color: #615b67;
    line-height: 1.65;
    font-size: 0.94rem;
}

.solutions-industries {
    margin-top: 48px;
    text-align: center;
}

.solutions-industry-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 24px 0;
}

.industry-chip {
    display: inline-block;
    background: rgba(108, 88, 123, 0.08);
    color: #4e3a5e;
    border: 1px solid rgba(108, 88, 123, 0.18);
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 0.88rem;
    font-weight: 600;
}

.solutions-cta-row {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

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

@media (max-width: 575px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}

/* Solutions page — expanded styles */
.solutions-card__icon {
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}
.solutions-card:hover .solutions-card__icon {
    transform: scale(1.1);
}
.solutions-card__metrics {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin: 12px 0 8px;
}
.solutions-metric-pill {
    display: inline-block;
    background: rgba(108, 88, 123, 0.06);
    color: #4e3a5e;
    border-radius: 12px;
    padding: 4px 12px;
    font-size: 0.78rem;
    font-weight: 600;
}
.solutions-card__expand-btn {
    display: inline-block;
    margin-top: 12px;
    background: none;
    border: 1px solid rgba(108, 88, 123, 0.2);
    border-radius: 20px;
    padding: 6px 18px;
    font-size: 0.85rem;
    color: var(--brand-primary, #6c587b);
    cursor: pointer;
    transition: all 0.2s ease;
}
.solutions-card__expand-btn:hover {
    background: rgba(108, 88, 123, 0.08);
    border-color: var(--brand-primary, #6c587b);
}
.solutions-card__detail {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    text-align: left;
    margin-top: 12px;
    border-top: 1px solid rgba(108, 88, 123, 0.1);
    padding-top: 0;
}
.solutions-card--expanded .solutions-card__detail {
    padding-top: 16px;
}
.solutions-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 575px) {
    .solutions-detail-grid {
        grid-template-columns: 1fr;
    }
}
.solutions-detail-col h4 {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #241c2b;
}
.solutions-detail-col h4 i {
    margin-right: 6px;
    color: var(--brand-primary, #6c587b);
}
.solutions-feature-list,
.solutions-usecase-list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
}
.solutions-feature-list li,
.solutions-usecase-list li {
    padding: 3px 0;
    font-size: 0.85rem;
    color: #4a4550;
    position: relative;
    padding-left: 16px;
}
.solutions-feature-list li::before {
    content: '\f00c';
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    color: #22c55e;
    font-size: 0.75rem;
}
.solutions-usecase-list li::before {
    content: '\f105';
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    color: var(--brand-primary, #6c587b);
    font-size: 0.8rem;
}
.solutions-detail-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

/* Filter bar */
.solutions-filter-bar {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 24px 0 16px;
}
.solutions-filter-btn {
    background: #fff;
    border: 1px solid rgba(108, 88, 123, 0.2);
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 0.88rem;
    color: #4e3a5e;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
}
.solutions-filter-btn:hover {
    background: rgba(108, 88, 123, 0.05);
}
.solutions-filter-btn.active {
    background: var(--brand-primary, #6c587b);
    color: #fff;
    border-color: var(--brand-primary, #6c587b);
}

/* Implementation timeline */
.solutions-timeline {
    max-width: 700px;
    margin: 32px auto 0;
    position: relative;
    padding-left: 48px;
}
.solutions-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--brand-primary, #6c587b), rgba(108, 88, 123, 0.15));
}
.solutions-timeline-step {
    position: relative;
    margin-bottom: 32px;
    padding-left: 16px;
}
.solutions-timeline-number {
    position: absolute;
    left: -44px;
    top: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--brand-primary, #6c587b);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(108, 88, 123, 0.3);
}
.solutions-timeline-content h4 {
    margin: 0 0 6px;
    font-size: 1.05rem;
    color: #241c2b;
}
.solutions-timeline-content p {
    margin: 0;
    font-size: 0.92rem;
    color: #615b67;
    line-height: 1.6;
}

/* Comparison table */
.solutions-comparison-table {
    margin-top: 24px;
    border-collapse: collapse;
}
.solutions-comparison-table thead th {
    background: #f8f6fa;
    color: #241c2b;
    font-weight: 700;
    padding: 12px 16px;
    font-size: 0.9rem;
    border-bottom: 2px solid rgba(108, 88, 123, 0.15);
}
.solutions-comparison-table tbody td {
    padding: 10px 16px;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(108, 88, 123, 0.08);
    color: #4a4550;
}
.solutions-comparison-table tbody tr:hover {
    background: rgba(108, 88, 123, 0.03);
}

/* Scenario cards */
.solutions-scenarios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}
.solutions-scenario-card {
    background: #fff;
    border: 1px solid rgba(108, 88, 123, 0.12);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.solutions-scenario-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(108, 88, 123, 0.12);
}
.solutions-scenario-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(108, 88, 123, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--brand-primary, #6c587b);
    font-size: 1.3rem;
}
.solutions-scenario-card h4 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: #241c2b;
}
.solutions-scenario-card p {
    font-size: 0.88rem;
    color: #615b67;
    line-height: 1.6;
    margin-bottom: 8px;
}
.solutions-scenario-result {
    background: rgba(34, 197, 94, 0.08);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #166534;
    margin-top: 12px;
}
@media (max-width: 991px) {
    .solutions-scenarios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .solutions-scenarios-grid {
        grid-template-columns: 1fr;
    }
}

/* Trust grid */
.solutions-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
    text-align: center;
}
.solutions-trust-item {
    padding: 24px 16px;
}
.solutions-trust-item i {
    color: var(--brand-primary, #6c587b);
    margin-bottom: 12px;
}
.solutions-trust-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #241c2b;
}
.solutions-trust-item p {
    font-size: 0.88rem;
    color: #615b67;
    line-height: 1.55;
}
@media (max-width: 991px) {
    .solutions-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .solutions-trust-grid {
        grid-template-columns: 1fr;
    }
}

/* Industry chip active state */
.industry-chip {
    cursor: pointer;
    transition: all 0.2s ease;
}
.industry-chip:hover,
.industry-chip--active {
    background: var(--brand-primary, #6c587b);
    color: #fff;
    border-color: var(--brand-primary, #6c587b);
}
.solutions-industry-detail {
    margin-top: 16px;
    padding: 16px 24px;
    background: rgba(108, 88, 123, 0.04);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

/* Solutions final CTA */
.solutions-final-cta {
    margin-top: 24px;
    padding: 48px 0;
}

/* ============================================================
   Blog Page
   ============================================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 20px 0 40px;
}

.blog-card {
    background: #fff;
    border: 1px solid rgba(108, 88, 123, 0.12);
    border-radius: 18px;
    padding: 28px 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(108, 88, 123, 0.12);
}

.blog-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.blog-card__category {
    display: inline-block;
    background: rgba(108, 88, 123, 0.1);
    color: #6c587b;
    border-radius: 12px;
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-card__date,
.blog-card__read-time {
    color: #8a8492;
    font-size: 0.82rem;
}

.blog-card__title {
    font-size: 1.15rem;
    line-height: 1.4;
    margin: 0 0 12px;
    color: #241c2b;
}

.blog-card__title i {
    color: var(--brand-primary, #6c587b);
    margin-right: 8px;
}

.blog-card__excerpt {
    color: #615b67;
    line-height: 1.65;
    font-size: 0.92rem;
    flex: 1;
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #6c587b;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: 14px;
}

.blog-card__link:hover {
    color: #4e3a5e;
    text-decoration: underline;
}

.blog-subscribe-cta {
    text-align: center;
    padding: 40px 20px;
    background: rgba(108, 88, 123, 0.04);
    border-radius: 18px;
    margin: 20px 0 0;
}

.blog-subscribe-cta h3 {
    font-size: 1.3rem;
    color: #241c2b;
    margin-bottom: 8px;
}

.blog-subscribe-cta p {
    color: #615b67;
    margin-bottom: 18px;
}

@media (max-width: 767px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================================================
   NEW PAGES: Testimonials, Comparison, Tutorials, Onboarding, etc.
   ================================================================ */

/* Testimonial Cards */
.testimonial-card { transition: transform 0.2s, box-shadow 0.2s; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.testimonial-stars { color: #f5a623; margin-bottom: 12px; font-size: 1.1em; }
.testimonial-stars .fa { margin-right: 2px; }
.testimonial-quote { font-style: italic; color: #444; line-height: 1.7; border: none; padding: 0; margin: 0 0 15px; font-size: 0.95rem; }
.testimonial-author strong { display: block; color: #333; font-size: 1rem; }
.testimonial-author span { display: block; color: #777; font-size: 0.85rem; margin-top: 2px; }
.testimonial-industry { color: #6c587b !important; font-weight: 500; margin-top: 6px !important; }

/* Stat Cards */
.stat-card { padding: 30px 20px; }
.stat-number { font-size: 2.8rem; font-weight: 700; color: #6c587b; line-height: 1; }
.stat-label { font-size: 0.95rem; color: #666; margin-top: 8px; }

/* Comparison Table */
.comparison-table th { background: #f5f5f5; font-weight: 600; }
.comparison-highlight { background: rgba(108,88,123,0.06) !important; }

/* Feature Checklist */
.feature-checklist { list-style: none; padding: 0; }
.feature-checklist li { padding: 8px 0; border-bottom: 1px solid #f0f0f0; line-height: 1.6; }
.feature-checklist li:last-child { border-bottom: none; }
.feature-checklist .fa { width: 20px; margin-right: 8px; }

/* Tutorial Cards */
.tutorial-card { transition: transform 0.2s, box-shadow 0.2s; }
.tutorial-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.tutorial-card h3 { font-size: 1.1rem; margin: 10px 0 8px; }
.tutorial-card h3 a { color: #333; text-decoration: none; }
.tutorial-card h3 a:hover { color: #6c587b; }
.tutorial-card p { color: #666; font-size: 0.9rem; line-height: 1.6; }
.tutorial-meta { color: #999; font-size: 0.85rem; }
.tutorial-badge { display: inline-block; padding: 3px 10px; border-radius: 12px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; }
.tutorial-badge--beginner { background: #d4edda; color: #155724; }
.tutorial-badge--intermediate { background: #fff3cd; color: #856404; }
.tutorial-badge--advanced { background: #f8d7da; color: #721c24; }

/* Onboarding Steps */
.onboarding-step { display: flex; align-items: flex-start; margin-bottom: 30px; padding-bottom: 30px; border-bottom: 1px solid #eee; }
.onboarding-step:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.onboarding-step__number { flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; color: #fff; font-size: 1.3rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-right: 20px; margin-top: 2px; }
.onboarding-step__content h3 { margin-top: 0; margin-bottom: 8px; color: #333; }
.onboarding-step__content p { color: #555; line-height: 1.7; margin: 0; }

/* Timeline (Updates page) */
.timeline-container { position: relative; padding-left: 30px; }
.timeline-container::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 3px; background: #e0e0e0; border-radius: 2px; }
.timeline-item { position: relative; margin-bottom: 40px; padding-bottom: 20px; }
.timeline-item::before { content: ''; position: absolute; left: -26px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: #6c587b; border: 3px solid #fff; box-shadow: 0 0 0 2px #6c587b; }
.timeline-date { font-size: 0.9rem; color: #888; margin-bottom: 8px; }
.timeline-item h3 { color: #333; margin-bottom: 12px; }
.timeline-item ul { list-style: none; padding: 0; }
.timeline-item li { padding: 4px 0; color: #555; line-height: 1.6; }
.timeline-item li .fa { width: 18px; margin-right: 6px; }

@media (max-width: 767px) {
    .onboarding-step { flex-direction: column; }
    .onboarding-step__number { margin-bottom: 12px; margin-right: 0; }
    .stat-number { font-size: 2rem; }
    .timeline-container { padding-left: 25px; }
}

/* ========================================================================
   GLOBAL LAYOUT FIXES — prevent text overflow, box crossing, broken layouts
   ======================================================================== */

/* Prevent any element from overflowing its container */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

.container, .row, [class*="col-"] {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Fix text overflow in cards, panels, grid items */
.pricing-card, .demo-card, .contact-card, .testimonial-card, .tutorial-card,
.footer-usecase-card, .footer-navigation-card, .footer-trust-item, .footer-global-item,
.pricing-stack-card, .pricing-addon-card, .pricing-roadmap-step,
.standalone-card, .contact-form-card, .contact-method-card,
.blog-card, .faq-item, .stat-card, .onboarding-step {
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Ensure headings don't overflow */
h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Fix long URLs and strings */
a, p, span, li, td, th, label {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* ========================================================================
   MOBILE RESPONSIVE FIXES
   ======================================================================== */
@media (max-width: 767px) {
    /* Utility bar compact */
    .public-utility-bar__inner {
        flex-direction: column;
        padding: 6px 0;
        gap: 4px;
        text-align: center;
    }
    .public-utility-bar__message {
        display: none;
    }
    .public-utility-bar__actions {
        gap: 8px;
        justify-content: center;
        flex-wrap: wrap;
    }
    .public-pref-switchers {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Fixed navbar adjustments */
    .public-navbar.navbar-default {
        top: 30px;
        min-height: 56px;
    }
    .public-navbar .navbar-brand {
        height: 56px;
    }
    .info-page-content,
    .page-content-wrapper {
        padding-top: 100px;
    }
    .pricing-hero,
    .contact-hero,
    .features-hero,
    .demo-container,
    .info-page-content .page-hero,
    .info-page-content .info-page-hero {
        padding: 30px 15px;
    }
    .pricing-hero h1,
    .contact-hero h1,
    .info-page-content .page-hero h1,
    .info-page-content .info-page-hero h1 {
        font-size: 24px;
    }

    /* Footer fixes */
    .footer-cta-band__inner {
        flex-direction: column;
        text-align: center;
        padding: 24px 16px;
    }
    .footer-cta-band__actions {
        justify-content: center;
    }
    .footer-trust-strip__grid,
    .footer-usecase-strip__grid,
    .footer-navigation-strip__grid,
    .footer-global-strip__grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom .row {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    .footer-bottom .text-right {
        text-align: center !important;
    }
    .footer-legal-link {
        margin-left: 6px;
        margin-right: 6px;
    }
    .footer-links-row .col-sm-6 {
        margin-bottom: 20px;
    }

    /* Pricing grid */
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-roadmap-grid {
        grid-template-columns: 1fr;
    }
    .pricing-enterprise-cta__inner {
        flex-direction: column;
        text-align: center;
        padding: 24px 16px;
    }
    .pricing-enterprise-cta__actions {
        justify-content: center;
    }

    /* Demo cards */
    .demo-roles {
        flex-direction: column;
    }

    /* Navbar mobile */
    .public-nav-search {
        margin: 8px 15px;
    }
    .public-nav-search .form-control {
        width: 100%;
    }
    .public-nav-search .form-control:focus {
        width: 100%;
    }
    .public-nav-links {
        margin: 0;
    }
    .public-nav-action > a {
        margin: 4px 15px;
        display: block;
        text-align: center;
    }

    /* Table responsive */
    table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .public-navbar.navbar-default {
        top: 42px;
    }
    .info-page-content,
    .page-content-wrapper {
        padding-top: 130px;
    }
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .footer-trust-strip__grid,
    .footer-usecase-strip__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ========================================================================
   HERO AND SECTION CONTAINMENT
   ======================================================================== */
.pricing-hero, .contact-hero, .features-hero,
.info-page-content .page-hero, .info-page-content .info-page-hero {
    overflow: hidden;
    position: relative;
}

/* Ensure all sections contain their floats */
.footer-main::after,
.footer-bottom::after,
section::after {
    content: '';
    display: table;
    clear: both;
}

/* Fix image containment */
img {
    max-width: 100%;
    height: auto;
}

/* ========================================================================
   DROPDOWN MENU Z-INDEX FIX
   ======================================================================== */
.public-navbar .dropdown-menu {
    z-index: 1060;
}

/* ========================================================================
   NEWSLETTER & COMPLIANCE STRIP FIXES
   ======================================================================== */
.footer-newsletter-strip__inner {
    overflow: hidden;
}
.footer-newsletter-form {
    overflow: visible;
}
.footer-newsletter-input-group {
    display: flex;
    gap: 0;
    max-width: 480px;
}
.footer-newsletter-input-group .form-control {
    flex: 1;
    min-width: 0;
    border-radius: 8px 0 0 8px;
}
.footer-newsletter-input-group .btn {
    border-radius: 0 8px 8px 0;
    white-space: nowrap;
}

.footer-compliance-strip__links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

@media (max-width: 767px) {
    .footer-newsletter-strip__inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-newsletter-input-group {
        max-width: 100%;
    }
}
