/*
 * InspoTool Main Stylesheet
 * 
 * Clean SaaS-style design system.
 */

:root {
    --primary-color: #072d6e; /* Main blue */
    --primary-hover: #051f4d; /* Darker blue */
    --text-main: #000000;
    --text-muted: #333333;
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --border-color: #e2e8f0;
    
    --footer-bg: #072d6e; /* Primary Blue */
    --footer-bottom-bg: #051f4d; /* Copyright Dark Blue */
    --footer-text: #ffffff;
    --footer-heading: #ffffff;
    --footer-link: #ffffff;
    --footer-link-hover: #ffc107; /* Yellow */
    
    --border-radius: 8px;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-hover: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: var(--primary-hover);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.text-orange { color: var(--primary-color); }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

/* ==========================================================================
   Header & Mega Menu
   ========================================================================== */
.site-header {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
}

.site-branding .site-title a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Mega Menu */
.mobile-toggles { display: none; }
.mega-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.mega-menu .menu-item > a {
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 0;
}

.mega-menu .menu-item > a:hover {
    color: var(--primary-color);
}

.has-mega-menu {
    position: relative;
}

.mega-menu-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 900px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 999;
}

.has-mega-menu:hover .mega-menu-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-inner {
    display: flex;
    padding: 25px;
}

.mega-menu-sidebar {
    width: 250px;
    border-right: 1px solid var(--border-color);
    padding-right: 25px;
    margin-right: 25px;
}

.mega-menu-sidebar .category-title {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}

.mega-menu-sidebar .category-description {
    font-size: 13px;
    color: var(--text-muted);
}

.mega-menu-tools-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.mega-menu-tool-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 6px;
    color: var(--text-main);
    font-size: 13px;
    font-weight: 500;
}

.mega-menu-tool-item:hover {
    background: #f1f5f9;
}

.mega-menu-tool-item .tool-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mega-menu-footer {
    padding: 15px 25px;
    background: #f8fafc;
    border-top: 1px solid var(--border-color);
    text-align: right;
    font-size: 13px;
    font-weight: 600;
}

/* Popup Search Styling */
.popup-search {
    position: relative;
}
.search-popup-toggle {
    display: inline-flex;
    align-items: center;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 30px;
    padding: 8px 18px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.search-popup-toggle:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}
.search-popup-toggle .search-text {
    margin-right: 5px;
}
.search-popup-toggle .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}
.search-popup-box {
    position: fixed;
    top: 110px;
    left: 50%;
    width: 90%;
    max-width: 650px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border: 1px solid #e2e8f0;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -10px);
    transition: all 0.3s ease;
    z-index: 9999;
}
.search-popup-box.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}
.search-popup-box .search-form {
    display: flex;
    gap: 10px;
}
.search-popup-box .search-field {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    outline: none;
    font-size: 15px;
}
.search-popup-box .search-field:focus {
    border-color: var(--primary-color);
}
.search-popup-box .search-submit {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}
.search-popup-box .search-submit:hover {
    background: var(--primary-hover);
}

/* Premium No Results Page */
.search-no-results-premium {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}
.no-results-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #eff6ff;
    color: var(--primary-color);
    border-radius: 50%;
    margin-bottom: 25px;
}
.no-results-icon .dashicons {
    font-size: 36px;
    width: 36px;
    height: 36px;
}
.no-results-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #0f172a;
}
.no-results-desc {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 35px;
    line-height: 1.6;
}
.no-results-search-form form {
    display: flex;
    gap: 10px;
}
.no-results-search-form input[type="search"] {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}
.no-results-search-form input[type="search"]:focus {
    border-color: var(--primary-color);
}
.no-results-search-form button {
    padding: 15px 30px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}
.no-results-search-form button:hover {
    background: var(--primary-hover);
}

/* ==========================================================================
   Homepage - Premium Hero Section
   ========================================================================== */
.home-hero-premium {
    padding: 40px 0 30px;
    background-color: #fafafa;
    /* Subtle grid pattern background */
    background-image: 
      linear-gradient(to right, rgba(0,0,0,0.03) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.hero-premium-header {
    margin-bottom: 30px;
}

.hero-premium-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-premium-title .title-blue { color: #0284c7; }
.hero-premium-title .title-black { color: #334155; }
.hero-premium-title .title-orange { color: #ea580c; }

.title-sub-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.title-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 60px;
}
.line-orange { height: 4px; background: #ea580c; border-radius: 4px; width: 100%; }
.line-blue { height: 4px; background: #0284c7; border-radius: 4px; width: 80%; margin-left: auto; }

.title-green {
    color: #16a34a;
    font-style: italic;
}

.hero-premium-desc {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Stats Row */
.hero-stats-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px; /* Reduced from 50px */
}

.hero-stat-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    min-width: 180px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.hero-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.stat-icon.stat-blue { background: #e0f2fe; color: #0284c7; }
.stat-icon.stat-green { background: #dcfce7; color: #16a34a; }
.stat-icon.stat-orange { background: #ffedd5; color: #ea580c; }
.stat-icon.stat-pink { background: #fce7f3; color: #db2777; }

.stat-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.stat-text strong {
    font-size: 1.1rem;
    font-weight: 800;
    color: #334155;
    line-height: 1.2;
}
.stat-text span {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #94a3b8;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Search Bar */
.hero-search-wrapper {
    max-width: 700px;
    margin: 0 auto 20px;
}

.hero-search-form {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 50px;
    padding: 8px 8px 8px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
}

.hero-search-field {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    color: #334155;
    padding: 10px 0;
    outline: none;
}
.hero-search-field::placeholder {
    color: #94a3b8;
}

.hero-search-submit {
    background: #ffffff;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}
.hero-search-submit:hover {
    background: #fee2e2;
}

.hero-trending {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #64748b;
}
.hero-trending a {
    color: #475569;
    text-decoration: none;
    transition: color 0.3s;
}
.hero-trending a:hover {
    color: #ef4444;
}
.trending-label {
    font-weight: 600;
    color: #94a3b8;
}
.trending-label .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
    vertical-align: middle;
}
.hero-trending .dot {
    color: #ef4444;
    margin: 0 5px;
    font-weight: bold;
}

/* Premium Filter Tabs */
.tools-filter-tabs.premium-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.premium-tabs .filter-btn {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #475569;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.premium-tabs .filter-btn:hover {
    border-color: #cbd5e1;
    color: #0f172a;
}

.premium-tabs .filter-btn.active {
    background: #0f172a;
    border-color: #0f172a;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(15,23,42,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-premium-title { font-size: 2.2rem; }
    .hero-saas-title {
        font-size: 32px;
        line-height: 1.2;
    }
    .hero-saas-desc {
        font-size: 16px;
        padding: 0 10px;
    }
    .hero-stats-row { 
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px; 
        width: 100%;
        max-width: 500px;
        margin: 0 auto 25px;
    }
    .hero-stat-card { 
        width: 100%; 
        max-width: none;
        min-width: 0;
        padding: 10px; 
        gap: 8px;
        justify-content: flex-start; 
    }
    .hero-stat-card .stat-text {
        font-size: 0.75rem;
    }
    .hero-stat-card .stat-text strong {
        font-size: 1rem;
    }
    .hero-search-wrapper {
        padding: 20px;
    }
}

/* ==========================================================================
   Homepage - All Tools Section
   ========================================================================== */
.home-tools-section {
    padding: 40px 0;
}

.section-header {
    margin-bottom: 30px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.tools-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    background: #fff;
    padding: 8px;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.filter-btn {
    background: transparent;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.filter-btn.active, .filter-btn:hover {
    background: #fef3c7;
    color: var(--primary-hover);
}
.filter-btn.active {
    background: var(--primary-color);
    color: #fff;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.tool-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: all 0.2s ease;
}

.tool-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
    border-color: #cbd5e1;
}

.tool-card-link {
    display: flex;
    padding: 20px;
    gap: 15px;
    color: inherit;
}

.tool-card-link:hover { color: inherit; }

.tool-icon-box {
    width: 56px; /* 14 * 4px for tailwind w-14 */
    min-height: 56px;
    border-radius: 0.5rem; /* rounded-lg */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tool-icon-box .dashicon-large {
    font-size: 28px;
    width: 28px;
    height: 28px;
}

.tool-card-icon-img {
    max-width: 32px;
    max-height: 32px;
    object-fit: contain;
}

.tool-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pro-badge {
    background: #f59e0b;
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
}

.tool-card-excerpt {
    font-size: 13px;
    color: var(--text-muted);
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
}
.btn-view-all:hover {
    background: var(--primary-color);
    color: #fff;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 0;
    font-size: 14px;
    border-top: 4px solid var(--footer-link-hover);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-top-row {
    padding: 40px 0 20px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-brand-col {
    flex: 0 0 400px;
    max-width: 400px;
}

.footer-site-title a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-tagline {
    margin: 15px 0;
}

.footer-stats {
    margin-bottom: 15px;
}

.footer-note {
    font-size: 12px;
    opacity: 0.7;
    margin-bottom: 15px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-social a.social-icon, .footer-bottom-social a.social-icon {
    color: var(--footer-text);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: color 0.3s ease;
    text-decoration: none;
    border: none;
}
.footer-social a.social-icon svg, .footer-bottom-social a.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}
.footer-social a.social-icon .dashicons, .footer-bottom-social a.social-icon .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

/* Hover Brand Colors */
.footer-social a.social-wa:hover, .footer-bottom-social a.social-wa:hover { color: #25D366; }
.footer-social a.social-fb:hover, .footer-bottom-social a.social-fb:hover { color: #1877F2; }
.footer-social a.social-ig:hover, .footer-bottom-social a.social-ig:hover { color: #E1306C; }
.footer-social a.social-tg:hover, .footer-bottom-social a.social-tg:hover { color: #0088cc; }
.footer-social a.social-tw:hover, .footer-bottom-social a.social-tw:hover { color: #1DA1F2; }
.footer-social a.social-yt:hover, .footer-bottom-social a.social-yt:hover { color: #FF0000; }

.footer-menus-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.footer-heading {
    color: var(--footer-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-menu-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-col ul li {
    margin-bottom: 5px;
}

.footer-menu-col ul li a {
    color: var(--footer-link);
}

.footer-menu-col ul li a:hover {
    color: var(--footer-link-hover);
}

.footer-bottom-wrapper {
    background: var(--footer-bottom-bg);
    padding: 10px 0;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
}
.footer-copyright {
    flex: 1;
    min-width: 250px;
}
.footer-legal-menu {
    flex: 1;
    text-align: center;
    min-width: 250px;
}
.footer-bottom-social {
    display: flex;
    gap: 10px;
    flex: 1;
    justify-content: flex-end;
    min-width: 250px;
}

.footer-legal-menu ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.footer-legal-menu ul li a {
    color: var(--footer-link);
}
.footer-legal-menu ul li a:hover { color: var(--footer-link-hover); }

/* Dashicons adjustment */
.dashicons { font-family: dashicons; }

/* ==========================================================================
   Single Tool Page
   ========================================================================== */
.tool-single-main {
    padding: 40px 20px 60px;
}

.tool-header {
    text-align: center;
    margin-bottom: 30px;
}

.tool-header .tool-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.tool-header .tool-description {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.tool-interface-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
}

.file-drop-area {
    border: 2px dashed #94a3b8;
    border-radius: 12px;
    padding: 60px 20px;
    text-align: center;
    background: #f8fafc;
    position: relative;
    transition: all 0.2s ease;
    cursor: pointer;
}

.file-drop-area:hover, .file-drop-area.dragover {
    background: #f1f5f9;
    border-color: var(--primary-color);
}

.file-drop-area .dashicons {
    font-size: 48px;
    width: 48px;
    height: 48px;
    color: #94a3b8;
    margin-bottom: 15px;
}

.file-drop-area p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 15px;
}

.btn-select-file {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
}

.hidden-file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.btn-large {
    font-size: 1.1rem;
    padding: 12px 30px;
    border-radius: 30px;
    background: #4f46e5;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
}

.btn-large:hover:not(:disabled) {
    background: #4338ca;
}

.btn-large:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
}

.hidden {
    display: none !important;
}

.tool-result-area {
    text-align: center;
    padding: 30px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
}

.tool-result-area .btn-success {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: #16a34a;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 15px;
    text-decoration: none;
}

.tool-seo-content {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.tool-seo-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

/* Text Tools Textarea */
.text-input-area textarea,
.tool-result-area textarea {
    width: 100%;
    min-height: 250px;
    padding: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-main);
    resize: vertical;
    transition: border-color 0.2s;
    outline: none;
}

.text-input-area textarea:focus {
    border-color: var(--primary-color);
}

.tool-result-area textarea {
    background-color: #f8fafc;
}

/* Page Content Styling */
.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4 {
    margin: 30px 0 15px;
    color: #0f172a;
}
.entry-content p {
    margin-bottom: 20px;
}
.entry-content ul, .entry-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}
.entry-content li {
    margin-bottom: 8px;
}
.entry-content a {
    text-decoration: underline;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: var(--primary-hover);
    color: #fff;
    transform: translateY(-3px);
}
.back-to-top .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

/* Why Choose Us Section */
.home-features-section {
    padding: 40px 0;
    background-color: #27221e; /* Dark brown/charcoal background */
    color: #e5e7eb;
}
.features-header {
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.features-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}
.features-desc {
    font-size: 18px;
    color: #d1d5db;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background-color: #2f2924;
    border-radius: 16px;
    padding: 35px 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
}
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #3f3123; /* Dark orange-tinted background */
    border-radius: 12px;
    margin-bottom: 25px;
}
.feature-icon .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
    color: #f59e0b; /* Orange icon */
}
.feature-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}
.feature-card-desc {
    font-size: 15px;
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Home Blog Section */
.home-blog-section {
    padding: 40px 0;
    background-color: var(--bg-light); /* Matching the very light bluish-gray background */
}
.blog-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}
.blog-header-text {
    max-width: 70%;
}
.blog-section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}
.blog-section-desc {
    font-size: 16px;
    color: var(--text-main);
    margin-bottom: 0;
}
.blog-header-link .view-all-posts {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-base);
}
.blog-header-link .view-all-posts:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* Blog Grid & Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .blog-header-text {
        max-width: 100%;
    }
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    transition: var(--transition-base);
    height: 100%;
}
.blog-card:hover {
    box-shadow: 0 10px 15px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
.blog-card-thumbnail {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #ffffff; /* White background to match design */
}
.blog-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.blog-card:hover .blog-card-thumbnail img {
    transform: scale(1.03);
}
.blog-card-thumbnail.fallback-thumbnail {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
}
.blog-card-thumbnail.fallback-thumbnail .dashicons {
    font-size: 48px;
    width: 48px;
    height: 48px;
    color: #444;
}
.blog-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.blog-card-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.4;
}
.blog-card-title a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.2s;
}
.blog-card-title a:hover {
    color: var(--primary-color);
}
.blog-card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
}
.blog-card-date {
    font-size: 13px;
    color: #64748b;
}
.blog-card-read-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s;
}
.blog-card-read-more:hover {
    color: var(--primary-hover);
}

/* Archive Tools Page (All Tools) */
.archive-tools-main {
    background-color: #fafafa;
    background-image: 
        linear-gradient(to right, rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    min-height: 100vh;
    padding-bottom: 80px;
}
.tools-archive-hero {
    padding: 30px 0 40px;
}
.tools-badge {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}
.tools-archive-title {
    color: #0f172a;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}
.tools-archive-desc {
    color: #475569;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 40px;
}
.tools-search-bar {
    max-width: 600px;
    margin: 0 auto;
}
.tools-search-bar .search-form {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    padding: 12px 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.tools-search-bar .search-icon {
    color: #94a3b8;
    margin-right: 10px;
    font-size: 20px;
    width: 20px;
    height: 20px;
}
.tools-search-bar .search-field {
    background: transparent;
    border: none;
    color: #0f172a;
    font-size: 16px;
    flex-grow: 1;
    outline: none;
}
.tools-search-bar .search-field::placeholder {
    color: #94a3b8;
}

.tools-archive-categories {
    padding-top: 20px;
}
.tool-category-section {
    margin-bottom: 60px;
}
.category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 25px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 15px;
}
.category-header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}
.category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #e0f2fe; /* light blue like the screenshot's icon bg */
    border-radius: 12px;
    color: #3b82f6;
}
.category-title {
    color: #0f172a;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 5px 0;
}
.category-desc {
    color: #64748b;
    font-size: 14px;
    margin: 0;
}
.view-all-link {
    color: #2563eb;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.view-all-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.horizontal-tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 1199px) {
    .horizontal-tools-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991px) {
    .horizontal-tools-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .horizontal-tools-grid { grid-template-columns: 1fr; }
    .category-header { flex-direction: column; align-items: flex-start; gap: 15px; }
}

.tool-card-horizontal {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #ffffff;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.tool-card-horizontal:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-color: #cbd5e1;
}
.tool-card-icon-wrap {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tool-card-icon-wrap .dashicons {
    color: #0f172a;
    font-size: 22px;
    width: 22px;
    height: 22px;
}
.tool-card-text {
    flex-grow: 1;
}
.tool-card-title {
    color: #0f172a;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 5px 0;
    transition: color 0.2s;
}
.tool-card-horizontal:hover .tool-card-title {
    color: #2563eb;
}
.tool-card-excerpt {
    color: #64748b;
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
}

/* Live Search Results */
.live-search-results {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    margin-top: 15px;
    z-index: 9999;
    display: none;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}
.live-search-result-item {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    color: var(--text-main);
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 15px;
}
.live-search-result-item:last-child {
    border-bottom: none;
}
.live-search-result-item:hover {
    background: #f8fafc;
    color: var(--primary-color);
    padding-left: 32px;
}
.live-search-result-item .live-search-icon-wrapper {
    color: var(--primary-color);
    margin-right: 15px;
    background: #eff6ff;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 18px;
    overflow: hidden;
}
.live-search-result-item .live-search-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.live-search-result-item:hover .live-search-icon-wrapper {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}
.live-search-no-results {
    padding: 20px;
    color: #64748b;
    font-style: italic;
    text-align: center;
}

.tool-card-title { color: #334155; }

/* ==========================================================================
   Mobile Header Fixes
   ========================================================================== */
@media (max-width: 991px) {
    .hubtools-pagination .nav-links a,
    .hubtools-pagination .nav-links span {
        padding: 8px 14px;
        font-size: 14px;
    }
    .back-to-top {
        right: 15px !important;
        bottom: 15px !important;
        width: 45px !important;
        height: 45px !important;
        z-index: 99999 !important;
    }
    .widget-area {
        margin-top: 40px !important;
    }
    .comments-area-wrapper {
        padding: 20px !important;
        margin-bottom: 30px;
    }
    .header-container {
        flex-wrap: wrap;
        padding: 15px;
    }
    .mobile-toggles {
        display: flex !important;
        align-items: center;
        gap: 5px;
        position: relative !important;
        z-index: 99999 !important;
        pointer-events: auto !important;
    }
    .main-navigation .menu-toggle,
    .main-navigation .mobile-search-toggle {
        display: block !important;
        background: transparent;
        border: none;
        cursor: pointer !important;
        padding: 5px;
        color: #0f172a;
        pointer-events: auto !important;
        position: relative;
        z-index: 99999;
    }
    .main-navigation .menu-toggle .dashicons,
    .main-navigation .mobile-search-toggle .dashicons {
        font-size: 28px;
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none; /* ensure click goes to button */
    }
    .main-navigation {
        order: 2;
    }
    .header-right-actions {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 15px 20px;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        z-index: 999;
        margin-top: 0;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        display: block !important;
    }
    .header-right-actions.show-search {
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    .search-popup-toggle {
        display: none !important;
    }
    .header-right-actions.show-search .search-popup-box {
        opacity: 1 !important;
        visibility: visible !important;
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        width: 100% !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
    }
    .header-search {
        width: 100%;
    }
    .header-search form {
        width: 100%;
        justify-content: space-between;
        background: #f1f5f9;
        padding: 5px 15px;
    }
    .header-search .search-field {
        width: 100%;
        flex: 1;
        opacity: 1;
        padding: 8px;
    }
    .mega-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        gap: 15px;
        z-index: 1000;
    }
    .main-navigation.toggled .mega-menu {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    .mega-menu-content {
        position: static;
        width: 100%;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 10px 0 10px 15px;
        display: none;
    }
    /* Disable hover opening on mobile to prevent sticky tap issues */
    .has-mega-menu:hover .mega-menu-content {
        display: none;
        opacity: 0;
        visibility: hidden;
    }
    .has-mega-menu.active .mega-menu-content {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }
    .mega-menu-inner {
        flex-direction: column;
        padding: 0;
    }
    .mega-menu-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-right: 0;
        margin-right: 0;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    .mega-menu-tools-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    .mega-menu-tool-item {
        width: 100%;
    }
    .mega-menu-footer {
        text-align: left !important;
        padding: 15px 0 0 0 !important;
        background: transparent !important;
        border-top: none !important;
    }
}

/* ==========================================================================
   Premium FAQ Section
   ========================================================================== */
.premium-faq-section {
    padding: 40px 0 50px;
    background-color: #fafbfc; /* Matches why section */
    position: relative;
}
.faq-glass-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.glass-faq-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03), inset 0 1px 0 rgba(255, 255, 255, 1);
    overflow: hidden;
    transition: all 0.3s ease;
}
.glass-faq-item:hover {
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.06), inset 0 1px 0 rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}
.glass-faq-item.active {
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.1), inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(59, 130, 246, 0.3); /* Subtle blue glow border */
}
.glass-faq-header {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #0f172a;
    transition: all 0.3s ease;
}
.glass-faq-header:focus {
    outline: none;
}
.faq-title {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}
.faq-icon {
    font-size: 20px;
    width: 20px;
    height: 20px;
    color: #64748b;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #f1f5f9;
    border-radius: 50%;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: content-box;
}
.glass-faq-item.active .faq-title {
    color: #2563eb; /* Blue highlight */
}
.glass-faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: #eff6ff;
    color: #2563eb;
}
.glass-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.faq-content-inner {
    padding: 0 30px 24px;
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.6;
    border-top: 1px solid transparent; /* Prevents margin collapse */
}
.glass-faq-item.active .faq-content-inner {
    border-top: 1px solid rgba(226, 232, 240, 0.5);
    padding-top: 20px;
}
@media (max-width: 767px) {
    .premium-faq-section { padding: 40px 0 60px; }
    .glass-faq-header { padding: 20px; }
    .faq-content-inner { padding: 0 20px 20px; }
    .faq-title { font-size: 1.05rem; }
}

/* ==========================================================================
   Premium Testimonials Section
   ========================================================================== */
.premium-testimonials-section {
    padding: 40px 0;
    background-color: #ffffff; /* Clean white background */
    position: relative;
    overflow: hidden;
}
.testimonial-mesh-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 70% 30%, rgba(219, 234, 254, 0.4) 0%, rgba(255, 255, 255, 0) 50%),
                radial-gradient(circle at 30% 70%, rgba(243, 232, 255, 0.4) 0%, rgba(255, 255, 255, 0) 50%);
    z-index: 0;
    pointer-events: none;
}
.testimonials-glass-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.glass-testimonial-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.04), inset 0 1px 0 rgba(255, 255, 255, 1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
}
.glass-testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.08), inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(191, 219, 254, 0.8);
}
.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}
.testimonial-rating .dashicons {
    color: #fbbf24;
    font-size: 20px;
    width: 20px;
    height: 20px;
}
.testimonial-text {
    font-size: 1.1rem;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(226, 232, 240, 0.6);
    padding-top: 25px;
}
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.testimonial-meta {
    display: flex;
    flex-direction: column;
}
.testimonial-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px 0;
}
.testimonial-role {
    font-size: 0.9rem;
    color: #64748b;
}
@media (max-width: 991px) {
    .testimonials-glass-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .premium-testimonials-section { padding: 30px 0; }
    .testimonials-glass-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Premium SaaS Hero Header
   ========================================================================== */
.home-hero-premium {
    padding-top: 25px; /* Reduced from 50px */
    position: relative;
}
/* Beautiful Background Blobs */
.hero-bg-blobs {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.blob {
    position: absolute;
    filter: blur(100px);
    border-radius: 50%;
    opacity: 0.4;
    animation: floatBlob 20s infinite alternate ease-in-out;
}
.blob-left {
    top: -100px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #7c3aed 0%, rgba(124, 58, 237, 0) 70%);
}
.blob-right {
    top: 100px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #2563eb 0%, #38bdf8 50%, rgba(56, 189, 248, 0) 70%);
    animation-delay: -5s;
}
@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -50px) scale(1.1); }
    100% { transform: translate(-30px, 40px) scale(0.9); }
}
.hero-saas-header {
    max-width: 900px;
    margin: 0 auto 30px; /* Reduced bottom margin */
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-badge {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px; /* Reduced from 25px */
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}
.hero-badge .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: #fbbf24;
}
.hero-saas-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}
.text-gradient-primary {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.title-light {
    font-weight: 300;
    color: #334155;
    font-size: 3.5rem;
}
.hero-saas-desc {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto 10px; /* Reduced bottom space */
    line-height: 1.6;
}
.hero-saas-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}
.btn-glow {
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
}
.btn-glow:hover {
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.6);
    transform: translateY(-2px);
}
.btn-outline-secondary {
    background: transparent;
    border: 2px solid #e2e8f0;
    color: #475569;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.btn-outline-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #0f172a;
}
@media (max-width: 767px) {
    .hero-saas-title { font-size: 2.8rem; }
    .title-light { font-size: 2.2rem; }
    .hero-saas-desc { font-size: 1.1rem; }
    .hero-saas-actions { flex-direction: column; width: 100%; max-width: 300px; }
    .hero-saas-actions .btn { width: 100%; text-align: center; }
}

/* ==========================================================================
   Single Tool Typography & Layout
   ========================================================================== */
.tool-single-main {
    background-color: #fafafa;
    background-image: 
        linear-gradient(to right, rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    min-height: 100vh;
    padding-top: 40px;
    padding-bottom: 80px;
}
.tool-interface-container ul,
.tool-interface-container ol {
    padding-left: 2rem;
    margin-bottom: 1rem;
}
.tool-interface-container li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: #334155;
}
.tool-interface-container p {
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}
.tool-interface-container h2,
.tool-interface-container h3,
.tool-interface-container h4,
.tool-interface-container h5,
.tool-interface-container h6 {
    color: #0f172a;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.tool-interface-container h2 { font-size: 2rem; letter-spacing: -0.5px; }
.tool-interface-container h3 { font-size: 1.5rem; }
.tool-interface-container h4 { font-size: 1.25rem; }
.tool-interface-container strong {
    color: #0f172a;
    font-weight: 700;
}

/* ==========================================================================
   Rank Math FAQ Custom Styling
   ========================================================================== */
.rank-math-block {
    background-color: #f1f5f9;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    border: 1px solid #e2e8f0;
}

.rank-math-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rank-math-list-item {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 20px 20px 15px 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.rank-math-question {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin: 0 0 15px 0 !important;
    padding: 0 35px 15px 0 !important;
    border-bottom: 1px dashed #cbd5e1 !important;
    position: relative;
    line-height: 1.5 !important;
}

.rank-math-question::after {
    content: "?";
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
    font-family: sans-serif;
}

.rank-math-answer {
    font-size: 14px !important;
    color: #64748b !important;
    line-height: 1.6 !important;
}

.rank-math-answer p {
    margin: 0 !important;
}

.rank-math-answer strong {
    color: #334155;
}

/* ==========================================================================
   Mobile Footer Adjustments
   ========================================================================== */
@media (max-width: 768px) {
    .site, html, body {
        overflow-x: hidden;
        max-width: 100%;
    }
    .site-header {
        position: relative !important;
        z-index: 1000 !important;
    }
    .header-container {
        flex-wrap: wrap;
    }
    .single-post-grid {
        display: block !important;
    }
    .single-post-content-column, .single-blog-article {
        min-width: 0;
        max-width: 100%;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    img, iframe, video {
        max-width: 100% !important;
        height: auto !important;
    }
    .post-content, .entry-title, .breadcrumbs, .entry-meta-row {
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
    }
    .post-content * {
        max-width: 100% !important;
    }
    .single-post-main,
    .tool-single-main {
        padding: 15px 0 !important;
        background-color: #fff !important;
    }
    .single-blog-article,
    .tool-interface-container {
        padding: 15px 0 !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        background: transparent !important;
        margin-bottom: 20px !important;
    }
    .tool-app-wrapper > div {
        border-radius: 0 !important;
        border-left: none !important;
        border-right: none !important;
        box-shadow: none !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .single-blog-article .entry-title {
        font-size: 1.6rem !important;
        margin-bottom: 15px !important;
    }
    .footer-brand-col {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: left;
    }
    .footer-brand-col .footer-social {
        justify-content: flex-start;
    }
    .footer-menus-grid {
        grid-template-columns: auto auto;
        justify-content: center;
        gap: 30px 40px;
    }
    .footer-bottom-row {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 15px;
    }
    .footer-copyright,
    .footer-legal-menu,
    .footer-bottom-social {
        flex: none;
        width: 100%;
        min-width: 0;
        justify-content: center;
        text-align: center;
    }

/* Fix for Tables Overflowing on Mobile (Blog Posts) */
table {
    max-width: 100% !important;
    display: block !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
}
    /* Filter Tabs Mobile - Horizontal Scroll */
    .tools-filter-tabs {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        width: 100%;
        justify-content: flex-start !important;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 15px;
        margin-top: -10px;
    }
    .tools-filter-tabs .filter-btn {
        flex: 0 0 auto;
        white-space: nowrap;
        padding: 6px 14px;
        font-size: 0.8rem;
    }
}

/* Numbered Pagination Styling */
.hubtools-pagination {
    margin-top: 50px;
    text-align: center;
}
.hubtools-pagination .nav-links {
    display: inline-flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}
.hubtools-pagination .nav-links a,
.hubtools-pagination .nav-links span {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 8px;
    background: #fff;
    color: var(--text-main);
    border: 1px solid #e2e8f0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}
.hubtools-pagination .nav-links a:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}
.hubtools-pagination .nav-links .current {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}
.hubtools-pagination .nav-links .dots {
    background: transparent;
    border: none;
    padding: 10px;
}

/* ==========================================================================
   Author Box & Share Section
   ========================================================================== */

/* Author Box Professional Styling */
.author-box {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
    padding: 35px;
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.author-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(0,0,0,0.08);
}
.author-avatar {
    flex-shrink: 0;
}
.author-avatar img {
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 3px solid #fff;
    width: 90px;
    height: 90px;
}
.author-info .author-label {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 5px;
}
.author-info .author-name {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
    color: #0f172a;
    font-weight: 800;
}
.author-info .author-bio {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
}
.author-info .author-link {
    display: inline-flex;
    align-items: center;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}
.author-info .author-link:hover {
    color: var(--primary-color);
}

/* Post Share Section Professional Styling */
.post-share-wrap {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px dashed #cbd5e1;
    display: flex;
    align-items: center;
    gap: 20px;
}
.share-label {
    display: flex;
    align-items: center;
    color: #0f172a;
    font-weight: 800;
    font-size: 1.1rem;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.share-label .dashicons {
    margin-right: 8px;
    color: var(--primary-color);
}
.share-buttons-container {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 6px 10px;
    border-radius: 30px;
    text-decoration: none !important;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    transition: transform 0.2s, opacity 0.2s;
    border: none;
    cursor: pointer;
}
.share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    color: #fff !important;
}
.share-btn .dashicons, .share-btn svg {
    margin-right: 4px;
    font-size: 14px;
    width: 14px;
    height: 14px;
}
.share-btn.whatsapp { background: #25D366; }
.share-btn.telegram { background: #0088cc; }
.share-btn.facebook { background: #1877F2; }
.share-btn.twitter { background: #1DA1F2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.native-share { background: #8b5cf6; }

/* Mobile View adjustments for Author Box & Share Grid (3x2) */
@media (max-width: 768px) {
    .author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px 20px;
        margin-top: 30px;
        margin-bottom: 30px;
        border-left: 1px solid #e2e8f0;
        border-top: 4px solid var(--primary-color);
    }
    
    .post-share-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .share-buttons-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        width: 100%;
    }
    .share-btn {
        padding: 8px 5px;
        font-size: 0.8rem;
        border-radius: 8px; /* Slightly squarish for grid */
    }
    .share-btn .dashicons, .share-btn svg {
        margin-right: 4px;
    }
}

/* ==========================================================================
   Sticky Header
   ========================================================================== */
.site-header {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s;
    background-color: #ffffff; /* Ensure background is solid when sticky */
}
.site-header.is-sticky {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.site-header.is-sticky.sticky-hide {
    transform: translateY(-100%);
}
.site-header.is-sticky.sticky-show {
    transform: translateY(0);
}
/* ==========================================================================
   PREMIUM FOOTER REDESIGN
   ========================================================================== */

/* Base Variables for Footer */
:root {
	--pf-bg: #0b0f19;
	--pf-bg-light: #131a2a;
	--pf-text: #94a3b8;
	--pf-text-light: #f1f5f9;
	--pf-border: #1e293b;
	--pf-primary: #6366f1;
	--pf-primary-glow: rgba(99, 102, 241, 0.2);
}

.premium-dark-footer {
	background-color: var(--pf-bg);
	color: var(--pf-text);
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	position: relative;
	padding-top: 30px;
	border-top: 1px solid var(--pf-border);
}

/* Background Glow Effects */
.premium-dark-footer::before {
	content: '';
	position: absolute;
	top: -150px;
	left: -10%;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(11, 15, 25, 0) 70%);
	z-index: 0;
	pointer-events: none;
}
.premium-dark-footer::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: -10%;
		background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, rgba(11, 15, 25, 0) 70%);
	z-index: 0;
	pointer-events: none;
}

.premium-dark-footer .container {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* 1. CTA Banner */
.footer-cta-banner-wrapper {
	margin-bottom: 30px;
	padding-top: 0px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	position: relative;
}

.bg-particles {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	pointer-events: none;
	z-index: 0;
}
.bg-cube {
	position: absolute;
	width: 30px;
	height: 30px;
	background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(59, 130, 246, 0.15));
	border: 1px solid rgba(139, 92, 246, 0.2);
	border-radius: 8px;
	transform: rotate(45deg);
	box-shadow: inset 0 0 10px rgba(139, 92, 246, 0.1);
}
.bg-cube-1 { top: 20%; left: 8%; width: 25px; height: 25px; transform: rotate(15deg); }
.bg-cube-2 { bottom: 30%; right: 5%; width: 15px; height: 15px; transform: rotate(70deg); }
.bg-cube-3 { top: -5%; right: 40%; width: 25px; height: 25px; transform: rotate(45deg); opacity: 0.7; }
.bg-cube-4 { bottom: -10%; left: 35%; width: 18px; height: 18px; transform: rotate(20deg); background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(139, 92, 246, 0.2)); border: 1px solid rgba(236, 72, 153, 0.3); border-radius: 6px; position: absolute; }
.bg-star-6 { bottom: 5%; right: 10%; opacity: 0.9; transform: scale(1.6); position: absolute; width: 4px; height: 4px; background: #38bdf8; border-radius: 50%; box-shadow: 0 0 8px 2px rgba(56, 189, 248, 0.6); }
.bg-star-7 { top: -5%; left: 40%; opacity: 1; transform: scale(1.8); position: absolute; width: 4px; height: 4px; background: #fbbf24; border-radius: 50%; box-shadow: 0 0 8px 2px rgba(251, 191, 36, 0.6); }
.bg-star-8 { top: 35%; right: 5%; opacity: 0.7; transform: scale(1.3); position: absolute; width: 4px; height: 4px; background: #a855f7; border-radius: 50%; box-shadow: 0 0 8px 2px rgba(168, 85, 247, 0.6); }
.bg-star-9 { bottom: 35%; left: 10%; opacity: 0.8; transform: scale(1.5); position: absolute; width: 4px; height: 4px; background: #ec4899; border-radius: 50%; box-shadow: 0 0 8px 2px rgba(236, 72, 153, 0.6); }
.bg-star-10 { top: -10%; right: 25%; opacity: 0.6; transform: scale(1.2); position: absolute; width: 4px; height: 4px; background: #38bdf8; border-radius: 50%; box-shadow: 0 0 8px 2px rgba(56, 189, 248, 0.6); }
.bg-cube-5 { top: 60%; left: -2%; width: 22px; height: 22px; transform: rotate(55deg); background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(139, 92, 246, 0.2)); border: 1px solid rgba(56, 189, 248, 0.3); border-radius: 6px; position: absolute; opacity: 0.8; }
.bg-star {
	position: absolute;
	width: 4px;
	height: 4px;
	background: #a855f7;
	border-radius: 50%;
	box-shadow: 0 0 8px 2px rgba(168, 85, 247, 0.6);
}
.bg-star-1 { top: 30%; left: 12%; opacity: 1; transform: scale(1.5); }
.bg-star-2 { top: 10%; right: 18%; opacity: 0.9; transform: scale(1.2); }
.bg-star-3 { bottom: 15%; left: 25%; opacity: 0.8; transform: scale(1.3); }
.bg-star-4 { top: 50%; right: 28%; opacity: 1; transform: scale(1.4); }
.bg-star-5 { top: 75%; left: 45%; opacity: 0.9; transform: scale(1.5); }

.footer-cta-banner {
	max-width: 1050px;
	margin: 0 auto;
	background: linear-gradient(90deg, rgba(15, 17, 35, 0.8) 0%, rgba(21, 16, 47, 0.85) 50%, rgba(13, 18, 35, 0.8) 100%);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(139, 92, 246, 0.25);
	border-radius: 20px;
	padding: 20px 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 0 40px rgba(139, 92, 246, 0.08);
	position: relative;
}
.cta-left {
	display: flex;
	align-items: center;
	gap: 20px;
	z-index: 2;
}
.cta-icon-wrap {
	width: 68px;
	height: 68px;
	background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(59, 130, 246, 0.15));
	border: 1px solid rgba(139, 92, 246, 0.4);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: inset 0 0 25px rgba(139, 92, 246, 0.3), 0 0 20px rgba(139, 92, 246, 0.2);
}
.cta-text h3 {
	margin: 0 0 5px 0;
	color: #fff;
	font-size: 1.4rem;
	font-weight: 700;
}
.cta-text p {
	margin: 0;
	color: var(--pf-text);
	font-size: 0.95rem;
}
.cta-right {
	display: flex;
	align-items: center;
	gap: 15px;
	z-index: 2;
}
.cta-search-form {
	position: relative;
}
.cta-search-form .search-icon {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: #64748b;
}
.cta-search-field {
	background: rgba(15, 23, 42, 0.8);
	border: 1px solid var(--pf-border);
	color: #fff;
	padding: 12px 20px 12px 45px;
	border-radius: 8px;
	width: 300px;
	outline: none;
	transition: all 0.3s ease;
}
.cta-search-field:focus {
	border-color: var(--pf-primary);
	box-shadow: 0 0 0 3px var(--pf-primary-glow);
}
.btn-explore-tools {
	background: linear-gradient(135deg, #a855f7, #3b82f6);
	color: #fff;
	padding: 12px 24px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	display: inline-block;
	box-shadow: 0 8px 15px rgba(99, 102, 241, 0.25);
}
.btn-explore-tools:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 20px rgba(99, 102, 241, 0.4);
	color: #fff;
}
.floating-el {
	position: absolute;
	background: rgba(255,255,255,0.05);
	color: #fff;
	padding: 8px 12px;
	border-radius: 8px;
	font-weight: bold;
	font-size: 12px;
	backdrop-filter: blur(4px);
	animation: float 6s ease-in-out infinite;
	z-index: 10;
}
.el-pdf { top: 15px; left: 30px; background: #e11d48; transform: rotate(-15deg) scale(1.1); }
.el-img { bottom: 15px; left: 50px; background: #8b5cf6; animation-delay: 1s; transform: scale(1.1); }
.el-ai { top: 15px; right: 30px; background: #4f46e5; animation-delay: 2s; transform: rotate(10deg) scale(1.1); }
.el-code { bottom: 15px; right: 50px; background: #0ea5e9; animation-delay: 3s; transform: scale(1.1); }
@keyframes float {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50% { transform: translateY(-10px) rotate(5deg); }
}

/* 3. Explore More Grid */
.explore-more-section {
	background: rgba(19, 26, 42, 0.4);
	border: 1px solid var(--pf-border);
	border-radius: 20px;
	padding: 40px;
	margin-bottom: 60px;
}
.explore-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}
.explore-header h3 {
	color: #fff;
	margin: 0;
	font-size: 1.4rem;
}
.view-all-link {
	color: #8b5cf6;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 600;
	transition: color 0.2s;
}
.view-all-link:hover {
	color: #a78bfa;
}
.explore-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.explore-box {
	background: rgba(15, 23, 42, 0.6);
	border: 1px solid rgba(255,255,255,0.05);
	border-radius: 12px;
	padding: 20px 10px;
	text-align: center;
	transition: all 0.3s ease;
	cursor: pointer;
}
.explore-box:hover {
	background: rgba(30, 41, 59, 0.8);
	transform: translateY(-5px);
	border-color: rgba(255,255,255,0.1);
}
.eb-icon {
	width: 48px;
	height: 48px;
	margin: 0 auto 15px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: #fff;
}
.eb-red { background: linear-gradient(135deg, #ef4444, #b91c1c); box-shadow: 0 8px 15px rgba(239, 68, 68, 0.2); }
.eb-yellow { background: linear-gradient(135deg, #eab308, #a16207); box-shadow: 0 8px 15px rgba(234, 179, 8, 0.2); }
.eb-pink { background: linear-gradient(135deg, #ec4899, #be185d); box-shadow: 0 8px 15px rgba(236, 72, 153, 0.2); }
.eb-purple { background: linear-gradient(135deg, #a855f7, #7e22ce); box-shadow: 0 8px 15px rgba(168, 85, 247, 0.2); }
.eb-red-light { background: linear-gradient(135deg, #f43f5e, #e11d48); box-shadow: 0 8px 15px rgba(244, 63, 94, 0.2); }
.eb-blue { background: linear-gradient(135deg, #3b82f6, #1d4ed8); box-shadow: 0 8px 15px rgba(59, 130, 246, 0.2); }
.eb-cyan { background: linear-gradient(135deg, #06b6d4, #0e7490); box-shadow: 0 8px 15px rgba(6, 182, 212, 0.2); }
.eb-orange { background: linear-gradient(135deg, #f97316, #c2410c); box-shadow: 0 8px 15px rgba(249, 115, 22, 0.2); }
.eb-blue-dark { background: linear-gradient(135deg, #6366f1, #4338ca); box-shadow: 0 8px 15px rgba(99, 102, 241, 0.2); }
.explore-box h5 {
	color: #fff;
	font-size: 0.85rem;
	margin: 0 0 5px 0;
	font-weight: 600;
}
.explore-box p {
	margin: 0;
	font-size: 0.7rem;
	color: #64748b;
}

/* 4. Trust Strip */
.trust-strip {
	background: var(--pf-bg-light);
	border: 1px solid var(--pf-border);
	border-radius: 16px;
	padding: 20px 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 30px;
	flex-wrap: wrap;
	gap: 20px;
}
.trust-item {
	display: flex;
	align-items: center;
	gap: 12px;
}
.ti-icon {
	color: #10b981;
	font-size: 24px;
}
.ti-icon .dashicons {
	font-size: 24px;
	width: 24px;
	height: 24px;
}
.ti-text strong {
	display: block;
	color: #fff;
	font-size: 0.85rem;
}
.ti-text span {
	display: block;
	font-size: 0.75rem;
	color: #64748b;
}

/* 5. Bottom Bar */
.footer-bottom-bar {
	border-top: 1px solid var(--pf-border);
	padding: 15px 0;
	background: rgba(11, 15, 25, 0.8);
}
.fbb-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}
.fbb-left p {
	margin: 0;
	font-size: 0.85rem;
}
.made-with {
	font-size: 0.8rem;
	color: #64748b;
	margin-top: 4px !important;
}
.heart {
	color: #ef4444;
}
.fbb-center ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}
.fbb-center ul li a {
	color: #94a3b8;
	text-decoration: none;
	font-size: 0.85rem;
	transition: color 0.2s;
}
.fbb-center ul li a:hover {
	color: #fff;
}
.version-badge {
	background: rgba(16, 185, 129, 0.1);
	border: 1px solid rgba(16, 185, 129, 0.2);
	color: #10b981;
	padding: 6px 12px;
	border-radius: 50px;
	font-size: 0.8rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
}
.v-dot {
	width: 8px;
	height: 8px;
	background: #10b981;
	border-radius: 50%;
	box-shadow: 0 0 8px rgba(16, 185, 129, 0.8);
}

/* Responsive */
@media (max-width: 1200px) {
	.explore-grid { grid-template-columns: repeat(4, 1fr); }
	.footer-main-grid { grid-template-columns: 2fr 1fr 1fr; }
}
@media (max-width: 991px) {
	.footer-cta-banner { flex-direction: column; text-align: center; gap: 20px; }
	.cta-left { flex-direction: column; }
	.explore-grid { grid-template-columns: repeat(3, 1fr); }
	.trust-strip { justify-content: center; }
	.fbb-inner { flex-direction: column; text-align: center; }
	.fbb-center ul { justify-content: center; }
}
@media (max-width: 768px) {
	.footer-main-grid { grid-template-columns: 1fr; }
	.cta-right { flex-direction: column; width: 100%; }
	.cta-search-form { width: 100%; }
	.cta-search-field { width: 100%; box-sizing: border-box; }
	.btn-explore-tools { width: 100%; display: flex; justify-content: center; }
	.explore-grid { grid-template-columns: repeat(2, 1fr); }
	.floating-el { display: none !important; }
	.footer-cta-banner { padding: 20px 15px; }
}
@media (max-width: 480px) {
	.explore-grid { grid-template-columns: 1fr; }
}

/* Trust Column Styles */
.footer-trust-col {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.ftc-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px;
	background: rgba(15, 23, 42, 0.4);
	border: 1px solid rgba(255,255,255,0.05);
	border-radius: 10px;
	transition: all 0.3s ease;
}
.ftc-item:hover {
	background: rgba(30, 41, 59, 0.6);
	border-color: rgba(255,255,255,0.1);
}
.ftc-icon {
	color: #10b981;
	font-size: 20px;
	width: 20px;
	height: 20px;
}
.ftc-text strong {
	display: block;
	color: #fff;
	font-size: 0.85rem;
	margin-bottom: 2px;
}
.ftc-text span {
	display: block;
	font-size: 0.75rem;
	color: #64748b;
}
/* New Trust Strip Design */
.new-trust-strip {
	background: #0d1323;
	border: 1px solid rgba(255,255,255,0.05);
	border-radius: 16px;
	padding: 15px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
	flex-wrap: wrap;
	overflow: hidden; /* No scrolling */
}
.new-trust-strip .trust-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0 12px;
	position: relative;
	flex: 1 1 auto;
}
.new-trust-strip .trust-item:first-child {
	padding-left: 0;
}
.new-trust-strip .trust-item:last-child {
	padding-right: 0;
}
.new-trust-strip .trust-item:not(:last-child)::after {
	content: '';
	position: absolute;
	right: 0;
	top: 15%;
	height: 70%;
	width: 1px;
	background: rgba(255,255,255,0.1);
}
.new-trust-strip .ti-icon {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.new-trust-strip .ti-icon .dashicons {
	font-size: 16px;
	width: 16px;
	height: 16px;
}
.new-trust-strip .bg-green {
	background: rgba(16, 185, 129, 0.1);
	color: #10b981;
}
.new-trust-strip .bg-blue {
	background: rgba(59, 130, 246, 0.1);
	color: #3b82f6;
}
.new-trust-strip .bg-red {
	background: rgba(239, 68, 68, 0.1);
	color: #ef4444;
}
.new-trust-strip .bg-dark-blue {
	background: rgba(79, 70, 229, 0.1);
	color: #6366f1;
}
.new-trust-strip .ti-text strong {
	display: block;
	color: #fff;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 2px;
	white-space: nowrap;
}
.new-trust-strip .ti-text span {
	display: block;
	font-size: 0.7rem;
	color: #94a3b8;
	white-space: nowrap;
}
@media (max-width: 991px) {
  .new-trust-strip { flex-wrap: wrap; justify-content: center; gap: 20px; }
  .new-trust-strip .trust-item { flex: 0 0 calc(33.33% - 20px); justify-content: center; }
  .new-trust-strip .trust-item::after { display: none; }
}
@media (max-width: 768px) {
  .new-trust-strip .trust-item { flex: 0 0 calc(50% - 20px); }
}
@media (max-width: 480px) {
  .new-trust-strip .trust-item { flex: 0 0 100%; }
}
/* About Section Custom Styling */
.about-col-custom .about-title {
	position: relative;
	margin-bottom: 25px;
	display: inline-block;
}
.about-title {
	position: relative;
	margin-bottom: 25px;
	display: inline-block;
}
.about-title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 30px;
	height: 2px;
	background: #8b5cf6;
	border-radius: 2px;
}
.new-about-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.new-about-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #cbd5e1;
	font-size: 0.9rem;
	margin-bottom: 0 !important;
}
.new-about-list .icon-wrap {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.new-about-list .bg-purple-dark {
	background: rgba(139, 92, 246, 0.12);
}
.new-about-list .bg-blue-dark {
	background: rgba(59, 130, 246, 0.12);
}
.new-about-list .icon-purple {
	color: #8b5cf6 !important;
	font-size: 16px;
	width: 16px;
	height: 16px;
	background: none !important;
	box-shadow: none !important;
}
.new-about-list .icon-blue {
	color: #3b82f6 !important;
	font-size: 16px;
	width: 16px;
	background: rgba(239, 68, 68, 0.12);
}
.new-about-list .icon-red {
	color: #ef4444 !important;
	font-size: 16px;
	width: 16px;
	height: 16px;
	background: none !important;
	box-shadow: none !important;
}

.new-about-list .bg-cyan-dark {
	background: rgba(6, 182, 212, 0.12);
}
.new-about-list .icon-cyan {
	color: #06b6d4 !important;
	font-size: 16px;
	width: 16px;
	height: 16px;
	background: none !important;
	box-shadow: none !important;
}

.new-about-list .bg-orange-dark {
	background: rgba(245, 158, 11, 0.12);
}
.new-about-list .icon-orange {
	color: #f59e0b !important;
	font-size: 16px;
	width: 16px;
	height: 16px;
	background: none !important;
	box-shadow: none !important;
}

.new-about-list a { display: flex; align-items: center; gap: 12px; color: #cbd5e1; text-decoration: none; font-size: 0.9rem; width: 100%; transition: color 0.3s ease; }
.new-about-list a:hover { color: #fff; }
.new-about-list .menu-text { flex: 1; text-align: left; }
.new-about-list .list-arrow { margin-left: auto; font-size: 14px; width: 14px; height: 14px; opacity: 0.5; transition: opacity 0.3s ease; }
.new-about-list a:hover .list-arrow { opacity: 1; }
/* Fixes for user requests */
.footer-main-grid { gap: 20px; }
.footer-col-menu ul li a::after { display: none !important; }
.footer-col-menu .sub-menu { display: none !important; }
.new-about-list a { font-size: 13px !important; }
.new-about-list .dashicons { background: none !important; box-shadow: none !important; }

/* ================= RESTORED FOOTER GRID ================= */
.el-img { bottom: -25px; left: 20px; background: #8b5cf6; animation-delay: 1s; }
.el-ai { top: -20px; right: -35px; background: #4f46e5; animation-delay: 2s; transform: rotate(10deg); }
.el-code { bottom: -25px; right: 15px; background: #0ea5e9; animation-delay: 3s; }
@keyframes float {
	0% { transform: translateY(0px) rotate(0deg); }
	50% { transform: translateY(-10px) rotate(5deg); }
	100% { transform: translateY(0px) rotate(0deg); }
}

/* 2. Main Grid */
.footer-main-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
	gap: 20px;
	margin-bottom: 30px;
}
.footer-logo img {
	max-width: 180px;
	margin-bottom: 15px;
}
.brand-desc {
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 10px;
}
.brand-rating {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}
.stars {
	color: #eab308;
	font-size: 1.2rem;
	letter-spacing: 2px;
}
.trusted-text {
	font-size: 0.85rem;
	color: var(--pf-text);
}
.brand-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 25px;
}
.b-badge {
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.08);
	padding: 6px 10px;
	border-radius: 6px;
	font-size: 0.75rem;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: #cbd5e1;
}
.b-badge .dashicons {
	font-size: 14px;
	width: 14px;
	height: 14px;
	color: #8b5cf6;
}
.social-label {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 10px;
	color: #fff;
}
.social-icons {
	display: flex;
	gap: 12px;
}
.s-icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255,255,255,0.05);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #cbd5e1;
	text-decoration: none;
	transition: all 0.3s ease;
}
.s-icon svg {
	width: 18px;
	height: 18px;
	display: block;
}
.s-icon:hover {
	background: var(--pf-primary);
	color: #fff;
	transform: translateY(-3px);
}

/* Menus */
.menu-title {
	color: #fff;
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 20px;
}
.footer-col-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer-col-menu ul li {
	margin-bottom: 12px;
}
.footer-col-menu ul li a, .about-list li {
	color: var(--pf-text);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.2s ease;
	display: flex;
	align-items: center;
	gap: 8px;
}
.footer-col-menu ul li a:hover {
	color: #fff;
}
.footer-col-menu ul li a::after {
	display: none !important; /* Hide old arrows */
}

/* Overrides for gap, sub-menu, font-size */
.footer-col-menu .sub-menu { display: none !important; }
.new-about-list a { font-size: 13px !important; }
.new-about-list .dashicons { background: none !important; box-shadow: none !important; }


/* Hide mega menu in footer */
.footer-col-menu .mega-menu-content { display: none !important; opacity: 0 !important; visibility: hidden !important; pointer-events: none !important; }








/* Mobile Footer Fixes */
@media (max-width: 991px) {
    .footer-main-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 30px !important; }
    .new-trust-strip { flex-wrap: wrap !important; justify-content: center !important; }
    .new-trust-strip .trust-item { flex: 0 0 calc(50% - 20px) !important; margin-bottom: 15px; }
    .new-trust-strip .trust-item:not(:last-child)::after { display: none !important; }
}
@media (max-width: 768px) {
    .footer-main-grid { grid-template-columns: 1fr !important; }
    .new-trust-strip { gap: 15px !important; justify-content: flex-start !important; } .new-trust-strip .trust-item { flex: 0 0 calc(50% - 15px) !important; margin-bottom: 0px !important; align-items: flex-start; } .new-trust-strip .ti-text strong { font-size: 0.8rem; } .new-trust-strip .ti-text span { font-size: 0.65rem; }
    .explore-box { min-height: 120px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
}


/* Mobile Tool Card Fixes */
@media (max-width: 768px) {
    .tool-card { min-height: auto; display: block; }
    .tool-card-horizontal { align-items: center; }
    .tool-icon-box, .tool-card-icon-wrap { flex-shrink: 0; min-width: 56px; }
}


/* Mobile Trust Strip Better Design */
@media (max-width: 768px) {
    .new-trust-strip { 
        gap: 15px !important; 
        justify-content: flex-start !important; 
    } 
    .new-trust-strip .trust-item { 
        flex: 0 0 calc(50% - 15px) !important; 
        margin-bottom: 0px !important; 
        align-items: flex-start !important; 
    } 
    .new-trust-strip .ti-text strong { 
        font-size: 0.8rem !important; 
    } 
    .new-trust-strip .ti-text span { 
        font-size: 0.65rem !important; 
    }
}


/* Force Mobile Trust Strip Grid */
@media (max-width: 768px) {
    .new-trust-strip { 
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    } 
    .new-trust-strip .trust-item { 
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        margin: 0 !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding: 5px !important;
    } 
    .new-trust-strip .trust-item::after {
        display: none !important;
    }
    .new-trust-strip .ti-text strong { 
        font-size: 0.8rem !important; 
    } 
    .new-trust-strip .ti-text span { 
        font-size: 0.65rem !important; 
    }
}


/* Mobile Trust Strip Separate Boxes Fix */
@media (max-width: 991px) {
    .new-trust-strip { 
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
    } 
    .new-trust-strip .trust-item { 
        background: rgba(15, 23, 42, 0.6) !important;
        border: 1px solid rgba(255,255,255,0.05) !important;
        border-radius: 8px !important;
        padding: 15px !important; box-sizing: border-box !important; overflow: hidden !important; width: 100% !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    } 
}


/* Mobile Trust Strip Complete Fix */
@media (max-width: 991px) {
    .new-trust-strip { 
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    } 
    .new-trust-strip .trust-item { 
        background: rgba(15, 23, 42, 0.6) !important;
        border: 1px solid rgba(255,255,255,0.05) !important;
        border-radius: 8px !important;
        padding: 12px 8px !important; 
        box-sizing: border-box !important; 
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
        align-items: center !important;
        justify-content: flex-start !important;
        overflow: hidden !important;
    } 
    .new-trust-strip .trust-item::after {
        display: none !important;
    }
    .new-trust-strip .ti-text strong,
    .new-trust-strip .ti-text span { 
        white-space: normal !important;
        word-wrap: break-word !important;
        line-height: 1.2 !important;
    }
    .new-trust-strip .ti-text strong { 
        font-size: 0.8rem !important; 
        margin-bottom: 2px !important;
    } 
    .new-trust-strip .ti-text span { 
        font-size: 0.65rem !important; 
    }
    .new-trust-strip .ti-icon {
        margin-right: 8px !important;
    }
}


/* Mobile Trust Strip Final Corner Crop Fix & Text Size */
@media (max-width: 991px) {
    .new-trust-strip {
        overflow: visible !important;
        border-radius: 0 !important;
    }
    .new-trust-strip .ti-text strong { 
        font-size: 0.72rem !important; 
    } 
    .new-trust-strip .ti-text span { 
        font-size: 0.58rem !important; 
    }
}


/* Tablet Trust Strip 3 Column Fix */
@media (min-width: 769px) and (max-width: 991px) {
    .new-trust-strip {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}


/* Fix Tablet Horizontal Scrolling and Overflow */
@media (max-width: 1024px) {
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
    }
    .site {
        overflow-x: hidden !important;
    }
}


/* Safe Tablet Overflow Fix */
@media (max-width: 1024px) {
    html, body {
        overflow-x: hidden !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    .site {
        width: 100% !important;
        overflow-x: hidden !important;
    }
    .container, .header-container, .tool-interface-container {
        max-width: 100% !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }
}


/* Tablet Footer Bottom Layout Fix */
@media (max-width: 991px) {
    .fbb-inner {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px 15px !important;
        text-align: left !important;
        align-items: center !important;
    }
    .fbb-left {
        grid-column: 1 / 2 !important;
        grid-row: 1 / 3 !important;
        text-align: left !important;
    }
    .fbb-center {
        grid-column: 2 / 3 !important;
        grid-row: 1 / 2 !important;
        text-align: right !important;
    }
    .fbb-center ul {
        justify-content: flex-end !important;
    }
    .fbb-right {
        grid-column: 2 / 3 !important;
        grid-row: 2 / 3 !important;
        display: flex !important;
        justify-content: flex-end !important;
    }
}
@media (max-width: 600px) {
    .fbb-inner {
        grid-template-columns: 1fr !important;
    }
    .fbb-left, .fbb-center, .fbb-right {
        grid-column: 1 / 2 !important;
        grid-row: auto !important;
        text-align: center !important;
        justify-content: center !important;
    }
    .fbb-center ul {
        justify-content: center !important;
    }
}


/* Mobile FAQ Width & Layout Fix */
@media (max-width: 768px) {
    .rank-math-block {
        padding: 12px !important;
    }
    .rank-math-list-item {
        padding: 15px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .rank-math-question {
        width: 100% !important;
        display: block !important;
        box-sizing: border-box !important;
    }
}


/* 
 * Premium Why Choose Us - Overrides & Additions 
 */
.premium-why-section {
    position: relative;
    padding: 40px 0;
    background-color: #f8fafc;
    overflow: hidden;
    z-index: 1;
}

.premium-mesh-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}
.orb-1 {
    width: 300px; height: 300px;
    background: #a855f7;
    top: -50px; left: -100px;
}
.orb-2 {
    width: 400px; height: 400px;
    background: #3b82f6;
    bottom: -100px; right: -150px;
}

.section-top-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(168, 85, 247, 0.1);
    color: #9333ea;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.section-top-badge .dashicons {
    font-size: 16px;
    width: 16px; height: 16px;
}

.text-gradient-primary {
    background: linear-gradient(135deg, #7e22ce 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premium-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1.5px;
    margin-bottom: 15px;
}
.premium-desc {
    font-size: 1.15rem;
    color: #475569;
    max-width: 650px;
    margin: 0 auto 35px;
}

.premium-glass-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.glass-feature-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
}
.glass-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(0,0,0,0.05);
}

.card-floating-num {
    position: absolute;
    top: 20px; right: 20px;
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.card-blue .card-floating-num { background: #8b5cf6; }
.card-green .card-floating-num { background: #10b981; }
.card-purple .card-floating-num { background: #3b82f6; }

.glass-icon-wrapper {
    width: 70px; height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}
.glass-icon-wrapper .dashicons {
    font-size: 34px;
    width: 34px; height: 34px;
    color: #fff;
}
.icon-blue { background: linear-gradient(135deg, #a855f7 0%, #6366f1 100%); box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3); }
.icon-green { background: linear-gradient(135deg, #34d399 0%, #059669 100%); box-shadow: 0 10px 20px rgba(5, 150, 105, 0.3); }
.icon-blue-purple { background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%); box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3); }

.glass-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
    text-align: center;
}
.glass-card-desc {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 30px;
}

.card-features-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.feature-pill {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}
.fp-icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fp-icon .dashicons { font-size: 16px; width: 16px; height: 16px; }

.card-blue .feature-pill .fp-icon { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.card-green .feature-pill .fp-icon { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.card-purple .feature-pill .fp-icon { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }

.fp-text { display: flex; flex-direction: column; }
.fp-text strong { font-size: 0.9rem; color: #0f172a; font-weight: 700; }
.fp-text span { font-size: 0.75rem; color: #64748b; }

/* Stats Bar */
.premium-stats-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    padding: 20px 40px;
    border-radius: 50px;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    max-width: 900px;
    margin: 0 auto;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.stat-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.stat-icon .dashicons { font-size: 20px; width: 20px; height: 20px; }

.purple-bg { background: #8b5cf6; }
.green-bg { background: #10b981; }
.blue-bg { background: #3b82f6; }
.pink-bg { background: #ec4899; }

.stat-text { display: flex; flex-direction: column; }
.stat-text strong { font-size: 1.2rem; font-weight: 800; color: #0f172a; line-height: 1.2; }
.stat-text span { font-size: 0.8rem; color: #64748b; font-weight: 500; }

@media (max-width: 991px) {
    .premium-title { font-size: 2.5rem; }
    .premium-glass-grid { grid-template-columns: repeat(2, 1fr); }
    .premium-stats-bar {
        flex-wrap: wrap;
        border-radius: 20px;
        gap: 20px;
        justify-content: center;
    }
    .stat-item { width: calc(50% - 10px); }
}
@media (max-width: 767px) {
    .premium-glass-grid { grid-template-columns: 1fr; }
    
    .premium-stats-bar {
        background: transparent;
        padding: 0;
        box-shadow: none;
        border: none;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-item { 
        width: 100%; 
        background: #ffffff;
        padding: 15px 10px;
        border-radius: 16px;
        box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
        border: 1px solid rgba(226, 232, 240, 0.8);
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 8px;
    }
    
    .stat-text {
        align-items: center;
    }
    
    .stat-text strong {
        font-size: 1.1rem;
    }
    .stat-text span {
        font-size: 0.7rem;
    }
}
