/* ===============================================
   WFMS LANDING PAGE - PROFESSIONAL LIGHT THEME
   =============================================== */

/* CSS Custom Properties */
:root {
    /* Brand Colors - Exact Logo Match */
    --primary-orange: #e85c00;
    --primary-orange-dark: #c54e00;
    --primary-blue: #2aa8ff;
    --primary-blue-dark: #1a8fe0;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-orange), var(--primary-blue));
    --gradient-hero: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    --gradient-card: linear-gradient(145deg, #ffffff, #f8f9fa);

    /* Backgrounds - Light Theme */
    --bg-body: #ffffff;
    --bg-light: #f8f9fa;
    --bg-section: #f1f5f9;
    --bg-navbar: rgba(255, 255, 255, 0.95);
    --bg-card: #ffffff;
    --bg-footer: #f8fafc;

    /* Text Colors - High Contrast */
    --text-primary: #0f172a;
    /* Dark Slate for Headings */
    --text-secondary: #475569;
    /* Slate for Body */
    --text-muted: #94a3b8;
    --text-white: #ffffff;

    /* Borders & Shadows */
    --border-color: #e2e8f0;
    --border-hover: #cbd5e1;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(232, 92, 0, 0.2);

    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Inter', sans-serif;

    /* Utilities */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 50px;
}

/* Dark Theme Variables */
[data-theme="dark"] {
    --bg-body: #0f172a;
    --bg-light: #1e293b;
    --bg-section: #1e293b;
    --bg-navbar: rgba(15, 23, 42, 0.95);
    --bg-card: #1e293b;
    --bg-footer: #020617;

    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #64748b;

    --border-color: #334155;
    --border-hover: #475569;

    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.4);

    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    /* Offset for fixed navbar */
}

body {
    font-family: var(--font-secondary);
    background: var(--bg-body);
    color: var(--text-secondary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* Utilities */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===============================================
   NAVBAR - CLEAN WHITE
   =============================================== */
.navbar {
    padding: 0.8rem 0;
    transition: var(--transition);
    background: transparent;
    z-index: 1000;
}

.navbar.scrolled {
    background: var(--bg-navbar);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    padding: 0.4rem 0;
}

.navbar.scrolled .navbar-logo {
    height: 60px;
}

.navbar-logo {
    height: 80px;
    transition: var(--transition);
    /* Logo fits naturally on light background */
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    color: var(--text-primary);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230f172a' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav {
    gap: 0.2rem;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary) !important;
    padding: 0.5rem 0.8rem !important;
    border-radius: var(--radius-xl);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-orange) !important;
    background: rgba(232, 92, 0, 0.05);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-left: 1rem;
}

/* Theme Toggle Button */
.theme-toggle {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
}

.theme-toggle:hover {
    background: var(--border-color);
    transform: rotate(15deg);
}

.theme-toggle .fa-sun {
    display: none;
}

.theme-toggle .fa-moon {
    display: block;
}

[data-theme="dark"] .theme-toggle .fa-sun {
    display: block;
}

[data-theme="dark"] .theme-toggle .fa-moon {
    display: none;
}

[data-theme="dark"] .navbar-logo {
    filter: brightness(1.2);
}

[data-theme="dark"] .navbar.scrolled {
    background: var(--bg-navbar);
}

[data-theme="dark"] .solution-content-card,
[data-theme="dark"] .feature-card,
[data-theme="dark"] .benefit-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .floating-card,
[data-theme="dark"] .lead-form-container,
[data-theme="dark"] .btn-signin,
[data-theme="dark"] .btn-complaint {
    background: var(--bg-light);
    color: var(--text-primary);
}

.btn-complaint {
    color: var(--text-primary);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid var(--border-color);
    background: var(--bg-body);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-complaint:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    background: var(--bg-body);
    transform: translateY(-2px);
}

[data-theme="dark"] .comparison-table .feature-col {
    background: var(--bg-light);
}

[data-theme="dark"] .accordion-button {
    background: var(--bg-light);
    color: var(--text-primary);
}

[data-theme="dark"] .accordion-item,
[data-theme="dark"] .accordion-body {
    background: var(--bg-light);
}

[data-theme="dark"] .section-badge {
    background: rgba(232, 92, 0, 0.2);
    border: 1px solid rgba(232, 92, 0, 0.3);
}

[data-theme="dark"] .hero-badge {
    background: var(--bg-light);
    border-color: var(--border-color);
}



.btn-signin {
    color: var(--text-primary);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid var(--border-color);
    background: var(--bg-body);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-signin:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    background: var(--bg-body);
    transform: translateY(-2px);
}

.btn-trial {
    background: var(--gradient-primary);
    border: none;
    color: var(--text-white);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(232, 92, 0, 0.25);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-trial:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 92, 0, 0.35);
    color: var(--text-white);
}

/* ===============================================
   HERO SECTION
   =============================================== */
.hero-section {
    position: relative;
    padding-top: 150px;
    /* Reduced from 170px to pull content up */
    /* Account for massive navbar */
    padding-bottom: 1.5rem;
    background: var(--gradient-hero);
    overflow: hidden;
}

/* Hero Background Decoration */
.hero-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(42, 168, 255, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 92, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-body);
    box-shadow: var(--shadow-sm);
    color: var(--primary-orange);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(232, 92, 0, 0.2);
    animation: fadeInDown 0.8s ease-out;
}

.hero-title {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin-bottom: 1rem;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.btn-primary-gradient {
    background: var(--gradient-primary);
    border: none;
    color: var(--text-white);
    padding: 0.9rem 2.2rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: var(--shadow-glow);
    transition: var(--transition);
}

.btn-primary-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(232, 92, 0, 0.3);
    color: var(--text-white);
}

.btn-outline-dark {
    background: var(--bg-body);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 0.9rem 2.2rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.btn-outline-dark:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--text-primary);
    color: var(--primary-orange);
}

/* Stats in Hero */
.hero-stats {
    display: flex;
    gap: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    animation: fadeIn 1s ease-out 0.8s backwards;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    font-family: var(--font-primary);
    line-height: 1;
    margin-bottom: 0.3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Hero Image & Floating Cards */
.hero-image-wrapper {
    position: relative;
    padding: 1rem;
    animation: zoomIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s backwards;
}

.hero-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

.floating-card {
    position: absolute;
    background: var(--bg-body);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    animation: float 6s ease-in-out infinite;
    z-index: 10;
    white-space: nowrap;
}

.floating-card i {
    font-size: 1.2rem;
    color: var(--primary-orange);
    background: rgba(232, 92, 0, 0.1);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.floating-card span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.card-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.card-2 {
    top: 45%;
    left: -40px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 15%;
    right: 20px;
    animation-delay: 4s;
}

/* ===============================================
   SECTIONS GENERAL
   =============================================== */
section {
    position: relative;
}

.section-header {
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    background: rgba(232, 92, 0, 0.08);
    color: var(--primary-orange);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 1.2rem;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===============================================
   FEATURES SECTION
   =============================================== */
.features-section {
    background: var(--bg-body);
    padding: 3rem 0;
}

.feature-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    border-color: rgba(232, 92, 0, 0.3);
}

.feature-icon {
    width: 65px;
    height: 65px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.8rem;
    transition: var(--transition);
}

/* Icon Colors - Refined */
.icon-hr {
    background: #f3e8ff;
    color: #9333ea;
}

.icon-finance {
    background: #dcfce7;
    color: #16a34a;
}

.icon-supply {
    background: #ffedd5;
    color: #ea580c;
}

.icon-sales {
    background: #dbeafe;
    color: #2563eb;
}

.icon-project {
    background: #fce7f3;
    color: #db2777;
}

.icon-helpdesk {
    background: #e0f2fe;
    color: #0284c7;
}

.icon-docs {
    background: #f3e8ff;
    color: #7e22ce;
}

.icon-bi {
    background: #d1fae5;
    color: #059669;
}

.icon-mfg {
    background: #ffedd5;
    color: #c2410c;
}

.icon-grc {
    background: #e0e7ff;
    color: #4f46e5;
}

.icon-ai {
    background: #fce7f3;
    color: #ec4899;
}

.icon-quality {
    background: #cffafe;
    color: #0891b2;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-text {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-link {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.feature-link:hover {
    gap: 0.8rem;
    color: var(--primary-orange-dark);
}

/* ===============================================
   BENEFITS SECTION
   =============================================== */
.benefits-section {
    background: var(--bg-light);
    padding: 3rem 0;
}

.benefit-card {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    height: 100%;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 20px rgba(232, 92, 0, 0.2);
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(232, 92, 0, 0.3);
}

.benefit-card h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ===============================================
   STATS SECTION
   =============================================== */
.stats-section {
    background: var(--gradient-primary);
    padding: 2rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.stat-card {
    text-align: center;
    padding: 1rem;
    z-index: 10;
    position: relative;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.stat-value {
    font-size: 4rem;
    font-weight: 800;
    font-family: var(--font-primary);
    color: white;
    line-height: 1;
}

.stat-plus {
    font-size: 2.5rem;
    font-weight: 700;
    vertical-align: top;
    margin-left: 5px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* ===============================================
   TESTIMONIALS SECTION
   =============================================== */
.testimonials-section {
    background: var(--bg-body);
    padding: 3rem 0;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    background: var(--bg-body);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-orange);
    transform: translateY(-5px);
}

.testimonial-stars {
    color: #f59e0b;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(42, 168, 255, 0.3);
}

.author-info h5 {
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
    color: var(--text-primary);
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ===============================================
   CTA SECTION
   =============================================== */
.cta-section {
    background: var(--bg-light);
    padding: 4rem 0;
    position: relative;
    border-top: 1px solid var(--border-color);
    overflow: hidden;
}

/* Decorative circles */
.cta-section::before {
    content: '';
    position: absolute;
    left: -100px;
    bottom: -100px;
    width: 400px;
    height: 400px;
    background: rgba(42, 168, 255, 0.05);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 400px;
    height: 400px;
    background: rgba(232, 92, 0, 0.05);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ===============================================
   INDUSTRY SOLUTIONS (TABS)
   =============================================== */
.solutions-section {
    background: var(--bg-body);
    padding: 5rem 0;
}

.solutions-tabs-container {
    max-width: 1000px;
    margin: 3rem auto 0;
}

.nav-pills-solutions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    border: none;
}

.nav-pills-solutions .nav-link {
    background: var(--bg-light);
    color: var(--text-secondary) !important;
    padding: 0.8rem 1.8rem !important;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.nav-pills-solutions .nav-link.active {
    background: var(--gradient-primary) !important;
    color: white !important;
    border: none;
    box-shadow: 0 5px 15px rgba(232, 92, 0, 0.3);
}

.solution-content-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 3rem;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 3rem;
}

.solution-info {
    flex: 1;
}

.solution-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.solution-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.solution-features i {
    color: #10b981;
}

.solution-image {
    flex: 1;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

/* ===============================================
   FAQ SECTION
   =============================================== */
.faq-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md) !important;
    margin-bottom: 1rem;
    overflow: hidden;
    background: var(--bg-light);
}

.accordion-button {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--bg-light);
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: #fdf4ee;
    color: var(--primary-orange);
}

.accordion-button::after {
    background-size: 1rem;
}

.accordion-body {
    padding: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
    background: var(--bg-light);
}

/* ===============================================
   COMPARISON MATRIX
   =============================================== */
.comparison-section {
    padding: 5rem 0;
    background: var(--bg-body);
}

.comparison-table-wrapper {
    margin-top: 3rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background: var(--bg-light);
    padding: 1.5rem;
    text-align: center;
    font-weight: 700;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border-color);
}

.comparison-table td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.comparison-table .feature-col {
    text-align: left;
    font-weight: 600;
    background: var(--bg-light);
    width: 30%;
}

.comparison-table .wfms-col {
    background: rgba(232, 92, 0, 0.02);
    width: 35%;
}

.comparison-table .legacy-col {
    color: var(--text-muted);
}

.comparison-table i.fa-check-circle {
    color: #10b981;
    font-size: 1.2rem;
}

.comparison-table i.fa-times-circle {
    color: #ef4444;
    font-size: 1.2rem;
}


/* ===============================================
   FOOTER
   =============================================== */
.main-footer {
    background: var(--bg-footer);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-logo {
    height: 80px;
    margin-bottom: 1.5rem;
    margin-top: -10px;
    /* Slight offset to align with text in other columns */
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(232, 92, 0, 0.3);
}

.main-footer h5 {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    color: var(--text-primary);
    font-weight: 700;
    min-height: 1.5rem;
    /* Help vertical alignment */
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--primary-orange);
    margin-top: 4px;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary-orange);
    font-weight: 500;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Polish */
@media (max-width: 1199px) {
    .navbar-collapse {
        background: var(--bg-body);
        padding: 1.5rem;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        margin-top: 1rem;
        border: 1px solid var(--border-color);
    }

    .navbar-logo {
        height: 60px;
    }

    .navbar-nav {
        text-align: center;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .nav-link {
        display: inline-block;
        width: 100%;
    }

    .nav-buttons {
        flex-direction: column;
        margin-left: 0;
        gap: 0.8rem;
    }

    .nav-buttons .btn,
    .nav-buttons .theme-toggle {
        width: 100%;
        justify-content: center;
    }

    .theme-toggle {
        order: -1;
        margin-bottom: 0.5rem;
    }

    .hero-section {
        padding-top: 110px;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .floating-card {
        padding: 0.8rem 1.2rem;
    }

    .floating-card i {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .card-1 {
        right: 0;
    }

    .card-2 {
        left: -10px;
    }

    .card-3 {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .stat-item {
        flex: 0 0 45%;
    }

    .hero-image-wrapper {
        margin-top: 3rem;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===============================================
   TRUSTED BY SECTION
   =============================================== */
.trusted-section {
    background: var(--bg-body);
}

.trusted-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 2rem;
}

.trust-icons-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    opacity: 0.6;
    filter: grayscale(1);
    transition: var(--transition);
}

.trust-icons-grid:hover {
    opacity: 0.9;
    filter: grayscale(0.5);
}

/* Infinite Marquee Styles */
.marquee-container {
    overflow: hidden;
    padding: 1.5rem 0;
    position: relative;
    width: 100%;
}

.marquee-content {
    display: flex;
    gap: 4rem;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.trust-item {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-secondary);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-item i {
    color: var(--primary-blue);
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Background Texture Utilities */
.bg-texture-grid {
    position: relative;
}

.bg-texture-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(var(--border-color) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}

.bg-texture-dots {
    position: relative;
}

.bg-texture-dots::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: mose-gradient(var(--border-color) 1px, transparent 1px);
    /* Correction to radial below */
    background-image: radial-gradient(circle, var(--border-color) 1.5px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

/* ===============================================
   LEAD CAPTURE FORM (FOOTER)
   =============================================== */
.lead-form-container {
    background: var(--bg-body);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.lead-form h5 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.lead-form .form-control,
.lead-form .form-select {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.8rem 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    transition: var(--transition);
}

.lead-form .form-control:focus,
.lead-form .form-select:focus {
    background: var(--bg-body);
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(232, 92, 0, 0.1);
}

[data-theme="dark"] .lead-form-container {
    background: #0f172a;
}


/* ===============================================
   SECURITY STRIP
   =============================================== */
.security-strip {
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.security-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.security-badge i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.security-badge span {
    font-size: 0.85rem;
    font-weight: 600;
}

.security-badge:hover {
    color: var(--primary-orange);
    transform: translateY(-2px);
}

/* ===============================================
   STICKY CTA
   =============================================== */
.sticky-cta {
    position: fixed;
    right: 25px;
    bottom: 25px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 30px rgba(232, 92, 0, 0.4);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}

.sticky-cta i {
    font-size: 1.2rem;
}

.sticky-cta span {
    font-weight: 700;
    font-size: 0.95rem;
}

.sticky-cta:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(232, 92, 0, 0.5);
    color: white;
}

/* ===============================================
   ACCESSIBILITY & RFP READINESS
   =============================================== */
:focus-visible {
    outline: 3px solid var(--primary-orange);
    outline-offset: 2px;
}

.btn-demo-nav {
    border: 1px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-demo-nav:hover {
    background: var(--primary-orange);
    color: white;
}