:root {
    --saas-primary: #2563eb;
    --saas-primary-dark: #1d4ed8;
    --saas-primary-light: #3b82f6;
    --saas-primary-bg: #eff6ff;
    --saas-dark: #0f172a;
    --saas-gray: #64748b;
    --saas-light-gray: #f8fafc;
    --saas-border: #e2e8f0;
}
body.saas-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--saas-dark);
    background: #fff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
.saas-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--saas-border);
    transition: all 0.3s ease;
    padding: 0;
}
.saas-nav .navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--saas-dark);
    letter-spacing: -0.5px;
}
.saas-nav .navbar-brand span { color: var(--saas-primary); }
.saas-nav .nav-link {
    font-weight: 500;
    color: var(--saas-gray) !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s;
    font-size: 0.9rem;
}
.saas-nav .nav-link:hover,
.saas-nav .nav-link.active { color: var(--saas-primary) !important; }
.saas-nav .btn-demo {
    background: var(--saas-primary);
    color: #fff;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}
.saas-nav .btn-demo:hover {
    background: var(--saas-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}
.saas-nav .btn-login {
    background: transparent;
    color: var(--saas-dark);
    border: 1px solid var(--saas-border);
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    margin-right: 0.5rem;
}
.saas-nav .btn-login:hover {
    border-color: var(--saas-primary);
    color: var(--saas-primary);
}
.saas-nav .navbar-toggler {
    border: none;
    padding: 0.5rem;
}
.saas-nav .navbar-toggler:focus { box-shadow: none; }
.saas-nav .navbar-toggler-icon {
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(15,23,42,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.saas-page main { margin-top: 72px; }
.saas-page section { padding: 5rem 0; }
.section-title {
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--saas-gray);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}
.section-tag {
    display: inline-block;
    background: var(--saas-primary-bg);
    color: var(--saas-primary);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}
.gradient-text {
    background: linear-gradient(135deg, var(--saas-primary) 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.btn-saas-primary {
    background: var(--saas-primary);
    color: #fff;
    border: none;
    padding: 0.85rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}
.btn-saas-primary:hover {
    background: var(--saas-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,99,235,0.35);
    color: #fff;
}
.btn-saas-outline {
    background: transparent;
    color: var(--saas-dark);
    border: 2px solid var(--saas-border);
    padding: 0.85rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}
.btn-saas-outline:hover {
    border-color: var(--saas-primary);
    color: var(--saas-primary);
    transform: translateY(-2px);
}
.feature-card {
    background: #fff;
    border: 1px solid var(--saas-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: transparent;
}
.feature-card .icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    background: var(--saas-primary-bg);
    color: var(--saas-primary);
}
.feature-card h5 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}
.feature-card p {
    color: var(--saas-gray);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}
.bg-saas-light { background: var(--saas-light-gray); }
.hero-section {
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124,58,237,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-title {
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
}
.hero-desc {
    font-size: 1.15rem;
    color: var(--saas-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 540px;
}
.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--saas-border);
}
.hero-stats .stat h3 {
    font-weight: 800;
    font-size: 1.75rem;
    margin: 0;
    color: var(--saas-dark);
}
.hero-stats .stat p {
    color: var(--saas-gray);
    font-size: 0.85rem;
    margin: 0;
}
.hero-image-wrap { position: relative; }
.hero-image-wrap img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    border: 1px solid var(--saas-border);
}
.hero-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #fff;
    border: 1px solid var(--saas-border);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.hero-badge .badge-icon {
    font-size: 2rem;
    color: #10b981;
}
.trusted-section { padding: 3rem 0; }
.trusted-section p {
    color: var(--saas-gray);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.trusted-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.5;
}
.trusted-logos span {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--saas-gray);
}
/* ───── Hero Pricing Badge ───── */
.hero-pricing-badge {
    display: flex; align-items: center; flex-wrap: wrap;
    background: var(--saas-bg); border: 1px solid var(--saas-border);
    border-radius: 12px; padding: 0.6rem 1.2rem; gap: 0.25rem;
}
.hero-pricing-badge a { text-decoration: none; }
.hero-pricing-badge a:hover { text-decoration: underline; }

/* ───── Pricing Toggle ───── */
.pricing-toggle-wrap {
    display: flex; align-items: center; justify-content: center; gap: 1rem;
    margin-bottom: 2.5rem;
}
.toggle-track {
    width: 52px; height: 28px; border-radius: 14px;
    background: var(--saas-border); cursor: pointer;
    position: relative; transition: background 0.3s;
}
.toggle-thumb {
    width: 22px; height: 22px; border-radius: 50%;
    background: #fff; position: absolute; top: 3px; left: 3px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}
#billingToggle.annual .toggle-track { background: var(--saas-primary); }
#billingToggle.annual .toggle-thumb { transform: translateX(24px); }
.save-badge {
    background: #f0fdf4; color: #16a34a; font-size: 0.72rem;
    font-weight: 700; padding: 0.15rem 0.55rem; border-radius: 4px;
    margin-left: 0.25rem; vertical-align: middle;
}

.pricing-card {
    background: #fff;
    border: 1px solid var(--saas-border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.pricing-card.featured {
    border: 2px solid var(--saas-primary);
    box-shadow: 0 8px 40px rgba(37,99,235,0.12);
}
.pricing-card .popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--saas-primary);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 1.2rem;
    border-radius: 20px;
}
.pricing-card .price {
    font-weight: 800;
    font-size: 2.75rem;
    letter-spacing: -1px;
}
.pricing-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--saas-gray);
}
.pricing-card .features-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.pricing-card .features-list li {
    padding: 0.6rem 0;
    font-size: 0.9rem;
    color: var(--saas-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.pricing-card .features-list li i { color: #10b981; font-size: 1rem; }
.pricing-card .btn-pricing {
    width: 100%;
    padding: 0.8rem;
    border-radius: 10px;
    font-weight: 600;
    border: 2px solid var(--saas-border);
    background: transparent;
    color: var(--saas-dark);
    transition: all 0.3s;
    font-size: 0.95rem;
}
.pricing-card .btn-pricing:hover {
    border-color: var(--saas-primary);
    color: var(--saas-primary);
}
.pricing-card.featured .btn-pricing {
    background: var(--saas-primary);
    border-color: var(--saas-primary);
    color: #fff;
}
.pricing-card.featured .btn-pricing:hover {
    background: var(--saas-primary-dark);
    box-shadow: 0 4px 15px rgba(37,99,235,0.3);
}
.testimonial-card {
    background: #fff;
    border: 1px solid var(--saas-border);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s;
}
.testimonial-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.testimonial-card .stars { color: #f59e0b; margin-bottom: 1rem; }
.testimonial-card blockquote {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--saas-gray);
    font-style: italic;
    margin-bottom: 1.5rem;
}
.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.testimonial-card .author .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--saas-primary-bg);
    color: var(--saas-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}
.testimonial-card .author strong { font-size: 0.9rem; }
.testimonial-card .author small { color: var(--saas-gray); font-size: 0.8rem; }
.faq-card {
    border: 1px solid var(--saas-border);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.faq-card .faq-header {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
    background: #fff;
    transition: background 0.2s;
}
.faq-card .faq-header:hover { background: var(--saas-light-gray); }
.faq-card .faq-body {
    padding: 0 1.5rem 1.25rem;
    color: var(--saas-gray);
    font-size: 0.9rem;
    line-height: 1.7;
}
.faq-card .faq-header i { transition: transform 0.3s; color: var(--saas-gray); }
.faq-card .faq-header[aria-expanded="true"] i { transform: rotate(180deg); }
.cta-section {
    background: linear-gradient(135deg, var(--saas-primary) 0%, #1e40af 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
}
.cta-section h2 {
    font-weight: 800;
    font-size: 2.5rem;
    color: #fff;
}
.cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 1rem auto 2rem;
}
.cta-section .btn-cta {
    background: #fff;
    color: var(--saas-primary);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s;
}
.cta-section .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.cta-section .btn-cta-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
}
.cta-section .btn-cta-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}
.saas-footer {
    background: var(--saas-dark);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 2rem;
}
.saas-footer h5 {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}
.saas-footer a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    padding: 0.3rem 0;
    transition: color 0.2s;
}
.saas-footer a:hover { color: #fff; }
.saas-footer .brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}
.saas-footer .brand span { color: var(--saas-primary-light); }
.saas-footer .social a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    margin-right: 0.5rem;
    transition: all 0.2s;
}
.saas-footer .social a:hover { background: var(--saas-primary); color: #fff; }
.saas-footer .copyright {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
    margin-top: 3rem;
    font-size: 0.85rem;
}
.feature-page-header {
    background: var(--saas-light-gray);
    padding: 6rem 0 4rem;
}
.feature-detail-card {
    border: 1px solid var(--saas-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s;
    height: 100%;
}
.feature-detail-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.feature-detail-card .icon-lg {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    background: var(--saas-primary-bg);
    color: var(--saas-primary);
}
.feature-detail-card h4 { font-weight: 700; margin-bottom: 1rem; }
.feature-detail-card p { color: var(--saas-gray); line-height: 1.7; }
.industry-card {
    border: 1px solid var(--saas-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}
.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.industry-card .icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.25rem;
    background: var(--saas-primary-bg);
    color: var(--saas-primary);
}
.industry-card h5 { font-weight: 700; }
.industry-card p { color: var(--saas-gray); font-size: 0.9rem; }
.page-banner {
    background: linear-gradient(135deg, var(--saas-dark) 0%, #1e293b 100%);
    padding: 8rem 0 4rem;
    color: #fff;
}
.page-banner h1 { font-weight: 800; font-size: 3rem; letter-spacing: -1px; }
.page-banner p { color: rgba(255,255,255,0.7); max-width: 500px; }
.contact-form-wrap {
    border: 1px solid var(--saas-border);
    border-radius: 20px;
    padding: 2.5rem;
}
.contact-form-wrap .form-control, .contact-form-wrap .form-select {
    border-radius: 10px;
    padding: 0.75rem 1rem;
    border: 1px solid var(--saas-border);
    font-size: 0.95rem;
}
.contact-form-wrap .form-control:focus, .contact-form-wrap .form-select:focus {
    border-color: var(--saas-primary);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.contact-info-card {
    border: 1px solid var(--saas-border);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}
.contact-info-card .icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--saas-primary-bg);
    color: var(--saas-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}
.contact-info-card h6 { font-weight: 700; margin-bottom: 0.25rem; }
.contact-info-card p { color: var(--saas-gray); font-size: 0.9rem; margin: 0; }
.why-card {
    border: 1px solid var(--saas-border);
    border-radius: 16px;
    padding: 1.75rem;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}
.why-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}
.why-card .num {
    font-weight: 800;
    font-size: 2rem;
    color: var(--saas-primary);
    opacity: 0.2;
    margin-bottom: 0.5rem;
}
.why-card h5 { font-weight: 700; margin-bottom: 0.75rem; }
.why-card p { color: var(--saas-gray); font-size: 0.9rem; line-height: 1.7; margin: 0; }
.about-values { display: flex; gap: 2rem; flex-wrap: wrap; }
.about-values .value-item {
    flex: 1;
    min-width: 200px;
    padding: 1.5rem;
    border: 1px solid var(--saas-border);
    border-radius: 12px;
    text-align: center;
}
.about-values .value-item h4 { font-weight: 800; color: var(--saas-primary); font-size: 2rem; }
.about-values .value-item p { color: var(--saas-gray); font-size: 0.85rem; margin: 0; }
.demo-form-wrap {
    background: #fff;
    border: 1px solid var(--saas-border);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}
.navbar-collapse.show .btn-login, .navbar-collapse.show .btn-demo { display: inline-block; margin: 0.5rem 0; }
.dashboard-preview {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--saas-border);
}
.badge-saas {
    background: var(--saas-primary-bg);
    color: var(--saas-primary);
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.3rem 0.75rem;
    border-radius: 6px;
}
@media (max-width: 991.98px) {
    .hero-title { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
    .hero-stats .stat h3 { font-size: 1.5rem; }
    .saas-page section { padding: 3rem 0; }
    .saas-nav .navbar-collapse {
        background: #fff;
        padding: 1rem;
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.08);
        margin-top: 0.5rem;
    }
    .cta-section h2 { font-size: 2rem; }
    .page-banner { padding: 6rem 0 3rem; }
    .page-banner h1 { font-size: 2.25rem; }
}
@media (max-width: 767.98px) {
    .hero-title { font-size: 2rem; }
    .hero-section { padding: 6rem 0 3rem; }
    .hero-stats { flex-direction: column; gap: 1rem; }
    .hero-badge { display: none; }
    .section-title { font-size: 1.75rem; }
    .pricing-card { padding: 2rem 1.5rem; }
    .cta-section .btn-cta, .cta-section .btn-cta-outline { display: block; width: 100%; margin: 0.5rem 0; }
    .trusted-logos { gap: 1.5rem; }
}
.fw600 { font-weight: 600; }

/* ───── Problem Pain-Point Cards ───── */
.problem-card {
    background: #fff;
    border: 1px solid var(--saas-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ef4444, #f59e0b);
    opacity: 0;
    transition: opacity 0.3s;
}
.problem-card:hover::before { opacity: 1; }
.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(239,68,68,0.08);
}
.problem-card .problem-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.25rem;
    background: #fef2f2;
    color: #ef4444;
}
.problem-card h5 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}
.problem-card p {
    color: var(--saas-gray);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* ───── Step / How-It-Works Cards ───── */
.step-card {
    text-align: center;
    position: relative;
    height: 100%;
}
.step-card .step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    margin: 0 auto 1.25rem;
    background: var(--saas-primary);
    color: #fff;
    position: relative;
    z-index: 1;
}
.step-card .step-line {
    position: absolute;
    top: 28px;
    left: calc(50% + 36px);
    right: calc(-50% + 36px);
    height: 2px;
    background: var(--saas-border);
    z-index: 0;
}
.step-card:last-child .step-line { display: none; }
.step-card .step-icon {
    font-size: 1.75rem;
    color: var(--saas-primary);
    margin-bottom: 0.75rem;
}
.step-card h5 {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}
.step-card p {
    color: var(--saas-gray);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
    max-width: 260px;
    margin: 0 auto;
}
@media (max-width: 767.98px) {
    .step-card .step-line { display: none; }
    .step-card { margin-bottom: 2rem; }
}

/* ───── Pricing Teaser Card ───── */
.pricing-teaser {
    background: linear-gradient(135deg, var(--saas-dark) 0%, #1e293b 100%);
    border-radius: 20px;
    padding: 3rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.pricing-teaser::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37,99,235,0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.pricing-teaser .price-big {
    font-weight: 800;
    font-size: 3rem;
    letter-spacing: -1px;
}
.pricing-teaser .price-big span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
}
.pricing-teaser .price-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}
.pricing-teaser .price-feature i {
    color: #10b981;
    font-size: 1.1rem;
}

/* ───── Broker Hero Mods ───── */
.broker-hero .hero-title {
    font-size: 3.25rem;
}
.broker-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    padding: 0.15rem 0.75rem;
    border-radius: 8px;
}
.hinglish-tag {
    display: inline-block;
    background: #fef3c7;
    color: #d97706;
    font-weight: 700;
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
@media (max-width: 991.98px) {
    .broker-hero .hero-title { font-size: 2.25rem; }
    .pricing-teaser { padding: 2rem; }
    .pricing-teaser .price-big { font-size: 2.25rem; }
}
@media (max-width: 767.98px) {
    .broker-hero .hero-title { font-size: 1.85rem; }
    .pricing-teaser { padding: 1.5rem; }
}

/* ───── 4-Column Pricing ───── */
.pricing-card-4 {
    background: #fff;
    border: 1px solid var(--saas-border);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}
.pricing-card-4:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.pricing-card-4.featured {
    border: 2px solid var(--saas-primary);
    box-shadow: 0 8px 40px rgba(37,99,235,0.12);
    transform: scale(1.04);
    z-index: 2;
}
.pricing-card-4.featured:hover {
    transform: scale(1.04) translateY(-4px);
}
.pricing-card-4 .popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--saas-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 1.2rem;
    border-radius: 20px;
    white-space: nowrap;
}
.pricing-card-4 .value-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: #f59e0b;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 1.2rem;
    border-radius: 20px;
    white-space: nowrap;
}
.pricing-card-4 .price {
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: -1px;
    line-height: 1;
}
.pricing-card-4 .price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--saas-gray);
}
.pricing-card-4 .price-sub {
    color: var(--saas-gray);
    font-size: 0.8rem;
    margin-top: 0.25rem;
}
.pricing-card-4 .features-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    flex: 1;
}
.pricing-card-4 .features-list li {
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: var(--saas-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.pricing-card-4 .features-list li i.bi-check-lg { color: #10b981; font-size: 0.9rem; }
.pricing-card-4 .features-list li i.bi-x-lg { color: #ef4444; font-size: 0.9rem; }
.pricing-card-4 .btn-pricing {
    width: 100%;
    padding: 0.8rem;
    border-radius: 10px;
    font-weight: 600;
    border: 2px solid var(--saas-border);
    background: transparent;
    color: var(--saas-dark);
    transition: all 0.3s;
    font-size: 0.9rem;
    text-align: center;
    display: block;
    text-decoration: none;
}
.pricing-card-4 .btn-pricing:hover {
    border-color: var(--saas-primary);
    color: var(--saas-primary);
}
.pricing-card-4.featured .btn-pricing {
    background: var(--saas-primary);
    border-color: var(--saas-primary);
    color: #fff;
}
.pricing-card-4.featured .btn-pricing:hover {
    background: var(--saas-primary-dark);
    box-shadow: 0 4px 15px rgba(37,99,235,0.3);
}
.pricing-card-4 .plan-subtitle {
    color: var(--saas-gray);
    font-size: 0.85rem;
    min-height: 2.5rem;
}
.pricing-card-4 .plan-tagline {
    font-size: 0.85rem;
    color: var(--saas-gray);
    margin-bottom: 1.25rem;
}
@media (max-width: 991.98px) {
    .pricing-card-4.featured { transform: none; }
    .pricing-card-4.featured:hover { transform: translateY(-4px); }
    .pricing-card-4 .price { font-size: 2rem; }
}

/* ───── Enterprise Card ───── */
.enterprise-card {
    background: linear-gradient(135deg, var(--saas-dark) 0%, #1e293b 100%);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.enterprise-card::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.enterprise-card .price-custom {
    font-weight: 800;
    font-size: 1.75rem;
}
.enterprise-card .features-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    flex: 1;
}
.enterprise-card .features-list li {
    padding: 0.5rem 0;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.85);
}
.enterprise-card .features-list li i { color: #10b981; font-size: 0.9rem; }
.enterprise-card .btn-enterprise {
    width: 100%;
    padding: 0.8rem;
    border-radius: 10px;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.3);
    background: transparent;
    color: #fff;
    transition: all 0.3s;
    font-size: 0.9rem;
    text-align: center;
    display: block;
    text-decoration: none;
    cursor: pointer;
}
.enterprise-card .btn-enterprise:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

/* ───── Comparison Table ───── */
.pricing-comp-table {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--saas-border);
}
.pricing-comp-table table { margin: 0; }
.pricing-comp-table th {
    padding: 1rem;
    font-weight: 700;
    font-size: 0.85rem;
    background: var(--saas-light-gray);
    border-bottom: 2px solid var(--saas-border);
    vertical-align: middle;
}
.pricing-comp-table td {
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--saas-border);
    vertical-align: middle;
}
.pricing-comp-table tr:last-child td { border-bottom: none; }
.pricing-comp-table .feature-name {
    font-weight: 500;
    color: var(--saas-dark);
}
.pricing-comp-table .feature-category {
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--saas-gray);
    background: var(--saas-light-gray);
}
.pricing-comp-table .col-professional {
    background: var(--saas-primary-bg);
}
.pricing-comp-table .ic-check { color: #10b981; font-size: 1rem; }
.pricing-comp-table .ic-cross { color: #ef4444; font-size: 1rem; }
.pricing-comp-table .ic-minus { color: var(--saas-border); font-size: 1rem; }
.pricing-comp-table .plan-header { text-align: center; }
.pricing-comp-table .plan-header .plan-name { font-weight: 700; font-size: 0.9rem; }
.pricing-comp-table .plan-header .plan-price { font-size: 0.8rem; color: var(--saas-gray); }

/* ───── Pricing FAQ ───── */
.pricing-faq .faq-card {
    background: #fff;
}
.pricing-faq .faq-card .faq-header {
    font-size: 0.95rem;
}

/* ───── Comparison Page ───── */
.comp-header { padding: 6rem 0 3rem; }
.comp-hero-icon {
    width: 64px; height: 64px; border-radius: 16px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.75rem; margin-bottom: 1rem;
}
.comp-hero-icon.bhoomi9 { background: var(--saas-primary-bg); color: var(--saas-primary); }
.comp-table-wrap {
    border-radius: 16px; overflow: hidden;
    border: 1px solid var(--saas-border);
}
.comp-table { margin: 0; font-size: 0.85rem; }
.comp-table thead th {
    padding: 1rem 0.75rem; font-weight: 700; font-size: 0.8rem;
    text-align: center; vertical-align: middle;
    background: var(--saas-light-gray);
    border-bottom: 2px solid var(--saas-border);
}
.comp-table thead th:first-child {
    text-align: left; width: 28%;
    background: var(--saas-light-gray);
}
.comp-table thead th .vendor-name { font-size: 0.9rem; }
.comp-table thead th .vendor-sub { font-size: 0.7rem; color: var(--saas-gray); font-weight: 400; }
.comp-table thead th.bhoomi9-head {
    background: var(--saas-primary-bg); color: var(--saas-primary);
}
.comp-table td {
    padding: 0.65rem 0.75rem; text-align: center;
    border-bottom: 1px solid var(--saas-border); vertical-align: middle;
}
.comp-table td:first-child {
    text-align: left; font-weight: 500;
    background: #fff;
}
.comp-table .cat-row td {
    font-weight: 700; font-size: 0.7rem;
    text-transform: uppercase; letter-spacing: 0.5px;
    color: var(--saas-gray); background: var(--saas-light-gray) !important;
    text-align: left; padding: 0.5rem 0.75rem;
}
.comp-table .ic-win { color: #10b981; font-size: 1.1rem; }
.comp-table .ic-miss { color: #ef4444; font-size: 1.1rem; }
.comp-table .ic-partial { color: #f59e0b; font-size: 1.1rem; }
.comp-table .ic-neutral { color: #94a3b8; font-size: 1.1rem; }
.comp-table .cell-text { font-size: 0.78rem; color: var(--saas-gray); }
.comp-table .highlight-note {
    display: inline-block; font-size: 0.65rem; font-weight: 600;
    padding: 0.15rem 0.5rem; border-radius: 4px; margin-top: 0.15rem;
}
.comp-table .highlight-note.bhoomi9-only {
    background: var(--saas-primary-bg); color: var(--saas-primary);
}
.comp-table .highlight-note.missing { background: #fef2f2; color: #ef4444; }

.comp-wins {
    display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center;
    margin-top: 2rem;
}
.comp-wins .win-card {
    background: #fff; border: 1px solid var(--saas-border);
    border-radius: 16px; padding: 1.5rem 2rem; text-align: center;
    min-width: 160px; flex: 1;
}
.comp-wins .win-card .win-num {
    font-weight: 800; font-size: 2.5rem;
    background: linear-gradient(135deg, var(--saas-primary), #7c3aed);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.comp-wins .win-card .win-label { font-size: 0.8rem; color: var(--saas-gray); margin-top: 0.25rem; }

/* ───── Pricing Comparison Cards ───── */
.pricing-compare-row {
    display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
}
.pricing-compare-card {
    flex: 1; min-width: 180px; max-width: 240px;
    background: #fff; border: 1px solid var(--saas-border);
    border-radius: 16px; padding: 1.5rem; text-align: center;
    transition: all 0.3s;
}
.pricing-compare-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.pricing-compare-card.bhoomi9 {
    border: 2px solid var(--saas-primary);
    box-shadow: 0 4px 20px rgba(37,99,235,0.1);
}
.pricing-compare-card .vendor-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.25rem; margin-bottom: 0.75rem;
}
.pricing-compare-card .vendor-icon.bhoomi9 { background: var(--saas-primary-bg); color: var(--saas-primary); }
.pricing-compare-card .vendor-icon.other { background: var(--saas-light-gray); color: var(--saas-gray); }
.pricing-compare-card .cp-name { font-weight: 700; font-size: 0.9rem; }
.pricing-compare-card .cp-price { font-weight: 800; font-size: 1.5rem; margin-top: 0.5rem; }
.pricing-compare-card .cp-price span { font-size: 0.8rem; font-weight: 400; color: var(--saas-gray); }
.pricing-compare-card .cp-sub { font-size: 0.75rem; color: var(--saas-gray); margin-top: 0.2rem; }
.pricing-compare-card .cp-annual { font-size: 0.75rem; color: var(--saas-gray); margin-top: 0.5rem; }
.pricing-compare-card .cp-roi {
    font-size: 0.7rem; color: var(--saas-primary); font-weight: 600;
    margin-top: 0.5rem; padding-top: 0.5rem; border-top: 1px solid var(--saas-border);
}

@media (max-width: 991.98px) {
    .comp-table { font-size: 0.78rem; }
    .comp-table thead th { font-size: 0.72rem; padding: 0.75rem 0.5rem; }
    .comp-table td { padding: 0.5rem; }
    .comp-table thead th .vendor-name { font-size: 0.8rem; }
}
@media (max-width: 767.98px) {
    .comp-table-wrap { border-radius: 8px; }
    .comp-table { font-size: 0.72rem; }
    .comp-table thead th { font-size: 0.65rem; padding: 0.5rem 0.3rem; }
    .comp-table td { padding: 0.4rem 0.3rem; }
    .comp-table .cell-text { font-size: 0.65rem; }
    .pricing-compare-card { min-width: 140px; }
}

/* ───── Case Studies ───── */
.cs-card {
    background: #fff; border: 1px solid var(--saas-border);
    border-radius: 20px; overflow: hidden;
    transition: all 0.3s; height: 100%;
}
.cs-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.cs-card .cs-img {
    height: 180px; display: flex; align-items: center;
    justify-content: center; position: relative; overflow: hidden;
}
.cs-card .cs-img .cs-badge {
    position: absolute; top: 1rem; left: 1rem;
    background: rgba(0,0,0,0.5); color: #fff;
    font-size: 0.7rem; font-weight: 600;
    padding: 0.25rem 0.75rem; border-radius: 20px;
}
.cs-card .cs-body { padding: 1.5rem; }
.cs-card .cs-body .cs-company { font-weight: 700; font-size: 1.1rem; }
.cs-card .cs-body .cs-meta { font-size: 0.8rem; color: var(--saas-gray); margin-top: 0.15rem; }
.cs-card .cs-body .cs-quote {
    font-style: italic; font-size: 0.9rem; color: var(--saas-gray);
    line-height: 1.6; padding: 1rem 0; margin: 1rem 0;
    border-top: 1px solid var(--saas-border);
    border-bottom: 1px solid var(--saas-border);
}
.cs-card .cs-body .cs-quote i { color: var(--saas-primary); opacity: 0.3; font-size: 1.25rem; }
.cs-card .cs-body .cs-quote .attribution { font-style: normal; font-size: 0.8rem; font-weight: 600; color: var(--saas-dark); margin-top: 0.5rem; }
.cs-card .cs-body .cs-quote .attribution small { font-weight: 400; color: var(--saas-gray); }

.cs-detail {
    background: #fff; border: 1px solid var(--saas-border);
    border-radius: 24px; overflow: hidden; margin-bottom: 3rem;
}
.cs-detail:last-child { margin-bottom: 0; }
.cs-detail .cs-hero {
    padding: 3rem; position: relative; overflow: hidden;
    display: flex; align-items: center; gap: 2rem;
}
.cs-detail .cs-hero .cs-logo {
    width: 80px; height: 80px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; flex-shrink: 0;
}
.cs-detail .cs-hero .cs-logo.small { background: var(--saas-primary-bg); color: var(--saas-primary); }
.cs-detail .cs-hero .cs-logo.medium { background: #f0fdf4; color: #16a34a; }
.cs-detail .cs-hero .cs-logo.large { background: #fef3c7; color: #d97706; }
.cs-detail .cs-hero .cs-hero-text .cs-company { font-weight: 800; font-size: 1.5rem; }
.cs-detail .cs-hero .cs-hero-text .cs-tagline { font-size: 0.9rem; color: var(--saas-gray); margin-top: 0.25rem; }
.cs-detail .cs-hero .cs-hero-badge {
    margin-left: auto; padding: 0.5rem 1.25rem; border-radius: 20px;
    font-weight: 700; font-size: 0.85rem; white-space: nowrap;
}
.cs-detail .cs-hero .cs-hero-badge.success { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
.cs-detail .cs-hero .cs-hero-badge.growth { background: var(--saas-primary-bg); color: var(--saas-primary); border: 1px solid #bfdbfe; }
.cs-detail .cs-hero .cs-hero-badge.enterprise { background: #fef3c7; color: #d97706; border: 1px solid #fde68a; }
.cs-detail .cs-section { padding: 0 3rem 2.5rem; }
.cs-detail .cs-section h4 { font-weight: 700; font-size: 1.05rem; margin-bottom: 0.75rem; }
.cs-detail .cs-section h4 i { margin-right: 0.5rem; }
.cs-detail .cs-section p { color: var(--saas-gray); line-height: 1.8; font-size: 0.95rem; }
.cs-detail .cs-metrics {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
}
.cs-detail .cs-metrics .cs-metric {
    background: var(--saas-light-gray); border-radius: 12px;
    padding: 1.25rem 1rem; text-align: center;
}
.cs-detail .cs-metrics .cs-metric .cs-m-value {
    font-weight: 800; font-size: 1.75rem; letter-spacing: -0.5px;
}
.cs-detail .cs-metrics .cs-metric .cs-m-value.green { color: #16a34a; }
.cs-detail .cs-metrics .cs-metric .cs-m-value.blue { color: var(--saas-primary); }
.cs-detail .cs-metrics .cs-metric .cs-m-value.amber { color: #d97706; }
.cs-detail .cs-metrics .cs-metric .cs-m-label { font-size: 0.78rem; color: var(--saas-gray); margin-top: 0.25rem; }

.cs-detail .cs-compare {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.cs-detail .cs-compare .cs-before {
    background: #fef2f2; border: 1px solid #fecaca;
    border-radius: 12px; padding: 1.25rem;
}
.cs-detail .cs-compare .cs-after {
    background: #f0fdf4; border: 1px solid #bbf7d0;
    border-radius: 12px; padding: 1.25rem;
}
.cs-detail .cs-compare .cs-before h5, .cs-detail .cs-compare .cs-after h5 {
    font-weight: 700; font-size: 0.85rem; margin-bottom: 0.5rem;
}
.cs-detail .cs-compare .cs-before h5 i { color: #ef4444; margin-right: 0.5rem; }
.cs-detail .cs-compare .cs-after h5 i { color: #16a34a; margin-right: 0.5rem; }
.cs-detail .cs-compare ul { list-style: none; padding: 0; margin: 0; }
.cs-detail .cs-compare ul li {
    font-size: 0.85rem; color: var(--saas-gray); padding: 0.3rem 0;
    display: flex; align-items: center; gap: 0.5rem;
}
.cs-detail .cs-compare ul li i { font-size: 0.8rem; }

.cs-detail .cs-quote-block {
    background: var(--saas-light-gray); border-radius: 12px;
    padding: 1.5rem 2rem; margin-top: 1rem;
    border-left: 4px solid var(--saas-primary);
    position: relative;
}
.cs-detail .cs-quote-block i.bi-quote {
    position: absolute; top: 1rem; left: 1rem;
    font-size: 1.5rem; color: var(--saas-primary); opacity: 0.15;
}
.cs-detail .cs-quote-block .quote-text {
    font-style: italic; font-size: 1rem; color: var(--saas-dark);
    line-height: 1.7; padding-left: 1.5rem;
}
.cs-detail .cs-quote-block .quote-author {
    font-weight: 600; font-size: 0.85rem; margin-top: 0.75rem; padding-left: 1.5rem;
}
.cs-detail .cs-quote-block .quote-author small { font-weight: 400; color: var(--saas-gray); }

@media (max-width: 991.98px) {
    .cs-detail .cs-hero { flex-direction: column; text-align: center; padding: 2rem; }
    .cs-detail .cs-hero .cs-hero-badge { margin-left: 0; }
    .cs-detail .cs-section { padding: 0 2rem 2rem; }
    .cs-detail .cs-compare { grid-template-columns: 1fr; }
}
@media (max-width: 767.98px) {
    .cs-detail { border-radius: 16px; }
    .cs-detail .cs-hero { padding: 1.5rem; }
    .cs-detail .cs-section { padding: 0 1.25rem 1.5rem; }
    .cs-detail .cs-metrics { grid-template-columns: repeat(2, 1fr); }
}

/* ───── Hinglish Testimonial Badge ───── */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #16a34a;
}

/* ───── Industry Deep-Dive Cards ───── */
.ind-deep {
    border-radius: 20px; overflow: hidden;
    border: 1px solid var(--saas-border);
    height: 100%; display: flex; flex-direction: column;
    transition: all 0.3s; background: #fff;
}
.ind-deep:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.ind-deep .ind-head {
    padding: 1.5rem 1.5rem 1rem;
    display: flex; align-items: center; gap: 1rem;
}
.ind-deep .ind-head .ind-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; flex-shrink: 0;
}
.ind-deep .ind-head .ind-name { font-weight: 700; font-size: 1.1rem; }
.ind-deep .ind-head .ind-badge {
    margin-left: auto; font-size: 0.65rem; font-weight: 700;
    padding: 0.2rem 0.6rem; border-radius: 4px;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.ind-deep .ind-body { padding: 0 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.ind-deep .ind-body .ind-label {
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.5px; margin-bottom: 0.3rem;
}
.ind-deep .ind-body p {
    font-size: 0.88rem; color: var(--saas-gray); line-height: 1.7;
    margin-bottom: 1rem;
}
.ind-deep .ind-body .ind-features {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem;
    margin-bottom: 1rem;
}
.ind-deep .ind-body .ind-features .ind-feat {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.82rem; color: var(--saas-dark);
}
.ind-deep .ind-body .ind-features .ind-feat i { font-size: 0.75rem; }
.ind-deep .ind-body .ind-example {
    background: var(--saas-light-gray); border-radius: 10px;
    padding: 0.85rem 1rem; margin-bottom: 1rem;
    font-size: 0.85rem; color: var(--saas-dark); line-height: 1.5;
    border-left: 3px solid;
}
.ind-deep .ind-body .ind-cta {
    margin-top: auto; display: inline-flex; align-items: center;
    gap: 0.5rem; font-weight: 600; font-size: 0.88rem;
    text-decoration: none; transition: all 0.2s;
}
.ind-deep .ind-body .ind-cta:hover { gap: 0.75rem; }
.ind-deep .ind-body .ind-cta i { font-size: 0.8rem; }

/* ───── Industry Colors ───── */
.ind-broker .ind-icon { background: #eff6ff; color: #2563eb; }
.ind-broker .ind-badge { background: #eff6ff; color: #2563eb; }
.ind-broker .ind-example { border-color: #2563eb; background: #eff6ff; }
.ind-broker .ind-cta { color: #2563eb; }

.ind-developer .ind-icon { background: #f0fdf4; color: #16a34a; }
.ind-developer .ind-badge { background: #f0fdf4; color: #16a34a; }
.ind-developer .ind-example { border-color: #16a34a; background: #f0fdf4; }
.ind-developer .ind-cta { color: #16a34a; }

.ind-channel .ind-icon { background: #fef3c7; color: #d97706; }
.ind-channel .ind-badge { background: #fef3c7; color: #d97706; }
.ind-channel .ind-example { border-color: #d97706; background: #fffbeb; }
.ind-channel .ind-cta { color: #d97706; }

.ind-nri .ind-icon { background: #f3e8ff; color: #8b5cf6; }
.ind-nri .ind-badge { background: #f3e8ff; color: #8b5cf6; }
.ind-nri .ind-example { border-color: #8b5cf6; background: #f3e8ff; }
.ind-nri .ind-cta { color: #8b5cf6; }

.ind-consultant .ind-icon { background: #f0fdfa; color: #0d9488; }
.ind-consultant .ind-badge { background: #f0fdfa; color: #0d9488; }
.ind-consultant .ind-example { border-color: #0d9488; background: #f0fdfa; }
.ind-consultant .ind-cta { color: #0d9488; }

.ind-investor .ind-icon { background: #fff1f2; color: #e11d48; }
.ind-investor .ind-badge { background: #fff1f2; color: #e11d48; }
.ind-investor .ind-example { border-color: #e11d48; background: #fff1f2; }
.ind-investor .ind-cta { color: #e11d48; }

@media (max-width: 767.98px) {
    .ind-deep .ind-body .ind-features { grid-template-columns: 1fr; }
    .ind-deep .ind-head { flex-wrap: wrap; }
    .ind-deep .ind-head .ind-badge { margin-left: 0; }
}

/* ───── About Page ───── */
.about-hero { padding: 6rem 0 3rem; }
.about-story p { color: var(--saas-gray); line-height: 1.9; font-size: 1.02rem; }

.about-val-card {
    border: 1px solid var(--saas-border); border-radius: 16px;
    padding: 1.75rem; height: 100%; transition: all 0.3s;
}
.about-val-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.about-val-card .val-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; margin-bottom: 1rem;
}
.about-val-card h5 { font-weight: 700; font-size: 1rem; margin-bottom: 0.5rem; }
.about-val-card p { color: var(--saas-gray); font-size: 0.88rem; line-height: 1.7; margin: 0; }

/* Timeline */
.about-timeline { position: relative; }
.about-timeline::before {
    content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
    width: 2px; background: var(--saas-border); transform: translateX(-50%);
}
.tl-item {
    display: flex; align-items: flex-start; margin-bottom: 2.5rem;
    position: relative;
}
.tl-item:last-child { margin-bottom: 0; }
.tl-item .tl-dot {
    position: absolute; left: 50%; top: 4px;
    width: 16px; height: 16px; border-radius: 50%;
    transform: translateX(-50%); z-index: 1;
    border: 3px solid #fff;
}
.tl-item .tl-content {
    width: calc(50% - 40px); padding: 1.25rem 1.5rem;
    border: 1px solid var(--saas-border); border-radius: 12px;
    background: #fff; transition: all 0.3s;
}
.tl-item .tl-content:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.tl-item .tl-content .tl-year {
    font-weight: 800; font-size: 1.1rem; margin-bottom: 0.25rem;
}
.tl-item .tl-content .tl-title { font-weight: 600; font-size: 0.9rem; }
.tl-item .tl-content .tl-desc { font-size: 0.82rem; color: var(--saas-gray); margin-top: 0.25rem; }
.tl-item:nth-child(odd) .tl-content { margin-right: auto; }
.tl-item:nth-child(even) .tl-content { margin-left: auto; }

@media (max-width: 767.98px) {
    .about-timeline::before { left: 20px; }
    .tl-item .tl-dot { left: 20px; }
    .tl-item .tl-content { width: calc(100% - 50px); margin-left: 50px !important; }
}

/* Team */
.team-card {
    border: 1px solid var(--saas-border); border-radius: 16px;
    padding: 2rem; text-align: center; height: 100%;
    transition: all 0.3s;
}
.team-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.06); transform: translateY(-3px); }
.team-card .team-avatar {
    width: 80px; height: 80px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.75rem; margin: 0 auto 1rem;
}
.team-card h5 { font-weight: 700; font-size: 1.05rem; margin-bottom: 0.15rem; }
.team-card .team-role { font-size: 0.82rem; color: var(--saas-gray); margin-bottom: 0.5rem; }
.team-card .team-bio { font-size: 0.82rem; color: var(--saas-gray); line-height: 1.6; }
.team-card .team-social { margin-top: 0.75rem; }
.team-card .team-social a {
    display: inline-flex; width: 32px; height: 32px; border-radius: 50%;
    align-items: center; justify-content: center;
    background: var(--saas-light-gray); color: var(--saas-gray);
    font-size: 0.85rem; transition: all 0.2s;
}
.team-card .team-social a:hover { background: var(--saas-primary); color: #fff; }

/* Why Choose */
.why-choose-card {
    border: 1px solid var(--saas-border); border-radius: 16px;
    padding: 2rem; text-align: center; height: 100%;
    transition: all 0.3s;
}
.why-choose-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.06); transform: translateY(-3px); }
.why-choose-card .wc-icon {
    width: 56px; height: 56px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin: 0 auto 1rem;
}
.why-choose-card h5 { font-weight: 700; font-size: 1rem; margin-bottom: 0.5rem; }
.why-choose-card p { color: var(--saas-gray); font-size: 0.85rem; line-height: 1.6; margin: 0; }

/* Commitment */
.commitment-card {
    border-radius: 16px; padding: 2rem; height: 100%;
    position: relative; overflow: hidden;
}
.commitment-card .cm-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; margin-bottom: 1rem;
}
.commitment-card h5 { font-weight: 700; font-size: 1rem; margin-bottom: 0.5rem; }
.commitment-card p { font-size: 0.88rem; line-height: 1.7; margin: 0; opacity: 0.9; }

/* ───── Security Page ───── */
.sec-badge-grid {
    display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
}
.sec-badge-item {
    display: flex; align-items: center; gap: 0.75rem;
    background: #fff; border: 1px solid var(--saas-border);
    border-radius: 12px; padding: 0.85rem 1.25rem;
    font-weight: 600; font-size: 0.9rem; min-width: 180px;
    transition: all 0.3s;
}
.sec-badge-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.sec-badge-item i { font-size: 1.35rem; flex-shrink: 0; }

.sec-infographic {
    background: linear-gradient(135deg, #eff6ff 0%, #eef2ff 100%);
    border: 1px solid var(--saas-border); border-radius: 20px;
    padding: 2.5rem 2rem; text-align: center;
}
.sec-infographic .sec-info-icon {
    width: 64px; height: 64px; border-radius: 16px;
    background: var(--saas-primary); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem; margin: 0 auto 1rem;
}
.sec-infographic h4 { font-weight: 800; font-size: 1.15rem; }
.sec-infographic p { color: var(--saas-gray); font-size: 0.88rem; margin: 0.25rem 0 0; line-height: 1.6; }

.sec-card {
    border: 1px solid var(--saas-border); border-radius: 16px;
    padding: 1.5rem; height: 100%; transition: all 0.3s;
    background: #fff;
}
.sec-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.sec-card .sec-card-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; margin-bottom: 1rem;
}
.sec-card h5 { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.5rem; }
.sec-card p { color: var(--saas-gray); font-size: 0.85rem; line-height: 1.65; margin: 0; }

.sec-list {
    list-style: none; padding: 0; margin: 0;
}
.sec-list li {
    display: flex; align-items: flex-start; gap: 0.75rem;
    padding: 0.85rem 0; border-bottom: 1px solid var(--saas-border);
    font-size: 0.9rem; line-height: 1.5;
}
.sec-list li:last-child { border-bottom: none; }
.sec-list li i { font-size: 1rem; margin-top: 0.15rem; flex-shrink: 0; }

.sec-cert-badge {
    display: inline-flex; align-items: center; gap: 0.75rem;
    background: #fff; border: 1px solid var(--saas-border);
    border-radius: 12px; padding: 1.25rem 1.5rem;
    width: 100%; height: 100%;
    transition: all 0.3s;
}
.sec-cert-badge:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.06); transform: translateY(-2px); }
.sec-cert-badge .cert-icon {
    width: 52px; height: 52px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; flex-shrink: 0;
}
.sec-cert-badge .cert-info h5 { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.15rem; }
.sec-cert-badge .cert-info p { color: var(--saas-gray); font-size: 0.82rem; margin: 0; }

.sec-timeline-item {
    display: flex; gap: 1.25rem; margin-bottom: 1.5rem;
}
.sec-timeline-item:last-child { margin-bottom: 0; }
.sec-timeline-item .st-marker {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 700; flex-shrink: 0;
    border: 3px solid #fff; position: relative; z-index: 1;
}
.sec-timeline-item .st-content { padding: 0.5rem 0 0; }
.sec-timeline-item .st-content .st-year { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.sec-timeline-item .st-content .st-title { font-weight: 700; font-size: 0.9rem; }
.sec-timeline-item .st-content .st-desc { color: var(--saas-gray); font-size: 0.82rem; line-height: 1.5; }

.sec-commit-card {
    border: 1px solid var(--saas-border); border-radius: 16px;
    padding: 2rem; text-align: center; height: 100%;
    transition: all 0.3s;
}
.sec-commit-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.06); transform: translateY(-3px); }
.sec-commit-card .sc-icon {
    width: 56px; height: 56px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin: 0 auto 1rem;
}
.sec-commit-card h5 { font-weight: 700; font-size: 1rem; margin-bottom: 0.5rem; }
.sec-commit-card p { color: var(--saas-gray); font-size: 0.85rem; line-height: 1.6; margin: 0; }

@media (max-width: 767.98px) {
    .sec-badge-item { min-width: 140px; font-size: 0.82rem; }
}

/* ───── Integrations Page ───── */
.int-card {
    border: 1px solid var(--saas-border); border-radius: 16px;
    padding: 1.5rem; height: 100%; transition: all 0.3s;
    background: #fff; display: flex; flex-direction: column;
}
.int-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-3px); }
.int-card .int-logo {
    width: 52px; height: 52px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem; font-weight: 800; flex-shrink: 0;
}
.int-card .int-name { font-weight: 700; font-size: 1rem; }
.int-card .int-desc { color: var(--saas-gray); font-size: 0.85rem; line-height: 1.5; flex: 1; }
.int-card .int-status { font-size: 0.78rem; font-weight: 600; }

.int-code-block {
    background: #0f172a; border-radius: 12px; padding: 1.25rem;
    color: #e2e8f0; font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 0.82rem; line-height: 1.6; overflow-x: auto;
    position: relative;
}
.int-code-block .code-comment { color: #64748b; }
.int-code-block .code-keyword { color: #93c5fd; }
.int-code-block .code-string { color: #86efac; }
.int-code-block .code-func { color: #fbbf24; }
.int-code-block .code-method { color: #c084fc; }
.int-code-block .code-copy {
    position: absolute; top: 0.75rem; right: 0.75rem;
    background: rgba(255,255,255,0.1); color: #94a3b8;
    border: none; border-radius: 6px; padding: 0.35rem 0.75rem;
    font-size: 0.75rem; cursor: pointer; transition: all 0.2s;
}
.int-code-block .code-copy:hover { background: rgba(255,255,255,0.2); color: #fff; }

.int-tab {
    padding: 0.65rem 1.25rem; border-radius: 10px;
    font-weight: 600; font-size: 0.85rem; cursor: pointer;
    border: 1px solid var(--saas-border); background: #fff;
    transition: all 0.2s; white-space: nowrap;
}
.int-tab:hover { border-color: var(--saas-primary); color: var(--saas-primary); }
.int-tab.active { background: var(--saas-primary); color: #fff; border-color: var(--saas-primary); }

.int-feature-tag {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: var(--saas-light-gray); border: 1px solid var(--saas-border);
    border-radius: 8px; padding: 0.35rem 0.75rem;
    font-size: 0.78rem; font-weight: 500; transition: all 0.2s;
}
.int-feature-tag:hover { border-color: var(--saas-primary); color: var(--saas-primary); }
.int-feature-tag i { font-size: 0.75rem; }

.int-sdk-item {
    display: flex; align-items: center; gap: 1rem;
    border: 1px solid var(--saas-border); border-radius: 12px;
    padding: 1.25rem; transition: all 0.3s;
}
.int-sdk-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.int-sdk-item .sdk-icon {
    width: 44px; height: 44px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; flex-shrink: 0;
}
.int-sdk-item .sdk-info h5 { font-weight: 700; font-size: 0.9rem; margin-bottom: 0.15rem; }
.int-sdk-item .sdk-info p { color: var(--saas-gray); font-size: 0.82rem; margin: 0; }

.int-vote {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.88rem;
}
.int-vote .vote-btn {
    width: 32px; height: 32px; border-radius: 8px;
    border: 1px solid var(--saas-border); background: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; cursor: pointer; transition: all 0.2s;
}
.int-vote .vote-btn:hover { background: var(--saas-primary-bg); border-color: var(--saas-primary); color: var(--saas-primary); }
.int-vote .vote-count { font-weight: 700; min-width: 1.5rem; text-align: center; }

.api-use-card {
    border: 1px solid var(--saas-border); border-radius: 16px;
    padding: 1.5rem; height: 100%; text-align: center;
    transition: all 0.3s;
}
.api-use-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.06); transform: translateY(-3px); }
.api-use-card .api-use-icon {
    width: 56px; height: 56px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin: 0 auto 1rem;
}
.api-use-card h5 { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.4rem; }
.api-use-card p { color: var(--saas-gray); font-size: 0.85rem; line-height: 1.5; margin: 0; }

/* ───── FAQ Page ───── */
.faq-search {
    position: relative; max-width: 600px; margin: 0 auto;
}
.faq-search input {
    width: 100%; padding: 1rem 1.25rem 1rem 3rem;
    border: 2px solid var(--saas-border); border-radius: 14px;
    font-size: 1rem; outline: none; transition: all 0.3s;
    background: #fff;
}
.faq-search input:focus { border-color: var(--saas-primary); box-shadow: 0 0 0 4px rgba(37,99,235,0.1); }
.faq-search i {
    position: absolute; left: 1.1rem; top: 50%; transform: translateY(-50%);
    font-size: 1.2rem; color: var(--saas-gray);
}

.faq-cat-tabs {
    display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center;
}
.faq-cat-tab {
    padding: 0.6rem 1.25rem; border-radius: 10px;
    font-weight: 600; font-size: 0.82rem; cursor: pointer;
    border: 1px solid var(--saas-border); background: #fff;
    transition: all 0.2s; white-space: nowrap;
}
.faq-cat-tab:hover { border-color: var(--saas-primary); color: var(--saas-primary); }
.faq-cat-tab.active { background: var(--saas-primary); color: #fff; border-color: var(--saas-primary); }

.faq-category { margin-bottom: 2.5rem; }
.faq-category:last-child { margin-bottom: 0; }

.faq-accordion-item {
    border: 1px solid var(--saas-border); border-radius: 14px;
    margin-bottom: 0.75rem; overflow: hidden; transition: all 0.3s;
    background: #fff;
}
.faq-accordion-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.04); }
.faq-accordion-item.hidden { display: none; }

.faq-question {
    width: 100%; border: none; background: transparent;
    padding: 1.1rem 1.25rem; text-align: left;
    font-weight: 600; font-size: 0.95rem; color: var(--saas-dark);
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; cursor: pointer; transition: all 0.2s;
    font-family: inherit; line-height: 1.4;
}
.faq-question:hover { color: var(--saas-primary); }
.faq-question i { font-size: 0.9rem; transition: transform 0.3s; color: var(--saas-gray); }
.faq-question[aria-expanded="true"] i { transform: rotate(180deg); color: var(--saas-primary); }

.faq-answer {
    padding: 0 1.25rem 1.1rem; font-size: 0.9rem;
    color: var(--saas-gray); line-height: 1.7;
}
.faq-answer a { color: var(--saas-primary); font-weight: 600; }

.faq-no-results {
    text-align: center; padding: 3rem 1rem; display: none;
}
.faq-no-results i { font-size: 3rem; color: var(--saas-border); }
.faq-no-results h5 { font-weight: 700; margin-top: 1rem; }

/* ───── Testimonials Page ───── */
.test-video-card {
    border: 1px solid var(--saas-border); border-radius: 16px;
    overflow: hidden; height: 100%; transition: all 0.3s;
    background: #fff;
}
.test-video-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-3px); }
.test-video-card .tv-thumb {
    position: relative; aspect-ratio: 16/9; background: var(--saas-light-gray);
    display: flex; align-items: center; justify-content: center;
}
.test-video-card .tv-thumb .play-btn {
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(37,99,235,0.9); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; transition: all 0.3s; cursor: pointer;
}
.test-video-card .tv-thumb .play-btn:hover { transform: scale(1.1); background: var(--saas-primary); }
.test-video-card .tv-body { padding: 1.25rem; }
.test-video-card .tv-body .tv-name { font-weight: 700; font-size: 0.95rem; }
.test-video-card .tv-body .tv-role { color: var(--saas-gray); font-size: 0.82rem; }
.test-video-card .tv-body .tv-company { font-weight: 600; font-size: 0.85rem; color: var(--saas-primary); }

.test-card {
    border: 1px solid var(--saas-border); border-radius: 16px;
    padding: 1.75rem; height: 100%; transition: all 0.3s;
    background: #fff; display: flex; flex-direction: column;
}
.test-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.test-card .tc-avatar {
    width: 52px; height: 52px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.15rem; flex-shrink: 0;
}
.test-card .tc-quote {
    font-size: 0.9rem; line-height: 1.7; color: var(--saas-dark);
    font-style: italic; flex: 1; margin: 0.75rem 0 1rem;
    position: relative; padding-left: 1.25rem;
    border-left: 3px solid var(--saas-primary-bg);
}
.test-card .tc-name { font-weight: 700; font-size: 0.9rem; margin-bottom: 0.1rem; }
.test-card .tc-role { color: var(--saas-gray); font-size: 0.8rem; }
.test-card .tc-company { font-weight: 600; font-size: 0.82rem; color: var(--saas-primary); }
.test-card .tc-tag {
    display: inline-block; font-size: 0.68rem; font-weight: 600;
    padding: 0.2rem 0.6rem; border-radius: 4px; text-transform: uppercase;
    letter-spacing: 0.3px;
}

.test-success-card {
    border: 1px solid var(--saas-border); border-radius: 16px;
    overflow: hidden; height: 100%; transition: all 0.3s;
    background: #fff;
}
.test-success-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-3px); }
.test-success-card .ts-thumb {
    aspect-ratio: 16/9; display: flex; align-items: center;
    justify-content: center; position: relative;
}
.test-success-card .ts-body { padding: 1.25rem; }
.test-success-card .ts-body .ts-metric {
    font-weight: 800; font-size: 1.35rem; margin-bottom: 0.3rem;
}
.test-success-card .ts-body p { color: var(--saas-gray); font-size: 0.85rem; line-height: 1.5; margin-bottom: 0.75rem; }

.test-stat-card {
    text-align: center; padding: 2rem 1rem;
    border: 1px solid var(--saas-border); border-radius: 16px;
    height: 100%; transition: all 0.3s; background: #fff;
}
.test-stat-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.test-stat-card .stat-num {
    font-weight: 800; font-size: 2.25rem; letter-spacing: -1px;
}
.test-stat-card .stat-label { color: var(--saas-gray); font-size: 0.9rem; font-weight: 500; margin-top: 0.25rem; }
.test-stat-card .stat-sub { color: var(--saas-gray); font-size: 0.78rem; margin-top: 0.15rem; }

.test-badge {
    display: inline-flex; align-items: center; gap: 0.75rem;
    border: 1px solid var(--saas-border); border-radius: 12px;
    padding: 1rem 1.25rem; background: #fff; min-width: 180px;
    transition: all 0.3s;
}
.test-badge:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.test-badge .tb-icon {
    width: 44px; height: 44px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; flex-shrink: 0;
}
.test-badge .tb-info h5 { font-weight: 700; font-size: 0.85rem; margin-bottom: 0.1rem; }
.test-badge .tb-info p { color: var(--saas-gray); font-size: 0.75rem; margin: 0; }

.test-pub {
    display: flex; align-items: center; gap: 1rem;
    border: 1px solid var(--saas-border); border-radius: 12px;
    padding: 1rem 1.5rem; transition: all 0.3s;
}
.test-pub:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.test-pub .pub-icon {
    width: 48px; height: 48px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; flex-shrink: 0;
}
.test-pub .pub-info h5 { font-weight: 700; font-size: 0.9rem; margin-bottom: 0.1rem; }
.test-pub .pub-info p { color: var(--saas-gray); font-size: 0.82rem; margin: 0; }

@media (max-width: 767.98px) {
    .test-badge { min-width: 140px; }
}

/* ───── Header: Mobile Nav ───── */
.saas-nav .navbar-collapse.show {
    background: #fff; padding: 1rem;
    border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    margin-top: 0.5rem;
}
@@media (max-width: 991.98px) {
    .saas-nav .navbar-collapse .nav-link { padding: 0.6rem 0.75rem !important; font-size: 0.95rem; }
    .saas-nav-actions { display: none !important; }
}

/* ───── Header: Sticky shadow ───── */
.saas-nav-scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }

/* ───── Error Pages ───── */
.err-icon {
    width: 96px; height: 96px; border-radius: 24px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; margin: 0 auto 1.5rem;
}
.err-code { font-weight: 800; font-size: 3.5rem; letter-spacing: -2px; line-height: 1.1; }
.err-heading { font-size: 1.25rem; font-weight: 600; color: var(--saas-dark); margin-bottom: 0.25rem; }
.err-desc { color: var(--saas-gray); font-size: 1rem; max-width: 450px; margin: 0 auto; }
.err-funny { color: var(--saas-gray); font-size: 0.9rem; font-style: italic; }

/* ───── Trial / Onboarding Page ───── */
.trial-hero {
    padding: 5rem 0 3rem; position: relative; overflow: hidden;
}
.trial-hero::before {
    content: ''; position: absolute; top: -30%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none;
}
.trial-step {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1rem; border-radius: 12px;
    transition: all 0.3s;
}
.trial-step:hover { background: var(--saas-light-gray); }
.trial-step .ts-num {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--saas-primary); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}
.trial-step .ts-content h5 { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.15rem; }
.trial-step .ts-content p { color: var(--saas-gray); font-size: 0.85rem; margin: 0; line-height: 1.5; }

.trial-benefit {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.75rem 0;
}
.trial-benefit i { font-size: 1.1rem; flex-shrink: 0; }

.trial-email-item {
    display: flex; gap: 0.75rem; align-items: flex-start;
    border-left: 2px solid var(--saas-border); padding: 0.6rem 0 0.6rem 1.25rem;
    position: relative;
}
.trial-email-item::before {
    content: ''; position: absolute; left: -5px; top: 12px;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--saas-primary);
}
.trial-email-item .te-day {
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.5px; color: var(--saas-primary); min-width: 55px;
}
.trial-email-item .te-subject { font-weight: 600; font-size: 0.85rem; }
.trial-email-item .te-desc { color: var(--saas-gray); font-size: 0.8rem; }

.welcome-card {
    border: 1px solid var(--saas-border); border-radius: 16px;
    padding: 1.5rem; height: 100%; transition: all 0.3s;
    cursor: pointer; background: #fff;
}
.welcome-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); border-color: var(--saas-primary); }
.welcome-card .wc-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; margin-bottom: 0.75rem;
}
.welcome-card h5 { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.3rem; }
.welcome-card p { color: var(--saas-gray); font-size: 0.85rem; line-height: 1.5; margin: 0; }
.welcome-card .wc-status {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.75rem; font-weight: 600; margin-top: 0.75rem;
}

.welcome-progress {
    display: flex; justify-content: space-between; position: relative;
    margin-bottom: 3rem;
}
.welcome-progress::before {
    content: ''; position: absolute; top: 14px; left: 30px; right: 30px;
    height: 2px; background: var(--saas-border); z-index: 0;
}
.welcome-progress .wp-step {
    text-align: center; position: relative; z-index: 1;
    flex: 1;
}
.welcome-progress .wp-step .wp-dot {
    width: 30px; height: 30px; border-radius: 50%;
    background: #fff; border: 2px solid var(--saas-border);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; font-weight: 700; margin: 0 auto 0.5rem;
    position: relative; z-index: 1;
}
.welcome-progress .wp-step.completed .wp-dot { background: var(--saas-primary); border-color: var(--saas-primary); color: #fff; }
.welcome-progress .wp-step.active .wp-dot { border-color: var(--saas-primary); color: var(--saas-primary); }
.welcome-progress .wp-step .wp-label { font-size: 0.72rem; font-weight: 600; color: var(--saas-gray); }

@media (max-width: 767.98px) {
    .welcome-progress { flex-direction: column; gap: 0.75rem; }
    .welcome-progress::before { display: none; }
    .welcome-progress .wp-step { display: flex; align-items: center; gap: 0.75rem; text-align: left; }
    .welcome-progress .wp-step .wp-dot { margin: 0; }
}
