/* --- ZOHO CLOUD PARTNER THEME (No Prices Edition) --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --bg-color: #F5F7FA;
    --primary-blue: #007AFF;
    --text-dark: #1D1D1F;
    --text-grey: #86868B;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

body {
    background: linear-gradient(180deg, #E6F0FF 0%, #F5F7FA 100%);
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
}

/* --- HEADER --- */
header {
    width: 100%;
    background: #ffffff;
    height: 80px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1000;
}

.header-inner {
    max-width: 1300px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: relative;
    flex-wrap: nowrap;
}

.logo-container {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.header-logo {
    height: 50px !important;
    width: auto;
    object-fit: contain;
}

.btn-header {
    background: var(--primary-blue);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.2s;
    white-space: nowrap;
    flex: 0 0 auto;
    margin-left: 15px;
}

.btn-header:hover {
    background: #0056b3;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 5px;
}

/* --- NAVIGATION --- */
.header-nav {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: stretch;
    height: 100%;
    gap: 0;
}

.nav-item {
    height: 100%;
    display: flex;
    align-items: center;
    position: static;
    padding: 0 5px;
}

.nav-link {
    color: #555;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 10px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.2s;
    white-space: nowrap;
}

.nav-item:hover .nav-link,
.nav-link.active-nav {
    background: #F2F7FF;
    color: var(--primary-blue);
}

/* --- MEGA MENU --- */
.mega-menu {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 0 0 16px 16px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #f0f0f0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.2s ease-in-out;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    z-index: 9998;
    box-sizing: border-box;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.menu-app {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.2s;
}

.menu-app:hover {
    background: #f9f9f9;
}

.menu-app img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    margin-right: 12px;
}

.menu-app span {
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
}

.no-apps {
    grid-column: span 4;
    text-align: center;
    color: #999;
}

/* --- MOBILE MENU --- */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 3000;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
}

.close-mobile {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #333;
}

.mobile-nav-content {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.mobile-link {
    font-size: 1.2rem;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 15px;
    border-bottom: 1px solid #f9f9f9;
    display: block;
}

.mobile-btn {
    margin-top: 20px;
    display: inline-block;
    width: 100%;
    text-align: center;
}

/* --- CONTENT --- */
.hero {
    text-align: center;
    padding: 60px 20px 40px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
    line-height: 1.1;
}

.zoho-highlight {
    color: #009640;
    display: inline-block;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-grey);
    margin: 0 auto 40px;
    display: inline-block;
    vertical-align: bottom;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid #007AFF;
    box-sizing: border-box;
    width: 0;
    animation: typing 2.5s steps(75, end) forwards, blink-caret .70s step-end infinite;
}

.search-container-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    max-width: 800px;
    /* Increased from 600px to accommodate both */
    margin: 0 auto;
    width: 100%;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 300px;
}

.search-input {
    width: 100%;
    padding: 18px 25px;
    border-radius: 50px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 1rem;
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    box-sizing: border-box;
}

/* --- ASK ZIA AI BUTTON --- */
.zia-search-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 10px 20px 10px 15px;
    border-radius: 50px;
    cursor: pointer;
    border: 1px solid transparent;
    background-clip: padding-box;
    /* Important for gradient border simulation if needed, but here simple shadow is clean */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* Matching search box */
    transition: all 0.2s ease;
    white-space: nowrap;
    height: 54px;
    /* Match height of search input approx (18+18+font ~ 50-60) */
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.zia-search-trigger::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    /* Border width */
    background: linear-gradient(135deg, #007AFF, #8A2BE2);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.zia-search-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.15);
    /* Purple glow */
}

.zia-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.zia-search-trigger span {
    font-weight: 600;
    background: linear-gradient(135deg, #007AFF, #8A2BE2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 0.95rem;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px 100px;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.app-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #f0f0f0;
    transition: transform 0.2s;
}

.app-card:hover {
    transform: translateY(-5px);
}

.card-head {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.card-head img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    margin-right: 15px;
    object-fit: contain;
}

.app-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111;
}

.app-cat {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    display: block;
    margin-top: 4px;
}

.app-desc {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* ZOHO COLORFUL THEME ACCENTS */
.app-card[data-category="Sales"] .card-head img {
    border-bottom: 3px solid #00E676;
}

/* Green */
.app-card[data-category="Finance"] .card-head img {
    border-bottom: 3px solid #2979FF;
}

/* Blue */
.app-card[data-category="Marketing"] .card-head img {
    border-bottom: 3px solid #FF3D00;
}

/* Red/Orange */
.app-card[data-category="IT"] .card-head img {
    border-bottom: 3px solid #FFEA00;
}

/* Yellow */

.section-gap {
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 800;
    color: #111;
}

/* BLOG STYLES */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
    height: 200px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #f5f5f5;
    border-bottom: 1px solid #eee;
}

.blog-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 5px;
}

.blog-content h3 {
    font-size: 1.2rem;
    margin: 10px 0;
    line-height: 1.4;
    font-weight: 700;
    color: #333;
}

.blog-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.read-more {
    color: #007AFF;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: auto;
}

/* WHY CHOOSE SECTION */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.why-card h3 {
    font-size: 1.2rem;
    margin: 15px 0 10px;
    color: #1D1D1F;
}

.why-card p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* FAQ SECTION */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 25px 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #007AFF;
}

.faq-item h3 {
    font-size: 1.1rem;
    color: #1D1D1F;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}


/* POPUP STYLES */
.home-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    display: none;
    backdrop-filter: blur(5px);
}

.home-popup {
    background: white;
    width: 90%;
    max-width: 450px;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    line-height: 1;
}

.home-popup h3 {
    font-size: 1.8rem;
    margin: 10px 0 15px;
    color: #111;
}

.home-popup p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 25px;
}

.popup-btn {
    display: inline-block;
    background: #007AFF;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.2s;
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
}

.popup-btn:hover {
    background: #0056b3;
    transform: scale(1.05);
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.btn-view,
.btn-register {
    padding: 12px;
    border-radius: 10px;
    font-weight: 550;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-size: 0.8rem;
}

.btn-view {
    background: white;
    border: 1px solid #ddd;
    color: var(--text-dark);
    transition: 0.2s;
}

.btn-view:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.btn-register {
    background: var(--text-dark);
    color: white;
    border: none;
    transition: 0.2s;
}

.btn-register:hover {
    background: #333;
}

/* MODAL & PLANS */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #F8F9FB;
    padding: 40px;
    border-radius: 24px;
    max-width: 1000px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
}

.pricing-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.plan-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: left;
    border: 1px solid transparent;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.plan-card.popular {
    border: 2px solid var(--primary-blue);
    z-index: 10;
    transform: scale(1.02);
}

.pop-badge {
    position: absolute;
    top: -12px;
    right: 50%;
    transform: translateX(50%);
    background: var(--primary-blue);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.p-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-blue);
}

.features li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #555;
    position: relative;
    padding-left: 20px;
    list-style: none;
}

.features li::before {
    content: "✓";
    color: var(--primary-blue);
    position: absolute;
    left: 0;
    font-weight: bold;
}

footer {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #eaeaea;
    margin-top: 60px;
}

.admin-link {
    font-size: 0.8rem;
    color: #ccc;
    text-decoration: none;
}

/* MOBILE RESPONSIVE */
@media (max-width: 1024px) {
    header {
        height: auto;
    }

    .header-inner {
        flex-wrap: wrap;
        padding: 15px 20px;
        justify-content: space-between;
    }

    .hamburger {
        display: flex;
        order: 3;
    }

    .logo-container {
        order: 1;
    }

    .header-nav {
        display: none !important;
    }

    .desktop-btn {
        display: none !important;
    }

    .header-logo {
        height: 50px !important;
    }

    .hero {
        padding: 40px 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        width: auto !important;
        white-space: normal !important;
        border-right: none !important;
        animation: none !important;
        display: block !important;
    }

    .hero p {
        width: auto !important;
        white-space: normal !important;
        border-right: none !important;
        animation: none !important;
        display: block !important;
    }

    .search-container-wrapper {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .search-box {
        width: 100%;
        padding: 0;
    }

    .zia-search-trigger {
        width: 100%;
        justify-content: center;
    }

    .app-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 52ch;
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: #007AFF;
    }
}

/* --- FLOATING CONSULTATION BUTTON (RED VERTICAL TAB) --- */
.floating-consult-btn {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    /* Centers it vertically */

    background: #E53935;
    /* Bright Red */
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;

    /* Vertical Text Styling */
    writing-mode: vertical-rl;
    text-orientation: mixed;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px 8px;
    /* Taller padding for vertical aspect */
    border-radius: 8px 0 0 8px;
    /* Round only the left corners */
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.15);
    z-index: 9990;
    /* High enough, but usually under chat bots */
    transition: all 0.3s ease;
}

/* Hover Effect - Slight nudge and color darken */
.floating-consult-btn:hover {
    background: #D32F2F;
    padding-right: 12px;
    /* Expands slightly into the screen */
}

/* Hide the old icon container */
.floating-consult-btn .icon-container {
    display: none;
}

/* Ensure text is visible immediately (overrides old hover animation) */
.floating-consult-btn .btn-text {
    opacity: 1;
    margin: 0;
    max-width: none;
}

/* Mobile Fix: Keep it sized appropriately */
@media (max-width: 768px) {
    .floating-consult-btn {
        font-size: 0.75rem;
        padding: 20px 6px;
    }
}

/* --- COMPARISON LINK (The new button style) --- */
.compare-link {
    color: #007AFF;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin-right: auto;
    /* Pushes it to the left */
    transition: all 0.2s;
}

.compare-link:hover {
    gap: 12px;
    /* Moves arrow slightly on hover */
    text-decoration: underline;
}

.arrow-icon {
    font-size: 1.2rem;
    line-height: 1;
}

/* --- FEATURE MATRIX TABLE --- */
.table-wrapper {
    overflow-x: auto;
    /* Allows scrolling on mobile */
    margin-top: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
}

.feature-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    /* Ensures table doesn't squish too much */
}

.feature-table th,
.feature-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    text-align: center;
    font-size: 0.95rem;
}

/* Feature Name Column (Left aligned, Bold) */
.feature-table th:first-child,
.feature-table td:first-child {
    text-align: left;
    background: #fcfcfc;
    position: sticky;
    left: 0;
    font-weight: 600;
    color: #333;
    z-index: 10;
    border-right: 1px solid #eee;
}

/* Header Row */
.feature-table thead th {
    background: #f8f9fa;
    color: #111;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-top: 25px;
    padding-bottom: 25px;
}

/* Checkmarks */
.tick {
    color: #009640;
    /* Zoho Green */
    font-weight: 900;
    font-size: 1.2rem;
}

.cross {
    color: #ddd;
    font-size: 1.2rem;
}

/* Modal Title Adjustment */
#modalTitle {
    font-size: 1.8rem;
    color: #111;
    margin-bottom: 10px;
}

.modal-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    display: block;
}

/* --- COMPARE PAGE STYLES --- */
.compare-page {
    background: #F5F7FA;
}

.compare-nav {
    background: white;
    border-bottom: 1px solid #eaeaea;
    height: 70px;
}

.back-link {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    font-size: 0.9rem;
    margin-right: 20px;
}

.back-link:hover {
    color: #007AFF;
}

/* BLUE HERO */
.compare-hero {
    background: #007AFF;
    /* Zoho Blue */
    background: linear-gradient(135deg, #007AFF 0%, #0056b3 100%);
    color: white;
    padding: 60px 20px 100px;
    /* Extra padding bottom for table overlap */
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.app-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.app-brand img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.app-brand span {
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.compare-hero h1 {
    font-size: 2.5rem;
    margin: 0 0 30px;
    line-height: 1.2;
}

/* SEARCH BAR IN HERO */
.hero-search {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.hero-search input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    outline: none;
}

.hero-search svg {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

/* COMPARISON TABLE CARD */
.table-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.table-responsive {
    overflow-x: auto;
}

.zoho-compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

/* Headers */
.zoho-compare-table th {
    padding: 25px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
    background: #fff;
    vertical-align: bottom;
}

.feature-col {
    text-align: left !important;
    width: 30%;
    font-size: 1.1rem;
    color: #111;
}

.plan-col {
    width: 17%;
}

.plan-name {
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: #444;
}

.pop-tag {
    font-size: 0.65rem;
    background: #FFD700;
    color: #333;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 800;
}

.action-row td {
    padding: 10px 20px 25px;
    text-align: center;
    border-bottom: 2px solid #f5f5f5;
}

.btn-action {
    display: block;
    width: 100%;
    padding: 10px;
    background: #fff;
    border: 1px solid #007AFF;
    color: #007AFF;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: 0.2s;
}

.btn-action:hover {
    background: #007AFF;
    color: white;
}

/* Rows */
.feature-row:nth-child(even) {
    background: #fcfcfc;
}

.feature-row:hover {
    background: #f0f7ff;
}

.feature-name {
    padding: 18px 25px;
    font-weight: 500;
    color: #333;
    border-bottom: 1px solid #eee;
}

.status-cell {
    text-align: center;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

/* Icons */
.tick-icon::before {
    content: "✓";
    color: #007AFF;
    font-size: 1.4rem;
    font-weight: bold;
}

.dash-icon::before {
    content: "-";
    color: #ccc;
    font-size: 1.4rem;
}

/* Mobile */
@media (max-width: 768px) {
    .compare-hero h1 {
        font-size: 1.8rem;
    }

    .feature-col {
        position: sticky;
        left: 0;
        background: #fff;
        z-index: 2;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.05);
    }
}

/* --- DOWNLOAD PDF BUTTON --- */
.btn-download-pdf {
    background: white;
    color: #007AFF;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.btn-download-pdf:hover {
    transform: translateY(-2px);
    background: #f8f9fa;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-download-pdf svg {
    stroke: #007AFF;
}

/* --- FIX ZOHO SALESIQ CHATBOT ALIGNMENT --- */
.zsiq_floatmain {
    bottom: 20px !important;
    /* Lift it up slightly */
    right: 20px !important;
    /* Move it away from the right edge */
    z-index: 99999 !important;
    /* Ensure it stays on top of everything */
}

/* Mobile Adjustment to prevent cutoff */
@media (max-width: 768px) {
    .zsiq_floatmain {
        bottom: 10px !important;
        right: 10px !important;
    }
}