:root {
    --primary: #e67326; 
    --primary-glow: rgba(230, 115, 38, 0.5);
    --secondary: #e0a13c; 
    --accent: #ee9426; 
    
    /* Modern Dark Theme Palette based on TapDine Blue #12212f and #2f4150 */
    --bg-dark: #12212f; 
    --bg-card: rgba(47, 65, 80, 0.6); 
    --bg-card-hover: rgba(47, 65, 80, 0.8);
    
    --text-main: #f8fafc; 
    --text-muted: #cbd5e1; 
    
    --border: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(255, 255, 255, 0.2);
    
    --gradient-main: linear-gradient(135deg, #e67326 0%, #ee9426 50%, #e0a13c 100%);
    --gradient-text: linear-gradient(135deg, #ea8226 0%, #ee9426 50%, #e0a13c 100%);
    
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --nav-height: 80px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    --shadow-glow: 0 0 20px rgba(230, 115, 38, 0.3);
    --mesh-1: rgba(230, 115, 38, 0.25);
    --mesh-2: rgba(224, 161, 60, 0.20);
    --mesh-bg-1: rgba(230, 115, 38, 0.15);
    --mesh-bg-2: rgba(224, 161, 60, 0.15);
    
    --logo-bg: rgba(253, 251, 247, 0.95);
    --logo-shadow: 0 0 15px rgba(0,0,0,0.3);
}:root[data-theme="light"] {
    --bg-dark: #fdfbf7;
    --bg-card: rgba(255, 255, 255, 0.85);
    --bg-card-hover: rgba(255, 255, 255, 1);
    
    --text-main: #12212f;
    --text-muted: #475569;
    
    --border: rgba(18, 33, 47, 0.1);
    --border-hover: rgba(18, 33, 47, 0.2);
    
    --shadow-glow: 0 0 20px rgba(230, 115, 38, 0.10);
    --primary-glow: rgba(230, 115, 38, 0.15);
    
    --mesh-1: rgba(230, 115, 38, 0.06);
    --mesh-2: rgba(224, 161, 60, 0.05);
    --mesh-bg-1: rgba(230, 115, 38, 0.04);
    --mesh-bg-2: rgba(224, 161, 60, 0.04);
    
    --logo-bg: transparent;
    --logo-shadow: none;
}

.brand-logo {
    background-color: var(--logo-bg);
    padding: 6px 14px;
    border-radius: 12px;
    box-shadow: var(--logo-shadow);
    transition: all 0.3s ease;
    box-sizing: content-box;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    /* Animated Mesh Background */
    background-image: 
        radial-gradient(at 0% 0%, var(--mesh-bg-1) 0px, transparent 50%),
        radial-gradient(at 100% 0%, var(--mesh-bg-2) 0px, transparent 50%);
    background-attachment: fixed;
}
body::before, body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    animation: floatingMesh 25s infinite alternate ease-in-out;
    pointer-events: none;
}
body::before {
    width: 600px; height: 600px;
    background: var(--mesh-1);
    top: -100px; left: -100px;
}
body::after {
    width: 700px; height: 700px;
    background: var(--mesh-2);
    bottom: -100px; right: -100px;
    animation-delay: -10s;
}
@keyframes floatingMesh {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(30px, -50px) scale(1.1) rotate(5deg); }
    66% { transform: translate(-20px, 20px) scale(0.9) rotate(-5deg); }
    100% { transform: translate(0, 50px) scale(1) rotate(0deg); }
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul { list-style: none; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.025em; /* Tight tracking for modern look */
    color: var(--text-main);
}

h1 { 
    font-size: 4.5rem; 
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #e67326, #ee9426, #ea8226, #e67326);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(230, 115, 38, 0.4);
    animation: textShine 5s linear infinite;
    letter-spacing: -0.04em;
}
@keyframes textShine {
    to { background-position: 200% center; }
}

h2 { font-size: 3rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.75rem; margin-bottom: 0.75rem; }

p { 
    color: var(--text-muted); 
    margin-bottom: 1.5rem; 
    font-size: 1.125rem;
    font-weight: 400;
}

/* Glassmorphism Utilities */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.02em;
}

.btn-primary {
    background: linear-gradient(90deg, #e67326, #ee9426, #e0a13c, #e67326);
    background-size: 300%;
    color: #ffffff;
    box-shadow: 0 10px 25px -5px rgba(230, 115, 38, 0.5);
    position: relative;
    overflow: hidden;
    animation: btnShine 4s linear infinite;
    border: 1px solid rgba(255,255,255,0.1);
}

@keyframes btnShine {
    to { background-position: 300% center; }
}

.btn-primary:hover {
    box-shadow: 0 15px 35px -5px rgba(230, 115, 38, 0.7);
    transform: translateY(-4px) scale(1.04);
    border-color: rgba(255,255,255,0.4);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: 0.3s;
}

.btn-primary:hover::after { opacity: 1; }

.btn-secondary {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-main);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(230, 115, 38, 0.1);
    transform: translateY(-2px);
}

.section-padding { padding: 100px 0; }

/* Utility Classes */
.flex { display: flex; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.items-center { align-items: center; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }
.text-center { text-align: center; }
.grid { display: grid; }
.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header Pill Style */
.navbar-wrapper {
    position: fixed;
    top: 24px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: calc(100% - 48px);
    max-width: 1248px;
    z-index: 1000;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.navbar-pill {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 0 24px 0 32px;
    height: 70px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 0 16px rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.logo {
    flex-shrink: 0;
}

.logo span {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

.nav-links { display: flex; gap: 1.25rem; margin: 0; }
.nav-links li { position: relative; display: flex; align-items: center; white-space: nowrap; }
.nav-links a {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text-muted);
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-links a i {
    font-size: 0.7rem;
    opacity: 0.7;
    transition: transform 0.3s;
}

.nav-links a:hover { color: var(--text-main); }
.nav-links a:hover i { transform: rotate(180deg); }

.right-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.currency-toggle {
    display: flex;
    background: #1E2330;
    border-radius: 20px;
    padding: 2px;
    border: 1px solid rgba(255,255,255,0.05);
}

.currency-btn {
    padding: 4px 12px;
    font-size: 0.85rem;
    color: #94a3b8;
    border-radius: 16px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

.currency-btn.active {
    background: #e67326;
    color: var(--text-main);
}

.theme-toggle {
    background: none;
    border: none;
    color: #cbd5e1;
    cursor: pointer;
    font-size: 1.25rem;
    transition: 0.3s;
}

.theme-toggle:hover { color: var(--text-main); }

.login-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
    transition: opacity 0.3s;
}

.login-link:hover { opacity: 0.8; }

.btn-sm {
    padding: 10px 24px !important;
    font-size: 0.95rem;
    background: #e67326 !important;
    color: #ffffff !important;
    border-radius: 999px;
    font-weight: 600;
    transition: background 0.3s;
    box-shadow: none !important;
}

.btn-sm:hover {
    background: #c65f1a !important;
    transform: none;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

/* Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 40px;
    position: relative;
    /* Dynamic light effect */
    background: radial-gradient(circle at 50% 50%, rgba(230, 115, 38, 0.1) 0%, transparent 50%);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 15px var(--shadow-glow);
    animation: float 3s ease-in-out infinite, pulseBorder 4s infinite alternate;
    position: relative;
}
@keyframes pulseBorder {
    from { border-color: rgba(230, 115, 38, 0.2); box-shadow: 0 0 15px rgba(238, 148, 38, 0.1); }
    to { border-color: rgba(224, 161, 60, 0.5); box-shadow: 0 0 35px rgba(224, 161, 60, 0.3); }
}

/* Modern Card with Glowing Aura */
.card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Base Hover State */
.card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: rgba(230, 115, 38, 0.4);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(230, 115, 38, 0.2);
    background: var(--bg-card-hover);
}

/* Card Conic Gradient Glow Background */
.card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(224, 161, 60, 0.15), transparent 60%),
                radial-gradient(circle at bottom left, rgba(230, 115, 38, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
}
.card:hover::before { 
    opacity: 1; 
}

/* Feature Icons Pop */
.icon-box {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, rgba(230, 115, 38, 0.1), rgba(224, 161, 60, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    color: #ee9426;
    font-size: 1.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .icon-box {
    background: linear-gradient(135deg, #e67326, #e0a13c);
    color: var(--text-main);
    transform: rotate(8deg) scale(1.15) translateY(-5px);
    box-shadow: 0 15px 30px rgba(224, 161, 60, 0.4);
    border-color: transparent;
}

/* Animations using .animate-on-scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Add stagger delay utilities */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Grids */
.industry-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-label {
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: 0.3s;
}

.toggle-label.active {
    color: var(--text-main);
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 3px;
    background-color: var(--text-main);
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary);
    border-color: var(--primary);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Pricing Popular Highlight */
.pricing-card.popular {
    border: 1px solid rgba(238, 148, 38, 0.5);
    background: linear-gradient(180deg, rgba(238, 148, 38, 0.15) 0%, rgba(30, 41, 59, 0.9) 100%);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 0 30px rgba(238, 148, 38, 0.3), inset 0 0 20px rgba(238, 148, 38, 0.1);
    position: relative;
    animation: popularFloat 6s ease-in-out infinite;
}

@keyframes popularFloat {
    0%, 100% { transform: scale(1.05) translateY(0); }
    50% { transform: scale(1.05) translateY(-10px); box-shadow: 0 20px 40px rgba(238, 148, 38, 0.4), inset 0 0 20px rgba(238, 148, 38, 0.2); }
}

.pricing-card.popular:hover {
    transform: scale(1.08) translateY(-15px);
    box-shadow: 0 30px 70px rgba(238, 148, 38, 0.5);
    border-color: #ee9426;
    animation-play-state: paused;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 1rem 0;
    text-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.price span {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Form Styles */
.form-group { margin-bottom: 1.25rem; }

input, select, textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(15, 23, 42, 0.9);
    box-shadow: 0 0 0 3px rgba(230, 115, 38, 0.2);
}

/* Footer */
footer {
    border-top: 1px solid var(--border);
    padding: 80px 0 30px;
    background: var(--bg-card);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-grid h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-grid ul li a {
    color: var(--text-muted);
    transition: 0.3s;
}

.footer-grid ul li a:hover {
    color: var(--accent);
    padding-left: 5px; /* Slight nudge */
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .header-actions { display: none; }
    .mobile-toggle { display: block; }
    .navbar-pill { padding: 0 20px; }
    
    /* Mobile Menu Container */
    .nav-links {
        display: flex !important;
        position: fixed;
        top: 0;
        left: -100%; /* Hidden off-screen by default */
        width: 280px; 
        height: 100vh;
        background: rgba(11, 14, 23, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 6rem 2.5rem 2rem 2.5rem;
        border-right: 1px solid rgba(255,255,255,0.05);
        box-shadow: 0 0 0 0 rgba(0,0,0,0); /* Default shadow */
        border-radius: 0;
        z-index: 990;
        transition: left 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease;
        margin: 0;
    }

    /* Mobile Menu Active State */
    .nav-links.active { 
        left: 0;
        /* massive shadow acts as a page dimming overlay */
        box-shadow: 50px 0 150px 100vw rgba(0,0,0,0.6); 
    }
    
    /* Make the links stand out beautifully */
    .nav-links li {
        width: 100%;
        margin-bottom: 2rem;
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.4s ease;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    /* Stagger the entrance of menu items */
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.5s; }

    .nav-links a {
        font-size: 1.4rem;
        color: var(--text-main);
        font-weight: 700;
        letter-spacing: 0.02em;
    }
    .nav-links a:hover {
        color: var(--primary-light, #e67326);
        padding-left: 10px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.75rem; }
    h2 { font-size: 2.25rem; }

    /* Fix mobile navbar pill compounding padding overflow */
    .navbar-wrapper {
        width: calc(100% - 32px);
        top: 16px;
    }
    .navbar-wrapper .container {
        padding: 0; 
    }
    .navbar-pill {
        padding: 0 16px 0 20px;
        gap: 10px;
    }

    /* Fix Pricing overflow on mobile phones when toggled to yearly */
    .price {
        font-size: 2.2rem;
    }
    .price span[style*="line-through"] {
        display: block;
        font-size: 1rem !important;
        margin-right: 0 !important;
        margin-bottom: 4px;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
}

/* Modern Industries Section */
.industry-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.industry-card {
    flex: 1 1 300px;
    max-width: 400px;
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem 1.8rem; /* Reduced padding */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.industry-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(230, 115, 38, 0.4);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6), 0 0 25px rgba(230, 115, 38, 0.2);
}

/* Glowing Aura on Hover */
.industry-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 100%;
    background: radial-gradient(circle at top center, rgba(230, 115, 38, 0.2), transparent 70%);
    opacity: 0;
    transition: 0.5s ease;
    z-index: -1;
    pointer-events: none;
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-card .icon-box {
    width: 56px; 
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.industry-card:hover .icon-box {
    background: linear-gradient(135deg, #e67326, #e0a13c);
    transform: scale(1.15) rotate(8deg) translateY(-5px);
    border-color: transparent;
    box-shadow: 0 15px 30px -5px rgba(224, 161, 60, 0.5);
}

.industry-card .icon-box i {
    font-size: 1.6rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: 0.3s;
}

.industry-card:hover .icon-box i {
    -webkit-text-fill-color: var(--text-main);
}

.industry-card h3 {
    font-size: 1.4rem; /* Increased font size */
    font-weight: 700;
    margin-bottom: 1rem; /* Reduced margin */
    color: var(--text-main);
}

.industry-card ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: left !important;
    flex-grow: 1; /* Pushes content down */
}

.industry-card ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px; /* Tighter spacing */
    color: var(--text-muted);
    font-size: 1.05rem; /* Increased list text size */
    line-height: 1.4;
    transition: 0.3s;
}

.industry-card ul li::before {
    content: '\f00c';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 4px; /* Adjusted alignment for larger text */
    color: var(--primary);
    font-size: 0.85rem;
}

.industry-card:hover ul li {
    color: var(--text-main);
}

/* Special styling for 'And Many More' card */
.industry-card.more-card {
    border-style: dashed !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.industry-card.more-card .icon-box {
    margin: 0 auto 1.5rem auto;
}

/* Compare Plans Table */
.compare-table-container {
    overflow-x: auto;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    padding: 1rem;
    margin-top: 2rem;
}

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

.compare-table th, .compare-table td {
    padding: 1.25rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
    color: var(--text-main);
}

.compare-table th {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-muted);
}

.compare-table tbody tr:last-child td {
    border-bottom: none;
}

.compare-table .highlight-col {
    background: rgba(59, 130, 246, 0.1);
    border-left: 1px solid rgba(59, 130, 246, 0.2);
    border-right: 1px solid rgba(59, 130, 246, 0.2);
}

.compare-table th.highlight-col {
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.05) 100%);
    color: var(--primary);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.compare-table tbody tr:last-child td.highlight-col {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.text-success {
    color: #10b981;
}

.text-muted {
    color: var(--text-muted);
    opacity: 0.5;
}

.badge-basic {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-advanced {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.3);
}
