@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --bg-dark: #f8fafc;
    /* Premium light off-white */
    --bg-card: #ffffff;
    --bg-card-hover: #ffffff;
    --border-color: rgba(15, 58, 97, 0.08);
    --border-color-glow: rgba(15, 58, 97, 0.25);

    --primary: #0f3a61;
    /* Deep CRM Pro Blue */
    --primary-hover: #071f35;
    --primary-glow: rgba(15, 58, 97, 0.08);

    --secondary: #f97316;
    /* CRM Pro Orange */
    --secondary-hover: #ea580c;

    --accent-emerald: #10b981;
    --accent-emerald-glow: rgba(16, 185, 129, 0.12);
    --accent-amber: #d97706;
    --accent-rose: #dc2626;

    --text-main: #0f172a;
    /* High contrast dark slate */
    --text-muted: #475569;
    --bg-body-rgb: 248, 250, 252;
    --bg-card-rgb: 255, 255, 255;

    --card-shadow: 0 10px 30px rgba(15, 58, 97, 0.04);
    --card-shadow-hover: 0 15px 35px rgba(15, 58, 97, 0.09);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    --blob-opacity: 0.08;
}

/* Global Reset and Body */
body {
    background-color: var(--bg-dark) !important;
    color: var(--text-main) !important;
    font-family: var(--font-body);
    overflow-x: hidden;
    scroll-behavior: smooth;
    position: relative;
}

/* Ensure clean contrast for texts */
p,
.text-muted,
.role-badge-desc,
.workflow-step-desc {
    color: var(--text-muted);
}

h1,
h2,
h3,
h4,
h5,
h6,
th,
td,
strong,
.text-main {
    color: var(--text-main);
}

/* Background Glowing Blobs (soft pastel overlays for a clean look) */
.glow-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: var(--blob-opacity);
    z-index: -1;
    pointer-events: none;
    animation: pulseGlow 12s infinite alternate ease-in-out;
}

.blob-primary {
    background: var(--primary);
    top: 5%;
    left: -10%;
}

.blob-secondary {
    background: var(--secondary);
    top: 35%;
    right: -10%;
    animation-delay: -3s;
}

.blob-emerald {
    background: var(--accent-emerald);
    bottom: 10%;
    left: 15%;
    animation-delay: -6s;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1) translate(0px, 0px);
    }

    50% {
        transform: scale(1.15) translate(30px, -20px);
    }

    100% {
        transform: scale(0.9) translate(-10px, 40px);
    }
}

/* Typography & Gradient Text */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 30%, #1e293b 70%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-whatsapp {
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-purple {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(15, 58, 97, 0.15);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Responsive Navigation Bar */
.navbar-custom {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background-color: rgba(248, 250, 252, 0.8) !important;
    border-bottom: 1px solid var(--border-color);
    padding: 1.1rem 0;
    transition: var(--transition-smooth);
}

.navbar-custom.scrolled {
    padding: 0.7rem 0;
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 10px 30px rgba(15, 58, 97, 0.05);
}

.navbar-custom .navbar-brand img {
    height: 45px;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

@media (max-width: 768px) {
    .navbar-custom .navbar-brand img {
        height: 36px;
        /* Scales down on tablet */
    }
}

@media (max-width: 576px) {
    .navbar-custom .navbar-brand img {
        height: 30px;
        /* Scales down on mobile to prevent overflow with hamburger */
    }
}

.navbar-custom .nav-link {
    color: var(--text-muted) !important;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 0.5rem;
    transition: var(--transition-smooth);
}

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

/* Buttons */
.btn-premium {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white !important;
    font-weight: 600;
    padding: 0.65rem 1.6rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 15px rgba(15, 58, 97, 0.2);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 58, 97, 0.35);
    color: white !important;
}

.btn-premium:hover::before {
    opacity: 1;
}

.btn-outline-custom {
    background: transparent;
    color: var(--primary) !important;
    border: 1px solid rgba(15, 58, 97, 0.2);
    padding: 0.65rem 1.6rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-outline-custom:hover {
    background: rgba(15, 58, 97, 0.05);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Premium White Cards with Soft Borders & Shadows */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.2rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--x, 0px) var(--y, 0px), rgba(15, 58, 97, 0.03), transparent 40%);
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.5s ease;
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-color-glow);
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid rgba(15, 58, 97, 0.08);
    border-radius: 24px;
    box-shadow: 0 14px 28px rgba(15, 58, 97, 0.06);
    transition: var(--transition-smooth);
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(15, 58, 97, 0.1);
}

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

.contact-card a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

/* Hero Section */
.hero-section {
    padding: 10rem 0 7rem;
    position: relative;
}

.hero-tagline {
    background: rgba(15, 58, 97, 0.06);
    color: var(--primary) !important;
    border: 1px solid rgba(15, 58, 97, 0.15);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 2.4rem;
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 1rem;
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2rem;
    }
}

.hero-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hero-mockup-wrapper {
    position: relative;
    border-radius: 20px;
    padding: 10px;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(15, 58, 97, 0.08);
    border: 1px solid rgba(15, 58, 97, 0.1);
}

.hero-mockup-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.hero-mockup-img {
    border-radius: 12px;
    width: 100%;
    display: block;
}

/* Feature Badge */
.feature-badge-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(15, 58, 97, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
    border: 1px solid rgba(15, 58, 97, 0.2);
    color: var(--primary) !important;
    transition: var(--transition-smooth);
}

.feature-badge-icon i {
    color: var(--primary) !important;
}

.glass-card:hover .feature-badge-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white !important;
    box-shadow: 0 8px 20px rgba(15, 58, 97, 0.2);
    transform: scale(1.05);
}

.glass-card:hover .feature-badge-icon i {
    color: white !important;
}

/* Interactive Tabs Section */
.modules-section {
    padding: 6rem 0;
    position: relative;
}

.tab-nav-custom-sidebar {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    gap: 0.45rem;
    border: none;
}

.tab-btn-custom {
    background: #ffffff;
    color: var(--text-muted) !important;
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition-smooth);
    display: flex !important;
    width: 100% !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 0.6rem;
    box-shadow: 0 2px 5px rgba(15, 58, 97, 0.01);
    text-align: left;
}

.tab-btn-custom i {
    font-size: 1.05rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.tab-btn-custom:hover {
    background: #f1f5f9;
    color: var(--primary) !important;
    border-color: rgba(15, 58, 97, 0.25);
}

.tab-btn-custom.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white !important;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(15, 58, 97, 0.15);
}

.tab-btn-custom.active i {
    color: white !important;
}

@media (max-width: 991.98px) {
    .tab-nav-custom-sidebar {
        flex-direction: row !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        white-space: nowrap;
        padding-bottom: 0.6rem;
        margin-bottom: 1.5rem;
        -webkit-overflow-scrolling: touch;
        max-height: none !important;
    }

    .tab-nav-custom-sidebar .tab-btn-custom {
        width: auto !important;
        flex: 0 0 auto;
        padding: 0.6rem 1.1rem;
        font-size: 0.85rem;
    }
}

/* Module Feature Cards */
.module-showcase-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.2rem !important;
    /* Compact padding */
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}

.module-showcase-title {
    font-size: 1.75rem;
    /* Compact size */
    font-weight: 800;
    margin-bottom: 1rem;
}

/* Two-column features layout inside active pane to save screen space */
.features-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 0.4rem;
    padding-left: 0;
    list-style: none;
    margin-top: 1rem;
}

.features-grid-compact li {
    position: relative;
    padding-left: 1.6rem;
    font-size: 0.88rem;
    line-height: 1.4;
    color: var(--text-muted);
}

.features-grid-compact li strong {
    color: var(--text-main) !important;
}

.features-grid-compact li::before {
    content: '\F272';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--accent-emerald) !important;
    font-size: 0.95rem;
}

.role-badge-box {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.1rem;
    margin-top: 1.5rem;
}

.role-badge-title {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary) !important;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Workflow Flowchart Section */
.workflow-section {
    padding: 6rem 0;
    position: relative;
}

.workflow-steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 4rem;
}

@media (max-width: 991.98px) {
    .workflow-steps-container {
        flex-direction: column;
        gap: 2.5rem;
    }
}

.workflow-connector-line {
    position: absolute;
    top: 45px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--accent-emerald) 100%);
    opacity: 0.25;
    z-index: 0;
}

@media (max-width: 991.98px) {
    .workflow-connector-line {
        display: none;
    }
}

.workflow-step-node {
    flex: 1;
    text-align: center;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.workflow-step-badge {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.2rem;
    color: var(--primary) !important;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.workflow-step-badge i {
    color: var(--primary) !important;
}

.workflow-step-node:hover .workflow-step-badge {
    border-color: var(--primary);
    color: white !important;
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(15, 58, 97, 0.2);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.workflow-step-node:hover .workflow-step-badge i {
    color: white !important;
}

.workflow-step-num {
    position: absolute;
    top: -5px;
    right: calc(50% - 45px);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--secondary);
    color: white;
    font-size: 0.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-dark);
}

.workflow-step-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Dynamic Security Controls Selector Cards */
.rbac-section {
    padding: 6rem 0;
    position: relative;
}

.role-selector-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 6px rgba(15, 58, 97, 0.01);
    text-align: left;
}

@media (min-width: 992px) {
    .role-selector-card {
        cursor: pointer;
    }

    .role-selector-card:hover {
        background: #f8fafc;
        border-color: var(--border-color-glow);
        transform: translateY(-2px);
    }

    .role-selector-card.active {
        background: rgba(15, 58, 97, 0.04);
        border-color: var(--primary);
        box-shadow: 0 4px 12px rgba(15, 58, 97, 0.05);
    }
}

.role-selector-card .badge {
    font-size: 0.72rem;
    padding: 0.25rem 0.55rem;
    border-radius: 4px;
}

/* Switch check spacing and alignment */
.table-check-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.table-check-center input[type="checkbox"] {
    cursor: pointer;
    width: 1.15rem;
    height: 1.15rem;
    accent-color: var(--primary);
}

/* Call to Action & Contact Form */
.cta-contact-section {
    padding: 6rem 0;
    position: relative;
}

.contact-form-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--card-shadow);
}

.form-control-custom {
    background: #f8fafc !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-main) !important;
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control-custom::placeholder {
    color: var(--text-muted) !important;
    opacity: 0.7;
}

.form-control-custom:focus {
    background: #ffffff !important;
    border-color: var(--primary) !important;
    color: var(--text-main) !important;
    box-shadow: 0 0 12px rgba(15, 58, 97, 0.15) !important;
    outline: none;
}

.form-control-custom.is-invalid {
    border-color: var(--accent-rose) !important;
    background-image: none !important;
    box-shadow: none !important;
}

.form-control-custom.is-invalid:focus {
    box-shadow: 0 0 12px rgba(220, 38, 38, 0.15) !important;
    border-color: var(--accent-rose) !important;
}

.form-control-custom.is-invalid~.invalid-feedback {
    display: block !important;
    color: var(--accent-rose) !important;
    font-weight: 500;
    font-size: 0.825rem;
    margin-top: 0.35rem;
}

.form-label-custom {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted) !important;
    margin-bottom: 0.5rem;
}

/* Footer styling */
.footer-custom {
    background: #091724;
    /* Elegant dark blue background for the footer to anchor the design */
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 5rem 0 2rem;
}

.footer-custom p,
.footer-custom .footer-link,
.footer-custom .text-muted {
    color: #94a3b8 !important;
}

.footer-custom h5,
.footer-custom h6,
.footer-custom strong {
    color: #ffffff !important;
}

.footer-logo img {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
    /* Inverts logo to white on dark footer */
}

.footer-link {
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.footer-link:hover {
    color: #ffffff !important;
    padding-left: 3px;
}

.social-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    transition: var(--transition-smooth);
}

.social-icon-btn i {
    color: #94a3b8 !important;
}

.social-icon-btn:hover {
    background: var(--secondary);
    color: white !important;
    border-color: transparent;
    transform: translateY(-2px);
}

.social-icon-btn:hover i {
    color: white !important;
}

.spin {
    animation: spinner 1s linear infinite;
    display: inline-block;
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Pricing toggle and discount badge alignment */
.billing-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.billing-toggle-label {
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
}

.billing-toggle-label.active {
    color: var(--primary) !important;
}

.discount-badge {
    order: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(16, 185, 129, 0.06);
    color: var(--accent-emerald);
    border: 1px solid rgba(16, 185, 129, 0.12);
    padding: 0.35rem 0.8rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
}

/* Horizontal scroll container + transparent scroll buttons */
.scroll-container {
    position: relative;
}

.scroll-inner {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding-bottom: 0.6rem;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(6px);
    border: none;
    box-shadow: 0 8px 30px rgba(15, 58, 97, 0.06);
    cursor: pointer;
    transition: opacity 0.15s ease;
    z-index: 12;
}

.scroll-btn i {
    color: var(--primary);
    font-size: 1.05rem;
}

.scroll-btn.left {
    left: 8px;
}

.scroll-btn.right {
    right: 8px;
}

@media (max-width: 991.98px) {
    .scroll-btn {
        display: flex;
    }

    /* Make pricing cards scroll horizontally on smaller screens */
    .pricing-cards-row {
        display: flex !important;
        gap: 1rem;
        align-items: stretch;
    }

    .pricing-card-col {
        flex: 0 0 86%;
        max-width: 86%;
    }

    /* Ensure feature matrix has horizontal width and shows scroll buttons */
    .matrix-table-wrapper table {
        min-width: 900px;
    }
}

@media (max-width: 991.98px) {

    /* Feature Matrix Mobile Overrides */
    #moduleTabsContent .tab-pane {
        display: block !important;
        opacity: 1 !important;
        margin-bottom: 1.8rem;
        height: auto !important;
    }

    #moduleTabsContent .tab-pane:last-child {
        margin-bottom: 0;
    }

    /* Role Selector Cards Mobile Overrides (Static presentation) */
    .role-selector-card {
        background: #ffffff !important;
        border-color: var(--border-color) !important;
        transform: none !important;
        box-shadow: 0 2px 6px rgba(15, 58, 97, 0.01) !important;
        cursor: default !important;
    }
}

@media (max-width: 576px) {

    /* Smaller padding on mobile phones for cards */
    .module-showcase-card {
        padding: 1.25rem !important;
        border-radius: 16px;
    }

    .glass-card {
        padding: 1.25rem !important;
        border-radius: 16px;
    }
}

/* Mobile App Showcase Section Styles */
.mobile-section {
    padding: 6rem 0;
}

/* Phone Frame Mockup */
.phone-frame-wrapper {
    position: relative;
    width: 320px;
    height: 640px;
    background: #0f172a;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 25px 60px rgba(15, 58, 97, 0.15),
        0 0 0 4px #1e293b,
        0 0 0 5px rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.phone-frame-wrapper:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 0 35px 75px rgba(15, 58, 97, 0.22),
        0 0 0 4px var(--primary),
        0 0 0 5px rgba(255, 255, 255, 0.2);
}

.phone-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000000;
    border-radius: 32px;
    overflow: hidden;
    border: 3px solid #000;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 25px;
    background: #000000;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    z-index: 10;
}

.phone-notch::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 35px;
    width: 50px;
    height: 4px;
    background: #1e293b;
    border-radius: 2px;
}

.phone-notch::after {
    content: '';
    position: absolute;
    top: 4px;
    right: 30px;
    width: 8px;
    height: 8px;
    background: #0f172a;
    border-radius: 50%;
}

.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: #f8fafc;
    border-radius: 28px;
    overflow: hidden;
}

.phone-app-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

/* Feature List */
.transition-all-hover {
    transition: var(--transition-smooth);
    cursor: default;
}

.transition-all-hover:hover {
    transform: translateX(6px);
    border-color: var(--primary) !important;
    background-color: rgba(15, 58, 97, 0.01) !important;
    box-shadow: 0 8px 20px rgba(15, 58, 97, 0.03);
}

.mobile-feature-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Download button enhancements */
.btn-premium.btn-lg {
    padding: 0.85rem 2.2rem;
    border-radius: 16px;
}

.btn-premium i {
    transition: transform 0.3s ease;
}

.btn-premium:hover i {
    transform: scale(1.15) translateY(-1px);
}

@media (max-width: 991.98px) {
    .phone-frame-wrapper {
        margin-top: 2rem;
        width: 290px;
        height: 580px;
    }
}

/* ==========================================================================
   Pricing & Plans Styles
   ========================================================================== */

.prices-hero {
    padding: 10rem 0 3rem;
    position: relative;
}

.billing-toggle-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 4rem;
    font-weight: 600;
}

.billing-toggle-label {
    font-size: 1rem;
    cursor: pointer;
    user-select: none;
    transition: var(--transition-smooth);
}

.billing-toggle-label.active {
    color: var(--primary) !important;
}

.pricing-toggle {
    position: relative;
    display: inline-block;
    width: 66px;
    height: 36px;
}

.pricing-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pricing-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(15, 58, 97, 0.06);
    transition: var(--transition-smooth);
    border-radius: 34px;
    border: 1px solid var(--border-color);
}

.pricing-slider::before {
    position: absolute;
    content: "";
    height: 28px;
    width: 28px;
    left: 3px;
    bottom: 3px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    transition: var(--transition-smooth);
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(15, 58, 97, 0.2);
}

.pricing-toggle input:checked+.pricing-slider::before {
    transform: translateX(30px);
}

.discount-badge {
    background: rgba(16, 185, 129, 0.08);
    color: var(--accent-emerald) !important;
    border: 1px solid rgba(16, 185, 129, 0.18);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    font-family: var(--font-heading);
}

.pricing-cards-container {
    margin-bottom: 2rem;
}

.price-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.price-card.popular {
    border-color: var(--border-color-glow);
    box-shadow: 0 15px 35px rgba(15, 58, 97, 0.06);
    background: linear-gradient(180deg, #ffffff 0%, rgba(15, 58, 97, 0.005) 100%);
}

.price-card.popular::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-hover) 100%);
    color: white !important;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.2);
}

.price-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.price-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.price-card-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.price-value-container {
    margin: 1.5rem 0 0.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
}

.price-value {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    font-family: var(--font-heading);
    line-height: 1;
    transition: opacity 0.2s ease;
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

.price-agent-limit {
    font-size: 0.82rem;
    font-weight: 600;
    background: rgba(15, 58, 97, 0.04);
    color: var(--primary) !important;
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    display: inline-block;
}

.price-features-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-grow: 1;
}

.price-features-list li {
    position: relative;
    padding-left: 1.6rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.price-features-list li::before {
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 0.95rem;
}

.price-features-list li.included::before {
    content: '\F272';
    /* bi-check-circle-fill */
    color: var(--accent-emerald) !important;
}

.price-features-list li.not-included {
    opacity: 0.5;
    text-decoration: line-through;
}

.price-features-list li.not-included::before {
    content: '\F62A';
    /* bi-x-circle-fill */
    color: var(--accent-rose) !important;
    opacity: 0.5;
}

.price-features-list li strong {
    color: var(--text-main) !important;
}

.matrix-section {
    padding: 5rem 0;
}

.matrix-table-wrapper {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow-x: auto;
    box-shadow: var(--card-shadow);
    margin-bottom: 3rem;
    -webkit-overflow-scrolling: touch;
}

.matrix-table {
    margin-bottom: 0 !important;
}

.matrix-table th {
    background: rgba(15, 58, 97, 0.02);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--border-color) !important;
    padding: 1.25rem 1rem !important;
    color: var(--primary) !important;
}

.matrix-table th.plan-col {
    text-align: center;
    width: 15%;
}

.matrix-table td {
    padding: 1rem !important;
    vertical-align: middle;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--border-color);
}

.matrix-table td.plan-val {
    text-align: center;
}

.matrix-table tr.category-row {
    background: rgba(15, 58, 97, 0.015);
}

.matrix-table tr.category-row td {
    font-weight: 800;
    color: var(--primary) !important;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: var(--font-heading);
    padding: 1.25rem 1rem !important;
    border-bottom: 1.5px solid var(--border-color);
}

.matrix-check {
    color: var(--accent-emerald) !important;
    font-size: 1.15rem;
}

.matrix-cross {
    color: var(--accent-rose) !important;
    opacity: 0.35;
    font-size: 1.15rem;
}

/* Responsive Table overrides for clean horizontal overflow scrolling */
@media (max-width: 991.98px) {
    .matrix-table-wrapper {
        border-radius: 16px;
    }

    .matrix-table {
        min-width: 800px;
    }
}

/* Equal Sizing & Horizontal Scroll on Hover for Cards */
.pricing-cards-row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1.5rem;
    padding: 1.5rem 0.5rem 2.5rem;
    scrollbar-width: none;
    /* Firefox */
}

.pricing-cards-row::-webkit-scrollbar {
    height: 8px;
    display: none;
    /* Chrome/Safari */
}

.pricing-cards-row:hover {
    scrollbar-width: auto;
    /* Show on hover in Firefox */
}

.pricing-cards-row:hover::-webkit-scrollbar {
    display: block;
    /* Show on hover in Chrome/Safari */
}

.pricing-cards-row::-webkit-scrollbar-track {
    background: rgba(15, 58, 97, 0.03);
    border-radius: 10px;
}

.pricing-cards-row::-webkit-scrollbar-thumb {
    background: rgba(15, 58, 97, 0.15);
    border-radius: 10px;
    border: 2px solid transparent;
}

.pricing-cards-row::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.pricing-card-col {
    flex: 0 0 calc(25% - 1.125rem);
    /* Equally sized (4 columns on desktop) */
    min-width: 290px;
    /* Force overflow & horizontal scrolling on smaller screens */
    box-sizing: border-box;
}

@media (max-width: 1200px) {
    .pricing-card-col {
        flex: 0 0 calc(50% - 0.75rem);
        /* 2 columns on tablets */
    }
}

@media (max-width: 768px) {
    .pricing-card-col {
        flex: 0 0 calc(100% - 1rem);
        /* 1 column mobile swipe container */
    }
}

/* Hide Free column in matrix table */
.matrix-table th:nth-child(2),
.matrix-table td:nth-child(2) {
    display: none !important;
}

/* Redesigned SaaS Feature Matrix Cards */
.module-card {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(15, 58, 97, 0.04);
    border: 1px solid var(--border-color);
}

.module-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 58, 97, 0.08);
}

.module-card-img-wrapper {
    overflow: hidden;
    border-radius: 14px;
    height: 190px;
    position: relative;
    background: #f1f5f9;
    border: 1px solid var(--border-color);
}

.module-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.module-card:hover .module-card-img {
    transform: scale(1.06);
}

.tab-nav-custom-header {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    border: none;
    margin-bottom: 2.5rem;
}

.tab-btn-header {
    background: #ffffff;
    color: var(--text-muted) !important;
    border: 1px solid var(--border-color);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 6px rgba(15, 58, 97, 0.02);
}

.tab-btn-header i {
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.tab-btn-header:hover {
    background: #f8fafc;
    color: var(--primary) !important;
    border-color: rgba(15, 58, 97, 0.2);
}

.tab-btn-header.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white !important;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(15, 58, 97, 0.15);
}

.tab-btn-header.active i {
    color: white !important;
}

/* ==========================================================================
   ULTRA-MODERN SAAS DESIGN SYSTEM & ZOHO CLONE STYLES (CRM PRO)
   ========================================================================== */

:root {
    --primary: #0f3a61;
    --primary-light: #1e568b;
    --primary-gradient: linear-gradient(135deg, #0f3a61 0%, #1e568b 50%, #4f46e5 100%);
    --electric-indigo: #6366f1;
    --electric-cyan: #06b6d4;
    --secondary: #f97316;
    --secondary-gradient: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    --accent-emerald: #10b981;
    --accent-purple: #8b5cf6;

    --bg-light: #f8fafc;
    --bg-card: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.85);
    --bg-dark-glass: rgba(15, 23, 42, 0.95);

    --text-main: #0f172a;
    --text-muted: #64748b;
    --border-subtle: rgba(15, 58, 97, 0.1);
    --border-glow: rgba(99, 102, 241, 0.25);

    --shadow-sm: 0 4px 15px rgba(15, 58, 97, 0.05);
    --shadow-md: 0 12px 30px rgba(15, 58, 97, 0.08);
    --shadow-lg: 0 20px 50px rgba(15, 58, 97, 0.12);
    --shadow-glow: 0 10px 30px rgba(99, 102, 241, 0.25);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    /* Standardized 14-16px font size */
    color: var(--text-main);
    background-color: #ffffff;
    overflow-x: hidden;
    line-height: 1.55;
}

p,
span,
li,
a,
label,
input,
button {
    font-size: 0.9375rem;
    /* ~15px default */
}

.small,
small {
    font-size: 0.875rem !important;
    /* 14px */
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: var(--font-heading);
}

/* Gradient Text Mask */
.text-gradient-primary {
    background: linear-gradient(135deg, #0f3a61 0%, #4f46e5 50%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-indigo {
    background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Zoho Promo Bar */
.zoho-promo-bar {
    background: linear-gradient(90deg, #0f3a61 0%, #1e568b 40%, #4f46e5 70%, #f97316 100%);
    color: #ffffff;
    padding: 6px 0;
    font-size: 0.82rem;
    font-weight: 600;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.zoho-promo-badge {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* Main Navbar - Fixed Scroll Alignment */
.navbar {
    position: fixed;
    top: 34px;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 1030;
    transition: top 0.25s ease, box-shadow 0.3s ease, background 0.3s ease;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(15, 58, 97, 0.08);
}

.navbar.navbar-fixed-top {
    top: 0 !important;
    box-shadow: 0 4px 20px rgba(15, 58, 97, 0.08);
}

.btn-primary-gradient {
    background: var(--primary-gradient);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 0.55rem 1.4rem;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
}

.btn-primary-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(79, 70, 229, 0.35);
    color: #ffffff;
}

/* Hero Section (Viewport Fit) */
.hero-section-zoho {
    min-height: calc(100vh - 34px);
    display: flex;
    align-items: center;
    padding-top: 95px;
    padding-bottom: 30px;
    background: radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(249, 115, 22, 0.06) 0%, transparent 50%),
        #f8fafc;
    position: relative;
    overflow: hidden;
}

.hero-tag-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.06);
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-emerald);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse 2s infinite;
}

.signup-box-zoho {
    background: #ffffff;
    border: 1px solid rgba(15, 58, 97, 0.12);
    border-radius: 18px;
    padding: 1.35rem 1.5rem;
    box-shadow: 0 20px 45px rgba(15, 58, 97, 0.1);
    position: relative;
}

.signup-box-zoho .form-control,
.signup-box-zoho .form-select {
    padding: 0.42rem 0.8rem !important;
    font-size: 0.875rem !important;
}

.signup-box-zoho .mb-3 {
    margin-bottom: 0.6rem !important;
}

/* Guarantee Section (High-Impact Dark Glassmorphism) */
.guarantee-section {
    padding: 60px 0 !important;
    background: linear-gradient(135deg, #091e36 0%, #0f3a61 45%, #312e81 100%) !important;
    color: #ffffff !important;
    position: relative;
    overflow: hidden;
    margin: 2.5rem 0;
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(15, 58, 97, 0.25);
}

.guarantee-section h2,
.guarantee-section h3,
.guarantee-section h4,
.guarantee-section h5 {
    color: #ffffff !important;
    font-weight: 800 !important;
}

.guarantee-section p,
.guarantee-section .text-white-50 {
    color: rgba(255, 255, 255, 0.82) !important;
}

.guarantee-card {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 20px;
    padding: 1.6rem 1.4rem;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.guarantee-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.16) !important;
    border-color: rgba(255, 255, 255, 0.45) !important;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
}

.guarantee-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}



/* Trust Ticker (Compact) */
.trust-section {
    background: #f8fafc;
    padding: 20px 0;
    border-top: 1px solid rgba(15, 58, 97, 0.06);
    border-bottom: 1px solid rgba(15, 58, 97, 0.06);
}

.trust-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid rgba(15, 58, 97, 0.08);
    padding: 5px 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--primary);
}

/* Zoho Style Sticky Feature Matrix Sub-Navbar */
.zoho-tab-subnav-sticky-wrapper {
    position: sticky;
    top: 94px;
    z-index: 1020;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(15, 58, 97, 0.12);
    box-shadow: 0 4px 15px rgba(15, 58, 97, 0.04);
    padding: 0.4rem 0;
    margin-bottom: 0.5rem;
    transition: top 0.25s ease;
}

.zoho-tab-subnav-sticky-wrapper.subnav-fixed-top {
    top: 60px !important;
}

.zoho-tab-subnav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.25rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.zoho-tab-subnav::-webkit-scrollbar {
    display: none;
}

.zoho-tab-link {
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.82rem;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none !important;
    display: inline-block;
}

.zoho-tab-link:hover {
    color: var(--primary);
    background: rgba(15, 58, 97, 0.04);
}

.zoho-tab-link.active {
    background: var(--primary-gradient);
    color: #ffffff !important;
    font-weight: 700;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}

.zoho-tab-divider {
    height: 14px;
    width: 1px;
    background: rgba(15, 58, 97, 0.12);
    flex-shrink: 0;
    margin: 0 0.2rem;
}

/* Feature Blocks Styling (Strict 100vh Viewport Fit) */
.zoho-feature-block {
    min-height: calc(100vh - 115px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(15, 58, 97, 0.08);
    scroll-margin-top: 115px;
    /* Clean offset for sticky subnav */
    scroll-snap-align: start;
    position: relative;
    transition: var(--transition-smooth);
}

.zoho-feature-block:nth-child(even) {
    background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.02) 0%, transparent 70%);
}

.zoho-tab-heading {
    font-size: 1.7rem;
    /* Compact heading size */
    font-weight: 800;
    color: var(--text-main);
    text-align: center;
    margin-top: 0;
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
}

.zoho-tab-desc {
    max-width: 780px;
    margin: 0 auto 1rem auto;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    /* ~14.4px */
    line-height: 1.5;
}

/* Decorative Background Graphics Behind Feature Mockups */
.zoho-feature-img-wrapper {
    position: relative;
    z-index: 1;
    padding: 10px;
}

.zoho-feature-backdrop-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, rgba(6, 182, 212, 0.18) 45%, rgba(249, 115, 22, 0.12) 75%, transparent 100%);
    border-radius: 28px;
    filter: blur(22px);
    z-index: -2;
    opacity: 0.85;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.zoho-feature-backplate {
    position: absolute;
    top: 6px;
    left: 6px;
    right: -6px;
    bottom: -6px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(6, 182, 212, 0.06));
    border: 1.5px dashed rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    z-index: -1;
    transform: rotate(-2deg);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.zoho-feature-img-wrapper:hover .zoho-feature-backdrop-glow {
    opacity: 1;
    transform: scale(1.06);
}

.zoho-feature-img-wrapper:hover .zoho-feature-backplate {
    transform: rotate(0deg) scale(1.02);
    border-color: rgba(99, 102, 241, 0.6);
}

/* Browser Window Frame for Mockups */
.zoho-feature-img-card {
    background: #ffffff;
    border: 1px solid rgba(15, 58, 97, 0.12);
    border-radius: 16px;
    padding: 0.5rem;
    box-shadow: 0 12px 30px rgba(15, 58, 97, 0.07);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.browser-header-dots {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 3px 6px 6px 6px;
}

.dot-btn {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.dot-red {
    background: #ff5f56;
}

.dot-yellow {
    background: #ffbd2e;
}

.dot-green {
    background: #27c93f;
}

.zoho-feature-img-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 16px 40px rgba(15, 58, 97, 0.12);
    border-color: rgba(99, 102, 241, 0.35);
}

.zoho-feature-img {
    width: 100%;
    height: 175px;
    /* Compact height for 100vh fit */
    object-fit: cover;
    border-radius: 10px;
}

.zoho-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(15, 23, 42, 0.85);
    color: #ffffff;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
    z-index: 2;
}

/* Feature Capability Cards (Compact Fit) */
.zoho-feature-card-item {
    background: #ffffff;
    border: 1px solid rgba(15, 58, 97, 0.08);
    border-radius: 14px;
    padding: 0.85rem 1rem;
    box-shadow: 0 4px 12px rgba(15, 58, 97, 0.02);
    transition: all 0.3s ease;
    height: 100%;
}

.zoho-feature-card-item:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(15, 58, 97, 0.06);
}

.zoho-feature-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

/* Stat Callout Pill (Compact Fit) */
.zoho-stat-callout {
    margin-top: 1rem;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    flex-wrap: wrap;
    background: #ffffff;
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 0.45rem 1.4rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.05);
}

.zoho-stat-number {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    background: linear-gradient(135deg, #0f3a61 0%, #4f46e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.zoho-stat-text {
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.85rem;
    /* 13.6px */
}

.zoho-stat-source {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-style: italic;
    border-left: 1px solid rgba(15, 58, 97, 0.15);
    padding-left: 0.65rem;
}

/* Commercial Lifecycle Pipeline Scroll-Driven Flow */
.workflow-section {
    padding: 60px 0;
    background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.03) 0%, transparent 70%), #f8fafc;
    position: relative;
}

.workflow-steps-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
    z-index: 1;
}

.pipeline-progress-track {
    position: absolute;
    top: 40px;
    left: 8%;
    right: 8%;
    height: 6px;
    background: rgba(15, 58, 97, 0.1);
    border-radius: 10px;
    z-index: 0;
}

.pipeline-progress-fill {
    height: 100%;
    width: 20%;
    background: linear-gradient(90deg, #f97316 0%, #6366f1 50%, #10b981 100%);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.8);
    transition: width 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.workflow-step-node {
    background: #ffffff;
    border: 1px solid rgba(15, 58, 97, 0.08);
    border-radius: 20px;
    padding: 1.35rem 1rem;
    text-align: center;
    position: relative;
    z-index: 2;
    opacity: 0.55;
    transform: scale(0.95);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.workflow-step-node.active {
    opacity: 1;
    transform: translateY(-10px) scale(1.04);
    border-color: var(--electric-indigo);
    box-shadow: 0 20px 45px rgba(99, 102, 241, 0.22);
}

.workflow-step-badge {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: #f8fafc;
    border: 2px solid rgba(15, 58, 97, 0.12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1.25rem auto;
    position: relative;
    transition: all 0.4s ease;
}

.workflow-step-num {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--secondary);
    color: #ffffff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(249, 115, 22, 0.4);
}

.workflow-step-node.active .workflow-step-badge {
    background: var(--primary-gradient);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.workflow-step-node.active .workflow-step-num {
    background: var(--accent-emerald);
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.5);
}

.workflow-step-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    background: rgba(15, 58, 97, 0.05);
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 0.65rem;
}

.workflow-step-node.active .workflow-step-tag {
    background: rgba(99, 102, 241, 0.15);
    color: var(--electric-indigo);
}

.workflow-step-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
}

.workflow-step-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.5;
}


/* Security Controls & Dynamic Roles Section Styles */
.rbac-section {
    padding: 60px 0;
    background: #ffffff;
}

.security-role-card {
    background: #ffffff;
    border: 1px solid rgba(15, 58, 97, 0.08);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(15, 58, 97, 0.03);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.security-role-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, 0.35);
    box-shadow: 0 18px 40px rgba(15, 58, 97, 0.1);
}

.security-role-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.security-compliance-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    background: #f8fafc;
    border: 1px solid rgba(15, 58, 97, 0.08);
    padding: 1rem 2rem;
    border-radius: 50px;
    margin-top: 2.5rem;
}

.security-compliance-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
}

.faq-section {
    padding: 45px 0;
    background: #ffffff;
}

.accordion-item {
    border: 1px solid rgba(15, 58, 97, 0.1);
    border-radius: 14px !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.accordion-button {
    font-weight: 700;
    color: var(--text-main);
    font-size: 0.98rem;
    padding: 1rem 1.25rem;
    background: #ffffff;
}

/* CTA Bottom Banner (Compact) */
.cta-bottom-banner {
    background: linear-gradient(135deg, #0f3a61 0%, #1e568b 50%, #4f46e5 100%);
    color: #ffffff;
    padding: 55px 0;
    position: relative;
    overflow: hidden;
}


:root {
    --primary: #0f3a61;
    --primary-light: #1e568b;
    --primary-gradient: linear-gradient(135deg, #0f3a61 0%, #1e568b 50%, #4f46e5 100%);
    --electric-indigo: #6366f1;
    --electric-cyan: #06b6d4;
    --secondary: #f97316;
    --secondary-gradient: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    --accent-emerald: #10b981;
    --accent-purple: #8b5cf6;

    --bg-light: #f8fafc;
    --bg-card: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.85);
    --bg-dark-glass: rgba(15, 23, 42, 0.95);

    --text-main: #0f172a;
    --text-muted: #64748b;
    --border-subtle: rgba(15, 58, 97, 0.1);
    --border-glow: rgba(99, 102, 241, 0.25);

    --shadow-sm: 0 4px 15px rgba(15, 58, 97, 0.05);
    --shadow-md: 0 12px 30px rgba(15, 58, 97, 0.08);
    --shadow-lg: 0 20px 50px rgba(15, 58, 97, 0.12);
    --shadow-glow: 0 10px 30px rgba(99, 102, 241, 0.25);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: #ffffff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: var(--font-heading);
}

/* Gradient Text Mask */
.text-gradient-primary {
    background: linear-gradient(135deg, #0f3a61 0%, #4f46e5 50%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-indigo {
    background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Zoho Promo Bar */
.zoho-promo-bar {
    background: linear-gradient(90deg, #0f3a61 0%, #1e568b 40%, #4f46e5 70%, #f97316 100%);
    color: #ffffff;
    padding: 7px 0;
    font-size: 0.85rem;
    font-weight: 600;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.zoho-promo-badge {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 0.72rem;
    padding: 2px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    backdrop-filter: blur(4px);
}

/* Main Navbar */
.navbar {
    top: 34px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(15, 58, 97, 0.08);
}

.navbar.scrolled {
    box-shadow: 0 10px 30px rgba(15, 58, 97, 0.1);
}

.btn-primary-gradient {
    background: var(--primary-gradient);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 0.65rem 1.6rem;
    font-weight: 700;
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
}

.btn-primary-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.35);
    color: #ffffff;
}

/* Hero Section */
.hero-section-zoho {
    padding-top: 140px;
    padding-bottom: 90px;
    background: radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(249, 115, 22, 0.06) 0%, transparent 50%),
        #f8fafc;
    position: relative;
    overflow: hidden;
}

.hero-tag-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-emerald);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.signup-box-zoho {
    background: #ffffff;
    border: 1px solid rgba(15, 58, 97, 0.12);
    border-radius: 24px;
    padding: 2.2rem;
    box-shadow: 0 25px 60px rgba(15, 58, 97, 0.12);
    position: relative;
}

.signup-box-zoho::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.4), rgba(249, 115, 22, 0.4));
    border-radius: 26px;
    z-index: -1;
    opacity: 0.5;
}

/* Guarantee Cards */
.guarantee-section {
    padding: 60px 0;
    background: #ffffff;
}

.guarantee-card {
    background: #ffffff;
    border: 1px solid rgba(15, 58, 97, 0.08);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

.guarantee-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: var(--shadow-md);
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
}

/* Trust Ticker */
.trust-section {
    background: #f8fafc;
    padding: 45px 0;
    border-top: 1px solid rgba(15, 58, 97, 0.06);
    border-bottom: 1px solid rgba(15, 58, 97, 0.06);
}

.trust-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid rgba(15, 58, 97, 0.08);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

/* Zoho Style Sticky Feature Matrix Sub-Navbar */
.zoho-tab-subnav-sticky-wrapper {
    position: sticky;
    top: 94px;
    z-index: 1020;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(15, 58, 97, 0.12);
    box-shadow: 0 4px 20px rgba(15, 58, 97, 0.06);
    padding: 0.6rem 0;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.zoho-tab-subnav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.35rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.zoho-tab-subnav::-webkit-scrollbar {
    display: none;
}

.zoho-tab-link {
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none !important;
    display: inline-block;
}

.zoho-tab-link:hover {
    color: var(--primary);
    background: rgba(15, 58, 97, 0.04);
}

.zoho-tab-link.active {
    background: var(--primary-gradient);
    color: #ffffff !important;
    font-weight: 700;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.zoho-tab-divider {
    height: 16px;
    width: 1px;
    background: rgba(15, 58, 97, 0.12);
    flex-shrink: 0;
    margin: 0 0.25rem;
}

/* Feature Blocks Styling */
.zoho-feature-block {
    padding-top: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid rgba(15, 58, 97, 0.08);
    scroll-margin-top: 155px;
    position: relative;
    transition: var(--transition-smooth);
}

.zoho-feature-block:nth-child(even) {
    background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.02) 0%, transparent 70%);
}

.zoho-tab-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.zoho-tab-desc {
    max-width: 820px;
    margin: 0 auto 3rem auto;
    text-align: center;
    color: var(--text-muted);
    font-size: 1.08rem;
    line-height: 1.7;
}

/* Browser Window Frame for Mockups */
.zoho-feature-img-card {
    background: #ffffff;
    border: 1px solid rgba(15, 58, 97, 0.12);
    border-radius: 24px;
    padding: 0.75rem;
    box-shadow: 0 20px 45px rgba(15, 58, 97, 0.1);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.browser-header-dots {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px 10px 10px;
}

.dot-btn {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.dot-red {
    background: #ff5f56;
}

.dot-yellow {
    background: #ffbd2e;
}

.dot-green {
    background: #27c93f;
}

.zoho-feature-img-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(15, 58, 97, 0.18);
    border-color: rgba(99, 102, 241, 0.35);
}

.zoho-feature-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.zoho-feature-img-card:hover .zoho-feature-img {
    transform: scale(1.04);
}

.zoho-card-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(15, 23, 42, 0.85);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* Feature Capability Cards */
.zoho-feature-card-item {
    background: #ffffff;
    border: 1px solid rgba(15, 58, 97, 0.08);
    border-radius: 20px;
    padding: 1.6rem;
    box-shadow: 0 8px 25px rgba(15, 58, 97, 0.03);
    transition: all 0.3s ease;
    height: 100%;
}

.zoho-feature-card-item:hover {
    background: #ffffff;
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(15, 58, 97, 0.09);
}

.zoho-feature-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

/* Stat Callout Pill */
.zoho-stat-callout {
    margin-top: 3.5rem;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    background: #ffffff;
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.08);
}

.zoho-stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    background: linear-gradient(135deg, #0f3a61 0%, #4f46e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.zoho-stat-text {
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
}

.zoho-stat-source {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-style: italic;
    border-left: 1px solid rgba(15, 58, 97, 0.15);
    padding-left: 0.85rem;
}

/* Commercial Lifecycle Section */
.workflow-section {
    padding: 90px 0;
    background: #f8fafc;
}

.workflow-step-node {
    background: #ffffff;
    border: 1px solid rgba(15, 58, 97, 0.1);
    border-radius: 20px;
    padding: 1.8rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.workflow-step-node:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(99, 102, 241, 0.3);
}

/* FAQ Accordion */
.faq-section {
    padding: 90px 0;
    background: #ffffff;
}

.accordion-item {
    border: 1px solid rgba(15, 58, 97, 0.1);
    border-radius: 16px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    font-weight: 700;
    color: var(--text-main);
    font-size: 1.1rem;
    padding: 1.25rem 1.5rem;
    background: #ffffff;
}

.accordion-button:not(.collapsed) {
    color: var(--primary);
    background: rgba(99, 102, 241, 0.04);
    box-shadow: none;
}

/* CTA Bottom Banner */
.cta-bottom-banner {
    background: linear-gradient(135deg, #0f3a61 0%, #1e568b 50%, #4f46e5 100%);
    color: #ffffff;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

/* ==========================================================================
   ZOHO STYLE INTERACTIVE DIAGRAMS & GRAPHICS
   ========================================================================== */

/* Workflow Diagram Tree (Automation Block) */
.workflow-builder-card {
    background: #ffffff;
    border: 1px solid rgba(15, 58, 97, 0.12);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 15px 40px rgba(15, 58, 97, 0.08);
}

.workflow-node {
    background: #f8fafc;
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    padding: 0.85rem 1.2rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.workflow-node-trigger {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--electric-indigo);
}

.workflow-node-action {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--accent-emerald);
    color: #065f46;
}

.workflow-arrow-line {
    width: 2px;
    height: 24px;
    background: linear-gradient(to bottom, var(--electric-indigo), var(--accent-emerald));
    margin: 4px auto;
}

/* Gauge & Chart Widgets (Analytics Block) */
.bi-meter-card {
    background: #ffffff;
    border: 1px solid rgba(15, 58, 97, 0.1);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 10px 25px rgba(15, 58, 97, 0.04);
}

.progress-bar-cyan {
    background: linear-gradient(90deg, #06b6d4 0%, #3b82f6 100%);
    border-radius: 50px;
}

.progress-bar-indigo {
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50px;
}

/* Floating Ecosystem App Pills */
.ecosystem-grid-cluster {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
}

.ecosystem-app-pill {
    background: #ffffff;
    border: 1px solid rgba(15, 58, 97, 0.12);
    padding: 0.65rem 1.4rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(15, 58, 97, 0.05);
    transition: all 0.3s ease;
}

.ecosystem-app-pill:hover {
    transform: translateY(-4px);
    border-color: var(--electric-indigo);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.2);
}



/* Top Promo Bar */
.zoho-promo-bar {
    background: linear-gradient(90deg, #0f3a61 0%, #1e5a8a 50%, #f97316 100%);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 7px 0;
    text-align: center;
    position: relative;
    z-index: 1040;
}

.zoho-promo-bar a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 600;
    margin-left: 6px;
    transition: opacity 0.2s;
}

.zoho-promo-bar a:hover {
    opacity: 0.85;
    color: #ffd1aa;
}

/* Hero Section Refinements */
.hero-quote-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, 0.08);
    color: #ea580c;
    border: 1px solid rgba(249, 115, 22, 0.2);
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

/* Zoho Style Hero Sign-Up Card */
.signup-box-zoho {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.2rem;
    box-shadow: 0 20px 50px rgba(15, 58, 97, 0.12);
    border: 1px solid rgba(15, 58, 97, 0.1);
    position: relative;
    overflow: hidden;
}

.signup-box-zoho::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.signup-box-zoho h4 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.4rem;
}

/* Guarantee Section ("How free is Free CRM Software?") */
.guarantee-section {
    background: #ffffff;
    padding: 4.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.guarantee-card {
    background: #f8fafc;
    border: 1px solid rgba(15, 58, 97, 0.08);
    border-radius: 16px;
    padding: 1.8rem 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    height: 100%;
}

.guarantee-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(15, 58, 97, 0.06);
    border-color: rgba(15, 58, 97, 0.2);
    background: #ffffff;
}

.guarantee-icon-wrapper {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(15, 58, 97, 0.08);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.guarantee-card:nth-child(2) .guarantee-icon-wrapper {
    background: rgba(249, 115, 22, 0.08);
    color: var(--secondary);
}

.guarantee-card:nth-child(3) .guarantee-icon-wrapper {
    background: rgba(16, 185, 129, 0.08);
    color: var(--accent-emerald);
}

.guarantee-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Trust Ticker / Customer Proof Bar */
.trust-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 1px solid var(--border-color);
}

.trust-badge-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-muted);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.trust-badge-logo:hover {
    color: var(--primary);
    border-color: var(--primary-glow);
    transform: translateY(-2px);
}

/* Value Benefit Box ("How small businesses benefit...") */
.benefit-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    border-color: var(--border-color-glow);
    box-shadow: var(--card-shadow-hover);
}

/* FAQ Accordion Styling */
.faq-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.faq-accordion .accordion-item {
    border: 1px solid var(--border-color) !important;
    border-radius: 14px !important;
    margin-bottom: 1rem;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(15, 58, 97, 0.02);
}

.faq-accordion .accordion-button {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-main);
    background: #ffffff;
    padding: 1.25rem 1.5rem;
    box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary);
    background: rgba(15, 58, 97, 0.02);
    border-bottom: 1px solid var(--border-color);
}

.faq-accordion .accordion-body {
    padding: 1.25rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Bottom Hero CTA Banner */
.cta-bottom-banner {
    background: linear-gradient(135deg, #0f3a61 0%, #071f35 60%, #1e5a8a 100%);
    border-radius: 24px;
    padding: 4rem 2.5rem;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 58, 97, 0.25);
}

/* Zoho Style Sticky Feature Matrix Sub-Navbar & Card Layout */
.zoho-tab-subnav-sticky-wrapper {
    position: sticky;
    top: 94px;
    z-index: 1020;
    background: #ffffff;
    border-bottom: 1px solid rgba(15, 58, 97, 0.12);
    box-shadow: 0 4px 15px rgba(15, 58, 97, 0.05);
    padding: 0.25rem 0;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.zoho-tab-subnav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.zoho-tab-subnav::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.zoho-tab-link {
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.9rem 1.4rem;
    transition: all 0.25s ease;
    white-space: nowrap;
    position: relative;
    cursor: pointer;
    text-decoration: none !important;
    display: inline-block;
}

.zoho-tab-link:hover {
    color: var(--primary);
    border-bottom-color: rgba(15, 58, 97, 0.3);
}

.zoho-tab-link.active {
    color: var(--primary);
    font-weight: 700;
    border-bottom: 3px solid #0f3a61;
}

.zoho-tab-divider {
    height: 18px;
    width: 1px;
    background: rgba(15, 58, 97, 0.15);
    flex-shrink: 0;
}

/* Feature Block Mockup Wrapper & Animation Effects */
.zoho-feature-block {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
    border-bottom: 1px solid rgba(15, 58, 97, 0.08);
    scroll-margin-top: 155px;
    position: relative;
    transition: var(--transition-smooth);
}

.zoho-feature-block:hover {
    background: rgba(15, 58, 97, 0.01);
}

.zoho-feature-block:last-child {
    border-bottom: none;
}

.zoho-feature-img-card {
    background: #ffffff;
    border: 1px solid rgba(15, 58, 97, 0.1);
    border-radius: 20px;
    padding: 0.75rem;
    box-shadow: 0 15px 40px rgba(15, 58, 97, 0.08);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.zoho-feature-img-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(15, 58, 97, 0.15);
    border-color: rgba(15, 58, 97, 0.25);
}

.zoho-feature-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 14px;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.zoho-feature-img-card:hover .zoho-feature-img {
    transform: scale(1.05);
}

.zoho-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(15, 58, 97, 0.9);
    color: #ffffff;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.zoho-feature-box-container {
    background: #ffffff;
    border: 1px solid rgba(15, 58, 97, 0.1);
    border-radius: 20px;
    padding: 2.2rem;
    box-shadow: 0 10px 35px rgba(15, 58, 97, 0.04);
}

.zoho-feature-card-item {
    background: #f8fafc;
    border: 1px solid rgba(15, 58, 97, 0.06);
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    transition: var(--transition-smooth);
}

.zoho-feature-card-item:hover {
    background: #ffffff;
    border-color: rgba(15, 58, 97, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(15, 58, 97, 0.08);
}

.zoho-stat-callout {
    margin-top: 3.5rem;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    background: #ffffff;
    border: 1px solid rgba(15, 58, 97, 0.1);
    padding: 1rem 2.2rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(15, 58, 97, 0.04);
}


.zoho-tab-heading {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--text-main);
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.zoho-tab-desc {
    max-width: 860px;
    margin: 0 auto 3rem auto;
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.zoho-feature-box-container {
    background: #ffffff;
    border: 1px solid rgba(15, 58, 97, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 35px rgba(15, 58, 97, 0.04);
}

.zoho-feature-card-col {
    padding: 1rem 1.5rem;
    border-right: 1px solid rgba(15, 58, 97, 0.08);
}

.zoho-feature-card-col:last-child {
    border-right: none;
}

@media (max-width: 991px) {
    .zoho-feature-card-col {
        border-right: none;
        border-bottom: 1px solid rgba(15, 58, 97, 0.08);
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .zoho-feature-card-col:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
}

.zoho-feature-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    background: rgba(15, 58, 97, 0.08);
    color: var(--primary);
}

.zoho-stat-callout {
    margin-top: 3.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.zoho-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.zoho-stat-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
}

.zoho-stat-source {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}